UpdraftPlus WordPress Backup Plugin - Version 1.12.37

Version Description

  • 31/Mar/2017 =

  • FEATURE: Browse the contents of a backup from within your WordPress dashboard, and (with Premium) download individual files from it

  • FIX: Fix an issue that could occasionally cause corruption of interrupted Dropbox backups. All Dropbox users are recommended to update asap.

  • TWEAK: Remove debugging statement inadvertently left in 1.12.36

  • TWEAK: Re-factored remote storage handlers via add-ons so that there was a cleaner and more consistent class hierarchy (preparation for future improvements). N.B. If you subsequently downgrade to an older version of UpdraftPlus, you will need to re-enter the settings for some remote storage options.

  • TWEAK: List of checksum algorithms run over backups and logged now includes SHA256, and is filterable (SHA1 now considered deprecated)

  • TWEAK: Allow chunked database encryption to try and resume in the event of an error

  • TWEAK: Improve the premium/extension tab content

  • TWEAK: Fix an issue whereby the UpdraftVault settings section could show a bogus problem with checking quota immediately after initial setup

  • TWEAK: Dropbox API v2 call to de-authorise a token was failing

  • TWEAK: When requesting a download, work around buggy browser/server that continued after Connection: close

  • TWEAK: Improve the UI experience when downloading a log file for display fails

  • TWEAK: Prevent PHP notice if another plugin cancels a cron event

  • TWEAK: Tweak semaphore handling and enhance logging

Download this release

Release Info

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

Code changes from version 1.12.35 to 1.12.37

Files changed (48) hide show
  1. admin.php +75 -27
  2. backup.php +47 -10
  3. class-updraftplus.php +207 -83
  4. class-zip.php +32 -15
  5. css/admin.css +63 -0
  6. images/addons-images/all.png +0 -0
  7. images/addons-images/autobackup.png +0 -0
  8. images/addons-images/azure.png +0 -0
  9. images/addons-images/cloudfiles-enhanced.png +0 -0
  10. images/addons-images/copycom.png +0 -0
  11. images/addons-images/dropbox-folders.png +0 -0
  12. images/{notices/backuptime.png → addons-images/fixtime.png} +0 -0
  13. images/addons-images/google-enhanced.png +0 -0
  14. images/addons-images/googlecloud.png +0 -0
  15. images/{notices → addons-images}/importer.png +0 -0
  16. images/addons-images/lockadmin.png +0 -0
  17. images/addons-images/migrator.png +0 -0
  18. images/{notices/moredatabase_option.png → addons-images/moredatabase.png} +0 -0
  19. images/{notices → addons-images}/morefiles.png +0 -0
  20. images/addons-images/morestorage.png +0 -0
  21. images/{notices/networkmultisite.png → addons-images/multisite.png} +0 -0
  22. images/{notices/noads.png → addons-images/noadverts.png} +0 -0
  23. images/addons-images/onedrive.png +0 -0
  24. images/addons-images/reporting.png +0 -0
  25. images/addons-images/s3-enhanced.png +0 -0
  26. images/addons-images/sftp.png +0 -0
  27. images/addons-images/webdav.png +0 -0
  28. images/copycom.png +0 -0
  29. includes/Dropbox/OAuth/Storage/WordPress.php +178 -167
  30. includes/Dropbox2/API.php +8 -4
  31. includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php +2 -2
  32. includes/Dropbox2/OAuth/Consumer/Curl.php +8 -3
  33. includes/Dropbox2/OAuth/Storage/WordPress.php +178 -167
  34. includes/class-commands.php +1 -1
  35. includes/class-semaphore.php +5 -5
  36. includes/class-udrpc.php +3 -9
  37. includes/class-wpadmin-commands.php +192 -20
  38. includes/labelauty/jquery-labelauty.css +0 -5
  39. includes/updraft-admin.js +141 -16
  40. includes/updraftplus-notices.php +33 -5
  41. languages/updraftplus-af.po +1019 -956
  42. languages/updraftplus-ar.mo +0 -0
  43. languages/updraftplus-ar.po +1019 -956
  44. languages/updraftplus-bn_BD.po +1019 -956
  45. languages/updraftplus-bs_BA.po +1019 -956
  46. languages/updraftplus-ca.po +1019 -956
  47. languages/updraftplus-cs_CZ.mo +0 -0
  48. languages/updraftplus-cs_CZ.po +449 -389
admin.php CHANGED
@@ -93,33 +93,55 @@ class UpdraftPlus_Admin {
93
  }
94
 
95
  private function setup_all_admin_notices_global($service){
 
 
 
96
  if ('googledrive' === $service || (is_array($service) && in_array('googledrive', $service))) {
97
- $opts = UpdraftPlus_Options::get_updraft_option('updraft_googledrive');
98
- if (empty($opts)) {
99
- $clientid = UpdraftPlus_Options::get_updraft_option('updraft_googledrive_clientid', '');
100
- $token = UpdraftPlus_Options::get_updraft_option('updraft_googledrive_token', '');
101
- } else {
102
- $clientid = empty($opts['clientid']) ? '' : $opts['clientid'];
103
- $token = (empty($opts['token'])) ? '' : $opts['token'];
 
 
 
 
 
 
 
 
 
 
104
  }
105
- if (!empty($clientid) && empty($token)) add_action('all_admin_notices', array($this,'show_admin_warning_googledrive'));
106
- unset($token);
107
- unset($clientid);
108
  }
109
  if ('googlecloud' === $service || (is_array($service) && in_array('googlecloud', $service))) {
110
  $opts = UpdraftPlus_Options::get_updraft_option('updraft_googlecloud');
111
  if (!empty($opts)) {
112
- $clientid = empty($opts['clientid']) ? '' : $opts['clientid'];
113
  $token = (empty($opts['token'])) ? '' : $opts['token'];
114
  }
115
  if (!empty($clientid) && empty($token)) add_action('all_admin_notices', array($this,'show_admin_warning_googlecloud'));
116
  }
 
117
  if ('dropbox' === $service || (is_array($service) && in_array('dropbox', $service))) {
118
- $opts = UpdraftPlus_Options::get_updraft_option('updraft_dropbox');
119
- if (empty($opts['tk_access_token'])) {
120
- add_action('all_admin_notices', array($this,'show_admin_warning_dropbox') );
 
 
 
 
 
 
 
 
 
 
121
  }
122
  }
 
123
  if ('onedrive' === $service || (is_array($service) && in_array('onedrive', $service))) {
124
  $opts = UpdraftPlus_Options::get_updraft_option('updraft_onedrive');
125
  //if (((!empty($opts['clientid']) && !empty($opts['secret'])) || !empty($opts['use_master'])) && empty($opts['refresh_token']))
@@ -142,7 +164,7 @@ class UpdraftPlus_Admin {
142
  private function setup_all_admin_notices_udonly($service, $override = false){
143
  global $wp_version;
144
 
145
- if (UpdraftPlus_Options::user_can_manage() && defined('DISABLE_WP_CRON') && DISABLE_WP_CRON == true) {
146
  add_action('all_admin_notices', array($this, 'show_admin_warning_disabledcron'));
147
  }
148
 
@@ -594,7 +616,7 @@ class UpdraftPlus_Admin {
594
  'actions' => __('Actions', 'updraftplus'),
595
  'deletefromserver' => __('Delete from your web server', 'updraftplus'),
596
  'downloadtocomputer' => __('Download to your computer', 'updraftplus'),
597
- 'show_contents' => __('Show contents', 'updraftplus'),
598
  'notunderstood' => __('Download error: the server sent us a response which we did not understand.', 'updraftplus'),
599
  'requeststart' => __('Requesting start of backup...', 'updraftplus'),
600
  'phpinfo' => __('PHP information', 'updraftplus'),
@@ -646,6 +668,7 @@ class UpdraftPlus_Admin {
646
  'migratemodalheight' => class_exists('UpdraftPlus_Addons_Migrator') ? 555 : 300,
647
  'migratemodalwidth' => class_exists('UpdraftPlus_Addons_Migrator') ? 770 : 500,
648
  'download' => _x('Download', '(verb)', 'updraftplus'),
 
649
  'unsavedsettingsbackup' => __('You have made changes to your settings, and not saved.', 'updraftplus')."\n".__('You should save your changes to ensure that they are used for making your backup.', 'updraftplus'),
650
  'unsaved_settings_export' => __('You have made changes to your settings, and not saved.', 'updraftplus')."\n".__('Your export file will be of your displayed settings, not your saved ones.', 'updraftplus'),
651
  'dayselector' => $day_selector,
@@ -675,6 +698,11 @@ class UpdraftPlus_Admin {
675
  'remote_files_deleted' => __('remote files deleted', 'updraftplus'),
676
  'http_code' => __('HTTP code:', 'updraftplus'),
677
  'makesure2' => __('The file failed to upload. Please check the following:', 'updraftplus')."\n\n - ".__('Any settings in your .htaccess or web.config file that affects the maximum upload or post size.', 'updraftplus')."\n - ".__('The available memory on the server.', 'updraftplus')."\n - ".__('That you are attempting to upload a zip file previously created by UpdraftPlus.', 'updraftplus')."\n\n".__('Further information may be found in the browser JavaScript console, and the server PHP error logs.', 'updraftplus'),
 
 
 
 
 
678
  ) );
679
  }
680
 
@@ -844,6 +872,10 @@ class UpdraftPlus_Admin {
844
  }
845
 
846
  //
 
 
 
 
847
  public function show_admin_warning_unwritable(){
848
  $unwritable_mess = htmlspecialchars(__("The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option).", 'updraftplus'));
849
  $this->show_admin_warning($unwritable_mess, "error");
@@ -928,18 +960,19 @@ class UpdraftPlus_Admin {
928
 
929
  $findex = empty($_REQUEST['findex']) ? 0 : (int)$_REQUEST['findex'];
930
  $stage = empty($_REQUEST['stage']) ? '' : $_REQUEST['stage'];
 
931
 
932
  // This call may not actually return, depending upon what mode it is called in
933
- $result = $this->do_updraft_download_backup($findex, $_REQUEST['type'], $_REQUEST['timestamp'], $stage);
934
 
935
  // In theory, if a response was already sent, then Connection: close has been issued, and a Content-Length. However, in https://updraftplus.com/forums/topic/pclzip_err_bad_format-10-invalid-archive-structure/ a browser ignores both of these, and then picks up the second output and complains.
936
- if (empty($results['already_closed'])) echo json_encode($result);
937
 
938
  die();
939
  }
940
 
941
  // This function may die(), depending on the request being made in $stage
942
- public function do_updraft_download_backup($findex, $type, $timestamp, $stage, $close_connection_callable = false) {
943
 
944
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
945
 
@@ -978,13 +1011,27 @@ class UpdraftPlus_Admin {
978
  $file = $backup_history[$timestamp][$type];
979
 
980
  // Deal with multi-archive sets
981
- if (is_array($file)) $file=$file[$findex];
 
 
 
 
 
 
 
982
 
983
  // Where it should end up being downloaded to
984
  $fullpath = $updraftplus->backups_dir_location().'/'.$file;
985
 
 
 
 
 
 
986
  if (2 == $stage) {
987
  $updraftplus->spool_file($fullpath);
 
 
988
  // Do not return - we do not want the caller to add any output
989
  die;
990
  }
@@ -1697,8 +1744,7 @@ class UpdraftPlus_Admin {
1697
  $response['s'] = (int)$matches[1];
1698
  $response['t'] = (int)$matches[1];
1699
  $response['m'] = __('File ready.', 'updraftplus');
1700
- // TODO: Code to allow them to browse the contents
1701
- $response['can_show_contents'] = false;
1702
  } elseif (preg_match('/^downloading:(\d+):(.*)$/', $file, $matches) && file_exists($matches[2])) {
1703
  // Convert to bytes
1704
  $response['f'] = $matches[2];
@@ -2878,7 +2924,7 @@ class UpdraftPlus_Admin {
2878
  $this->include_template('wp-admin/settings/form-contents.php', false, array('options' => $options));
2879
  }
2880
 
2881
- public function get_settings_js($method_objects, $really_is_writable, $updraft_dir) {
2882
 
2883
  global $updraftplus;
2884
 
@@ -3099,11 +3145,13 @@ class UpdraftPlus_Admin {
3099
  } else {
3100
  $jd = array();
3101
  }
 
 
3102
 
3103
  foreach ($backupable_entities as $type => $info) {
3104
  if (!isset($backup[$type])) continue;
3105
 
3106
- $rawbackup .= $updraftplus->printfile($info['description'], $backup, $type, array('sha1'), $jd, true);
3107
 
3108
  // $rawbackup .= '<h3>'.$info['description'].'</h3>';
3109
  // $files = is_string($backup[$type]) ? array($backup[$type]) : $backup[$type];
@@ -3115,7 +3163,7 @@ class UpdraftPlus_Admin {
3115
  $total_size = 0;
3116
  foreach ($backup as $ekey => $files) {
3117
  if ('db' == strtolower(substr($ekey, 0, 2)) && '-size' != substr($ekey, -5, 5)) {
3118
- $rawbackup .= $updraftplus->printfile(__('Database', 'updraftplus'), $backup, $ekey, array('sha1'), $jd, true);
3119
  }
3120
  if (!isset($backupable_entities[$ekey]) && ('db' != substr($ekey, 0, 2) || '-size' == substr($ekey, -5, 5))) continue;
3121
  if (is_string($files)) $files = array($files);
@@ -3251,7 +3299,7 @@ class UpdraftPlus_Admin {
3251
 
3252
  $pdescrip = ($findex > 0) ? $sdescrip.' ('.($findex+1).')' : $sdescrip;
3253
  if ($printing_first) {
3254
- $ide .= __('Press here to download', 'updraftplus').' '.strtolower($info['description']);
3255
  } else {
3256
  $ret .= '<div class="updraft-hidden" style="display:none;">';
3257
  }
@@ -3895,7 +3943,7 @@ ENDHERE;
3895
 
3896
  // if (!in_array($key, $exclude_keys)) {
3897
  if (in_array($key, $relevant_keys)) {
3898
- if ($key == "updraft_service" && is_array($value)){
3899
  foreach ($value as $subkey => $subvalue){
3900
  if ($subvalue == '0') unset($value[$subkey]);
3901
  }
93
  }
94
 
95
  private function setup_all_admin_notices_global($service){
96
+
97
+ global $updraftplus;
98
+
99
  if ('googledrive' === $service || (is_array($service) && in_array('googledrive', $service))) {
100
+ $settings = $updraftplus->update_remote_storage_options_format('googledrive');
101
+
102
+ if (is_wp_error($settings)) {
103
+ if (!isset($this->storage_module_option_errors)) $this->storage_module_option_errors = '';
104
+ $this->storage_module_option_errors .= "Google Drive (".$settings->get_error_code()."): ".$settings->get_error_message();
105
+ add_action('all_admin_notices', array($this, 'show_admin_warning_multiple_storage_options'));
106
+ $updraftplus->log_wp_error($settings, true, true);
107
+ } elseif (!empty($settings['settings'])) {
108
+ foreach ($settings['settings'] as $instance_id => $storage_options) {
109
+ if (!empty($storage_options['clientid'])) {
110
+ $clientid = $storage_options['clientid'];
111
+ $token = empty($storage_options['token']) ? '' : $storage_options['token'];
112
+ }
113
+ if (!empty($clientid) && '' == $token) add_action('all_admin_notices', array($this,'show_admin_warning_googledrive'));
114
+ unset($clientid);
115
+ unset($token);
116
+ }
117
  }
 
 
 
118
  }
119
  if ('googlecloud' === $service || (is_array($service) && in_array('googlecloud', $service))) {
120
  $opts = UpdraftPlus_Options::get_updraft_option('updraft_googlecloud');
121
  if (!empty($opts)) {
122
+ $clientid = $opts['clientid'];
123
  $token = (empty($opts['token'])) ? '' : $opts['token'];
124
  }
125
  if (!empty($clientid) && empty($token)) add_action('all_admin_notices', array($this,'show_admin_warning_googlecloud'));
126
  }
127
+
128
  if ('dropbox' === $service || (is_array($service) && in_array('dropbox', $service))) {
129
+ $settings = $updraftplus->update_remote_storage_options_format('dropbox');
130
+
131
+ if (is_wp_error($settings)) {
132
+ if (!isset($this->storage_module_option_errors)) $this->storage_module_option_errors = '';
133
+ $this->storage_module_option_errors .= "Dropbox (".$settings->get_error_code()."): ".$settings->get_error_message();
134
+ add_action('all_admin_notices', array($this, 'show_admin_warning_multiple_storage_options'));
135
+ $updraftplus->log_wp_error($settings, true, true);
136
+ } elseif (!empty($settings['settings'])) {
137
+ foreach ($settings['settings'] as $instance_id => $storage_options) {
138
+ if (empty($storage_options['tk_access_token'])) {
139
+ add_action('all_admin_notices', array($this, 'show_admin_warning_dropbox'));
140
+ }
141
+ }
142
  }
143
  }
144
+
145
  if ('onedrive' === $service || (is_array($service) && in_array('onedrive', $service))) {
146
  $opts = UpdraftPlus_Options::get_updraft_option('updraft_onedrive');
147
  //if (((!empty($opts['clientid']) && !empty($opts['secret'])) || !empty($opts['use_master'])) && empty($opts['refresh_token']))
164
  private function setup_all_admin_notices_udonly($service, $override = false){
165
  global $wp_version;
166
 
167
+ if (UpdraftPlus_Options::user_can_manage() && defined('DISABLE_WP_CRON') && DISABLE_WP_CRON && (!defined('UPDRAFTPLUS_DISABLE_WP_CRON_NOTICE') || !UPDRAFTPLUS_DISABLE_WP_CRON_NOTICE)) {
168
  add_action('all_admin_notices', array($this, 'show_admin_warning_disabledcron'));
169
  }
170
 
616
  'actions' => __('Actions', 'updraftplus'),
617
  'deletefromserver' => __('Delete from your web server', 'updraftplus'),
618
  'downloadtocomputer' => __('Download to your computer', 'updraftplus'),
619
+ 'browse_contents' => __('Browse contents', 'updraftplus'),
620
  'notunderstood' => __('Download error: the server sent us a response which we did not understand.', 'updraftplus'),
621
  'requeststart' => __('Requesting start of backup...', 'updraftplus'),
622
  'phpinfo' => __('PHP information', 'updraftplus'),
668
  'migratemodalheight' => class_exists('UpdraftPlus_Addons_Migrator') ? 555 : 300,
669
  'migratemodalwidth' => class_exists('UpdraftPlus_Addons_Migrator') ? 770 : 500,
670
  'download' => _x('Download', '(verb)', 'updraftplus'),
671
+ 'browse_download_link' => apply_filters('updraftplus_browse_download_link', '<a id="updraft_zip_download_notice" href="'.apply_filters('updraftplus_com_link', "https://updraftplus.com/landing/updraftplus-premium").'">'.__("With UpdraftPlus Premium, you can directly download individual files from here.", "updraftplus").'</a>'),
672
  'unsavedsettingsbackup' => __('You have made changes to your settings, and not saved.', 'updraftplus')."\n".__('You should save your changes to ensure that they are used for making your backup.', 'updraftplus'),
673
  'unsaved_settings_export' => __('You have made changes to your settings, and not saved.', 'updraftplus')."\n".__('Your export file will be of your displayed settings, not your saved ones.', 'updraftplus'),
674
  'dayselector' => $day_selector,
698
  'remote_files_deleted' => __('remote files deleted', 'updraftplus'),
699
  'http_code' => __('HTTP code:', 'updraftplus'),
700
  'makesure2' => __('The file failed to upload. Please check the following:', 'updraftplus')."\n\n - ".__('Any settings in your .htaccess or web.config file that affects the maximum upload or post size.', 'updraftplus')."\n - ".__('The available memory on the server.', 'updraftplus')."\n - ".__('That you are attempting to upload a zip file previously created by UpdraftPlus.', 'updraftplus')."\n\n".__('Further information may be found in the browser JavaScript console, and the server PHP error logs.', 'updraftplus'),
701
+ 'zip_file_contents' => __('Browsing zip file', 'updraftplus'),
702
+ 'zip_file_contents_info' => __('Select a file to view information about it', 'updraftplus'),
703
+ 'search' => __('Search', 'updraftplus'),
704
+ 'download_timeout' => __('Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer.', 'updraftplus'),
705
+ 'loading_log_file' => __('Loading log file', 'updraftplus'),
706
  ) );
707
  }
708
 
872
  }
873
 
874
  //
875
+ public function show_admin_warning_multiple_storage_options() {
876
+ $this->show_admin_warning('<strong>UpdraftPlus:</strong> '.__('An error occurred when fetching storage module options: ', 'updraftplus').htmlspecialchars($this->storage_module_option_errors), 'error');
877
+ }
878
+
879
  public function show_admin_warning_unwritable(){
880
  $unwritable_mess = htmlspecialchars(__("The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option).", 'updraftplus'));
881
  $this->show_admin_warning($unwritable_mess, "error");
960
 
961
  $findex = empty($_REQUEST['findex']) ? 0 : (int)$_REQUEST['findex'];
962
  $stage = empty($_REQUEST['stage']) ? '' : $_REQUEST['stage'];
963
+ $file_path = empty($_REQUEST['filepath']) ? '' : $_REQUEST['filepath'];
964
 
965
  // This call may not actually return, depending upon what mode it is called in
966
+ $result = $this->do_updraft_download_backup($findex, $_REQUEST['type'], $_REQUEST['timestamp'], $stage, false, $file_path);
967
 
968
  // In theory, if a response was already sent, then Connection: close has been issued, and a Content-Length. However, in https://updraftplus.com/forums/topic/pclzip_err_bad_format-10-invalid-archive-structure/ a browser ignores both of these, and then picks up the second output and complains.
969
+ if (empty($result['already_closed'])) echo json_encode($result);
970
 
971
  die();
972
  }
973
 
974
  // This function may die(), depending on the request being made in $stage
975
+ public function do_updraft_download_backup($findex, $type, $timestamp, $stage, $close_connection_callable = false, $file_path = '') {
976
 
977
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
978
 
1011
  $file = $backup_history[$timestamp][$type];
1012
 
1013
  // Deal with multi-archive sets
1014
+ if (is_array($file)) $file = $file[$findex];
1015
+
1016
+ if (strpos($file_path, '..') !== false) {
1017
+ error_log("UpdraftPlus_Admin::do_updraft_download_backup : invalid file_path: $file_path");
1018
+ return array('result' => __('Error: invalid path', 'updraftplus'));
1019
+ }
1020
+
1021
+ if (!empty($file_path)) $file = $file_path;
1022
 
1023
  // Where it should end up being downloaded to
1024
  $fullpath = $updraftplus->backups_dir_location().'/'.$file;
1025
 
1026
+ if (!empty($file_path) && strpos(realpath($fullpath), realpath($updraftplus->backups_dir_location())) === false) {
1027
+ error_log("UpdraftPlus_Admin::do_updraft_download_backup : invalid fullpath: $fullpath");
1028
+ return array('result' => __('Error: invalid path', 'updraftplus'));
1029
+ }
1030
+
1031
  if (2 == $stage) {
1032
  $updraftplus->spool_file($fullpath);
1033
+ // We only want to remove if it was a temp file from the zip browser
1034
+ if (!empty($file_path)) @unlink($fullpath);
1035
  // Do not return - we do not want the caller to add any output
1036
  die;
1037
  }
1744
  $response['s'] = (int)$matches[1];
1745
  $response['t'] = (int)$matches[1];
1746
  $response['m'] = __('File ready.', 'updraftplus');
1747
+ if ('db' != substr($type, 0, 2)) $response['can_show_contents'] = true;
 
1748
  } elseif (preg_match('/^downloading:(\d+):(.*)$/', $file, $matches) && file_exists($matches[2])) {
1749
  // Convert to bytes
1750
  $response['f'] = $matches[2];
2924
  $this->include_template('wp-admin/settings/form-contents.php', false, array('options' => $options));
2925
  }
2926
 
2927
+ public function get_settings_js($method_objects, $really_is_writable, $updraft_dir, $active_service) {
2928
 
2929
  global $updraftplus;
2930
 
3145
  } else {
3146
  $jd = array();
3147
  }
3148
+
3149
+ $checksums = $updraftplus->which_checksums();
3150
 
3151
  foreach ($backupable_entities as $type => $info) {
3152
  if (!isset($backup[$type])) continue;
3153
 
3154
+ $rawbackup .= $updraftplus->printfile($info['description'], $backup, $type, $checksums, $jd, true);
3155
 
3156
  // $rawbackup .= '<h3>'.$info['description'].'</h3>';
3157
  // $files = is_string($backup[$type]) ? array($backup[$type]) : $backup[$type];
3163
  $total_size = 0;
3164
  foreach ($backup as $ekey => $files) {
3165
  if ('db' == strtolower(substr($ekey, 0, 2)) && '-size' != substr($ekey, -5, 5)) {
3166
+ $rawbackup .= $updraftplus->printfile(__('Database', 'updraftplus'), $backup, $ekey, $checksums, $jd, true);
3167
  }
3168
  if (!isset($backupable_entities[$ekey]) && ('db' != substr($ekey, 0, 2) || '-size' == substr($ekey, -5, 5))) continue;
3169
  if (is_string($files)) $files = array($files);
3299
 
3300
  $pdescrip = ($findex > 0) ? $sdescrip.' ('.($findex+1).')' : $sdescrip;
3301
  if ($printing_first) {
3302
+ $ide .= __('Press here to download or browse', 'updraftplus').' '.strtolower($info['description']);
3303
  } else {
3304
  $ret .= '<div class="updraft-hidden" style="display:none;">';
3305
  }
3943
 
3944
  // if (!in_array($key, $exclude_keys)) {
3945
  if (in_array($key, $relevant_keys)) {
3946
+ if ($key == 'updraft_service' && is_array($value)){
3947
  foreach ($value as $subkey => $subvalue){
3948
  if ($subvalue == '0') unset($value[$subkey]);
3949
  }
backup.php CHANGED
@@ -240,13 +240,25 @@ class UpdraftPlus_Backup {
240
  $updraftplus->log("Did not create $whichone zip (".$this->index.") - not needed");
241
  @unlink($full_path.'.tmp');
242
  } else {
243
- $sha = sha1_file($full_path.'.tmp');
244
- $updraftplus->jobdata_set('sha1-'.$whichone.$this->index, $sha);
 
 
 
 
 
 
 
 
 
 
 
 
245
  @rename($full_path.'.tmp', $full_path);
246
  $timetaken = max(microtime(true)-$this->zip_microtime_start, 0.000001);
247
  $kbsize = filesize($full_path)/1024;
248
  $rate = round($kbsize/$timetaken, 1);
249
- $updraftplus->log("Created $whichone zip (".$this->index.") - ".round($kbsize,1)." KB in ".round($timetaken,1)." s ($rate KB/s) (SHA1 checksum: $sha)");
250
  // We can now remove any left-over temporary files from this job
251
  }
252
  } elseif ($this->index > $original_index) {
@@ -1622,9 +1634,22 @@ class UpdraftPlus_Backup {
1622
  } else {
1623
  # We no longer encrypt here - because the operation can take long, we made it resumable and moved it to the upload loop
1624
  $updraftplus->jobdata_set('jobstatus', 'dbcreated'.$this->whichdb_suffix);
1625
- $sha = sha1_file($backup_final_file_name);
1626
- $updraftplus->jobdata_set('sha1-db'.(('wp' == $whichdb) ? '0' : $whichdb.'0'), $sha);
1627
- $updraftplus->log("Total database tables backed up: $total_tables (".basename($backup_final_file_name).", size: ".filesize($backup_final_file_name).", checksum (SHA1): $sha)");
 
 
 
 
 
 
 
 
 
 
 
 
 
1628
  return basename($backup_final_file_name);
1629
  }
1630
 
@@ -2265,7 +2290,7 @@ class UpdraftPlus_Backup {
2265
  if (file_exists($examine_zip) && is_readable($examine_zip) && filesize($examine_zip)>0) {
2266
  $this->existing_zipfiles_size += filesize($examine_zip);
2267
  $zip = new $this->use_zip_object;
2268
- if (!$zip->open($examine_zip)) {
2269
  $updraftplus->log("Could not open zip file to examine (".$zip->last_error."); will remove: ".basename($examine_zip));
2270
  @unlink($examine_zip);
2271
  } else {
@@ -3017,8 +3042,19 @@ class UpdraftPlus_Backup {
3017
 
3018
  $itext = ($this->index == 0) ? '' : ($this->index+1);
3019
  $full_path = $this->zip_basename.$itext.'.zip';
3020
- $sha = sha1_file($full_path.'.tmp');
3021
- $updraftplus->jobdata_set('sha1-'.$youwhat.$this->index, $sha);
 
 
 
 
 
 
 
 
 
 
 
3022
 
3023
  $next_full_path = $this->zip_basename.($this->index+2).'.zip';
3024
  # We touch the next zip before renaming the temporary file; this indicates that the backup for the entity is not *necessarily* finished
@@ -3031,9 +3067,10 @@ class UpdraftPlus_Backup {
3031
  $updraftplus->something_useful_happened();
3032
  }
3033
  }
 
3034
  $kbsize = filesize($full_path)/1024;
3035
  $rate = round($kbsize/$timetaken, 1);
3036
- $updraftplus->log("Created ".$this->whichone." zip (".$this->index.") - ".round($kbsize,1)." KB in ".round($timetaken,1)." s ($rate KB/s) (SHA1 checksum: ".$sha.")");
3037
  $this->zip_microtime_start = microtime(true);
3038
 
3039
  # No need to add $itext here - we can just delete any temporary files for this zip
240
  $updraftplus->log("Did not create $whichone zip (".$this->index.") - not needed");
241
  @unlink($full_path.'.tmp');
242
  } else {
243
+
244
+ $checksum_description = '';
245
+
246
+ $checksums = $updraftplus->which_checksums();
247
+
248
+ foreach ($checksums as $checksum) {
249
+
250
+ $cksum = hash_file($checksum, $full_path.'.tmp');
251
+ $updraftplus->jobdata_set($checksum.'-'.$whichone.$this->index, $cksum);
252
+ if ($checksum_description) $checksum_description .= ', ';
253
+ $checksum_description .= "$checksum: $cksum";
254
+
255
+ }
256
+
257
  @rename($full_path.'.tmp', $full_path);
258
  $timetaken = max(microtime(true)-$this->zip_microtime_start, 0.000001);
259
  $kbsize = filesize($full_path)/1024;
260
  $rate = round($kbsize/$timetaken, 1);
261
+ $updraftplus->log("Created $whichone zip (".$this->index.") - ".round($kbsize,1)." KB in ".round($timetaken,1)." s ($rate KB/s) ($checksum_description)");
262
  // We can now remove any left-over temporary files from this job
263
  }
264
  } elseif ($this->index > $original_index) {
1634
  } else {
1635
  # We no longer encrypt here - because the operation can take long, we made it resumable and moved it to the upload loop
1636
  $updraftplus->jobdata_set('jobstatus', 'dbcreated'.$this->whichdb_suffix);
1637
+
1638
+ $checksums = $updraftplus->which_checksums();
1639
+
1640
+ $checksum_description = '';
1641
+
1642
+ foreach ($checksums as $checksum) {
1643
+
1644
+ $cksum = hash_file($checksum, $backup_final_file_name);
1645
+ $updraftplus->jobdata_set($checksum.'-db'.(('wp' == $whichdb) ? '0' : $whichdb.'0'), $cksum);
1646
+ if ($checksum_description) $checksum_description .= ', ';
1647
+ $checksum_description .= "$checksum: $cksum";
1648
+
1649
+ }
1650
+
1651
+ $updraftplus->log("Total database tables backed up: $total_tables (".basename($backup_final_file_name).", size: ".filesize($backup_final_file_name).", $checksum)");
1652
+
1653
  return basename($backup_final_file_name);
1654
  }
1655
 
2290
  if (file_exists($examine_zip) && is_readable($examine_zip) && filesize($examine_zip)>0) {
2291
  $this->existing_zipfiles_size += filesize($examine_zip);
2292
  $zip = new $this->use_zip_object;
2293
+ if (true !== $zip->open($examine_zip)) {
2294
  $updraftplus->log("Could not open zip file to examine (".$zip->last_error."); will remove: ".basename($examine_zip));
2295
  @unlink($examine_zip);
2296
  } else {
3042
 
3043
  $itext = ($this->index == 0) ? '' : ($this->index+1);
3044
  $full_path = $this->zip_basename.$itext.'.zip';
3045
+
3046
+ $checksums = $updraftplus->which_checksums();
3047
+
3048
+ $checksum_description = '';
3049
+
3050
+ foreach ($checksums as $checksum) {
3051
+
3052
+ $cksum = hash_file($checksum, $full_path.'.tmp');
3053
+ $updraftplus->jobdata_set($checksum.'-'.$youwhat.$this->index, $cksum);
3054
+ if ($checksum_description) $checksum_description .= ', ';
3055
+ $checksum_description .= "$checksum: $cksum";
3056
+
3057
+ }
3058
 
3059
  $next_full_path = $this->zip_basename.($this->index+2).'.zip';
3060
  # We touch the next zip before renaming the temporary file; this indicates that the backup for the entity is not *necessarily* finished
3067
  $updraftplus->something_useful_happened();
3068
  }
3069
  }
3070
+
3071
  $kbsize = filesize($full_path)/1024;
3072
  $rate = round($kbsize/$timetaken, 1);
3073
+ $updraftplus->log("Created ".$this->whichone." zip (".$this->index.") - ".round($kbsize,1)." KB in ".round($timetaken,1)." s ($rate KB/s) (checksums: $checksum_description)");
3074
  $this->zip_microtime_start = microtime(true);
3075
 
3076
  # No need to add $itext here - we can just delete any temporary files for this zip
class-updraftplus.php CHANGED
@@ -182,6 +182,72 @@ class UpdraftPlus {
182
  if (ob_get_level()) ob_end_flush();
183
  flush();
184
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
 
186
  // Returns the number of bytes free, if it can be detected; otherwise, false
187
  // Presently, we only detect CPanel. If you know of others, then feel free to contribute!
@@ -295,8 +361,6 @@ class UpdraftPlus {
295
  try {
296
  if (method_exists($backup_obj, $call_method)) {
297
  call_user_func(array($backup_obj, $call_method));
298
- } elseif (method_exists($backup_obj, 'action_handler')) {
299
- call_user_func(array($backup_obj, 'action_handler'), $matches[2]);
300
  }
301
  } catch (Exception $e) {
302
  $this->log(sprintf(__("%s error: %s", 'updraftplus'), $method, $e->getMessage().' ('.$e->getCode().')', 'error'));
@@ -1452,6 +1516,15 @@ class UpdraftPlus {
1452
  return false;
1453
  }
1454
  }
 
 
 
 
 
 
 
 
 
1455
 
1456
  // Pretty printing
1457
  public function printfile($description, $history, $entity, $checksums, $jobdata, $smaller=false) {
@@ -1912,7 +1985,13 @@ class UpdraftPlus {
1912
 
1913
  $backupable_entities = $this->get_backupable_file_entities(true);
1914
 
1915
- $checksums = array('sha1' => array());
 
 
 
 
 
 
1916
 
1917
  $total_size = 0;
1918
 
@@ -1926,10 +2005,15 @@ class UpdraftPlus {
1926
  $size_key = (0 == $findex) ? $key.'-size' : $key.$findex.'-size';
1927
  $total_size = (false === $total_size || !isset($our_files[$size_key]) || !is_numeric($our_files[$size_key])) ? false : $total_size + $our_files[$size_key];
1928
 
1929
- $sha = $this->jobdata_get('sha1-'.$key.$findex);
1930
- if ($sha) $checksums['sha1'][$key.$findex] = $sha;
1931
- $sha = $this->jobdata_get('sha1-'.$key.$findex.'.crypt');
1932
- if ($sha) $checksums['sha1'][$key.$findex.".crypt"] = $sha;
 
 
 
 
 
1933
  if ($this->is_uploaded($file)) {
1934
  $this->log("$file: $key: This file has already been successfully uploaded");
1935
  } elseif (is_file($updraft_dir.'/'.$file)) {
@@ -2070,7 +2154,7 @@ class UpdraftPlus {
2070
  if (!is_array($this->jobdata)) $this->jobdata = get_site_option("updraft_jobdata_".$this->nonce, array());
2071
  $this->jobdata['option_cache'] = array();
2072
  }
2073
- return (isset($this->jobdata['option_cache'][$opt])) ? $this->jobdata['option_cache'][$opt] : UpdraftPlus_Options::get_updraft_option($opt);
2074
  }
2075
 
2076
  public function jobdata_get($key, $default = null) {
@@ -2093,13 +2177,27 @@ class UpdraftPlus {
2093
  FROM $wpdb->options
2094
  WHERE option_name IN ('updraftplus_locked_$semaphore', 'updraftplus_unlocked_$semaphore', 'updraftplus_last_lock_time_$semaphore', 'updraftplus_semaphore_$semaphore')
2095
  ");
2096
- // Use of update_option() is correct here - since it is what is used in class-semaphore.php
2097
  if (!is_array($results) || count($results) < 3) {
2098
- if (is_array($results) && count($results) > 0) $this->log("Semaphore ($semaphore) in an impossible/broken state - fixing (".count($results).")");
2099
- update_option('updraftplus_unlocked_'.$semaphore, '1');
2100
- delete_option('updraftplus_locked_'.$semaphore);
2101
- update_option('updraftplus_last_lock_time_'.$semaphore, current_time('mysql', 1));
2102
- update_option('updraftplus_semaphore_'.$semaphore, '0');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2103
  }
2104
  }
2105
 
@@ -2237,7 +2335,7 @@ class UpdraftPlus {
2237
  }
2238
  $obj = new $cclass;
2239
 
2240
- if (method_exists($cclass, 'get_credentials')) {
2241
  $opts = $obj->get_credentials();
2242
  if (is_array($opts)) {
2243
  foreach ($opts as $opt) $option_cache[$opt] = UpdraftPlus_Options::get_updraft_option($opt);
@@ -2921,9 +3019,13 @@ class UpdraftPlus {
2921
  $log = "Deleting local file: $file: ";
2922
  if (UpdraftPlus_Options::get_updraft_option('updraft_delete_local')) {
2923
  $fullpath = $this->backups_dir_location().'/'.$file;
2924
- $deleted = unlink($fullpath);
2925
- $this->log($log.(($deleted) ? 'OK' : 'failed'));
2926
- return $deleted;
 
 
 
 
2927
  } else {
2928
  $this->log($log."skipped: user has unchecked updraft_delete_local option");
2929
  }
@@ -3237,7 +3339,7 @@ class UpdraftPlus {
3237
  static $scheduled = array();
3238
 
3239
 
3240
- if ('updraft_backup' == $event->hook || 'updraft_backup_database' == $event->hook) {
3241
 
3242
  // Reset the option - but make sure it is saved first so that we can used it (since this hook may be called just before our actual cron task)
3243
  $this->combine_jobs_around = UpdraftPlus_Options::get_updraft_option('updraft_combine_jobs_around');
@@ -3357,24 +3459,46 @@ class UpdraftPlus {
3357
 
3358
  // Acts as a WordPress options filter
3359
  public function googledrive_checkchange($google) {
3360
- $opts = UpdraftPlus_Options::get_updraft_option('updraft_googledrive');
3361
- if (!is_array($google)) return $opts;
3362
- $old_client_id = (empty($opts['clientid'])) ? '' : $opts['clientid'];
3363
- if (!empty($opts['token']) && $old_client_id != $google['clientid']) {
3364
- require_once(UPDRAFTPLUS_DIR.'/methods/googledrive.php');
3365
- add_action('http_request_args', array($this, 'modify_http_options'));
3366
- UpdraftPlus_BackupModule_googledrive::gdrive_auth_revoke(false);
3367
- remove_action('http_request_args', array($this, 'modify_http_options'));
3368
- $google['token'] = '';
3369
- unset($opts['ownername']);
 
 
3370
  }
3371
- foreach ($google as $key => $value) {
3372
- // Trim spaces - I got support requests from users who didn't spot the spaces they introduced when copy/pasting
3373
- $opts[$key] = ('clientid' == $key || 'secret' == $key) ? trim($value) : $value;
 
 
 
3374
  }
3375
- if (isset($opts['folder'])) {
3376
- $opts['folder'] = apply_filters('updraftplus_options_googledrive_foldername', 'UpdraftPlus', $opts['folder']);
3377
- unset($opts['parentid']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3378
  }
3379
  return $opts;
3380
  }
@@ -3422,58 +3546,58 @@ class UpdraftPlus {
3422
  }
3423
 
3424
  // Acts as a WordPress options filter
3425
- public function bitcasa_checkchange($bitcasa) {
3426
- $opts = UpdraftPlus_Options::get_updraft_option('updraft_bitcasa');
3427
- if (!is_array($opts)) $opts = array();
3428
- if (!is_array($bitcasa)) return $opts;
3429
- $old_client_id = (empty($opts['clientid'])) ? '' : $opts['clientid'];
3430
- if (!empty($opts['token']) && $old_client_id != $bitcasa['clientid']) {
3431
- unset($opts['token']);
3432
- unset($opts['ownername']);
3433
- }
3434
- foreach ($bitcasa as $key => $value) { $opts[$key] = $value; }
3435
- return $opts;
3436
- }
3437
 
3438
- // Acts as a WordPress options filter
3439
- public function copycom_checkchange($copycom) {
3440
- $opts = UpdraftPlus_Options::get_updraft_option('updraft_copycom');
3441
- if (!is_array($opts)) $opts = array();
3442
- if (!is_array($copycom)) return $opts;
3443
- $old_client_id = (empty($opts['clientid'])) ? '' : $opts['clientid'];
3444
- if (!empty($opts['token']) && $old_client_id != $copycom['clientid']) {
3445
- unset($opts['token']);
3446
- unset($opts['tokensecret']);
3447
- unset($opts['ownername']);
3448
- }
3449
- foreach ($copycom as $key => $value) {
3450
- if ('clientid' == $key || 'secret' == $key) {
3451
- $opts[$key] = trim($value);
3452
- } else {
3453
- $opts[$key] = $value;
3454
  }
 
 
3455
  }
3456
- return $opts;
3457
- }
3458
-
3459
- // Acts as a WordPress options filter
3460
- public function dropbox_checkchange($dropbox) {
3461
- $opts = UpdraftPlus_Options::get_updraft_option('updraft_dropbox');
3462
- if (!is_array($opts)) $opts = array();
3463
  if (!is_array($dropbox)) return $opts;
3464
- if (!empty($opts['tk_access_token']) && empty($opts['appkey']) && !empty($dropbox['appkey'])) {
3465
- unset($opts['tk_access_token']);
3466
- unset($opts['folder']);
3467
- unset($opts['ownername']);
3468
  }
3469
- foreach ($dropbox as $key => $value) {
3470
- if (null === $value) {
3471
- unset($opts[$key]);
3472
- } else {
3473
- $opts[$key] = $value;
 
 
 
 
 
 
 
 
 
3474
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  }
3476
- if (!empty($opts['folder']) && preg_match('#^https?://(www.)dropbox\.com/home/Apps/UpdraftPlus(.Com)?([^/]*)/(.*)$#i', $opts['folder'], $matches)) $opts['folder'] = $matches[3];
3477
  return $opts;
3478
  }
3479
 
@@ -4134,9 +4258,9 @@ CREATE TABLE $wpdb->signups (
4134
  // These are used in 4 places (Feb 2016 - of course, you should re-scan the code to check if relying on this): showing current settings on the debug modal, wiping all current settings, getting a settings bundle to restore when migrating, and for relevant keys in POST-ed data when saving settings over AJAX
4135
  public function get_settings_keys() {
4136
  // N.B. updraft_backup_history is not included here, as we don't want that wiped
4137
- return array('updraft_autobackup_default', 'updraft_dropbox', 'updraft_googledrive', 'updraftplus_tmp_googledrive_access_token', 'updraftplus_dismissedautobackup', 'dismissed_general_notices_until', 'dismissed_season_notices_until', 'updraftplus_dismissedexpiry', 'updraftplus_dismisseddashnotice', 'updraft_interval', 'updraft_interval_increments', 'updraft_interval_database', 'updraft_retain', 'updraft_retain_db', 'updraft_encryptionphrase', 'updraft_service', 'updraft_dropbox_appkey', 'updraft_dropbox_secret', 'updraft_googledrive_clientid', 'updraft_googledrive_secret', 'updraft_googledrive_remotepath', 'updraft_ftp', 'updraft_ftp_login', 'updraft_ftp_pass', 'updraft_ftp_remote_path', 'updraft_server_address', 'updraft_dir', 'updraft_email', 'updraft_delete_local', 'updraft_debug_mode', 'updraft_include_plugins', 'updraft_include_themes', 'updraft_include_uploads', 'updraft_include_others', 'updraft_include_wpcore', 'updraft_include_wpcore_exclude', 'updraft_include_more', 'updraft_include_blogs', 'updraft_include_mu-plugins',
4138
- 'updraft_include_others_exclude', 'updraft_include_uploads_exclude', 'updraft_lastmessage', 'updraft_googledrive_token', 'updraft_dropboxtk_request_token', 'updraft_dropboxtk_access_token', 'updraft_dropbox_folder', 'updraft_adminlocking', 'updraft_updraftvault', 'updraft_remotesites', 'updraft_migrator_localkeys', 'updraft_central_localkeys', 'updraft_retain_extrarules', 'updraft_googlecloud', 'updraft_include_more_path', 'updraft_split_every', 'updraft_ssl_nossl', 'updraft_backupdb_nonwp', 'updraft_extradbs', 'updraft_combine_jobs_around',
4139
- 'updraft_last_backup', 'updraft_starttime_files', 'updraft_starttime_db', 'updraft_startday_db', 'updraft_startday_files', 'updraft_sftp_settings', 'updraft_s3', 'updraft_s3generic', 'updraft_dreamhost', 'updraft_s3generic_login', 'updraft_s3generic_pass', 'updraft_s3generic_remote_path', 'updraft_s3generic_endpoint', 'updraft_webdav_settings', 'updraft_openstack', 'updraft_bitcasa', 'updraft_copycom', 'updraft_onedrive', 'updraft_azure', 'updraft_cloudfiles', 'updraft_cloudfiles_user', 'updraft_cloudfiles_apikey', 'updraft_cloudfiles_path', 'updraft_cloudfiles_authurl', 'updraft_ssl_useservercerts', 'updraft_ssl_disableverify', 'updraft_s3_login', 'updraft_s3_pass', 'updraft_s3_remote_path', 'updraft_dreamobjects_login', 'updraft_dreamobjects_pass', 'updraft_dreamobjects_remote_path', 'updraft_dreamobjects', 'updraft_report_warningsonly', 'updraft_report_wholebackup', 'updraft_log_syslog', 'updraft_extradatabases');
4140
  }
4141
 
4142
  /**
182
  if (ob_get_level()) ob_end_flush();
183
  flush();
184
  }
185
+
186
+ /**
187
+ * This converts array-style options (i.e. late 2013-onwards) to
188
+ * 2017-style multi-array-style options.
189
+ *
190
+ * N.B. Don't actually call this on any particular method's options
191
+ * until the functions which read the options can cope!
192
+ *
193
+ * N.B. Until the UI is changed (DOM changed), saving settings will
194
+ * revert to the previous format. But that does not break anything.
195
+ *
196
+ * Don't call for settings that aren't array-style. You may lose
197
+ * the settings if you do.
198
+ *
199
+ * It is safe to call this if you are not sure if the options are
200
+ * already updated.
201
+ *
202
+ * @param String $method - the method identifier
203
+ *
204
+ * @returns Array|WP_Error - returns the new options, or a WP_Error if it failed
205
+ */
206
+ public function update_remote_storage_options_format($method) {
207
+
208
+ // Prevent recursion
209
+ static $already_active = false;
210
+
211
+ if ($already_active) return new WP_Error('recursion', 'UpdraftPlus::update_remote_storage_options_format() was called in a loop. This is usually caused by an options filter failing to correctly process a "recursion" error code');
212
+
213
+ if (!file_exists(UPDRAFTPLUS_DIR.'/methods/'.$method.'.php')) return new WP_Error('no_such_method', 'Remote storage method not found', $method);
214
+
215
+ // Sanity/inconsistency check
216
+ $settings_keys = $this->get_settings_keys();
217
+
218
+ $method_key = 'updraft_'.$method;
219
+
220
+ if (!in_array($method_key, $settings_keys)) return new WP_Error('no_such_setting', 'Setting not found for this method', $method);
221
+
222
+ $current_setting = UpdraftPlus_Options::get_updraft_option($method_key, array());
223
+
224
+ if (!is_array($current_setting) && false !== $current_setting) return new WP_Error('format_unrecognised', 'Settings format not recognised', array('method' => $method, 'current_setting' => $current_setting));
225
+
226
+ // Already converted?
227
+ if (isset($current_setting['version'])) return $current_setting;
228
+
229
+ // Cryptographic randomness not required. The prefix helps avoid potential for type-juggling issues.
230
+ $uuid = 's-'.md5(rand().uniqid().microtime(true));
231
+
232
+ $new_setting = array(
233
+ 'version' => 1,
234
+ );
235
+
236
+ if (!is_array($current_setting)) $current_setting = array();
237
+
238
+ $new_setting['settings'] = array($uuid => $current_setting);
239
+
240
+ $already_active = true;
241
+ $updated = UpdraftPlus_Options::update_updraft_option($method_key, $new_setting);
242
+ $already_active = false;
243
+
244
+ if ($updated) {
245
+ return $new_setting;
246
+ } else {
247
+ return WP_Error('save_failed', 'Saving the options in the new format failed', array('method' => $method, 'current_setting' => $new_setting));
248
+ }
249
+
250
+ }
251
 
252
  // Returns the number of bytes free, if it can be detected; otherwise, false
253
  // Presently, we only detect CPanel. If you know of others, then feel free to contribute!
361
  try {
362
  if (method_exists($backup_obj, $call_method)) {
363
  call_user_func(array($backup_obj, $call_method));
 
 
364
  }
365
  } catch (Exception $e) {
366
  $this->log(sprintf(__("%s error: %s", 'updraftplus'), $method, $e->getMessage().' ('.$e->getCode().')', 'error'));
1516
  return false;
1517
  }
1518
  }
1519
+
1520
+ /**
1521
+ * Indicate which checksums to take for backup files. Abstracted for extensibilty and future changes.
1522
+ *
1523
+ * @returns array - a list of hashing algorithms, as understood by PHP's hash() function
1524
+ */
1525
+ public function which_checksums() {
1526
+ return apply_filters('updraftplus_which_checksums', array('sha1', 'sha256'));
1527
+ }
1528
 
1529
  // Pretty printing
1530
  public function printfile($description, $history, $entity, $checksums, $jobdata, $smaller=false) {
1985
 
1986
  $backupable_entities = $this->get_backupable_file_entities(true);
1987
 
1988
+ $checksum_list = $this->which_checksums();
1989
+
1990
+ $checksums = array();
1991
+
1992
+ foreach ($checksum_list as $checksum) {
1993
+ $checksums[$checksum] = array();
1994
+ }
1995
 
1996
  $total_size = 0;
1997
 
2005
  $size_key = (0 == $findex) ? $key.'-size' : $key.$findex.'-size';
2006
  $total_size = (false === $total_size || !isset($our_files[$size_key]) || !is_numeric($our_files[$size_key])) ? false : $total_size + $our_files[$size_key];
2007
 
2008
+ foreach ($checksum_list as $checksum) {
2009
+
2010
+ $cksum = $this->jobdata_get($checksum.'-'.$key.$findex);
2011
+ if ($cksum) $checksums[$checksum][$key.$findex] = $cksum;
2012
+ $cksum = $this->jobdata_get($checksum.'-'.$key.$findex.'.crypt');
2013
+ if ($cksum) $checksums[$checksum][$key.$findex.".crypt"] = $cksum;
2014
+
2015
+ }
2016
+
2017
  if ($this->is_uploaded($file)) {
2018
  $this->log("$file: $key: This file has already been successfully uploaded");
2019
  } elseif (is_file($updraft_dir.'/'.$file)) {
2154
  if (!is_array($this->jobdata)) $this->jobdata = get_site_option("updraft_jobdata_".$this->nonce, array());
2155
  $this->jobdata['option_cache'] = array();
2156
  }
2157
+ return isset($this->jobdata['option_cache'][$opt]) ? $this->jobdata['option_cache'][$opt] : UpdraftPlus_Options::get_updraft_option($opt);
2158
  }
2159
 
2160
  public function jobdata_get($key, $default = null) {
2177
  FROM $wpdb->options
2178
  WHERE option_name IN ('updraftplus_locked_$semaphore', 'updraftplus_unlocked_$semaphore', 'updraftplus_last_lock_time_$semaphore', 'updraftplus_semaphore_$semaphore')
2179
  ");
2180
+
2181
  if (!is_array($results) || count($results) < 3) {
2182
+
2183
+ if (is_array($results) && count($results) > 0) {
2184
+ $this->log("Semaphore ($semaphore, ".$wpdb->options.") in an impossible/broken state - fixing (".count($results).")");
2185
+ } else {
2186
+ $this->log("Semaphore ($semaphore, ".$wpdb->options.") being initialised");
2187
+ }
2188
+
2189
+ $wpdb->query("
2190
+ DELETE FROM $wpdb->options
2191
+ WHERE option_name IN ('updraftplus_locked_$semaphore', 'updraftplus_unlocked_$semaphore', 'updraftplus_last_lock_time_$semaphore', 'updraftplus_semaphore_$semaphore')
2192
+ ");
2193
+
2194
+ $wpdb->query($wpdb->prepare("
2195
+ INSERT INTO $wpdb->options (option_name, option_value, autoload)
2196
+ VALUES
2197
+ ('updraftplus_unlocked_$semaphore', '1', 'no'),
2198
+ ('updraftplus_last_lock_time_$semaphore', '%s', 'no'),
2199
+ ('updraftplus_semaphore_$semaphore', '0', 'no')
2200
+ ", current_time('mysql', 1)));
2201
  }
2202
  }
2203
 
2335
  }
2336
  $obj = new $cclass;
2337
 
2338
+ if (is_callable(array($obj, 'get_credentials'))) {
2339
  $opts = $obj->get_credentials();
2340
  if (is_array($opts)) {
2341
  foreach ($opts as $opt) $option_cache[$opt] = UpdraftPlus_Options::get_updraft_option($opt);
3019
  $log = "Deleting local file: $file: ";
3020
  if (UpdraftPlus_Options::get_updraft_option('updraft_delete_local')) {
3021
  $fullpath = $this->backups_dir_location().'/'.$file;
3022
+
3023
+ //check to make sure it exists before removing
3024
+ if(realpath($fullpath)){
3025
+ $deleted = unlink($fullpath);
3026
+ $this->log($log.(($deleted) ? 'OK' : 'failed'));
3027
+ return $deleted;
3028
+ }
3029
  } else {
3030
  $this->log($log."skipped: user has unchecked updraft_delete_local option");
3031
  }
3339
  static $scheduled = array();
3340
 
3341
 
3342
+ if (is_object($event) && ('updraft_backup' == $event->hook || 'updraft_backup_database' == $event->hook)) {
3343
 
3344
  // Reset the option - but make sure it is saved first so that we can used it (since this hook may be called just before our actual cron task)
3345
  $this->combine_jobs_around = UpdraftPlus_Options::get_updraft_option('updraft_combine_jobs_around');
3459
 
3460
  // Acts as a WordPress options filter
3461
  public function googledrive_checkchange($google) {
3462
+
3463
+ // Get the current options (and possibly update them to the new format)
3464
+ $opts = $this->update_remote_storage_options_format('googledrive');
3465
+
3466
+ if (is_wp_error($opts)) {
3467
+ if ('recursion' !== $opts->get_error_code()) {
3468
+ $msg = "Google Drive (".$opts->get_error_code()."): ".$opts->get_error_message();
3469
+ $this->log($msg);
3470
+ error_log("UpdraftPlus: $msg");
3471
+ }
3472
+ // The saved options had a problem; so, return the new ones
3473
+ return $google;
3474
  }
3475
+ //$opts = UpdraftPlus_Options::get_updraft_option('updraft_googledrive');
3476
+ if (!is_array($google)) return $opts;
3477
+
3478
+ // Remove instances that no longer exist
3479
+ foreach ($opts['settings'] as $instance_id => $storage_options) {
3480
+ if (!isset($google['settings'][$instance_id])) unset($opts['settings'][$instance_id]);
3481
  }
3482
+
3483
+ foreach ($google['settings'] as $instance_id => $storage_options) {
3484
+ $old_client_id = (empty($opts['settings'][$instance_id]['clientid'])) ? '' : $opts['settings'][$instance_id]['clientid'];
3485
+ if (!empty($opts['settings'][$instance_id]['token']) && $old_client_id != $storage_options['clientid']) {
3486
+ require_once(UPDRAFTPLUS_DIR.'/methods/googledrive.php');
3487
+ add_action('http_request_args', array($this, 'modify_http_options'));
3488
+ $googledrive = new UpdraftPlus_BackupModule_googledrive();
3489
+ $googledrive->gdrive_auth_revoke(false);
3490
+ remove_action('http_request_args', array($this, 'modify_http_options'));
3491
+ $opts['settings'][$instance_id]['token'] = '';
3492
+ unset($opts['settings'][$instance_id]['ownername']);
3493
+ }
3494
+ foreach ($storage_options as $key => $value) {
3495
+ // Trim spaces - I got support requests from users who didn't spot the spaces they introduced when copy/pasting
3496
+ $opts['settings'][$instance_id][$key] = ('clientid' == $key || 'secret' == $key) ? trim($value) : $value;
3497
+ }
3498
+ if (isset($opts['settings'][$instance_id]['folder'])) {
3499
+ $opts['settings'][$instance_id]['folder'] = apply_filters('updraftplus_options_googledrive_foldername', 'UpdraftPlus', $opts['settings'][$instance_id]['folder']);
3500
+ unset($opts['settings'][$instance_id]['parentid']);
3501
+ }
3502
  }
3503
  return $opts;
3504
  }
3546
  }
3547
 
3548
  // Acts as a WordPress options filter
3549
+ public function dropbox_checkchange($dropbox) {
 
 
 
 
 
 
 
 
 
 
 
3550
 
3551
+ // Get the current options (and possibly update them to the new format)
3552
+ $opts = $this->update_remote_storage_options_format('dropbox');
3553
+
3554
+ if (is_wp_error($opts)) {
3555
+ if ('recursion' !== $opts->get_error_code()) {
3556
+ $msg = "Dropbox (".$opts->get_error_code()."): ".$opts->get_error_message();
3557
+ $this->log($msg);
3558
+ error_log("UpdraftPlus: $msg");
 
 
 
 
 
 
 
 
3559
  }
3560
+ // The saved options had a problem; so, return the new ones
3561
+ return $dropbox;
3562
  }
3563
+
3564
+ // If the input is not as expected, then return the current options
 
 
 
 
 
3565
  if (!is_array($dropbox)) return $opts;
3566
+
3567
+ // Remove instances that no longer exist
3568
+ foreach ($opts['settings'] as $instance_id => $storage_options) {
3569
+ if (!isset($dropbox['settings'][$instance_id])) unset($opts['settings'][$instance_id]);
3570
  }
3571
+
3572
+ foreach ($dropbox['settings'] as $instance_id => $storage_options) {
3573
+ if (!empty($opts['settings'][$instance_id]['tk_access_token'])) {
3574
+
3575
+ $current_app_key = empty($opts['settings'][$instance_id]['appkey']) ? false : $opts['settings'][$instance_id]['appkey'];
3576
+ $new_app_key = empty($storage_options['appkey']) ? false : $storage_options['appkey'];
3577
+
3578
+ // If a different app key is being used, then wipe the stored token as it cannot belong to the new app
3579
+ if ($current_app_key !== $new_app_key) {
3580
+ unset($opts['settings'][$instance_id]['tk_access_token']);
3581
+ unset($opts['settings'][$instance_id]['ownername']);
3582
+ unset($opts['settings'][$instance_id]['CSRF']);
3583
+ }
3584
+
3585
  }
3586
+
3587
+ // Now loop over the new options, and replace old options with them
3588
+ foreach ($storage_options as $key => $value) {
3589
+ if (null === $value) {
3590
+ unset($opts['settings'][$instance_id][$key]);
3591
+ } else {
3592
+ if (!isset($opts['settings'][$instance_id])) $opts['settings'][$instance_id] = array();
3593
+ $opts['settings'][$instance_id][$key] = $value;
3594
+ }
3595
+ }
3596
+
3597
+ if (!empty($opts['settings'][$instance_id]['folder']) && preg_match('#^https?://(www.)dropbox\.com/home/Apps/UpdraftPlus(.Com)?([^/]*)/(.*)$#i', $opts['settings'][$instance_id]['folder'], $matches)) $opts['settings'][$instance_id]['folder'] = $matches[3];
3598
+
3599
  }
3600
+
3601
  return $opts;
3602
  }
3603
 
4258
  // These are used in 4 places (Feb 2016 - of course, you should re-scan the code to check if relying on this): showing current settings on the debug modal, wiping all current settings, getting a settings bundle to restore when migrating, and for relevant keys in POST-ed data when saving settings over AJAX
4259
  public function get_settings_keys() {
4260
  // N.B. updraft_backup_history is not included here, as we don't want that wiped
4261
+ return array('updraft_autobackup_default', 'updraft_dropbox', 'updraft_googledrive', 'updraftplus_tmp_googledrive_access_token', 'updraftplus_dismissedautobackup', 'dismissed_general_notices_until', 'dismissed_season_notices_until', 'updraftplus_dismissedexpiry', 'updraftplus_dismisseddashnotice', 'updraft_interval', 'updraft_interval_increments', 'updraft_interval_database', 'updraft_retain', 'updraft_retain_db', 'updraft_encryptionphrase', 'updraft_service', 'updraft_googledrive_clientid', 'updraft_googledrive_secret', 'updraft_googledrive_remotepath', 'updraft_ftp', 'updraft_server_address', 'updraft_dir', 'updraft_email', 'updraft_delete_local', 'updraft_debug_mode', 'updraft_include_plugins', 'updraft_include_themes', 'updraft_include_uploads', 'updraft_include_others', 'updraft_include_wpcore', 'updraft_include_wpcore_exclude', 'updraft_include_more', 'updraft_include_blogs', 'updraft_include_mu-plugins',
4262
+ 'updraft_include_others_exclude', 'updraft_include_uploads_exclude', 'updraft_lastmessage', 'updraft_googledrive_token', 'updraft_dropboxtk_request_token', 'updraft_dropboxtk_access_token', 'updraft_adminlocking', 'updraft_updraftvault', 'updraft_remotesites', 'updraft_migrator_localkeys', 'updraft_central_localkeys', 'updraft_retain_extrarules', 'updraft_googlecloud', 'updraft_include_more_path', 'updraft_split_every', 'updraft_ssl_nossl', 'updraft_backupdb_nonwp', 'updraft_extradbs', 'updraft_combine_jobs_around',
4263
+ 'updraft_last_backup', 'updraft_starttime_files', 'updraft_starttime_db', 'updraft_startday_db', 'updraft_startday_files', 'updraft_sftp_settings', 'updraft_s3', 'updraft_s3generic', 'updraft_dreamhost', 'updraft_s3generic_login', 'updraft_s3generic_pass', 'updraft_s3generic_remote_path', 'updraft_s3generic_endpoint', 'updraft_webdav_settings', 'updraft_openstack', 'updraft_onedrive', 'updraft_azure', 'updraft_cloudfiles', 'updraft_cloudfiles_user', 'updraft_cloudfiles_apikey', 'updraft_cloudfiles_path', 'updraft_cloudfiles_authurl', 'updraft_ssl_useservercerts', 'updraft_ssl_disableverify', 'updraft_s3_login', 'updraft_s3_pass', 'updraft_s3_remote_path', 'updraft_dreamobjects_login', 'updraft_dreamobjects_pass', 'updraft_dreamobjects_remote_path', 'updraft_dreamobjects', 'updraft_report_warningsonly', 'updraft_report_wholebackup', 'updraft_log_syslog', 'updraft_extradatabases');
4264
  }
4265
 
4266
  /**
class-zip.php CHANGED
@@ -34,28 +34,39 @@ class UpdraftPlus_PclZip {
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
 
@@ -67,6 +78,7 @@ class UpdraftPlus_PclZip {
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";
@@ -79,6 +91,7 @@ class UpdraftPlus_PclZip {
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;
@@ -156,6 +169,10 @@ class UpdraftPlus_PclZip {
156
  $this->adddirs[] = $dir;
157
  }
158
 
 
 
 
 
159
  }
160
 
161
  class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
34
  }
35
 
36
  public function __get($name) {
37
+ if ($name == 'numFiles' || $name == 'numAll') {
38
 
39
+ if (empty($this->pclzip)) return false;
40
 
41
+ $statindex = $this->pclzip->listContent();
42
 
43
+ if (empty($statindex)) {
44
+ $this->statindex = array();
45
+ // We return a value that is == 0, but allowing a PclZip error to be detected (PclZip returns 0 in the case of an error).
46
+ if (0 === $statindex) $this->last_error = $this->pclzip->errorInfo(true);
47
+ return (0 === $statindex) ? false : 0;
48
+ }
49
+
50
+ if ($name == 'numFiles') {
51
+
52
+ $result = array();
53
+ foreach ($statindex as $i => $file) {
54
+ if (!isset($statindex[$i]['folder']) || 0 == $statindex[$i]['folder']) {
55
+ $result[] = $file;
56
+ }
57
+ unset($statindex[$i]);
58
+ }
59
+
60
+ $this->statindex=$result;
61
 
62
+ } else {
63
+ $this->statindex=$statindex;
 
 
64
  }
 
 
65
 
66
+ return count($this->statindex);
67
+ }
68
 
69
+ return null;
70
 
71
  }
72
 
78
  }
79
 
80
  public function open($path, $flags = 0) {
81
+
82
  if(!class_exists('PclZip')) include_once(ABSPATH.'/wp-admin/includes/class-pclzip.php');
83
  if(!class_exists('PclZip')) {
84
  $this->last_error = "No PclZip class was found";
91
  if ($flags == $ziparchive_create_match && file_exists($path)) @unlink($path);
92
 
93
  $this->pclzip = new PclZip($path);
94
+
95
  if (empty($this->pclzip)) {
96
  $this->last_error = 'Could not get a PclZip object';
97
  return false;
169
  $this->adddirs[] = $dir;
170
  }
171
 
172
+ public function extract($path_to_extract, $path) {
173
+ return $this->pclzip->extract(PCLZIP_OPT_PATH, $path_to_extract, PCLZIP_OPT_BY_NAME, $path);
174
+ }
175
+
176
  }
177
 
178
  class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
css/admin.css CHANGED
@@ -324,6 +324,69 @@ h3 .thank-you {
324
  #updraft_webdav_host_error {
325
  color: red;
326
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  /* More files jstree styles */
328
  #updraft_more_files_container {
329
  position: relative;
324
  #updraft_webdav_host_error {
325
  color: red;
326
  }
327
+
328
+ /* jstree styles */
329
+
330
+ /* these styles hide the dots from the parent but keep the arrows */
331
+ #updraft_zip_files_jstree .jstree-container-ul > .jstree-node,
332
+ #updraft_more_files_jstree .jstree-container-ul > .jstree-node {
333
+ background:transparent;
334
+ }
335
+
336
+ #updraft_zip_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,
337
+ #updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {
338
+ background-position:-36px -4px;
339
+ }
340
+
341
+ #updraft_zip_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,
342
+ #updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {
343
+ background-position:-4px -4px;
344
+ }
345
+
346
+ #updraft_zip_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,
347
+ #updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {
348
+ background:transparent;
349
+ }
350
+
351
+ /* zip browser jstree styles */
352
+ #updraft_zip_files_container {
353
+ position: relative;
354
+ height: 450px;
355
+ overflow: none;
356
+ }
357
+
358
+ #updraft_zip_info_container {
359
+ position: relative;
360
+ height: auto;
361
+ width: 100%;
362
+ border: 1px dotted;
363
+ margin-bottom: 5px;
364
+ }
365
+
366
+ #updraft_zip_info_container p {
367
+ margin: 1px;
368
+ padding-left: 10px;
369
+ font-size: 14px;
370
+ }
371
+
372
+ #updraft_zip_download_item {
373
+ display: none;
374
+ color: #0073aa;
375
+ padding-left: 10px;
376
+ }
377
+
378
+ #updraft_zip_download_notice {
379
+ padding-left: 10px;
380
+ }
381
+
382
+ #updraft_zip_files_jstree_container {
383
+ position: relative;
384
+ border: 1px dotted;
385
+ height: 80%;
386
+ width: 100%;
387
+ overflow: auto;
388
+ }
389
+
390
  /* More files jstree styles */
391
  #updraft_more_files_container {
392
  position: relative;
images/addons-images/all.png ADDED
Binary file
images/addons-images/autobackup.png ADDED
Binary file
images/addons-images/azure.png ADDED
Binary file
images/addons-images/cloudfiles-enhanced.png ADDED
Binary file
images/addons-images/copycom.png ADDED
Binary file
images/addons-images/dropbox-folders.png ADDED
Binary file
images/{notices/backuptime.png → addons-images/fixtime.png} RENAMED
File without changes
images/addons-images/google-enhanced.png ADDED
Binary file
images/addons-images/googlecloud.png ADDED
Binary file
images/{notices → addons-images}/importer.png RENAMED
File without changes
images/addons-images/lockadmin.png ADDED
Binary file
images/addons-images/migrator.png ADDED
Binary file
images/{notices/moredatabase_option.png → addons-images/moredatabase.png} RENAMED
File without changes
images/{notices → addons-images}/morefiles.png RENAMED
File without changes
images/addons-images/morestorage.png ADDED
Binary file
images/{notices/networkmultisite.png → addons-images/multisite.png} RENAMED
File without changes
images/{notices/noads.png → addons-images/noadverts.png} RENAMED
File without changes
images/addons-images/onedrive.png ADDED
Binary file
images/addons-images/reporting.png ADDED
Binary file
images/addons-images/s3-enhanced.png ADDED
Binary file
images/addons-images/sftp.png ADDED
Binary file
images/addons-images/webdav.png ADDED
Binary file
images/copycom.png DELETED
Binary file
includes/Dropbox/OAuth/Storage/WordPress.php CHANGED
@@ -12,173 +12,184 @@
12
 
13
  class Dropbox_WordPress implements Dropbox_StorageInterface
14
  {
15
- /**
16
- * Option name
17
- * @var string
18
- */
19
- protected $option_name_prefix = 'dropbox_token';
20
-
21
- /**
22
- * Option name (array storage)
23
- * @var string
24
- */
25
- protected $option_array = '';
26
-
27
- /**
28
- * Encyption object
29
- * @var Encrypter|null
30
- */
31
- protected $encrypter = null;
32
-
33
- /**
34
- * Check if an instance of the encrypter is passed, set the encryption object
35
- * @return void
36
- */
37
- public function __construct(Dropbox_Encrypter $encrypter = null, $option_name_prefix = 'dropbox_token', $option_array = 'dropbox')
38
- {
39
- if ($encrypter instanceof Dropbox_Encrypter) {
40
- $this->encrypter = $encrypter;
41
- }
42
 
43
- $this->option_name_prefix = $option_name_prefix;
44
- $this->option_array = $option_array;
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
- }
47
-
48
- /**
49
- * Get an entry from the Dropbox options in the database
50
- * If the encryption object is set then decrypt the token before returning
51
- * @param string $type is the key to retrieve
52
- * @return array|bool
53
- */
54
- public function get($type)
55
- {
56
- if ($type != 'request_token' && $type != 'access_token' && $type != 'appkey' && $type != 'CSRF' && $type != 'code') {
57
- throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF' or 'code', got '$type'");
58
- } else {
59
- if (false !== ($opts = UpdraftPlus_Options::get_updraft_option($this->option_array))) {
60
- if ($type == 'request_token' || $type == 'access_token'){
61
- if (!empty($opts[$this->option_name_prefix.$type])) {
62
- $gettoken = $opts[$this->option_name_prefix.$type];
63
- $token = $this->decrypt($gettoken);
64
- return $token;
65
- }
66
- } else {
67
- if (!empty($opts[$type])) {
68
- return $opts[$type];
69
- }
70
- }
71
- }
72
- return false;
73
- }
74
- }
75
-
76
- /**
77
- * Set a value in the database by type
78
- * If the value is a token and the encryption object is set then encrypt the token before storing
79
- * @param \stdClass Token object to set
80
- * @param string $type Token type
81
- * @return void
82
- */
83
- public function set($token, $type)
84
- {
85
- if ($type != 'request_token' && $type != 'access_token' && $type != 'upgraded' && $type != 'CSRF' && $type != 'code') {
86
- throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF', 'upgraded' or 'code', got '$type'");
87
- } else {
88
-
89
- $opts = UpdraftPlus_Options::get_updraft_option($this->option_array);
90
-
91
- if ($type == 'access_token'){
92
- $token = $this->encrypt($token);
93
- $opts[$this->option_name_prefix.$type] = $token;
94
- } else if ($type == 'request_token' ) {
95
- $opts[$this->option_name_prefix.$type] = $token;
96
- } else {
97
- $opts[$type] = $token;
98
- }
99
- UpdraftPlus_Options::update_updraft_option($this->option_array, $opts);
100
- }
101
- }
102
-
103
- /**
104
- * Remove a value in the database by type rather than setting to null / empty
105
- * set the value to null here so that when it gets to the options filter it will
106
- * unset the value there, this avoids a bug where if the value is not set then
107
- * the option filter will take the value from the database and save that version back.
108
- *
109
- * N.B. Before PHP 7.0, you can't call a method name unset()
110
- *
111
- * @param string $type Token type
112
- * @return void
113
- */
114
- public function do_unset($type)
115
- {
116
- if ($type != 'request_token' && $type != 'access_token' && $type != 'upgraded' && $type != 'CSRF' && $type != 'code') {
117
- throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF', 'upgraded' or 'code', got '$type'");
118
- } else {
119
-
120
- $opts = UpdraftPlus_Options::get_updraft_option($this->option_array);
121
-
122
- if ($type == 'access_token' || $type == 'request_token'){
123
- $opts[$this->option_name_prefix.$type] = null;
124
- } else {
125
- $opts[$type] = null;
126
- }
127
- UpdraftPlus_Options::update_updraft_option($this->option_array, $opts);
128
- }
129
- }
130
-
131
- /**
132
- * Delete the request and access tokens currently stored in the database
133
- * @return bool
134
- */
135
- public function delete()
136
- {
137
- $opts = UpdraftPlus_Options::get_updraft_option($this->option_array);
138
- $opts[$this->option_name_prefix.'request_token'] = null;
139
- $opts[$this->option_name_prefix.'access_token'] = null;
140
- unset($opts['ownername']);
141
- unset($opts['upgraded']);
142
- UpdraftPlus_Options::update_updraft_option($this->option_array, $opts);
143
- return true;
144
- }
145
-
146
- /**
147
- * Use the Encrypter to encrypt a token and return it
148
- * If there is not encrypter object, return just the
149
- * serialized token object for storage
150
- * @param stdClass $token OAuth token to encrypt
151
- * @return stdClass|string
152
- */
153
- protected function encrypt($token)
154
- {
155
- // Serialize the token object
156
- $token = serialize($token);
157
-
158
- // Encrypt the token if there is an Encrypter instance
159
- if ($this->encrypter instanceof Dropbox_Encrypter) {
160
- $token = $this->encrypter->encrypt($token);
161
- }
162
-
163
- // Return the token
164
- return $token;
165
- }
166
-
167
- /**
168
- * Decrypt a token using the Encrypter object and return it
169
- * If there is no Encrypter object, assume the token was stored
170
- * serialized and return the unserialized token object
171
- * @param stdClass $token OAuth token to encrypt
172
- * @return stdClass|string
173
- */
174
- protected function decrypt($token)
175
- {
176
- // Decrypt the token if there is an Encrypter instance
177
- if ($this->encrypter instanceof Dropbox_Encrypter) {
178
- $token = $this->encrypter->decrypt($token);
179
- }
180
-
181
- // Return the unserialized token
182
- return @unserialize($token);
183
- }
 
 
 
 
 
 
 
 
184
  }
12
 
13
  class Dropbox_WordPress implements Dropbox_StorageInterface
14
  {
15
+ /**
16
+ * Option name
17
+ * @var string
18
+ */
19
+ protected $option_name_prefix = 'dropbox_token';
20
+
21
+ /**
22
+ * Option name (array storage)
23
+ * @var string
24
+ */
25
+ protected $option_array = '';
26
+
27
+ /**
28
+ * Encyption object
29
+ * @var Encrypter|null
30
+ */
31
+ protected $encrypter = null;
 
 
 
 
 
 
 
 
 
 
32
 
33
+ /**
34
+ * Backup module object
35
+ * @var Backup_module_object|null
36
+ */
37
+ protected $backup_module_object = null;
38
+
39
+ /**
40
+ * Check if an instance of the encrypter is passed, set the encryption object
41
+ * @return void
42
+ */
43
+ public function __construct(Dropbox_Encrypter $encrypter = null, $option_name_prefix = 'dropbox_token', $option_array = 'dropbox', $backup_module_object)
44
+ {
45
+ if ($encrypter instanceof Dropbox_Encrypter) {
46
+ $this->encrypter = $encrypter;
47
+ }
48
 
49
+ if ($backup_module_object instanceof UpdraftPlus_BackupModule) {
50
+ $this->backup_module_object = $backup_module_object;
51
+ }
52
+
53
+ $this->option_name_prefix = $option_name_prefix;
54
+ $this->option_array = $option_array;
55
+
56
+ }
57
+
58
+ /**
59
+ * Get an entry from the Dropbox options in the database
60
+ * If the encryption object is set then decrypt the token before returning
61
+ * @param string $type is the key to retrieve
62
+ * @return array|bool
63
+ */
64
+ public function get($type)
65
+ {
66
+ if ($type != 'request_token' && $type != 'access_token' && $type != 'appkey' && $type != 'CSRF' && $type != 'code') {
67
+ throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF' or 'code', got '$type'");
68
+ } else {
69
+ if (false !== ($opts = $this->backup_module_object->get_options())) {
70
+ if ($type == 'request_token' || $type == 'access_token'){
71
+ if (!empty($opts[$this->option_name_prefix.$type])) {
72
+ $gettoken = $opts[$this->option_name_prefix.$type];
73
+ $token = $this->decrypt($gettoken);
74
+ return $token;
75
+ }
76
+ } else {
77
+ if (!empty($opts[$type])) {
78
+ return $opts[$type];
79
+ }
80
+ }
81
+ }
82
+ return false;
83
+ }
84
+ }
85
+
86
+ /**
87
+ * Set a value in the database by type
88
+ * If the value is a token and the encryption object is set then encrypt the token before storing
89
+ * @param \stdClass Token object to set
90
+ * @param string $type Token type
91
+ * @return void
92
+ */
93
+ public function set($token, $type)
94
+ {
95
+ if ($type != 'request_token' && $type != 'access_token' && $type != 'upgraded' && $type != 'CSRF' && $type != 'code') {
96
+ throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF', 'upgraded' or 'code', got '$type'");
97
+ } else {
98
+
99
+ $opts = $this->backup_module_object->get_options();
100
+
101
+ if ($type == 'access_token'){
102
+ $token = $this->encrypt($token);
103
+ $opts[$this->option_name_prefix.$type] = $token;
104
+ } else if ($type == 'request_token' ) {
105
+ $opts[$this->option_name_prefix.$type] = $token;
106
+ } else {
107
+ $opts[$type] = $token;
108
+ }
109
+
110
+ $this->backup_module_object->set_options($opts, true);
111
+ }
112
+ }
113
+
114
+ /**
115
+ * Remove a value in the database by type rather than setting to null / empty
116
+ * set the value to null here so that when it gets to the options filter it will
117
+ * unset the value there, this avoids a bug where if the value is not set then
118
+ * the option filter will take the value from the database and save that version back.
119
+ *
120
+ * N.B. Before PHP 7.0, you can't call a method name unset()
121
+ *
122
+ * @param string $type Token type
123
+ * @return void
124
+ */
125
+ public function do_unset($type)
126
+ {
127
+ if ($type != 'request_token' && $type != 'access_token' && $type != 'upgraded' && $type != 'CSRF' && $type != 'code') {
128
+ throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF', 'upgraded' or 'code', got '$type'");
129
+ } else {
130
+
131
+ $opts = $this->backup_module_object->get_options();
132
+
133
+ if ($type == 'access_token' || $type == 'request_token'){
134
+ $opts[$this->option_name_prefix.$type] = null;
135
+ } else {
136
+ $opts[$type] = null;
137
+ }
138
+ $this->backup_module_object->set_options($opts, true);
139
+ }
140
+ }
141
+
142
+ /**
143
+ * Delete the request and access tokens currently stored in the database
144
+ * @return bool
145
+ */
146
+ public function delete()
147
+ {
148
+ $opts = $this->backup_module_object->get_options();
149
+ $opts[$this->option_name_prefix.'request_token'] = null;
150
+ $opts[$this->option_name_prefix.'access_token'] = null;
151
+ unset($opts['ownername']);
152
+ unset($opts['upgraded']);
153
+ $this->backup_module_object->set_options($opts, true);
154
+ return true;
155
+ }
156
+
157
+ /**
158
+ * Use the Encrypter to encrypt a token and return it
159
+ * If there is not encrypter object, return just the
160
+ * serialized token object for storage
161
+ * @param stdClass $token OAuth token to encrypt
162
+ * @return stdClass|string
163
+ */
164
+ protected function encrypt($token)
165
+ {
166
+ // Serialize the token object
167
+ $token = serialize($token);
168
+
169
+ // Encrypt the token if there is an Encrypter instance
170
+ if ($this->encrypter instanceof Dropbox_Encrypter) {
171
+ $token = $this->encrypter->encrypt($token);
172
+ }
173
+
174
+ // Return the token
175
+ return $token;
176
+ }
177
+
178
+ /**
179
+ * Decrypt a token using the Encrypter object and return it
180
+ * If there is no Encrypter object, assume the token was stored
181
+ * serialized and return the unserialized token object
182
+ * @param stdClass $token OAuth token to encrypt
183
+ * @return stdClass|string
184
+ */
185
+ protected function decrypt($token)
186
+ {
187
+ // Decrypt the token if there is an Encrypter instance
188
+ if ($this->encrypter instanceof Dropbox_Encrypter) {
189
+ $token = $this->encrypter->decrypt($token);
190
+ }
191
+
192
+ // Return the unserialized token
193
+ return @unserialize($token);
194
+ }
195
  }
includes/Dropbox2/API.php CHANGED
@@ -160,7 +160,7 @@ class UpdraftPlus_Dropbox_API {
160
  */
161
  public function chunkedUpload($file, $filename = false, $path = '', $overwrite = true, $offset = 0, $uploadID = null, $callback = null) {
162
 
163
- if (file_exists($file)) {
164
  if ($handle = @fopen($file, 'r')) {
165
  // Set initial upload ID and offset
166
  if ($offset > 0) {
@@ -190,7 +190,8 @@ class UpdraftPlus_Dropbox_API {
190
  $params = array(
191
  'cursor' => array(
192
  'session_id' => $uploadID,
193
- 'offset' => $offset
 
194
  ),
195
  'api_v2' => true,
196
  'content_upload' => true
@@ -250,8 +251,11 @@ class UpdraftPlus_Dropbox_API {
250
  } catch (Exception $e) {
251
  $responseCheck = json_decode($e->getMessage());
252
  if (isset($responseCheck) && strpos($responseCheck[0] , 'incorrect_offset') !== false) {
253
- $params['cursor']['offset'] = $responseCheck[1];
254
- $response = $this->append_upload($params, $last_call);
 
 
 
255
  } else {
256
  throw $e;
257
  }
160
  */
161
  public function chunkedUpload($file, $filename = false, $path = '', $overwrite = true, $offset = 0, $uploadID = null, $callback = null) {
162
 
163
+ if (file_exists($file)) {
164
  if ($handle = @fopen($file, 'r')) {
165
  // Set initial upload ID and offset
166
  if ($offset > 0) {
190
  $params = array(
191
  'cursor' => array(
192
  'session_id' => $uploadID,
193
+ // If you send it as a string, Dropbox will be unhappy
194
+ 'offset' => (int)$offset
195
  ),
196
  'api_v2' => true,
197
  'content_upload' => true
251
  } catch (Exception $e) {
252
  $responseCheck = json_decode($e->getMessage());
253
  if (isset($responseCheck) && strpos($responseCheck[0] , 'incorrect_offset') !== false) {
254
+ $expected_offset = $responseCheck[1];
255
+ throw new Exception('Submitted input out of alignment: got ['.$params['cursor']['offset'].'] expected ['.$expected_offset.']');
256
+
257
+ // $params['cursor']['offset'] = $responseCheck[1];
258
+ // $response = $this->append_upload($params, $last_call);
259
  } else {
260
  throw $e;
261
  }
includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php CHANGED
@@ -180,7 +180,7 @@ abstract class Dropbox_ConsumerAbstract
180
  protected function deauthenticate()
181
  {
182
  $url = UpdraftPlus_Dropbox_API::API_URL_V2 . self::DEAUTHORISE_METHOD;
183
- $response = $this->fetch('POST', $url, '');
184
  $this->storage->delete();
185
  }
186
 
@@ -278,7 +278,7 @@ abstract class Dropbox_ConsumerAbstract
278
  // Get the request/access token
279
  $token = $this->getToken();
280
 
281
- // Prepare the standard request parameters differnt for OAuth1 and OAuth2, we still need OAuth1 to make the request to the upgrade token endpoint
282
  if (isset($token->token_type)) {
283
  $params = array(
284
  'access_token' => $token->oauth_token,
180
  protected function deauthenticate()
181
  {
182
  $url = UpdraftPlus_Dropbox_API::API_URL_V2 . self::DEAUTHORISE_METHOD;
183
+ $response = $this->fetch('POST', $url, '', array('api_v2' => true));
184
  $this->storage->delete();
185
  }
186
 
278
  // Get the request/access token
279
  $token = $this->getToken();
280
 
281
+ // Prepare the standard request parameters differently for OAuth1 and OAuth2; we still need OAuth1 to make the request to the upgrade token endpoint
282
  if (isset($token->token_type)) {
283
  $params = array(
284
  'access_token' => $token->oauth_token,
includes/Dropbox2/OAuth/Consumer/Curl.php CHANGED
@@ -180,9 +180,9 @@ class Dropbox_Curl extends Dropbox_ConsumerAbstract
180
  }
181
 
182
  // Check if an error occurred and throw an Exception
183
- if (!empty($response['body']->error)) {
184
  // Dropbox returns error messages inconsistently...
185
- if ($response['body']->error instanceof stdClass) {
186
  $array = array_values((array) $response['body']->error);
187
  //Dropbox API v2 only throws 409 errors if this error is a incorrect_offset then we need the entire error array not just the message. PHP Exception messages have to be a string so JSON encode the array.
188
  if (strpos($array[0] , 'incorrect_offset') !== false) {
@@ -199,8 +199,13 @@ class Dropbox_Curl extends Dropbox_ConsumerAbstract
199
  } else {
200
  $message = $array[0];
201
  }
202
- } else {
203
  $message = $response['body']->error;
 
 
 
 
 
204
  }
205
 
206
  // Throw an Exception with the appropriate with the appropriate message and code
180
  }
181
 
182
  // Check if an error occurred and throw an Exception
183
+ if (!empty($response['body']->error) || $code >= 400) {
184
  // Dropbox returns error messages inconsistently...
185
+ if (!empty($response['body']->error) && $response['body']->error instanceof stdClass) {
186
  $array = array_values((array) $response['body']->error);
187
  //Dropbox API v2 only throws 409 errors if this error is a incorrect_offset then we need the entire error array not just the message. PHP Exception messages have to be a string so JSON encode the array.
188
  if (strpos($array[0] , 'incorrect_offset') !== false) {
199
  } else {
200
  $message = $array[0];
201
  }
202
+ } elseif (!empty($response['body']->error)) {
203
  $message = $response['body']->error;
204
+ } elseif (is_string($response['body'])) {
205
+ // 31 Mar 2017 - This case has been found to exist; though the docs imply that there's always an 'error' property and that what is returned in JSON, we found a case of this being returned just as a simple string, but detectable via an HTTP 400: Error in call to API function "files/upload_session/append_v2": HTTP header "Dropbox-API-Arg": cursor.offset: expected integer, got string
206
+ $message = $response['body'];
207
+ } else {
208
+ $message = "HTTP bad response code: $code";
209
  }
210
 
211
  // Throw an Exception with the appropriate with the appropriate message and code
includes/Dropbox2/OAuth/Storage/WordPress.php CHANGED
@@ -12,173 +12,184 @@
12
 
13
  class Dropbox_WordPress implements Dropbox_StorageInterface
14
  {
15
- /**
16
- * Option name
17
- * @var string
18
- */
19
- protected $option_name_prefix = 'dropbox_token';
20
-
21
- /**
22
- * Option name (array storage)
23
- * @var string
24
- */
25
- protected $option_array = '';
26
-
27
- /**
28
- * Encyption object
29
- * @var Encrypter|null
30
- */
31
- protected $encrypter = null;
32
-
33
- /**
34
- * Check if an instance of the encrypter is passed, set the encryption object
35
- * @return void
36
- */
37
- public function __construct(Dropbox_Encrypter $encrypter = null, $option_name_prefix = 'dropbox_token', $option_array = 'dropbox')
38
- {
39
- if ($encrypter instanceof Dropbox_Encrypter) {
40
- $this->encrypter = $encrypter;
41
- }
42
 
43
- $this->option_name_prefix = $option_name_prefix;
44
- $this->option_array = $option_array;
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
- }
47
-
48
- /**
49
- * Get an entry from the Dropbox options in the database
50
- * If the encryption object is set then decrypt the token before returning
51
- * @param string $type is the key to retrieve
52
- * @return array|bool
53
- */
54
- public function get($type)
55
- {
56
- if ($type != 'request_token' && $type != 'access_token' && $type != 'appkey' && $type != 'CSRF' && $type != 'code') {
57
- throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF' or 'code', got '$type'");
58
- } else {
59
- if (false !== ($opts = UpdraftPlus_Options::get_updraft_option($this->option_array))) {
60
- if ($type == 'request_token' || $type == 'access_token'){
61
- if (!empty($opts[$this->option_name_prefix.$type])) {
62
- $gettoken = $opts[$this->option_name_prefix.$type];
63
- $token = $this->decrypt($gettoken);
64
- return $token;
65
- }
66
- } else {
67
- if (!empty($opts[$type])) {
68
- return $opts[$type];
69
- }
70
- }
71
- }
72
- return false;
73
- }
74
- }
75
-
76
- /**
77
- * Set a value in the database by type
78
- * If the value is a token and the encryption object is set then encrypt the token before storing
79
- * @param \stdClass Token object to set
80
- * @param string $type Token type
81
- * @return void
82
- */
83
- public function set($token, $type)
84
- {
85
- if ($type != 'request_token' && $type != 'access_token' && $type != 'upgraded' && $type != 'CSRF' && $type != 'code') {
86
- throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF', 'upgraded' or 'code', got '$type'");
87
- } else {
88
-
89
- $opts = UpdraftPlus_Options::get_updraft_option($this->option_array);
90
-
91
- if ($type == 'access_token'){
92
- $token = $this->encrypt($token);
93
- $opts[$this->option_name_prefix.$type] = $token;
94
- } else if ($type == 'request_token' ) {
95
- $opts[$this->option_name_prefix.$type] = $token;
96
- } else {
97
- $opts[$type] = $token;
98
- }
99
- UpdraftPlus_Options::update_updraft_option($this->option_array, $opts);
100
- }
101
- }
102
-
103
- /**
104
- * Remove a value in the database by type rather than setting to null / empty
105
- * set the value to null here so that when it gets to the options filter it will
106
- * unset the value there, this avoids a bug where if the value is not set then
107
- * the option filter will take the value from the database and save that version back.
108
- *
109
- * N.B. Before PHP 7.0, you can't call a method name unset()
110
- *
111
- * @param string $type Token type
112
- * @return void
113
- */
114
- public function do_unset($type)
115
- {
116
- if ($type != 'request_token' && $type != 'access_token' && $type != 'upgraded' && $type != 'CSRF' && $type != 'code') {
117
- throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF', 'upgraded' or 'code', got '$type'");
118
- } else {
119
-
120
- $opts = UpdraftPlus_Options::get_updraft_option($this->option_array);
121
-
122
- if ($type == 'access_token' || $type == 'request_token'){
123
- $opts[$this->option_name_prefix.$type] = null;
124
- } else {
125
- $opts[$type] = null;
126
- }
127
- UpdraftPlus_Options::update_updraft_option($this->option_array, $opts);
128
- }
129
- }
130
-
131
- /**
132
- * Delete the request and access tokens currently stored in the database
133
- * @return bool
134
- */
135
- public function delete()
136
- {
137
- $opts = UpdraftPlus_Options::get_updraft_option($this->option_array);
138
- $opts[$this->option_name_prefix.'request_token'] = null;
139
- $opts[$this->option_name_prefix.'access_token'] = null;
140
- unset($opts['ownername']);
141
- unset($opts['upgraded']);
142
- UpdraftPlus_Options::update_updraft_option($this->option_array, $opts);
143
- return true;
144
- }
145
-
146
- /**
147
- * Use the Encrypter to encrypt a token and return it
148
- * If there is not encrypter object, return just the
149
- * serialized token object for storage
150
- * @param stdClass $token OAuth token to encrypt
151
- * @return stdClass|string
152
- */
153
- protected function encrypt($token)
154
- {
155
- // Serialize the token object
156
- $token = serialize($token);
157
-
158
- // Encrypt the token if there is an Encrypter instance
159
- if ($this->encrypter instanceof Dropbox_Encrypter) {
160
- $token = $this->encrypter->encrypt($token);
161
- }
162
-
163
- // Return the token
164
- return $token;
165
- }
166
-
167
- /**
168
- * Decrypt a token using the Encrypter object and return it
169
- * If there is no Encrypter object, assume the token was stored
170
- * serialized and return the unserialized token object
171
- * @param stdClass $token OAuth token to encrypt
172
- * @return stdClass|string
173
- */
174
- protected function decrypt($token)
175
- {
176
- // Decrypt the token if there is an Encrypter instance
177
- if ($this->encrypter instanceof Dropbox_Encrypter) {
178
- $token = $this->encrypter->decrypt($token);
179
- }
180
-
181
- // Return the unserialized token
182
- return @unserialize($token);
183
- }
 
 
 
 
 
 
 
 
184
  }
12
 
13
  class Dropbox_WordPress implements Dropbox_StorageInterface
14
  {
15
+ /**
16
+ * Option name
17
+ * @var string
18
+ */
19
+ protected $option_name_prefix = 'dropbox_token';
20
+
21
+ /**
22
+ * Option name (array storage)
23
+ * @var string
24
+ */
25
+ protected $option_array = '';
26
+
27
+ /**
28
+ * Encyption object
29
+ * @var Encrypter|null
30
+ */
31
+ protected $encrypter = null;
 
 
 
 
 
 
 
 
 
 
32
 
33
+ /**
34
+ * Backup module object
35
+ * @var Backup_module_object|null
36
+ */
37
+ protected $backup_module_object = null;
38
+
39
+ /**
40
+ * Check if an instance of the encrypter is passed, set the encryption object
41
+ * @return void
42
+ */
43
+ public function __construct(Dropbox_Encrypter $encrypter = null, $option_name_prefix = 'dropbox_token', $option_array = 'dropbox', $backup_module_object)
44
+ {
45
+ if ($encrypter instanceof Dropbox_Encrypter) {
46
+ $this->encrypter = $encrypter;
47
+ }
48
 
49
+ if ($backup_module_object instanceof UpdraftPlus_BackupModule) {
50
+ $this->backup_module_object = $backup_module_object;
51
+ }
52
+
53
+ $this->option_name_prefix = $option_name_prefix;
54
+ $this->option_array = $option_array;
55
+
56
+ }
57
+
58
+ /**
59
+ * Get an entry from the Dropbox options in the database
60
+ * If the encryption object is set then decrypt the token before returning
61
+ * @param string $type is the key to retrieve
62
+ * @return array|bool
63
+ */
64
+ public function get($type)
65
+ {
66
+ if ($type != 'request_token' && $type != 'access_token' && $type != 'appkey' && $type != 'CSRF' && $type != 'code') {
67
+ throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF' or 'code', got '$type'");
68
+ } else {
69
+ if (false !== ($opts = $this->backup_module_object->get_options())) {
70
+ if ($type == 'request_token' || $type == 'access_token'){
71
+ if (!empty($opts[$this->option_name_prefix.$type])) {
72
+ $gettoken = $opts[$this->option_name_prefix.$type];
73
+ $token = $this->decrypt($gettoken);
74
+ return $token;
75
+ }
76
+ } else {
77
+ if (!empty($opts[$type])) {
78
+ return $opts[$type];
79
+ }
80
+ }
81
+ }
82
+ return false;
83
+ }
84
+ }
85
+
86
+ /**
87
+ * Set a value in the database by type
88
+ * If the value is a token and the encryption object is set then encrypt the token before storing
89
+ * @param \stdClass Token object to set
90
+ * @param string $type Token type
91
+ * @return void
92
+ */
93
+ public function set($token, $type)
94
+ {
95
+ if ($type != 'request_token' && $type != 'access_token' && $type != 'upgraded' && $type != 'CSRF' && $type != 'code') {
96
+ throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF', 'upgraded' or 'code', got '$type'");
97
+ } else {
98
+
99
+ $opts = $this->backup_module_object->get_options();
100
+
101
+ if ($type == 'access_token'){
102
+ $token = $this->encrypt($token);
103
+ $opts[$this->option_name_prefix.$type] = $token;
104
+ } else if ($type == 'request_token' ) {
105
+ $opts[$this->option_name_prefix.$type] = $token;
106
+ } else {
107
+ $opts[$type] = $token;
108
+ }
109
+
110
+ $this->backup_module_object->set_options($opts, true);
111
+ }
112
+ }
113
+
114
+ /**
115
+ * Remove a value in the database by type rather than setting to null / empty
116
+ * set the value to null here so that when it gets to the options filter it will
117
+ * unset the value there, this avoids a bug where if the value is not set then
118
+ * the option filter will take the value from the database and save that version back.
119
+ *
120
+ * N.B. Before PHP 7.0, you can't call a method name unset()
121
+ *
122
+ * @param string $type Token type
123
+ * @return void
124
+ */
125
+ public function do_unset($type)
126
+ {
127
+ if ($type != 'request_token' && $type != 'access_token' && $type != 'upgraded' && $type != 'CSRF' && $type != 'code') {
128
+ throw new Dropbox_Exception("Expected a type of either 'request_token', 'access_token', 'CSRF', 'upgraded' or 'code', got '$type'");
129
+ } else {
130
+
131
+ $opts = $this->backup_module_object->get_options();
132
+
133
+ if ($type == 'access_token' || $type == 'request_token'){
134
+ $opts[$this->option_name_prefix.$type] = null;
135
+ } else {
136
+ $opts[$type] = null;
137
+ }
138
+ $this->backup_module_object->set_options($opts, true);
139
+ }
140
+ }
141
+
142
+ /**
143
+ * Delete the request and access tokens currently stored in the database
144
+ * @return bool
145
+ */
146
+ public function delete()
147
+ {
148
+ $opts = $this->backup_module_object->get_options();
149
+ $opts[$this->option_name_prefix.'request_token'] = null;
150
+ $opts[$this->option_name_prefix.'access_token'] = null;
151
+ unset($opts['ownername']);
152
+ unset($opts['upgraded']);
153
+ $this->backup_module_object->set_options($opts, true);
154
+ return true;
155
+ }
156
+
157
+ /**
158
+ * Use the Encrypter to encrypt a token and return it
159
+ * If there is not encrypter object, return just the
160
+ * serialized token object for storage
161
+ * @param stdClass $token OAuth token to encrypt
162
+ * @return stdClass|string
163
+ */
164
+ protected function encrypt($token)
165
+ {
166
+ // Serialize the token object
167
+ $token = serialize($token);
168
+
169
+ // Encrypt the token if there is an Encrypter instance
170
+ if ($this->encrypter instanceof Dropbox_Encrypter) {
171
+ $token = $this->encrypter->encrypt($token);
172
+ }
173
+
174
+ // Return the token
175
+ return $token;
176
+ }
177
+
178
+ /**
179
+ * Decrypt a token using the Encrypter object and return it
180
+ * If there is no Encrypter object, assume the token was stored
181
+ * serialized and return the unserialized token object
182
+ * @param stdClass $token OAuth token to encrypt
183
+ * @return stdClass|string
184
+ */
185
+ protected function decrypt($token)
186
+ {
187
+ // Decrypt the token if there is an Encrypter instance
188
+ if ($this->encrypter instanceof Dropbox_Encrypter) {
189
+ $token = $this->encrypter->decrypt($token);
190
+ }
191
+
192
+ // Return the unserialized token
193
+ return @unserialize($token);
194
+ }
195
  }
includes/class-commands.php CHANGED
@@ -115,7 +115,7 @@ class UpdraftPlus_Commands {
115
  }
116
 
117
  public function get_log($job_id = '') {
118
-
119
  if (false === ($updraftplus_admin = $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
120
 
121
  if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
115
  }
116
 
117
  public function get_log($job_id = '') {
118
+
119
  if (false === ($updraftplus_admin = $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
120
 
121
  if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
includes/class-semaphore.php CHANGED
@@ -38,7 +38,7 @@ class UpdraftPlus_Semaphore {
38
  ");
39
 
40
  if ($affected == '0' and !$this->stuck_check()) {
41
- $updraftplus->log('Semaphore lock ('.$this->lock_name.') failed (line '.__LINE__.')');
42
  return false;
43
  }
44
 
@@ -51,7 +51,7 @@ class UpdraftPlus_Semaphore {
51
  ");
52
  if ($affected != '1') {
53
  if (!$this->stuck_check()) {
54
- $updraftplus->log('Semaphore lock ('.$this->lock_name.') failed (line '.__LINE__.')');
55
  return false;
56
  }
57
 
@@ -62,7 +62,7 @@ class UpdraftPlus_Semaphore {
62
  WHERE option_name = 'updraftplus_semaphore_".$this->lock_name."'
63
  ");
64
 
65
- $updraftplus->log('Semaphore ('.$this->lock_name.') reset to 1');
66
  }
67
 
68
  // Set the lock time
@@ -145,7 +145,7 @@ class UpdraftPlus_Semaphore {
145
  return true;
146
  }
147
 
148
- $updraftplus->log('Semaphore ('.$this->lock_name.') still locked ('.$result.')');
149
  return false;
150
  }
151
 
@@ -173,7 +173,7 @@ class UpdraftPlus_Semaphore {
173
  ", $current_time, $three_minutes_before));
174
 
175
  if ('1' == $affected) {
176
- $updraftplus->log('Semaphore ('.$this->lock_name.') was stuck, set lock time to '.$current_time);
177
  $this->lock_broke = true;
178
  return true;
179
  }
38
  ");
39
 
40
  if ($affected == '0' and !$this->stuck_check()) {
41
+ $updraftplus->log('Semaphore lock ('.$this->lock_name.', '.$wpdb->options.') failed (line '.__LINE__.')');
42
  return false;
43
  }
44
 
51
  ");
52
  if ($affected != '1') {
53
  if (!$this->stuck_check()) {
54
+ $updraftplus->log('Semaphore lock ('.$this->lock_name.', '.$wpdb->options.') failed (line '.__LINE__.')');
55
  return false;
56
  }
57
 
62
  WHERE option_name = 'updraftplus_semaphore_".$this->lock_name."'
63
  ");
64
 
65
+ $updraftplus->log('Semaphore ('.$this->lock_name.', '.$wpdb->options.') reset to 1');
66
  }
67
 
68
  // Set the lock time
145
  return true;
146
  }
147
 
148
+ $updraftplus->log('Semaphore ('.$this->lock_name.', '.$wpdb->options.') still locked ('.$result.')');
149
  return false;
150
  }
151
 
173
  ", $current_time, $three_minutes_before));
174
 
175
  if ('1' == $affected) {
176
+ $updraftplus->log('Semaphore ('.$this->lock_name.', '.$wpdb->options.') was stuck, set lock time to '.$current_time);
177
  $this->lock_broke = true;
178
  return true;
179
  }
includes/class-udrpc.php CHANGED
@@ -58,7 +58,7 @@ if ($ud_rpc->get_key_local()) {
58
  if (!class_exists('UpdraftPlus_Remote_Communications')):
59
  class UpdraftPlus_Remote_Communications {
60
  // 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)
61
- public $version = '1.4.9';
62
 
63
  private $key_name_indicator;
64
 
@@ -150,14 +150,8 @@ class UpdraftPlus_Remote_Communications {
150
  if (!class_exists('Crypt_Rijndael')) require_once 'Crypt/Rijndael.php';
151
  if (!class_exists('Crypt_RSA')) require_once 'Crypt/RSA.php';
152
  if (!class_exists('Crypt_Hash')) require_once 'Crypt/Hash.php';
153
- } elseif (file_exists(dirname(__DIR__).'/vendor/phpseclib')) {
154
- $pdir = dirname(__DIR__).'/vendor/phpseclib';
155
- if (false === strpos(get_include_path(), $pdir)) set_include_path($pdir.PATH_SEPARATOR.get_include_path());
156
- if (!class_exists('Crypt_Rijndael')) require_once 'Crypt/Rijndael.php';
157
- if (!class_exists('Crypt_RSA')) require_once 'Crypt/RSA.php';
158
- if (!class_exists('Crypt_Hash')) require_once 'Crypt/Hash.php';
159
- } elseif (file_exists(dirname(__DIR__).'/composer/vendor/phpseclib/phpseclib/phpseclib')) {
160
- $pdir = dirname(__DIR__).'/composer/vendor/phpseclib/phpseclib/phpseclib';
161
  if (false === strpos(get_include_path(), $pdir)) set_include_path($pdir.PATH_SEPARATOR.get_include_path());
162
  if (!class_exists('Crypt_Rijndael')) require_once 'Crypt/Rijndael.php';
163
  if (!class_exists('Crypt_RSA')) require_once 'Crypt/RSA.php';
58
  if (!class_exists('UpdraftPlus_Remote_Communications')):
59
  class UpdraftPlus_Remote_Communications {
60
  // 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)
61
+ public $version = '1.4.12';
62
 
63
  private $key_name_indicator;
64
 
150
  if (!class_exists('Crypt_Rijndael')) require_once 'Crypt/Rijndael.php';
151
  if (!class_exists('Crypt_RSA')) require_once 'Crypt/RSA.php';
152
  if (!class_exists('Crypt_Hash')) require_once 'Crypt/Hash.php';
153
+ } elseif (file_exists(dirname(dirname(__FILE__)).'/vendor/phpseclib/phpseclib/phpseclib')) {
154
+ $pdir = dirname(dirname(__FILE__)).'/vendor/phpseclib/phpseclib/phpseclib';
 
 
 
 
 
 
155
  if (false === strpos(get_include_path(), $pdir)) set_include_path($pdir.PATH_SEPARATOR.get_include_path());
156
  if (!class_exists('Crypt_Rijndael')) require_once 'Crypt/Rijndael.php';
157
  if (!class_exists('Crypt_RSA')) require_once 'Crypt/RSA.php';
includes/class-wpadmin-commands.php CHANGED
@@ -337,6 +337,21 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
337
  return array('downloads' => $send_back);
338
  }
339
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
340
  /**
341
  * This creates an array of nodes, built from either ABSPATH or the given directory ready to be returned to the jstree object.
342
  * @param [array] $params this is an array of parameters sent via ajax it can include the following:
@@ -345,46 +360,203 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
345
  * drop_directory - this is a boolean that if set to true will drop one directory level off the path this is used so that you can move above the current root directory
346
  * @return [array] returns an array of jstree nodes
347
  */
348
- public function get_jstree_directory_nodes($params) {
349
-
350
  $node_array = array();
351
 
352
  // # is the root node if it's the root node then this is the first call so create a parent node otherwise it's a child node and we should get the path from the node id
353
  if ($params['node']['id'] == '#') {
354
- if ($params['entity'] == 'filebrowser') {
355
  $path = ABSPATH;
356
 
357
  if (!empty($params['path'])) $path = $params['path'];
358
 
359
  if (!empty($params['drop_directory']) && true == $params['drop_directory']) $path = dirname($path);
360
 
361
- $node_array[] = array('text' => basename($path), 'children' => true, 'id' => $path , 'icon' => 'jstree-folder', 'state' => array('opened' => true));
362
- }
 
 
 
 
 
 
 
363
  } else {
364
- if ($params['entity'] == 'filebrowser') {
365
- $path = $params['node']['id'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
366
  }
367
  }
368
 
369
- if ($params['entity'] == 'filebrowser') {
370
- if ($dh = opendir($path)) {
371
- $path = rtrim($path, DIRECTORY_SEPARATOR);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
372
 
373
- $skip_paths = array(".", "..");
 
 
 
374
 
375
- while (($value = readdir($dh)) !== false) {
376
- if (!in_array($value, $skip_paths)) {
377
- if (is_dir($path . DIRECTORY_SEPARATOR . $value)) {
378
- $node_array[] = array('text' => $value, 'children' => true, 'id' => $path . DIRECTORY_SEPARATOR . $value, 'icon' => 'jstree-folder');
379
- } else {
380
- $node_array[] = array('text' => $value, 'children' => false, 'id' => $path . DIRECTORY_SEPARATOR . $value, 'type' => 'file', 'icon' => 'jstree-file');
381
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382
  }
383
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
384
  }
385
  }
386
 
387
- return array('nodes' => $node_array);
 
 
 
 
388
  }
389
-
390
  }
337
  return array('downloads' => $send_back);
338
  }
339
 
340
+ /**
341
+ * This is an handler function that checks what entity has been specified in the $params and calls the required method
342
+ * @param [array] $params this is an array of parameters sent via ajax it can include various things depending on what has called this method, this method only cares about the entity parameter which is used to call the correct method and return tree nodes based on that
343
+ * @return [array] returns an array of jstree nodes
344
+ */
345
+ public function get_jstree_directory_nodes($params) {
346
+
347
+ if ('filebrowser' == $params['entity']) {
348
+ $node_array = $this->_updraft_jstree_directory($params);
349
+ } elseif ($params['entity'] == 'zipbrowser') {
350
+ $node_array = $this->_updraft_jstree_zip($params);
351
+ }
352
+ return empty($node_array['error']) ? array('nodes' => $node_array) : $node_array;
353
+ }
354
+
355
  /**
356
  * This creates an array of nodes, built from either ABSPATH or the given directory ready to be returned to the jstree object.
357
  * @param [array] $params this is an array of parameters sent via ajax it can include the following:
360
  * drop_directory - this is a boolean that if set to true will drop one directory level off the path this is used so that you can move above the current root directory
361
  * @return [array] returns an array of jstree nodes
362
  */
363
+ private function _updraft_jstree_directory($params) {
 
364
  $node_array = array();
365
 
366
  // # is the root node if it's the root node then this is the first call so create a parent node otherwise it's a child node and we should get the path from the node id
367
  if ($params['node']['id'] == '#') {
 
368
  $path = ABSPATH;
369
 
370
  if (!empty($params['path'])) $path = $params['path'];
371
 
372
  if (!empty($params['drop_directory']) && true == $params['drop_directory']) $path = dirname($path);
373
 
374
+ $node_array[] = array(
375
+ 'text' => basename($path),
376
+ 'children' => true,
377
+ 'id' => $path,
378
+ 'icon' => 'jstree-folder',
379
+ 'state' => array(
380
+ 'opened' => true
381
+ )
382
+ );
383
  } else {
384
+ $path = $params['node']['id'];
385
+ }
386
+
387
+ if ($dh = opendir($path)) {
388
+ $path = rtrim($path, DIRECTORY_SEPARATOR);
389
+
390
+ $skip_paths = array(".", "..");
391
+
392
+ while (($value = readdir($dh)) !== false) {
393
+ if (!in_array($value, $skip_paths)) {
394
+ if (is_dir($path . DIRECTORY_SEPARATOR . $value)) {
395
+ $node_array[] = array(
396
+ 'text' => $value,
397
+ 'children' => true,
398
+ 'id' => $path . DIRECTORY_SEPARATOR . $value,
399
+ 'icon' => 'jstree-folder'
400
+ );
401
+ } else {
402
+ $node_array[] = array('text' => $value,
403
+ 'children' => false,
404
+ 'id' => $path . DIRECTORY_SEPARATOR . $value,
405
+ 'type' => 'file',
406
+ 'icon' => 'jstree-file'
407
+ );
408
+ }
409
+ }
410
  }
411
  }
412
 
413
+ return $node_array;
414
+ }
415
+
416
+ /**
417
+ * This creates an array of nodes, built from a unzipped zip file structure.
418
+ * @param [array] $params this is an array of parameters sent via ajax it can include the following:
419
+ * node - this is a jstree node object containing information about the selected node
420
+ * timestamp - this is the backup timestamp and is used to get the backup archive
421
+ * type - this is the type of backup and is used to get the backup archive
422
+ * findex - this is the index used to get the correct backup archive if theres more than one of a single archive type
423
+ * @return [array] returns an array of jstree nodes
424
+ */
425
+ private function _updraft_jstree_zip($params) {
426
+
427
+ $updraftplus = $this->_updraftplus;
428
+
429
+ $node_array = array();
430
+
431
+ require_once(UPDRAFTPLUS_DIR.'/class-zip.php');
432
+
433
+ $zip_object = 'UpdraftPlus_ZipArchive';
434
 
435
+ # In tests, PclZip was found to be 25% slower than ZipArchive
436
+ if (((defined('UPDRAFTPLUS_PREFERPCLZIP') && UPDRAFTPLUS_PREFERPCLZIP == true) || !class_exists('ZipArchive') || !class_exists('UpdraftPlus_ZipArchive') || (!extension_loaded('zip') && !method_exists('ZipArchive', 'AddFile')))) {
437
+ $zip_object = 'UpdraftPlus_PclZip';
438
+ }
439
 
440
+ // Retrieve the information from our backup history
441
+ $backup_history = $updraftplus->get_backup_history();
442
+
443
+ if (!isset($backup_history[$params['timestamp']][$params['type']])) {
444
+ return array('error' => __('Backup set not found', 'updraftplus'));
445
+ }
446
+
447
+ // Base name
448
+ $file = $backup_history[$params['timestamp']][$params['type']];
449
+
450
+ // Get date in human readable form
451
+ $pretty_date = get_date_from_gmt(gmdate('Y-m-d H:i:s', (int)$params['timestamp']), 'M d, Y G:i');
452
+
453
+ $backupable_entities = $updraftplus->get_backupable_file_entities(true, true);
454
+
455
+ // Check the file type and set the name in a more friendly way
456
+ $archive_name = isset($backupable_entities[$params['type']]['description']) ? $backupable_entities[$params['type']]['description'] : $params['type'];
457
+
458
+ if (substr($params['type'], 0, 2) === 'db') $archive_name = __('Extra database', 'updraftplus') . ' ' . substr($params['type'], 3, 1);
459
+ if ('db' == $params['type']) $archive_name = __('Database', 'updraftplus');
460
+ if ('more' == $params['type']) $archive_name = $backupable_entities[$params['type']]['shortdescription'];
461
+ if ('wpcore' == $params['type']) $archive_name = __('WordPress Core', 'updraftplus');
462
+
463
+ $archive_set = ($params['findex'] + 1) . '/' . sizeof($file);
464
+
465
+ if ('1/1' == $archive_set) $archive_set = '';
466
+
467
+ $parent_name = $archive_name . ' ' . __('archive','updraftplus') . ' ' . $archive_set . ' ' . $pretty_date;
468
+
469
+ // Deal with multi-archive sets
470
+ if (is_array($file)) $file = $file[$params['findex']];
471
+
472
+ // Where it should end up being downloaded to
473
+ $fullpath = $updraftplus->backups_dir_location().'/'.$file;
474
+
475
+ if (file_exists($fullpath) && is_readable($fullpath) && filesize($fullpath)>0) {
476
+
477
+ $node_array[] = array(
478
+ 'text' => $parent_name,
479
+ 'parent' => '#',
480
+ 'id' => $parent_name,
481
+ 'icon' => 'jstree-folder',
482
+ 'state' => array('opened' => true),
483
+ 'li_attr' => array('path' => $parent_name)
484
+ );
485
+
486
+ $zip = new $zip_object;
487
+
488
+ $zip_opened = $zip->open($fullpath);
489
+
490
+ if (true !== $zip_opened) {
491
+ return array('error' => 'UpdraftPlus: opening zip (' . $fullpath . '): failed to open this zip file (object='.$zip_object.', code: '.$zip_opened.')');
492
+ } else {
493
+ if ($zip_object == 'UpdraftPlus_PclZip') {
494
+ $numfiles = $zip->numAll;
495
+ if (false === $numfiles) {
496
+ return array('error' => 'UpdraftPlus: reading zip: '.$zip->last_error);
497
+ }
498
+ } else {
499
+ $numfiles = $zip->numFiles;
500
+ }
501
+
502
+ for ($i=0; $i < $numfiles; $i++) {
503
+ $si = $zip->statIndex($i);
504
+
505
+ // Fix for windows being unable to build jstree due to different directory separators being used
506
+ $si['name'] = str_replace("/", DIRECTORY_SEPARATOR, $si['name']);
507
+
508
+ // if it's a dot then we don't want to append this as it will break the id's and the tree structure
509
+ if ('.' == dirname($si['name'])){
510
+ $node_id = $parent_name;
511
+ } else {
512
+ $node_id = $parent_name . DIRECTORY_SEPARATOR . dirname($si['name']) . DIRECTORY_SEPARATOR;
513
+ }
514
+
515
+ $extension = substr(strrchr($si['name'], "."), 1);
516
+
517
+ if (0 == $si['size'] && empty($extension)) {
518
+ $node_array[] = array(
519
+ 'text' => basename($si['name']),
520
+ 'parent' => $node_id,
521
+ 'id' => $parent_name . DIRECTORY_SEPARATOR . $si['name'],
522
+ 'icon' => 'jstree-folder',
523
+ 'li_attr' => array(
524
+ 'path' => $parent_name . DIRECTORY_SEPARATOR . $si['name']
525
+ )
526
+ );
527
+ } else {
528
+ $node_array[] = array(
529
+ 'text' => basename($si['name']),
530
+ 'parent' => $node_id,
531
+ 'id' => $parent_name . DIRECTORY_SEPARATOR . $si['name'],
532
+ 'type' => 'file',
533
+ 'icon' => 'jstree-file',
534
+ 'li_attr' => array(
535
+ 'path' => $parent_name . DIRECTORY_SEPARATOR . $si['name'], 'size' => $updraftplus->convert_numeric_size_to_text($si['size'])
536
+ )
537
+ );
538
  }
539
  }
540
+
541
+ // check if this is an upload archive if it is add a 'uploads' folder so that the children can attach to it
542
+ if ('uploads' == $params['type']) $node_array[] = array(
543
+ 'text' => 'uploads',
544
+ 'parent' => $parent_name,
545
+ 'id' => $parent_name . DIRECTORY_SEPARATOR . 'uploads' . DIRECTORY_SEPARATOR,
546
+ 'icon' => 'jstree-folder',
547
+ 'li_attr' => array(
548
+ 'path' => $parent_name . DIRECTORY_SEPARATOR . 'uploads' . DIRECTORY_SEPARATOR
549
+ )
550
+ );
551
+
552
+ @$zip->close();
553
  }
554
  }
555
 
556
+ return $node_array;
557
+ }
558
+
559
+ public function get_zipfile_download($params) {
560
+ return apply_filters('updraftplus_command_get_zipfile_download', array('error' => 'UpdraftPlus: command (get_zipfile_download) not installed (are you missing an add-on?)'), $params);
561
  }
 
562
  }
includes/labelauty/jquery-labelauty.css CHANGED
@@ -156,11 +156,6 @@ input.labelauty.cloudfiles + label > span.labelauty-unchecked-image {
156
  background-image: url( ../../images/icons/cloudfiles.png );
157
  }
158
 
159
- input.labelauty.copycom + label > span.labelauty-checked-image,
160
- input.labelauty.copycom + label > span.labelauty-unchecked-image {
161
- background-image: url( ../../images/icons/copycom.png );
162
- }
163
-
164
  input.labelauty.dreamobjects + label > span.labelauty-checked-image,
165
  input.labelauty.dreamobjects + label > span.labelauty-unchecked-image {
166
  background-image: url( ../../images/icons/dreamobjects.png );
156
  background-image: url( ../../images/icons/cloudfiles.png );
157
  }
158
 
 
 
 
 
 
159
  input.labelauty.dreamobjects + label > span.labelauty-checked-image,
160
  input.labelauty.dreamobjects + label > span.labelauty-unchecked-image {
161
  background-image: url( ../../images/icons/dreamobjects.png );
includes/updraft-admin.js CHANGED
@@ -68,7 +68,12 @@ function updraft_send_command(action, data, callback, options) {
68
  }
69
  },
70
  error: function(response, status, error_code) {
71
- if ('function' == typeof options.error_callback) options.error_callback(response, status, error_code);
 
 
 
 
 
72
  },
73
  dataType: 'text',
74
  async: options.async
@@ -142,6 +147,7 @@ function updraft_remote_storage_tabs_setup() {
142
  updraft_remote_storage_tab_activation(ser);
143
  }
144
  });
 
145
  if (anychecked > 0) {
146
  jQuery('.updraftplusmethod.none').hide();
147
  }
@@ -177,7 +183,7 @@ function updraft_remote_storage_tabs_setup() {
177
  }
178
  }
179
  }
180
-
181
  if (anychecked <= 0) {
182
  jQuery('.updraftplusmethod.none').fadeIn();
183
  } else {
@@ -188,7 +194,6 @@ function updraft_remote_storage_tabs_setup() {
188
  //Add stuff for free version
189
  jQuery('.updraft_servicecheckbox:not(.multi)').change(function(){
190
  var svalue = jQuery(this).attr('value');
191
-
192
  if (jQuery(this).is(':not(:checked)')) {
193
  jQuery('.updraftplusmethod.'+svalue).hide();
194
  jQuery('.updraftplusmethod.none').fadeIn();
@@ -202,18 +207,37 @@ function updraft_remote_storage_tabs_setup() {
202
 
203
  }
204
 
205
- function updraft_remote_storage_test(method, result_callback) {
 
 
 
 
 
 
 
206
 
207
- var method_label = jQuery('#updraft-'+method+'-test').data('method_label');
 
 
 
 
 
 
 
 
 
 
 
208
 
209
- jQuery('#updraft-'+method+'-test').html(updraftlion.testing_settings.replace('%s', method_label));
210
 
211
  var data = {
212
  method: method
213
  };
214
 
 
215
  // Add the other items to the data object. The expert mode settings are for the generic SSL options.
216
- jQuery('#updraft-navtab-settings-content .updraftplusmethod.'+method+' input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]').each(function(index, item) {
217
  var item_key = jQuery(item).data('updraft_settings_test');
218
  var input_type = jQuery(item).attr('type');
219
  if (!item_key) { return; }
@@ -235,13 +259,13 @@ function updraft_remote_storage_test(method, result_callback) {
235
  data[item_key] = value;
236
  });
237
  // Data from any text areas or select drop-downs
238
- jQuery('#updraft-navtab-settings-content .updraftplusmethod.'+method+' textarea[data-updraft_settings_test], #updraft-navtab-settings-content .updraftplusmethod.'+method+' select[data-updraft_settings_test]').each(function(index, item) {
239
  var item_key = jQuery(item).data('updraft_settings_test');
240
  data[item_key] = jQuery(item).val();
241
  });
242
 
243
  updraft_send_command('test_storage_settings', data, function(response, status) {
244
- jQuery('#updraft-'+method+'-test').html(updraftlion.test_settings.replace('%s', method_label));
245
  if ('undefined' !== typeof result_callback && false != result_callback) {
246
  result_callback = result_callback.call(this, response, status, data);
247
  }
@@ -630,10 +654,19 @@ function updraft_activejobs_update(force) {
630
  }, { json_parse: false, type: 'GET' });
631
  }
632
 
 
 
 
 
 
633
  function updraft_popuplog(backup_nonce) {
634
 
635
- jQuery('#updraft-poplog').dialog("option", "title", 'log.'+backup_nonce+'.txt');
636
- jQuery('#updraft-poplog-content').html('<em>log.'+backup_nonce+'.txt ...</em>');
 
 
 
 
637
  jQuery('#updraft-poplog').dialog("open");
638
 
639
  updraft_send_command('get_log', backup_nonce, function(resp) {
@@ -655,7 +688,12 @@ function updraft_popuplog(backup_nonce) {
655
 
656
  updraft_poplog_lastscroll = -1;
657
 
658
- }, { type: 'GET' });
 
 
 
 
 
659
  }
660
 
661
  function updraft_showlastbackup() {
@@ -894,10 +932,96 @@ function updraftplus_deletefromserver(timestamp, type, findex) {
894
  };
895
  updraft_send_command('updraft_download_backup', pdata, null, { action: 'updraft_download_backup', nonce: updraft_download_nonce, nonce_key: '_wpnonce' });
896
  }
 
897
  function updraftplus_downloadstage2(timestamp, type, findex) {
898
  location.href=ajaxurl+'?_wpnonce='+updraft_download_nonce+'&timestamp='+timestamp+'&type='+type+'&stage=2&findex='+findex+'&action=updraft_download_backup';
899
  }
900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
901
  function updraft_downloader(base, backup_timestamp, what, whicharea, set_contents, prettydate, async) {
902
 
903
  if (typeof set_contents !== "string") set_contents = set_contents.toString();
@@ -1100,8 +1224,9 @@ function updraft_downloader_status_update(base, backup_timestamp, what, findex,
1100
  var file_ready_actions = updraftlion.fileready+' '+ updraftlion.actions+': \
1101
  <button type="button" onclick="updraftplus_downloadstage2(\''+backup_timestamp+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.downloadtocomputer+'</button> \
1102
  <button id="uddownloaddelete_'+backup_timestamp+'_'+what+'" type="button" onclick="updraftplus_deletefromserver(\''+backup_timestamp+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.deletefromserver+'</button>';
 
1103
  if (resp.hasOwnProperty('can_show_contents') && resp.can_show_contents) {
1104
- file_ready_actions += ' <button type="button" onclick="updraftplus_show_contents(\''+backup_timestamp+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.show_contents+'</button>';
1105
  }
1106
  jQuery(stid_selector+' .raw').html(file_ready_actions);
1107
  }
@@ -1246,10 +1371,10 @@ jQuery(document).ready(function($){
1246
  });
1247
 
1248
  jQuery('#updraft-navtab-settings-content .updraftplusmethod').on('click', 'button.updraft-test-button', function() {
 
1249
  var method = jQuery(this).data('method');
 
1250
  updraft_remote_storage_test(method, function(response, status, data) {
1251
- console.log('THARG');
1252
- console.log(response);
1253
  if ('sftp' != method) { return false; }
1254
 
1255
  if (data.hasOwnProperty('scp') && data.scp) {
@@ -1260,7 +1385,7 @@ console.log(response);
1260
 
1261
  return true;
1262
 
1263
- });
1264
  });
1265
 
1266
  $('#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database').change(function() {
68
  }
69
  },
70
  error: function(response, status, error_code) {
71
+ if ('function' == typeof options.error_callback) {
72
+ options.error_callback(response, status, error_code);
73
+ } else {
74
+ console.log("updraft_send_command: error: "+status+" ("+error_code+")");
75
+ console.log(response);
76
+ }
77
  },
78
  dataType: 'text',
79
  async: options.async
147
  updraft_remote_storage_tab_activation(ser);
148
  }
149
  });
150
+
151
  if (anychecked > 0) {
152
  jQuery('.updraftplusmethod.none').hide();
153
  }
183
  }
184
  }
185
  }
186
+
187
  if (anychecked <= 0) {
188
  jQuery('.updraftplusmethod.none').fadeIn();
189
  } else {
194
  //Add stuff for free version
195
  jQuery('.updraft_servicecheckbox:not(.multi)').change(function(){
196
  var svalue = jQuery(this).attr('value');
 
197
  if (jQuery(this).is(':not(:checked)')) {
198
  jQuery('.updraftplusmethod.'+svalue).hide();
199
  jQuery('.updraftplusmethod.none').fadeIn();
207
 
208
  }
209
 
210
+ /**
211
+ * Carries out a remote storage test
212
+ *
213
+ * @param {string} method - The identifier for the remote storage
214
+ * @param {callback} result_callback - A callback function to be called with the result
215
+ * @param {string} [instance_id] - The particular instance (if any) of the remote storage to be tested (for methods supporting multiple instances)
216
+ */
217
+ function updraft_remote_storage_test(method, result_callback, instance_id) {
218
 
219
+ var $the_button;
220
+ var settings_selector;
221
+
222
+ if (instance_id) {
223
+ $the_button = jQuery('#updraft-'+method+'-test-'+instance_id);
224
+ settings_selector = '.updraftplusmethod.'+method+'-'+instance_id;
225
+ } else {
226
+ $the_button = jQuery('#updraft-'+method+'-test');
227
+ settings_selector = '.updraftplusmethod.'+method;
228
+ }
229
+
230
+ var method_label = $the_button.data('method_label');
231
 
232
+ $the_button.html(updraftlion.testing_settings.replace('%s', method_label));
233
 
234
  var data = {
235
  method: method
236
  };
237
 
238
+
239
  // Add the other items to the data object. The expert mode settings are for the generic SSL options.
240
+ jQuery('#updraft-navtab-settings-content '+settings_selector+' input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]').each(function(index, item) {
241
  var item_key = jQuery(item).data('updraft_settings_test');
242
  var input_type = jQuery(item).attr('type');
243
  if (!item_key) { return; }
259
  data[item_key] = value;
260
  });
261
  // Data from any text areas or select drop-downs
262
+ jQuery('#updraft-navtab-settings-content '+settings_selector+' textarea[data-updraft_settings_test], #updraft-navtab-settings-content '+settings_selector+' select[data-updraft_settings_test]').each(function(index, item) {
263
  var item_key = jQuery(item).data('updraft_settings_test');
264
  data[item_key] = jQuery(item).val();
265
  });
266
 
267
  updraft_send_command('test_storage_settings', data, function(response, status) {
268
+ $the_button.html(updraftlion.test_settings.replace('%s', method_label));
269
  if ('undefined' !== typeof result_callback && false != result_callback) {
270
  result_callback = result_callback.call(this, response, status, data);
271
  }
654
  }, { json_parse: false, type: 'GET' });
655
  }
656
 
657
+ /**
658
+ * Opens a dialog window showing the requested (or latest) log file, plus an option to download it
659
+ *
660
+ * @param String [backup_nonce] - the nonce of the log to display, or empty for the latest one
661
+ */
662
  function updraft_popuplog(backup_nonce) {
663
 
664
+ var loading_message = updraftlion.loading_log_file;
665
+
666
+ if (backup_nonce) { loading_message += ' (log.'+backup_nonce+'.txt)'; }
667
+
668
+ jQuery('#updraft-poplog').dialog("option", "title", loading_message);
669
+ jQuery('#updraft-poplog-content').html('<em>'+loading_message+' ...</em> ');
670
  jQuery('#updraft-poplog').dialog("open");
671
 
672
  updraft_send_command('get_log', backup_nonce, function(resp) {
688
 
689
  updraft_poplog_lastscroll = -1;
690
 
691
+ }, { type: 'GET', timeout: 60000, error_callback: function(response, status, error_code) {
692
+ var msg = (status == error_code) ? error_code : error_code+" ("+status+")";
693
+ jQuery('#updraft-poplog-content').append(msg);
694
+ console.log(response);
695
+ }}
696
+ );
697
  }
698
 
699
  function updraft_showlastbackup() {
932
  };
933
  updraft_send_command('updraft_download_backup', pdata, null, { action: 'updraft_download_backup', nonce: updraft_download_nonce, nonce_key: '_wpnonce' });
934
  }
935
+
936
  function updraftplus_downloadstage2(timestamp, type, findex) {
937
  location.href=ajaxurl+'?_wpnonce='+updraft_download_nonce+'&timestamp='+timestamp+'&type='+type+'&stage=2&findex='+findex+'&action=updraft_download_backup';
938
  }
939
 
940
+ function updraftplus_show_contents(timestamp, type, findex) {
941
+ var modal_content = '<div id="updraft_zip_files_container" class="hidden-in-updraftcentral" style="clear:left;"><div id="updraft_zip_info_container"><p><span id="updraft_zip_path_text">' + updraftlion.zip_file_contents_info + '</span> - <span id="updraft_zip_size_text"></span></p>'+updraftlion.browse_download_link+'</div><div id="updraft_zip_files_jstree_container"><input type="search" id="zip_files_jstree_search" name="zip_files_jstree_search" placeholder="' + updraftlion.search + '"><div id="updraft_zip_files_jstree"></div></div></div>';
942
+
943
+ updraft_html_modal(modal_content, updraftlion.zip_file_contents, 780, 500);
944
+
945
+ zip_files_jstree('zipbrowser', timestamp, type, findex);
946
+ }
947
+
948
+ /**
949
+ * Creates the jstree and makes a call to the backend to dynamically get the tree nodes
950
+ *
951
+ * @param {string} path - Optional path parameter if not passed in then Root of zip will be used
952
+ * @param {bool} drop_directory - Optional parameter that if passed will remove the last directory level from the path, used for if you want to move up the directory tree from the root node
953
+ */
954
+ function zip_files_jstree(entity, timestamp, type, findex) {
955
+
956
+ jQuery('#updraft_zip_files_jstree').jstree({
957
+ "core": {
958
+ "multiple": false,
959
+ "data": function (nodeid, callback) {
960
+ updraft_send_command('get_jstree_directory_nodes', {entity:entity, node:nodeid, timestamp:timestamp, type:type, findex:findex}, function(response) {
961
+ if (response.hasOwnProperty('error')) {
962
+ alert(response.error);
963
+ } else {
964
+ callback.call(this, response.nodes);
965
+ }
966
+ });
967
+ },
968
+ "error": function(error) {
969
+ alert(error);
970
+ console.log(error);
971
+ },
972
+ },
973
+ "search" : {
974
+ "show_only_matches": true
975
+ },
976
+ "plugins" : ["search", "sort"],
977
+ });
978
+
979
+ // Update modal title once tree loads
980
+ jQuery('#updraft_zip_files_jstree').on('ready.jstree', function(e, data) {
981
+ jQuery('#updraft-iframe-modal').dialog('option', 'title', updraftlion.zip_file_contents + ': ' + data.instance.get_node('#').children[0])
982
+ });
983
+
984
+ // Search function for jstree, this will hide nodes that don't match the search
985
+ var timeout = false;
986
+ jQuery('#zip_files_jstree_search').keyup(function () {
987
+ if (timeout) { clearTimeout(timeout); }
988
+ timeout = setTimeout(function () {
989
+ var value = jQuery('#zip_files_jstree_search').val();
990
+ jQuery('#updraft_zip_files_jstree').jstree(true).search(value);
991
+ }, 250);
992
+ });
993
+
994
+ // Detect change on the tree and update the input that has been marked as editing
995
+ jQuery('#updraft_zip_files_jstree').on("changed.jstree", function (e, data) {
996
+ jQuery('#updraft_zip_path_text').text(data.node.li_attr.path);
997
+
998
+ if (data.node.li_attr.size) {
999
+ jQuery('#updraft_zip_size_text').text(data.node.li_attr.size);
1000
+ jQuery('#updraft_zip_download_item').show();
1001
+ } else {
1002
+ jQuery('#updraft_zip_size_text').text('');
1003
+ jQuery('#updraft_zip_download_item').hide();
1004
+ }
1005
+ });
1006
+
1007
+ jQuery('#updraft_zip_download_item').click(function(event) {
1008
+
1009
+ event.preventDefault();
1010
+
1011
+ var path = jQuery('#updraft_zip_path_text').text();
1012
+
1013
+ updraft_send_command('get_zipfile_download', {path:path, timestamp:timestamp, type:type, findex:findex}, function(response) {
1014
+ if (response.hasOwnProperty('error')) {
1015
+ alert(response.error);
1016
+ } else if (response.hasOwnProperty('path')) {
1017
+ location.href=ajaxurl+'?_wpnonce='+updraft_download_nonce+'&timestamp='+timestamp+'&type='+type+'&stage=2&findex='+findex+'&filepath='+response.path+'&action=updraft_download_backup';
1018
+ } else {
1019
+ alert(updraftlion.download_timeout);
1020
+ }
1021
+ });
1022
+ });
1023
+ }
1024
+
1025
  function updraft_downloader(base, backup_timestamp, what, whicharea, set_contents, prettydate, async) {
1026
 
1027
  if (typeof set_contents !== "string") set_contents = set_contents.toString();
1224
  var file_ready_actions = updraftlion.fileready+' '+ updraftlion.actions+': \
1225
  <button type="button" onclick="updraftplus_downloadstage2(\''+backup_timestamp+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.downloadtocomputer+'</button> \
1226
  <button id="uddownloaddelete_'+backup_timestamp+'_'+what+'" type="button" onclick="updraftplus_deletefromserver(\''+backup_timestamp+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.deletefromserver+'</button>';
1227
+
1228
  if (resp.hasOwnProperty('can_show_contents') && resp.can_show_contents) {
1229
+ file_ready_actions += ' <button type="button" onclick="updraftplus_show_contents(\''+backup_timestamp+'\', \''+what+'\', \''+findex+'\')\">'+updraftlion.browse_contents+'</button>';
1230
  }
1231
  jQuery(stid_selector+' .raw').html(file_ready_actions);
1232
  }
1371
  });
1372
 
1373
  jQuery('#updraft-navtab-settings-content .updraftplusmethod').on('click', 'button.updraft-test-button', function() {
1374
+
1375
  var method = jQuery(this).data('method');
1376
+ var instance_id = jQuery(this).data('instance_id');
1377
  updraft_remote_storage_test(method, function(response, status, data) {
 
 
1378
  if ('sftp' != method) { return false; }
1379
 
1380
  if (data.hasOwnProperty('scp') && data.scp) {
1385
 
1386
  return true;
1387
 
1388
+ }, instance_id);
1389
  });
1390
 
1391
  $('#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database').change(function() {
includes/updraftplus-notices.php CHANGED
@@ -50,7 +50,7 @@ class UpdraftPlus_Notices extends Updraft_Notices {
50
  'prefix' => __('UpdraftPlus Premium:', 'updraftplus'),
51
  'title' => __('enhanced remote storage options', 'updraftplus'),
52
  'text' => __('Enhanced storage options for Dropbox, Google Drive and S3. Plus many more options.', 'updraftplus'),
53
- 'image' => 'notices/multiplestorage_destinations.png',
54
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
55
  'button_meta' => 'updraftplus',
56
  'dismiss_time' => 'dismiss_notice',
@@ -60,7 +60,7 @@ class UpdraftPlus_Notices extends Updraft_Notices {
60
  'prefix' => __('UpdraftPlus Premium:', 'updraftplus'),
61
  'title' => __('advanced options', 'updraftplus'),
62
  'text' => __('Secure multisite installation, advanced reporting and much more.', 'updraftplus'),
63
- 'image' => 'notices/reporting.png',
64
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
65
  'button_meta' => 'updraftplus',
66
  'dismiss_time' => 'dismiss_notice',
@@ -70,7 +70,7 @@ class UpdraftPlus_Notices extends Updraft_Notices {
70
  'prefix' => __('UpdraftPlus Premium:', 'updraftplus'),
71
  'title' => __('secure your backups', 'updraftplus'),
72
  'text' => __('Add SFTP to send your data securely, lock settings and encrypt your database backups for extra security.', 'updraftplus'),
73
- 'image' => 'notices/locksettings.png',
74
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
75
  'button_meta' => 'updraftplus',
76
  'dismiss_time' => 'dismiss_notice',
@@ -80,7 +80,7 @@ class UpdraftPlus_Notices extends Updraft_Notices {
80
  'prefix' => __('UpdraftPlus Premium:', 'updraftplus'),
81
  'title' => __('easily migrate or clone your site in minutes', 'updraftplus'),
82
  'text' => __('Copy your site to another domain directly. Includes find-and-replace tool for database references.', 'updraftplus'),
83
- 'image' => 'notices/migrator.png',
84
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
85
  'button_meta' => 'updraftplus',
86
  'dismiss_time' => 'dismiss_notice',
@@ -170,7 +170,7 @@ class UpdraftPlus_Notices extends Updraft_Notices {
170
  'prefix' => '',
171
  'title' => __('Be safe with an automatic backup', 'updraftplus'),
172
  'text' => __('UpdraftPlus Premium can automatically backup your plugins/themes/database before you update, without you needing to remember.', 'updraftplus'),
173
- 'image' => 'automaticbackup.png',
174
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
175
  'button_meta' => 'updraftplus',
176
  'dismiss_time' => 'dismissautobackup',
@@ -254,6 +254,15 @@ class UpdraftPlus_Notices extends Updraft_Notices {
254
  'valid_to' => '2017-07-31 23:59:59',
255
  'supported_positions' => $this->dashboard_top_or_report,
256
  ),
 
 
 
 
 
 
 
 
 
257
  );
258
 
259
  return array_merge($parent_notice_content, $child_notice_content);
@@ -286,6 +295,25 @@ class UpdraftPlus_Notices extends Updraft_Notices {
286
  }
287
  return true;
288
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
 
290
  protected function url_start($html_allowed = false, $url, $https = false, $website_home = 'updraftplus.com') {
291
  return parent::url_start($html_allowed, $url, $https, $website_home);
50
  'prefix' => __('UpdraftPlus Premium:', 'updraftplus'),
51
  'title' => __('enhanced remote storage options', 'updraftplus'),
52
  'text' => __('Enhanced storage options for Dropbox, Google Drive and S3. Plus many more options.', 'updraftplus'),
53
+ 'image' => 'addons-images/morestorage.png',
54
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
55
  'button_meta' => 'updraftplus',
56
  'dismiss_time' => 'dismiss_notice',
60
  'prefix' => __('UpdraftPlus Premium:', 'updraftplus'),
61
  'title' => __('advanced options', 'updraftplus'),
62
  'text' => __('Secure multisite installation, advanced reporting and much more.', 'updraftplus'),
63
+ 'image' => 'addons-images/reporting.png',
64
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
65
  'button_meta' => 'updraftplus',
66
  'dismiss_time' => 'dismiss_notice',
70
  'prefix' => __('UpdraftPlus Premium:', 'updraftplus'),
71
  'title' => __('secure your backups', 'updraftplus'),
72
  'text' => __('Add SFTP to send your data securely, lock settings and encrypt your database backups for extra security.', 'updraftplus'),
73
+ 'image' => 'addons-images/lockadmin.png',
74
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
75
  'button_meta' => 'updraftplus',
76
  'dismiss_time' => 'dismiss_notice',
80
  'prefix' => __('UpdraftPlus Premium:', 'updraftplus'),
81
  'title' => __('easily migrate or clone your site in minutes', 'updraftplus'),
82
  'text' => __('Copy your site to another domain directly. Includes find-and-replace tool for database references.', 'updraftplus'),
83
+ 'image' => 'addons-images/migrator.png',
84
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
85
  'button_meta' => 'updraftplus',
86
  'dismiss_time' => 'dismiss_notice',
170
  'prefix' => '',
171
  'title' => __('Be safe with an automatic backup', 'updraftplus'),
172
  'text' => __('UpdraftPlus Premium can automatically backup your plugins/themes/database before you update, without you needing to remember.', 'updraftplus'),
173
+ 'image' => 'addons-images/autobackup.png',
174
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
175
  'button_meta' => 'updraftplus',
176
  'dismiss_time' => 'dismissautobackup',
254
  'valid_to' => '2017-07-31 23:59:59',
255
  'supported_positions' => $this->dashboard_top_or_report,
256
  ),
257
+ '2fa' => array(
258
+ 'prefix' => '',
259
+ 'title' => 'Clef Two Factor Authentication is shutting down',
260
+ 'text' => $this->url_start(true,'blog.getclef.com/discontinuing-support-for-clef-6c89febef5f3') . __("Clef confirms that they are closing down their two factor security plugin.",'updraftplus') . $this->url_end(true,'blog.getclef.com/discontinuing-support-for-clef-6c89febef5f3') . ' ' . __("Switch to UpdraftPlus's free alternative:", "updraftplus").' <a href="'.wp_nonce_url(self_admin_url('update.php?action=install-plugin&amp;updraftplus_noautobackup=1&amp;plugin=two-factor-authentication'), 'install-plugin_two-factor-authentication').'">'.__("install","updraftplus") .'</a> '. __("or", "updraftplus") . ' ' .$this->url_start(true,'wordpress.org/plugins/two-factor-authentication/') . __("get more info",'updraftplus') . $this->url_end(true,'wordpress.org/plugins/two-factor-authentication/') . '.',
261
+ 'image' => 'notices/updraft_logo.png',
262
+ 'dismiss_time' => 'dismiss_notice',
263
+ 'supported_positions' => $this->anywhere,
264
+ 'validity_function' => 'clef_2fa_installed',
265
+ ),
266
  );
267
 
268
  return array_merge($parent_notice_content, $child_notice_content);
295
  }
296
  return true;
297
  }
298
+
299
+ protected function clef_2fa_installed($plugin_base_dir = null, $product_name = null) {
300
+
301
+ if (!function_exists('get_plugins')) require_once(ABSPATH.'wp-admin/includes/plugin.php');
302
+
303
+ $plugins = get_plugins();
304
+ $clef_found = false;
305
+
306
+ foreach ($plugins as $key => $value) {
307
+ if ('wpclef' == $value['TextDomain']) {
308
+ $clef_found = true;
309
+ } elseif ('two-factor-authentication' == $value['TextDomain'] || 'two-factor-authentication-premium' == $value['TextDomain']) {
310
+ return false;
311
+ }
312
+ }
313
+
314
+ return $clef_found;
315
+
316
+ }
317
 
318
  protected function url_start($html_allowed = false, $url, $https = false, $website_home = 'updraftplus.com') {
319
  return parent::url_start($html_allowed, $url, $https, $website_home);
languages/updraftplus-af.po CHANGED
@@ -11,59 +11,127 @@ msgstr ""
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: restorer.php:1629
15
  msgid "Skipped tables:"
16
  msgstr ""
17
 
18
- #: class-updraftplus.php:4049
19
  msgid "This database backup has the following WordPress tables excluded: %s"
20
  msgstr ""
21
 
22
- #: admin.php:2271
23
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
24
  msgstr ""
25
 
26
- #: admin.php:2271
27
  msgid "All WordPress tables will be backed up."
28
  msgstr ""
29
 
30
- #: admin.php:675
31
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
32
  msgstr ""
33
 
34
- #: admin.php:675
35
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
36
  msgstr ""
37
 
38
- #: admin.php:675
39
  msgid "The available memory on the server."
40
  msgstr ""
41
 
42
- #: admin.php:675
43
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
44
  msgstr ""
45
 
46
- #: admin.php:675
47
  msgid "The file failed to upload. Please check the following:"
48
  msgstr ""
49
 
50
- #: admin.php:674
51
  msgid "HTTP code:"
52
  msgstr ""
53
 
54
- #: admin.php:572
55
  msgid "You have chosen to backup a database, but no tables have been selected"
56
  msgstr ""
57
 
58
- #: addons/moredatabase.php:484
59
  msgid "tables"
60
  msgstr ""
61
 
62
- #: addons/moredatabase.php:483
63
  msgid "WordPress database"
64
  msgstr ""
65
 
66
- #: addons/moredatabase.php:476
67
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
68
  msgstr ""
69
 
@@ -214,7 +282,7 @@ msgstr ""
214
  msgid "UpdraftPlus"
215
  msgstr ""
216
 
217
- #: templates/wp-admin/settings/form-contents.php:241
218
  msgid "Recommended: optimize your database with WP-Optimize."
219
  msgstr ""
220
 
@@ -237,31 +305,27 @@ msgstr ""
237
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
238
  msgstr ""
239
 
240
- #: admin.php:595
241
- msgid "Show contents"
242
- msgstr ""
243
-
244
- #: addons/morefiles.php:246
245
  msgid "Please choose a file or directory"
246
  msgstr ""
247
 
248
- #: addons/morefiles.php:235
249
  msgid "Confirm"
250
  msgstr ""
251
 
252
- #: addons/morefiles.php:238
253
  msgid "Go up a directory"
254
  msgstr ""
255
 
256
- #: addons/morefiles.php:231
257
  msgid "Add directory..."
258
  msgstr ""
259
 
260
- #: addons/morefiles.php:224 addons/morefiles.php:244
261
  msgid "Edit"
262
  msgstr ""
263
 
264
- #: addons/morefiles.php:207
265
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
266
  msgstr ""
267
 
@@ -541,19 +605,19 @@ msgstr ""
541
  msgid "Backup of: %s"
542
  msgstr ""
543
 
544
- #: methods/googledrive.php:212
545
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
546
  msgstr ""
547
 
548
- #: methods/dropbox.php:569
549
  msgid "%s de-authentication"
550
  msgstr ""
551
 
552
- #: methods/dropbox.php:537
553
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
554
  msgstr ""
555
 
556
- #: methods/dropbox.php:511
557
  msgid "Follow this link to deauthenticate with %s."
558
  msgstr ""
559
 
@@ -561,7 +625,7 @@ msgstr ""
561
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
562
  msgstr ""
563
 
564
- #: backup.php:1495
565
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
566
  msgstr ""
567
 
@@ -569,47 +633,47 @@ msgstr ""
569
  msgid "You have selected a remote storage option which has an authorization step to complete:"
570
  msgstr ""
571
 
572
- #: admin.php:1391
573
  msgid "Remote files deleted:"
574
  msgstr ""
575
 
576
- #: admin.php:1390
577
  msgid "Local files deleted:"
578
  msgstr ""
579
 
580
- #: admin.php:887 admin.php:891 admin.php:899 admin.php:903
581
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
582
  msgstr ""
583
 
584
- #: admin.php:673
585
  msgid "remote files deleted"
586
  msgstr ""
587
 
588
- #: admin.php:671
589
  msgid "Complete"
590
  msgstr ""
591
 
592
- #: admin.php:670
593
  msgid "Do you want to carry out the import?"
594
  msgstr ""
595
 
596
- #: admin.php:669
597
  msgid "Which was exported on:"
598
  msgstr ""
599
 
600
- #: admin.php:668
601
  msgid "This will import data from:"
602
  msgstr ""
603
 
604
- #: admin.php:667
605
  msgid "Importing..."
606
  msgstr ""
607
 
608
- #: admin.php:664
609
  msgid "You have not yet selected a file to import."
610
  msgstr ""
611
 
612
- #: admin.php:648
613
  msgid "Your export file will be of your displayed settings, not your saved ones."
614
  msgstr ""
615
 
@@ -654,15 +718,15 @@ msgstr ""
654
  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"
655
  msgstr ""
656
 
657
- #: admin.php:2096
658
  msgid "To fix this problem go here."
659
  msgstr ""
660
 
661
- #: admin.php:2096
662
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
663
  msgstr ""
664
 
665
- #: admin.php:633
666
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
667
  msgstr ""
668
 
@@ -694,11 +758,11 @@ msgstr ""
694
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
695
  msgstr ""
696
 
697
- #: methods/s3.php:1012
698
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
699
  msgstr ""
700
 
701
- #: methods/s3.php:89
702
  msgid "No settings were found - please go to the Settings tab and check your settings"
703
  msgstr ""
704
 
@@ -766,11 +830,11 @@ msgstr ""
766
  msgid "Public key was sent to:"
767
  msgstr ""
768
 
769
- #: backup.php:2054
770
  msgid "Failed to open directory (check the file permissions and ownership): %s"
771
  msgstr ""
772
 
773
- #: backup.php:2032
774
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
775
  msgstr ""
776
 
@@ -816,27 +880,27 @@ msgstr ""
816
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
817
  msgstr ""
818
 
819
- #: methods/googledrive.php:422
820
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
821
  msgstr ""
822
 
823
- #: methods/ftp.php:383
824
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
825
  msgstr ""
826
 
827
- #: methods/ftp.php:355
828
  msgid "login"
829
  msgstr ""
830
 
831
- #: methods/email.php:77
832
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
833
  msgstr ""
834
 
835
- #: methods/email.php:28
836
  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."
837
  msgstr ""
838
 
839
- #: class-updraftplus.php:1484
840
  msgid "Size: %s MB"
841
  msgstr ""
842
 
@@ -848,7 +912,7 @@ msgstr ""
848
  msgid "i.e. you have an account there"
849
  msgstr ""
850
 
851
- #: templates/wp-admin/settings/form-contents.php:326
852
  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)."
853
  msgstr ""
854
 
@@ -856,7 +920,7 @@ msgstr ""
856
  msgid "Now"
857
  msgstr ""
858
 
859
- #: class-updraftplus.php:3913 restorer.php:996
860
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
861
  msgstr ""
862
 
@@ -864,21 +928,21 @@ msgstr ""
864
  msgid "(tap on an icon to select or unselect)"
865
  msgstr ""
866
 
867
- #: methods/updraftvault.php:291 methods/updraftvault.php:297
868
- #: methods/updraftvault.php:303
869
  msgid "%s per year"
870
  msgstr ""
871
 
872
- #: methods/updraftvault.php:290 methods/updraftvault.php:296
873
- #: methods/updraftvault.php:302
874
  msgid "or (annual discount)"
875
  msgstr ""
876
 
877
- #: methods/updraftvault.php:235
878
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
879
  msgstr ""
880
 
881
- #: class-updraftplus.php:354 class-updraftplus.php:399
882
  msgid "The given file was not found, or could not be read."
883
  msgstr ""
884
 
@@ -978,23 +1042,23 @@ msgstr ""
978
  msgid "UpdraftCentral Connection"
979
  msgstr ""
980
 
981
- #: backup.php:837 class-updraftplus.php:2715
982
  msgid "The backup was aborted by the user"
983
  msgstr ""
984
 
985
- #: admin.php:3953
986
  msgid "Your settings have been saved."
987
  msgstr ""
988
 
989
- #: admin.php:3146
990
  msgid "Total backup size:"
991
  msgstr ""
992
 
993
- #: admin.php:2593
994
  msgid "stop"
995
  msgstr ""
996
 
997
- #: admin.php:2431
998
  msgid "The backup has finished running"
999
  msgstr ""
1000
 
@@ -1020,27 +1084,27 @@ msgstr ""
1020
  msgid "calculate"
1021
  msgstr ""
1022
 
1023
- #: admin.php:647
1024
  msgid "You should save your changes to ensure that they are used for making your backup."
1025
  msgstr ""
1026
 
1027
- #: admin.php:641
1028
  msgid "We requested to delete the file, but could not understand the server's response"
1029
  msgstr ""
1030
 
1031
- #: admin.php:640
1032
  msgid "Please enter a valid URL"
1033
  msgstr ""
1034
 
1035
- #: admin.php:623
1036
  msgid "Saving..."
1037
  msgstr ""
1038
 
1039
- #: admin.php:586
1040
  msgid "Error: the server sent us a response which we did not understand."
1041
  msgstr ""
1042
 
1043
- #: admin.php:578
1044
  msgid "Fetching..."
1045
  msgstr ""
1046
 
@@ -1048,15 +1112,11 @@ msgstr ""
1048
  msgid "Asia Pacific (Seoul)"
1049
  msgstr ""
1050
 
1051
- #: addons/copycom.php:43 addons/copycom.php:81
1052
- msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
1053
- msgstr ""
1054
-
1055
  #: restorer.php:1618
1056
  msgid "Uploads URL:"
1057
  msgstr ""
1058
 
1059
- #: backup.php:388
1060
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1061
  msgstr ""
1062
 
@@ -1068,48 +1128,48 @@ msgstr ""
1068
  msgid "Skipping table %s: this table will not be restored"
1069
  msgstr ""
1070
 
1071
- #: class-updraftplus.php:3964 restorer.php:1642
1072
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1073
  msgstr ""
1074
 
1075
- #: class-updraftplus.php:3960
1076
  msgid "Please read this link for important information on this process."
1077
  msgstr ""
1078
 
1079
- #: class-updraftplus.php:3960
1080
  msgid "It will be imported as a new site."
1081
  msgstr ""
1082
 
1083
- #: admin.php:2244 templates/wp-admin/notices/horizontal-notice.php:16
1084
  #: templates/wp-admin/notices/horizontal-notice.php:18
1085
  msgid "Dismiss"
1086
  msgstr ""
1087
 
1088
- #: admin.php:659
1089
  msgid "Please fill in the required information."
1090
  msgstr ""
1091
 
1092
- #: addons/multisite.php:556
1093
  msgid "Read more..."
1094
  msgstr ""
1095
 
1096
- #: addons/multisite.php:556
1097
  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."
1098
  msgstr ""
1099
 
1100
- #: addons/multisite.php:547
1101
  msgid "may include some site-wide data"
1102
  msgstr ""
1103
 
1104
- #: addons/multisite.php:542
1105
  msgid "All sites"
1106
  msgstr ""
1107
 
1108
- #: addons/multisite.php:538
1109
  msgid "Which site to restore"
1110
  msgstr ""
1111
 
1112
- #: addons/multisite.php:374 addons/multisite.php:384
1113
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1114
  msgstr ""
1115
 
@@ -1157,15 +1217,15 @@ msgstr ""
1157
  msgid "Call WordPress action:"
1158
  msgstr ""
1159
 
1160
- #: admin.php:2279
1161
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1162
  msgstr ""
1163
 
1164
- #: admin.php:3554
1165
  msgid "Skipping: this archive was already restored."
1166
  msgstr ""
1167
 
1168
- #: templates/wp-admin/settings/form-contents.php:167
1169
  msgid "File Options"
1170
  msgstr ""
1171
 
@@ -1193,51 +1253,51 @@ msgstr ""
1193
  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)."
1194
  msgstr ""
1195
 
1196
- #: admin.php:3835
1197
  msgid "Send this backup to remote storage"
1198
  msgstr ""
1199
 
1200
- #: admin.php:3833
1201
  msgid "Check out UpdraftPlus Vault."
1202
  msgstr ""
1203
 
1204
- #: admin.php:3833
1205
  msgid "Not got any remote storage?"
1206
  msgstr ""
1207
 
1208
- #: admin.php:3833
1209
  msgid "settings"
1210
  msgstr ""
1211
 
1212
- #: admin.php:3833
1213
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1214
  msgstr ""
1215
 
1216
- #: admin.php:2277
1217
  msgid "Include any files in the backup"
1218
  msgstr ""
1219
 
1220
- #: admin.php:2263
1221
  msgid "Include the database in the backup"
1222
  msgstr ""
1223
 
1224
- #: admin.php:2243
1225
  msgid "Continue restoration"
1226
  msgstr ""
1227
 
1228
- #: admin.php:2238
1229
  msgid "You have an unfinished restoration operation, begun %s ago."
1230
  msgstr ""
1231
 
1232
- #: admin.php:2237
1233
  msgid "Unfinished restoration"
1234
  msgstr ""
1235
 
1236
- #: admin.php:2235
1237
  msgid "%s minutes, %s seconds"
1238
  msgstr ""
1239
 
1240
- #: admin.php:2182
1241
  msgid "Backup Contents And Schedule"
1242
  msgstr ""
1243
 
@@ -1245,24 +1305,24 @@ msgstr ""
1245
  msgid "Premium / Extensions"
1246
  msgstr ""
1247
 
1248
- #: admin.php:1962 admin.php:1971
1249
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1250
  msgstr ""
1251
 
1252
- #: admin.php:646
1253
  msgctxt "(verb)"
1254
  msgid "Download"
1255
  msgstr ""
1256
 
1257
- #: admin.php:571
1258
  msgid "You have chosen to backup files, but no file entities have been selected"
1259
  msgstr ""
1260
 
1261
- #: admin.php:480
1262
  msgid "Extensions"
1263
  msgstr ""
1264
 
1265
- #: admin.php:472 templates/wp-admin/settings/tab-bar.php:8
1266
  msgid "Advanced Tools"
1267
  msgstr ""
1268
 
@@ -1343,75 +1403,75 @@ msgstr ""
1343
  msgid "Standard"
1344
  msgstr ""
1345
 
1346
- #: addons/azure.php:524
1347
  msgid "container"
1348
  msgstr ""
1349
 
1350
- #: addons/azure.php:524
1351
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1352
  msgstr ""
1353
 
1354
- #: addons/azure.php:523
1355
  msgid "optional"
1356
  msgstr ""
1357
 
1358
- #: addons/azure.php:523
1359
  msgid "Prefix"
1360
  msgstr ""
1361
 
1362
- #: addons/azure.php:518
1363
  msgid "See Microsoft's guidelines on container naming by following this link."
1364
  msgstr ""
1365
 
1366
- #: addons/azure.php:518
1367
  msgid "If the %s does not already exist, then it will be created."
1368
  msgstr ""
1369
 
1370
- #: addons/azure.php:518
1371
  msgid "Enter the path of the %s you wish to use here."
1372
  msgstr ""
1373
 
1374
- #: addons/azure.php:507
1375
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1376
  msgstr ""
1377
 
1378
- #: addons/azure.php:506
1379
  msgid "Account Name"
1380
  msgstr ""
1381
 
1382
- #: addons/azure.php:506 addons/azure.php:510
1383
  msgid "Azure"
1384
  msgstr ""
1385
 
1386
- #: addons/azure.php:502
1387
  msgid "Create Azure credentials in your Azure developer console."
1388
  msgstr ""
1389
 
1390
- #: addons/azure.php:450
1391
  msgid "Could not create the container"
1392
  msgstr ""
1393
 
1394
- #: addons/azure.php:344
1395
  msgid "Could not access container"
1396
  msgstr ""
1397
 
1398
- #: class-updraftplus.php:2732
1399
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1400
  msgstr ""
1401
 
1402
- #: backup.php:1547
1403
  msgid "the options table was not found"
1404
  msgstr ""
1405
 
1406
- #: backup.php:1545
1407
  msgid "no options or sitemeta table was found"
1408
  msgstr ""
1409
 
1410
- #: backup.php:1545 backup.php:1547
1411
  msgid "The database backup appears to have failed"
1412
  msgstr ""
1413
 
1414
- #: backup.php:1419
1415
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1416
  msgstr ""
1417
 
@@ -1528,35 +1588,35 @@ msgstr ""
1528
  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)."
1529
  msgstr ""
1530
 
1531
- #: admin.php:1389
1532
  msgid "Backup sets removed:"
1533
  msgstr ""
1534
 
1535
- #: admin.php:658
1536
  msgid "Processing..."
1537
  msgstr ""
1538
 
1539
- #: admin.php:656
1540
  msgid "For backups older than"
1541
  msgstr ""
1542
 
1543
- #: admin.php:655
1544
  msgid "week(s)"
1545
  msgstr ""
1546
 
1547
- #: admin.php:654
1548
  msgid "hour(s)"
1549
  msgstr ""
1550
 
1551
- #: admin.php:653
1552
  msgid "day(s)"
1553
  msgstr ""
1554
 
1555
- #: admin.php:652
1556
  msgid "in the month"
1557
  msgstr ""
1558
 
1559
- #: admin.php:651
1560
  msgid "day"
1561
  msgstr ""
1562
 
@@ -1576,31 +1636,31 @@ msgstr ""
1576
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1577
  msgstr ""
1578
 
1579
- #: methods/updraftvault.php:596
1580
  msgid "You do not currently have any UpdraftPlus Vault quota"
1581
  msgstr ""
1582
 
1583
- #: class-updraftplus.php:3999
1584
  msgid "You must upgrade MySQL to be able to use this database."
1585
  msgstr ""
1586
 
1587
- #: class-updraftplus.php:3999
1588
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1589
  msgstr ""
1590
 
1591
- #: admin.php:2081
1592
  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."
1593
  msgstr ""
1594
 
1595
- #: methods/updraftvault.php:324
1596
  msgid "Don't know your email address, or forgotten your password?"
1597
  msgstr ""
1598
 
1599
- #: methods/updraftvault.php:317
1600
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1601
  msgstr ""
1602
 
1603
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1604
  msgid "Read the FAQs here."
1605
  msgstr ""
1606
 
@@ -1612,155 +1672,155 @@ msgstr ""
1612
  msgid "Server-side encryption"
1613
  msgstr ""
1614
 
1615
- #: methods/updraftvault.php:605
1616
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1617
  msgstr ""
1618
 
1619
- #: admin.php:895
1620
  msgid "Go to the remote storage settings in order to connect."
1621
  msgstr ""
1622
 
1623
- #: admin.php:895
1624
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1625
  msgstr ""
1626
 
1627
- #: methods/updraftvault.php:306
1628
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1629
  msgstr ""
1630
 
1631
- #: admin.php:629
1632
  msgid "Update quota count"
1633
  msgstr ""
1634
 
1635
- #: admin.php:628
1636
  msgid "Counting..."
1637
  msgstr ""
1638
 
1639
- #: admin.php:627
1640
  msgid "Disconnecting..."
1641
  msgstr ""
1642
 
1643
- #: admin.php:625
1644
  msgid "Connecting..."
1645
  msgstr ""
1646
 
1647
- #: methods/updraftvault.php:380 methods/updraftvault.php:449
1648
  msgid "Refresh current status"
1649
  msgstr ""
1650
 
1651
- #: methods/updraftvault.php:378 methods/updraftvault.php:394
1652
- #: methods/updraftvault.php:396 methods/updraftvault.php:449
1653
  msgid "Get more quota"
1654
  msgstr ""
1655
 
1656
- #: methods/updraftvault.php:375 methods/updraftvault.php:391
1657
- #: methods/updraftvault.php:430
1658
  msgid "Current use:"
1659
  msgstr ""
1660
 
1661
- #: methods/updraftvault.php:370
1662
  msgid "You can get more quota here"
1663
  msgstr ""
1664
 
1665
- #: methods/updraftvault.php:370
1666
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1667
  msgstr ""
1668
 
1669
- #: admin.php:626 methods/updraftvault.php:362
1670
  msgid "Disconnect"
1671
  msgstr ""
1672
 
1673
- #: methods/updraftvault.php:354
1674
  msgid "Quota:"
1675
  msgstr ""
1676
 
1677
- #: methods/updraftvault.php:352
1678
  msgid "Vault owner"
1679
  msgstr ""
1680
 
1681
- #: methods/updraftvault.php:352
1682
  msgid "Well done - there's nothing more needed to set up."
1683
  msgstr ""
1684
 
1685
- #: methods/updraftvault.php:352
1686
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1687
  msgstr ""
1688
 
1689
- #: methods/updraftvault.php:348
1690
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1691
  msgstr ""
1692
 
1693
- #: methods/updraftvault.php:324
1694
  msgid "Go here for help"
1695
  msgstr ""
1696
 
1697
- #: methods/updraftvault.php:319
1698
  msgid "E-mail"
1699
  msgstr ""
1700
 
1701
- #: methods/updraftvault.php:312 methods/updraftvault.php:327
1702
  msgid "Back..."
1703
  msgstr ""
1704
 
1705
- #: methods/updraftvault.php:306
1706
  msgid "Subscriptions can be cancelled at any time."
1707
  msgstr ""
1708
 
1709
- #: methods/updraftvault.php:289 methods/updraftvault.php:295
1710
- #: methods/updraftvault.php:301
1711
  msgid "%s per quarter"
1712
  msgstr ""
1713
 
1714
- #: central/bootstrap.php:542 methods/updraftvault.php:279
1715
- #: methods/updraftvault.php:309
1716
  msgid "Read more about it here."
1717
  msgstr ""
1718
 
1719
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1720
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1721
  msgstr ""
1722
 
1723
- #: methods/updraftvault.php:275
1724
  msgid "Already purchased space?"
1725
  msgstr ""
1726
 
1727
- #: methods/updraftvault.php:272
1728
  msgid "Show the options"
1729
  msgstr ""
1730
 
1731
- #: methods/updraftvault.php:271
1732
  msgid "First time user?"
1733
  msgstr ""
1734
 
1735
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1736
  msgid "Press a button to get started."
1737
  msgstr ""
1738
 
1739
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1740
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1741
  msgstr ""
1742
 
1743
- #: methods/updraftvault.php:231
1744
  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."
1745
  msgstr ""
1746
 
1747
- #: methods/updraftvault.php:228
1748
  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!"
1749
  msgstr ""
1750
 
1751
- #: methods/updraftvault.php:225
1752
  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."
1753
  msgstr ""
1754
 
1755
- #: methods/updraftvault.php:48 methods/updraftvault.php:77
1756
  msgid "Updraft Vault"
1757
  msgstr ""
1758
 
1759
- #: addons/azure.php:366 addons/googlecloud.php:693 methods/s3.php:1040
1760
  msgid "Delete failed:"
1761
  msgstr ""
1762
 
1763
- #: backup.php:2994
1764
  msgid "The zip engine returned the message: %s."
1765
  msgstr ""
1766
 
@@ -1784,7 +1844,7 @@ msgstr ""
1784
  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."
1785
  msgstr ""
1786
 
1787
- #: addons/migrator.php:1742 admin.php:635
1788
  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."
1789
  msgstr ""
1790
 
@@ -1852,11 +1912,11 @@ msgstr ""
1852
  msgid "Backup made by %s"
1853
  msgstr ""
1854
 
1855
- #: methods/addon-base.php:177
1856
  msgid "This storage method does not allow downloading"
1857
  msgstr ""
1858
 
1859
- #: admin.php:3314
1860
  msgid "(backup set imported from remote location)"
1861
  msgstr ""
1862
 
@@ -1876,23 +1936,23 @@ msgstr ""
1876
  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."
1877
  msgstr ""
1878
 
1879
- #: addons/migrator.php:1770 admin.php:642
1880
  msgid "Testing connection..."
1881
  msgstr ""
1882
 
1883
- #: admin.php:639
1884
  msgid "Deleting..."
1885
  msgstr ""
1886
 
1887
- #: admin.php:638
1888
  msgid "key name"
1889
  msgstr ""
1890
 
1891
- #: admin.php:636
1892
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1893
  msgstr ""
1894
 
1895
- #: admin.php:633
1896
  msgid "Creating..."
1897
  msgstr ""
1898
 
@@ -1916,11 +1976,11 @@ msgstr ""
1916
  msgid "Or, send a backup to another site"
1917
  msgstr ""
1918
 
1919
- #: addons/migrator.php:1937 admin.php:643
1920
  msgid "Send"
1921
  msgstr ""
1922
 
1923
- #: addons/migrator.php:1931 admin.php:634
1924
  msgid "Send to site:"
1925
  msgstr ""
1926
 
@@ -1952,27 +2012,27 @@ msgstr ""
1952
  msgid "key"
1953
  msgstr ""
1954
 
1955
- #: methods/ftp.php:325
1956
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1957
  msgstr ""
1958
 
1959
- #: methods/ftp.php:323
1960
  msgid "Passive mode"
1961
  msgstr ""
1962
 
1963
- #: methods/ftp.php:319
1964
  msgid "Remote path"
1965
  msgstr ""
1966
 
1967
- #: methods/ftp.php:315
1968
  msgid "FTP password"
1969
  msgstr ""
1970
 
1971
- #: methods/ftp.php:311
1972
  msgid "FTP login"
1973
  msgstr ""
1974
 
1975
- #: methods/ftp.php:307
1976
  msgid "FTP server"
1977
  msgstr ""
1978
 
@@ -1984,15 +2044,15 @@ msgstr ""
1984
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1985
  msgstr ""
1986
 
1987
- #: addons/migrator.php:2180 admin.php:631
1988
  msgid "Add site"
1989
  msgstr ""
1990
 
1991
- #: admin.php:630
1992
  msgid "Adding..."
1993
  msgstr ""
1994
 
1995
- #: udaddons/options.php:338
1996
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1997
  msgstr ""
1998
 
@@ -2020,7 +2080,7 @@ msgstr ""
2020
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2021
  msgstr ""
2022
 
2023
- #: admin.php:622 admin.php:647 admin.php:648
2024
  msgid "You have made changes to your settings, and not saved."
2025
  msgstr ""
2026
 
@@ -2032,7 +2092,7 @@ msgstr ""
2032
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2033
  msgstr ""
2034
 
2035
- #: addons/azure.php:502 addons/migrator.php:1757 addons/onedrive.php:961
2036
  msgid "For longer help, including screenshots, follow this link."
2037
  msgstr ""
2038
 
@@ -2056,11 +2116,11 @@ msgstr ""
2056
  msgid "Please re-authorize the connection to your %s account."
2057
  msgstr ""
2058
 
2059
- #: methods/email.php:73
2060
  msgid "configure it here"
2061
  msgstr ""
2062
 
2063
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2064
  msgid "To remove the block, please go here."
2065
  msgstr ""
2066
 
@@ -2205,7 +2265,7 @@ msgstr ""
2205
  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)"
2206
  msgstr ""
2207
 
2208
- #: methods/s3.php:842
2209
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2210
  msgstr ""
2211
 
@@ -2221,17 +2281,17 @@ msgstr ""
2221
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2222
  msgstr ""
2223
 
2224
- #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:569
2225
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2226
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2227
  msgstr ""
2228
 
2229
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2230
  #: udaddons/updraftplus-addons.php:747
2231
  msgid "It appears that your web server's IP Address (%s) is blocked."
2232
  msgstr ""
2233
 
2234
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2235
  #: udaddons/updraftplus-addons.php:747
2236
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2237
  msgstr ""
@@ -2282,7 +2342,7 @@ msgstr ""
2282
  msgid "(at same time as files backup)"
2283
  msgstr ""
2284
 
2285
- #: admin.php:2840
2286
  msgid "No backup has been completed"
2287
  msgstr ""
2288
 
@@ -2330,12 +2390,12 @@ msgstr ""
2330
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2331
  msgstr ""
2332
 
2333
- #: methods/s3.php:136 methods/s3.php:137 methods/s3.php:138 methods/s3.php:146
2334
- #: methods/s3.php:147 methods/s3.php:148
2335
  msgid "%s Error: Failed to initialise"
2336
  msgstr ""
2337
 
2338
- #: templates/wp-admin/settings/form-contents.php:216
2339
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2340
  msgid "or"
2341
  msgstr ""
@@ -2345,38 +2405,38 @@ msgctxt "Uploader: Drop backup files here - or - Select Files"
2345
  msgid "or"
2346
  msgstr ""
2347
 
2348
- #: admin.php:616
2349
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2350
  msgstr ""
2351
 
2352
- #: addons/sftp.php:379
2353
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2354
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2355
  msgstr ""
2356
 
2357
- #: addons/sftp.php:342
2358
  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."
2359
  msgstr ""
2360
 
2361
- #: methods/openstack2.php:152
2362
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2363
  msgid "tenant"
2364
  msgstr ""
2365
 
2366
- #: methods/openstack2.php:102
2367
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2368
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2369
  msgstr ""
2370
 
2371
- #: templates/wp-admin/settings/form-contents.php:287
2372
  msgid "your site's admin address"
2373
  msgstr ""
2374
 
2375
- #: templates/wp-admin/settings/form-contents.php:287
2376
  msgid "Check this box to have a basic report sent to"
2377
  msgstr ""
2378
 
2379
- #: admin.php:2849
2380
  msgctxt "i.e. Non-automatic"
2381
  msgid "Manual"
2382
  msgstr ""
@@ -2390,11 +2450,11 @@ msgstr ""
2390
  msgid "Change Lock Settings"
2391
  msgstr ""
2392
 
2393
- #: addons/morefiles.php:185
2394
  msgid "Any other file/directory on your server that you wish to back up"
2395
  msgstr ""
2396
 
2397
- #: admin.php:2098
2398
  msgid "For even more features and personal support, check out "
2399
  msgstr ""
2400
 
@@ -2410,7 +2470,7 @@ msgstr ""
2410
  msgid "Database decryption phrase"
2411
  msgstr ""
2412
 
2413
- #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:621
2414
  msgid "Automatic backup before update"
2415
  msgstr ""
2416
 
@@ -2490,15 +2550,15 @@ msgstr ""
2490
  msgid "The admin password has now been removed."
2491
  msgstr ""
2492
 
2493
- #: addons/morefiles.php:74
2494
  msgid "(learn more about this significant option)"
2495
  msgstr ""
2496
 
2497
- #: udaddons/options.php:273
2498
  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."
2499
  msgstr ""
2500
 
2501
- #: admin.php:2431 admin.php:3337
2502
  msgid "View Log"
2503
  msgstr ""
2504
 
@@ -2515,7 +2575,7 @@ msgstr ""
2515
  msgid "and retain this many scheduled backups"
2516
  msgstr ""
2517
 
2518
- #: admin.php:2810
2519
  msgid "incremental backup; base backup: %s"
2520
  msgstr ""
2521
 
@@ -2527,28 +2587,28 @@ msgstr ""
2527
  msgid "Upload files into UpdraftPlus."
2528
  msgstr ""
2529
 
2530
- #: admin.php:846 includes/class-commands.php:363
2531
  #: templates/wp-admin/settings/tab-status.php:22
2532
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2533
  msgstr ""
2534
 
2535
- #: class-updraftplus.php:3949
2536
  msgid "Backup label:"
2537
  msgstr ""
2538
 
2539
- #: admin.php:1625
2540
  msgid "Error: unexpected file read fail"
2541
  msgstr ""
2542
 
2543
- #: backup.php:3000
2544
  msgid "check your log for more details."
2545
  msgstr ""
2546
 
2547
- #: backup.php:2998
2548
  msgid "your web hosting account appears to be full; please see: %s"
2549
  msgstr ""
2550
 
2551
- #: backup.php:2996
2552
  msgid "A zip error occurred"
2553
  msgstr ""
2554
 
@@ -2556,19 +2616,19 @@ msgstr ""
2556
  msgid "Your label for this backup (optional)"
2557
  msgstr ""
2558
 
2559
- #: addons/googlecloud.php:822 methods/googledrive.php:915
2560
  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."
2561
  msgstr ""
2562
 
2563
- #: methods/updraftvault.php:608 udaddons/updraftplus-addons.php:789
2564
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2565
  msgstr ""
2566
 
2567
- #: methods/updraftvault.php:605 udaddons/updraftplus-addons.php:785
2568
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2569
  msgstr ""
2570
 
2571
- #: methods/updraftvault.php:545 udaddons/updraftplus-addons.php:655
2572
  msgid "You need to supply both an email address and a password"
2573
  msgstr ""
2574
 
@@ -2576,11 +2636,11 @@ msgstr ""
2576
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2577
  msgstr ""
2578
 
2579
- #: class-updraftplus.php:3968
2580
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2581
  msgstr ""
2582
 
2583
- #: class-updraftplus.php:3968
2584
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2585
  msgstr ""
2586
 
@@ -2608,27 +2668,27 @@ msgstr ""
2608
  msgid "Rows per batch"
2609
  msgstr ""
2610
 
2611
- #: udaddons/options.php:102
2612
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2613
  msgstr ""
2614
 
2615
- #: udaddons/options.php:100 udaddons/options.php:102
2616
  msgid "You need to connect to receive future updates to UpdraftPlus."
2617
  msgstr ""
2618
 
2619
- #: class-updraftplus.php:3941
2620
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2621
  msgstr ""
2622
 
2623
- #: class-updraftplus.php:3941
2624
  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."
2625
  msgstr ""
2626
 
2627
- #: class-updraftplus.php:3941
2628
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2629
  msgstr ""
2630
 
2631
- #: class-updraftplus.php:3941
2632
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2633
  msgstr ""
2634
 
@@ -2653,7 +2713,7 @@ msgstr ""
2653
  msgid "UpdraftPlus is on social media - check us out!"
2654
  msgstr ""
2655
 
2656
- #: admin.php:3398
2657
  msgid "Why am I seeing this?"
2658
  msgstr ""
2659
 
@@ -2665,15 +2725,15 @@ msgstr ""
2665
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2666
  msgstr ""
2667
 
2668
- #: admin.php:1573 admin.php:1585
2669
  msgid "Start backup"
2670
  msgstr ""
2671
 
2672
- #: class-updraftplus.php:3913 restorer.php:996
2673
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2674
  msgstr ""
2675
 
2676
- #: admin.php:2754
2677
  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."
2678
  msgstr ""
2679
 
@@ -2681,11 +2741,11 @@ msgstr ""
2681
  msgid "Unless you have a problem, you can completely ignore everything here."
2682
  msgstr ""
2683
 
2684
- #: admin.php:1784
2685
  msgid "This file could not be uploaded"
2686
  msgstr ""
2687
 
2688
- #: admin.php:1749
2689
  msgid "You will find more information about this in the Settings section."
2690
  msgstr ""
2691
 
@@ -2705,7 +2765,7 @@ msgstr ""
2705
  msgid "Memory limit"
2706
  msgstr ""
2707
 
2708
- #: class-updraftplus.php:4071 restorer.php:1441
2709
  msgid "restoration"
2710
  msgstr ""
2711
 
@@ -2713,11 +2773,11 @@ msgstr ""
2713
  msgid "Table to be implicitly dropped: %s"
2714
  msgstr ""
2715
 
2716
- #: backup.php:832
2717
  msgid "Incremental"
2718
  msgstr ""
2719
 
2720
- #: backup.php:832
2721
  msgid "Full backup"
2722
  msgstr ""
2723
 
@@ -2733,7 +2793,7 @@ msgstr ""
2733
  msgid "Backup succeeded"
2734
  msgstr ""
2735
 
2736
- #: admin.php:2850 admin.php:2851 admin.php:2852 updraftplus.php:92
2737
  #: updraftplus.php:93
2738
  msgid "Every %s hours"
2739
  msgstr ""
@@ -2776,23 +2836,23 @@ msgstr ""
2776
  msgid "Too many database errors have occurred - aborting"
2777
  msgstr ""
2778
 
2779
- #: backup.php:898
2780
  msgid "read more at %s"
2781
  msgstr ""
2782
 
2783
- #: backup.php:898
2784
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2785
  msgstr ""
2786
 
2787
- #: methods/googledrive.php:921
2788
  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."
2789
  msgstr ""
2790
 
2791
- #: admin.php:3166
2792
  msgid "You have not yet made any backups."
2793
  msgstr ""
2794
 
2795
- #: templates/wp-admin/settings/form-contents.php:179
2796
  msgid "Database Options"
2797
  msgstr ""
2798
 
@@ -2808,30 +2868,30 @@ msgstr ""
2808
  msgid "Free disk space in account:"
2809
  msgstr ""
2810
 
2811
- #: admin.php:3924 templates/wp-admin/settings/tab-status.php:27
2812
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2813
  msgstr ""
2814
 
2815
- #: admin.php:456 admin.php:590 admin.php:1438
2816
  #: includes/deprecated-actions.php:30
2817
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2818
  #: templates/wp-admin/settings/tab-bar.php:6
2819
  msgid "Existing Backups"
2820
  msgstr ""
2821
 
2822
- #: admin.php:448 templates/wp-admin/settings/tab-bar.php:5
2823
  msgid "Current Status"
2824
  msgstr ""
2825
 
2826
- #: admin.php:851
2827
  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."
2828
  msgstr ""
2829
 
2830
- #: admin.php:851
2831
  msgid "To make a backup, just press the Backup Now button."
2832
  msgstr ""
2833
 
2834
- #: admin.php:851
2835
  msgid "Welcome to UpdraftPlus!"
2836
  msgstr ""
2837
 
@@ -2903,48 +2963,48 @@ msgstr ""
2903
  msgid "user"
2904
  msgstr ""
2905
 
2906
- #: class-updraftplus.php:1481
2907
  msgid "External database (%s)"
2908
  msgstr ""
2909
 
2910
- #: methods/googledrive.php:921
2911
  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."
2912
  msgstr ""
2913
 
2914
- #: methods/googledrive.php:386
2915
  msgid "failed to access parent folder"
2916
  msgstr ""
2917
 
2918
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2919
- #: methods/googledrive.php:343
2920
  msgid "However, subsequent access attempts failed:"
2921
  msgstr ""
2922
 
2923
- #: admin.php:3191
2924
  msgid "External database"
2925
  msgstr ""
2926
 
2927
- #: templates/wp-admin/settings/form-contents.php:321
2928
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2929
  msgstr ""
2930
 
2931
- #: templates/wp-admin/settings/form-contents.php:261
2932
  msgid "Back up more databases"
2933
  msgstr ""
2934
 
2935
- #: templates/wp-admin/settings/form-contents.php:218
2936
  msgid "First, enter the decryption key"
2937
  msgstr ""
2938
 
2939
- #: templates/wp-admin/settings/form-contents.php:200
2940
  msgid "You can manually decrypt an encrypted database here."
2941
  msgstr ""
2942
 
2943
- #: templates/wp-admin/settings/form-contents.php:188
2944
  msgid "It can also backup external databases."
2945
  msgstr ""
2946
 
2947
- #: templates/wp-admin/settings/form-contents.php:188
2948
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2949
  msgstr ""
2950
 
@@ -2952,7 +3012,7 @@ msgstr ""
2952
  msgid "use UpdraftPlus Premium"
2953
  msgstr ""
2954
 
2955
- #: class-updraftplus.php:3831
2956
  msgid "Decryption failed. The database file is encrypted."
2957
  msgstr ""
2958
 
@@ -2964,11 +3024,11 @@ msgstr ""
2964
  msgid "An error occurred on the first %s command - aborting run"
2965
  msgstr ""
2966
 
2967
- #: addons/moredatabase.php:98 backup.php:1360
2968
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2969
  msgstr ""
2970
 
2971
- #: backup.php:1360
2972
  msgid "database connection attempt failed."
2973
  msgstr ""
2974
 
@@ -2976,162 +3036,162 @@ msgstr ""
2976
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2977
  msgstr ""
2978
 
2979
- #: addons/google-enhanced.php:75
2980
  msgid "In %s, path names are case sensitive."
2981
  msgstr ""
2982
 
2983
- #: addons/azure.php:524 addons/google-enhanced.php:73 addons/onedrive.php:989
2984
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2985
  msgstr ""
2986
 
2987
- #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2988
  #: addons/onedrive.php:989
2989
  msgid "e.g. %s"
2990
  msgstr ""
2991
 
2992
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2993
  msgid "If the folder does not already exist, then it will be created."
2994
  msgstr ""
2995
 
2996
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2997
  msgid "Enter the path of the %s folder you wish to use here."
2998
  msgstr ""
2999
 
3000
- #: addons/azure.php:517 methods/openstack2.php:133
3001
  msgid "Container"
3002
  msgstr ""
3003
 
3004
- #: methods/openstack2.php:116
3005
  msgid "Leave this blank, and a default will be chosen."
3006
  msgstr ""
3007
 
3008
- #: methods/openstack2.php:107
3009
  msgid "Tenant"
3010
  msgstr ""
3011
 
3012
- #: methods/openstack2.php:107
3013
  msgid "Follow this link for more information"
3014
  msgstr ""
3015
 
3016
- #: methods/openstack2.php:99 methods/openstack2.php:157
3017
  msgid "authentication URI"
3018
  msgstr ""
3019
 
3020
- #: methods/openstack2.php:94
3021
  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."
3022
  msgstr ""
3023
 
3024
- #: methods/addon-base.php:194 methods/addon-base.php:214
3025
  msgid "Failed to download %s"
3026
  msgstr ""
3027
 
3028
- #: methods/addon-base.php:208
3029
  msgid "Failed to download"
3030
  msgstr ""
3031
 
3032
- #: methods/addon-base.php:106
3033
  msgid "failed to list files"
3034
  msgstr ""
3035
 
3036
- #: methods/addon-base.php:75 methods/addon-base.php:80
3037
  msgid "Failed to upload %s"
3038
  msgstr ""
3039
 
3040
- #: methods/dropbox.php:612 methods/dropbox.php:614
3041
  msgid "Success:"
3042
  msgstr ""
3043
 
3044
- #: addons/onedrive.php:997 methods/dropbox.php:513
3045
  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."
3046
  msgstr ""
3047
 
3048
- #: addons/onedrive.php:995 methods/dropbox.php:510
3049
  msgid "(You appear to be already authenticated)."
3050
  msgstr ""
3051
 
3052
- #: methods/dropbox.php:505 methods/dropbox.php:511 methods/dropbox.php:513
3053
  msgid "Dropbox"
3054
  msgstr ""
3055
 
3056
- #: addons/onedrive.php:994 methods/dropbox.php:505
3057
  msgid "Authenticate with %s"
3058
  msgstr ""
3059
 
3060
- #: methods/cloudfiles.php:409
3061
  msgid "Error downloading remote file: Failed to download"
3062
  msgstr ""
3063
 
3064
- #: methods/openstack-base.php:472 methods/openstack-base.php:477
3065
  msgid "Region: %s"
3066
  msgstr ""
3067
 
3068
- #: methods/openstack-base.php:471
3069
  msgid "%s error - we accessed the container, but failed to create a file within it"
3070
  msgstr ""
3071
 
3072
- #: methods/openstack-base.php:389
3073
  msgid "The %s object was not found"
3074
  msgstr ""
3075
 
3076
- #: methods/openstack-base.php:48 methods/openstack-base.php:312
3077
- #: methods/openstack-base.php:381
3078
  msgid "Could not access %s container"
3079
  msgstr ""
3080
 
3081
- #: methods/openstack-base.php:40 methods/openstack-base.php:108
3082
- #: methods/openstack-base.php:115 methods/openstack-base.php:304
3083
- #: methods/openstack-base.php:369
3084
  msgid "%s error - failed to access the container"
3085
  msgstr ""
3086
 
3087
- #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:520
3088
- #: methods/googledrive.php:970
3089
  msgid "Account holder's name: %s."
3090
  msgstr ""
3091
 
3092
- #: methods/googledrive.php:959
3093
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3094
  msgstr ""
3095
 
3096
- #: methods/googledrive.php:950
3097
  msgid "It is an ID number internal to Google Drive"
3098
  msgstr ""
3099
 
3100
- #: methods/googledrive.php:950
3101
  msgid "<strong>This is NOT a folder name</strong>."
3102
  msgstr ""
3103
 
3104
- #: addons/google-enhanced.php:72 addons/onedrive.php:988
3105
- #: methods/googledrive.php:946 methods/googledrive.php:956
3106
  msgid "Folder"
3107
  msgstr ""
3108
 
3109
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3110
- #: methods/googledrive.php:878
3111
  msgid "%s download: failed: file not found"
3112
  msgstr ""
3113
 
3114
- #: addons/googlecloud.php:579 methods/googledrive.php:363
3115
  msgid "Name: %s."
3116
  msgstr ""
3117
 
3118
- #: methods/googledrive.php:157
3119
  msgid "Google Drive list files: failed to access parent folder"
3120
  msgstr ""
3121
 
3122
- #: methods/insufficient.php:65 methods/viaaddon-base.php:87
3123
  msgid "Your %s version: %s."
3124
  msgstr ""
3125
 
3126
- #: methods/insufficient.php:64 methods/viaaddon-base.php:86
3127
  msgid "You will need to ask your web hosting company to upgrade."
3128
  msgstr ""
3129
 
3130
- #: methods/insufficient.php:17 methods/viaaddon-base.php:16
3131
  msgid "This remote storage method (%s) requires PHP %s or later."
3132
  msgstr ""
3133
 
3134
- #: admin.php:3743
3135
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3136
  msgstr ""
3137
 
@@ -3145,7 +3205,7 @@ msgstr ""
3145
 
3146
  #: addons/migrator.php:375
3147
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3148
- #: templates/wp-admin/settings/form-contents.php:208
3149
  msgid "This feature requires %s version %s or later"
3150
  msgstr ""
3151
 
@@ -3161,7 +3221,7 @@ msgstr ""
3161
  msgid "Failed to unpack the archive"
3162
  msgstr ""
3163
 
3164
- #: class-updraftplus.php:1048
3165
  msgid "Error - failed to download the file"
3166
  msgstr ""
3167
 
@@ -3181,44 +3241,44 @@ msgstr ""
3181
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3182
  msgstr ""
3183
 
3184
- #: addons/sftp.php:425
3185
  msgid "password/key"
3186
  msgstr ""
3187
 
3188
- #: addons/azure.php:510 addons/migrator.php:2198 addons/sftp.php:376
3189
- #: admin.php:637
3190
  msgid "Key"
3191
  msgstr ""
3192
 
3193
- #: addons/sftp.php:371
3194
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3195
  msgstr ""
3196
 
3197
- #: addons/sftp.php:308
3198
  msgid "The key provided was not in a valid format, or was corrupt."
3199
  msgstr ""
3200
 
3201
- #: addons/sftp.php:47
3202
  msgid "SCP/SFTP password/key"
3203
  msgstr ""
3204
 
3205
- #: admin.php:3226
3206
  msgid "Files backup (created by %s)"
3207
  msgstr ""
3208
 
3209
- #: admin.php:3226
3210
  msgid "Files and database WordPress backup (created by %s)"
3211
  msgstr ""
3212
 
3213
- #: addons/importer.php:261 admin.php:3220 class-updraftplus.php:2514
3214
  msgid "Backup created by: %s."
3215
  msgstr ""
3216
 
3217
- #: admin.php:3189
3218
  msgid "Database (created by %s)"
3219
  msgstr ""
3220
 
3221
- #: admin.php:3183 admin.php:3222
3222
  msgid "unknown source"
3223
  msgstr ""
3224
 
@@ -3230,31 +3290,31 @@ msgstr ""
3230
  msgid "Upload backup files"
3231
  msgstr ""
3232
 
3233
- #: admin.php:1828
3234
  msgid "This backup was created by %s, and can be imported."
3235
  msgstr ""
3236
 
3237
- #: admin.php:880
3238
  msgid "Read this page for a guide to possible causes and how to fix it."
3239
  msgstr ""
3240
 
3241
- #: admin.php:880
3242
  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."
3243
  msgstr ""
3244
 
3245
- #: admin.php:602 class-updraftplus.php:2521
3246
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3247
  msgstr ""
3248
 
3249
- #: admin.php:601
3250
  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."
3251
  msgstr ""
3252
 
3253
- #: admin.php:601 admin.php:602 class-updraftplus.php:2521
3254
  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))."
3255
  msgstr ""
3256
 
3257
- #: admin.php:3223 includes/class-wpadmin-commands.php:143 restorer.php:1410
3258
  msgid "Backup created by unknown source (%s) - cannot be restored."
3259
  msgstr ""
3260
 
@@ -3266,24 +3326,24 @@ msgstr ""
3266
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3267
  msgstr ""
3268
 
3269
- #: methods/dropbox.php:300
3270
  msgid "%s returned an unexpected HTTP response: %s"
3271
  msgstr ""
3272
 
3273
- #: addons/sftp.php:885
3274
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3275
  msgstr ""
3276
 
3277
- #: methods/cloudfiles.php:234 methods/dropbox.php:281
3278
- #: methods/openstack-base.php:103
3279
  msgid "No settings were found"
3280
  msgstr ""
3281
 
3282
- #: class-updraftplus.php:2642
3283
  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."
3284
  msgstr ""
3285
 
3286
- #: admin.php:568
3287
  msgid "Rescanning remote and local storage for backup sets..."
3288
  msgstr ""
3289
 
@@ -3300,24 +3360,24 @@ msgstr ""
3300
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3301
  msgstr ""
3302
 
3303
- #: addons/morefiles.php:428
3304
  msgid "No backup of location: there was nothing found to back up"
3305
  msgstr ""
3306
 
3307
- #: addons/moredatabase.php:234 addons/morefiles.php:224
3308
- #: addons/morefiles.php:245
3309
  msgid "Remove"
3310
  msgstr ""
3311
 
3312
- #: methods/s3.php:814
3313
  msgid "Other %s FAQs."
3314
  msgstr ""
3315
 
3316
- #: templates/wp-admin/settings/form-contents.php:321
3317
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3318
  msgstr ""
3319
 
3320
- #: addons/morefiles.php:382 admin.php:2942
3321
  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."
3322
  msgstr ""
3323
 
@@ -3325,23 +3385,23 @@ msgstr ""
3325
  msgid "Custom content type manager plugin data detected: clearing option cache"
3326
  msgstr ""
3327
 
3328
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1441
3329
  msgid "Your hosting company must enable these functions before %s can work."
3330
  msgstr ""
3331
 
3332
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1440
3333
  msgid "Your web server's PHP installation has these functions disabled: %s."
3334
  msgstr ""
3335
 
3336
- #: methods/ftp.php:281
3337
  msgid "encrypted FTP (explicit encryption)"
3338
  msgstr ""
3339
 
3340
- #: methods/ftp.php:280
3341
  msgid "encrypted FTP (implicit encryption)"
3342
  msgstr ""
3343
 
3344
- #: methods/ftp.php:279
3345
  msgid "regular non-encrypted FTP"
3346
  msgstr ""
3347
 
@@ -3349,7 +3409,7 @@ msgstr ""
3349
  msgid "Backup created by:"
3350
  msgstr ""
3351
 
3352
- #: udaddons/options.php:482
3353
  msgid "Available to claim on this site"
3354
  msgstr ""
3355
 
@@ -3397,15 +3457,15 @@ msgstr ""
3397
  msgid "Dismiss from main dashboard (for %s weeks)"
3398
  msgstr ""
3399
 
3400
- #: class-updraftplus.php:4121
3401
  msgid "The attempt to undo the double-compression succeeded."
3402
  msgstr ""
3403
 
3404
- #: class-updraftplus.php:4098 class-updraftplus.php:4119
3405
  msgid "The attempt to undo the double-compression failed."
3406
  msgstr ""
3407
 
3408
- #: class-updraftplus.php:4091
3409
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3410
  msgstr ""
3411
 
@@ -3413,15 +3473,15 @@ msgstr ""
3413
  msgid "Constants"
3414
  msgstr ""
3415
 
3416
- #: backup.php:1595
3417
  msgid "Failed to open database file for reading:"
3418
  msgstr ""
3419
 
3420
- #: backup.php:1408
3421
  msgid "No database tables found"
3422
  msgstr ""
3423
 
3424
- #: backup.php:1406
3425
  msgid "please wait for the rescheduled attempt"
3426
  msgstr ""
3427
 
@@ -3449,11 +3509,11 @@ msgstr ""
3449
  msgid "Errors occurred:"
3450
  msgstr ""
3451
 
3452
- #: admin.php:3418
3453
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3454
  msgstr ""
3455
 
3456
- #: templates/wp-admin/settings/form-contents.php:365
3457
  msgid "See this FAQ also."
3458
  msgstr ""
3459
 
@@ -3473,7 +3533,7 @@ msgstr ""
3473
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3474
  msgstr ""
3475
 
3476
- #: admin.php:855 class-updraftplus.php:597
3477
  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)"
3478
  msgstr ""
3479
 
@@ -3489,20 +3549,20 @@ msgstr ""
3489
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3490
  msgstr ""
3491
 
3492
- #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
3493
  #: includes/ftp.class.php:47
3494
  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."
3495
  msgstr ""
3496
 
3497
- #: admin.php:3751
3498
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3499
  msgstr ""
3500
 
3501
- #: admin.php:2006 admin.php:2016
3502
  msgid "Restore failed..."
3503
  msgstr ""
3504
 
3505
- #: addons/moredatabase.php:130 admin.php:1227
3506
  msgid "Messages:"
3507
  msgstr ""
3508
 
@@ -3596,98 +3656,98 @@ msgstr ""
3596
  msgid "Rackspace Cloud Files, enhanced"
3597
  msgstr ""
3598
 
3599
- #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:142
3600
  msgid "Cloud Files Container"
3601
  msgstr ""
3602
 
3603
- #: methods/cloudfiles-new.php:137
3604
  msgid "Cloud Files API Key"
3605
  msgstr ""
3606
 
3607
- #: methods/cloudfiles-new.php:132
3608
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3609
  msgstr ""
3610
 
3611
- #: methods/cloudfiles-new.php:129
3612
  msgid "Cloud Files Username"
3613
  msgstr ""
3614
 
3615
- #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:115
3616
  msgid "London (LON)"
3617
  msgstr ""
3618
 
3619
- #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:114
3620
  msgid "Hong Kong (HKG)"
3621
  msgstr ""
3622
 
3623
- #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:113
3624
  msgid "Northern Virginia (IAD)"
3625
  msgstr ""
3626
 
3627
- #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:112
3628
  msgid "Chicago (ORD)"
3629
  msgstr ""
3630
 
3631
- #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:111
3632
  msgid "Sydney (SYD)"
3633
  msgstr ""
3634
 
3635
- #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:110
3636
  msgid "Dallas (DFW) (default)"
3637
  msgstr ""
3638
 
3639
- #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:105
3640
  msgid "Cloud Files Storage Region"
3641
  msgstr ""
3642
 
3643
- #: methods/cloudfiles-new.php:97
3644
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3645
  msgstr ""
3646
 
3647
- #: methods/cloudfiles-new.php:95
3648
  msgid "US or UK-based Rackspace Account"
3649
  msgstr ""
3650
 
3651
- #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:95
3652
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3653
  msgstr ""
3654
 
3655
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3656
- #: methods/cloudfiles-new.php:39 methods/openstack-base.php:431
3657
- #: methods/openstack-base.php:433 methods/openstack-base.php:453
3658
  #: methods/openstack2.php:25
3659
  msgid "Authorisation failed (check your credentials)"
3660
  msgstr ""
3661
 
3662
- #: methods/updraftvault.php:525 udaddons/options.php:265
3663
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3664
  msgstr ""
3665
 
3666
- #: admin.php:615 central/bootstrap.php:513
3667
  msgid "Create"
3668
  msgstr ""
3669
 
3670
- #: admin.php:577
3671
  msgid "Trying..."
3672
  msgstr ""
3673
 
3674
- #: admin.php:576
3675
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3676
  msgstr ""
3677
 
3678
- #: class-updraftplus.php:1493
3679
  msgid "(when decrypted)"
3680
  msgstr ""
3681
 
3682
- #: admin.php:587 admin.php:3693
3683
  msgid "Error data:"
3684
  msgstr ""
3685
 
3686
- #: admin.php:3369
3687
  msgid "Backup does not exist in the backup history"
3688
  msgstr ""
3689
 
3690
- #: admin.php:2375
3691
  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."
3692
  msgstr ""
3693
 
@@ -3739,11 +3799,11 @@ msgstr ""
3739
  msgid "Email reports"
3740
  msgstr ""
3741
 
3742
- #: class-updraftplus.php:1489 class-updraftplus.php:1494
3743
  msgid "%s checksum: %s"
3744
  msgstr ""
3745
 
3746
- #: class-updraftplus.php:1462 class-updraftplus.php:1464
3747
  msgid "files: %s"
3748
  msgstr ""
3749
 
@@ -3763,7 +3823,7 @@ msgstr ""
3763
  msgid "Debugging information"
3764
  msgstr ""
3765
 
3766
- #: addons/reporting.php:194 admin.php:3129
3767
  msgid "Uploaded to:"
3768
  msgstr ""
3769
 
@@ -3783,7 +3843,7 @@ msgstr ""
3783
  msgid "Errors / warnings:"
3784
  msgstr ""
3785
 
3786
- #: addons/morefiles.php:62 addons/morefiles.php:63 addons/reporting.php:155
3787
  msgid "Contains:"
3788
  msgstr ""
3789
 
@@ -3803,166 +3863,166 @@ msgstr ""
3803
  msgid "%d errors, %d warnings"
3804
  msgstr ""
3805
 
3806
- #: addons/onedrive.php:717 methods/dropbox.php:596
3807
  msgid "%s authentication"
3808
  msgstr ""
3809
 
3810
- #: addons/onedrive.php:717 class-updraftplus.php:302 methods/dropbox.php:569
3811
- #: methods/dropbox.php:596 methods/dropbox.php:609 methods/dropbox.php:740
3812
  msgid "%s error: %s"
3813
  msgstr ""
3814
 
3815
- #: addons/googlecloud.php:815 methods/dropbox.php:480
3816
  msgid "%s logo"
3817
  msgstr ""
3818
 
3819
- #: methods/dropbox.php:214
3820
  msgid "%s did not return the expected response - check your log file for more details"
3821
  msgstr ""
3822
 
3823
- #: methods/s3.php:279
3824
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3825
  msgstr ""
3826
 
3827
- #: methods/email.php:74
3828
  msgid "For more options, use the \"%s\" add-on."
3829
  msgstr ""
3830
 
3831
- #: methods/email.php:73
3832
  msgid "Your site's admin email address (%s) will be used."
3833
  msgstr ""
3834
 
3835
- #: admin.php:624 methods/updraftvault.php:276 methods/updraftvault.php:321
3836
- #: udaddons/options.php:244
3837
  msgid "Connect"
3838
  msgstr ""
3839
 
3840
- #: templates/wp-admin/settings/form-contents.php:289
3841
  msgid "For more reporting features, use the Reporting add-on."
3842
  msgstr ""
3843
 
3844
- #: class-updraftplus.php:3901
3845
  msgid "(version: %s)"
3846
  msgstr ""
3847
 
3848
- #: addons/reporting.php:438 admin.php:566
3849
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3850
  msgstr ""
3851
 
3852
- #: addons/reporting.php:438 admin.php:565
3853
  msgid "When the Email storage method is enabled, also send the entire backup"
3854
  msgstr ""
3855
 
3856
- #: addons/reporting.php:153 backup.php:933
3857
  msgid "Latest status:"
3858
  msgstr ""
3859
 
3860
- #: backup.php:932
3861
  msgid "Backup contains:"
3862
  msgstr ""
3863
 
3864
- #: backup.php:889
3865
  msgid "Backed up: %s"
3866
  msgstr ""
3867
 
3868
- #: addons/reporting.php:236 backup.php:883
3869
  msgid "The log file has been attached to this email."
3870
  msgstr ""
3871
 
3872
- #: backup.php:847
3873
  msgid "Unknown/unexpected error - please raise a support request"
3874
  msgstr ""
3875
 
3876
- #: backup.php:844
3877
  msgid "Database only (files were not part of this particular schedule)"
3878
  msgstr ""
3879
 
3880
- #: backup.php:844
3881
  msgid "Database (files backup has not completed)"
3882
  msgstr ""
3883
 
3884
- #: backup.php:841
3885
  msgid "Files only (database was not part of this particular schedule)"
3886
  msgstr ""
3887
 
3888
- #: backup.php:841
3889
  msgid "Files (database backup has not completed)"
3890
  msgstr ""
3891
 
3892
- #: admin.php:229 backup.php:839
3893
  msgid "Files and database"
3894
  msgstr ""
3895
 
3896
- #: options.php:186
3897
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3898
  msgstr ""
3899
 
3900
- #: options.php:186
3901
  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>."
3902
  msgstr ""
3903
 
3904
- #: options.php:186
3905
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3906
  msgstr ""
3907
 
3908
- #: options.php:186
3909
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3910
  msgstr ""
3911
 
3912
- #: options.php:186
3913
  msgid "UpdraftPlus warning:"
3914
  msgstr ""
3915
 
3916
- #: udaddons/options.php:488
3917
  msgid "(or connect using the form on this page if you have already purchased it)"
3918
  msgstr ""
3919
 
3920
- #: udaddons/options.php:474
3921
  msgid "please follow this link to update the plugin in order to activate it"
3922
  msgstr ""
3923
 
3924
- #: udaddons/options.php:471
3925
  msgid "please follow this link to update the plugin in order to get it"
3926
  msgstr ""
3927
 
3928
- #: udaddons/options.php:461 udaddons/options.php:463
3929
  msgid "latest"
3930
  msgstr ""
3931
 
3932
- #: udaddons/options.php:459
3933
  msgid "Your version: %s"
3934
  msgstr ""
3935
 
3936
- #: udaddons/options.php:457
3937
  msgid "You've got it"
3938
  msgstr ""
3939
 
3940
- #: udaddons/options.php:423
3941
  msgid "UpdraftPlus Support"
3942
  msgstr ""
3943
 
3944
- #: udaddons/options.php:381
3945
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3946
  msgstr ""
3947
 
3948
- #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3949
  msgid "UpdraftPlus Addons"
3950
  msgstr ""
3951
 
3952
- #: udaddons/options.php:94
3953
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
3954
  msgstr ""
3955
 
3956
- #: methods/updraftvault.php:598 methods/updraftvault.php:616
3957
  #: udaddons/updraftplus-addons.php:795
3958
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3959
  msgstr ""
3960
 
3961
- #: methods/updraftvault.php:612 udaddons/updraftplus-addons.php:792
3962
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3963
  msgstr ""
3964
 
3965
- #: methods/updraftvault.php:571 udaddons/updraftplus-addons.php:752
3966
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3967
  msgstr ""
3968
 
@@ -3974,16 +4034,16 @@ msgstr ""
3974
  msgid "We failed to successfully connect to UpdraftPlus.Com"
3975
  msgstr ""
3976
 
3977
- #: methods/email.php:74 templates/wp-admin/settings/form-contents.php:270
3978
  #: templates/wp-admin/settings/tab-addons.php:200
3979
  msgid "Reporting"
3980
  msgstr ""
3981
 
3982
- #: admin.php:4104
3983
  msgid "Options (raw)"
3984
  msgstr ""
3985
 
3986
- #: addons/reporting.php:436 admin.php:564
3987
  msgid "Send a report only when there are warnings/errors"
3988
  msgstr ""
3989
 
@@ -3995,147 +4055,147 @@ msgstr ""
3995
  msgid "You should check the file ownerships and permissions in your WordPress installation"
3996
  msgstr ""
3997
 
3998
- #: templates/wp-admin/settings/form-contents.php:174
3999
  msgid "See also the \"More Files\" add-on from our shop."
4000
  msgstr ""
4001
 
4002
- #: backup.php:2987 class-updraftplus.php:610
4003
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4004
  msgstr ""
4005
 
4006
- #: class-updraftplus.php:594
4007
  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)"
4008
  msgstr ""
4009
 
4010
- #: udaddons/options.php:547
4011
  msgid "Manage Addons"
4012
  msgstr ""
4013
 
4014
- #: udaddons/options.php:489
4015
  msgid "Buy It"
4016
  msgstr ""
4017
 
4018
- #: udaddons/options.php:488
4019
  msgid "Get it from the UpdraftPlus.Com Store"
4020
  msgstr ""
4021
 
4022
- #: udaddons/options.php:482 udaddons/options.php:484
4023
  msgid "activate it on this site"
4024
  msgstr ""
4025
 
4026
- #: udaddons/options.php:484
4027
  msgid "You have an inactive purchase"
4028
  msgstr ""
4029
 
4030
- #: udaddons/options.php:474
4031
  msgid "Assigned to this site"
4032
  msgstr ""
4033
 
4034
- #: udaddons/options.php:471
4035
  msgid "Available for this site (via your all-addons purchase)"
4036
  msgstr ""
4037
 
4038
- #: udaddons/options.php:465
4039
  msgid "(apparently a pre-release or withdrawn release)"
4040
  msgstr ""
4041
 
4042
- #: udaddons/options.php:425
4043
  msgid "Go here"
4044
  msgstr ""
4045
 
4046
- #: udaddons/options.php:425
4047
  msgid "Need to get support?"
4048
  msgstr ""
4049
 
4050
- #: udaddons/options.php:407
4051
  msgid "An error occurred when trying to retrieve your add-ons."
4052
  msgstr ""
4053
 
4054
- #: udaddons/options.php:340
4055
  msgid "An unknown response was received. Response was:"
4056
  msgstr ""
4057
 
4058
- #: udaddons/options.php:339
4059
  msgid "Claim not granted - your account login details were wrong"
4060
  msgstr ""
4061
 
4062
- #: udaddons/options.php:337
4063
  msgid "Please wait whilst we make the claim..."
4064
  msgstr ""
4065
 
4066
- #: udaddons/options.php:290
4067
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4068
  msgstr ""
4069
 
4070
- #: udaddons/options.php:281
4071
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4072
  msgstr ""
4073
 
4074
- #: udaddons/options.php:272
4075
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4076
  msgstr ""
4077
 
4078
- #: udaddons/options.php:271
4079
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4080
  msgstr ""
4081
 
4082
- #: udaddons/options.php:242
4083
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4084
  msgstr ""
4085
 
4086
- #: udaddons/options.php:183
4087
  msgid "Forgotten your details?"
4088
  msgstr ""
4089
 
4090
- #: udaddons/options.php:172
4091
  msgid "Not yet got an account (it's free)? Go get one!"
4092
  msgstr ""
4093
 
4094
- #: udaddons/options.php:141
4095
  msgid "Connect with your UpdraftPlus.Com account"
4096
  msgstr ""
4097
 
4098
- #: udaddons/options.php:120
4099
  msgid "Your web server's version of PHP is too old ("
4100
  msgstr ""
4101
 
4102
- #: udaddons/options.php:114
4103
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4104
  msgstr ""
4105
 
4106
- #: udaddons/options.php:113
4107
  msgid "Go here to begin installing it."
4108
  msgstr ""
4109
 
4110
- #: udaddons/options.php:113
4111
  msgid "UpdraftPlus is not yet installed."
4112
  msgstr ""
4113
 
4114
- #: udaddons/options.php:110
4115
  msgid "Go here to activate it."
4116
  msgstr ""
4117
 
4118
- #: udaddons/options.php:109
4119
  msgid "UpdraftPlus is not yet activated."
4120
  msgstr ""
4121
 
4122
- #: udaddons/options.php:100 udaddons/options.php:102
4123
  msgid "Go here to connect."
4124
  msgstr ""
4125
 
4126
- #: udaddons/options.php:100
4127
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4128
  msgstr ""
4129
 
4130
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4131
  msgid "Without it, encryption will be a lot slower."
4132
  msgstr ""
4133
 
4134
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4135
  msgid "Your web-server does not have the %s module installed."
4136
  msgstr ""
4137
 
4138
- #: addons/googlecloud.php:898 methods/googledrive.php:966
4139
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4140
  msgstr ""
4141
 
@@ -4143,15 +4203,15 @@ msgstr ""
4143
  msgid "Drop backup files here"
4144
  msgstr ""
4145
 
4146
- #: admin.php:575
4147
  msgid "The web server returned an error code (try again, or check your web server logs)"
4148
  msgstr ""
4149
 
4150
- #: admin.php:573
4151
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4152
  msgstr ""
4153
 
4154
- #: admin.php:570
4155
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4156
  msgstr ""
4157
 
@@ -4159,7 +4219,7 @@ msgstr ""
4159
  msgid "Site home:"
4160
  msgstr ""
4161
 
4162
- #: addons/morestorage.php:78
4163
  msgid "Remote Storage Options"
4164
  msgstr ""
4165
 
@@ -4171,7 +4231,7 @@ msgstr ""
4171
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4172
  msgstr ""
4173
 
4174
- #: addons/azure.php:351 methods/stream-base.php:125 methods/stream-base.php:130
4175
  msgid "Upload failed"
4176
  msgstr ""
4177
 
@@ -4179,11 +4239,11 @@ msgstr ""
4179
  msgid "You can send a backup to more than one destination with an add-on."
4180
  msgstr ""
4181
 
4182
- #: admin.php:2593
4183
  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."
4184
  msgstr ""
4185
 
4186
- #: admin.php:2491
4187
  msgid "(%s%%, file %s of %s)"
4188
  msgstr ""
4189
 
@@ -4192,124 +4252,124 @@ msgstr ""
4192
  msgid "Read more about how this works..."
4193
  msgstr ""
4194
 
4195
- #: addons/sftp.php:485
4196
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4197
  msgstr ""
4198
 
4199
- #: addons/sftp.php:483
4200
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4201
  msgstr ""
4202
 
4203
- #: addons/sftp.php:402
4204
  msgid "Use SCP instead of SFTP"
4205
  msgstr ""
4206
 
4207
- #: addons/sftp.php:46
4208
  msgid "SCP/SFTP user setting"
4209
  msgstr ""
4210
 
4211
- #: addons/sftp.php:45
4212
  msgid "SCP/SFTP host setting"
4213
  msgstr ""
4214
 
4215
- #: methods/email.php:58
4216
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4217
  msgstr ""
4218
 
4219
- #: methods/email.php:45
4220
  msgid "Backup is of: %s."
4221
  msgstr ""
4222
 
4223
- #: admin.php:662
4224
  msgid "%s settings test result:"
4225
  msgstr ""
4226
 
4227
- #: admin.php:3287 admin.php:3289
4228
  msgid "(Not finished)"
4229
  msgstr ""
4230
 
4231
- #: admin.php:3289
4232
  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."
4233
  msgstr ""
4234
 
4235
- #: templates/wp-admin/settings/form-contents.php:348
4236
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4237
  msgstr ""
4238
 
4239
- #: templates/wp-admin/settings/form-contents.php:348
4240
  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)."
4241
  msgstr ""
4242
 
4243
- #: admin.php:2588
4244
  msgid "Job ID: %s"
4245
  msgstr ""
4246
 
4247
- #: admin.php:2573
4248
  msgid "last activity: %ss ago"
4249
  msgstr ""
4250
 
4251
- #: admin.php:2572
4252
  msgid "next resumption: %d (after %ss)"
4253
  msgstr ""
4254
 
4255
- #: admin.php:2555 central/bootstrap.php:405 central/bootstrap.php:412
4256
- #: methods/updraftvault.php:356 methods/updraftvault.php:436
4257
  msgid "Unknown"
4258
  msgstr ""
4259
 
4260
- #: admin.php:2505
4261
  msgid "Backup finished"
4262
  msgstr ""
4263
 
4264
- #: admin.php:2500
4265
  msgid "Waiting until scheduled time to retry because of errors"
4266
  msgstr ""
4267
 
4268
- #: admin.php:2496
4269
  msgid "Pruning old backup sets"
4270
  msgstr ""
4271
 
4272
- #: admin.php:2484
4273
  msgid "Uploading files to remote storage"
4274
  msgstr ""
4275
 
4276
- #: admin.php:2553
4277
  msgid "Encrypted database"
4278
  msgstr ""
4279
 
4280
- #: admin.php:2545
4281
  msgid "Encrypting database"
4282
  msgstr ""
4283
 
4284
- #: admin.php:2519
4285
  msgid "Created database backup"
4286
  msgstr ""
4287
 
4288
- #: admin.php:2532
4289
  msgid "table: %s"
4290
  msgstr ""
4291
 
4292
- #: admin.php:2530
4293
  msgid "Creating database backup"
4294
  msgstr ""
4295
 
4296
- #: admin.php:2478
4297
  msgid "Created file backup zips"
4298
  msgstr ""
4299
 
4300
- #: admin.php:2465
4301
  msgid "Creating file backup zips"
4302
  msgstr ""
4303
 
4304
- #: admin.php:2460
4305
  msgid "Backup begun"
4306
  msgstr ""
4307
 
4308
- #: admin.php:2303
4309
  msgid "Backups in progress:"
4310
  msgstr ""
4311
 
4312
- #: admin.php:859
4313
  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."
4314
  msgstr ""
4315
 
@@ -4325,26 +4385,26 @@ msgstr ""
4325
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4326
  msgstr ""
4327
 
4328
- #: class-updraftplus.php:2739
4329
  msgid "The backup has not finished; a resumption is scheduled"
4330
  msgstr ""
4331
 
4332
- #: class-updraftplus.php:1734
4333
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4334
  msgstr ""
4335
 
4336
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4337
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4338
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4339
- #: methods/googledrive.php:244
4340
  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)."
4341
  msgstr ""
4342
 
4343
- #: admin.php:2126
4344
  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)."
4345
  msgstr ""
4346
 
4347
- #: addons/autobackup.php:1006 admin.php:617
4348
  msgid "Proceed with update"
4349
  msgstr ""
4350
 
@@ -4397,19 +4457,19 @@ msgstr ""
4397
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4398
  msgstr ""
4399
 
4400
- #: addons/morefiles.php:170 addons/morefiles.php:171
4401
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4402
  msgstr ""
4403
 
4404
- #: addons/morefiles.php:170 addons/morefiles.php:171
4405
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4406
  msgstr ""
4407
 
4408
- #: addons/morefiles.php:123
4409
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4410
  msgstr ""
4411
 
4412
- #: addons/morefiles.php:113
4413
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4414
  msgstr ""
4415
 
@@ -4422,31 +4482,31 @@ msgstr ""
4422
  msgid "Support"
4423
  msgstr ""
4424
 
4425
- #: class-updraftplus.php:4054
4426
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4427
  msgstr ""
4428
 
4429
- #: class-updraftplus.php:4046
4430
  msgid "This database backup is missing core WordPress tables: %s"
4431
  msgstr ""
4432
 
4433
- #: class-updraftplus.php:3934
4434
  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."
4435
  msgstr ""
4436
 
4437
- #: class-updraftplus.php:3850
4438
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4439
  msgstr ""
4440
 
4441
- #: addons/autobackup.php:556 admin.php:827
4442
  msgid "Update Theme"
4443
  msgstr ""
4444
 
4445
- #: addons/autobackup.php:505 admin.php:823
4446
  msgid "Update Plugin"
4447
  msgstr ""
4448
 
4449
- #: addons/autobackup.php:985 admin.php:696 includes/updraftplus-notices.php:171
4450
  msgid "Be safe with an automatic backup"
4451
  msgstr ""
4452
 
@@ -4454,71 +4514,71 @@ msgstr ""
4454
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4455
  msgstr ""
4456
 
4457
- #: admin.php:2078
4458
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4459
  msgstr ""
4460
 
4461
- #: admin.php:611
4462
  msgid "The file was uploaded."
4463
  msgstr ""
4464
 
4465
- #: admin.php:610
4466
  msgid "Unknown server response status:"
4467
  msgstr ""
4468
 
4469
- #: admin.php:609
4470
  msgid "Unknown server response:"
4471
  msgstr ""
4472
 
4473
- #: admin.php:608
4474
  msgid "This decryption key will be attempted:"
4475
  msgstr ""
4476
 
4477
- #: admin.php:607
4478
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4479
  msgstr ""
4480
 
4481
- #: admin.php:606
4482
  msgid "Upload error"
4483
  msgstr ""
4484
 
4485
- #: admin.php:605
4486
  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)."
4487
  msgstr ""
4488
 
4489
- #: admin.php:604
4490
  msgid "Upload error:"
4491
  msgstr ""
4492
 
4493
- #: admin.php:603
4494
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4495
  msgstr ""
4496
 
4497
- #: admin.php:594
4498
  msgid "Download to your computer"
4499
  msgstr ""
4500
 
4501
- #: admin.php:593
4502
  msgid "Delete from your web server"
4503
  msgstr ""
4504
 
4505
- #: methods/s3.php:774
4506
  msgid "Examples of S3-compatible storage providers:"
4507
  msgstr ""
4508
 
4509
- #: admin.php:3643
4510
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4511
  msgstr ""
4512
 
4513
- #: admin.php:3260
4514
  msgid "You appear to be missing one or more archives from this multi-archive set."
4515
  msgstr ""
4516
 
4517
- #: admin.php:3257
4518
  msgid "(%d archive(s) in set)."
4519
  msgstr ""
4520
 
4521
- #: templates/wp-admin/settings/form-contents.php:325
4522
  msgid "Split archives every:"
4523
  msgstr ""
4524
 
@@ -4526,15 +4586,15 @@ msgstr ""
4526
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4527
  msgstr ""
4528
 
4529
- #: admin.php:584
4530
  msgid "Warnings:"
4531
  msgstr ""
4532
 
4533
- #: admin.php:583
4534
  msgid "Error: the server sent an empty response."
4535
  msgstr ""
4536
 
4537
- #: admin.php:1839
4538
  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?"
4539
  msgstr ""
4540
 
@@ -4570,7 +4630,7 @@ msgstr ""
4570
  msgid "No such backup set exists"
4571
  msgstr ""
4572
 
4573
- #: admin.php:1115
4574
  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"
4575
  msgstr ""
4576
 
@@ -4586,19 +4646,19 @@ msgstr ""
4586
  msgid "Moving unpacked backup into place..."
4587
  msgstr ""
4588
 
4589
- #: backup.php:2691 backup.php:2947
4590
  msgid "Failed to open the zip file (%s) - %s"
4591
  msgstr ""
4592
 
4593
- #: addons/morefiles.php:101
4594
  msgid "WordPress root directory server path: %s"
4595
  msgstr ""
4596
 
4597
- #: methods/s3.php:819
4598
  msgid "%s end-point"
4599
  msgstr ""
4600
 
4601
- #: methods/s3.php:781
4602
  msgid "... and many more!"
4603
  msgstr ""
4604
 
@@ -4606,31 +4666,31 @@ msgstr ""
4606
  msgid "S3 (Compatible)"
4607
  msgstr ""
4608
 
4609
- #: admin.php:3564
4610
  msgid "File is not locally present - needs retrieving from remote storage"
4611
  msgstr ""
4612
 
4613
- #: admin.php:3551
4614
  msgid "Looking for %s archive: file name: %s"
4615
  msgstr ""
4616
 
4617
- #: admin.php:3512
4618
  msgid "Final checks"
4619
  msgstr ""
4620
 
4621
- #: templates/wp-admin/settings/form-contents.php:331
4622
  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)."
4623
  msgstr ""
4624
 
4625
- #: templates/wp-admin/settings/form-contents.php:215
4626
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4627
  msgstr ""
4628
 
4629
- #: admin.php:2931
4630
  msgid "Your wp-content directory server path: %s"
4631
  msgstr ""
4632
 
4633
- #: admin.php:600
4634
  msgid "Raw backup history"
4635
  msgstr ""
4636
 
@@ -4638,11 +4698,11 @@ msgstr ""
4638
  msgid "Show raw backup and file list"
4639
  msgstr ""
4640
 
4641
- #: admin.php:582
4642
  msgid "Processing files - please wait..."
4643
  msgstr ""
4644
 
4645
- #: admin.php:3695 templates/wp-admin/settings/downloading-and-restoring.php:29
4646
  msgid "Please consult this FAQ for help on what to do about it."
4647
  msgstr ""
4648
 
@@ -4650,11 +4710,11 @@ msgstr ""
4650
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4651
  msgstr ""
4652
 
4653
- #: class-updraftplus.php:3858
4654
  msgid "Failed to open database file."
4655
  msgstr ""
4656
 
4657
- #: admin.php:4074
4658
  msgid "Known backups (raw)"
4659
  msgstr ""
4660
 
@@ -4678,21 +4738,21 @@ msgstr ""
4678
  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."
4679
  msgstr ""
4680
 
4681
- #: admin.php:3584
4682
  msgid "file is size:"
4683
  msgstr ""
4684
 
4685
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4686
- #: addons/migrator.php:369 admin.php:859 admin.php:2083 backup.php:2994
4687
  #: updraftplus.php:147
4688
  msgid "Go here for more information."
4689
  msgstr ""
4690
 
4691
- #: admin.php:581
4692
  msgid "Some files are still downloading or being processed - please wait."
4693
  msgstr ""
4694
 
4695
- #: class-updraftplus.php:3906 class-updraftplus.php:3924
4696
  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."
4697
  msgstr ""
4698
 
@@ -4704,81 +4764,82 @@ msgstr ""
4704
  msgid "Enter in format HH:MM (e.g. 14:22)."
4705
  msgstr ""
4706
 
4707
- #: methods/ftp.php:111
4708
  msgid "%s upload failed"
4709
  msgstr ""
4710
 
4711
- #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4712
  msgid "%s login failure"
4713
  msgstr ""
4714
 
4715
- #: methods/dropbox.php:425
4716
  msgid "You do not appear to be authenticated with %s"
4717
  msgstr ""
4718
 
4719
- #: methods/dropbox.php:392
4720
  msgid "Failed to access %s when deleting (see log file for more)"
4721
  msgstr ""
4722
 
4723
- #: methods/dropbox.php:384
4724
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4725
  msgstr ""
4726
 
4727
- #: methods/dropbox.php:119
4728
  msgid "Dropbox error: %s (see log file for more)"
4729
  msgstr ""
4730
 
4731
- #: methods/cloudfiles.php:422
4732
  msgid "Error - failed to download the file from %s"
4733
  msgstr ""
4734
 
4735
- #: methods/cloudfiles.php:418
4736
  msgid "Error - no such file exists at %s"
4737
  msgstr ""
4738
 
4739
- #: addons/azure.php:217 methods/addon-base.php:208 methods/cloudfiles.php:392
4740
- #: methods/cloudfiles.php:409 methods/googledrive.php:838
4741
- #: methods/openstack-base.php:403 methods/stream-base.php:266
4742
- #: methods/stream-base.php:273 methods/stream-base.php:286
 
4743
  msgid "%s Error"
4744
  msgstr ""
4745
 
4746
- #: methods/cloudfiles.php:219 methods/openstack-base.php:78
4747
  msgid "%s error - failed to upload file"
4748
  msgstr ""
4749
 
4750
- #: class-updraftplus.php:940 methods/cloudfiles.php:211
4751
  msgid "%s error - failed to re-assemble chunks"
4752
  msgstr ""
4753
 
4754
- #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4755
- #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4756
- #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4757
- #: methods/openstack-base.php:36 methods/openstack-base.php:300
4758
- #: methods/openstack-base.php:365 methods/openstack-base.php:437
4759
- #: methods/openstack-base.php:440 methods/openstack-base.php:457
4760
- #: methods/openstack-base.php:462
4761
  msgid "%s authentication failed"
4762
  msgstr ""
4763
 
4764
- #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1784
4765
- #: admin.php:1831 admin.php:1839 class-updraftplus.php:725
4766
- #: class-updraftplus.php:731 class-updraftplus.php:3829
4767
- #: class-updraftplus.php:3831 class-updraftplus.php:3964
4768
- #: class-updraftplus.php:3999 methods/googledrive.php:304 restorer.php:944
4769
  msgid "Error: %s"
4770
  msgstr ""
4771
 
4772
- #: admin.php:2868
4773
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4774
  msgstr ""
4775
 
4776
- #: admin.php:2866
4777
  msgid "Backup directory specified does <b>not</b> exist."
4778
  msgstr ""
4779
 
4780
- #: admin.php:2600 admin.php:2822 class-updraftplus.php:3906
4781
- #: class-updraftplus.php:3924
4782
  msgid "Warning: %s"
4783
  msgstr ""
4784
 
@@ -4786,31 +4847,31 @@ msgstr ""
4786
  msgid "Last backup job run:"
4787
  msgstr ""
4788
 
4789
- #: backup.php:2713
4790
  msgid "A very large file was encountered: %s (size: %s Mb)"
4791
  msgstr ""
4792
 
4793
- #: backup.php:2087 backup.php:2119
4794
  msgid "%s: unreadable file - could not be backed up"
4795
  msgstr ""
4796
 
4797
- #: backup.php:1495
4798
  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"
4799
  msgstr ""
4800
 
4801
- #: backup.php:1614
4802
  msgid "An error occurred whilst closing the final database file"
4803
  msgstr ""
4804
 
4805
- #: backup.php:874
4806
  msgid "Warnings encountered:"
4807
  msgstr ""
4808
 
4809
- #: class-updraftplus.php:2727
4810
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4811
  msgstr ""
4812
 
4813
- #: class-updraftplus.php:623
4814
  msgid "Your free disk space is very low - only %s Mb remain"
4815
  msgstr ""
4816
 
@@ -4842,23 +4903,23 @@ msgstr ""
4842
  msgid "Processed plugin:"
4843
  msgstr ""
4844
 
4845
- #: addons/sftp.php:74
4846
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4847
  msgstr ""
4848
 
4849
- #: addons/sftp.php:38
4850
  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."
4851
  msgstr ""
4852
 
4853
- #: methods/s3.php:795
4854
  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."
4855
  msgstr ""
4856
 
4857
- #: methods/s3.php:1033
4858
  msgid "Please check your access credentials."
4859
  msgstr ""
4860
 
4861
- #: addons/s3-enhanced.php:172 methods/s3.php:1011
4862
  msgid "The error reported by %s was:"
4863
  msgstr ""
4864
 
@@ -4874,7 +4935,7 @@ msgstr ""
4874
  msgid "Cannot create new tables, so skipping this command (%s)"
4875
  msgstr ""
4876
 
4877
- #: class-updraftplus.php:3975 restorer.php:1648
4878
  msgid "Site information:"
4879
  msgstr ""
4880
 
@@ -4882,38 +4943,38 @@ msgstr ""
4882
  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."
4883
  msgstr ""
4884
 
4885
- #: addons/migrator.php:325 admin.php:2078 class-updraftplus.php:3968
4886
  #: restorer.php:1970
4887
  msgid "Warning:"
4888
  msgstr ""
4889
 
4890
- #: class-updraftplus.php:3960 restorer.php:162
4891
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4892
  msgstr ""
4893
 
4894
- #: admin.php:3539
4895
  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."
4896
  msgstr ""
4897
 
4898
- #: admin.php:2987 methods/updraftvault.php:260
4899
  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."
4900
  msgstr ""
4901
 
4902
- #: admin.php:618
4903
  msgid "Close"
4904
  msgstr ""
4905
 
4906
- #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:574
4907
- #: methods/remotesend.php:71 methods/remotesend.php:79
4908
- #: methods/remotesend.php:220 methods/remotesend.php:237
4909
  msgid "Unexpected response:"
4910
  msgstr ""
4911
 
4912
- #: addons/reporting.php:434 admin.php:569
4913
  msgid "To send to more than one address, separate each address with a comma."
4914
  msgstr ""
4915
 
4916
- #: admin.php:598
4917
  msgid "PHP information"
4918
  msgstr ""
4919
 
@@ -4949,7 +5010,7 @@ msgstr ""
4949
  msgid "Also delete from remote storage"
4950
  msgstr ""
4951
 
4952
- #: admin.php:2330
4953
  msgid "Latest UpdraftPlus.com news:"
4954
  msgstr ""
4955
 
@@ -4966,7 +5027,7 @@ msgstr ""
4966
  msgid "News"
4967
  msgstr ""
4968
 
4969
- #: admin.php:1269
4970
  msgid "Backup set not found"
4971
  msgstr ""
4972
 
@@ -4984,7 +5045,7 @@ msgstr ""
4984
  msgid "Blog link"
4985
  msgstr ""
4986
 
4987
- #: admin.php:661
4988
  msgid "Testing %s Settings..."
4989
  msgstr ""
4990
 
@@ -4992,27 +5053,27 @@ msgstr ""
4992
  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."
4993
  msgstr ""
4994
 
4995
- #: admin.php:875
4996
  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."
4997
  msgstr ""
4998
 
4999
- #: admin.php:875
5000
  msgid "Notice"
5001
  msgstr ""
5002
 
5003
- #: backup.php:856
5004
  msgid "Errors encountered:"
5005
  msgstr ""
5006
 
5007
- #: admin.php:567
5008
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5009
  msgstr ""
5010
 
5011
- #: admin.php:580
5012
  msgid "Begun looking for this entity"
5013
  msgstr ""
5014
 
5015
- #: addons/dropbox-folders.php:26
5016
  msgid "Store at"
5017
  msgstr ""
5018
 
@@ -5028,7 +5089,7 @@ msgstr ""
5028
  msgid "Time taken (seconds):"
5029
  msgstr ""
5030
 
5031
- #: addons/migrator.php:1113 admin.php:585
5032
  msgid "Errors:"
5033
  msgstr ""
5034
 
@@ -5097,23 +5158,23 @@ msgstr ""
5097
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5098
  msgstr ""
5099
 
5100
- #: addons/multisite.php:630
5101
  msgid "Blog uploads"
5102
  msgstr ""
5103
 
5104
- #: addons/migrator.php:369 addons/multisite.php:623
5105
  msgid "Must-use plugins"
5106
  msgstr ""
5107
 
5108
- #: addons/multisite.php:193
5109
  msgid "You do not have permission to access this page."
5110
  msgstr ""
5111
 
5112
- #: addons/multisite.php:179 udaddons/options.php:225
5113
  msgid "You do not have sufficient permissions to access this page."
5114
  msgstr ""
5115
 
5116
- #: addons/multisite.php:173
5117
  msgid "Multisite Install"
5118
  msgstr ""
5119
 
@@ -5121,103 +5182,104 @@ msgstr ""
5121
  msgid "starting from next time it is"
5122
  msgstr ""
5123
 
5124
- #: addons/sftp.php:430
5125
  msgid "Failure: Port must be an integer."
5126
  msgstr ""
5127
 
5128
- #: methods/ftp.php:359 methods/openstack2.php:147
5129
  msgid "password"
5130
  msgstr ""
5131
 
5132
- #: addons/sftp.php:421 methods/openstack2.php:142
5133
  msgid "username"
5134
  msgstr ""
5135
 
5136
- #: addons/sftp.php:417
5137
  msgid "host name"
5138
  msgstr ""
5139
 
5140
- #: addons/sftp.php:395
5141
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5142
  msgstr ""
5143
 
5144
- #: addons/sftp.php:393
5145
  msgid "Directory path"
5146
  msgstr ""
5147
 
5148
- #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:368
5149
- #: addons/webdav.php:69 methods/openstack2.php:127 methods/updraftvault.php:320
5150
- #: udaddons/options.php:145
5151
  msgid "Password"
5152
  msgstr ""
5153
 
5154
- #: addons/sftp.php:354 addons/webdav.php:83
5155
  msgid "Port"
5156
  msgstr ""
5157
 
5158
- #: addons/moredatabase.php:237 addons/sftp.php:347 addons/webdav.php:75
5159
  msgid "Host"
5160
  msgstr ""
5161
 
5162
- #: addons/sftp.php:280
5163
  msgid "%s Error: Failed to download"
5164
  msgstr ""
5165
 
5166
- #: addons/sftp.php:460
5167
  msgid "Check your file permissions: Could not successfully create and enter:"
5168
  msgstr ""
5169
 
5170
- #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
5171
  msgid "No %s found"
5172
  msgstr ""
5173
 
5174
- #: addons/sftp.php:38
5175
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5176
  msgstr ""
5177
 
5178
- #: addons/sftp.php:38
5179
  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."
5180
  msgstr ""
5181
 
5182
- #: addons/morefiles.php:562
5183
  msgid "No backup of %s directories: there was nothing found to back up"
5184
  msgstr ""
5185
 
5186
- #: addons/morefiles.php:209
5187
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5188
  msgstr ""
5189
 
5190
- #: addons/morefiles.php:207
5191
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5192
  msgstr ""
5193
 
5194
- #: addons/morefiles.php:186
5195
  msgid "More Files"
5196
  msgstr ""
5197
 
5198
- #: addons/morefiles.php:100
5199
  msgid "WordPress core (including any additions to your WordPress root directory)"
5200
  msgstr ""
5201
 
5202
- #: addons/morefiles.php:93
5203
  msgid "The above files comprise everything in a WordPress installation."
5204
  msgstr ""
5205
 
5206
- #: addons/morefiles.php:74
5207
  msgid "Over-write wp-config.php"
5208
  msgstr ""
5209
 
5210
- #: addons/morefiles.php:70 addons/morefiles.php:562
 
5211
  msgid "WordPress Core"
5212
  msgstr ""
5213
 
5214
- #: methods/addon-base.php:294 methods/stream-base.php:316
5215
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5216
  msgstr ""
5217
 
5218
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5219
- #: addons/googlecloud.php:666 addons/sftp.php:447 admin.php:2654 admin.php:2689
5220
- #: admin.php:2698 methods/addon-base.php:284 methods/stream-base.php:302
5221
  msgid "Failed"
5222
  msgstr ""
5223
 
@@ -5225,404 +5287,404 @@ msgstr ""
5225
  msgid "WebDAV URL"
5226
  msgstr ""
5227
 
5228
- #: methods/stream-base.php:286
5229
  msgid "Local write failed: Failed to download"
5230
  msgstr ""
5231
 
5232
- #: methods/stream-base.php:273
5233
  msgid "Error opening remote file: Failed to download"
5234
  msgstr ""
5235
 
5236
- #: methods/stream-base.php:107 methods/stream-base.php:111
5237
  msgid "Chunk %s: A %s error occurred"
5238
  msgstr ""
5239
 
5240
- #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
5241
- #: methods/addon-base.php:97 methods/addon-base.php:128
5242
- #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
5243
- #: methods/googledrive.php:146 methods/stream-base.php:31
5244
- #: methods/stream-base.php:145 methods/stream-base.php:151
5245
- #: methods/stream-base.php:185 methods/stream-base.php:250
5246
  msgid "No %s settings were found"
5247
  msgstr ""
5248
 
5249
- #: methods/ftp.php:381
5250
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5251
  msgstr ""
5252
 
5253
- #: methods/ftp.php:378
5254
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5255
  msgstr ""
5256
 
5257
- #: methods/ftp.php:369
5258
  msgid "Failure: we did not successfully log in with those credentials."
5259
  msgstr ""
5260
 
5261
- #: methods/ftp.php:351
5262
  msgid "Failure: No server details were given."
5263
  msgstr ""
5264
 
5265
- #: methods/ftp.php:320
5266
  msgid "Needs to already exist"
5267
  msgstr ""
5268
 
5269
- #: methods/ftp.php:303
5270
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5271
  msgstr ""
5272
 
5273
- #: methods/ftp.php:303
5274
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5275
  msgstr ""
5276
 
5277
- #: addons/onedrive.php:755 methods/dropbox.php:627
5278
  msgid "Your %s account name: %s"
5279
  msgstr ""
5280
 
5281
- #: methods/dropbox.php:617 methods/dropbox.php:644
5282
  msgid "though part of the returned information was not as expected - your mileage may vary"
5283
  msgstr ""
5284
 
5285
- #: methods/dropbox.php:612 methods/dropbox.php:614
5286
  msgid "you have authenticated your %s account"
5287
  msgstr ""
5288
 
5289
- #: methods/dropbox.php:499 methods/dropbox.php:501
5290
  msgid "there's an add-on for that."
5291
  msgstr ""
5292
 
5293
- #: methods/dropbox.php:499 methods/dropbox.php:501
5294
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5295
  msgstr ""
5296
 
5297
- #: methods/dropbox.php:499 methods/dropbox.php:501
5298
  msgid "Backups are saved in"
5299
  msgstr ""
5300
 
5301
- #: methods/dropbox.php:499 methods/dropbox.php:501
5302
  msgid "Need to use sub-folders?"
5303
  msgstr ""
5304
 
5305
- #: methods/dropbox.php:212 methods/dropbox.php:233 methods/dropbox.php:249
5306
  msgid "error: failed to upload file to %s (see log file for more)"
5307
  msgstr ""
5308
 
5309
- #: methods/dropbox.php:97 methods/dropbox.php:114
5310
  msgid "You do not appear to be authenticated with Dropbox"
5311
  msgstr ""
5312
 
5313
- #: methods/s3.php:1028
5314
  msgid "The communication with %s was not encrypted."
5315
  msgstr ""
5316
 
5317
- #: methods/s3.php:1026
5318
  msgid "The communication with %s was encrypted."
5319
  msgstr ""
5320
 
5321
- #: addons/googlecloud.php:689 methods/s3.php:1023
5322
  msgid "We accessed the bucket, and were able to create files within it."
5323
  msgstr ""
5324
 
5325
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5326
- #: methods/s3.php:1033
5327
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5328
  msgstr ""
5329
 
5330
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5331
- #: methods/s3.php:1033
5332
  msgid "Failure"
5333
  msgstr ""
5334
 
5335
- #: methods/s3.php:1009
5336
  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)."
5337
  msgstr ""
5338
 
5339
- #: addons/s3-enhanced.php:145 methods/openstack2.php:113 methods/s3.php:1003
5340
  msgid "Region"
5341
  msgstr ""
5342
 
5343
- #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:985
5344
  msgid "Failure: No bucket details were given."
5345
  msgstr ""
5346
 
5347
- #: methods/s3.php:963
5348
  msgid "API secret"
5349
  msgstr ""
5350
 
5351
- #: methods/s3.php:856
5352
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5353
  msgstr ""
5354
 
5355
- #: methods/s3.php:855
5356
  msgid "%s location"
5357
  msgstr ""
5358
 
5359
- #: methods/s3.php:851
5360
  msgid "%s secret key"
5361
  msgstr ""
5362
 
5363
- #: methods/s3.php:847
5364
  msgid "%s access key"
5365
  msgstr ""
5366
 
5367
- #: methods/s3.php:812
5368
  msgid "If you see errors about SSL certificates, then please go here for help."
5369
  msgstr ""
5370
 
5371
- #: methods/s3.php:810
5372
  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."
5373
  msgstr ""
5374
 
5375
- #: methods/s3.php:444 methods/s3.php:618 methods/s3.php:720
5376
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5377
  msgstr ""
5378
 
5379
- #: methods/s3.php:703 methods/s3.php:749
5380
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5381
  msgstr ""
5382
 
5383
- #: methods/s3.php:422
5384
  msgid "%s re-assembly error (%s): (see log file for more)"
5385
  msgstr ""
5386
 
5387
- #: methods/s3.php:418
5388
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5389
  msgstr ""
5390
 
5391
- #: methods/s3.php:402
5392
  msgid "%s chunk %s: upload failed"
5393
  msgstr ""
5394
 
5395
- #: methods/s3.php:392
5396
  msgid "%s error: file %s was shortened unexpectedly"
5397
  msgstr ""
5398
 
5399
- #: methods/s3.php:369
5400
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5401
  msgstr ""
5402
 
5403
- #: methods/email.php:69
5404
  msgid "Note:"
5405
  msgstr ""
5406
 
5407
- #: methods/email.php:43
5408
  msgid "WordPress Backup"
5409
  msgstr ""
5410
 
5411
- #: methods/cloudfiles.php:560 methods/openstack-base.php:476
5412
  msgid "We accessed the container, and were able to create files within it."
5413
  msgstr ""
5414
 
5415
- #: methods/cloudfiles.php:556
5416
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5417
  msgstr ""
5418
 
5419
- #: methods/cloudfiles.php:529 methods/openstack-base.php:420
5420
  msgid "Failure: No container details were given."
5421
  msgstr ""
5422
 
5423
- #: addons/moredatabase.php:238 addons/sftp.php:361 addons/webdav.php:63
5424
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:509
5425
- #: methods/openstack2.php:121
5426
  msgid "Username"
5427
  msgstr ""
5428
 
5429
- #: methods/cloudfiles-new.php:152 methods/cloudfiles.php:504 methods/s3.php:959
5430
  msgid "API key"
5431
  msgstr ""
5432
 
5433
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5434
- #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:417
5435
- #: addons/sftp.php:421 addons/sftp.php:425 addons/webdav.php:103 admin.php:638
5436
- #: methods/addon-base.php:277 methods/cloudfiles-new.php:152
5437
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:504
5438
- #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
5439
- #: methods/openstack2.php:142 methods/openstack2.php:147
5440
- #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:959
5441
- #: methods/s3.php:963
5442
  msgid "Failure: No %s was given."
5443
  msgstr ""
5444
 
5445
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5446
- #: methods/openstack-base.php:513 methods/s3.php:799
5447
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5448
  msgstr ""
5449
 
5450
- #: methods/cloudfiles.php:490
5451
  msgid "Cloud Files container"
5452
  msgstr ""
5453
 
5454
- #: methods/cloudfiles.php:486
5455
  msgid "Cloud Files API key"
5456
  msgstr ""
5457
 
5458
- #: methods/cloudfiles.php:482
5459
  msgid "Cloud Files username"
5460
  msgstr ""
5461
 
5462
- #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:99
5463
- #: methods/cloudfiles.php:466
5464
  msgid "UK"
5465
  msgstr ""
5466
 
5467
- #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:98
5468
- #: methods/cloudfiles.php:465
5469
  msgid "US (default)"
5470
  msgstr ""
5471
 
5472
- #: methods/cloudfiles.php:462
5473
  msgid "US or UK Cloud"
5474
  msgstr ""
5475
 
5476
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5477
- #: methods/openstack2.php:94
5478
  msgid "Also, you should read this important FAQ."
5479
  msgstr ""
5480
 
5481
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5482
  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."
5483
  msgstr ""
5484
 
5485
- #: addons/sftp.php:408 admin.php:660 methods/addon-base.php:242
5486
- #: methods/cloudfiles.php:496 methods/ftp.php:329
5487
- #: methods/openstack-base.php:524 methods/s3.php:861
5488
- #: methods/stream-base.php:224
5489
  msgid "Test %s Settings"
5490
  msgstr ""
5491
 
5492
- #: methods/openstack-base.php:403
5493
  msgid "Error downloading remote file: Failed to download ("
5494
  msgstr ""
5495
 
5496
- #: class-updraftplus.php:980 class-updraftplus.php:1024
5497
- #: methods/cloudfiles.php:392 methods/stream-base.php:266
5498
  msgid "Error opening local file: Failed to download"
5499
  msgstr ""
5500
 
5501
- #: methods/cloudfiles.php:218
5502
  msgid "Cloud Files error - failed to upload file"
5503
  msgstr ""
5504
 
5505
- #: addons/sftp.php:134 addons/sftp.php:146 methods/cloudfiles.php:147
5506
- #: methods/cloudfiles.php:189 methods/openstack-base.php:73
5507
- #: methods/openstack-base.php:262 methods/s3.php:337 methods/s3.php:349
5508
- #: methods/s3.php:350
5509
  msgid "%s Error: Failed to upload"
5510
  msgstr ""
5511
 
5512
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5513
- #: class-updraftplus.php:842 methods/cloudfiles.php:130
5514
- #: methods/googledrive.php:756 methods/googledrive.php:761
5515
  msgid "%s Error: Failed to open local file"
5516
  msgstr ""
5517
 
5518
- #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
5519
- #: methods/cloudfiles.php:363
5520
  msgid "Cloud Files error - failed to create and access the container"
5521
  msgstr ""
5522
 
5523
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5524
- #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:539
5525
- #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
5526
  msgid "Cloud Files authentication failed"
5527
  msgstr ""
5528
 
5529
- #: addons/googlecloud.php:907 methods/googledrive.php:976
5530
  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."
5531
  msgstr ""
5532
 
5533
- #: addons/googlecloud.php:896 methods/googledrive.php:965
5534
  msgid "Authenticate with Google"
5535
  msgstr ""
5536
 
5537
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5538
- #: methods/googledrive.php:935
5539
  msgid "Client Secret"
5540
  msgstr ""
5541
 
5542
- #: addons/googlecloud.php:842 methods/googledrive.php:932
5543
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5544
  msgstr ""
5545
 
5546
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5547
- #: methods/googledrive.php:931
5548
  msgid "Client ID"
5549
  msgstr ""
5550
 
5551
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5552
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5553
  msgstr ""
5554
 
5555
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5556
  msgid "Select 'Web Application' as the application type."
5557
  msgstr ""
5558
 
5559
- #: addons/googlecloud.php:826 methods/googledrive.php:919
5560
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5561
  msgstr ""
5562
 
5563
- #: methods/addon-base.php:230 methods/cloudfiles.php:438
5564
- #: methods/dropbox.php:481 methods/ftp.php:298 methods/googledrive.php:904
5565
- #: methods/openstack-base.php:503 methods/s3.php:771
5566
- #: methods/stream-base.php:217
5567
  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."
5568
  msgstr ""
5569
 
5570
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5571
- #: addons/googlecloud.php:709 methods/googledrive.php:460
5572
- #: methods/googledrive.php:461
5573
  msgid "Account is not authorized."
5574
  msgstr ""
5575
 
5576
- #: methods/googledrive.php:386 methods/googledrive.php:432
5577
- #: methods/googledrive.php:438 methods/googledrive.php:440
5578
- #: methods/stream-base.php:201
5579
  msgid "Failed to upload to %s"
5580
  msgstr ""
5581
 
5582
- #: methods/googledrive.php:415
5583
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5584
  msgstr ""
5585
 
5586
- #: methods/googledrive.php:512
5587
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5588
  msgstr ""
5589
 
5590
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5591
- #: methods/googledrive.php:363
5592
  msgid "you have authenticated your %s account."
5593
  msgstr ""
5594
 
5595
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5596
- #: addons/onedrive.php:793 addons/sftp.php:480 methods/addon-base.php:291
5597
- #: methods/cloudfiles.php:560 methods/googledrive.php:363
5598
- #: methods/openstack-base.php:476 methods/s3.php:1023
5599
- #: methods/stream-base.php:313
5600
  msgid "Success"
5601
  msgstr ""
5602
 
5603
- #: addons/onedrive.php:747 methods/dropbox.php:655 methods/dropbox.php:664
5604
- #: methods/googledrive.php:337
5605
  msgid "Your %s quota usage: %s %% used, %s available"
5606
  msgstr ""
5607
 
5608
- #: addons/googlecloud.php:390 methods/googledrive.php:310
5609
  msgid "Authorization failed"
5610
  msgstr ""
5611
 
5612
- #: addons/googlecloud.php:382 methods/googledrive.php:302
5613
  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."
5614
  msgstr ""
5615
 
5616
- #: methods/viaaddon-base.php:72
5617
  msgid "follow this link to get it"
5618
  msgstr ""
5619
 
5620
- #: methods/viaaddon-base.php:72
5621
  msgid "%s support is available as an add-on"
5622
  msgstr ""
5623
 
5624
- #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5625
- #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5626
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5627
  msgstr ""
5628
 
@@ -5631,8 +5693,8 @@ msgstr ""
5631
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5632
  msgstr ""
5633
 
5634
- #: addons/migrator.php:1770 admin.php:2657 admin.php:2691 admin.php:2695
5635
- #: admin.php:3569 admin.php:3582 restorer.php:2203 restorer.php:2309
5636
  msgid "OK"
5637
  msgstr ""
5638
 
@@ -5656,8 +5718,8 @@ msgstr ""
5656
  msgid "Old table prefix:"
5657
  msgstr ""
5658
 
5659
- #: addons/reporting.php:65 addons/reporting.php:152 backup.php:930
5660
- #: class-updraftplus.php:3901
5661
  msgid "Backup of:"
5662
  msgstr ""
5663
 
@@ -5733,156 +5795,152 @@ msgstr ""
5733
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5734
  msgstr ""
5735
 
5736
- #: admin.php:3590 admin.php:3591
5737
  msgid "Could not find one of the files for restoration"
5738
  msgstr ""
5739
 
5740
- #: admin.php:3685
5741
  msgid "Error message"
5742
  msgstr ""
5743
 
5744
- #: admin.php:3587
5745
  msgid "The backup records do not contain information about the proper size of this file."
5746
  msgstr ""
5747
 
5748
- #: admin.php:3579
5749
  msgid "Archive is expected to be size:"
5750
  msgstr ""
5751
 
5752
- #: admin.php:3463
5753
  msgid "If making a request for support, please include this information:"
5754
  msgstr ""
5755
 
5756
- #: admin.php:3462
5757
  msgid "ABORT: Could not find the information on which entities to restore."
5758
  msgstr ""
5759
 
5760
- #: admin.php:3416
5761
  msgid "UpdraftPlus Restoration: Progress"
5762
  msgstr ""
5763
 
5764
- #: admin.php:3368
5765
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5766
  msgstr ""
5767
 
5768
- #: admin.php:3317
5769
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5770
  msgstr ""
5771
 
5772
- #: admin.php:3252
5773
- msgid "Press here to download"
5774
- msgstr ""
5775
-
5776
- #: admin.php:3326
5777
  msgid "Delete this backup set"
5778
  msgstr ""
5779
 
5780
- #: admin.php:2999
5781
  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."
5782
  msgstr ""
5783
 
5784
- #: admin.php:2996
5785
  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."
5786
  msgstr ""
5787
 
5788
- #: admin.php:2994
5789
  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)."
5790
  msgstr ""
5791
 
5792
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5793
- #: methods/openstack-base.php:513 methods/s3.php:799
5794
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5795
  msgstr ""
5796
 
5797
- #: templates/wp-admin/settings/form-contents.php:388
5798
  msgid "Save Changes"
5799
  msgstr ""
5800
 
5801
- #: templates/wp-admin/settings/form-contents.php:365
5802
  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."
5803
  msgstr ""
5804
 
5805
- #: templates/wp-admin/settings/form-contents.php:364
5806
  msgid "Disable SSL entirely where possible"
5807
  msgstr ""
5808
 
5809
- #: templates/wp-admin/settings/form-contents.php:360
5810
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5811
  msgstr ""
5812
 
5813
- #: templates/wp-admin/settings/form-contents.php:360
5814
  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."
5815
  msgstr ""
5816
 
5817
- #: templates/wp-admin/settings/form-contents.php:359
5818
  msgid "Do not verify SSL certificates"
5819
  msgstr ""
5820
 
5821
- #: templates/wp-admin/settings/form-contents.php:355
5822
  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."
5823
  msgstr ""
5824
 
5825
- #: templates/wp-admin/settings/form-contents.php:354
5826
  msgid "Use the server's SSL certificates"
5827
  msgstr ""
5828
 
5829
- #: admin.php:2870
5830
  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."
5831
  msgstr ""
5832
 
5833
- #: admin.php:2870
5834
  msgid "click here"
5835
  msgstr ""
5836
 
5837
- #: admin.php:2870
5838
  msgid "or, to reset this option"
5839
  msgstr ""
5840
 
5841
- #: admin.php:2870
5842
  msgid "Follow this link to attempt to create the directory and set the permissions"
5843
  msgstr ""
5844
 
5845
- #: admin.php:2862
5846
  msgid "Backup directory specified is writable, which is good."
5847
  msgstr ""
5848
 
5849
- #: templates/wp-admin/settings/form-contents.php:335
5850
  msgid "Backup directory"
5851
  msgstr ""
5852
 
5853
- #: templates/wp-admin/settings/form-contents.php:330
5854
  msgid "Delete local backup"
5855
  msgstr ""
5856
 
5857
- #: templates/wp-admin/settings/form-contents.php:310
5858
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5859
  msgstr ""
5860
 
5861
- #: templates/wp-admin/settings/form-contents.php:310
5862
  msgid "Show expert settings"
5863
  msgstr ""
5864
 
5865
- #: templates/wp-admin/settings/form-contents.php:309
5866
  msgid "Expert settings"
5867
  msgstr ""
5868
 
5869
- #: templates/wp-admin/settings/form-contents.php:320
5870
  msgid "Debug mode"
5871
  msgstr ""
5872
 
5873
- #: templates/wp-admin/settings/form-contents.php:305
5874
  msgid "Advanced / Debugging Settings"
5875
  msgstr ""
5876
 
5877
- #: admin.php:597
5878
  msgid "Requesting start of backup..."
5879
  msgstr ""
5880
 
5881
- #: addons/morefiles.php:234 admin.php:613
5882
  msgid "Cancel"
5883
  msgstr ""
5884
 
5885
- #: addons/reporting.php:216 admin.php:3141
5886
  msgid "None"
5887
  msgstr ""
5888
 
@@ -5890,31 +5948,31 @@ msgstr ""
5890
  msgid "Choose your remote storage"
5891
  msgstr ""
5892
 
5893
- #: templates/wp-admin/settings/form-contents.php:203
5894
  msgid "Manually decrypt a database backup file"
5895
  msgstr ""
5896
 
5897
- #: templates/wp-admin/settings/form-contents.php:184
5898
  msgid "Database encryption phrase"
5899
  msgstr ""
5900
 
5901
- #: templates/wp-admin/settings/form-contents.php:282 udaddons/options.php:143
5902
  msgid "Email"
5903
  msgstr ""
5904
 
5905
- #: templates/wp-admin/settings/form-contents.php:174
5906
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5907
  msgstr ""
5908
 
5909
- #: addons/morefiles.php:380 admin.php:2940
5910
  msgid "Exclude these:"
5911
  msgstr ""
5912
 
5913
- #: admin.php:2931
5914
  msgid "Any other directories found inside wp-content"
5915
  msgstr ""
5916
 
5917
- #: templates/wp-admin/settings/form-contents.php:171
5918
  msgid "Include in files backup"
5919
  msgstr ""
5920
 
@@ -5926,44 +5984,44 @@ msgstr ""
5926
  msgid "To fix the time at which a backup should take place,"
5927
  msgstr ""
5928
 
5929
- #: admin.php:2856
5930
  msgid "Monthly"
5931
  msgstr ""
5932
 
5933
- #: admin.php:2855
5934
  msgid "Fortnightly"
5935
  msgstr ""
5936
 
5937
- #: admin.php:2854
5938
  msgid "Weekly"
5939
  msgstr ""
5940
 
5941
- #: admin.php:2853
5942
  msgid "Daily"
5943
  msgstr ""
5944
 
5945
- #: admin.php:620 admin.php:2836
5946
  msgid "Download log file"
5947
  msgstr ""
5948
 
5949
- #: admin.php:2754
5950
  msgid "The folder exists, but your webserver does not have permission to write to it."
5951
  msgstr ""
5952
 
5953
- #: admin.php:2749
5954
  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"
5955
  msgstr ""
5956
 
5957
- #: admin.php:2735
5958
  msgid "The request to the filesystem to create the directory failed."
5959
  msgstr ""
5960
 
5961
- #: addons/migrator.php:2243 admin.php:614 admin.php:2651 admin.php:2684
5962
- #: admin.php:3326 templates/wp-admin/settings/delete-and-restore-modals.php:5
5963
  msgid "Delete"
5964
  msgstr ""
5965
 
5966
- #: admin.php:2591
5967
  msgid "show log"
5968
  msgstr ""
5969
 
@@ -6039,7 +6097,7 @@ msgstr ""
6039
  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"
6040
  msgstr ""
6041
 
6042
- #: addons/morefiles.php:70
6043
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6044
  msgid "%s restoration options:"
6045
  msgstr ""
@@ -6076,7 +6134,7 @@ msgstr ""
6076
  msgid "Delete backup set"
6077
  msgstr ""
6078
 
6079
- #: admin.php:596
6080
  msgid "Download error: the server sent us a response which we did not understand."
6081
  msgstr ""
6082
 
@@ -6086,17 +6144,21 @@ msgstr ""
6086
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6087
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6088
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6089
- #: addons/s3-enhanced.php:127 addons/sftp.php:736 addons/webdav.php:79
6090
- #: admin.php:82 admin.php:588 admin.php:3584 admin.php:3614
6091
- #: methods/remotesend.php:76 methods/remotesend.php:234
6092
- #: methods/updraftvault.php:434 restorer.php:1364
6093
  msgid "Error:"
6094
  msgstr ""
6095
 
6096
- #: admin.php:579 templates/wp-admin/settings/downloading-and-restoring.php:34
6097
  msgid "calculating..."
6098
  msgstr ""
6099
 
 
 
 
 
6100
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6101
  msgid "UpdraftPlus - Upload backup files"
6102
  msgstr ""
@@ -6109,14 +6171,14 @@ msgstr ""
6109
  msgid "Web-server disk space in use by UpdraftPlus"
6110
  msgstr ""
6111
 
6112
- #: addons/google-enhanced.php:72 methods/googledrive.php:146
6113
- #: methods/googledrive.php:363 methods/googledrive.php:386
6114
- #: methods/googledrive.php:415 methods/googledrive.php:422
6115
- #: methods/googledrive.php:432 methods/googledrive.php:438
6116
- #: methods/googledrive.php:440 methods/googledrive.php:903
6117
- #: methods/googledrive.php:915 methods/googledrive.php:931
6118
- #: methods/googledrive.php:935 methods/googledrive.php:946
6119
- #: methods/googledrive.php:956
6120
  msgid "Google Drive"
6121
  msgstr ""
6122
 
@@ -6132,37 +6194,38 @@ msgstr ""
6132
  msgid "More tasks:"
6133
  msgstr ""
6134
 
6135
- #: admin.php:2354
6136
  msgid "Download most recently modified log file"
6137
  msgstr ""
6138
 
6139
- #: admin.php:2313 admin.php:2319 central/bootstrap.php:161
6140
  msgid "(Nothing yet logged)"
6141
  msgstr ""
6142
 
6143
- #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2312
6144
- #: admin.php:2317
6145
  msgid "Last log message"
6146
  msgstr ""
6147
 
6148
- #: addons/migrator.php:218 admin.php:619 admin.php:3317
6149
  #: templates/wp-admin/settings/tab-status.php:30
6150
  msgid "Restore"
6151
  msgstr ""
6152
 
6153
- #: admin.php:448 admin.php:612 templates/wp-admin/settings/tab-status.php:27
6154
  msgid "Backup Now"
6155
  msgstr ""
6156
 
6157
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6158
- #: addons/reporting.php:231 admin.php:233 admin.php:3116 admin.php:3189
6159
- #: admin.php:3668 includes/class-wpadmin-commands.php:138
 
6160
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6161
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6162
  msgid "Database"
6163
  msgstr ""
6164
 
6165
- #: admin.php:229 admin.php:4080
6166
  msgid "Files"
6167
  msgstr ""
6168
 
@@ -6170,11 +6233,11 @@ msgstr ""
6170
  msgid "Next scheduled backups"
6171
  msgstr ""
6172
 
6173
- #: admin.php:209
6174
  msgid "At the same time as the files backup"
6175
  msgstr ""
6176
 
6177
- #: admin.php:199 admin.php:220 admin.php:227
6178
  msgid "Nothing currently scheduled"
6179
  msgstr ""
6180
 
@@ -6186,15 +6249,15 @@ msgstr ""
6186
  msgid "JavaScript warning"
6187
  msgstr ""
6188
 
6189
- #: admin.php:599 admin.php:2381
6190
  msgid "Delete Old Directories"
6191
  msgstr ""
6192
 
6193
- #: admin.php:2126
6194
  msgid "Current limit is:"
6195
  msgstr ""
6196
 
6197
- #: admin.php:2100
6198
  msgid "Your backup has been restored."
6199
  msgstr ""
6200
 
@@ -6206,127 +6269,127 @@ msgstr ""
6206
  msgid "Lead developer's homepage"
6207
  msgstr ""
6208
 
6209
- #: admin.php:4000
6210
  msgid "Your settings have been wiped."
6211
  msgstr ""
6212
 
6213
- #: admin.php:2060
6214
  msgid "Backup directory successfully created."
6215
  msgstr ""
6216
 
6217
- #: admin.php:2053
6218
  msgid "Backup directory could not be created"
6219
  msgstr ""
6220
 
6221
- #: admin.php:2623
6222
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6223
  msgstr ""
6224
 
6225
- #: admin.php:2621
6226
  msgid "Old directories successfully removed."
6227
  msgstr ""
6228
 
6229
- #: admin.php:2618
6230
  msgid "Remove old directories"
6231
  msgstr ""
6232
 
6233
- #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2002
6234
- #: admin.php:2011 admin.php:2020 admin.php:2062 admin.php:2625
6235
  msgid "Return to UpdraftPlus Configuration"
6236
  msgstr ""
6237
 
6238
- #: admin.php:592 admin.php:2002 admin.php:2011 admin.php:2020 admin.php:2062
6239
- #: admin.php:2625 templates/wp-admin/settings/existing-backups-table.php:14
6240
  msgid "Actions"
6241
  msgstr ""
6242
 
6243
- #: admin.php:1991
6244
  msgid "Restore successful!"
6245
  msgstr ""
6246
 
6247
- #: admin.php:1921
6248
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6249
  msgstr ""
6250
 
6251
- #: admin.php:1831
6252
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6253
  msgstr ""
6254
 
6255
- #: admin.php:1712
6256
  msgid "No local copy present."
6257
  msgstr ""
6258
 
6259
- #: admin.php:1709
6260
  msgid "Download in progress"
6261
  msgstr ""
6262
 
6263
- #: admin.php:591 admin.php:1697
6264
  msgid "File ready."
6265
  msgstr ""
6266
 
6267
- #: admin.php:1678
6268
  msgid "Download failed"
6269
  msgstr ""
6270
 
6271
- #: admin.php:589 admin.php:1469 admin.php:3567 class-updraftplus.php:980
6272
- #: class-updraftplus.php:1024 methods/addon-base.php:75
6273
- #: methods/addon-base.php:80 methods/addon-base.php:194
6274
- #: methods/addon-base.php:214 methods/stream-base.php:201 restorer.php:2199
6275
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6276
  msgid "Error"
6277
  msgstr ""
6278
 
6279
- #: admin.php:1497
6280
  msgid "Could not find that job - perhaps it has already finished?"
6281
  msgstr ""
6282
 
6283
- #: admin.php:1489
6284
  msgid "Job deleted"
6285
  msgstr ""
6286
 
6287
- #: admin.php:1573
6288
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6289
  msgstr ""
6290
 
6291
- #: admin.php:663
6292
  msgid "Nothing yet logged"
6293
  msgstr ""
6294
 
6295
- #: admin.php:871
6296
  msgid "Please consult this FAQ if you have problems backing up."
6297
  msgstr ""
6298
 
6299
- #: admin.php:871
6300
  msgid "Your website is hosted using the %s web server."
6301
  msgstr ""
6302
 
6303
- #: admin.php:867
6304
  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."
6305
  msgstr ""
6306
 
6307
- #: admin.php:863
6308
  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."
6309
  msgstr ""
6310
 
6311
- #: admin.php:855 admin.php:859 admin.php:863 admin.php:867 admin.php:871
6312
- #: admin.php:880 admin.php:2987 admin.php:2994 admin.php:2996
6313
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448 methods/ftp.php:284
6314
- #: methods/openstack-base.php:513 methods/s3.php:795 methods/s3.php:799
6315
- #: methods/updraftvault.php:260
6316
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6317
  #: udaddons/updraftplus-addons.php:208
6318
  msgid "Warning"
6319
  msgstr ""
6320
 
6321
- #: admin.php:804
6322
  msgid "Add-Ons / Pro Support"
6323
  msgstr ""
6324
 
6325
- #: admin.php:464 admin.php:800 templates/wp-admin/settings/tab-bar.php:7
6326
  msgid "Settings"
6327
  msgstr ""
6328
 
6329
- #: admin.php:773
6330
  msgid "Allowed Files"
6331
  msgstr ""
6332
 
@@ -6334,7 +6397,7 @@ msgstr ""
6334
  msgid "Could not create %s zip. Consult the log file for more information."
6335
  msgstr ""
6336
 
6337
- #: backup.php:1999
6338
  msgid "Infinite recursion: consult your log for more information"
6339
  msgstr ""
6340
 
@@ -6346,88 +6409,88 @@ msgstr ""
6346
  msgid "Like UpdraftPlus and can spare one minute?"
6347
  msgstr ""
6348
 
6349
- #: addons/azure.php:217 class-updraftplus.php:3660 methods/googledrive.php:838
6350
  msgid "File not found"
6351
  msgstr ""
6352
 
6353
- #: class-updraftplus.php:3571
6354
  msgid "The decryption key used:"
6355
  msgstr ""
6356
 
6357
- #: class-updraftplus.php:3571 class-updraftplus.php:3841 restorer.php:390
6358
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6359
  msgstr ""
6360
 
6361
- #: class-updraftplus.php:3552 class-updraftplus.php:3829 restorer.php:377
6362
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6363
  msgstr ""
6364
 
6365
- #: backup.php:1889
6366
  msgid "Could not open the backup file for writing"
6367
  msgstr ""
6368
 
6369
- #: class-updraftplus.php:3186
6370
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6371
  msgstr ""
6372
 
6373
- #: class-updraftplus.php:3163
6374
  msgid "Could not read the directory"
6375
  msgstr ""
6376
 
6377
- #: admin.php:1749 backup.php:1127 restorer.php:225
6378
  msgid "Backup directory (%s) is not writable, or does not exist."
6379
  msgstr ""
6380
 
6381
- #: backup.php:931
6382
  msgid "WordPress backup is complete"
6383
  msgstr ""
6384
 
6385
- #: class-updraftplus.php:2736
6386
  msgid "The backup attempt has finished, apparently unsuccessfully"
6387
  msgstr ""
6388
 
6389
- #: class-updraftplus.php:2721
6390
  msgid "The backup apparently succeeded and is now complete"
6391
  msgstr ""
6392
 
6393
- #: addons/moredatabase.php:368
6394
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6395
  msgstr ""
6396
 
6397
- #: class-updraftplus.php:2148
6398
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6399
  msgstr ""
6400
 
6401
- #: class-updraftplus.php:1540
6402
  msgid "Others"
6403
  msgstr ""
6404
 
6405
- #: addons/multisite.php:452 class-updraftplus.php:1525
6406
  msgid "Uploads"
6407
  msgstr ""
6408
 
6409
- #: class-updraftplus.php:1524
6410
  msgid "Themes"
6411
  msgstr ""
6412
 
6413
- #: class-updraftplus.php:1523
6414
  msgid "Plugins"
6415
  msgstr ""
6416
 
6417
- #: class-updraftplus.php:394
6418
  msgid "No log files were found."
6419
  msgstr ""
6420
 
6421
- #: admin.php:1632 admin.php:1636 class-updraftplus.php:389
6422
  msgid "The log file could not be read."
6423
  msgstr ""
6424
 
6425
- #: admin.php:887 admin.php:891 admin.php:895 admin.php:899 admin.php:903
6426
- #: class-updraftplus.php:354 class-updraftplus.php:389
6427
- #: class-updraftplus.php:394 class-updraftplus.php:399
6428
  msgid "UpdraftPlus notice:"
6429
  msgstr ""
6430
 
6431
- #: addons/multisite.php:63 addons/multisite.php:660 options.php:42
6432
  msgid "UpdraftPlus Backups"
6433
  msgstr ""
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: methods/updraftvault.php:49
15
+ msgid "UpdraftVault"
16
+ msgstr ""
17
+
18
+ #: includes/updraftplus-notices.php:260
19
+ msgid "get more info"
20
+ msgstr ""
21
+
22
+ #: includes/updraftplus-notices.php:260
23
+ msgid "install"
24
+ msgstr ""
25
+
26
+ #: includes/updraftplus-notices.php:260
27
+ msgid "Switch to UpdraftPlus's free alternative:"
28
+ msgstr ""
29
+
30
+ #: includes/updraftplus-notices.php:260
31
+ msgid "Clef confirms that they are closing down their two factor security plugin."
32
+ msgstr ""
33
+
34
+ #: includes/class-wpadmin-commands.php:467
35
+ msgid "archive"
36
+ msgstr ""
37
+
38
+ #: includes/class-wpadmin-commands.php:458
39
+ msgid "Extra database"
40
+ msgstr ""
41
+
42
+ #: admin.php:3302
43
+ msgid "Press here to download or browse"
44
+ msgstr ""
45
+
46
+ #: admin.php:1018 admin.php:1028
47
+ msgid "Error: invalid path"
48
+ msgstr ""
49
+
50
+ #: admin.php:876
51
+ msgid "An error occurred when fetching storage module options: "
52
+ msgstr ""
53
+
54
+ #: admin.php:705
55
+ msgid "Loading log file"
56
+ msgstr ""
57
+
58
+ #: admin.php:704
59
+ msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
60
+ msgstr ""
61
+
62
+ #: admin.php:703
63
+ msgid "Search"
64
+ msgstr ""
65
+
66
+ #: admin.php:702
67
+ msgid "Select a file to view information about it"
68
+ msgstr ""
69
+
70
+ #: admin.php:701
71
+ msgid "Browsing zip file"
72
+ msgstr ""
73
+
74
+ #: admin.php:671
75
+ msgid "With UpdraftPlus Premium, you can directly download individual files from here."
76
+ msgstr ""
77
+
78
+ #: admin.php:619
79
+ msgid "Browse contents"
80
+ msgstr ""
81
+
82
  #: restorer.php:1629
83
  msgid "Skipped tables:"
84
  msgstr ""
85
 
86
+ #: class-updraftplus.php:4173
87
  msgid "This database backup has the following WordPress tables excluded: %s"
88
  msgstr ""
89
 
90
+ #: admin.php:2319
91
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
92
  msgstr ""
93
 
94
+ #: admin.php:2319
95
  msgid "All WordPress tables will be backed up."
96
  msgstr ""
97
 
98
+ #: admin.php:700
99
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
100
  msgstr ""
101
 
102
+ #: admin.php:700
103
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
104
  msgstr ""
105
 
106
+ #: admin.php:700
107
  msgid "The available memory on the server."
108
  msgstr ""
109
 
110
+ #: admin.php:700
111
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
112
  msgstr ""
113
 
114
+ #: admin.php:700
115
  msgid "The file failed to upload. Please check the following:"
116
  msgstr ""
117
 
118
+ #: admin.php:699
119
  msgid "HTTP code:"
120
  msgstr ""
121
 
122
+ #: admin.php:596
123
  msgid "You have chosen to backup a database, but no tables have been selected"
124
  msgstr ""
125
 
126
+ #: addons/moredatabase.php:575
127
  msgid "tables"
128
  msgstr ""
129
 
130
+ #: addons/moredatabase.php:574
131
  msgid "WordPress database"
132
  msgstr ""
133
 
134
+ #: addons/moredatabase.php:567
135
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
136
  msgstr ""
137
 
282
  msgid "UpdraftPlus"
283
  msgstr ""
284
 
285
+ #: templates/wp-admin/settings/form-contents.php:274
286
  msgid "Recommended: optimize your database with WP-Optimize."
287
  msgstr ""
288
 
305
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
306
  msgstr ""
307
 
308
+ #: addons/morefiles.php:306
 
 
 
 
309
  msgid "Please choose a file or directory"
310
  msgstr ""
311
 
312
+ #: addons/morefiles.php:295
313
  msgid "Confirm"
314
  msgstr ""
315
 
316
+ #: addons/morefiles.php:298
317
  msgid "Go up a directory"
318
  msgstr ""
319
 
320
+ #: addons/morefiles.php:291
321
  msgid "Add directory..."
322
  msgstr ""
323
 
324
+ #: addons/morefiles.php:284 addons/morefiles.php:304
325
  msgid "Edit"
326
  msgstr ""
327
 
328
+ #: addons/morefiles.php:267
329
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
330
  msgstr ""
331
 
605
  msgid "Backup of: %s"
606
  msgstr ""
607
 
608
+ #: methods/googledrive.php:196
609
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
610
  msgstr ""
611
 
612
+ #: methods/dropbox.php:556
613
  msgid "%s de-authentication"
614
  msgstr ""
615
 
616
+ #: methods/dropbox.php:524
617
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
618
  msgstr ""
619
 
620
+ #: methods/dropbox.php:498
621
  msgid "Follow this link to deauthenticate with %s."
622
  msgstr ""
623
 
625
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
626
  msgstr ""
627
 
628
+ #: backup.php:1507
629
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
630
  msgstr ""
631
 
633
  msgid "You have selected a remote storage option which has an authorization step to complete:"
634
  msgstr ""
635
 
636
+ #: admin.php:1440
637
  msgid "Remote files deleted:"
638
  msgstr ""
639
 
640
+ #: admin.php:1439
641
  msgid "Local files deleted:"
642
  msgstr ""
643
 
644
+ #: admin.php:921 admin.php:925 admin.php:933 admin.php:937
645
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
646
  msgstr ""
647
 
648
+ #: admin.php:698
649
  msgid "remote files deleted"
650
  msgstr ""
651
 
652
+ #: admin.php:696
653
  msgid "Complete"
654
  msgstr ""
655
 
656
+ #: admin.php:695
657
  msgid "Do you want to carry out the import?"
658
  msgstr ""
659
 
660
+ #: admin.php:694
661
  msgid "Which was exported on:"
662
  msgstr ""
663
 
664
+ #: admin.php:693
665
  msgid "This will import data from:"
666
  msgstr ""
667
 
668
+ #: admin.php:692
669
  msgid "Importing..."
670
  msgstr ""
671
 
672
+ #: admin.php:689
673
  msgid "You have not yet selected a file to import."
674
  msgstr ""
675
 
676
+ #: admin.php:673
677
  msgid "Your export file will be of your displayed settings, not your saved ones."
678
  msgstr ""
679
 
718
  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"
719
  msgstr ""
720
 
721
+ #: admin.php:2144
722
  msgid "To fix this problem go here."
723
  msgstr ""
724
 
725
+ #: admin.php:2144
726
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
727
  msgstr ""
728
 
729
+ #: admin.php:657
730
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
731
  msgstr ""
732
 
758
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
759
  msgstr ""
760
 
761
+ #: methods/s3.php:1014
762
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
763
  msgstr ""
764
 
765
+ #: methods/s3.php:91
766
  msgid "No settings were found - please go to the Settings tab and check your settings"
767
  msgstr ""
768
 
830
  msgid "Public key was sent to:"
831
  msgstr ""
832
 
833
+ #: backup.php:2079
834
  msgid "Failed to open directory (check the file permissions and ownership): %s"
835
  msgstr ""
836
 
837
+ #: backup.php:2057
838
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
839
  msgstr ""
840
 
880
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
881
  msgstr ""
882
 
883
+ #: methods/googledrive.php:407
884
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
885
  msgstr ""
886
 
887
+ #: methods/ftp.php:390
888
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
889
  msgstr ""
890
 
891
+ #: methods/ftp.php:362
892
  msgid "login"
893
  msgstr ""
894
 
895
+ #: methods/email.php:79
896
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
897
  msgstr ""
898
 
899
+ #: methods/email.php:30
900
  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."
901
  msgstr ""
902
 
903
+ #: class-updraftplus.php:1557
904
  msgid "Size: %s MB"
905
  msgstr ""
906
 
912
  msgid "i.e. you have an account there"
913
  msgstr ""
914
 
915
+ #: templates/wp-admin/settings/form-contents.php:359
916
  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)."
917
  msgstr ""
918
 
920
  msgid "Now"
921
  msgstr ""
922
 
923
+ #: class-updraftplus.php:4037 restorer.php:996
924
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
925
  msgstr ""
926
 
928
  msgid "(tap on an icon to select or unselect)"
929
  msgstr ""
930
 
931
+ #: methods/updraftvault.php:289 methods/updraftvault.php:295
932
+ #: methods/updraftvault.php:301
933
  msgid "%s per year"
934
  msgstr ""
935
 
936
+ #: methods/updraftvault.php:288 methods/updraftvault.php:294
937
+ #: methods/updraftvault.php:300
938
  msgid "or (annual discount)"
939
  msgstr ""
940
 
941
+ #: methods/updraftvault.php:233
942
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
943
  msgstr ""
944
 
945
+ #: class-updraftplus.php:418 class-updraftplus.php:463
946
  msgid "The given file was not found, or could not be read."
947
  msgstr ""
948
 
1042
  msgid "UpdraftCentral Connection"
1043
  msgstr ""
1044
 
1045
+ #: backup.php:849 class-updraftplus.php:2813
1046
  msgid "The backup was aborted by the user"
1047
  msgstr ""
1048
 
1049
+ #: admin.php:4003
1050
  msgid "Your settings have been saved."
1051
  msgstr ""
1052
 
1053
+ #: admin.php:3196
1054
  msgid "Total backup size:"
1055
  msgstr ""
1056
 
1057
+ #: admin.php:2641
1058
  msgid "stop"
1059
  msgstr ""
1060
 
1061
+ #: admin.php:2479
1062
  msgid "The backup has finished running"
1063
  msgstr ""
1064
 
1084
  msgid "calculate"
1085
  msgstr ""
1086
 
1087
+ #: admin.php:672
1088
  msgid "You should save your changes to ensure that they are used for making your backup."
1089
  msgstr ""
1090
 
1091
+ #: admin.php:665
1092
  msgid "We requested to delete the file, but could not understand the server's response"
1093
  msgstr ""
1094
 
1095
+ #: admin.php:664
1096
  msgid "Please enter a valid URL"
1097
  msgstr ""
1098
 
1099
+ #: admin.php:647
1100
  msgid "Saving..."
1101
  msgstr ""
1102
 
1103
+ #: admin.php:610
1104
  msgid "Error: the server sent us a response which we did not understand."
1105
  msgstr ""
1106
 
1107
+ #: admin.php:602
1108
  msgid "Fetching..."
1109
  msgstr ""
1110
 
1112
  msgid "Asia Pacific (Seoul)"
1113
  msgstr ""
1114
 
 
 
 
 
1115
  #: restorer.php:1618
1116
  msgid "Uploads URL:"
1117
  msgstr ""
1118
 
1119
+ #: backup.php:400
1120
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1121
  msgstr ""
1122
 
1128
  msgid "Skipping table %s: this table will not be restored"
1129
  msgstr ""
1130
 
1131
+ #: class-updraftplus.php:4088 restorer.php:1642
1132
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1133
  msgstr ""
1134
 
1135
+ #: class-updraftplus.php:4084
1136
  msgid "Please read this link for important information on this process."
1137
  msgstr ""
1138
 
1139
+ #: class-updraftplus.php:4084
1140
  msgid "It will be imported as a new site."
1141
  msgstr ""
1142
 
1143
+ #: admin.php:2292 templates/wp-admin/notices/horizontal-notice.php:16
1144
  #: templates/wp-admin/notices/horizontal-notice.php:18
1145
  msgid "Dismiss"
1146
  msgstr ""
1147
 
1148
+ #: admin.php:684
1149
  msgid "Please fill in the required information."
1150
  msgstr ""
1151
 
1152
+ #: addons/multisite.php:550
1153
  msgid "Read more..."
1154
  msgstr ""
1155
 
1156
+ #: addons/multisite.php:550
1157
  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."
1158
  msgstr ""
1159
 
1160
+ #: addons/multisite.php:541
1161
  msgid "may include some site-wide data"
1162
  msgstr ""
1163
 
1164
+ #: addons/multisite.php:536
1165
  msgid "All sites"
1166
  msgstr ""
1167
 
1168
+ #: addons/multisite.php:532
1169
  msgid "Which site to restore"
1170
  msgstr ""
1171
 
1172
+ #: addons/multisite.php:368 addons/multisite.php:378
1173
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1174
  msgstr ""
1175
 
1217
  msgid "Call WordPress action:"
1218
  msgstr ""
1219
 
1220
+ #: admin.php:2327
1221
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1222
  msgstr ""
1223
 
1224
+ #: admin.php:3604
1225
  msgid "Skipping: this archive was already restored."
1226
  msgstr ""
1227
 
1228
+ #: templates/wp-admin/settings/form-contents.php:200
1229
  msgid "File Options"
1230
  msgstr ""
1231
 
1253
  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)."
1254
  msgstr ""
1255
 
1256
+ #: admin.php:3885
1257
  msgid "Send this backup to remote storage"
1258
  msgstr ""
1259
 
1260
+ #: admin.php:3883
1261
  msgid "Check out UpdraftPlus Vault."
1262
  msgstr ""
1263
 
1264
+ #: admin.php:3883
1265
  msgid "Not got any remote storage?"
1266
  msgstr ""
1267
 
1268
+ #: admin.php:3883
1269
  msgid "settings"
1270
  msgstr ""
1271
 
1272
+ #: admin.php:3883
1273
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1274
  msgstr ""
1275
 
1276
+ #: admin.php:2325
1277
  msgid "Include any files in the backup"
1278
  msgstr ""
1279
 
1280
+ #: admin.php:2311
1281
  msgid "Include the database in the backup"
1282
  msgstr ""
1283
 
1284
+ #: admin.php:2291
1285
  msgid "Continue restoration"
1286
  msgstr ""
1287
 
1288
+ #: admin.php:2286
1289
  msgid "You have an unfinished restoration operation, begun %s ago."
1290
  msgstr ""
1291
 
1292
+ #: admin.php:2285
1293
  msgid "Unfinished restoration"
1294
  msgstr ""
1295
 
1296
+ #: admin.php:2283
1297
  msgid "%s minutes, %s seconds"
1298
  msgstr ""
1299
 
1300
+ #: admin.php:2230
1301
  msgid "Backup Contents And Schedule"
1302
  msgstr ""
1303
 
1305
  msgid "Premium / Extensions"
1306
  msgstr ""
1307
 
1308
+ #: admin.php:2010 admin.php:2019
1309
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1310
  msgstr ""
1311
 
1312
+ #: addons/morefiles.php:53 admin.php:670
1313
  msgctxt "(verb)"
1314
  msgid "Download"
1315
  msgstr ""
1316
 
1317
+ #: admin.php:595
1318
  msgid "You have chosen to backup files, but no file entities have been selected"
1319
  msgstr ""
1320
 
1321
+ #: admin.php:504
1322
  msgid "Extensions"
1323
  msgstr ""
1324
 
1325
+ #: admin.php:496 templates/wp-admin/settings/tab-bar.php:8
1326
  msgid "Advanced Tools"
1327
  msgstr ""
1328
 
1403
  msgid "Standard"
1404
  msgstr ""
1405
 
1406
+ #: addons/azure.php:523
1407
  msgid "container"
1408
  msgstr ""
1409
 
1410
+ #: addons/azure.php:523
1411
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1412
  msgstr ""
1413
 
1414
+ #: addons/azure.php:522
1415
  msgid "optional"
1416
  msgstr ""
1417
 
1418
+ #: addons/azure.php:522
1419
  msgid "Prefix"
1420
  msgstr ""
1421
 
1422
+ #: addons/azure.php:517
1423
  msgid "See Microsoft's guidelines on container naming by following this link."
1424
  msgstr ""
1425
 
1426
+ #: addons/azure.php:517
1427
  msgid "If the %s does not already exist, then it will be created."
1428
  msgstr ""
1429
 
1430
+ #: addons/azure.php:517
1431
  msgid "Enter the path of the %s you wish to use here."
1432
  msgstr ""
1433
 
1434
+ #: addons/azure.php:506
1435
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1436
  msgstr ""
1437
 
1438
+ #: addons/azure.php:505
1439
  msgid "Account Name"
1440
  msgstr ""
1441
 
1442
+ #: addons/azure.php:505 addons/azure.php:509
1443
  msgid "Azure"
1444
  msgstr ""
1445
 
1446
+ #: addons/azure.php:501
1447
  msgid "Create Azure credentials in your Azure developer console."
1448
  msgstr ""
1449
 
1450
+ #: addons/azure.php:449
1451
  msgid "Could not create the container"
1452
  msgstr ""
1453
 
1454
+ #: addons/azure.php:343
1455
  msgid "Could not access container"
1456
  msgstr ""
1457
 
1458
+ #: class-updraftplus.php:2830
1459
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1460
  msgstr ""
1461
 
1462
+ #: backup.php:1559
1463
  msgid "the options table was not found"
1464
  msgstr ""
1465
 
1466
+ #: backup.php:1557
1467
  msgid "no options or sitemeta table was found"
1468
  msgstr ""
1469
 
1470
+ #: backup.php:1557 backup.php:1559
1471
  msgid "The database backup appears to have failed"
1472
  msgstr ""
1473
 
1474
+ #: backup.php:1431
1475
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1476
  msgstr ""
1477
 
1588
  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)."
1589
  msgstr ""
1590
 
1591
+ #: admin.php:1438
1592
  msgid "Backup sets removed:"
1593
  msgstr ""
1594
 
1595
+ #: admin.php:683
1596
  msgid "Processing..."
1597
  msgstr ""
1598
 
1599
+ #: admin.php:681
1600
  msgid "For backups older than"
1601
  msgstr ""
1602
 
1603
+ #: admin.php:680
1604
  msgid "week(s)"
1605
  msgstr ""
1606
 
1607
+ #: admin.php:679
1608
  msgid "hour(s)"
1609
  msgstr ""
1610
 
1611
+ #: admin.php:678
1612
  msgid "day(s)"
1613
  msgstr ""
1614
 
1615
+ #: admin.php:677
1616
  msgid "in the month"
1617
  msgstr ""
1618
 
1619
+ #: admin.php:676
1620
  msgid "day"
1621
  msgstr ""
1622
 
1636
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1637
  msgstr ""
1638
 
1639
+ #: methods/updraftvault.php:595
1640
  msgid "You do not currently have any UpdraftPlus Vault quota"
1641
  msgstr ""
1642
 
1643
+ #: class-updraftplus.php:4123
1644
  msgid "You must upgrade MySQL to be able to use this database."
1645
  msgstr ""
1646
 
1647
+ #: class-updraftplus.php:4123
1648
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1649
  msgstr ""
1650
 
1651
+ #: admin.php:2129
1652
  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."
1653
  msgstr ""
1654
 
1655
+ #: methods/updraftvault.php:322
1656
  msgid "Don't know your email address, or forgotten your password?"
1657
  msgstr ""
1658
 
1659
+ #: methods/updraftvault.php:315
1660
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1661
  msgstr ""
1662
 
1663
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1664
  msgid "Read the FAQs here."
1665
  msgstr ""
1666
 
1672
  msgid "Server-side encryption"
1673
  msgstr ""
1674
 
1675
+ #: methods/updraftvault.php:604
1676
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1677
  msgstr ""
1678
 
1679
+ #: admin.php:929
1680
  msgid "Go to the remote storage settings in order to connect."
1681
  msgstr ""
1682
 
1683
+ #: admin.php:929
1684
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1685
  msgstr ""
1686
 
1687
+ #: methods/updraftvault.php:304
1688
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1689
  msgstr ""
1690
 
1691
+ #: admin.php:653
1692
  msgid "Update quota count"
1693
  msgstr ""
1694
 
1695
+ #: admin.php:652
1696
  msgid "Counting..."
1697
  msgstr ""
1698
 
1699
+ #: admin.php:651
1700
  msgid "Disconnecting..."
1701
  msgstr ""
1702
 
1703
+ #: admin.php:649
1704
  msgid "Connecting..."
1705
  msgstr ""
1706
 
1707
+ #: methods/updraftvault.php:378 methods/updraftvault.php:447
1708
  msgid "Refresh current status"
1709
  msgstr ""
1710
 
1711
+ #: methods/updraftvault.php:376 methods/updraftvault.php:392
1712
+ #: methods/updraftvault.php:394 methods/updraftvault.php:447
1713
  msgid "Get more quota"
1714
  msgstr ""
1715
 
1716
+ #: methods/updraftvault.php:373 methods/updraftvault.php:389
1717
+ #: methods/updraftvault.php:428
1718
  msgid "Current use:"
1719
  msgstr ""
1720
 
1721
+ #: methods/updraftvault.php:368
1722
  msgid "You can get more quota here"
1723
  msgstr ""
1724
 
1725
+ #: methods/updraftvault.php:368
1726
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1727
  msgstr ""
1728
 
1729
+ #: admin.php:650 methods/updraftvault.php:360
1730
  msgid "Disconnect"
1731
  msgstr ""
1732
 
1733
+ #: methods/updraftvault.php:352
1734
  msgid "Quota:"
1735
  msgstr ""
1736
 
1737
+ #: methods/updraftvault.php:350
1738
  msgid "Vault owner"
1739
  msgstr ""
1740
 
1741
+ #: methods/updraftvault.php:350
1742
  msgid "Well done - there's nothing more needed to set up."
1743
  msgstr ""
1744
 
1745
+ #: methods/updraftvault.php:350
1746
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1747
  msgstr ""
1748
 
1749
+ #: methods/updraftvault.php:346
1750
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1751
  msgstr ""
1752
 
1753
+ #: methods/updraftvault.php:322
1754
  msgid "Go here for help"
1755
  msgstr ""
1756
 
1757
+ #: methods/updraftvault.php:317
1758
  msgid "E-mail"
1759
  msgstr ""
1760
 
1761
+ #: methods/updraftvault.php:310 methods/updraftvault.php:325
1762
  msgid "Back..."
1763
  msgstr ""
1764
 
1765
+ #: methods/updraftvault.php:304
1766
  msgid "Subscriptions can be cancelled at any time."
1767
  msgstr ""
1768
 
1769
+ #: methods/updraftvault.php:287 methods/updraftvault.php:293
1770
+ #: methods/updraftvault.php:299
1771
  msgid "%s per quarter"
1772
  msgstr ""
1773
 
1774
+ #: central/bootstrap.php:542 methods/updraftvault.php:277
1775
+ #: methods/updraftvault.php:307
1776
  msgid "Read more about it here."
1777
  msgstr ""
1778
 
1779
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1780
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1781
  msgstr ""
1782
 
1783
+ #: methods/updraftvault.php:273
1784
  msgid "Already purchased space?"
1785
  msgstr ""
1786
 
1787
+ #: methods/updraftvault.php:270
1788
  msgid "Show the options"
1789
  msgstr ""
1790
 
1791
+ #: methods/updraftvault.php:269
1792
  msgid "First time user?"
1793
  msgstr ""
1794
 
1795
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1796
  msgid "Press a button to get started."
1797
  msgstr ""
1798
 
1799
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1800
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1801
  msgstr ""
1802
 
1803
+ #: methods/updraftvault.php:229
1804
  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."
1805
  msgstr ""
1806
 
1807
+ #: methods/updraftvault.php:226
1808
  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!"
1809
  msgstr ""
1810
 
1811
+ #: methods/updraftvault.php:223
1812
  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."
1813
  msgstr ""
1814
 
1815
+ #: methods/updraftvault.php:77
1816
  msgid "Updraft Vault"
1817
  msgstr ""
1818
 
1819
+ #: addons/azure.php:365 addons/googlecloud.php:693 methods/s3.php:1042
1820
  msgid "Delete failed:"
1821
  msgstr ""
1822
 
1823
+ #: backup.php:3019
1824
  msgid "The zip engine returned the message: %s."
1825
  msgstr ""
1826
 
1844
  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."
1845
  msgstr ""
1846
 
1847
+ #: addons/migrator.php:1742 admin.php:659
1848
  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."
1849
  msgstr ""
1850
 
1912
  msgid "Backup made by %s"
1913
  msgstr ""
1914
 
1915
+ #: methods/addon-base-v2.php:187
1916
  msgid "This storage method does not allow downloading"
1917
  msgstr ""
1918
 
1919
+ #: admin.php:3364
1920
  msgid "(backup set imported from remote location)"
1921
  msgstr ""
1922
 
1936
  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."
1937
  msgstr ""
1938
 
1939
+ #: addons/migrator.php:1770 admin.php:666
1940
  msgid "Testing connection..."
1941
  msgstr ""
1942
 
1943
+ #: admin.php:663
1944
  msgid "Deleting..."
1945
  msgstr ""
1946
 
1947
+ #: admin.php:662
1948
  msgid "key name"
1949
  msgstr ""
1950
 
1951
+ #: admin.php:660
1952
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1953
  msgstr ""
1954
 
1955
+ #: admin.php:657
1956
  msgid "Creating..."
1957
  msgstr ""
1958
 
1976
  msgid "Or, send a backup to another site"
1977
  msgstr ""
1978
 
1979
+ #: addons/migrator.php:1937 admin.php:667
1980
  msgid "Send"
1981
  msgstr ""
1982
 
1983
+ #: addons/migrator.php:1931 admin.php:658
1984
  msgid "Send to site:"
1985
  msgstr ""
1986
 
2012
  msgid "key"
2013
  msgstr ""
2014
 
2015
+ #: methods/ftp.php:336
2016
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2017
  msgstr ""
2018
 
2019
+ #: methods/ftp.php:334
2020
  msgid "Passive mode"
2021
  msgstr ""
2022
 
2023
+ #: methods/ftp.php:329
2024
  msgid "Remote path"
2025
  msgstr ""
2026
 
2027
+ #: methods/ftp.php:324
2028
  msgid "FTP password"
2029
  msgstr ""
2030
 
2031
+ #: methods/ftp.php:319
2032
  msgid "FTP login"
2033
  msgstr ""
2034
 
2035
+ #: methods/ftp.php:314
2036
  msgid "FTP server"
2037
  msgstr ""
2038
 
2044
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2045
  msgstr ""
2046
 
2047
+ #: addons/migrator.php:2180 admin.php:655
2048
  msgid "Add site"
2049
  msgstr ""
2050
 
2051
+ #: admin.php:654
2052
  msgid "Adding..."
2053
  msgstr ""
2054
 
2055
+ #: udaddons/options.php:345
2056
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2057
  msgstr ""
2058
 
2080
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2081
  msgstr ""
2082
 
2083
+ #: admin.php:646 admin.php:672 admin.php:673
2084
  msgid "You have made changes to your settings, and not saved."
2085
  msgstr ""
2086
 
2092
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2093
  msgstr ""
2094
 
2095
+ #: addons/azure.php:501 addons/migrator.php:1757 addons/onedrive.php:961
2096
  msgid "For longer help, including screenshots, follow this link."
2097
  msgstr ""
2098
 
2116
  msgid "Please re-authorize the connection to your %s account."
2117
  msgstr ""
2118
 
2119
+ #: methods/email.php:75
2120
  msgid "configure it here"
2121
  msgstr ""
2122
 
2123
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2124
  msgid "To remove the block, please go here."
2125
  msgstr ""
2126
 
2265
  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)"
2266
  msgstr ""
2267
 
2268
+ #: methods/s3.php:844
2269
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2270
  msgstr ""
2271
 
2281
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2282
  msgstr ""
2283
 
2284
+ #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:568
2285
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2286
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2287
  msgstr ""
2288
 
2289
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2290
  #: udaddons/updraftplus-addons.php:747
2291
  msgid "It appears that your web server's IP Address (%s) is blocked."
2292
  msgstr ""
2293
 
2294
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2295
  #: udaddons/updraftplus-addons.php:747
2296
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2297
  msgstr ""
2342
  msgid "(at same time as files backup)"
2343
  msgstr ""
2344
 
2345
+ #: admin.php:2888
2346
  msgid "No backup has been completed"
2347
  msgstr ""
2348
 
2390
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2391
  msgstr ""
2392
 
2393
+ #: methods/s3.php:138 methods/s3.php:139 methods/s3.php:140 methods/s3.php:148
2394
+ #: methods/s3.php:149 methods/s3.php:150
2395
  msgid "%s Error: Failed to initialise"
2396
  msgstr ""
2397
 
2398
+ #: templates/wp-admin/settings/form-contents.php:249
2399
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2400
  msgid "or"
2401
  msgstr ""
2405
  msgid "or"
2406
  msgstr ""
2407
 
2408
+ #: admin.php:640
2409
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2410
  msgstr ""
2411
 
2412
+ #: addons/sftp.php:380
2413
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2414
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2415
  msgstr ""
2416
 
2417
+ #: addons/sftp.php:343
2418
  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."
2419
  msgstr ""
2420
 
2421
+ #: methods/openstack2.php:156
2422
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2423
  msgid "tenant"
2424
  msgstr ""
2425
 
2426
+ #: methods/openstack2.php:106
2427
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2428
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2429
  msgstr ""
2430
 
2431
+ #: templates/wp-admin/settings/form-contents.php:320
2432
  msgid "your site's admin address"
2433
  msgstr ""
2434
 
2435
+ #: templates/wp-admin/settings/form-contents.php:320
2436
  msgid "Check this box to have a basic report sent to"
2437
  msgstr ""
2438
 
2439
+ #: admin.php:2897
2440
  msgctxt "i.e. Non-automatic"
2441
  msgid "Manual"
2442
  msgstr ""
2450
  msgid "Change Lock Settings"
2451
  msgstr ""
2452
 
2453
+ #: addons/morefiles.php:245
2454
  msgid "Any other file/directory on your server that you wish to back up"
2455
  msgstr ""
2456
 
2457
+ #: admin.php:2146
2458
  msgid "For even more features and personal support, check out "
2459
  msgstr ""
2460
 
2470
  msgid "Database decryption phrase"
2471
  msgstr ""
2472
 
2473
+ #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:645
2474
  msgid "Automatic backup before update"
2475
  msgstr ""
2476
 
2550
  msgid "The admin password has now been removed."
2551
  msgstr ""
2552
 
2553
+ #: addons/morefiles.php:134
2554
  msgid "(learn more about this significant option)"
2555
  msgstr ""
2556
 
2557
+ #: udaddons/options.php:280
2558
  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."
2559
  msgstr ""
2560
 
2561
+ #: admin.php:2479 admin.php:3387
2562
  msgid "View Log"
2563
  msgstr ""
2564
 
2575
  msgid "and retain this many scheduled backups"
2576
  msgstr ""
2577
 
2578
+ #: admin.php:2858
2579
  msgid "incremental backup; base backup: %s"
2580
  msgstr ""
2581
 
2587
  msgid "Upload files into UpdraftPlus."
2588
  msgstr ""
2589
 
2590
+ #: admin.php:880 includes/class-commands.php:363
2591
  #: templates/wp-admin/settings/tab-status.php:22
2592
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2593
  msgstr ""
2594
 
2595
+ #: class-updraftplus.php:4073
2596
  msgid "Backup label:"
2597
  msgstr ""
2598
 
2599
+ #: admin.php:1674
2600
  msgid "Error: unexpected file read fail"
2601
  msgstr ""
2602
 
2603
+ #: backup.php:3025
2604
  msgid "check your log for more details."
2605
  msgstr ""
2606
 
2607
+ #: backup.php:3023
2608
  msgid "your web hosting account appears to be full; please see: %s"
2609
  msgstr ""
2610
 
2611
+ #: backup.php:3021
2612
  msgid "A zip error occurred"
2613
  msgstr ""
2614
 
2616
  msgid "Your label for this backup (optional)"
2617
  msgstr ""
2618
 
2619
+ #: addons/googlecloud.php:822 methods/googledrive.php:902
2620
  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."
2621
  msgstr ""
2622
 
2623
+ #: methods/updraftvault.php:607 udaddons/updraftplus-addons.php:789
2624
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2625
  msgstr ""
2626
 
2627
+ #: methods/updraftvault.php:604 udaddons/updraftplus-addons.php:785
2628
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2629
  msgstr ""
2630
 
2631
+ #: methods/updraftvault.php:544 udaddons/updraftplus-addons.php:655
2632
  msgid "You need to supply both an email address and a password"
2633
  msgstr ""
2634
 
2636
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2637
  msgstr ""
2638
 
2639
+ #: class-updraftplus.php:4092
2640
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2641
  msgstr ""
2642
 
2643
+ #: class-updraftplus.php:4092
2644
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2645
  msgstr ""
2646
 
2668
  msgid "Rows per batch"
2669
  msgstr ""
2670
 
2671
+ #: udaddons/options.php:109
2672
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2673
  msgstr ""
2674
 
2675
+ #: udaddons/options.php:107 udaddons/options.php:109
2676
  msgid "You need to connect to receive future updates to UpdraftPlus."
2677
  msgstr ""
2678
 
2679
+ #: class-updraftplus.php:4065
2680
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2681
  msgstr ""
2682
 
2683
+ #: class-updraftplus.php:4065
2684
  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."
2685
  msgstr ""
2686
 
2687
+ #: class-updraftplus.php:4065
2688
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2689
  msgstr ""
2690
 
2691
+ #: class-updraftplus.php:4065
2692
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2693
  msgstr ""
2694
 
2713
  msgid "UpdraftPlus is on social media - check us out!"
2714
  msgstr ""
2715
 
2716
+ #: admin.php:3448
2717
  msgid "Why am I seeing this?"
2718
  msgstr ""
2719
 
2725
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2726
  msgstr ""
2727
 
2728
+ #: admin.php:1622 admin.php:1634
2729
  msgid "Start backup"
2730
  msgstr ""
2731
 
2732
+ #: class-updraftplus.php:4037 restorer.php:996
2733
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2734
  msgstr ""
2735
 
2736
+ #: admin.php:2802
2737
  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."
2738
  msgstr ""
2739
 
2741
  msgid "Unless you have a problem, you can completely ignore everything here."
2742
  msgstr ""
2743
 
2744
+ #: admin.php:1832
2745
  msgid "This file could not be uploaded"
2746
  msgstr ""
2747
 
2748
+ #: admin.php:1797
2749
  msgid "You will find more information about this in the Settings section."
2750
  msgstr ""
2751
 
2765
  msgid "Memory limit"
2766
  msgstr ""
2767
 
2768
+ #: class-updraftplus.php:4195 restorer.php:1441
2769
  msgid "restoration"
2770
  msgstr ""
2771
 
2773
  msgid "Table to be implicitly dropped: %s"
2774
  msgstr ""
2775
 
2776
+ #: backup.php:844
2777
  msgid "Incremental"
2778
  msgstr ""
2779
 
2780
+ #: backup.php:844
2781
  msgid "Full backup"
2782
  msgstr ""
2783
 
2793
  msgid "Backup succeeded"
2794
  msgstr ""
2795
 
2796
+ #: admin.php:2898 admin.php:2899 admin.php:2900 updraftplus.php:92
2797
  #: updraftplus.php:93
2798
  msgid "Every %s hours"
2799
  msgstr ""
2836
  msgid "Too many database errors have occurred - aborting"
2837
  msgstr ""
2838
 
2839
+ #: backup.php:910
2840
  msgid "read more at %s"
2841
  msgstr ""
2842
 
2843
+ #: backup.php:910
2844
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2845
  msgstr ""
2846
 
2847
+ #: methods/googledrive.php:908
2848
  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."
2849
  msgstr ""
2850
 
2851
+ #: admin.php:3216
2852
  msgid "You have not yet made any backups."
2853
  msgstr ""
2854
 
2855
+ #: templates/wp-admin/settings/form-contents.php:212
2856
  msgid "Database Options"
2857
  msgstr ""
2858
 
2868
  msgid "Free disk space in account:"
2869
  msgstr ""
2870
 
2871
+ #: admin.php:3974 templates/wp-admin/settings/tab-status.php:27
2872
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2873
  msgstr ""
2874
 
2875
+ #: admin.php:480 admin.php:614 admin.php:1487
2876
  #: includes/deprecated-actions.php:30
2877
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2878
  #: templates/wp-admin/settings/tab-bar.php:6
2879
  msgid "Existing Backups"
2880
  msgstr ""
2881
 
2882
+ #: admin.php:472 templates/wp-admin/settings/tab-bar.php:5
2883
  msgid "Current Status"
2884
  msgstr ""
2885
 
2886
+ #: admin.php:885
2887
  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."
2888
  msgstr ""
2889
 
2890
+ #: admin.php:885
2891
  msgid "To make a backup, just press the Backup Now button."
2892
  msgstr ""
2893
 
2894
+ #: admin.php:885
2895
  msgid "Welcome to UpdraftPlus!"
2896
  msgstr ""
2897
 
2963
  msgid "user"
2964
  msgstr ""
2965
 
2966
+ #: class-updraftplus.php:1554
2967
  msgid "External database (%s)"
2968
  msgstr ""
2969
 
2970
+ #: methods/googledrive.php:908
2971
  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."
2972
  msgstr ""
2973
 
2974
+ #: methods/googledrive.php:371
2975
  msgid "failed to access parent folder"
2976
  msgstr ""
2977
 
2978
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2979
+ #: methods/googledrive.php:328
2980
  msgid "However, subsequent access attempts failed:"
2981
  msgstr ""
2982
 
2983
+ #: admin.php:3241
2984
  msgid "External database"
2985
  msgstr ""
2986
 
2987
+ #: templates/wp-admin/settings/form-contents.php:354
2988
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2989
  msgstr ""
2990
 
2991
+ #: templates/wp-admin/settings/form-contents.php:294
2992
  msgid "Back up more databases"
2993
  msgstr ""
2994
 
2995
+ #: templates/wp-admin/settings/form-contents.php:251
2996
  msgid "First, enter the decryption key"
2997
  msgstr ""
2998
 
2999
+ #: templates/wp-admin/settings/form-contents.php:233
3000
  msgid "You can manually decrypt an encrypted database here."
3001
  msgstr ""
3002
 
3003
+ #: templates/wp-admin/settings/form-contents.php:221
3004
  msgid "It can also backup external databases."
3005
  msgstr ""
3006
 
3007
+ #: templates/wp-admin/settings/form-contents.php:221
3008
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3009
  msgstr ""
3010
 
3012
  msgid "use UpdraftPlus Premium"
3013
  msgstr ""
3014
 
3015
+ #: class-updraftplus.php:3955
3016
  msgid "Decryption failed. The database file is encrypted."
3017
  msgstr ""
3018
 
3024
  msgid "An error occurred on the first %s command - aborting run"
3025
  msgstr ""
3026
 
3027
+ #: addons/moredatabase.php:98 backup.php:1372
3028
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3029
  msgstr ""
3030
 
3031
+ #: backup.php:1372
3032
  msgid "database connection attempt failed."
3033
  msgstr ""
3034
 
3036
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3037
  msgstr ""
3038
 
3039
+ #: addons/google-enhanced.php:84
3040
  msgid "In %s, path names are case sensitive."
3041
  msgstr ""
3042
 
3043
+ #: addons/azure.php:523 addons/google-enhanced.php:82 addons/onedrive.php:989
3044
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3045
  msgstr ""
3046
 
3047
+ #: addons/google-enhanced.php:82 addons/googlecloud.php:860
3048
  #: addons/onedrive.php:989
3049
  msgid "e.g. %s"
3050
  msgstr ""
3051
 
3052
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3053
  msgid "If the folder does not already exist, then it will be created."
3054
  msgstr ""
3055
 
3056
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3057
  msgid "Enter the path of the %s folder you wish to use here."
3058
  msgstr ""
3059
 
3060
+ #: addons/azure.php:516 methods/openstack2.php:137
3061
  msgid "Container"
3062
  msgstr ""
3063
 
3064
+ #: methods/openstack2.php:120
3065
  msgid "Leave this blank, and a default will be chosen."
3066
  msgstr ""
3067
 
3068
+ #: methods/openstack2.php:111
3069
  msgid "Tenant"
3070
  msgstr ""
3071
 
3072
+ #: methods/openstack2.php:111
3073
  msgid "Follow this link for more information"
3074
  msgstr ""
3075
 
3076
+ #: methods/openstack2.php:103 methods/openstack2.php:161
3077
  msgid "authentication URI"
3078
  msgstr ""
3079
 
3080
+ #: methods/openstack2.php:98
3081
  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."
3082
  msgstr ""
3083
 
3084
+ #: methods/addon-base-v2.php:204 methods/addon-base-v2.php:224
3085
  msgid "Failed to download %s"
3086
  msgstr ""
3087
 
3088
+ #: methods/addon-base-v2.php:218
3089
  msgid "Failed to download"
3090
  msgstr ""
3091
 
3092
+ #: methods/addon-base-v2.php:116
3093
  msgid "failed to list files"
3094
  msgstr ""
3095
 
3096
+ #: methods/addon-base-v2.php:84 methods/addon-base-v2.php:89
3097
  msgid "Failed to upload %s"
3098
  msgstr ""
3099
 
3100
+ #: methods/dropbox.php:599 methods/dropbox.php:601
3101
  msgid "Success:"
3102
  msgstr ""
3103
 
3104
+ #: addons/onedrive.php:997 methods/dropbox.php:500
3105
  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."
3106
  msgstr ""
3107
 
3108
+ #: addons/onedrive.php:995 methods/dropbox.php:497
3109
  msgid "(You appear to be already authenticated)."
3110
  msgstr ""
3111
 
3112
+ #: methods/dropbox.php:492 methods/dropbox.php:498 methods/dropbox.php:500
3113
  msgid "Dropbox"
3114
  msgstr ""
3115
 
3116
+ #: addons/onedrive.php:994 methods/dropbox.php:492
3117
  msgid "Authenticate with %s"
3118
  msgstr ""
3119
 
3120
+ #: methods/cloudfiles.php:396
3121
  msgid "Error downloading remote file: Failed to download"
3122
  msgstr ""
3123
 
3124
+ #: methods/openstack-base.php:476 methods/openstack-base.php:481
3125
  msgid "Region: %s"
3126
  msgstr ""
3127
 
3128
+ #: methods/openstack-base.php:475
3129
  msgid "%s error - we accessed the container, but failed to create a file within it"
3130
  msgstr ""
3131
 
3132
+ #: methods/openstack-base.php:393
3133
  msgid "The %s object was not found"
3134
  msgstr ""
3135
 
3136
+ #: methods/openstack-base.php:52 methods/openstack-base.php:316
3137
+ #: methods/openstack-base.php:385
3138
  msgid "Could not access %s container"
3139
  msgstr ""
3140
 
3141
+ #: methods/openstack-base.php:44 methods/openstack-base.php:112
3142
+ #: methods/openstack-base.php:119 methods/openstack-base.php:308
3143
+ #: methods/openstack-base.php:373
3144
  msgid "%s error - failed to access the container"
3145
  msgstr ""
3146
 
3147
+ #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:507
3148
+ #: methods/googledrive.php:957
3149
  msgid "Account holder's name: %s."
3150
  msgstr ""
3151
 
3152
+ #: methods/googledrive.php:946
3153
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3154
  msgstr ""
3155
 
3156
+ #: methods/googledrive.php:937
3157
  msgid "It is an ID number internal to Google Drive"
3158
  msgstr ""
3159
 
3160
+ #: methods/googledrive.php:937
3161
  msgid "<strong>This is NOT a folder name</strong>."
3162
  msgstr ""
3163
 
3164
+ #: addons/google-enhanced.php:81 addons/onedrive.php:988
3165
+ #: methods/googledrive.php:933 methods/googledrive.php:943
3166
  msgid "Folder"
3167
  msgstr ""
3168
 
3169
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3170
+ #: methods/googledrive.php:863
3171
  msgid "%s download: failed: file not found"
3172
  msgstr ""
3173
 
3174
+ #: addons/googlecloud.php:579 methods/googledrive.php:348
3175
  msgid "Name: %s."
3176
  msgstr ""
3177
 
3178
+ #: methods/googledrive.php:141
3179
  msgid "Google Drive list files: failed to access parent folder"
3180
  msgstr ""
3181
 
3182
+ #: methods/addon-not-yet-present.php:77 methods/insufficient.php:67
3183
  msgid "Your %s version: %s."
3184
  msgstr ""
3185
 
3186
+ #: methods/addon-not-yet-present.php:76 methods/insufficient.php:66
3187
  msgid "You will need to ask your web hosting company to upgrade."
3188
  msgstr ""
3189
 
3190
+ #: methods/addon-not-yet-present.php:18 methods/insufficient.php:19
3191
  msgid "This remote storage method (%s) requires PHP %s or later."
3192
  msgstr ""
3193
 
3194
+ #: admin.php:3793
3195
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3196
  msgstr ""
3197
 
3205
 
3206
  #: addons/migrator.php:375
3207
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3208
+ #: templates/wp-admin/settings/form-contents.php:241
3209
  msgid "This feature requires %s version %s or later"
3210
  msgstr ""
3211
 
3221
  msgid "Failed to unpack the archive"
3222
  msgstr ""
3223
 
3224
+ #: class-updraftplus.php:1112
3225
  msgid "Error - failed to download the file"
3226
  msgstr ""
3227
 
3241
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3242
  msgstr ""
3243
 
3244
+ #: addons/sftp.php:426
3245
  msgid "password/key"
3246
  msgstr ""
3247
 
3248
+ #: addons/azure.php:509 addons/migrator.php:2198 addons/sftp.php:377
3249
+ #: admin.php:661
3250
  msgid "Key"
3251
  msgstr ""
3252
 
3253
+ #: addons/sftp.php:372
3254
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3255
  msgstr ""
3256
 
3257
+ #: addons/sftp.php:309
3258
  msgid "The key provided was not in a valid format, or was corrupt."
3259
  msgstr ""
3260
 
3261
+ #: addons/sftp.php:48
3262
  msgid "SCP/SFTP password/key"
3263
  msgstr ""
3264
 
3265
+ #: admin.php:3276
3266
  msgid "Files backup (created by %s)"
3267
  msgstr ""
3268
 
3269
+ #: admin.php:3276
3270
  msgid "Files and database WordPress backup (created by %s)"
3271
  msgstr ""
3272
 
3273
+ #: addons/importer.php:261 admin.php:3270 class-updraftplus.php:2612
3274
  msgid "Backup created by: %s."
3275
  msgstr ""
3276
 
3277
+ #: admin.php:3239
3278
  msgid "Database (created by %s)"
3279
  msgstr ""
3280
 
3281
+ #: admin.php:3233 admin.php:3272
3282
  msgid "unknown source"
3283
  msgstr ""
3284
 
3290
  msgid "Upload backup files"
3291
  msgstr ""
3292
 
3293
+ #: admin.php:1876
3294
  msgid "This backup was created by %s, and can be imported."
3295
  msgstr ""
3296
 
3297
+ #: admin.php:914
3298
  msgid "Read this page for a guide to possible causes and how to fix it."
3299
  msgstr ""
3300
 
3301
+ #: admin.php:914
3302
  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."
3303
  msgstr ""
3304
 
3305
+ #: admin.php:626 class-updraftplus.php:2619
3306
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3307
  msgstr ""
3308
 
3309
+ #: admin.php:625
3310
  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."
3311
  msgstr ""
3312
 
3313
+ #: admin.php:625 admin.php:626 class-updraftplus.php:2619
3314
  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))."
3315
  msgstr ""
3316
 
3317
+ #: admin.php:3273 includes/class-wpadmin-commands.php:143 restorer.php:1410
3318
  msgid "Backup created by unknown source (%s) - cannot be restored."
3319
  msgstr ""
3320
 
3326
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3327
  msgstr ""
3328
 
3329
+ #: methods/dropbox.php:285
3330
  msgid "%s returned an unexpected HTTP response: %s"
3331
  msgstr ""
3332
 
3333
+ #: addons/sftp.php:886
3334
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3335
  msgstr ""
3336
 
3337
+ #: methods/cloudfiles.php:221 methods/dropbox.php:266
3338
+ #: methods/openstack-base.php:107
3339
  msgid "No settings were found"
3340
  msgstr ""
3341
 
3342
+ #: class-updraftplus.php:2740
3343
  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."
3344
  msgstr ""
3345
 
3346
+ #: admin.php:592
3347
  msgid "Rescanning remote and local storage for backup sets..."
3348
  msgstr ""
3349
 
3360
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3361
  msgstr ""
3362
 
3363
+ #: addons/morefiles.php:488
3364
  msgid "No backup of location: there was nothing found to back up"
3365
  msgstr ""
3366
 
3367
+ #: addons/moredatabase.php:234 addons/morefiles.php:284
3368
+ #: addons/morefiles.php:305
3369
  msgid "Remove"
3370
  msgstr ""
3371
 
3372
+ #: methods/s3.php:816
3373
  msgid "Other %s FAQs."
3374
  msgstr ""
3375
 
3376
+ #: templates/wp-admin/settings/form-contents.php:354
3377
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3378
  msgstr ""
3379
 
3380
+ #: addons/morefiles.php:442 admin.php:2990
3381
  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."
3382
  msgstr ""
3383
 
3385
  msgid "Custom content type manager plugin data detected: clearing option cache"
3386
  msgstr ""
3387
 
3388
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1441
3389
  msgid "Your hosting company must enable these functions before %s can work."
3390
  msgstr ""
3391
 
3392
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1440
3393
  msgid "Your web server's PHP installation has these functions disabled: %s."
3394
  msgstr ""
3395
 
3396
+ #: methods/ftp.php:288
3397
  msgid "encrypted FTP (explicit encryption)"
3398
  msgstr ""
3399
 
3400
+ #: methods/ftp.php:287
3401
  msgid "encrypted FTP (implicit encryption)"
3402
  msgstr ""
3403
 
3404
+ #: methods/ftp.php:286
3405
  msgid "regular non-encrypted FTP"
3406
  msgstr ""
3407
 
3409
  msgid "Backup created by:"
3410
  msgstr ""
3411
 
3412
+ #: udaddons/options.php:489
3413
  msgid "Available to claim on this site"
3414
  msgstr ""
3415
 
3457
  msgid "Dismiss from main dashboard (for %s weeks)"
3458
  msgstr ""
3459
 
3460
+ #: class-updraftplus.php:4245
3461
  msgid "The attempt to undo the double-compression succeeded."
3462
  msgstr ""
3463
 
3464
+ #: class-updraftplus.php:4222 class-updraftplus.php:4243
3465
  msgid "The attempt to undo the double-compression failed."
3466
  msgstr ""
3467
 
3468
+ #: class-updraftplus.php:4215
3469
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3470
  msgstr ""
3471
 
3473
  msgid "Constants"
3474
  msgstr ""
3475
 
3476
+ #: backup.php:1607
3477
  msgid "Failed to open database file for reading:"
3478
  msgstr ""
3479
 
3480
+ #: backup.php:1420
3481
  msgid "No database tables found"
3482
  msgstr ""
3483
 
3484
+ #: backup.php:1418
3485
  msgid "please wait for the rescheduled attempt"
3486
  msgstr ""
3487
 
3509
  msgid "Errors occurred:"
3510
  msgstr ""
3511
 
3512
+ #: admin.php:3468
3513
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3514
  msgstr ""
3515
 
3516
+ #: templates/wp-admin/settings/form-contents.php:398
3517
  msgid "See this FAQ also."
3518
  msgstr ""
3519
 
3533
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3534
  msgstr ""
3535
 
3536
+ #: admin.php:889 class-updraftplus.php:661
3537
  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)"
3538
  msgstr ""
3539
 
3549
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3550
  msgstr ""
3551
 
3552
+ #: addons/sftp.php:641 addons/sftp.php:644 includes/ftp.class.php:44
3553
  #: includes/ftp.class.php:47
3554
  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."
3555
  msgstr ""
3556
 
3557
+ #: admin.php:3801
3558
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3559
  msgstr ""
3560
 
3561
+ #: admin.php:2054 admin.php:2064
3562
  msgid "Restore failed..."
3563
  msgstr ""
3564
 
3565
+ #: addons/moredatabase.php:130 admin.php:1276
3566
  msgid "Messages:"
3567
  msgstr ""
3568
 
3656
  msgid "Rackspace Cloud Files, enhanced"
3657
  msgstr ""
3658
 
3659
+ #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:143
3660
  msgid "Cloud Files Container"
3661
  msgstr ""
3662
 
3663
+ #: methods/cloudfiles-new.php:138
3664
  msgid "Cloud Files API Key"
3665
  msgstr ""
3666
 
3667
+ #: methods/cloudfiles-new.php:133
3668
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3669
  msgstr ""
3670
 
3671
+ #: methods/cloudfiles-new.php:130
3672
  msgid "Cloud Files Username"
3673
  msgstr ""
3674
 
3675
+ #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:116
3676
  msgid "London (LON)"
3677
  msgstr ""
3678
 
3679
+ #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:115
3680
  msgid "Hong Kong (HKG)"
3681
  msgstr ""
3682
 
3683
+ #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:114
3684
  msgid "Northern Virginia (IAD)"
3685
  msgstr ""
3686
 
3687
+ #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:113
3688
  msgid "Chicago (ORD)"
3689
  msgstr ""
3690
 
3691
+ #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:112
3692
  msgid "Sydney (SYD)"
3693
  msgstr ""
3694
 
3695
+ #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:111
3696
  msgid "Dallas (DFW) (default)"
3697
  msgstr ""
3698
 
3699
+ #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:106
3700
  msgid "Cloud Files Storage Region"
3701
  msgstr ""
3702
 
3703
+ #: methods/cloudfiles-new.php:98
3704
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3705
  msgstr ""
3706
 
3707
+ #: methods/cloudfiles-new.php:96
3708
  msgid "US or UK-based Rackspace Account"
3709
  msgstr ""
3710
 
3711
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:96
3712
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3713
  msgstr ""
3714
 
3715
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3716
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:435
3717
+ #: methods/openstack-base.php:437 methods/openstack-base.php:457
3718
  #: methods/openstack2.php:25
3719
  msgid "Authorisation failed (check your credentials)"
3720
  msgstr ""
3721
 
3722
+ #: methods/updraftvault.php:524 udaddons/options.php:272
3723
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3724
  msgstr ""
3725
 
3726
+ #: admin.php:639 central/bootstrap.php:513
3727
  msgid "Create"
3728
  msgstr ""
3729
 
3730
+ #: admin.php:601
3731
  msgid "Trying..."
3732
  msgstr ""
3733
 
3734
+ #: admin.php:600
3735
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3736
  msgstr ""
3737
 
3738
+ #: class-updraftplus.php:1566
3739
  msgid "(when decrypted)"
3740
  msgstr ""
3741
 
3742
+ #: admin.php:611 admin.php:3743
3743
  msgid "Error data:"
3744
  msgstr ""
3745
 
3746
+ #: admin.php:3419
3747
  msgid "Backup does not exist in the backup history"
3748
  msgstr ""
3749
 
3750
+ #: admin.php:2423
3751
  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."
3752
  msgstr ""
3753
 
3799
  msgid "Email reports"
3800
  msgstr ""
3801
 
3802
+ #: class-updraftplus.php:1562 class-updraftplus.php:1567
3803
  msgid "%s checksum: %s"
3804
  msgstr ""
3805
 
3806
+ #: class-updraftplus.php:1535 class-updraftplus.php:1537
3807
  msgid "files: %s"
3808
  msgstr ""
3809
 
3823
  msgid "Debugging information"
3824
  msgstr ""
3825
 
3826
+ #: addons/reporting.php:194 admin.php:3179
3827
  msgid "Uploaded to:"
3828
  msgstr ""
3829
 
3843
  msgid "Errors / warnings:"
3844
  msgstr ""
3845
 
3846
+ #: addons/morefiles.php:122 addons/morefiles.php:123 addons/reporting.php:155
3847
  msgid "Contains:"
3848
  msgstr ""
3849
 
3863
  msgid "%d errors, %d warnings"
3864
  msgstr ""
3865
 
3866
+ #: addons/onedrive.php:717 methods/dropbox.php:583
3867
  msgid "%s authentication"
3868
  msgstr ""
3869
 
3870
+ #: addons/onedrive.php:717 class-updraftplus.php:366 methods/dropbox.php:556
3871
+ #: methods/dropbox.php:583 methods/dropbox.php:596 methods/dropbox.php:727
3872
  msgid "%s error: %s"
3873
  msgstr ""
3874
 
3875
+ #: addons/googlecloud.php:815 methods/dropbox.php:467
3876
  msgid "%s logo"
3877
  msgstr ""
3878
 
3879
+ #: methods/dropbox.php:199
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
+ #: methods/s3.php:281
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
3887
+ #: methods/email.php:76
3888
  msgid "For more options, use the \"%s\" add-on."
3889
  msgstr ""
3890
 
3891
+ #: methods/email.php:75
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr ""
3894
 
3895
+ #: admin.php:648 methods/updraftvault.php:274 methods/updraftvault.php:319
3896
+ #: udaddons/options.php:251
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3900
+ #: templates/wp-admin/settings/form-contents.php:322
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
+ #: class-updraftplus.php:4025
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3908
+ #: addons/reporting.php:438 admin.php:590
3909
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3910
  msgstr ""
3911
 
3912
+ #: addons/reporting.php:438 admin.php:589
3913
  msgid "When the Email storage method is enabled, also send the entire backup"
3914
  msgstr ""
3915
 
3916
+ #: addons/reporting.php:153 backup.php:945
3917
  msgid "Latest status:"
3918
  msgstr ""
3919
 
3920
+ #: backup.php:944
3921
  msgid "Backup contains:"
3922
  msgstr ""
3923
 
3924
+ #: backup.php:901
3925
  msgid "Backed up: %s"
3926
  msgstr ""
3927
 
3928
+ #: addons/reporting.php:236 backup.php:895
3929
  msgid "The log file has been attached to this email."
3930
  msgstr ""
3931
 
3932
+ #: backup.php:859
3933
  msgid "Unknown/unexpected error - please raise a support request"
3934
  msgstr ""
3935
 
3936
+ #: backup.php:856
3937
  msgid "Database only (files were not part of this particular schedule)"
3938
  msgstr ""
3939
 
3940
+ #: backup.php:856
3941
  msgid "Database (files backup has not completed)"
3942
  msgstr ""
3943
 
3944
+ #: backup.php:853
3945
  msgid "Files only (database was not part of this particular schedule)"
3946
  msgstr ""
3947
 
3948
+ #: backup.php:853
3949
  msgid "Files (database backup has not completed)"
3950
  msgstr ""
3951
 
3952
+ #: admin.php:253 backup.php:851
3953
  msgid "Files and database"
3954
  msgstr ""
3955
 
3956
+ #: options.php:184
3957
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3958
  msgstr ""
3959
 
3960
+ #: options.php:184
3961
  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>."
3962
  msgstr ""
3963
 
3964
+ #: options.php:184
3965
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3966
  msgstr ""
3967
 
3968
+ #: options.php:184
3969
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3970
  msgstr ""
3971
 
3972
+ #: options.php:184
3973
  msgid "UpdraftPlus warning:"
3974
  msgstr ""
3975
 
3976
+ #: udaddons/options.php:495
3977
  msgid "(or connect using the form on this page if you have already purchased it)"
3978
  msgstr ""
3979
 
3980
+ #: udaddons/options.php:481
3981
  msgid "please follow this link to update the plugin in order to activate it"
3982
  msgstr ""
3983
 
3984
+ #: udaddons/options.php:478
3985
  msgid "please follow this link to update the plugin in order to get it"
3986
  msgstr ""
3987
 
3988
+ #: udaddons/options.php:468 udaddons/options.php:470
3989
  msgid "latest"
3990
  msgstr ""
3991
 
3992
+ #: udaddons/options.php:466
3993
  msgid "Your version: %s"
3994
  msgstr ""
3995
 
3996
+ #: udaddons/options.php:464
3997
  msgid "You've got it"
3998
  msgstr ""
3999
 
4000
+ #: udaddons/options.php:430
4001
  msgid "UpdraftPlus Support"
4002
  msgstr ""
4003
 
4004
+ #: udaddons/options.php:388
4005
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4006
  msgstr ""
4007
 
4008
+ #: udaddons/options.php:377 udaddons/updraftplus-addons.php:256
4009
  msgid "UpdraftPlus Addons"
4010
  msgstr ""
4011
 
4012
+ #: udaddons/options.php:101
4013
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4014
  msgstr ""
4015
 
4016
+ #: methods/updraftvault.php:597 methods/updraftvault.php:615
4017
  #: udaddons/updraftplus-addons.php:795
4018
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4019
  msgstr ""
4020
 
4021
+ #: methods/updraftvault.php:611 udaddons/updraftplus-addons.php:792
4022
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4023
  msgstr ""
4024
 
4025
+ #: methods/updraftvault.php:570 udaddons/updraftplus-addons.php:752
4026
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4027
  msgstr ""
4028
 
4034
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4035
  msgstr ""
4036
 
4037
+ #: methods/email.php:76 templates/wp-admin/settings/form-contents.php:303
4038
  #: templates/wp-admin/settings/tab-addons.php:200
4039
  msgid "Reporting"
4040
  msgstr ""
4041
 
4042
+ #: admin.php:4154
4043
  msgid "Options (raw)"
4044
  msgstr ""
4045
 
4046
+ #: addons/reporting.php:436 admin.php:588
4047
  msgid "Send a report only when there are warnings/errors"
4048
  msgstr ""
4049
 
4055
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4056
  msgstr ""
4057
 
4058
+ #: templates/wp-admin/settings/form-contents.php:207
4059
  msgid "See also the \"More Files\" add-on from our shop."
4060
  msgstr ""
4061
 
4062
+ #: backup.php:3012 class-updraftplus.php:674
4063
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4064
  msgstr ""
4065
 
4066
+ #: class-updraftplus.php:658
4067
  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)"
4068
  msgstr ""
4069
 
4070
+ #: udaddons/options.php:554
4071
  msgid "Manage Addons"
4072
  msgstr ""
4073
 
4074
+ #: udaddons/options.php:496
4075
  msgid "Buy It"
4076
  msgstr ""
4077
 
4078
+ #: udaddons/options.php:495
4079
  msgid "Get it from the UpdraftPlus.Com Store"
4080
  msgstr ""
4081
 
4082
+ #: udaddons/options.php:489 udaddons/options.php:491
4083
  msgid "activate it on this site"
4084
  msgstr ""
4085
 
4086
+ #: udaddons/options.php:491
4087
  msgid "You have an inactive purchase"
4088
  msgstr ""
4089
 
4090
+ #: udaddons/options.php:481
4091
  msgid "Assigned to this site"
4092
  msgstr ""
4093
 
4094
+ #: udaddons/options.php:478
4095
  msgid "Available for this site (via your all-addons purchase)"
4096
  msgstr ""
4097
 
4098
+ #: udaddons/options.php:472
4099
  msgid "(apparently a pre-release or withdrawn release)"
4100
  msgstr ""
4101
 
4102
+ #: udaddons/options.php:432
4103
  msgid "Go here"
4104
  msgstr ""
4105
 
4106
+ #: udaddons/options.php:432
4107
  msgid "Need to get support?"
4108
  msgstr ""
4109
 
4110
+ #: udaddons/options.php:414
4111
  msgid "An error occurred when trying to retrieve your add-ons."
4112
  msgstr ""
4113
 
4114
+ #: udaddons/options.php:347
4115
  msgid "An unknown response was received. Response was:"
4116
  msgstr ""
4117
 
4118
+ #: udaddons/options.php:346
4119
  msgid "Claim not granted - your account login details were wrong"
4120
  msgstr ""
4121
 
4122
+ #: udaddons/options.php:344
4123
  msgid "Please wait whilst we make the claim..."
4124
  msgstr ""
4125
 
4126
+ #: udaddons/options.php:297
4127
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4128
  msgstr ""
4129
 
4130
+ #: udaddons/options.php:288
4131
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4132
  msgstr ""
4133
 
4134
+ #: udaddons/options.php:279
4135
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4136
  msgstr ""
4137
 
4138
+ #: udaddons/options.php:278
4139
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4140
  msgstr ""
4141
 
4142
+ #: udaddons/options.php:249
4143
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4144
  msgstr ""
4145
 
4146
+ #: udaddons/options.php:190
4147
  msgid "Forgotten your details?"
4148
  msgstr ""
4149
 
4150
+ #: udaddons/options.php:179
4151
  msgid "Not yet got an account (it's free)? Go get one!"
4152
  msgstr ""
4153
 
4154
+ #: udaddons/options.php:148
4155
  msgid "Connect with your UpdraftPlus.Com account"
4156
  msgstr ""
4157
 
4158
+ #: udaddons/options.php:127
4159
  msgid "Your web server's version of PHP is too old ("
4160
  msgstr ""
4161
 
4162
+ #: udaddons/options.php:121
4163
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4164
  msgstr ""
4165
 
4166
+ #: udaddons/options.php:120
4167
  msgid "Go here to begin installing it."
4168
  msgstr ""
4169
 
4170
+ #: udaddons/options.php:120
4171
  msgid "UpdraftPlus is not yet installed."
4172
  msgstr ""
4173
 
4174
+ #: udaddons/options.php:117
4175
  msgid "Go here to activate it."
4176
  msgstr ""
4177
 
4178
+ #: udaddons/options.php:116
4179
  msgid "UpdraftPlus is not yet activated."
4180
  msgstr ""
4181
 
4182
+ #: udaddons/options.php:107 udaddons/options.php:109
4183
  msgid "Go here to connect."
4184
  msgstr ""
4185
 
4186
+ #: udaddons/options.php:107
4187
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4188
  msgstr ""
4189
 
4190
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4191
  msgid "Without it, encryption will be a lot slower."
4192
  msgstr ""
4193
 
4194
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4195
  msgid "Your web-server does not have the %s module installed."
4196
  msgstr ""
4197
 
4198
+ #: addons/googlecloud.php:898 methods/googledrive.php:953
4199
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4200
  msgstr ""
4201
 
4203
  msgid "Drop backup files here"
4204
  msgstr ""
4205
 
4206
+ #: admin.php:599
4207
  msgid "The web server returned an error code (try again, or check your web server logs)"
4208
  msgstr ""
4209
 
4210
+ #: admin.php:597
4211
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4212
  msgstr ""
4213
 
4214
+ #: admin.php:594
4215
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4216
  msgstr ""
4217
 
4219
  msgid "Site home:"
4220
  msgstr ""
4221
 
4222
+ #: addons/morestorage.php:79
4223
  msgid "Remote Storage Options"
4224
  msgstr ""
4225
 
4231
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4232
  msgstr ""
4233
 
4234
+ #: addons/azure.php:350 methods/stream-base.php:121 methods/stream-base.php:126
4235
  msgid "Upload failed"
4236
  msgstr ""
4237
 
4239
  msgid "You can send a backup to more than one destination with an add-on."
4240
  msgstr ""
4241
 
4242
+ #: admin.php:2641
4243
  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."
4244
  msgstr ""
4245
 
4246
+ #: admin.php:2539
4247
  msgid "(%s%%, file %s of %s)"
4248
  msgstr ""
4249
 
4252
  msgid "Read more about how this works..."
4253
  msgstr ""
4254
 
4255
+ #: addons/sftp.php:486
4256
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4257
  msgstr ""
4258
 
4259
+ #: addons/sftp.php:484
4260
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4261
  msgstr ""
4262
 
4263
+ #: addons/sftp.php:403
4264
  msgid "Use SCP instead of SFTP"
4265
  msgstr ""
4266
 
4267
+ #: addons/sftp.php:47
4268
  msgid "SCP/SFTP user setting"
4269
  msgstr ""
4270
 
4271
+ #: addons/sftp.php:46
4272
  msgid "SCP/SFTP host setting"
4273
  msgstr ""
4274
 
4275
+ #: methods/email.php:60
4276
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4277
  msgstr ""
4278
 
4279
+ #: methods/email.php:47
4280
  msgid "Backup is of: %s."
4281
  msgstr ""
4282
 
4283
+ #: admin.php:687
4284
  msgid "%s settings test result:"
4285
  msgstr ""
4286
 
4287
+ #: admin.php:3337 admin.php:3339
4288
  msgid "(Not finished)"
4289
  msgstr ""
4290
 
4291
+ #: admin.php:3339
4292
  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."
4293
  msgstr ""
4294
 
4295
+ #: templates/wp-admin/settings/form-contents.php:381
4296
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4297
  msgstr ""
4298
 
4299
+ #: templates/wp-admin/settings/form-contents.php:381
4300
  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)."
4301
  msgstr ""
4302
 
4303
+ #: admin.php:2636
4304
  msgid "Job ID: %s"
4305
  msgstr ""
4306
 
4307
+ #: admin.php:2621
4308
  msgid "last activity: %ss ago"
4309
  msgstr ""
4310
 
4311
+ #: admin.php:2620
4312
  msgid "next resumption: %d (after %ss)"
4313
  msgstr ""
4314
 
4315
+ #: admin.php:2603 central/bootstrap.php:405 central/bootstrap.php:412
4316
+ #: methods/updraftvault.php:354 methods/updraftvault.php:434
4317
  msgid "Unknown"
4318
  msgstr ""
4319
 
4320
+ #: admin.php:2553
4321
  msgid "Backup finished"
4322
  msgstr ""
4323
 
4324
+ #: admin.php:2548
4325
  msgid "Waiting until scheduled time to retry because of errors"
4326
  msgstr ""
4327
 
4328
+ #: admin.php:2544
4329
  msgid "Pruning old backup sets"
4330
  msgstr ""
4331
 
4332
+ #: admin.php:2532
4333
  msgid "Uploading files to remote storage"
4334
  msgstr ""
4335
 
4336
+ #: admin.php:2601
4337
  msgid "Encrypted database"
4338
  msgstr ""
4339
 
4340
+ #: admin.php:2593
4341
  msgid "Encrypting database"
4342
  msgstr ""
4343
 
4344
+ #: admin.php:2567
4345
  msgid "Created database backup"
4346
  msgstr ""
4347
 
4348
+ #: admin.php:2580
4349
  msgid "table: %s"
4350
  msgstr ""
4351
 
4352
+ #: admin.php:2578
4353
  msgid "Creating database backup"
4354
  msgstr ""
4355
 
4356
+ #: admin.php:2526
4357
  msgid "Created file backup zips"
4358
  msgstr ""
4359
 
4360
+ #: admin.php:2513
4361
  msgid "Creating file backup zips"
4362
  msgstr ""
4363
 
4364
+ #: admin.php:2508
4365
  msgid "Backup begun"
4366
  msgstr ""
4367
 
4368
+ #: admin.php:2351
4369
  msgid "Backups in progress:"
4370
  msgstr ""
4371
 
4372
+ #: admin.php:893
4373
  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."
4374
  msgstr ""
4375
 
4385
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4386
  msgstr ""
4387
 
4388
+ #: class-updraftplus.php:2837
4389
  msgid "The backup has not finished; a resumption is scheduled"
4390
  msgstr ""
4391
 
4392
+ #: class-updraftplus.php:1807
4393
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4394
  msgstr ""
4395
 
4396
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4397
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4398
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4399
+ #: methods/googledrive.php:229
4400
  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)."
4401
  msgstr ""
4402
 
4403
+ #: admin.php:2174
4404
  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)."
4405
  msgstr ""
4406
 
4407
+ #: addons/autobackup.php:1006 admin.php:641
4408
  msgid "Proceed with update"
4409
  msgstr ""
4410
 
4457
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4458
  msgstr ""
4459
 
4460
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4461
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4462
  msgstr ""
4463
 
4464
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4465
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4466
  msgstr ""
4467
 
4468
+ #: addons/morefiles.php:183
4469
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4470
  msgstr ""
4471
 
4472
+ #: addons/morefiles.php:173
4473
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4474
  msgstr ""
4475
 
4482
  msgid "Support"
4483
  msgstr ""
4484
 
4485
+ #: class-updraftplus.php:4178
4486
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4487
  msgstr ""
4488
 
4489
+ #: class-updraftplus.php:4170
4490
  msgid "This database backup is missing core WordPress tables: %s"
4491
  msgstr ""
4492
 
4493
+ #: class-updraftplus.php:4058
4494
  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."
4495
  msgstr ""
4496
 
4497
+ #: class-updraftplus.php:3974
4498
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4499
  msgstr ""
4500
 
4501
+ #: addons/autobackup.php:556 admin.php:857
4502
  msgid "Update Theme"
4503
  msgstr ""
4504
 
4505
+ #: addons/autobackup.php:505 admin.php:853
4506
  msgid "Update Plugin"
4507
  msgstr ""
4508
 
4509
+ #: addons/autobackup.php:985 admin.php:726 includes/updraftplus-notices.php:171
4510
  msgid "Be safe with an automatic backup"
4511
  msgstr ""
4512
 
4514
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4515
  msgstr ""
4516
 
4517
+ #: admin.php:2126
4518
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4519
  msgstr ""
4520
 
4521
+ #: admin.php:635
4522
  msgid "The file was uploaded."
4523
  msgstr ""
4524
 
4525
+ #: admin.php:634
4526
  msgid "Unknown server response status:"
4527
  msgstr ""
4528
 
4529
+ #: admin.php:633
4530
  msgid "Unknown server response:"
4531
  msgstr ""
4532
 
4533
+ #: admin.php:632
4534
  msgid "This decryption key will be attempted:"
4535
  msgstr ""
4536
 
4537
+ #: admin.php:631
4538
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4539
  msgstr ""
4540
 
4541
+ #: admin.php:630
4542
  msgid "Upload error"
4543
  msgstr ""
4544
 
4545
+ #: admin.php:629
4546
  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)."
4547
  msgstr ""
4548
 
4549
+ #: admin.php:628
4550
  msgid "Upload error:"
4551
  msgstr ""
4552
 
4553
+ #: admin.php:627
4554
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4555
  msgstr ""
4556
 
4557
+ #: admin.php:618
4558
  msgid "Download to your computer"
4559
  msgstr ""
4560
 
4561
+ #: admin.php:617
4562
  msgid "Delete from your web server"
4563
  msgstr ""
4564
 
4565
+ #: methods/s3.php:776
4566
  msgid "Examples of S3-compatible storage providers:"
4567
  msgstr ""
4568
 
4569
+ #: admin.php:3693
4570
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4571
  msgstr ""
4572
 
4573
+ #: admin.php:3310
4574
  msgid "You appear to be missing one or more archives from this multi-archive set."
4575
  msgstr ""
4576
 
4577
+ #: admin.php:3307
4578
  msgid "(%d archive(s) in set)."
4579
  msgstr ""
4580
 
4581
+ #: templates/wp-admin/settings/form-contents.php:358
4582
  msgid "Split archives every:"
4583
  msgstr ""
4584
 
4586
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4587
  msgstr ""
4588
 
4589
+ #: admin.php:608
4590
  msgid "Warnings:"
4591
  msgstr ""
4592
 
4593
+ #: admin.php:607
4594
  msgid "Error: the server sent an empty response."
4595
  msgstr ""
4596
 
4597
+ #: admin.php:1887
4598
  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?"
4599
  msgstr ""
4600
 
4630
  msgid "No such backup set exists"
4631
  msgstr ""
4632
 
4633
+ #: admin.php:1164
4634
  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"
4635
  msgstr ""
4636
 
4646
  msgid "Moving unpacked backup into place..."
4647
  msgstr ""
4648
 
4649
+ #: backup.php:2716 backup.php:2972
4650
  msgid "Failed to open the zip file (%s) - %s"
4651
  msgstr ""
4652
 
4653
+ #: addons/morefiles.php:161
4654
  msgid "WordPress root directory server path: %s"
4655
  msgstr ""
4656
 
4657
+ #: methods/s3.php:821
4658
  msgid "%s end-point"
4659
  msgstr ""
4660
 
4661
+ #: methods/s3.php:783
4662
  msgid "... and many more!"
4663
  msgstr ""
4664
 
4666
  msgid "S3 (Compatible)"
4667
  msgstr ""
4668
 
4669
+ #: admin.php:3614
4670
  msgid "File is not locally present - needs retrieving from remote storage"
4671
  msgstr ""
4672
 
4673
+ #: admin.php:3601
4674
  msgid "Looking for %s archive: file name: %s"
4675
  msgstr ""
4676
 
4677
+ #: admin.php:3562
4678
  msgid "Final checks"
4679
  msgstr ""
4680
 
4681
+ #: templates/wp-admin/settings/form-contents.php:364
4682
  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)."
4683
  msgstr ""
4684
 
4685
+ #: templates/wp-admin/settings/form-contents.php:248
4686
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4687
  msgstr ""
4688
 
4689
+ #: admin.php:2979
4690
  msgid "Your wp-content directory server path: %s"
4691
  msgstr ""
4692
 
4693
+ #: admin.php:624
4694
  msgid "Raw backup history"
4695
  msgstr ""
4696
 
4698
  msgid "Show raw backup and file list"
4699
  msgstr ""
4700
 
4701
+ #: admin.php:606
4702
  msgid "Processing files - please wait..."
4703
  msgstr ""
4704
 
4705
+ #: admin.php:3745 templates/wp-admin/settings/downloading-and-restoring.php:29
4706
  msgid "Please consult this FAQ for help on what to do about it."
4707
  msgstr ""
4708
 
4710
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4711
  msgstr ""
4712
 
4713
+ #: class-updraftplus.php:3982
4714
  msgid "Failed to open database file."
4715
  msgstr ""
4716
 
4717
+ #: admin.php:4124
4718
  msgid "Known backups (raw)"
4719
  msgstr ""
4720
 
4738
  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."
4739
  msgstr ""
4740
 
4741
+ #: admin.php:3634
4742
  msgid "file is size:"
4743
  msgstr ""
4744
 
4745
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4746
+ #: addons/migrator.php:369 admin.php:893 admin.php:2131 backup.php:3019
4747
  #: updraftplus.php:147
4748
  msgid "Go here for more information."
4749
  msgstr ""
4750
 
4751
+ #: admin.php:605
4752
  msgid "Some files are still downloading or being processed - please wait."
4753
  msgstr ""
4754
 
4755
+ #: class-updraftplus.php:4030 class-updraftplus.php:4048
4756
  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."
4757
  msgstr ""
4758
 
4764
  msgid "Enter in format HH:MM (e.g. 14:22)."
4765
  msgstr ""
4766
 
4767
+ #: methods/ftp.php:116
4768
  msgid "%s upload failed"
4769
  msgstr ""
4770
 
4771
+ #: methods/ftp.php:89 methods/ftp.php:140 methods/ftp.php:244
4772
  msgid "%s login failure"
4773
  msgstr ""
4774
 
4775
+ #: methods/dropbox.php:410
4776
  msgid "You do not appear to be authenticated with %s"
4777
  msgstr ""
4778
 
4779
+ #: methods/dropbox.php:377
4780
  msgid "Failed to access %s when deleting (see log file for more)"
4781
  msgstr ""
4782
 
4783
+ #: methods/dropbox.php:369
4784
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4785
  msgstr ""
4786
 
4787
+ #: methods/dropbox.php:104
4788
  msgid "Dropbox error: %s (see log file for more)"
4789
  msgstr ""
4790
 
4791
+ #: methods/cloudfiles.php:409
4792
  msgid "Error - failed to download the file from %s"
4793
  msgstr ""
4794
 
4795
+ #: methods/cloudfiles.php:405
4796
  msgid "Error - no such file exists at %s"
4797
  msgstr ""
4798
 
4799
+ #: addons/azure.php:216 methods/addon-base-v2.php:218
4800
+ #: methods/cloudfiles.php:379 methods/cloudfiles.php:396
4801
+ #: methods/googledrive.php:823 methods/openstack-base.php:407
4802
+ #: methods/stream-base.php:262 methods/stream-base.php:269
4803
+ #: methods/stream-base.php:282
4804
  msgid "%s Error"
4805
  msgstr ""
4806
 
4807
+ #: methods/cloudfiles.php:206 methods/openstack-base.php:82
4808
  msgid "%s error - failed to upload file"
4809
  msgstr ""
4810
 
4811
+ #: class-updraftplus.php:1004 methods/cloudfiles.php:198
4812
  msgid "%s error - failed to re-assemble chunks"
4813
  msgstr ""
4814
 
4815
+ #: methods/cloudfiles.php:82 methods/cloudfiles.php:86
4816
+ #: methods/cloudfiles.php:227 methods/cloudfiles.php:272
4817
+ #: methods/cloudfiles.php:323 methods/cloudfiles.php:327
4818
+ #: methods/openstack-base.php:40 methods/openstack-base.php:304
4819
+ #: methods/openstack-base.php:369 methods/openstack-base.php:441
4820
+ #: methods/openstack-base.php:444 methods/openstack-base.php:461
4821
+ #: methods/openstack-base.php:466
4822
  msgid "%s authentication failed"
4823
  msgstr ""
4824
 
4825
+ #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1832
4826
+ #: admin.php:1879 admin.php:1887 class-updraftplus.php:789
4827
+ #: class-updraftplus.php:795 class-updraftplus.php:3953
4828
+ #: class-updraftplus.php:3955 class-updraftplus.php:4088
4829
+ #: class-updraftplus.php:4123 methods/googledrive.php:289 restorer.php:944
4830
  msgid "Error: %s"
4831
  msgstr ""
4832
 
4833
+ #: admin.php:2916
4834
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4835
  msgstr ""
4836
 
4837
+ #: admin.php:2914
4838
  msgid "Backup directory specified does <b>not</b> exist."
4839
  msgstr ""
4840
 
4841
+ #: admin.php:2648 admin.php:2870 class-updraftplus.php:4030
4842
+ #: class-updraftplus.php:4048
4843
  msgid "Warning: %s"
4844
  msgstr ""
4845
 
4847
  msgid "Last backup job run:"
4848
  msgstr ""
4849
 
4850
+ #: backup.php:2738
4851
  msgid "A very large file was encountered: %s (size: %s Mb)"
4852
  msgstr ""
4853
 
4854
+ #: backup.php:2112 backup.php:2144
4855
  msgid "%s: unreadable file - could not be backed up"
4856
  msgstr ""
4857
 
4858
+ #: backup.php:1507
4859
  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"
4860
  msgstr ""
4861
 
4862
+ #: backup.php:1626
4863
  msgid "An error occurred whilst closing the final database file"
4864
  msgstr ""
4865
 
4866
+ #: backup.php:886
4867
  msgid "Warnings encountered:"
4868
  msgstr ""
4869
 
4870
+ #: class-updraftplus.php:2825
4871
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4872
  msgstr ""
4873
 
4874
+ #: class-updraftplus.php:687
4875
  msgid "Your free disk space is very low - only %s Mb remain"
4876
  msgstr ""
4877
 
4903
  msgid "Processed plugin:"
4904
  msgstr ""
4905
 
4906
+ #: addons/sftp.php:75
4907
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4908
  msgstr ""
4909
 
4910
+ #: addons/sftp.php:35
4911
  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."
4912
  msgstr ""
4913
 
4914
+ #: methods/s3.php:797
4915
  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."
4916
  msgstr ""
4917
 
4918
+ #: methods/s3.php:1035
4919
  msgid "Please check your access credentials."
4920
  msgstr ""
4921
 
4922
+ #: addons/s3-enhanced.php:172 methods/s3.php:1013
4923
  msgid "The error reported by %s was:"
4924
  msgstr ""
4925
 
4935
  msgid "Cannot create new tables, so skipping this command (%s)"
4936
  msgstr ""
4937
 
4938
+ #: class-updraftplus.php:4099 restorer.php:1648
4939
  msgid "Site information:"
4940
  msgstr ""
4941
 
4943
  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."
4944
  msgstr ""
4945
 
4946
+ #: addons/migrator.php:325 admin.php:2126 class-updraftplus.php:4092
4947
  #: restorer.php:1970
4948
  msgid "Warning:"
4949
  msgstr ""
4950
 
4951
+ #: class-updraftplus.php:4084 restorer.php:162
4952
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4953
  msgstr ""
4954
 
4955
+ #: admin.php:3589
4956
  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."
4957
  msgstr ""
4958
 
4959
+ #: admin.php:3035 methods/updraftvault.php:258
4960
  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."
4961
  msgstr ""
4962
 
4963
+ #: admin.php:642
4964
  msgid "Close"
4965
  msgstr ""
4966
 
4967
+ #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:598
4968
+ #: methods/remotesend.php:64 methods/remotesend.php:72
4969
+ #: methods/remotesend.php:213 methods/remotesend.php:230
4970
  msgid "Unexpected response:"
4971
  msgstr ""
4972
 
4973
+ #: addons/reporting.php:434 admin.php:593
4974
  msgid "To send to more than one address, separate each address with a comma."
4975
  msgstr ""
4976
 
4977
+ #: admin.php:622
4978
  msgid "PHP information"
4979
  msgstr ""
4980
 
5010
  msgid "Also delete from remote storage"
5011
  msgstr ""
5012
 
5013
+ #: admin.php:2378
5014
  msgid "Latest UpdraftPlus.com news:"
5015
  msgstr ""
5016
 
5027
  msgid "News"
5028
  msgstr ""
5029
 
5030
+ #: admin.php:1318 includes/class-wpadmin-commands.php:444
5031
  msgid "Backup set not found"
5032
  msgstr ""
5033
 
5045
  msgid "Blog link"
5046
  msgstr ""
5047
 
5048
+ #: admin.php:686
5049
  msgid "Testing %s Settings..."
5050
  msgstr ""
5051
 
5053
  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."
5054
  msgstr ""
5055
 
5056
+ #: admin.php:909
5057
  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."
5058
  msgstr ""
5059
 
5060
+ #: admin.php:909
5061
  msgid "Notice"
5062
  msgstr ""
5063
 
5064
+ #: backup.php:868
5065
  msgid "Errors encountered:"
5066
  msgstr ""
5067
 
5068
+ #: admin.php:591
5069
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5070
  msgstr ""
5071
 
5072
+ #: admin.php:604
5073
  msgid "Begun looking for this entity"
5074
  msgstr ""
5075
 
5076
+ #: addons/dropbox-folders.php:33
5077
  msgid "Store at"
5078
  msgstr ""
5079
 
5089
  msgid "Time taken (seconds):"
5090
  msgstr ""
5091
 
5092
+ #: addons/migrator.php:1113 admin.php:609
5093
  msgid "Errors:"
5094
  msgstr ""
5095
 
5158
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5159
  msgstr ""
5160
 
5161
+ #: addons/multisite.php:624
5162
  msgid "Blog uploads"
5163
  msgstr ""
5164
 
5165
+ #: addons/migrator.php:369 addons/multisite.php:617
5166
  msgid "Must-use plugins"
5167
  msgstr ""
5168
 
5169
+ #: addons/multisite.php:191
5170
  msgid "You do not have permission to access this page."
5171
  msgstr ""
5172
 
5173
+ #: addons/multisite.php:177 udaddons/options.php:232
5174
  msgid "You do not have sufficient permissions to access this page."
5175
  msgstr ""
5176
 
5177
+ #: addons/multisite.php:171
5178
  msgid "Multisite Install"
5179
  msgstr ""
5180
 
5182
  msgid "starting from next time it is"
5183
  msgstr ""
5184
 
5185
+ #: addons/sftp.php:431
5186
  msgid "Failure: Port must be an integer."
5187
  msgstr ""
5188
 
5189
+ #: methods/ftp.php:366 methods/openstack2.php:151
5190
  msgid "password"
5191
  msgstr ""
5192
 
5193
+ #: addons/sftp.php:422 methods/openstack2.php:146
5194
  msgid "username"
5195
  msgstr ""
5196
 
5197
+ #: addons/sftp.php:418
5198
  msgid "host name"
5199
  msgstr ""
5200
 
5201
+ #: addons/sftp.php:396
5202
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5203
  msgstr ""
5204
 
5205
+ #: addons/sftp.php:394
5206
  msgid "Directory path"
5207
  msgstr ""
5208
 
5209
+ #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:369
5210
+ #: addons/webdav.php:69 methods/openstack2.php:131 methods/updraftvault.php:318
5211
+ #: udaddons/options.php:152
5212
  msgid "Password"
5213
  msgstr ""
5214
 
5215
+ #: addons/sftp.php:355 addons/webdav.php:83
5216
  msgid "Port"
5217
  msgstr ""
5218
 
5219
+ #: addons/moredatabase.php:237 addons/sftp.php:348 addons/webdav.php:75
5220
  msgid "Host"
5221
  msgstr ""
5222
 
5223
+ #: addons/sftp.php:281
5224
  msgid "%s Error: Failed to download"
5225
  msgstr ""
5226
 
5227
+ #: addons/sftp.php:461
5228
  msgid "Check your file permissions: Could not successfully create and enter:"
5229
  msgstr ""
5230
 
5231
+ #: addons/sftp.php:46 addons/sftp.php:47 addons/sftp.php:48
5232
  msgid "No %s found"
5233
  msgstr ""
5234
 
5235
+ #: addons/sftp.php:35
5236
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5237
  msgstr ""
5238
 
5239
+ #: addons/sftp.php:35
5240
  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."
5241
  msgstr ""
5242
 
5243
+ #: addons/morefiles.php:622
5244
  msgid "No backup of %s directories: there was nothing found to back up"
5245
  msgstr ""
5246
 
5247
+ #: addons/morefiles.php:269
5248
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5249
  msgstr ""
5250
 
5251
+ #: addons/morefiles.php:267
5252
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5253
  msgstr ""
5254
 
5255
+ #: addons/morefiles.php:246
5256
  msgid "More Files"
5257
  msgstr ""
5258
 
5259
+ #: addons/morefiles.php:160
5260
  msgid "WordPress core (including any additions to your WordPress root directory)"
5261
  msgstr ""
5262
 
5263
+ #: addons/morefiles.php:153
5264
  msgid "The above files comprise everything in a WordPress installation."
5265
  msgstr ""
5266
 
5267
+ #: addons/morefiles.php:134
5268
  msgid "Over-write wp-config.php"
5269
  msgstr ""
5270
 
5271
+ #: addons/morefiles.php:130 addons/morefiles.php:622
5272
+ #: includes/class-wpadmin-commands.php:461
5273
  msgid "WordPress Core"
5274
  msgstr ""
5275
 
5276
+ #: methods/addon-base-v2.php:303 methods/stream-base.php:312
5277
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5278
  msgstr ""
5279
 
5280
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5281
+ #: addons/googlecloud.php:666 addons/sftp.php:448 admin.php:2702 admin.php:2737
5282
+ #: admin.php:2746 methods/addon-base-v2.php:293 methods/stream-base.php:298
5283
  msgid "Failed"
5284
  msgstr ""
5285
 
5287
  msgid "WebDAV URL"
5288
  msgstr ""
5289
 
5290
+ #: methods/stream-base.php:282
5291
  msgid "Local write failed: Failed to download"
5292
  msgstr ""
5293
 
5294
+ #: methods/stream-base.php:269
5295
  msgid "Error opening remote file: Failed to download"
5296
  msgstr ""
5297
 
5298
+ #: methods/stream-base.php:103 methods/stream-base.php:107
5299
  msgid "Chunk %s: A %s error occurred"
5300
  msgstr ""
5301
 
5302
+ #: addons/googlecloud.php:278 addons/sftp.php:44 methods/addon-base-v2.php:65
5303
+ #: methods/addon-base-v2.php:106 methods/addon-base-v2.php:138
5304
+ #: methods/addon-base-v2.php:194 methods/addon-base-v2.php:273
5305
+ #: methods/ftp.php:31 methods/googledrive.php:130 methods/stream-base.php:27
5306
+ #: methods/stream-base.php:141 methods/stream-base.php:147
5307
+ #: methods/stream-base.php:181 methods/stream-base.php:246
5308
  msgid "No %s settings were found"
5309
  msgstr ""
5310
 
5311
+ #: methods/ftp.php:388
5312
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5313
  msgstr ""
5314
 
5315
+ #: methods/ftp.php:385
5316
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5317
  msgstr ""
5318
 
5319
+ #: methods/ftp.php:376
5320
  msgid "Failure: we did not successfully log in with those credentials."
5321
  msgstr ""
5322
 
5323
+ #: methods/ftp.php:358
5324
  msgid "Failure: No server details were given."
5325
  msgstr ""
5326
 
5327
+ #: methods/ftp.php:330
5328
  msgid "Needs to already exist"
5329
  msgstr ""
5330
 
5331
+ #: methods/ftp.php:310
5332
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5333
  msgstr ""
5334
 
5335
+ #: methods/ftp.php:310
5336
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5337
  msgstr ""
5338
 
5339
+ #: addons/onedrive.php:755 methods/dropbox.php:614
5340
  msgid "Your %s account name: %s"
5341
  msgstr ""
5342
 
5343
+ #: methods/dropbox.php:604 methods/dropbox.php:631
5344
  msgid "though part of the returned information was not as expected - your mileage may vary"
5345
  msgstr ""
5346
 
5347
+ #: methods/dropbox.php:599 methods/dropbox.php:601
5348
  msgid "you have authenticated your %s account"
5349
  msgstr ""
5350
 
5351
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5352
  msgid "there's an add-on for that."
5353
  msgstr ""
5354
 
5355
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5356
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5357
  msgstr ""
5358
 
5359
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5360
  msgid "Backups are saved in"
5361
  msgstr ""
5362
 
5363
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5364
  msgid "Need to use sub-folders?"
5365
  msgstr ""
5366
 
5367
+ #: methods/dropbox.php:197 methods/dropbox.php:218 methods/dropbox.php:234
5368
  msgid "error: failed to upload file to %s (see log file for more)"
5369
  msgstr ""
5370
 
5371
+ #: methods/dropbox.php:82 methods/dropbox.php:99
5372
  msgid "You do not appear to be authenticated with Dropbox"
5373
  msgstr ""
5374
 
5375
+ #: methods/s3.php:1030
5376
  msgid "The communication with %s was not encrypted."
5377
  msgstr ""
5378
 
5379
+ #: methods/s3.php:1028
5380
  msgid "The communication with %s was encrypted."
5381
  msgstr ""
5382
 
5383
+ #: addons/googlecloud.php:689 methods/s3.php:1025
5384
  msgid "We accessed the bucket, and were able to create files within it."
5385
  msgstr ""
5386
 
5387
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5388
+ #: methods/s3.php:1035
5389
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5390
  msgstr ""
5391
 
5392
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5393
+ #: methods/s3.php:1035
5394
  msgid "Failure"
5395
  msgstr ""
5396
 
5397
+ #: methods/s3.php:1011
5398
  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)."
5399
  msgstr ""
5400
 
5401
+ #: addons/s3-enhanced.php:145 methods/openstack2.php:117 methods/s3.php:1005
5402
  msgid "Region"
5403
  msgstr ""
5404
 
5405
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:987
5406
  msgid "Failure: No bucket details were given."
5407
  msgstr ""
5408
 
5409
+ #: methods/s3.php:965
5410
  msgid "API secret"
5411
  msgstr ""
5412
 
5413
+ #: methods/s3.php:858
5414
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5415
  msgstr ""
5416
 
5417
+ #: methods/s3.php:857
5418
  msgid "%s location"
5419
  msgstr ""
5420
 
5421
+ #: methods/s3.php:853
5422
  msgid "%s secret key"
5423
  msgstr ""
5424
 
5425
+ #: methods/s3.php:849
5426
  msgid "%s access key"
5427
  msgstr ""
5428
 
5429
+ #: methods/s3.php:814
5430
  msgid "If you see errors about SSL certificates, then please go here for help."
5431
  msgstr ""
5432
 
5433
+ #: methods/s3.php:812
5434
  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."
5435
  msgstr ""
5436
 
5437
+ #: methods/s3.php:446 methods/s3.php:620 methods/s3.php:722
5438
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5439
  msgstr ""
5440
 
5441
+ #: methods/s3.php:705 methods/s3.php:751
5442
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5443
  msgstr ""
5444
 
5445
+ #: methods/s3.php:424
5446
  msgid "%s re-assembly error (%s): (see log file for more)"
5447
  msgstr ""
5448
 
5449
+ #: methods/s3.php:420
5450
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5451
  msgstr ""
5452
 
5453
+ #: methods/s3.php:404
5454
  msgid "%s chunk %s: upload failed"
5455
  msgstr ""
5456
 
5457
+ #: methods/s3.php:394
5458
  msgid "%s error: file %s was shortened unexpectedly"
5459
  msgstr ""
5460
 
5461
+ #: methods/s3.php:371
5462
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5463
  msgstr ""
5464
 
5465
+ #: methods/email.php:71
5466
  msgid "Note:"
5467
  msgstr ""
5468
 
5469
+ #: methods/email.php:45
5470
  msgid "WordPress Backup"
5471
  msgstr ""
5472
 
5473
+ #: methods/cloudfiles.php:547 methods/openstack-base.php:480
5474
  msgid "We accessed the container, and were able to create files within it."
5475
  msgstr ""
5476
 
5477
+ #: methods/cloudfiles.php:543
5478
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5479
  msgstr ""
5480
 
5481
+ #: methods/cloudfiles.php:516 methods/openstack-base.php:424
5482
  msgid "Failure: No container details were given."
5483
  msgstr ""
5484
 
5485
+ #: addons/moredatabase.php:238 addons/sftp.php:362 addons/webdav.php:63
5486
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:496
5487
+ #: methods/openstack2.php:125
5488
  msgid "Username"
5489
  msgstr ""
5490
 
5491
+ #: methods/cloudfiles-new.php:153 methods/cloudfiles.php:491 methods/s3.php:961
5492
  msgid "API key"
5493
  msgstr ""
5494
 
5495
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5496
+ #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:418
5497
+ #: addons/sftp.php:422 addons/sftp.php:426 addons/webdav.php:103 admin.php:662
5498
+ #: methods/addon-base-v2.php:286 methods/cloudfiles-new.php:153
5499
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:491
5500
+ #: methods/cloudfiles.php:496 methods/ftp.php:362 methods/ftp.php:366
5501
+ #: methods/openstack2.php:146 methods/openstack2.php:151
5502
+ #: methods/openstack2.php:156 methods/openstack2.php:161 methods/s3.php:961
5503
+ #: methods/s3.php:965
5504
  msgid "Failure: No %s was given."
5505
  msgstr ""
5506
 
5507
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5508
+ #: methods/openstack-base.php:517 methods/s3.php:801
5509
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5510
  msgstr ""
5511
 
5512
+ #: methods/cloudfiles.php:477
5513
  msgid "Cloud Files container"
5514
  msgstr ""
5515
 
5516
+ #: methods/cloudfiles.php:473
5517
  msgid "Cloud Files API key"
5518
  msgstr ""
5519
 
5520
+ #: methods/cloudfiles.php:469
5521
  msgid "Cloud Files username"
5522
  msgstr ""
5523
 
5524
+ #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:100
5525
+ #: methods/cloudfiles.php:453
5526
  msgid "UK"
5527
  msgstr ""
5528
 
5529
+ #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:99
5530
+ #: methods/cloudfiles.php:452
5531
  msgid "US (default)"
5532
  msgstr ""
5533
 
5534
+ #: methods/cloudfiles.php:449
5535
  msgid "US or UK Cloud"
5536
  msgstr ""
5537
 
5538
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5539
+ #: methods/openstack2.php:98
5540
  msgid "Also, you should read this important FAQ."
5541
  msgstr ""
5542
 
5543
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5544
  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."
5545
  msgstr ""
5546
 
5547
+ #: addons/sftp.php:409 admin.php:685 methods/addon-base-v2.php:252
5548
+ #: methods/backup-module.php:186 methods/cloudfiles.php:483
5549
+ #: methods/openstack-base.php:528 methods/s3.php:863
5550
+ #: methods/stream-base.php:220
5551
  msgid "Test %s Settings"
5552
  msgstr ""
5553
 
5554
+ #: methods/openstack-base.php:407
5555
  msgid "Error downloading remote file: Failed to download ("
5556
  msgstr ""
5557
 
5558
+ #: class-updraftplus.php:1044 class-updraftplus.php:1088
5559
+ #: methods/cloudfiles.php:379 methods/stream-base.php:262
5560
  msgid "Error opening local file: Failed to download"
5561
  msgstr ""
5562
 
5563
+ #: methods/cloudfiles.php:205
5564
  msgid "Cloud Files error - failed to upload file"
5565
  msgstr ""
5566
 
5567
+ #: addons/sftp.php:135 addons/sftp.php:147 methods/cloudfiles.php:134
5568
+ #: methods/cloudfiles.php:176 methods/openstack-base.php:77
5569
+ #: methods/openstack-base.php:266 methods/s3.php:339 methods/s3.php:351
5570
+ #: methods/s3.php:352
5571
  msgid "%s Error: Failed to upload"
5572
  msgstr ""
5573
 
5574
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5575
+ #: class-updraftplus.php:906 methods/cloudfiles.php:117
5576
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5577
  msgid "%s Error: Failed to open local file"
5578
  msgstr ""
5579
 
5580
+ #: methods/cloudfiles.php:90 methods/cloudfiles.php:331
5581
+ #: methods/cloudfiles.php:350
5582
  msgid "Cloud Files error - failed to create and access the container"
5583
  msgstr ""
5584
 
5585
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5586
+ #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:526
5587
+ #: methods/cloudfiles.php:529 methods/cloudfiles.php:532
5588
  msgid "Cloud Files authentication failed"
5589
  msgstr ""
5590
 
5591
+ #: addons/googlecloud.php:907 methods/googledrive.php:963
5592
  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."
5593
  msgstr ""
5594
 
5595
+ #: addons/googlecloud.php:896 methods/googledrive.php:952
5596
  msgid "Authenticate with Google"
5597
  msgstr ""
5598
 
5599
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5600
+ #: methods/googledrive.php:922
5601
  msgid "Client Secret"
5602
  msgstr ""
5603
 
5604
+ #: addons/googlecloud.php:842 methods/googledrive.php:919
5605
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5606
  msgstr ""
5607
 
5608
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5609
+ #: methods/googledrive.php:918
5610
  msgid "Client ID"
5611
  msgstr ""
5612
 
5613
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5614
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5615
  msgstr ""
5616
 
5617
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5618
  msgid "Select 'Web Application' as the application type."
5619
  msgstr ""
5620
 
5621
+ #: addons/googlecloud.php:826 methods/googledrive.php:906
5622
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5623
  msgstr ""
5624
 
5625
+ #: methods/addon-base-v2.php:240 methods/cloudfiles.php:425
5626
+ #: methods/dropbox.php:468 methods/ftp.php:305 methods/googledrive.php:891
5627
+ #: methods/openstack-base.php:507 methods/s3.php:773
5628
+ #: methods/stream-base.php:213
5629
  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."
5630
  msgstr ""
5631
 
5632
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5633
+ #: addons/googlecloud.php:709 methods/googledrive.php:445
5634
+ #: methods/googledrive.php:446
5635
  msgid "Account is not authorized."
5636
  msgstr ""
5637
 
5638
+ #: methods/googledrive.php:371 methods/googledrive.php:417
5639
+ #: methods/googledrive.php:423 methods/googledrive.php:425
5640
+ #: methods/stream-base.php:197
5641
  msgid "Failed to upload to %s"
5642
  msgstr ""
5643
 
5644
+ #: methods/googledrive.php:400
5645
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5646
  msgstr ""
5647
 
5648
+ #: methods/googledrive.php:497
5649
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5650
  msgstr ""
5651
 
5652
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5653
+ #: methods/googledrive.php:348
5654
  msgid "you have authenticated your %s account."
5655
  msgstr ""
5656
 
5657
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5658
+ #: addons/onedrive.php:793 addons/sftp.php:481 methods/addon-base-v2.php:300
5659
+ #: methods/cloudfiles.php:547 methods/googledrive.php:348
5660
+ #: methods/openstack-base.php:480 methods/s3.php:1025
5661
+ #: methods/stream-base.php:309
5662
  msgid "Success"
5663
  msgstr ""
5664
 
5665
+ #: addons/onedrive.php:747 methods/dropbox.php:642 methods/dropbox.php:651
5666
+ #: methods/googledrive.php:322
5667
  msgid "Your %s quota usage: %s %% used, %s available"
5668
  msgstr ""
5669
 
5670
+ #: addons/googlecloud.php:390 methods/googledrive.php:295
5671
  msgid "Authorization failed"
5672
  msgstr ""
5673
 
5674
+ #: addons/googlecloud.php:382 methods/googledrive.php:287
5675
  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."
5676
  msgstr ""
5677
 
5678
+ #: methods/addon-not-yet-present.php:62
5679
  msgid "follow this link to get it"
5680
  msgstr ""
5681
 
5682
+ #: methods/addon-not-yet-present.php:62
5683
  msgid "%s support is available as an add-on"
5684
  msgstr ""
5685
 
5686
+ #: methods/addon-not-yet-present.php:27 methods/addon-not-yet-present.php:39
5687
+ #: methods/addon-not-yet-present.php:46 methods/addon-not-yet-present.php:55
5688
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5689
  msgstr ""
5690
 
5693
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5694
  msgstr ""
5695
 
5696
+ #: addons/migrator.php:1770 admin.php:2705 admin.php:2739 admin.php:2743
5697
+ #: admin.php:3619 admin.php:3632 restorer.php:2203 restorer.php:2309
5698
  msgid "OK"
5699
  msgstr ""
5700
 
5718
  msgid "Old table prefix:"
5719
  msgstr ""
5720
 
5721
+ #: addons/reporting.php:65 addons/reporting.php:152 backup.php:942
5722
+ #: class-updraftplus.php:4025
5723
  msgid "Backup of:"
5724
  msgstr ""
5725
 
5795
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5796
  msgstr ""
5797
 
5798
+ #: admin.php:3640 admin.php:3641
5799
  msgid "Could not find one of the files for restoration"
5800
  msgstr ""
5801
 
5802
+ #: admin.php:3735
5803
  msgid "Error message"
5804
  msgstr ""
5805
 
5806
+ #: admin.php:3637
5807
  msgid "The backup records do not contain information about the proper size of this file."
5808
  msgstr ""
5809
 
5810
+ #: admin.php:3629
5811
  msgid "Archive is expected to be size:"
5812
  msgstr ""
5813
 
5814
+ #: admin.php:3513
5815
  msgid "If making a request for support, please include this information:"
5816
  msgstr ""
5817
 
5818
+ #: admin.php:3512
5819
  msgid "ABORT: Could not find the information on which entities to restore."
5820
  msgstr ""
5821
 
5822
+ #: admin.php:3466
5823
  msgid "UpdraftPlus Restoration: Progress"
5824
  msgstr ""
5825
 
5826
+ #: admin.php:3418
5827
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5828
  msgstr ""
5829
 
5830
+ #: admin.php:3367
5831
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5832
  msgstr ""
5833
 
5834
+ #: admin.php:3376
 
 
 
 
5835
  msgid "Delete this backup set"
5836
  msgstr ""
5837
 
5838
+ #: admin.php:3047
5839
  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."
5840
  msgstr ""
5841
 
5842
+ #: admin.php:3044
5843
  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."
5844
  msgstr ""
5845
 
5846
+ #: admin.php:3042
5847
  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)."
5848
  msgstr ""
5849
 
5850
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5851
+ #: methods/openstack-base.php:517 methods/s3.php:801
5852
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5853
  msgstr ""
5854
 
5855
+ #: templates/wp-admin/settings/form-contents.php:421
5856
  msgid "Save Changes"
5857
  msgstr ""
5858
 
5859
+ #: templates/wp-admin/settings/form-contents.php:398
5860
  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."
5861
  msgstr ""
5862
 
5863
+ #: templates/wp-admin/settings/form-contents.php:397
5864
  msgid "Disable SSL entirely where possible"
5865
  msgstr ""
5866
 
5867
+ #: templates/wp-admin/settings/form-contents.php:393
5868
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5869
  msgstr ""
5870
 
5871
+ #: templates/wp-admin/settings/form-contents.php:393
5872
  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."
5873
  msgstr ""
5874
 
5875
+ #: templates/wp-admin/settings/form-contents.php:392
5876
  msgid "Do not verify SSL certificates"
5877
  msgstr ""
5878
 
5879
+ #: templates/wp-admin/settings/form-contents.php:388
5880
  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."
5881
  msgstr ""
5882
 
5883
+ #: templates/wp-admin/settings/form-contents.php:387
5884
  msgid "Use the server's SSL certificates"
5885
  msgstr ""
5886
 
5887
+ #: admin.php:2918
5888
  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."
5889
  msgstr ""
5890
 
5891
+ #: admin.php:2918
5892
  msgid "click here"
5893
  msgstr ""
5894
 
5895
+ #: admin.php:2918
5896
  msgid "or, to reset this option"
5897
  msgstr ""
5898
 
5899
+ #: admin.php:2918
5900
  msgid "Follow this link to attempt to create the directory and set the permissions"
5901
  msgstr ""
5902
 
5903
+ #: admin.php:2910
5904
  msgid "Backup directory specified is writable, which is good."
5905
  msgstr ""
5906
 
5907
+ #: templates/wp-admin/settings/form-contents.php:368
5908
  msgid "Backup directory"
5909
  msgstr ""
5910
 
5911
+ #: templates/wp-admin/settings/form-contents.php:363
5912
  msgid "Delete local backup"
5913
  msgstr ""
5914
 
5915
+ #: templates/wp-admin/settings/form-contents.php:343
5916
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5917
  msgstr ""
5918
 
5919
+ #: templates/wp-admin/settings/form-contents.php:343
5920
  msgid "Show expert settings"
5921
  msgstr ""
5922
 
5923
+ #: templates/wp-admin/settings/form-contents.php:342
5924
  msgid "Expert settings"
5925
  msgstr ""
5926
 
5927
+ #: templates/wp-admin/settings/form-contents.php:353
5928
  msgid "Debug mode"
5929
  msgstr ""
5930
 
5931
+ #: templates/wp-admin/settings/form-contents.php:338
5932
  msgid "Advanced / Debugging Settings"
5933
  msgstr ""
5934
 
5935
+ #: admin.php:621
5936
  msgid "Requesting start of backup..."
5937
  msgstr ""
5938
 
5939
+ #: addons/morefiles.php:294 admin.php:637
5940
  msgid "Cancel"
5941
  msgstr ""
5942
 
5943
+ #: addons/reporting.php:216 admin.php:3191
5944
  msgid "None"
5945
  msgstr ""
5946
 
5948
  msgid "Choose your remote storage"
5949
  msgstr ""
5950
 
5951
+ #: templates/wp-admin/settings/form-contents.php:236
5952
  msgid "Manually decrypt a database backup file"
5953
  msgstr ""
5954
 
5955
+ #: templates/wp-admin/settings/form-contents.php:217
5956
  msgid "Database encryption phrase"
5957
  msgstr ""
5958
 
5959
+ #: templates/wp-admin/settings/form-contents.php:315 udaddons/options.php:150
5960
  msgid "Email"
5961
  msgstr ""
5962
 
5963
+ #: templates/wp-admin/settings/form-contents.php:207
5964
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5965
  msgstr ""
5966
 
5967
+ #: addons/morefiles.php:440 admin.php:2988
5968
  msgid "Exclude these:"
5969
  msgstr ""
5970
 
5971
+ #: admin.php:2979
5972
  msgid "Any other directories found inside wp-content"
5973
  msgstr ""
5974
 
5975
+ #: templates/wp-admin/settings/form-contents.php:204
5976
  msgid "Include in files backup"
5977
  msgstr ""
5978
 
5984
  msgid "To fix the time at which a backup should take place,"
5985
  msgstr ""
5986
 
5987
+ #: admin.php:2904
5988
  msgid "Monthly"
5989
  msgstr ""
5990
 
5991
+ #: admin.php:2903
5992
  msgid "Fortnightly"
5993
  msgstr ""
5994
 
5995
+ #: admin.php:2902
5996
  msgid "Weekly"
5997
  msgstr ""
5998
 
5999
+ #: admin.php:2901
6000
  msgid "Daily"
6001
  msgstr ""
6002
 
6003
+ #: admin.php:644 admin.php:2884
6004
  msgid "Download log file"
6005
  msgstr ""
6006
 
6007
+ #: admin.php:2802
6008
  msgid "The folder exists, but your webserver does not have permission to write to it."
6009
  msgstr ""
6010
 
6011
+ #: admin.php:2797
6012
  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"
6013
  msgstr ""
6014
 
6015
+ #: admin.php:2783
6016
  msgid "The request to the filesystem to create the directory failed."
6017
  msgstr ""
6018
 
6019
+ #: addons/migrator.php:2243 admin.php:638 admin.php:2699 admin.php:2732
6020
+ #: admin.php:3376 templates/wp-admin/settings/delete-and-restore-modals.php:5
6021
  msgid "Delete"
6022
  msgstr ""
6023
 
6024
+ #: admin.php:2639
6025
  msgid "show log"
6026
  msgstr ""
6027
 
6097
  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"
6098
  msgstr ""
6099
 
6100
+ #: addons/morefiles.php:130
6101
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6102
  msgid "%s restoration options:"
6103
  msgstr ""
6134
  msgid "Delete backup set"
6135
  msgstr ""
6136
 
6137
+ #: admin.php:620
6138
  msgid "Download error: the server sent us a response which we did not understand."
6139
  msgstr ""
6140
 
6144
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6145
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6146
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6147
+ #: addons/s3-enhanced.php:127 addons/sftp.php:737 addons/webdav.php:79
6148
+ #: admin.php:82 admin.php:612 admin.php:3634 admin.php:3664
6149
+ #: methods/remotesend.php:69 methods/remotesend.php:227
6150
+ #: methods/updraftvault.php:432 restorer.php:1364
6151
  msgid "Error:"
6152
  msgstr ""
6153
 
6154
+ #: admin.php:603 templates/wp-admin/settings/downloading-and-restoring.php:34
6155
  msgid "calculating..."
6156
  msgstr ""
6157
 
6158
+ #: includes/updraftplus-notices.php:260
6159
+ msgid "or"
6160
+ msgstr ""
6161
+
6162
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6163
  msgid "UpdraftPlus - Upload backup files"
6164
  msgstr ""
6171
  msgid "Web-server disk space in use by UpdraftPlus"
6172
  msgstr ""
6173
 
6174
+ #: addons/google-enhanced.php:81 methods/googledrive.php:130
6175
+ #: methods/googledrive.php:348 methods/googledrive.php:371
6176
+ #: methods/googledrive.php:400 methods/googledrive.php:407
6177
+ #: methods/googledrive.php:417 methods/googledrive.php:423
6178
+ #: methods/googledrive.php:425 methods/googledrive.php:890
6179
+ #: methods/googledrive.php:902 methods/googledrive.php:918
6180
+ #: methods/googledrive.php:922 methods/googledrive.php:933
6181
+ #: methods/googledrive.php:943
6182
  msgid "Google Drive"
6183
  msgstr ""
6184
 
6194
  msgid "More tasks:"
6195
  msgstr ""
6196
 
6197
+ #: admin.php:2402
6198
  msgid "Download most recently modified log file"
6199
  msgstr ""
6200
 
6201
+ #: admin.php:2361 admin.php:2367 central/bootstrap.php:161
6202
  msgid "(Nothing yet logged)"
6203
  msgstr ""
6204
 
6205
+ #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2360
6206
+ #: admin.php:2365
6207
  msgid "Last log message"
6208
  msgstr ""
6209
 
6210
+ #: addons/migrator.php:218 admin.php:643 admin.php:3367
6211
  #: templates/wp-admin/settings/tab-status.php:30
6212
  msgid "Restore"
6213
  msgstr ""
6214
 
6215
+ #: admin.php:472 admin.php:636 templates/wp-admin/settings/tab-status.php:27
6216
  msgid "Backup Now"
6217
  msgstr ""
6218
 
6219
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6220
+ #: addons/reporting.php:231 admin.php:257 admin.php:3166 admin.php:3239
6221
+ #: admin.php:3718 includes/class-wpadmin-commands.php:138
6222
+ #: includes/class-wpadmin-commands.php:459
6223
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6224
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6225
  msgid "Database"
6226
  msgstr ""
6227
 
6228
+ #: admin.php:253 admin.php:4130
6229
  msgid "Files"
6230
  msgstr ""
6231
 
6233
  msgid "Next scheduled backups"
6234
  msgstr ""
6235
 
6236
+ #: admin.php:233
6237
  msgid "At the same time as the files backup"
6238
  msgstr ""
6239
 
6240
+ #: admin.php:223 admin.php:244 admin.php:251
6241
  msgid "Nothing currently scheduled"
6242
  msgstr ""
6243
 
6249
  msgid "JavaScript warning"
6250
  msgstr ""
6251
 
6252
+ #: admin.php:623 admin.php:2429
6253
  msgid "Delete Old Directories"
6254
  msgstr ""
6255
 
6256
+ #: admin.php:2174
6257
  msgid "Current limit is:"
6258
  msgstr ""
6259
 
6260
+ #: admin.php:2148
6261
  msgid "Your backup has been restored."
6262
  msgstr ""
6263
 
6269
  msgid "Lead developer's homepage"
6270
  msgstr ""
6271
 
6272
+ #: admin.php:4050
6273
  msgid "Your settings have been wiped."
6274
  msgstr ""
6275
 
6276
+ #: admin.php:2108
6277
  msgid "Backup directory successfully created."
6278
  msgstr ""
6279
 
6280
+ #: admin.php:2101
6281
  msgid "Backup directory could not be created"
6282
  msgstr ""
6283
 
6284
+ #: admin.php:2671
6285
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6286
  msgstr ""
6287
 
6288
+ #: admin.php:2669
6289
  msgid "Old directories successfully removed."
6290
  msgstr ""
6291
 
6292
+ #: admin.php:2666
6293
  msgid "Remove old directories"
6294
  msgstr ""
6295
 
6296
+ #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2050
6297
+ #: admin.php:2059 admin.php:2068 admin.php:2110 admin.php:2673
6298
  msgid "Return to UpdraftPlus Configuration"
6299
  msgstr ""
6300
 
6301
+ #: admin.php:616 admin.php:2050 admin.php:2059 admin.php:2068 admin.php:2110
6302
+ #: admin.php:2673 templates/wp-admin/settings/existing-backups-table.php:14
6303
  msgid "Actions"
6304
  msgstr ""
6305
 
6306
+ #: admin.php:2039
6307
  msgid "Restore successful!"
6308
  msgstr ""
6309
 
6310
+ #: admin.php:1969
6311
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6312
  msgstr ""
6313
 
6314
+ #: admin.php:1879
6315
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6316
  msgstr ""
6317
 
6318
+ #: admin.php:1760
6319
  msgid "No local copy present."
6320
  msgstr ""
6321
 
6322
+ #: admin.php:1757
6323
  msgid "Download in progress"
6324
  msgstr ""
6325
 
6326
+ #: admin.php:615 admin.php:1746
6327
  msgid "File ready."
6328
  msgstr ""
6329
 
6330
+ #: admin.php:1727
6331
  msgid "Download failed"
6332
  msgstr ""
6333
 
6334
+ #: admin.php:613 admin.php:1518 admin.php:3617 class-updraftplus.php:1044
6335
+ #: class-updraftplus.php:1088 methods/addon-base-v2.php:84
6336
+ #: methods/addon-base-v2.php:89 methods/addon-base-v2.php:204
6337
+ #: methods/addon-base-v2.php:224 methods/stream-base.php:197 restorer.php:2199
6338
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6339
  msgid "Error"
6340
  msgstr ""
6341
 
6342
+ #: admin.php:1546
6343
  msgid "Could not find that job - perhaps it has already finished?"
6344
  msgstr ""
6345
 
6346
+ #: admin.php:1538
6347
  msgid "Job deleted"
6348
  msgstr ""
6349
 
6350
+ #: admin.php:1622
6351
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6352
  msgstr ""
6353
 
6354
+ #: admin.php:688
6355
  msgid "Nothing yet logged"
6356
  msgstr ""
6357
 
6358
+ #: admin.php:905
6359
  msgid "Please consult this FAQ if you have problems backing up."
6360
  msgstr ""
6361
 
6362
+ #: admin.php:905
6363
  msgid "Your website is hosted using the %s web server."
6364
  msgstr ""
6365
 
6366
+ #: admin.php:901
6367
  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."
6368
  msgstr ""
6369
 
6370
+ #: admin.php:897
6371
  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."
6372
  msgstr ""
6373
 
6374
+ #: admin.php:889 admin.php:893 admin.php:897 admin.php:901 admin.php:905
6375
+ #: admin.php:914 admin.php:3035 admin.php:3042 admin.php:3044
6376
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435 methods/ftp.php:291
6377
+ #: methods/openstack-base.php:517 methods/s3.php:797 methods/s3.php:801
6378
+ #: methods/updraftvault.php:258
6379
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6380
  #: udaddons/updraftplus-addons.php:208
6381
  msgid "Warning"
6382
  msgstr ""
6383
 
6384
+ #: admin.php:834
6385
  msgid "Add-Ons / Pro Support"
6386
  msgstr ""
6387
 
6388
+ #: admin.php:488 admin.php:830 templates/wp-admin/settings/tab-bar.php:7
6389
  msgid "Settings"
6390
  msgstr ""
6391
 
6392
+ #: admin.php:803
6393
  msgid "Allowed Files"
6394
  msgstr ""
6395
 
6397
  msgid "Could not create %s zip. Consult the log file for more information."
6398
  msgstr ""
6399
 
6400
+ #: backup.php:2024
6401
  msgid "Infinite recursion: consult your log for more information"
6402
  msgstr ""
6403
 
6409
  msgid "Like UpdraftPlus and can spare one minute?"
6410
  msgstr ""
6411
 
6412
+ #: addons/azure.php:216 class-updraftplus.php:3784 methods/googledrive.php:823
6413
  msgid "File not found"
6414
  msgstr ""
6415
 
6416
+ #: class-updraftplus.php:3695
6417
  msgid "The decryption key used:"
6418
  msgstr ""
6419
 
6420
+ #: class-updraftplus.php:3695 class-updraftplus.php:3965 restorer.php:390
6421
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6422
  msgstr ""
6423
 
6424
+ #: class-updraftplus.php:3676 class-updraftplus.php:3953 restorer.php:377
6425
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6426
  msgstr ""
6427
 
6428
+ #: backup.php:1914
6429
  msgid "Could not open the backup file for writing"
6430
  msgstr ""
6431
 
6432
+ #: class-updraftplus.php:3288
6433
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6434
  msgstr ""
6435
 
6436
+ #: class-updraftplus.php:3265
6437
  msgid "Could not read the directory"
6438
  msgstr ""
6439
 
6440
+ #: admin.php:1797 backup.php:1139 restorer.php:225
6441
  msgid "Backup directory (%s) is not writable, or does not exist."
6442
  msgstr ""
6443
 
6444
+ #: backup.php:943
6445
  msgid "WordPress backup is complete"
6446
  msgstr ""
6447
 
6448
+ #: class-updraftplus.php:2834
6449
  msgid "The backup attempt has finished, apparently unsuccessfully"
6450
  msgstr ""
6451
 
6452
+ #: class-updraftplus.php:2819
6453
  msgid "The backup apparently succeeded and is now complete"
6454
  msgstr ""
6455
 
6456
+ #: addons/moredatabase.php:373
6457
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6458
  msgstr ""
6459
 
6460
+ #: class-updraftplus.php:2246
6461
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6462
  msgstr ""
6463
 
6464
+ #: class-updraftplus.php:1613
6465
  msgid "Others"
6466
  msgstr ""
6467
 
6468
+ #: addons/multisite.php:446 class-updraftplus.php:1598
6469
  msgid "Uploads"
6470
  msgstr ""
6471
 
6472
+ #: class-updraftplus.php:1597
6473
  msgid "Themes"
6474
  msgstr ""
6475
 
6476
+ #: class-updraftplus.php:1596
6477
  msgid "Plugins"
6478
  msgstr ""
6479
 
6480
+ #: class-updraftplus.php:458
6481
  msgid "No log files were found."
6482
  msgstr ""
6483
 
6484
+ #: admin.php:1681 admin.php:1685 class-updraftplus.php:453
6485
  msgid "The log file could not be read."
6486
  msgstr ""
6487
 
6488
+ #: admin.php:921 admin.php:925 admin.php:929 admin.php:933 admin.php:937
6489
+ #: class-updraftplus.php:418 class-updraftplus.php:453
6490
+ #: class-updraftplus.php:458 class-updraftplus.php:463
6491
  msgid "UpdraftPlus notice:"
6492
  msgstr ""
6493
 
6494
+ #: addons/multisite.php:63 addons/multisite.php:654 options.php:42
6495
  msgid "UpdraftPlus Backups"
6496
  msgstr ""
languages/updraftplus-ar.mo CHANGED
Binary file
languages/updraftplus-ar.po CHANGED
@@ -11,59 +11,127 @@ msgstr ""
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: restorer.php:1629
15
  msgid "Skipped tables:"
16
  msgstr ""
17
 
18
- #: class-updraftplus.php:4049
19
  msgid "This database backup has the following WordPress tables excluded: %s"
20
  msgstr ""
21
 
22
- #: admin.php:2271
23
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
24
  msgstr ""
25
 
26
- #: admin.php:2271
27
  msgid "All WordPress tables will be backed up."
28
  msgstr ""
29
 
30
- #: admin.php:675
31
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
32
  msgstr ""
33
 
34
- #: admin.php:675
35
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
36
  msgstr ""
37
 
38
- #: admin.php:675
39
  msgid "The available memory on the server."
40
  msgstr ""
41
 
42
- #: admin.php:675
43
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
44
  msgstr ""
45
 
46
- #: admin.php:675
47
  msgid "The file failed to upload. Please check the following:"
48
  msgstr ""
49
 
50
- #: admin.php:674
51
  msgid "HTTP code:"
52
  msgstr ""
53
 
54
- #: admin.php:572
55
  msgid "You have chosen to backup a database, but no tables have been selected"
56
  msgstr ""
57
 
58
- #: addons/moredatabase.php:484
59
  msgid "tables"
60
  msgstr ""
61
 
62
- #: addons/moredatabase.php:483
63
  msgid "WordPress database"
64
  msgstr ""
65
 
66
- #: addons/moredatabase.php:476
67
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
68
  msgstr ""
69
 
@@ -214,7 +282,7 @@ msgstr ""
214
  msgid "UpdraftPlus"
215
  msgstr ""
216
 
217
- #: templates/wp-admin/settings/form-contents.php:241
218
  msgid "Recommended: optimize your database with WP-Optimize."
219
  msgstr ""
220
 
@@ -237,31 +305,27 @@ msgstr ""
237
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
238
  msgstr ""
239
 
240
- #: admin.php:595
241
- msgid "Show contents"
242
- msgstr ""
243
-
244
- #: addons/morefiles.php:246
245
  msgid "Please choose a file or directory"
246
  msgstr ""
247
 
248
- #: addons/morefiles.php:235
249
  msgid "Confirm"
250
  msgstr ""
251
 
252
- #: addons/morefiles.php:238
253
  msgid "Go up a directory"
254
  msgstr ""
255
 
256
- #: addons/morefiles.php:231
257
  msgid "Add directory..."
258
  msgstr ""
259
 
260
- #: addons/morefiles.php:224 addons/morefiles.php:244
261
  msgid "Edit"
262
  msgstr ""
263
 
264
- #: addons/morefiles.php:207
265
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
266
  msgstr ""
267
 
@@ -541,19 +605,19 @@ msgstr ""
541
  msgid "Backup of: %s"
542
  msgstr ""
543
 
544
- #: methods/googledrive.php:212
545
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
546
  msgstr ""
547
 
548
- #: methods/dropbox.php:569
549
  msgid "%s de-authentication"
550
  msgstr ""
551
 
552
- #: methods/dropbox.php:537
553
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
554
  msgstr ""
555
 
556
- #: methods/dropbox.php:511
557
  msgid "Follow this link to deauthenticate with %s."
558
  msgstr ""
559
 
@@ -561,7 +625,7 @@ msgstr ""
561
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
562
  msgstr ""
563
 
564
- #: backup.php:1495
565
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
566
  msgstr ""
567
 
@@ -569,47 +633,47 @@ msgstr ""
569
  msgid "You have selected a remote storage option which has an authorization step to complete:"
570
  msgstr ""
571
 
572
- #: admin.php:1391
573
  msgid "Remote files deleted:"
574
  msgstr ""
575
 
576
- #: admin.php:1390
577
  msgid "Local files deleted:"
578
  msgstr ""
579
 
580
- #: admin.php:887 admin.php:891 admin.php:899 admin.php:903
581
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
582
  msgstr ""
583
 
584
- #: admin.php:673
585
  msgid "remote files deleted"
586
  msgstr ""
587
 
588
- #: admin.php:671
589
  msgid "Complete"
590
  msgstr ""
591
 
592
- #: admin.php:670
593
  msgid "Do you want to carry out the import?"
594
  msgstr ""
595
 
596
- #: admin.php:669
597
  msgid "Which was exported on:"
598
  msgstr ""
599
 
600
- #: admin.php:668
601
  msgid "This will import data from:"
602
  msgstr ""
603
 
604
- #: admin.php:667
605
  msgid "Importing..."
606
  msgstr ""
607
 
608
- #: admin.php:664
609
  msgid "You have not yet selected a file to import."
610
  msgstr ""
611
 
612
- #: admin.php:648
613
  msgid "Your export file will be of your displayed settings, not your saved ones."
614
  msgstr ""
615
 
@@ -654,15 +718,15 @@ msgstr ""
654
  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"
655
  msgstr ""
656
 
657
- #: admin.php:2096
658
  msgid "To fix this problem go here."
659
  msgstr ""
660
 
661
- #: admin.php:2096
662
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
663
  msgstr ""
664
 
665
- #: admin.php:633
666
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
667
  msgstr ""
668
 
@@ -694,11 +758,11 @@ msgstr ""
694
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
695
  msgstr ""
696
 
697
- #: methods/s3.php:1012
698
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
699
  msgstr ""
700
 
701
- #: methods/s3.php:89
702
  msgid "No settings were found - please go to the Settings tab and check your settings"
703
  msgstr ""
704
 
@@ -766,11 +830,11 @@ msgstr ""
766
  msgid "Public key was sent to:"
767
  msgstr ""
768
 
769
- #: backup.php:2054
770
  msgid "Failed to open directory (check the file permissions and ownership): %s"
771
  msgstr ""
772
 
773
- #: backup.php:2032
774
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
775
  msgstr ""
776
 
@@ -816,27 +880,27 @@ msgstr ""
816
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
817
  msgstr ""
818
 
819
- #: methods/googledrive.php:422
820
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
821
  msgstr ""
822
 
823
- #: methods/ftp.php:383
824
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
825
  msgstr ""
826
 
827
- #: methods/ftp.php:355
828
  msgid "login"
829
  msgstr "تسجيل الدخول"
830
 
831
- #: methods/email.php:77
832
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
833
  msgstr ""
834
 
835
- #: methods/email.php:28
836
  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."
837
  msgstr ""
838
 
839
- #: class-updraftplus.php:1484
840
  msgid "Size: %s MB"
841
  msgstr ""
842
 
@@ -848,7 +912,7 @@ msgstr ""
848
  msgid "i.e. you have an account there"
849
  msgstr ""
850
 
851
- #: templates/wp-admin/settings/form-contents.php:326
852
  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)."
853
  msgstr ""
854
 
@@ -856,7 +920,7 @@ msgstr ""
856
  msgid "Now"
857
  msgstr "الآن"
858
 
859
- #: class-updraftplus.php:3913 restorer.php:996
860
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
861
  msgstr ""
862
 
@@ -864,21 +928,21 @@ msgstr ""
864
  msgid "(tap on an icon to select or unselect)"
865
  msgstr ""
866
 
867
- #: methods/updraftvault.php:291 methods/updraftvault.php:297
868
- #: methods/updraftvault.php:303
869
  msgid "%s per year"
870
  msgstr ""
871
 
872
- #: methods/updraftvault.php:290 methods/updraftvault.php:296
873
- #: methods/updraftvault.php:302
874
  msgid "or (annual discount)"
875
  msgstr ""
876
 
877
- #: methods/updraftvault.php:235
878
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
879
  msgstr ""
880
 
881
- #: class-updraftplus.php:354 class-updraftplus.php:399
882
  msgid "The given file was not found, or could not be read."
883
  msgstr ""
884
 
@@ -978,23 +1042,23 @@ msgstr ""
978
  msgid "UpdraftCentral Connection"
979
  msgstr ""
980
 
981
- #: backup.php:837 class-updraftplus.php:2715
982
  msgid "The backup was aborted by the user"
983
  msgstr ""
984
 
985
- #: admin.php:3953
986
  msgid "Your settings have been saved."
987
  msgstr "تم حفظ إعداداتك."
988
 
989
- #: admin.php:3146
990
  msgid "Total backup size:"
991
  msgstr ""
992
 
993
- #: admin.php:2593
994
  msgid "stop"
995
  msgstr "توقف"
996
 
997
- #: admin.php:2431
998
  msgid "The backup has finished running"
999
  msgstr ""
1000
 
@@ -1020,27 +1084,27 @@ msgstr ""
1020
  msgid "calculate"
1021
  msgstr ""
1022
 
1023
- #: admin.php:647
1024
  msgid "You should save your changes to ensure that they are used for making your backup."
1025
  msgstr ""
1026
 
1027
- #: admin.php:641
1028
  msgid "We requested to delete the file, but could not understand the server's response"
1029
  msgstr ""
1030
 
1031
- #: admin.php:640
1032
  msgid "Please enter a valid URL"
1033
  msgstr ""
1034
 
1035
- #: admin.php:623
1036
  msgid "Saving..."
1037
  msgstr "جاري الحفظ..."
1038
 
1039
- #: admin.php:586
1040
  msgid "Error: the server sent us a response which we did not understand."
1041
  msgstr ""
1042
 
1043
- #: admin.php:578
1044
  msgid "Fetching..."
1045
  msgstr ""
1046
 
@@ -1048,15 +1112,11 @@ msgstr ""
1048
  msgid "Asia Pacific (Seoul)"
1049
  msgstr ""
1050
 
1051
- #: addons/copycom.php:43 addons/copycom.php:81
1052
- msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
1053
- msgstr ""
1054
-
1055
  #: restorer.php:1618
1056
  msgid "Uploads URL:"
1057
  msgstr ""
1058
 
1059
- #: backup.php:388
1060
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1061
  msgstr ""
1062
 
@@ -1068,48 +1128,48 @@ msgstr ""
1068
  msgid "Skipping table %s: this table will not be restored"
1069
  msgstr ""
1070
 
1071
- #: class-updraftplus.php:3964 restorer.php:1642
1072
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1073
  msgstr ""
1074
 
1075
- #: class-updraftplus.php:3960
1076
  msgid "Please read this link for important information on this process."
1077
  msgstr ""
1078
 
1079
- #: class-updraftplus.php:3960
1080
  msgid "It will be imported as a new site."
1081
  msgstr ""
1082
 
1083
- #: admin.php:2244 templates/wp-admin/notices/horizontal-notice.php:16
1084
  #: templates/wp-admin/notices/horizontal-notice.php:18
1085
  msgid "Dismiss"
1086
  msgstr "رفض"
1087
 
1088
- #: admin.php:659
1089
  msgid "Please fill in the required information."
1090
  msgstr ""
1091
 
1092
- #: addons/multisite.php:556
1093
  msgid "Read more..."
1094
  msgstr ""
1095
 
1096
- #: addons/multisite.php:556
1097
  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."
1098
  msgstr ""
1099
 
1100
- #: addons/multisite.php:547
1101
  msgid "may include some site-wide data"
1102
  msgstr ""
1103
 
1104
- #: addons/multisite.php:542
1105
  msgid "All sites"
1106
  msgstr ""
1107
 
1108
- #: addons/multisite.php:538
1109
  msgid "Which site to restore"
1110
  msgstr ""
1111
 
1112
- #: addons/multisite.php:374 addons/multisite.php:384
1113
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1114
  msgstr ""
1115
 
@@ -1157,15 +1217,15 @@ msgstr ""
1157
  msgid "Call WordPress action:"
1158
  msgstr ""
1159
 
1160
- #: admin.php:2279
1161
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1162
  msgstr ""
1163
 
1164
- #: admin.php:3554
1165
  msgid "Skipping: this archive was already restored."
1166
  msgstr ""
1167
 
1168
- #: templates/wp-admin/settings/form-contents.php:167
1169
  msgid "File Options"
1170
  msgstr ""
1171
 
@@ -1193,51 +1253,51 @@ msgstr ""
1193
  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)."
1194
  msgstr ""
1195
 
1196
- #: admin.php:3835
1197
  msgid "Send this backup to remote storage"
1198
  msgstr ""
1199
 
1200
- #: admin.php:3833
1201
  msgid "Check out UpdraftPlus Vault."
1202
  msgstr ""
1203
 
1204
- #: admin.php:3833
1205
  msgid "Not got any remote storage?"
1206
  msgstr ""
1207
 
1208
- #: admin.php:3833
1209
  msgid "settings"
1210
  msgstr "إعدادات"
1211
 
1212
- #: admin.php:3833
1213
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1214
  msgstr ""
1215
 
1216
- #: admin.php:2277
1217
  msgid "Include any files in the backup"
1218
  msgstr ""
1219
 
1220
- #: admin.php:2263
1221
  msgid "Include the database in the backup"
1222
  msgstr ""
1223
 
1224
- #: admin.php:2243
1225
  msgid "Continue restoration"
1226
  msgstr ""
1227
 
1228
- #: admin.php:2238
1229
  msgid "You have an unfinished restoration operation, begun %s ago."
1230
  msgstr ""
1231
 
1232
- #: admin.php:2237
1233
  msgid "Unfinished restoration"
1234
  msgstr ""
1235
 
1236
- #: admin.php:2235
1237
  msgid "%s minutes, %s seconds"
1238
  msgstr ""
1239
 
1240
- #: admin.php:2182
1241
  msgid "Backup Contents And Schedule"
1242
  msgstr ""
1243
 
@@ -1245,24 +1305,24 @@ msgstr ""
1245
  msgid "Premium / Extensions"
1246
  msgstr ""
1247
 
1248
- #: admin.php:1962 admin.php:1971
1249
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1250
  msgstr ""
1251
 
1252
- #: admin.php:646
1253
  msgctxt "(verb)"
1254
  msgid "Download"
1255
  msgstr ""
1256
 
1257
- #: admin.php:571
1258
  msgid "You have chosen to backup files, but no file entities have been selected"
1259
  msgstr ""
1260
 
1261
- #: admin.php:480
1262
  msgid "Extensions"
1263
  msgstr "Extensions"
1264
 
1265
- #: admin.php:472 templates/wp-admin/settings/tab-bar.php:8
1266
  msgid "Advanced Tools"
1267
  msgstr ""
1268
 
@@ -1343,75 +1403,75 @@ msgstr ""
1343
  msgid "Standard"
1344
  msgstr ""
1345
 
1346
- #: addons/azure.php:524
1347
  msgid "container"
1348
  msgstr ""
1349
 
1350
- #: addons/azure.php:524
1351
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1352
  msgstr ""
1353
 
1354
- #: addons/azure.php:523
1355
  msgid "optional"
1356
  msgstr ""
1357
 
1358
- #: addons/azure.php:523
1359
  msgid "Prefix"
1360
  msgstr ""
1361
 
1362
- #: addons/azure.php:518
1363
  msgid "See Microsoft's guidelines on container naming by following this link."
1364
  msgstr ""
1365
 
1366
- #: addons/azure.php:518
1367
  msgid "If the %s does not already exist, then it will be created."
1368
  msgstr ""
1369
 
1370
- #: addons/azure.php:518
1371
  msgid "Enter the path of the %s you wish to use here."
1372
  msgstr ""
1373
 
1374
- #: addons/azure.php:507
1375
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1376
  msgstr ""
1377
 
1378
- #: addons/azure.php:506
1379
  msgid "Account Name"
1380
  msgstr ""
1381
 
1382
- #: addons/azure.php:506 addons/azure.php:510
1383
  msgid "Azure"
1384
  msgstr ""
1385
 
1386
- #: addons/azure.php:502
1387
  msgid "Create Azure credentials in your Azure developer console."
1388
  msgstr ""
1389
 
1390
- #: addons/azure.php:450
1391
  msgid "Could not create the container"
1392
  msgstr ""
1393
 
1394
- #: addons/azure.php:344
1395
  msgid "Could not access container"
1396
  msgstr ""
1397
 
1398
- #: class-updraftplus.php:2732
1399
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1400
  msgstr ""
1401
 
1402
- #: backup.php:1547
1403
  msgid "the options table was not found"
1404
  msgstr ""
1405
 
1406
- #: backup.php:1545
1407
  msgid "no options or sitemeta table was found"
1408
  msgstr ""
1409
 
1410
- #: backup.php:1545 backup.php:1547
1411
  msgid "The database backup appears to have failed"
1412
  msgstr ""
1413
 
1414
- #: backup.php:1419
1415
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1416
  msgstr ""
1417
 
@@ -1528,35 +1588,35 @@ msgstr ""
1528
  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)."
1529
  msgstr ""
1530
 
1531
- #: admin.php:1389
1532
  msgid "Backup sets removed:"
1533
  msgstr ""
1534
 
1535
- #: admin.php:658
1536
  msgid "Processing..."
1537
  msgstr ""
1538
 
1539
- #: admin.php:656
1540
  msgid "For backups older than"
1541
  msgstr ""
1542
 
1543
- #: admin.php:655
1544
  msgid "week(s)"
1545
  msgstr ""
1546
 
1547
- #: admin.php:654
1548
  msgid "hour(s)"
1549
  msgstr ""
1550
 
1551
- #: admin.php:653
1552
  msgid "day(s)"
1553
  msgstr ""
1554
 
1555
- #: admin.php:652
1556
  msgid "in the month"
1557
  msgstr ""
1558
 
1559
- #: admin.php:651
1560
  msgid "day"
1561
  msgstr ""
1562
 
@@ -1576,31 +1636,31 @@ msgstr ""
1576
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1577
  msgstr ""
1578
 
1579
- #: methods/updraftvault.php:596
1580
  msgid "You do not currently have any UpdraftPlus Vault quota"
1581
  msgstr ""
1582
 
1583
- #: class-updraftplus.php:3999
1584
  msgid "You must upgrade MySQL to be able to use this database."
1585
  msgstr ""
1586
 
1587
- #: class-updraftplus.php:3999
1588
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1589
  msgstr ""
1590
 
1591
- #: admin.php:2081
1592
  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."
1593
  msgstr ""
1594
 
1595
- #: methods/updraftvault.php:324
1596
  msgid "Don't know your email address, or forgotten your password?"
1597
  msgstr ""
1598
 
1599
- #: methods/updraftvault.php:317
1600
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1601
  msgstr ""
1602
 
1603
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1604
  msgid "Read the FAQs here."
1605
  msgstr ""
1606
 
@@ -1612,155 +1672,155 @@ msgstr ""
1612
  msgid "Server-side encryption"
1613
  msgstr ""
1614
 
1615
- #: methods/updraftvault.php:605
1616
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1617
  msgstr ""
1618
 
1619
- #: admin.php:895
1620
  msgid "Go to the remote storage settings in order to connect."
1621
  msgstr ""
1622
 
1623
- #: admin.php:895
1624
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1625
  msgstr ""
1626
 
1627
- #: methods/updraftvault.php:306
1628
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1629
  msgstr ""
1630
 
1631
- #: admin.php:629
1632
  msgid "Update quota count"
1633
  msgstr ""
1634
 
1635
- #: admin.php:628
1636
  msgid "Counting..."
1637
  msgstr ""
1638
 
1639
- #: admin.php:627
1640
  msgid "Disconnecting..."
1641
  msgstr ""
1642
 
1643
- #: admin.php:625
1644
  msgid "Connecting..."
1645
  msgstr ""
1646
 
1647
- #: methods/updraftvault.php:380 methods/updraftvault.php:449
1648
  msgid "Refresh current status"
1649
  msgstr ""
1650
 
1651
- #: methods/updraftvault.php:378 methods/updraftvault.php:394
1652
- #: methods/updraftvault.php:396 methods/updraftvault.php:449
1653
  msgid "Get more quota"
1654
  msgstr ""
1655
 
1656
- #: methods/updraftvault.php:375 methods/updraftvault.php:391
1657
- #: methods/updraftvault.php:430
1658
  msgid "Current use:"
1659
  msgstr ""
1660
 
1661
- #: methods/updraftvault.php:370
1662
  msgid "You can get more quota here"
1663
  msgstr ""
1664
 
1665
- #: methods/updraftvault.php:370
1666
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1667
  msgstr ""
1668
 
1669
- #: admin.php:626 methods/updraftvault.php:362
1670
  msgid "Disconnect"
1671
  msgstr ""
1672
 
1673
- #: methods/updraftvault.php:354
1674
  msgid "Quota:"
1675
  msgstr ""
1676
 
1677
- #: methods/updraftvault.php:352
1678
  msgid "Vault owner"
1679
  msgstr ""
1680
 
1681
- #: methods/updraftvault.php:352
1682
  msgid "Well done - there's nothing more needed to set up."
1683
  msgstr ""
1684
 
1685
- #: methods/updraftvault.php:352
1686
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1687
  msgstr ""
1688
 
1689
- #: methods/updraftvault.php:348
1690
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1691
  msgstr ""
1692
 
1693
- #: methods/updraftvault.php:324
1694
  msgid "Go here for help"
1695
  msgstr ""
1696
 
1697
- #: methods/updraftvault.php:319
1698
  msgid "E-mail"
1699
  msgstr ""
1700
 
1701
- #: methods/updraftvault.php:312 methods/updraftvault.php:327
1702
  msgid "Back..."
1703
  msgstr ""
1704
 
1705
- #: methods/updraftvault.php:306
1706
  msgid "Subscriptions can be cancelled at any time."
1707
  msgstr ""
1708
 
1709
- #: methods/updraftvault.php:289 methods/updraftvault.php:295
1710
- #: methods/updraftvault.php:301
1711
  msgid "%s per quarter"
1712
  msgstr ""
1713
 
1714
- #: central/bootstrap.php:542 methods/updraftvault.php:279
1715
- #: methods/updraftvault.php:309
1716
  msgid "Read more about it here."
1717
  msgstr ""
1718
 
1719
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1720
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1721
  msgstr ""
1722
 
1723
- #: methods/updraftvault.php:275
1724
  msgid "Already purchased space?"
1725
  msgstr ""
1726
 
1727
- #: methods/updraftvault.php:272
1728
  msgid "Show the options"
1729
  msgstr ""
1730
 
1731
- #: methods/updraftvault.php:271
1732
  msgid "First time user?"
1733
  msgstr ""
1734
 
1735
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1736
  msgid "Press a button to get started."
1737
  msgstr ""
1738
 
1739
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1740
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1741
  msgstr ""
1742
 
1743
- #: methods/updraftvault.php:231
1744
  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."
1745
  msgstr ""
1746
 
1747
- #: methods/updraftvault.php:228
1748
  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!"
1749
  msgstr ""
1750
 
1751
- #: methods/updraftvault.php:225
1752
  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."
1753
  msgstr ""
1754
 
1755
- #: methods/updraftvault.php:48 methods/updraftvault.php:77
1756
  msgid "Updraft Vault"
1757
  msgstr ""
1758
 
1759
- #: addons/azure.php:366 addons/googlecloud.php:693 methods/s3.php:1040
1760
  msgid "Delete failed:"
1761
  msgstr ""
1762
 
1763
- #: backup.php:2994
1764
  msgid "The zip engine returned the message: %s."
1765
  msgstr ""
1766
 
@@ -1784,7 +1844,7 @@ msgstr ""
1784
  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."
1785
  msgstr ""
1786
 
1787
- #: addons/migrator.php:1742 admin.php:635
1788
  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."
1789
  msgstr ""
1790
 
@@ -1852,11 +1912,11 @@ msgstr ""
1852
  msgid "Backup made by %s"
1853
  msgstr ""
1854
 
1855
- #: methods/addon-base.php:177
1856
  msgid "This storage method does not allow downloading"
1857
  msgstr ""
1858
 
1859
- #: admin.php:3314
1860
  msgid "(backup set imported from remote location)"
1861
  msgstr ""
1862
 
@@ -1876,23 +1936,23 @@ msgstr ""
1876
  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."
1877
  msgstr ""
1878
 
1879
- #: addons/migrator.php:1770 admin.php:642
1880
  msgid "Testing connection..."
1881
  msgstr ""
1882
 
1883
- #: admin.php:639
1884
  msgid "Deleting..."
1885
  msgstr ""
1886
 
1887
- #: admin.php:638
1888
  msgid "key name"
1889
  msgstr ""
1890
 
1891
- #: admin.php:636
1892
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1893
  msgstr ""
1894
 
1895
- #: admin.php:633
1896
  msgid "Creating..."
1897
  msgstr ""
1898
 
@@ -1916,11 +1976,11 @@ msgstr ""
1916
  msgid "Or, send a backup to another site"
1917
  msgstr ""
1918
 
1919
- #: addons/migrator.php:1937 admin.php:643
1920
  msgid "Send"
1921
  msgstr ""
1922
 
1923
- #: addons/migrator.php:1931 admin.php:634
1924
  msgid "Send to site:"
1925
  msgstr ""
1926
 
@@ -1952,27 +2012,27 @@ msgstr ""
1952
  msgid "key"
1953
  msgstr ""
1954
 
1955
- #: methods/ftp.php:325
1956
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1957
  msgstr ""
1958
 
1959
- #: methods/ftp.php:323
1960
  msgid "Passive mode"
1961
  msgstr ""
1962
 
1963
- #: methods/ftp.php:319
1964
  msgid "Remote path"
1965
  msgstr ""
1966
 
1967
- #: methods/ftp.php:315
1968
  msgid "FTP password"
1969
  msgstr ""
1970
 
1971
- #: methods/ftp.php:311
1972
  msgid "FTP login"
1973
  msgstr ""
1974
 
1975
- #: methods/ftp.php:307
1976
  msgid "FTP server"
1977
  msgstr ""
1978
 
@@ -1984,15 +2044,15 @@ msgstr ""
1984
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1985
  msgstr ""
1986
 
1987
- #: addons/migrator.php:2180 admin.php:631
1988
  msgid "Add site"
1989
  msgstr ""
1990
 
1991
- #: admin.php:630
1992
  msgid "Adding..."
1993
  msgstr ""
1994
 
1995
- #: udaddons/options.php:338
1996
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1997
  msgstr ""
1998
 
@@ -2020,7 +2080,7 @@ msgstr ""
2020
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2021
  msgstr ""
2022
 
2023
- #: admin.php:622 admin.php:647 admin.php:648
2024
  msgid "You have made changes to your settings, and not saved."
2025
  msgstr ""
2026
 
@@ -2032,7 +2092,7 @@ msgstr ""
2032
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2033
  msgstr ""
2034
 
2035
- #: addons/azure.php:502 addons/migrator.php:1757 addons/onedrive.php:961
2036
  msgid "For longer help, including screenshots, follow this link."
2037
  msgstr ""
2038
 
@@ -2056,11 +2116,11 @@ msgstr ""
2056
  msgid "Please re-authorize the connection to your %s account."
2057
  msgstr ""
2058
 
2059
- #: methods/email.php:73
2060
  msgid "configure it here"
2061
  msgstr ""
2062
 
2063
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2064
  msgid "To remove the block, please go here."
2065
  msgstr ""
2066
 
@@ -2205,7 +2265,7 @@ msgstr ""
2205
  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)"
2206
  msgstr ""
2207
 
2208
- #: methods/s3.php:842
2209
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2210
  msgstr ""
2211
 
@@ -2221,17 +2281,17 @@ msgstr ""
2221
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2222
  msgstr ""
2223
 
2224
- #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:569
2225
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2226
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2227
  msgstr ""
2228
 
2229
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2230
  #: udaddons/updraftplus-addons.php:747
2231
  msgid "It appears that your web server's IP Address (%s) is blocked."
2232
  msgstr ""
2233
 
2234
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2235
  #: udaddons/updraftplus-addons.php:747
2236
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2237
  msgstr ""
@@ -2282,7 +2342,7 @@ msgstr ""
2282
  msgid "(at same time as files backup)"
2283
  msgstr ""
2284
 
2285
- #: admin.php:2840
2286
  msgid "No backup has been completed"
2287
  msgstr ""
2288
 
@@ -2330,12 +2390,12 @@ msgstr ""
2330
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2331
  msgstr ""
2332
 
2333
- #: methods/s3.php:136 methods/s3.php:137 methods/s3.php:138 methods/s3.php:146
2334
- #: methods/s3.php:147 methods/s3.php:148
2335
  msgid "%s Error: Failed to initialise"
2336
  msgstr ""
2337
 
2338
- #: templates/wp-admin/settings/form-contents.php:216
2339
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2340
  msgid "or"
2341
  msgstr ""
@@ -2345,38 +2405,38 @@ msgctxt "Uploader: Drop backup files here - or - Select Files"
2345
  msgid "or"
2346
  msgstr ""
2347
 
2348
- #: admin.php:616
2349
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2350
  msgstr ""
2351
 
2352
- #: addons/sftp.php:379
2353
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2354
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2355
  msgstr ""
2356
 
2357
- #: addons/sftp.php:342
2358
  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."
2359
  msgstr ""
2360
 
2361
- #: methods/openstack2.php:152
2362
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2363
  msgid "tenant"
2364
  msgstr ""
2365
 
2366
- #: methods/openstack2.php:102
2367
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2368
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2369
  msgstr ""
2370
 
2371
- #: templates/wp-admin/settings/form-contents.php:287
2372
  msgid "your site's admin address"
2373
  msgstr ""
2374
 
2375
- #: templates/wp-admin/settings/form-contents.php:287
2376
  msgid "Check this box to have a basic report sent to"
2377
  msgstr ""
2378
 
2379
- #: admin.php:2849
2380
  msgctxt "i.e. Non-automatic"
2381
  msgid "Manual"
2382
  msgstr ""
@@ -2390,11 +2450,11 @@ msgstr ""
2390
  msgid "Change Lock Settings"
2391
  msgstr ""
2392
 
2393
- #: addons/morefiles.php:185
2394
  msgid "Any other file/directory on your server that you wish to back up"
2395
  msgstr ""
2396
 
2397
- #: admin.php:2098
2398
  msgid "For even more features and personal support, check out "
2399
  msgstr ""
2400
 
@@ -2410,7 +2470,7 @@ msgstr ""
2410
  msgid "Database decryption phrase"
2411
  msgstr ""
2412
 
2413
- #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:621
2414
  msgid "Automatic backup before update"
2415
  msgstr ""
2416
 
@@ -2490,15 +2550,15 @@ msgstr ""
2490
  msgid "The admin password has now been removed."
2491
  msgstr ""
2492
 
2493
- #: addons/morefiles.php:74
2494
  msgid "(learn more about this significant option)"
2495
  msgstr ""
2496
 
2497
- #: udaddons/options.php:273
2498
  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."
2499
  msgstr ""
2500
 
2501
- #: admin.php:2431 admin.php:3337
2502
  msgid "View Log"
2503
  msgstr ""
2504
 
@@ -2515,7 +2575,7 @@ msgstr ""
2515
  msgid "and retain this many scheduled backups"
2516
  msgstr ""
2517
 
2518
- #: admin.php:2810
2519
  msgid "incremental backup; base backup: %s"
2520
  msgstr ""
2521
 
@@ -2527,28 +2587,28 @@ msgstr ""
2527
  msgid "Upload files into UpdraftPlus."
2528
  msgstr ""
2529
 
2530
- #: admin.php:846 includes/class-commands.php:363
2531
  #: templates/wp-admin/settings/tab-status.php:22
2532
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2533
  msgstr ""
2534
 
2535
- #: class-updraftplus.php:3949
2536
  msgid "Backup label:"
2537
  msgstr ""
2538
 
2539
- #: admin.php:1625
2540
  msgid "Error: unexpected file read fail"
2541
  msgstr ""
2542
 
2543
- #: backup.php:3000
2544
  msgid "check your log for more details."
2545
  msgstr ""
2546
 
2547
- #: backup.php:2998
2548
  msgid "your web hosting account appears to be full; please see: %s"
2549
  msgstr ""
2550
 
2551
- #: backup.php:2996
2552
  msgid "A zip error occurred"
2553
  msgstr ""
2554
 
@@ -2556,19 +2616,19 @@ msgstr ""
2556
  msgid "Your label for this backup (optional)"
2557
  msgstr ""
2558
 
2559
- #: addons/googlecloud.php:822 methods/googledrive.php:915
2560
  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."
2561
  msgstr ""
2562
 
2563
- #: methods/updraftvault.php:608 udaddons/updraftplus-addons.php:789
2564
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2565
  msgstr ""
2566
 
2567
- #: methods/updraftvault.php:605 udaddons/updraftplus-addons.php:785
2568
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2569
  msgstr ""
2570
 
2571
- #: methods/updraftvault.php:545 udaddons/updraftplus-addons.php:655
2572
  msgid "You need to supply both an email address and a password"
2573
  msgstr ""
2574
 
@@ -2576,11 +2636,11 @@ msgstr ""
2576
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2577
  msgstr ""
2578
 
2579
- #: class-updraftplus.php:3968
2580
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2581
  msgstr ""
2582
 
2583
- #: class-updraftplus.php:3968
2584
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2585
  msgstr ""
2586
 
@@ -2608,27 +2668,27 @@ msgstr ""
2608
  msgid "Rows per batch"
2609
  msgstr ""
2610
 
2611
- #: udaddons/options.php:102
2612
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2613
  msgstr ""
2614
 
2615
- #: udaddons/options.php:100 udaddons/options.php:102
2616
  msgid "You need to connect to receive future updates to UpdraftPlus."
2617
  msgstr ""
2618
 
2619
- #: class-updraftplus.php:3941
2620
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2621
  msgstr ""
2622
 
2623
- #: class-updraftplus.php:3941
2624
  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."
2625
  msgstr ""
2626
 
2627
- #: class-updraftplus.php:3941
2628
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2629
  msgstr ""
2630
 
2631
- #: class-updraftplus.php:3941
2632
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2633
  msgstr ""
2634
 
@@ -2653,7 +2713,7 @@ msgstr ""
2653
  msgid "UpdraftPlus is on social media - check us out!"
2654
  msgstr ""
2655
 
2656
- #: admin.php:3398
2657
  msgid "Why am I seeing this?"
2658
  msgstr ""
2659
 
@@ -2665,15 +2725,15 @@ msgstr ""
2665
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2666
  msgstr ""
2667
 
2668
- #: admin.php:1573 admin.php:1585
2669
  msgid "Start backup"
2670
  msgstr ""
2671
 
2672
- #: class-updraftplus.php:3913 restorer.php:996
2673
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2674
  msgstr ""
2675
 
2676
- #: admin.php:2754
2677
  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."
2678
  msgstr ""
2679
 
@@ -2681,11 +2741,11 @@ msgstr ""
2681
  msgid "Unless you have a problem, you can completely ignore everything here."
2682
  msgstr ""
2683
 
2684
- #: admin.php:1784
2685
  msgid "This file could not be uploaded"
2686
  msgstr ""
2687
 
2688
- #: admin.php:1749
2689
  msgid "You will find more information about this in the Settings section."
2690
  msgstr ""
2691
 
@@ -2705,7 +2765,7 @@ msgstr ""
2705
  msgid "Memory limit"
2706
  msgstr ""
2707
 
2708
- #: class-updraftplus.php:4071 restorer.php:1441
2709
  msgid "restoration"
2710
  msgstr ""
2711
 
@@ -2713,11 +2773,11 @@ msgstr ""
2713
  msgid "Table to be implicitly dropped: %s"
2714
  msgstr ""
2715
 
2716
- #: backup.php:832
2717
  msgid "Incremental"
2718
  msgstr ""
2719
 
2720
- #: backup.php:832
2721
  msgid "Full backup"
2722
  msgstr ""
2723
 
@@ -2733,7 +2793,7 @@ msgstr ""
2733
  msgid "Backup succeeded"
2734
  msgstr ""
2735
 
2736
- #: admin.php:2850 admin.php:2851 admin.php:2852 updraftplus.php:92
2737
  #: updraftplus.php:93
2738
  msgid "Every %s hours"
2739
  msgstr ""
@@ -2776,23 +2836,23 @@ msgstr ""
2776
  msgid "Too many database errors have occurred - aborting"
2777
  msgstr ""
2778
 
2779
- #: backup.php:898
2780
  msgid "read more at %s"
2781
  msgstr ""
2782
 
2783
- #: backup.php:898
2784
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2785
  msgstr ""
2786
 
2787
- #: methods/googledrive.php:921
2788
  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."
2789
  msgstr ""
2790
 
2791
- #: admin.php:3166
2792
  msgid "You have not yet made any backups."
2793
  msgstr ""
2794
 
2795
- #: templates/wp-admin/settings/form-contents.php:179
2796
  msgid "Database Options"
2797
  msgstr ""
2798
 
@@ -2808,30 +2868,30 @@ msgstr ""
2808
  msgid "Free disk space in account:"
2809
  msgstr ""
2810
 
2811
- #: admin.php:3924 templates/wp-admin/settings/tab-status.php:27
2812
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2813
  msgstr ""
2814
 
2815
- #: admin.php:456 admin.php:590 admin.php:1438
2816
  #: includes/deprecated-actions.php:30
2817
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2818
  #: templates/wp-admin/settings/tab-bar.php:6
2819
  msgid "Existing Backups"
2820
  msgstr ""
2821
 
2822
- #: admin.php:448 templates/wp-admin/settings/tab-bar.php:5
2823
  msgid "Current Status"
2824
  msgstr ""
2825
 
2826
- #: admin.php:851
2827
  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."
2828
  msgstr ""
2829
 
2830
- #: admin.php:851
2831
  msgid "To make a backup, just press the Backup Now button."
2832
  msgstr ""
2833
 
2834
- #: admin.php:851
2835
  msgid "Welcome to UpdraftPlus!"
2836
  msgstr ""
2837
 
@@ -2903,48 +2963,48 @@ msgstr ""
2903
  msgid "user"
2904
  msgstr ""
2905
 
2906
- #: class-updraftplus.php:1481
2907
  msgid "External database (%s)"
2908
  msgstr ""
2909
 
2910
- #: methods/googledrive.php:921
2911
  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."
2912
  msgstr ""
2913
 
2914
- #: methods/googledrive.php:386
2915
  msgid "failed to access parent folder"
2916
  msgstr ""
2917
 
2918
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2919
- #: methods/googledrive.php:343
2920
  msgid "However, subsequent access attempts failed:"
2921
  msgstr ""
2922
 
2923
- #: admin.php:3191
2924
  msgid "External database"
2925
  msgstr ""
2926
 
2927
- #: templates/wp-admin/settings/form-contents.php:321
2928
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2929
  msgstr ""
2930
 
2931
- #: templates/wp-admin/settings/form-contents.php:261
2932
  msgid "Back up more databases"
2933
  msgstr ""
2934
 
2935
- #: templates/wp-admin/settings/form-contents.php:218
2936
  msgid "First, enter the decryption key"
2937
  msgstr ""
2938
 
2939
- #: templates/wp-admin/settings/form-contents.php:200
2940
  msgid "You can manually decrypt an encrypted database here."
2941
  msgstr ""
2942
 
2943
- #: templates/wp-admin/settings/form-contents.php:188
2944
  msgid "It can also backup external databases."
2945
  msgstr ""
2946
 
2947
- #: templates/wp-admin/settings/form-contents.php:188
2948
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2949
  msgstr ""
2950
 
@@ -2952,7 +3012,7 @@ msgstr ""
2952
  msgid "use UpdraftPlus Premium"
2953
  msgstr ""
2954
 
2955
- #: class-updraftplus.php:3831
2956
  msgid "Decryption failed. The database file is encrypted."
2957
  msgstr ""
2958
 
@@ -2964,11 +3024,11 @@ msgstr ""
2964
  msgid "An error occurred on the first %s command - aborting run"
2965
  msgstr ""
2966
 
2967
- #: addons/moredatabase.php:98 backup.php:1360
2968
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2969
  msgstr ""
2970
 
2971
- #: backup.php:1360
2972
  msgid "database connection attempt failed."
2973
  msgstr ""
2974
 
@@ -2976,162 +3036,162 @@ msgstr ""
2976
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2977
  msgstr ""
2978
 
2979
- #: addons/google-enhanced.php:75
2980
  msgid "In %s, path names are case sensitive."
2981
  msgstr ""
2982
 
2983
- #: addons/azure.php:524 addons/google-enhanced.php:73 addons/onedrive.php:989
2984
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2985
  msgstr ""
2986
 
2987
- #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2988
  #: addons/onedrive.php:989
2989
  msgid "e.g. %s"
2990
  msgstr ""
2991
 
2992
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2993
  msgid "If the folder does not already exist, then it will be created."
2994
  msgstr ""
2995
 
2996
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2997
  msgid "Enter the path of the %s folder you wish to use here."
2998
  msgstr ""
2999
 
3000
- #: addons/azure.php:517 methods/openstack2.php:133
3001
  msgid "Container"
3002
  msgstr ""
3003
 
3004
- #: methods/openstack2.php:116
3005
  msgid "Leave this blank, and a default will be chosen."
3006
  msgstr ""
3007
 
3008
- #: methods/openstack2.php:107
3009
  msgid "Tenant"
3010
  msgstr ""
3011
 
3012
- #: methods/openstack2.php:107
3013
  msgid "Follow this link for more information"
3014
  msgstr ""
3015
 
3016
- #: methods/openstack2.php:99 methods/openstack2.php:157
3017
  msgid "authentication URI"
3018
  msgstr ""
3019
 
3020
- #: methods/openstack2.php:94
3021
  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."
3022
  msgstr ""
3023
 
3024
- #: methods/addon-base.php:194 methods/addon-base.php:214
3025
  msgid "Failed to download %s"
3026
  msgstr ""
3027
 
3028
- #: methods/addon-base.php:208
3029
  msgid "Failed to download"
3030
  msgstr ""
3031
 
3032
- #: methods/addon-base.php:106
3033
  msgid "failed to list files"
3034
  msgstr ""
3035
 
3036
- #: methods/addon-base.php:75 methods/addon-base.php:80
3037
  msgid "Failed to upload %s"
3038
  msgstr ""
3039
 
3040
- #: methods/dropbox.php:612 methods/dropbox.php:614
3041
  msgid "Success:"
3042
  msgstr ""
3043
 
3044
- #: addons/onedrive.php:997 methods/dropbox.php:513
3045
  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."
3046
  msgstr ""
3047
 
3048
- #: addons/onedrive.php:995 methods/dropbox.php:510
3049
  msgid "(You appear to be already authenticated)."
3050
  msgstr ""
3051
 
3052
- #: methods/dropbox.php:505 methods/dropbox.php:511 methods/dropbox.php:513
3053
  msgid "Dropbox"
3054
  msgstr ""
3055
 
3056
- #: addons/onedrive.php:994 methods/dropbox.php:505
3057
  msgid "Authenticate with %s"
3058
  msgstr ""
3059
 
3060
- #: methods/cloudfiles.php:409
3061
  msgid "Error downloading remote file: Failed to download"
3062
  msgstr ""
3063
 
3064
- #: methods/openstack-base.php:472 methods/openstack-base.php:477
3065
  msgid "Region: %s"
3066
  msgstr ""
3067
 
3068
- #: methods/openstack-base.php:471
3069
  msgid "%s error - we accessed the container, but failed to create a file within it"
3070
  msgstr ""
3071
 
3072
- #: methods/openstack-base.php:389
3073
  msgid "The %s object was not found"
3074
  msgstr ""
3075
 
3076
- #: methods/openstack-base.php:48 methods/openstack-base.php:312
3077
- #: methods/openstack-base.php:381
3078
  msgid "Could not access %s container"
3079
  msgstr ""
3080
 
3081
- #: methods/openstack-base.php:40 methods/openstack-base.php:108
3082
- #: methods/openstack-base.php:115 methods/openstack-base.php:304
3083
- #: methods/openstack-base.php:369
3084
  msgid "%s error - failed to access the container"
3085
  msgstr ""
3086
 
3087
- #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:520
3088
- #: methods/googledrive.php:970
3089
  msgid "Account holder's name: %s."
3090
  msgstr ""
3091
 
3092
- #: methods/googledrive.php:959
3093
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3094
  msgstr ""
3095
 
3096
- #: methods/googledrive.php:950
3097
  msgid "It is an ID number internal to Google Drive"
3098
  msgstr ""
3099
 
3100
- #: methods/googledrive.php:950
3101
  msgid "<strong>This is NOT a folder name</strong>."
3102
  msgstr ""
3103
 
3104
- #: addons/google-enhanced.php:72 addons/onedrive.php:988
3105
- #: methods/googledrive.php:946 methods/googledrive.php:956
3106
  msgid "Folder"
3107
  msgstr ""
3108
 
3109
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3110
- #: methods/googledrive.php:878
3111
  msgid "%s download: failed: file not found"
3112
  msgstr ""
3113
 
3114
- #: addons/googlecloud.php:579 methods/googledrive.php:363
3115
  msgid "Name: %s."
3116
  msgstr ""
3117
 
3118
- #: methods/googledrive.php:157
3119
  msgid "Google Drive list files: failed to access parent folder"
3120
  msgstr ""
3121
 
3122
- #: methods/insufficient.php:65 methods/viaaddon-base.php:87
3123
  msgid "Your %s version: %s."
3124
  msgstr ""
3125
 
3126
- #: methods/insufficient.php:64 methods/viaaddon-base.php:86
3127
  msgid "You will need to ask your web hosting company to upgrade."
3128
  msgstr ""
3129
 
3130
- #: methods/insufficient.php:17 methods/viaaddon-base.php:16
3131
  msgid "This remote storage method (%s) requires PHP %s or later."
3132
  msgstr ""
3133
 
3134
- #: admin.php:3743
3135
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3136
  msgstr ""
3137
 
@@ -3145,7 +3205,7 @@ msgstr ""
3145
 
3146
  #: addons/migrator.php:375
3147
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3148
- #: templates/wp-admin/settings/form-contents.php:208
3149
  msgid "This feature requires %s version %s or later"
3150
  msgstr ""
3151
 
@@ -3161,7 +3221,7 @@ msgstr ""
3161
  msgid "Failed to unpack the archive"
3162
  msgstr ""
3163
 
3164
- #: class-updraftplus.php:1048
3165
  msgid "Error - failed to download the file"
3166
  msgstr ""
3167
 
@@ -3181,44 +3241,44 @@ msgstr ""
3181
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3182
  msgstr ""
3183
 
3184
- #: addons/sftp.php:425
3185
  msgid "password/key"
3186
  msgstr " الرقم السري/المفتاح"
3187
 
3188
- #: addons/azure.php:510 addons/migrator.php:2198 addons/sftp.php:376
3189
- #: admin.php:637
3190
  msgid "Key"
3191
  msgstr "مفتاح"
3192
 
3193
- #: addons/sftp.php:371
3194
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3195
  msgstr "للدخول يجب ادخال إما الرقم السري أو المفتاح، وليس كلاهما."
3196
 
3197
- #: addons/sftp.php:308
3198
  msgid "The key provided was not in a valid format, or was corrupt."
3199
  msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فاسد."
3200
 
3201
- #: addons/sftp.php:47
3202
  msgid "SCP/SFTP password/key"
3203
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
3204
 
3205
- #: admin.php:3226
3206
  msgid "Files backup (created by %s)"
3207
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
3208
 
3209
- #: admin.php:3226
3210
  msgid "Files and database WordPress backup (created by %s)"
3211
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
3212
 
3213
- #: addons/importer.php:261 admin.php:3220 class-updraftplus.php:2514
3214
  msgid "Backup created by: %s."
3215
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
3216
 
3217
- #: admin.php:3189
3218
  msgid "Database (created by %s)"
3219
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
3220
 
3221
- #: admin.php:3183 admin.php:3222
3222
  msgid "unknown source"
3223
  msgstr "مصدر غير معروف"
3224
 
@@ -3230,31 +3290,31 @@ msgstr "إعادة فحص الإستضافة الإستضافة السحابية
3230
  msgid "Upload backup files"
3231
  msgstr "رفع ملفات النسخة الإحتياطية"
3232
 
3233
- #: admin.php:1828
3234
  msgid "This backup was created by %s, and can be imported."
3235
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
3236
 
3237
- #: admin.php:880
3238
  msgid "Read this page for a guide to possible causes and how to fix it."
3239
  msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
3240
 
3241
- #: admin.php:880
3242
  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."
3243
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
3244
 
3245
- #: admin.php:602 class-updraftplus.php:2521
3246
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3247
  msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
3248
 
3249
- #: admin.php:601
3250
  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."
3251
  msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
3252
 
3253
- #: admin.php:601 admin.php:602 class-updraftplus.php:2521
3254
  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))."
3255
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3256
 
3257
- #: admin.php:3223 includes/class-wpadmin-commands.php:143 restorer.php:1410
3258
  msgid "Backup created by unknown source (%s) - cannot be restored."
3259
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
3260
 
@@ -3266,24 +3326,24 @@ msgstr "مجلد (wp-content) غير موجود البثة بهذا الملف
3266
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3267
  msgstr "هذه النسخة من UpdraftPlus لا تستطيع التعامل مع نوع النسخ الإحتياطية هذا."
3268
 
3269
- #: methods/dropbox.php:300
3270
  msgid "%s returned an unexpected HTTP response: %s"
3271
  msgstr "أبدى %s إجابة HTTP غير متوقعة: %s"
3272
 
3273
- #: addons/sftp.php:885
3274
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3275
  msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
3276
 
3277
- #: methods/cloudfiles.php:234 methods/dropbox.php:281
3278
- #: methods/openstack-base.php:103
3279
  msgid "No settings were found"
3280
  msgstr "لم يتم العثور على الإعدادات"
3281
 
3282
- #: class-updraftplus.php:2642
3283
  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."
3284
  msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
3285
 
3286
- #: admin.php:568
3287
  msgid "Rescanning remote and local storage for backup sets..."
3288
  msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
3289
 
@@ -3300,24 +3360,24 @@ msgstr "ضبط المسارات المتعددة"
3300
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3301
  msgstr "تسجيل كافة الرسائل بسجل الرسائل (من المحتمل أنه فقط مديري الخادم من سيغب في هذه العملية)"
3302
 
3303
- #: addons/morefiles.php:428
3304
  msgid "No backup of location: there was nothing found to back up"
3305
  msgstr ""
3306
 
3307
- #: addons/moredatabase.php:234 addons/morefiles.php:224
3308
- #: addons/morefiles.php:245
3309
  msgid "Remove"
3310
  msgstr "حذف"
3311
 
3312
- #: methods/s3.php:814
3313
  msgid "Other %s FAQs."
3314
  msgstr "الأسئلة الشائعة %s الأخرى."
3315
 
3316
- #: templates/wp-admin/settings/form-contents.php:321
3317
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3318
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
3319
 
3320
- #: addons/morefiles.php:382 admin.php:2942
3321
  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."
3322
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
3323
 
@@ -3325,23 +3385,23 @@ msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها
3325
  msgid "Custom content type manager plugin data detected: clearing option cache"
3326
  msgstr "تم الكشف عن بيانات لإضافة إدارة نوع المحتوى: تنضيف الخيارات"
3327
 
3328
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1441
3329
  msgid "Your hosting company must enable these functions before %s can work."
3330
  msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
3331
 
3332
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1440
3333
  msgid "Your web server's PHP installation has these functions disabled: %s."
3334
  msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
3335
 
3336
- #: methods/ftp.php:281
3337
  msgid "encrypted FTP (explicit encryption)"
3338
  msgstr "خادم FTP مشفر (تشفير واضح)"
3339
 
3340
- #: methods/ftp.php:280
3341
  msgid "encrypted FTP (implicit encryption)"
3342
  msgstr "خادم FTP مشفر (تشفير غير واضح)"
3343
 
3344
- #: methods/ftp.php:279
3345
  msgid "regular non-encrypted FTP"
3346
  msgstr "خادم FTP غير مشفر اعتيادي"
3347
 
@@ -3349,7 +3409,7 @@ msgstr "خادم FTP غير مشفر اعتيادي"
3349
  msgid "Backup created by:"
3350
  msgstr "نسخة احتياطية أنشأها:"
3351
 
3352
- #: udaddons/options.php:482
3353
  msgid "Available to claim on this site"
3354
  msgstr "متوفر للطلب من هذا الموقع"
3355
 
@@ -3397,15 +3457,15 @@ msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا المو
3397
  msgid "Dismiss from main dashboard (for %s weeks)"
3398
  msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
3399
 
3400
- #: class-updraftplus.php:4121
3401
  msgid "The attempt to undo the double-compression succeeded."
3402
  msgstr "نجاح محاولة التراجع من الضغط المزدوج"
3403
 
3404
- #: class-updraftplus.php:4098 class-updraftplus.php:4119
3405
  msgid "The attempt to undo the double-compression failed."
3406
  msgstr "فشل محاولة التراجع من الضغط المزدوج"
3407
 
3408
- #: class-updraftplus.php:4091
3409
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3410
  msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
3411
 
@@ -3413,15 +3473,15 @@ msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مر
3413
  msgid "Constants"
3414
  msgstr "ثوابت"
3415
 
3416
- #: backup.php:1595
3417
  msgid "Failed to open database file for reading:"
3418
  msgstr "فشل في فتح ملف قاعدة البيانات للقراءة:"
3419
 
3420
- #: backup.php:1408
3421
  msgid "No database tables found"
3422
  msgstr "لم نجد أي جداول لقاعدة البيانات"
3423
 
3424
- #: backup.php:1406
3425
  msgid "please wait for the rescheduled attempt"
3426
  msgstr "فضلا انتظر محاولة إعادة الجدولة"
3427
 
@@ -3449,11 +3509,11 @@ msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبق
3449
  msgid "Errors occurred:"
3450
  msgstr "أخطاء حدثت:"
3451
 
3452
- #: admin.php:3418
3453
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3454
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
3455
 
3456
- #: templates/wp-admin/settings/form-contents.php:365
3457
  msgid "See this FAQ also."
3458
  msgstr "تابع هذه التعليمات أيضا."
3459
 
@@ -3473,7 +3533,7 @@ msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %
3473
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3474
  msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
3475
 
3476
- #: admin.php:855 class-updraftplus.php:597
3477
  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)"
3478
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
3479
 
@@ -3489,20 +3549,20 @@ msgstr "%s: تخطي ملف ذاكرة التخزين المؤقت (غير مو
3489
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3490
  msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
3491
 
3492
- #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
3493
  #: includes/ftp.class.php:47
3494
  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."
3495
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
3496
 
3497
- #: admin.php:3751
3498
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3499
  msgstr "لم يتم العثور على تصميم موقعكم الحالي، لمنع توقف تحميل الموقع، تم استرجاع التصميم الإفتراضي."
3500
 
3501
- #: admin.php:2006 admin.php:2016
3502
  msgid "Restore failed..."
3503
  msgstr "فشل في الإستعادة..."
3504
 
3505
- #: addons/moredatabase.php:130 admin.php:1227
3506
  msgid "Messages:"
3507
  msgstr "رسائل:"
3508
 
@@ -3596,98 +3656,98 @@ msgstr "اضافة قدرات محسنة لخدمة Rackspace "
3596
  msgid "Rackspace Cloud Files, enhanced"
3597
  msgstr "تم تعزيز ملفات المستضافة بخدمة Rackspace "
3598
 
3599
- #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:142
3600
  msgid "Cloud Files Container"
3601
  msgstr "حاوية الملفات السحابية"
3602
 
3603
- #: methods/cloudfiles-new.php:137
3604
  msgid "Cloud Files API Key"
3605
  msgstr "مفتاح API للملفات السحابية"
3606
 
3607
- #: methods/cloudfiles-new.php:132
3608
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3609
  msgstr "لإنشاء مستخدم فرعي ومفتاح API جديد لديه صلاحيات الوصول فقط إلى هذه الحاوية، قم بإستخدام هذه الإضافة."
3610
 
3611
- #: methods/cloudfiles-new.php:129
3612
  msgid "Cloud Files Username"
3613
  msgstr "اسم المستخدم للخدمة السحابية"
3614
 
3615
- #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:115
3616
  msgid "London (LON)"
3617
  msgstr "لندن (LON)"
3618
 
3619
- #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:114
3620
  msgid "Hong Kong (HKG)"
3621
  msgstr "هونغ كونغ (HKG)"
3622
 
3623
- #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:113
3624
  msgid "Northern Virginia (IAD)"
3625
  msgstr "ولاية فرجينيا الشمالية (IAD)"
3626
 
3627
- #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:112
3628
  msgid "Chicago (ORD)"
3629
  msgstr "شيكاغو (ORD)"
3630
 
3631
- #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:111
3632
  msgid "Sydney (SYD)"
3633
  msgstr "سيدني (SYD)"
3634
 
3635
- #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:110
3636
  msgid "Dallas (DFW) (default)"
3637
  msgstr "دالاس (DFW) (الافتراضي)"
3638
 
3639
- #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:105
3640
  msgid "Cloud Files Storage Region"
3641
  msgstr "منطقة الملفات السحابة"
3642
 
3643
- #: methods/cloudfiles-new.php:97
3644
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3645
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية"
3646
 
3647
- #: methods/cloudfiles-new.php:95
3648
  msgid "US or UK-based Rackspace Account"
3649
  msgstr "حساب Rackspace بالولايات المتحدة أو المملكة المتحدة"
3650
 
3651
- #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:95
3652
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3653
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية "
3654
 
3655
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3656
- #: methods/cloudfiles-new.php:39 methods/openstack-base.php:431
3657
- #: methods/openstack-base.php:433 methods/openstack-base.php:453
3658
  #: methods/openstack2.php:25
3659
  msgid "Authorisation failed (check your credentials)"
3660
  msgstr "فشل التفويض (راجع معلوماتك)"
3661
 
3662
- #: methods/updraftvault.php:525 udaddons/options.php:265
3663
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3664
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
3665
 
3666
- #: admin.php:615 central/bootstrap.php:513
3667
  msgid "Create"
3668
  msgstr "خلق"
3669
 
3670
- #: admin.php:577
3671
  msgid "Trying..."
3672
  msgstr "اعادة المحاولة..."
3673
 
3674
- #: admin.php:576
3675
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3676
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
3677
 
3678
- #: class-updraftplus.php:1493
3679
  msgid "(when decrypted)"
3680
  msgstr "(عندما تكون مفكوكة)"
3681
 
3682
- #: admin.php:587 admin.php:3693
3683
  msgid "Error data:"
3684
  msgstr "خطأ بالبيانات:"
3685
 
3686
- #: admin.php:3369
3687
  msgid "Backup does not exist in the backup history"
3688
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
3689
 
3690
- #: admin.php:2375
3691
  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."
3692
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
3693
 
@@ -3739,11 +3799,11 @@ msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تق
3739
  msgid "Email reports"
3740
  msgstr "تقارير البريد الإلكتروني"
3741
 
3742
- #: class-updraftplus.php:1489 class-updraftplus.php:1494
3743
  msgid "%s checksum: %s"
3744
  msgstr "%s الاختباري:%s"
3745
 
3746
- #: class-updraftplus.php:1462 class-updraftplus.php:1464
3747
  msgid "files: %s"
3748
  msgstr "ملفات:%s"
3749
 
@@ -3763,7 +3823,7 @@ msgstr "(مع وجود أخطاء (%s))"
3763
  msgid "Debugging information"
3764
  msgstr "معلومات التصحيح"
3765
 
3766
- #: addons/reporting.php:194 admin.php:3129
3767
  msgid "Uploaded to:"
3768
  msgstr "تحميلها على:"
3769
 
@@ -3783,7 +3843,7 @@ msgstr "أخطاء"
3783
  msgid "Errors / warnings:"
3784
  msgstr "أخطاء / تحذيرات:"
3785
 
3786
- #: addons/morefiles.php:62 addons/morefiles.php:63 addons/reporting.php:155
3787
  msgid "Contains:"
3788
  msgstr "يحتوي على:"
3789
 
@@ -3803,166 +3863,166 @@ msgstr "%d ساعة،%d دقيقة، %d ثانية"
3803
  msgid "%d errors, %d warnings"
3804
  msgstr "%d الأخطاء، %d تحذيرات"
3805
 
3806
- #: addons/onedrive.php:717 methods/dropbox.php:596
3807
  msgid "%s authentication"
3808
  msgstr "%s مصادقة"
3809
 
3810
- #: addons/onedrive.php:717 class-updraftplus.php:302 methods/dropbox.php:569
3811
- #: methods/dropbox.php:596 methods/dropbox.php:609 methods/dropbox.php:740
3812
  msgid "%s error: %s"
3813
  msgstr "%s خطأ: %s"
3814
 
3815
- #: addons/googlecloud.php:815 methods/dropbox.php:480
3816
  msgid "%s logo"
3817
  msgstr "%s الشعار"
3818
 
3819
- #: methods/dropbox.php:214
3820
  msgid "%s did not return the expected response - check your log file for more details"
3821
  msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
3822
 
3823
- #: methods/s3.php:279
3824
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3825
  msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
3826
 
3827
- #: methods/email.php:74
3828
  msgid "For more options, use the \"%s\" add-on."
3829
  msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\"."
3830
 
3831
- #: methods/email.php:73
3832
  msgid "Your site's admin email address (%s) will be used."
3833
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
3834
 
3835
- #: admin.php:624 methods/updraftvault.php:276 methods/updraftvault.php:321
3836
- #: udaddons/options.php:244
3837
  msgid "Connect"
3838
  msgstr "الإتصال"
3839
 
3840
- #: templates/wp-admin/settings/form-contents.php:289
3841
  msgid "For more reporting features, use the Reporting add-on."
3842
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
3843
 
3844
- #: class-updraftplus.php:3901
3845
  msgid "(version: %s)"
3846
  msgstr "(الإصدار: %s)"
3847
 
3848
- #: addons/reporting.php:438 admin.php:566
3849
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3850
  msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
3851
 
3852
- #: addons/reporting.php:438 admin.php:565
3853
  msgid "When the Email storage method is enabled, also send the entire backup"
3854
  msgstr "عندما يتم تمكين طريقة تخزين البريد الإلكتروني، قم أيضا بإرسال النسخ الاحتياطي كاملة"
3855
 
3856
- #: addons/reporting.php:153 backup.php:933
3857
  msgid "Latest status:"
3858
  msgstr "آخر التحديثات:"
3859
 
3860
- #: backup.php:932
3861
  msgid "Backup contains:"
3862
  msgstr "تحتوي النسخة الإحتياطية على:"
3863
 
3864
- #: backup.php:889
3865
  msgid "Backed up: %s"
3866
  msgstr "نسخ احتياطي: %s"
3867
 
3868
- #: addons/reporting.php:236 backup.php:883
3869
  msgid "The log file has been attached to this email."
3870
  msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
3871
 
3872
- #: backup.php:847
3873
  msgid "Unknown/unexpected error - please raise a support request"
3874
  msgstr "خطأ غير معروف / غير متوقع - يرجى رفع طلب دعم"
3875
 
3876
- #: backup.php:844
3877
  msgid "Database only (files were not part of this particular schedule)"
3878
  msgstr " قاعدة البيانات فقط (لن يتم خلق نسخ احتياطية للملفات)"
3879
 
3880
- #: backup.php:844
3881
  msgid "Database (files backup has not completed)"
3882
  msgstr "قاعدة بيانات (لم يتم إكمال نسخ الملفات احتياطيا)"
3883
 
3884
- #: backup.php:841
3885
  msgid "Files only (database was not part of this particular schedule)"
3886
  msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقاعدة البيانات)"
3887
 
3888
- #: backup.php:841
3889
  msgid "Files (database backup has not completed)"
3890
  msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
3891
 
3892
- #: admin.php:229 backup.php:839
3893
  msgid "Files and database"
3894
  msgstr "ملفات وقواعد البيانات"
3895
 
3896
- #: options.php:186
3897
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3898
  msgstr "(هذا ينطبق على جميع الإضافات للنسخ الاحتياطي لووردبريس ما لم تكن برمجة من أجل التوافق مع تعدد المواقع)."
3899
 
3900
- #: options.php:186
3901
  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>."
3902
  msgstr "عند عدم الترقية، سيقوم UpdraftPlus بالسماح <strong>لكل</strong> مدير بالمدونة بالتعديل على خيارات الإضافة للخسن الإحتياطي (وبالتالي الوصول للبيانات، بما في ذلك كلمات السر) وإستعادة (مع امكانية التعديل، مثال: كلمات السر) <strong>الشبكة بالكامل</strong>."
3903
 
3904
- #: options.php:186
3905
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3906
  msgstr "دعم مواقع ووردبريس متعددة، مع امتيازات اضافية، على حساب UpdraftPlus المميز، أو بإضافة المواقع المتعددة."
3907
 
3908
- #: options.php:186
3909
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3910
  msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (شبكة a.k.a.)."
3911
 
3912
- #: options.php:186
3913
  msgid "UpdraftPlus warning:"
3914
  msgstr "تحذير UpdraftPlus :"
3915
 
3916
- #: udaddons/options.php:488
3917
  msgid "(or connect using the form on this page if you have already purchased it)"
3918
  msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
3919
 
3920
- #: udaddons/options.php:474
3921
  msgid "please follow this link to update the plugin in order to activate it"
3922
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل تفعيله"
3923
 
3924
- #: udaddons/options.php:471
3925
  msgid "please follow this link to update the plugin in order to get it"
3926
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل الحصول عليه"
3927
 
3928
- #: udaddons/options.php:461 udaddons/options.php:463
3929
  msgid "latest"
3930
  msgstr "آخر"
3931
 
3932
- #: udaddons/options.php:459
3933
  msgid "Your version: %s"
3934
  msgstr "الإصدار: %s"
3935
 
3936
- #: udaddons/options.php:457
3937
  msgid "You've got it"
3938
  msgstr "كنت قد حصلت عليه"
3939
 
3940
- #: udaddons/options.php:423
3941
  msgid "UpdraftPlus Support"
3942
  msgstr "دعم UpdraftPlus"
3943
 
3944
- #: udaddons/options.php:381
3945
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3946
  msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
3947
 
3948
- #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3949
  msgid "UpdraftPlus Addons"
3950
  msgstr "اضافات UpdraftPlus"
3951
 
3952
- #: udaddons/options.php:94
3953
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
3954
  msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
3955
 
3956
- #: methods/updraftvault.php:598 methods/updraftvault.php:616
3957
  #: udaddons/updraftplus-addons.php:795
3958
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3959
  msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
3960
 
3961
- #: methods/updraftvault.php:612 udaddons/updraftplus-addons.php:792
3962
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3963
  msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
3964
 
3965
- #: methods/updraftvault.php:571 udaddons/updraftplus-addons.php:752
3966
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3967
  msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
3968
 
@@ -3974,16 +4034,16 @@ msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة"
3974
  msgid "We failed to successfully connect to UpdraftPlus.Com"
3975
  msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
3976
 
3977
- #: methods/email.php:74 templates/wp-admin/settings/form-contents.php:270
3978
  #: templates/wp-admin/settings/tab-addons.php:200
3979
  msgid "Reporting"
3980
  msgstr "التقارير"
3981
 
3982
- #: admin.php:4104
3983
  msgid "Options (raw)"
3984
  msgstr "خيارات (الخام)"
3985
 
3986
- #: addons/reporting.php:436 admin.php:564
3987
  msgid "Send a report only when there are warnings/errors"
3988
  msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
3989
 
@@ -3995,147 +4055,147 @@ msgstr "رابط المحتوى:"
3995
  msgid "You should check the file ownerships and permissions in your WordPress installation"
3996
  msgstr ""
3997
 
3998
- #: templates/wp-admin/settings/form-contents.php:174
3999
  msgid "See also the \"More Files\" add-on from our shop."
4000
  msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
4001
 
4002
- #: backup.php:2987 class-updraftplus.php:610
4003
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4004
  msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
4005
 
4006
- #: class-updraftplus.php:594
4007
  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)"
4008
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
4009
 
4010
- #: udaddons/options.php:547
4011
  msgid "Manage Addons"
4012
  msgstr "ادارة الأضافات"
4013
 
4014
- #: udaddons/options.php:489
4015
  msgid "Buy It"
4016
  msgstr "شراء"
4017
 
4018
- #: udaddons/options.php:488
4019
  msgid "Get it from the UpdraftPlus.Com Store"
4020
  msgstr "الحصول علية من متجر UpdraftPlus.Com"
4021
 
4022
- #: udaddons/options.php:482 udaddons/options.php:484
4023
  msgid "activate it on this site"
4024
  msgstr "تنشيطة على هذا الموقع"
4025
 
4026
- #: udaddons/options.php:484
4027
  msgid "You have an inactive purchase"
4028
  msgstr "لديك شراء غير فعال"
4029
 
4030
- #: udaddons/options.php:474
4031
  msgid "Assigned to this site"
4032
  msgstr "تعيين إلى هذا الموقع"
4033
 
4034
- #: udaddons/options.php:471
4035
  msgid "Available for this site (via your all-addons purchase)"
4036
  msgstr "متاح لهذا الموقع (عن طريق الأضافات المشتراة)"
4037
 
4038
- #: udaddons/options.php:465
4039
  msgid "(apparently a pre-release or withdrawn release)"
4040
  msgstr "(على ما يبدو انة اصدار قبل الاصدار الرسمى او اصدار مسحوب)"
4041
 
4042
- #: udaddons/options.php:425
4043
  msgid "Go here"
4044
  msgstr "اذهب هنا"
4045
 
4046
- #: udaddons/options.php:425
4047
  msgid "Need to get support?"
4048
  msgstr "هل انت بحاجة للحصول على الدعم؟"
4049
 
4050
- #: udaddons/options.php:407
4051
  msgid "An error occurred when trying to retrieve your add-ons."
4052
  msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
4053
 
4054
- #: udaddons/options.php:340
4055
  msgid "An unknown response was received. Response was:"
4056
  msgstr "تم تلقى رد غير معروف. الرد هو:"
4057
 
4058
- #: udaddons/options.php:339
4059
  msgid "Claim not granted - your account login details were wrong"
4060
  msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
4061
 
4062
- #: udaddons/options.php:337
4063
  msgid "Please wait whilst we make the claim..."
4064
  msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
4065
 
4066
- #: udaddons/options.php:290
4067
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4068
  msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
4069
 
4070
- #: udaddons/options.php:281
4071
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4072
  msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
4073
 
4074
- #: udaddons/options.php:272
4075
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4076
  msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
4077
 
4078
- #: udaddons/options.php:271
4079
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4080
  msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
4081
 
4082
- #: udaddons/options.php:242
4083
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4084
  msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
4085
 
4086
- #: udaddons/options.php:183
4087
  msgid "Forgotten your details?"
4088
  msgstr "هل نسيت التفاصيل الخاصة بك؟"
4089
 
4090
- #: udaddons/options.php:172
4091
  msgid "Not yet got an account (it's free)? Go get one!"
4092
  msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
4093
 
4094
- #: udaddons/options.php:141
4095
  msgid "Connect with your UpdraftPlus.Com account"
4096
  msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
4097
 
4098
- #: udaddons/options.php:120
4099
  msgid "Your web server's version of PHP is too old ("
4100
  msgstr "إصدار خادم الويب الخاص بك من PHP قديم جدا ("
4101
 
4102
- #: udaddons/options.php:114
4103
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4104
  msgstr "على ما يبدو انة لديك المكون الأضافى Updraft مثبت - ربما تم تثبيتة بطريقة خاطئة؟"
4105
 
4106
- #: udaddons/options.php:113
4107
  msgid "Go here to begin installing it."
4108
  msgstr "اذهب هنا لبدء تثبيته."
4109
 
4110
- #: udaddons/options.php:113
4111
  msgid "UpdraftPlus is not yet installed."
4112
  msgstr "لم يتم تثبيت UpdraftPlus حتى الآن."
4113
 
4114
- #: udaddons/options.php:110
4115
  msgid "Go here to activate it."
4116
  msgstr "اذهب هنا لتنشيطه."
4117
 
4118
- #: udaddons/options.php:109
4119
  msgid "UpdraftPlus is not yet activated."
4120
  msgstr "UpdraftPlus لم يتم تنشيطة حتى الأن."
4121
 
4122
- #: udaddons/options.php:100 udaddons/options.php:102
4123
  msgid "Go here to connect."
4124
  msgstr "اذهب هنا للاتصال."
4125
 
4126
- #: udaddons/options.php:100
4127
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4128
  msgstr "حتى الأن انت غير متصل بحسابك فى UpdraftPlus.Com, لتتمكن من استخدام الأضافات اللتى قمت بشرائها."
4129
 
4130
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4131
  msgid "Without it, encryption will be a lot slower."
4132
  msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
4133
 
4134
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4135
  msgid "Your web-server does not have the %s module installed."
4136
  msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
4137
 
4138
- #: addons/googlecloud.php:898 methods/googledrive.php:966
4139
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4140
  msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
4141
 
@@ -4143,15 +4203,15 @@ msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong>
4143
  msgid "Drop backup files here"
4144
  msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
4145
 
4146
- #: admin.php:575
4147
  msgid "The web server returned an error code (try again, or check your web server logs)"
4148
  msgstr "اعاد خادم الويب برمز خطأ (حاول مجددا, او قم بالتحقق من سجلات خادم الويب الخاص بك)"
4149
 
4150
- #: admin.php:573
4151
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4152
  msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إغلاق المتصفح حتى اعطائك التقرير بأنة تم انتهاء العملية."
4153
 
4154
- #: admin.php:570
4155
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4156
  msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
4157
 
@@ -4159,7 +4219,7 @@ msgstr "إذا قمت باستبعاد كل من قاعدة البيانات و
4159
  msgid "Site home:"
4160
  msgstr "الصفحة الرئيسية للموقع:"
4161
 
4162
- #: addons/morestorage.php:78
4163
  msgid "Remote Storage Options"
4164
  msgstr "خيارات التخزين البعيد"
4165
 
@@ -4171,7 +4231,7 @@ msgstr "(السجلات يمكن العثور عليها فى صفحة اعدا
4171
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4172
  msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
4173
 
4174
- #: addons/azure.php:351 methods/stream-base.php:125 methods/stream-base.php:130
4175
  msgid "Upload failed"
4176
  msgstr "فشل التحميل"
4177
 
@@ -4179,11 +4239,11 @@ msgstr "فشل التحميل"
4179
  msgid "You can send a backup to more than one destination with an add-on."
4180
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
4181
 
4182
- #: admin.php:2593
4183
  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."
4184
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
4185
 
4186
- #: admin.php:2491
4187
  msgid "(%s%%, file %s of %s)"
4188
  msgstr "(%s%%, ملف %s من%s)"
4189
 
@@ -4192,124 +4252,124 @@ msgstr "(%s%%, ملف %s من%s)"
4192
  msgid "Read more about how this works..."
4193
  msgstr "قراءة المزيد عن كيفية عمل ذلك ..."
4194
 
4195
- #: addons/sftp.php:485
4196
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4197
  msgstr "فشل:تمكنا من تسجيل الدخول، لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
4198
 
4199
- #: addons/sftp.php:483
4200
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4201
  msgstr "فشل:لقد تمكنا من تسجيل الدخول والانتقال إلى الدليل المشار إليه،لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
4202
 
4203
- #: addons/sftp.php:402
4204
  msgid "Use SCP instead of SFTP"
4205
  msgstr "استخدام SCP بدلا من SFTP"
4206
 
4207
- #: addons/sftp.php:46
4208
  msgid "SCP/SFTP user setting"
4209
  msgstr "اعداد مستخدم SCP/SFTP"
4210
 
4211
- #: addons/sftp.php:45
4212
  msgid "SCP/SFTP host setting"
4213
  msgstr "اعداد استضافة SCP/SFTP"
4214
 
4215
- #: methods/email.php:58
4216
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4217
  msgstr "محاولة ارسال النسخ الأحتياطى عن طريق البريد الألكترونى فشلت (من المحتمل ان يكون ملف النسخ الاحتياطى اكبر من المساحة المسموح بها فى البريد)"
4218
 
4219
- #: methods/email.php:45
4220
  msgid "Backup is of: %s."
4221
  msgstr "النسخ الأحتياطى من: %s"
4222
 
4223
- #: admin.php:662
4224
  msgid "%s settings test result:"
4225
  msgstr "اعدادات نتيجة اختبار %s"
4226
 
4227
- #: admin.php:3287 admin.php:3289
4228
  msgid "(Not finished)"
4229
  msgstr "(غير منتهي)"
4230
 
4231
- #: admin.php:3289
4232
  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."
4233
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
4234
 
4235
- #: templates/wp-admin/settings/form-contents.php:348
4236
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4237
  msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل الإضافات، لأن ذلك سوف يسبب الإعادة (نسخة احتياطية من نسخة احتياطية من نسخة احتياطية من......)."
4238
 
4239
- #: templates/wp-admin/settings/form-contents.php:348
4240
  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)."
4241
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
4242
 
4243
- #: admin.php:2588
4244
  msgid "Job ID: %s"
4245
  msgstr "رقم الوظيفة: %s"
4246
 
4247
- #: admin.php:2573
4248
  msgid "last activity: %ss ago"
4249
  msgstr "آخر نشاط: منذ %ss"
4250
 
4251
- #: admin.php:2572
4252
  msgid "next resumption: %d (after %ss)"
4253
  msgstr "الاستئناف التالي: %d (بعد %ss)"
4254
 
4255
- #: admin.php:2555 central/bootstrap.php:405 central/bootstrap.php:412
4256
- #: methods/updraftvault.php:356 methods/updraftvault.php:436
4257
  msgid "Unknown"
4258
  msgstr "غير معروف"
4259
 
4260
- #: admin.php:2505
4261
  msgid "Backup finished"
4262
  msgstr "الانتهاء من النسخ الاحتياطي"
4263
 
4264
- #: admin.php:2500
4265
  msgid "Waiting until scheduled time to retry because of errors"
4266
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
4267
 
4268
- #: admin.php:2496
4269
  msgid "Pruning old backup sets"
4270
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
4271
 
4272
- #: admin.php:2484
4273
  msgid "Uploading files to remote storage"
4274
  msgstr "تحميل الملفات للمخزن البعيد"
4275
 
4276
- #: admin.php:2553
4277
  msgid "Encrypted database"
4278
  msgstr "قاعدة بيانات مشفرة"
4279
 
4280
- #: admin.php:2545
4281
  msgid "Encrypting database"
4282
  msgstr "تشفير قاعدة البيانات"
4283
 
4284
- #: admin.php:2519
4285
  msgid "Created database backup"
4286
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
4287
 
4288
- #: admin.php:2532
4289
  msgid "table: %s"
4290
  msgstr "الجدول: %s"
4291
 
4292
- #: admin.php:2530
4293
  msgid "Creating database backup"
4294
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
4295
 
4296
- #: admin.php:2478
4297
  msgid "Created file backup zips"
4298
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
4299
 
4300
- #: admin.php:2465
4301
  msgid "Creating file backup zips"
4302
  msgstr "انشاء ملف النسخ الاحتياطى zips"
4303
 
4304
- #: admin.php:2460
4305
  msgid "Backup begun"
4306
  msgstr "بدأ النسخ الاحتياطى"
4307
 
4308
- #: admin.php:2303
4309
  msgid "Backups in progress:"
4310
  msgstr "تقدم النسخ الأحتياطى:"
4311
 
4312
- #: admin.php:859
4313
  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."
4314
  msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
4315
 
@@ -4325,26 +4385,26 @@ msgstr "مجلد"
4325
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4326
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
4327
 
4328
- #: class-updraftplus.php:2739
4329
  msgid "The backup has not finished; a resumption is scheduled"
4330
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
4331
 
4332
- #: class-updraftplus.php:1734
4333
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4334
  msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
4335
 
4336
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4337
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4338
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4339
- #: methods/googledrive.php:244
4340
  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)."
4341
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
4342
 
4343
- #: admin.php:2126
4344
  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)."
4345
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
4346
 
4347
- #: addons/autobackup.php:1006 admin.php:617
4348
  msgid "Proceed with update"
4349
  msgstr "المضي قدما مع التحديث"
4350
 
@@ -4397,19 +4457,19 @@ msgstr "انشاء %s وقاعدة البيانات الاحتياطية عن
4397
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4398
  msgstr "النسخ الاحتياطي تلقائيا (حسب الحاجة) للملحقات, الثيمات و قاعدة بيانات وردبريس مع UpdraftPlus قبل التحديث"
4399
 
4400
- #: addons/morefiles.php:170 addons/morefiles.php:171
4401
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4402
  msgstr "اذا لم تكن متأكدا يجب عليك التوقف; والأ من المحتمل تدمير نسخة الورد بريس الخاصة بك"
4403
 
4404
- #: addons/morefiles.php:170 addons/morefiles.php:171
4405
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4406
  msgstr "هذة تبدو كأنها نسخة احتياطية اساسية صالحة للوردبريس - الملف %s كان مفقود."
4407
 
4408
- #: addons/morefiles.php:123
4409
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4410
  msgstr "غير قادر على فتح ملف مضغوط (%s) - لا يمكن القيام بالفحص للتحقق من سلامتة."
4411
 
4412
- #: addons/morefiles.php:113
4413
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4414
  msgstr "غير قادر على قراءة الملف المضغوط (%s) - لم يمكن فحصه للتأكد من سلامتة."
4415
 
@@ -4422,31 +4482,31 @@ msgstr "مزيد من الملحقات"
4422
  msgid "Support"
4423
  msgstr "الدعم"
4424
 
4425
- #: class-updraftplus.php:4054
4426
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4427
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
4428
 
4429
- #: class-updraftplus.php:4046
4430
  msgid "This database backup is missing core WordPress tables: %s"
4431
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
4432
 
4433
- #: class-updraftplus.php:3934
4434
  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."
4435
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
4436
 
4437
- #: class-updraftplus.php:3850
4438
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4439
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
4440
 
4441
- #: addons/autobackup.php:556 admin.php:827
4442
  msgid "Update Theme"
4443
  msgstr "تحديث الثيم"
4444
 
4445
- #: addons/autobackup.php:505 admin.php:823
4446
  msgid "Update Plugin"
4447
  msgstr "تحديث المكون الإضافي"
4448
 
4449
- #: addons/autobackup.php:985 admin.php:696 includes/updraftplus-notices.php:171
4450
  msgid "Be safe with an automatic backup"
4451
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
4452
 
@@ -4454,71 +4514,71 @@ msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
4454
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4455
  msgstr "مسار الرفع (%s) غير موجود - إعادة ضبط (%s)"
4456
 
4457
- #: admin.php:2078
4458
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4459
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
4460
 
4461
- #: admin.php:611
4462
  msgid "The file was uploaded."
4463
  msgstr "تم رفع الملف."
4464
 
4465
- #: admin.php:610
4466
  msgid "Unknown server response status:"
4467
  msgstr "استجابة الخادم غير معروفة:"
4468
 
4469
- #: admin.php:609
4470
  msgid "Unknown server response:"
4471
  msgstr "استجابة الملقم غير معروف:"
4472
 
4473
- #: admin.php:608
4474
  msgid "This decryption key will be attempted:"
4475
  msgstr "سيتم محاولة فتح مفتاح التشفير:"
4476
 
4477
- #: admin.php:607
4478
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4479
  msgstr "اتبع هذا الرابط لمحاولة فك التشفير وتحميل ملف قاعدة البيانات على جهازك."
4480
 
4481
- #: admin.php:606
4482
  msgid "Upload error"
4483
  msgstr "خطأ فى الرفع"
4484
 
4485
- #: admin.php:605
4486
  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)."
4487
  msgstr "هذا الملف لا يبدو انة ملف UpdraftPlus مضغوط مشفر لقاعدة البيانات (هذة الملفات .gz.crypt التى لديها اسم مثل: backup_(time)_(site name)_(code)_db.crypt.gz)."
4488
 
4489
- #: admin.php:604
4490
  msgid "Upload error:"
4491
  msgstr "خطأ التحميل:"
4492
 
4493
- #: admin.php:603
4494
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4495
  msgstr "(تأكد من انك كنت تحاول رفع ملف مضغوط تم إنشاؤه مسبقا من قبل UpdraftPlus)"
4496
 
4497
- #: admin.php:594
4498
  msgid "Download to your computer"
4499
  msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
4500
 
4501
- #: admin.php:593
4502
  msgid "Delete from your web server"
4503
  msgstr "حذف من خادم الويب الخاص بك"
4504
 
4505
- #: methods/s3.php:774
4506
  msgid "Examples of S3-compatible storage providers:"
4507
  msgstr "امثلة من مقدمى التخزين المتوافق-s3:"
4508
 
4509
- #: admin.php:3643
4510
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4511
  msgstr "لن يتم حذف اى ارشيف بعد فك الضغط عنة, بسبب عدم وجود سحابة التخزين لهذه النسخة الاحتياطية"
4512
 
4513
- #: admin.php:3260
4514
  msgid "You appear to be missing one or more archives from this multi-archive set."
4515
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
4516
 
4517
- #: admin.php:3257
4518
  msgid "(%d archive(s) in set)."
4519
  msgstr "(%d الأرشيف(s) in set)."
4520
 
4521
- #: templates/wp-admin/settings/form-contents.php:325
4522
  msgid "Split archives every:"
4523
  msgstr "تقسيم كل ارشيف:"
4524
 
@@ -4526,15 +4586,15 @@ msgstr "تقسيم كل ارشيف:"
4526
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4527
  msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
4528
 
4529
- #: admin.php:584
4530
  msgid "Warnings:"
4531
  msgstr "تحذيرات:"
4532
 
4533
- #: admin.php:583
4534
  msgid "Error: the server sent an empty response."
4535
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
4536
 
4537
- #: admin.php:1839
4538
  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?"
4539
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
4540
 
@@ -4570,7 +4630,7 @@ msgstr "الملف غير موجود (تحتاج الى رفعة): %s"
4570
  msgid "No such backup set exists"
4571
  msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
4572
 
4573
- #: admin.php:1115
4574
  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"
4575
  msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
4576
 
@@ -4586,19 +4646,19 @@ msgstr "فشل فى نقل الملف (تحقق من صلاحيات الملف
4586
  msgid "Moving unpacked backup into place..."
4587
  msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
4588
 
4589
- #: backup.php:2691 backup.php:2947
4590
  msgid "Failed to open the zip file (%s) - %s"
4591
  msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4592
 
4593
- #: addons/morefiles.php:101
4594
  msgid "WordPress root directory server path: %s"
4595
  msgstr "مسار جذر الوردبريس فى الخادم: %s"
4596
 
4597
- #: methods/s3.php:819
4598
  msgid "%s end-point"
4599
  msgstr "نقطة النهاية %s "
4600
 
4601
- #: methods/s3.php:781
4602
  msgid "... and many more!"
4603
  msgstr "... وغيرها الكثير!"
4604
 
@@ -4606,31 +4666,31 @@ msgstr "... وغيرها الكثير!"
4606
  msgid "S3 (Compatible)"
4607
  msgstr "S3 (متوافق)"
4608
 
4609
- #: admin.php:3564
4610
  msgid "File is not locally present - needs retrieving from remote storage"
4611
  msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
4612
 
4613
- #: admin.php:3551
4614
  msgid "Looking for %s archive: file name: %s"
4615
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
4616
 
4617
- #: admin.php:3512
4618
  msgid "Final checks"
4619
  msgstr "الفحوصات النهائية"
4620
 
4621
- #: templates/wp-admin/settings/form-contents.php:331
4622
  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)."
4623
  msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأحتياطى الزائدة من السيرفر الخاص بك بعد انتهاء عملية النسخ الأحتياطى (أي بمعنى. اذا لم تقم بالتحديد, فأنة سوف تظل ايضا الملفات اللتى ارسللت عن بعد على السيرفر محلياً, وان الملفات اللتى يتم الأحتفاظ بها محليا لن تكون خاضعة لحدود الأبقاء)."
4624
 
4625
- #: templates/wp-admin/settings/form-contents.php:215
4626
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4627
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
4628
 
4629
- #: admin.php:2931
4630
  msgid "Your wp-content directory server path: %s"
4631
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
4632
 
4633
- #: admin.php:600
4634
  msgid "Raw backup history"
4635
  msgstr "تاريخ النسخ الاحتياطي الخام"
4636
 
@@ -4638,11 +4698,11 @@ msgstr "تاريخ النسخ الاحتياطي الخام"
4638
  msgid "Show raw backup and file list"
4639
  msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة الملفات"
4640
 
4641
- #: admin.php:582
4642
  msgid "Processing files - please wait..."
4643
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
4644
 
4645
- #: admin.php:3695 templates/wp-admin/settings/downloading-and-restoring.php:29
4646
  msgid "Please consult this FAQ for help on what to do about it."
4647
  msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
4648
 
@@ -4650,11 +4710,11 @@ msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول
4650
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4651
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
4652
 
4653
- #: class-updraftplus.php:3858
4654
  msgid "Failed to open database file."
4655
  msgstr "فشل فى فتح ملف قاعدة البيانات."
4656
 
4657
- #: admin.php:4074
4658
  msgid "Known backups (raw)"
4659
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
4660
 
@@ -4678,21 +4738,21 @@ msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيي
4678
  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."
4679
  msgstr "هذة تبدو كأنها ترحيل (النسخة الأحتياطة من موقع عنوان الرابط الخاص بة مختلف), لكنك لم تقم بالأشارة على خيار البحث واستبدال قاعدة البيانات. عادة ما يكون خطأ."
4680
 
4681
- #: admin.php:3584
4682
  msgid "file is size:"
4683
  msgstr "حجم الملف:"
4684
 
4685
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4686
- #: addons/migrator.php:369 admin.php:859 admin.php:2083 backup.php:2994
4687
  #: updraftplus.php:147
4688
  msgid "Go here for more information."
4689
  msgstr "اذهب هنا لمزيد من المعلومات."
4690
 
4691
- #: admin.php:581
4692
  msgid "Some files are still downloading or being processed - please wait."
4693
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
4694
 
4695
- #: class-updraftplus.php:3906 class-updraftplus.php:3924
4696
  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."
4697
  msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
4698
 
@@ -4704,81 +4764,82 @@ msgstr "المنطقة الزمنية المستخدمة هى من اعدادا
4704
  msgid "Enter in format HH:MM (e.g. 14:22)."
4705
  msgstr "ادخل فى صيغة HH:MM (مثل 14:22)."
4706
 
4707
- #: methods/ftp.php:111
4708
  msgid "%s upload failed"
4709
  msgstr "فشل ارسال الملف %s"
4710
 
4711
- #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4712
  msgid "%s login failure"
4713
  msgstr "فشل تسجيل الدخول %s"
4714
 
4715
- #: methods/dropbox.php:425
4716
  msgid "You do not appear to be authenticated with %s"
4717
  msgstr "لا يبدو انة تمت المصادقة مع: %s"
4718
 
4719
- #: methods/dropbox.php:392
4720
  msgid "Failed to access %s when deleting (see log file for more)"
4721
  msgstr "فشل الوصول الى %s عند الحذف (تحقق من ملف السجل لمزيد من المعلومات)"
4722
 
4723
- #: methods/dropbox.php:384
4724
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4725
  msgstr "لا يبدو انة لديك التصريح ل %s (لحين الحذف)"
4726
 
4727
- #: methods/dropbox.php:119
4728
  msgid "Dropbox error: %s (see log file for more)"
4729
  msgstr "خطأ فى الأسقاط: %s (تحقق من السجل لمزيد من المعلومات)"
4730
 
4731
- #: methods/cloudfiles.php:422
4732
  msgid "Error - failed to download the file from %s"
4733
  msgstr "خطأ - فشل فى تحميل الملف من %s"
4734
 
4735
- #: methods/cloudfiles.php:418
4736
  msgid "Error - no such file exists at %s"
4737
  msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
4738
 
4739
- #: addons/azure.php:217 methods/addon-base.php:208 methods/cloudfiles.php:392
4740
- #: methods/cloudfiles.php:409 methods/googledrive.php:838
4741
- #: methods/openstack-base.php:403 methods/stream-base.php:266
4742
- #: methods/stream-base.php:273 methods/stream-base.php:286
 
4743
  msgid "%s Error"
4744
  msgstr "خطأ %s"
4745
 
4746
- #: methods/cloudfiles.php:219 methods/openstack-base.php:78
4747
  msgid "%s error - failed to upload file"
4748
  msgstr "خطأ %s - فشل فى ارسال الملف"
4749
 
4750
- #: class-updraftplus.php:940 methods/cloudfiles.php:211
4751
  msgid "%s error - failed to re-assemble chunks"
4752
  msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
4753
 
4754
- #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4755
- #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4756
- #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4757
- #: methods/openstack-base.php:36 methods/openstack-base.php:300
4758
- #: methods/openstack-base.php:365 methods/openstack-base.php:437
4759
- #: methods/openstack-base.php:440 methods/openstack-base.php:457
4760
- #: methods/openstack-base.php:462
4761
  msgid "%s authentication failed"
4762
  msgstr "المصادقة فشلت %s"
4763
 
4764
- #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1784
4765
- #: admin.php:1831 admin.php:1839 class-updraftplus.php:725
4766
- #: class-updraftplus.php:731 class-updraftplus.php:3829
4767
- #: class-updraftplus.php:3831 class-updraftplus.php:3964
4768
- #: class-updraftplus.php:3999 methods/googledrive.php:304 restorer.php:944
4769
  msgid "Error: %s"
4770
  msgstr "خطأ: %s"
4771
 
4772
- #: admin.php:2868
4773
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4774
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
4775
 
4776
- #: admin.php:2866
4777
  msgid "Backup directory specified does <b>not</b> exist."
4778
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
4779
 
4780
- #: admin.php:2600 admin.php:2822 class-updraftplus.php:3906
4781
- #: class-updraftplus.php:3924
4782
  msgid "Warning: %s"
4783
  msgstr "تحذير: %s"
4784
 
@@ -4786,31 +4847,31 @@ msgstr "تحذير: %s"
4786
  msgid "Last backup job run:"
4787
  msgstr "اخر تشغيل لوظيفة النسخ الأحتياطى:"
4788
 
4789
- #: backup.php:2713
4790
  msgid "A very large file was encountered: %s (size: %s Mb)"
4791
  msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
4792
 
4793
- #: backup.php:2087 backup.php:2119
4794
  msgid "%s: unreadable file - could not be backed up"
4795
  msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
4796
 
4797
- #: backup.php:1495
4798
  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"
4799
  msgstr "الجدول %s بة عدد كبير من الصفوف (%s) - نأمل ان شركة الأستضافة الخاصة بك تعطيك ما يكفى من الموارد لتفريغ هذا الجدول من النسخة الأحتياطة."
4800
 
4801
- #: backup.php:1614
4802
  msgid "An error occurred whilst closing the final database file"
4803
  msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
4804
 
4805
- #: backup.php:874
4806
  msgid "Warnings encountered:"
4807
  msgstr "مصادفة تحذيرات:"
4808
 
4809
- #: class-updraftplus.php:2727
4810
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4811
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
4812
 
4813
- #: class-updraftplus.php:623
4814
  msgid "Your free disk space is very low - only %s Mb remain"
4815
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
4816
 
@@ -4842,23 +4903,23 @@ msgstr "تفعيل ثيم الشبكة:"
4842
  msgid "Processed plugin:"
4843
  msgstr "المكون الأضافى:"
4844
 
4845
- #: addons/sftp.php:74
4846
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4847
  msgstr "تحقق من اذونات الملفات الخاصة بك: تعذر الدخول او انشاء الدليل:"
4848
 
4849
- #: addons/sftp.php:38
4850
  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."
4851
  msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
4852
 
4853
- #: methods/s3.php:795
4854
  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."
4855
  msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
4856
 
4857
- #: methods/s3.php:1033
4858
  msgid "Please check your access credentials."
4859
  msgstr "يرجى التحقق من وصول بيانات الأعتماد."
4860
 
4861
- #: addons/s3-enhanced.php:172 methods/s3.php:1011
4862
  msgid "The error reported by %s was:"
4863
  msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
4864
 
@@ -4874,7 +4935,7 @@ msgstr "لا يمكن اسقاط الجدوال, بدلا من ذلك احذفه
4874
  msgid "Cannot create new tables, so skipping this command (%s)"
4875
  msgstr "لا يمكن إنشاء جداول جديدة، حتى تخطى هذا الأمر (%s)"
4876
 
4877
- #: class-updraftplus.php:3975 restorer.php:1648
4878
  msgid "Site information:"
4879
  msgstr "معلومات عن الموقع:"
4880
 
@@ -4882,38 +4943,38 @@ msgstr "معلومات عن الموقع:"
4882
  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."
4883
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
4884
 
4885
- #: addons/migrator.php:325 admin.php:2078 class-updraftplus.php:3968
4886
  #: restorer.php:1970
4887
  msgid "Warning:"
4888
  msgstr "تحذير:"
4889
 
4890
- #: class-updraftplus.php:3960 restorer.php:162
4891
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4892
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
4893
 
4894
- #: admin.php:3539
4895
  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."
4896
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
4897
 
4898
- #: admin.php:2987 methods/updraftvault.php:260
4899
  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."
4900
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
4901
 
4902
- #: admin.php:618
4903
  msgid "Close"
4904
  msgstr "اغلق"
4905
 
4906
- #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:574
4907
- #: methods/remotesend.php:71 methods/remotesend.php:79
4908
- #: methods/remotesend.php:220 methods/remotesend.php:237
4909
  msgid "Unexpected response:"
4910
  msgstr "استجابة غير متوقعة:"
4911
 
4912
- #: addons/reporting.php:434 admin.php:569
4913
  msgid "To send to more than one address, separate each address with a comma."
4914
  msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
4915
 
4916
- #: admin.php:598
4917
  msgid "PHP information"
4918
  msgstr "معلومات PHP"
4919
 
@@ -4949,7 +5010,7 @@ msgstr "جارى الحذف...يرجى اتاحة الوقت لأكمال الأ
4949
  msgid "Also delete from remote storage"
4950
  msgstr "حذف ايضاً من التخزين البعيد"
4951
 
4952
- #: admin.php:2330
4953
  msgid "Latest UpdraftPlus.com news:"
4954
  msgstr "اخر اخبار UpdraftPlus.com:"
4955
 
@@ -4966,7 +5027,7 @@ msgstr "مميز"
4966
  msgid "News"
4967
  msgstr "اخبار"
4968
 
4969
- #: admin.php:1269
4970
  msgid "Backup set not found"
4971
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
4972
 
@@ -4984,7 +5045,7 @@ msgstr "رابط RSS"
4984
  msgid "Blog link"
4985
  msgstr "رابط المدونة"
4986
 
4987
- #: admin.php:661
4988
  msgid "Testing %s Settings..."
4989
  msgstr "اختبار اعدادات %s ..."
4990
 
@@ -4992,27 +5053,27 @@ msgstr "اختبار اعدادات %s ..."
4992
  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."
4993
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
4994
 
4995
- #: admin.php:875
4996
  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."
4997
  msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
4998
 
4999
- #: admin.php:875
5000
  msgid "Notice"
5001
  msgstr "لاحظ"
5002
 
5003
- #: backup.php:856
5004
  msgid "Errors encountered:"
5005
  msgstr "مصادفة اخطاء:"
5006
 
5007
- #: admin.php:567
5008
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5009
  msgstr "اعادة الفحص (يبحث عن النسخ الاحتياطية التي قمت برفعها يدويا في مسار النسخ الاحتياطي الداخلي)..."
5010
 
5011
- #: admin.php:580
5012
  msgid "Begun looking for this entity"
5013
  msgstr "بدأ البحث عن هذا الكيان"
5014
 
5015
- #: addons/dropbox-folders.php:26
5016
  msgid "Store at"
5017
  msgstr "المتجر فى"
5018
 
@@ -5028,7 +5089,7 @@ msgstr "الصفوف: %d"
5028
  msgid "Time taken (seconds):"
5029
  msgstr "الوقت المستغرق (ثانية):"
5030
 
5031
- #: addons/migrator.php:1113 admin.php:585
5032
  msgid "Errors:"
5033
  msgstr "الأخطاء:"
5034
 
@@ -5097,23 +5158,23 @@ msgstr "بحث واستبدال قاعدة البيانات فى الموقع (
5097
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5098
  msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
5099
 
5100
- #: addons/multisite.php:630
5101
  msgid "Blog uploads"
5102
  msgstr "مدونة الملفات المرفوعة"
5103
 
5104
- #: addons/migrator.php:369 addons/multisite.php:623
5105
  msgid "Must-use plugins"
5106
  msgstr "لابد من استخدام الأضافات"
5107
 
5108
- #: addons/multisite.php:193
5109
  msgid "You do not have permission to access this page."
5110
  msgstr "ليس لديك الصلاحيات لدخول هذة الصفحة."
5111
 
5112
- #: addons/multisite.php:179 udaddons/options.php:225
5113
  msgid "You do not have sufficient permissions to access this page."
5114
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذة الصفحة."
5115
 
5116
- #: addons/multisite.php:173
5117
  msgid "Multisite Install"
5118
  msgstr "تثبيت الموقع المتعدد"
5119
 
@@ -5121,103 +5182,104 @@ msgstr "تثبيت الموقع المتعدد"
5121
  msgid "starting from next time it is"
5122
  msgstr "ابتداء من المرة القادمة انها"
5123
 
5124
- #: addons/sftp.php:430
5125
  msgid "Failure: Port must be an integer."
5126
  msgstr "فشل: المنفذ يجب ان يكون عدد صحيح."
5127
 
5128
- #: methods/ftp.php:359 methods/openstack2.php:147
5129
  msgid "password"
5130
  msgstr "كلمة السر"
5131
 
5132
- #: addons/sftp.php:421 methods/openstack2.php:142
5133
  msgid "username"
5134
  msgstr "اسم المستخدم"
5135
 
5136
- #: addons/sftp.php:417
5137
  msgid "host name"
5138
  msgstr "اسم المضيف"
5139
 
5140
- #: addons/sftp.php:395
5141
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5142
  msgstr "حيث لتغير الدليل الى بعد تسجيل الدخول - غالبا ما يكون هذا هو نسبة الى الدليل الرئيسى الخاص بك."
5143
 
5144
- #: addons/sftp.php:393
5145
  msgid "Directory path"
5146
  msgstr "مسار الدليل"
5147
 
5148
- #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:368
5149
- #: addons/webdav.php:69 methods/openstack2.php:127 methods/updraftvault.php:320
5150
- #: udaddons/options.php:145
5151
  msgid "Password"
5152
  msgstr "كلمة السر"
5153
 
5154
- #: addons/sftp.php:354 addons/webdav.php:83
5155
  msgid "Port"
5156
  msgstr "المنفذ"
5157
 
5158
- #: addons/moredatabase.php:237 addons/sftp.php:347 addons/webdav.php:75
5159
  msgid "Host"
5160
  msgstr "الاستضافة"
5161
 
5162
- #: addons/sftp.php:280
5163
  msgid "%s Error: Failed to download"
5164
  msgstr "خطأ %s: فشل التحميل"
5165
 
5166
- #: addons/sftp.php:460
5167
  msgid "Check your file permissions: Could not successfully create and enter:"
5168
  msgstr "تحقق من أذونات الملف الخاص بك: تعذر الإنشاء والدخول بنجاح :"
5169
 
5170
- #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
5171
  msgid "No %s found"
5172
  msgstr "لم يتم العثور على %s "
5173
 
5174
- #: addons/sftp.php:38
5175
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5176
  msgstr "يتم استخدام التشفير الصريح بشكل افتراضي. لإجبار التشفير الضمني (منفذ 990)، قم بإضافة :990 لخادم بروتوكول نقل الملفات الخاصة بك أدناه."
5177
 
5178
- #: addons/sftp.php:38
5179
  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."
5180
  msgstr "FTP مشفرة متاح، وسيجرب أولا تلقائيا (قبل أن نتراجع إلى النسخة الغيرمشفرة إذا لم ننجح)، إلا إذا كنت تعطيله باستخدام خيارات المتقدمة. زر 'اختبار دخول FTP ' سيخبركم بنوع الإتصال المستخدم."
5181
 
5182
- #: addons/morefiles.php:562
5183
  msgid "No backup of %s directories: there was nothing found to back up"
5184
  msgstr "لا توجد نسخ احتياطية من المجلدات %s : لم نجد أي شيء لنعمل له نسخة احتياطية"
5185
 
5186
- #: addons/morefiles.php:209
5187
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5188
  msgstr ""
5189
 
5190
- #: addons/morefiles.php:207
5191
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5192
  msgstr "إذا لم تكن متأكدا ما هو هذا الخيار، إذا انت حتما لا ترغب فيه، ويجب عليك إيقاف تشغيله."
5193
 
5194
- #: addons/morefiles.php:186
5195
  msgid "More Files"
5196
  msgstr "ملفات أخرى"
5197
 
5198
- #: addons/morefiles.php:100
5199
  msgid "WordPress core (including any additions to your WordPress root directory)"
5200
  msgstr "أساسيات ووردبريس (بما في ذلك أية إضافات لدليل ووردبريس الخاص بك)"
5201
 
5202
- #: addons/morefiles.php:93
5203
  msgid "The above files comprise everything in a WordPress installation."
5204
  msgstr "الملفات بالأعلى تشمل جميع ملفات تنصيب الووردبريس"
5205
 
5206
- #: addons/morefiles.php:74
5207
  msgid "Over-write wp-config.php"
5208
  msgstr "إعادة كتابة wp-config.php"
5209
 
5210
- #: addons/morefiles.php:70 addons/morefiles.php:562
 
5211
  msgid "WordPress Core"
5212
  msgstr "لب الووردبريس"
5213
 
5214
- #: methods/addon-base.php:294 methods/stream-base.php:316
5215
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5216
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
5217
 
5218
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5219
- #: addons/googlecloud.php:666 addons/sftp.php:447 admin.php:2654 admin.php:2689
5220
- #: admin.php:2698 methods/addon-base.php:284 methods/stream-base.php:302
5221
  msgid "Failed"
5222
  msgstr "فشل"
5223
 
@@ -5225,404 +5287,404 @@ msgstr "فشل"
5225
  msgid "WebDAV URL"
5226
  msgstr "رابط WEBDAV"
5227
 
5228
- #: methods/stream-base.php:286
5229
  msgid "Local write failed: Failed to download"
5230
  msgstr "فشلت الكتابة المحلية: فشل تحميل"
5231
 
5232
- #: methods/stream-base.php:273
5233
  msgid "Error opening remote file: Failed to download"
5234
  msgstr "خطأ في فتح الملف : فشل في التحميل"
5235
 
5236
- #: methods/stream-base.php:107 methods/stream-base.php:111
5237
  msgid "Chunk %s: A %s error occurred"
5238
  msgstr "قطعة %s: حدث خطأ %s"
5239
 
5240
- #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
5241
- #: methods/addon-base.php:97 methods/addon-base.php:128
5242
- #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
5243
- #: methods/googledrive.php:146 methods/stream-base.php:31
5244
- #: methods/stream-base.php:145 methods/stream-base.php:151
5245
- #: methods/stream-base.php:185 methods/stream-base.php:250
5246
  msgid "No %s settings were found"
5247
  msgstr "تم العثور على أية إعدادات %s"
5248
 
5249
- #: methods/ftp.php:381
5250
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5251
  msgstr "فشل: نجحنا في تسجيل الدخول، لكن لا يمكننا إنشاء ملف في الدليل المعطى."
5252
 
5253
- #: methods/ftp.php:378
5254
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5255
  msgstr "نجاح: نجحنا في تسجيل الدخول، وتأكيد قدرتنا على إنشاء ملف في الدليل المعطى (نوع تسجيل الدخول:"
5256
 
5257
- #: methods/ftp.php:369
5258
  msgid "Failure: we did not successfully log in with those credentials."
5259
  msgstr "خطأ: لم نتمكن من تسجيل الدخول بنجاح."
5260
 
5261
- #: methods/ftp.php:351
5262
  msgid "Failure: No server details were given."
5263
  msgstr "خطأ: ولم تعط أية تفاصيل خادم."
5264
 
5265
- #: methods/ftp.php:320
5266
  msgid "Needs to already exist"
5267
  msgstr "يحتاج إلى وجود بالفعل"
5268
 
5269
- #: methods/ftp.php:303
5270
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5271
  msgstr "إذا كنت تريد تشفير (على سبيل المثال كنت تخزن بيانات الأعمال الحساسة)، فهناك اضافة متاحة لهذا الغرض."
5272
 
5273
- #: methods/ftp.php:303
5274
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5275
  msgstr "UpdraftPlus تدعم فقط حسابات FTP الغير مشفرة"
5276
 
5277
- #: addons/onedrive.php:755 methods/dropbox.php:627
5278
  msgid "Your %s account name: %s"
5279
  msgstr "اسم الحساب %s الخاص بك: %s"
5280
 
5281
- #: methods/dropbox.php:617 methods/dropbox.php:644
5282
  msgid "though part of the returned information was not as expected - your mileage may vary"
5283
  msgstr "على الرغم من أن جزء من المعلومات الذي عاد لم يكن كما هو متوقع - الأميال الخاص بك قد تختلف"
5284
 
5285
- #: methods/dropbox.php:612 methods/dropbox.php:614
5286
  msgid "you have authenticated your %s account"
5287
  msgstr "تم المصادقة على %s حسابك"
5288
 
5289
- #: methods/dropbox.php:499 methods/dropbox.php:501
5290
  msgid "there's an add-on for that."
5291
  msgstr "هناك اضافة لذلك."
5292
 
5293
- #: methods/dropbox.php:499 methods/dropbox.php:501
5294
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5295
  msgstr "اذا كنت تستخدم النسخ الأحتياطى لعدة مواقع فى نفس الدروب بوكس وتريد ان تقوم بتنظيمها مع المجلدات الفرعية, اذا"
5296
 
5297
- #: methods/dropbox.php:499 methods/dropbox.php:501
5298
  msgid "Backups are saved in"
5299
  msgstr "يتم حفظ النسخ الأحتياطية فى"
5300
 
5301
- #: methods/dropbox.php:499 methods/dropbox.php:501
5302
  msgid "Need to use sub-folders?"
5303
  msgstr "هل تحتاج الى استخدام المجلدات الفرعية؟"
5304
 
5305
- #: methods/dropbox.php:212 methods/dropbox.php:233 methods/dropbox.php:249
5306
  msgid "error: failed to upload file to %s (see log file for more)"
5307
  msgstr "خطأ: فشل فى رفع الملف الى %s (انظر السجل لمزيد من التفاصيل)"
5308
 
5309
- #: methods/dropbox.php:97 methods/dropbox.php:114
5310
  msgid "You do not appear to be authenticated with Dropbox"
5311
  msgstr "لا يبدو ان المصادقة مع Dropbox"
5312
 
5313
- #: methods/s3.php:1028
5314
  msgid "The communication with %s was not encrypted."
5315
  msgstr "التواصل مع %s كان غير مشفر."
5316
 
5317
- #: methods/s3.php:1026
5318
  msgid "The communication with %s was encrypted."
5319
  msgstr "التواصل مع %s كان مشفر."
5320
 
5321
- #: addons/googlecloud.php:689 methods/s3.php:1023
5322
  msgid "We accessed the bucket, and were able to create files within it."
5323
  msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
5324
 
5325
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5326
- #: methods/s3.php:1033
5327
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5328
  msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
5329
 
5330
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5331
- #: methods/s3.php:1033
5332
  msgid "Failure"
5333
  msgstr "فشل"
5334
 
5335
- #: methods/s3.php:1009
5336
  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)."
5337
  msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
5338
 
5339
- #: addons/s3-enhanced.php:145 methods/openstack2.php:113 methods/s3.php:1003
5340
  msgid "Region"
5341
  msgstr "المنطقة"
5342
 
5343
- #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:985
5344
  msgid "Failure: No bucket details were given."
5345
  msgstr "فشل: لم ترد تفاصيل الباكت."
5346
 
5347
- #: methods/s3.php:963
5348
  msgid "API secret"
5349
  msgstr "API السرية"
5350
 
5351
- #: methods/s3.php:856
5352
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5353
  msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
5354
 
5355
- #: methods/s3.php:855
5356
  msgid "%s location"
5357
  msgstr "المكان %s"
5358
 
5359
- #: methods/s3.php:851
5360
  msgid "%s secret key"
5361
  msgstr "المفتاح السرى %s"
5362
 
5363
- #: methods/s3.php:847
5364
  msgid "%s access key"
5365
  msgstr "مفتاح الوصول %s"
5366
 
5367
- #: methods/s3.php:812
5368
  msgid "If you see errors about SSL certificates, then please go here for help."
5369
  msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
5370
 
5371
- #: methods/s3.php:810
5372
  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."
5373
  msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
5374
 
5375
- #: methods/s3.php:444 methods/s3.php:618 methods/s3.php:720
5376
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5377
  msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
5378
 
5379
- #: methods/s3.php:703 methods/s3.php:749
5380
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5381
  msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
5382
 
5383
- #: methods/s3.php:422
5384
  msgid "%s re-assembly error (%s): (see log file for more)"
5385
  msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
5386
 
5387
- #: methods/s3.php:418
5388
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5389
  msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
5390
 
5391
- #: methods/s3.php:402
5392
  msgid "%s chunk %s: upload failed"
5393
  msgstr "%s قطعة %s : فشل الرفع"
5394
 
5395
- #: methods/s3.php:392
5396
  msgid "%s error: file %s was shortened unexpectedly"
5397
  msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
5398
 
5399
- #: methods/s3.php:369
5400
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5401
  msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
5402
 
5403
- #: methods/email.php:69
5404
  msgid "Note:"
5405
  msgstr "ملاحظة:"
5406
 
5407
- #: methods/email.php:43
5408
  msgid "WordPress Backup"
5409
  msgstr "نسخ ووردريس احتياطيا"
5410
 
5411
- #: methods/cloudfiles.php:560 methods/openstack-base.php:476
5412
  msgid "We accessed the container, and were able to create files within it."
5413
  msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء ملف داخلها "
5414
 
5415
- #: methods/cloudfiles.php:556
5416
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5417
  msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاوية، لكننا فشلنا في إنشاء ملف داخلها"
5418
 
5419
- #: methods/cloudfiles.php:529 methods/openstack-base.php:420
5420
  msgid "Failure: No container details were given."
5421
  msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
5422
 
5423
- #: addons/moredatabase.php:238 addons/sftp.php:361 addons/webdav.php:63
5424
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:509
5425
- #: methods/openstack2.php:121
5426
  msgid "Username"
5427
  msgstr "اسم المستخدم"
5428
 
5429
- #: methods/cloudfiles-new.php:152 methods/cloudfiles.php:504 methods/s3.php:959
5430
  msgid "API key"
5431
  msgstr "مفتاح API"
5432
 
5433
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5434
- #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:417
5435
- #: addons/sftp.php:421 addons/sftp.php:425 addons/webdav.php:103 admin.php:638
5436
- #: methods/addon-base.php:277 methods/cloudfiles-new.php:152
5437
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:504
5438
- #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
5439
- #: methods/openstack2.php:142 methods/openstack2.php:147
5440
- #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:959
5441
- #: methods/s3.php:963
5442
  msgid "Failure: No %s was given."
5443
  msgstr "فضل: لم تعطى أية %s."
5444
 
5445
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5446
- #: methods/openstack-base.php:513 methods/s3.php:799
5447
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5448
  msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
5449
 
5450
- #: methods/cloudfiles.php:490
5451
  msgid "Cloud Files container"
5452
  msgstr "سحابة الملفات الحاوية"
5453
 
5454
- #: methods/cloudfiles.php:486
5455
  msgid "Cloud Files API key"
5456
  msgstr "سحابة ملفات مفاتيح API "
5457
 
5458
- #: methods/cloudfiles.php:482
5459
  msgid "Cloud Files username"
5460
  msgstr "سحابة ملفات المستخدم"
5461
 
5462
- #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:99
5463
- #: methods/cloudfiles.php:466
5464
  msgid "UK"
5465
  msgstr "المملكة المتحدة"
5466
 
5467
- #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:98
5468
- #: methods/cloudfiles.php:465
5469
  msgid "US (default)"
5470
  msgstr "الولايات المتحدة (افتراضى)"
5471
 
5472
- #: methods/cloudfiles.php:462
5473
  msgid "US or UK Cloud"
5474
  msgstr "سحابة الولايات المتحدة او المملكة المتحدة"
5475
 
5476
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5477
- #: methods/openstack2.php:94
5478
  msgid "Also, you should read this important FAQ."
5479
  msgstr "أيضا، يجب عليك قراءة هذا التعليمات الهامة."
5480
 
5481
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5482
  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."
5483
  msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\">من خدمة Rackspace Cloud </a> (يمكن قراءة التعليمات <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">هنا</a>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
5484
 
5485
- #: addons/sftp.php:408 admin.php:660 methods/addon-base.php:242
5486
- #: methods/cloudfiles.php:496 methods/ftp.php:329
5487
- #: methods/openstack-base.php:524 methods/s3.php:861
5488
- #: methods/stream-base.php:224
5489
  msgid "Test %s Settings"
5490
  msgstr "اختبار %s الإعدادات"
5491
 
5492
- #: methods/openstack-base.php:403
5493
  msgid "Error downloading remote file: Failed to download ("
5494
  msgstr "خطأ في تحميل الملف بالخدمة السحابية: فشل في تحميل ("
5495
 
5496
- #: class-updraftplus.php:980 class-updraftplus.php:1024
5497
- #: methods/cloudfiles.php:392 methods/stream-base.php:266
5498
  msgid "Error opening local file: Failed to download"
5499
  msgstr "خطأ في فتح ملف محلي: فشل التحميل"
5500
 
5501
- #: methods/cloudfiles.php:218
5502
  msgid "Cloud Files error - failed to upload file"
5503
  msgstr "خطأ بملفات سحابة - فشل في رفع الملف"
5504
 
5505
- #: addons/sftp.php:134 addons/sftp.php:146 methods/cloudfiles.php:147
5506
- #: methods/cloudfiles.php:189 methods/openstack-base.php:73
5507
- #: methods/openstack-base.php:262 methods/s3.php:337 methods/s3.php:349
5508
- #: methods/s3.php:350
5509
  msgid "%s Error: Failed to upload"
5510
  msgstr "%s خطأ: فشل في تحميل"
5511
 
5512
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5513
- #: class-updraftplus.php:842 methods/cloudfiles.php:130
5514
- #: methods/googledrive.php:756 methods/googledrive.php:761
5515
  msgid "%s Error: Failed to open local file"
5516
  msgstr "%s خطأ: فشل في فتح ملف محلي"
5517
 
5518
- #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
5519
- #: methods/cloudfiles.php:363
5520
  msgid "Cloud Files error - failed to create and access the container"
5521
  msgstr "خطأ ملفات السحابة - فشل في إنشاء والوصول إلى الحاوية"
5522
 
5523
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5524
- #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:539
5525
- #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
5526
  msgid "Cloud Files authentication failed"
5527
  msgstr "فشل المصادقة بملفات سحابة"
5528
 
5529
- #: addons/googlecloud.php:907 methods/googledrive.php:976
5530
  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."
5531
  msgstr "<strong>بعد</strong> حفظ خياراتك (بالضغط على زر 'حفظ التغيرات' أدناه)، قم بالرجوع مرة أخرى هنا وقم بزيارة الرابط لإكمال عملية المصادقة مه جوجل."
5532
 
5533
- #: addons/googlecloud.php:896 methods/googledrive.php:965
5534
  msgid "Authenticate with Google"
5535
  msgstr "المصادقة مع جوجل"
5536
 
5537
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5538
- #: methods/googledrive.php:935
5539
  msgid "Client Secret"
5540
  msgstr "سر العميل"
5541
 
5542
- #: addons/googlecloud.php:842 methods/googledrive.php:932
5543
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5544
  msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
5545
 
5546
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5547
- #: methods/googledrive.php:931
5548
  msgid "Client ID"
5549
  msgstr "معرف العميل"
5550
 
5551
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5552
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5553
  msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
5554
 
5555
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5556
  msgid "Select 'Web Application' as the application type."
5557
  msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
5558
 
5559
- #: addons/googlecloud.php:826 methods/googledrive.php:919
5560
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5561
  msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
5562
 
5563
- #: methods/addon-base.php:230 methods/cloudfiles.php:438
5564
- #: methods/dropbox.php:481 methods/ftp.php:298 methods/googledrive.php:904
5565
- #: methods/openstack-base.php:503 methods/s3.php:771
5566
- #: methods/stream-base.php:217
5567
  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."
5568
  msgstr "%s هو خيار صائب، لأن UpdraftPlus يدعم الرفع المقسم - لا يهمنا كم حجم موقعكم، لأن UpdraftPlus يستطيع تقسيم ورفع الأجزاء المقسمة، ولن يحبط من كثرة المهلات."
5569
 
5570
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5571
- #: addons/googlecloud.php:709 methods/googledrive.php:460
5572
- #: methods/googledrive.php:461
5573
  msgid "Account is not authorized."
5574
  msgstr "حساب غير مخول."
5575
 
5576
- #: methods/googledrive.php:386 methods/googledrive.php:432
5577
- #: methods/googledrive.php:438 methods/googledrive.php:440
5578
- #: methods/stream-base.php:201
5579
  msgid "Failed to upload to %s"
5580
  msgstr "فشل في تحميل إلى %s"
5581
 
5582
- #: methods/googledrive.php:415
5583
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5584
  msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك على %d بايت متبقية، ولكن الملف حجمه %d بايت"
5585
 
5586
- #: methods/googledrive.php:512
5587
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5588
  msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
5589
 
5590
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5591
- #: methods/googledrive.php:363
5592
  msgid "you have authenticated your %s account."
5593
  msgstr "لديك حساب %s مصادق عليه."
5594
 
5595
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5596
- #: addons/onedrive.php:793 addons/sftp.php:480 methods/addon-base.php:291
5597
- #: methods/cloudfiles.php:560 methods/googledrive.php:363
5598
- #: methods/openstack-base.php:476 methods/s3.php:1023
5599
- #: methods/stream-base.php:313
5600
  msgid "Success"
5601
  msgstr "نجاح"
5602
 
5603
- #: addons/onedrive.php:747 methods/dropbox.php:655 methods/dropbox.php:664
5604
- #: methods/googledrive.php:337
5605
  msgid "Your %s quota usage: %s %% used, %s available"
5606
  msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
5607
 
5608
- #: addons/googlecloud.php:390 methods/googledrive.php:310
5609
  msgid "Authorization failed"
5610
  msgstr "فشل التخويل"
5611
 
5612
- #: addons/googlecloud.php:382 methods/googledrive.php:302
5613
  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."
5614
  msgstr "لم نتمكن من الحصول على أي رمز من جوجل. يعني هذا غالبا أنكم قمتم بإدخال رقمكم السري خاطئ، أو أنكم لم تتمكنوا من إعادة مصادقة الخدمة (أسفله) بعد تصحيحها. تأكد منها، ثم قم بمتابعة الرابط أسفله لإعادة المصادقة مع الخدمة مرة أخرى. أخيرا، إن لم تعمل الإضافة، قم باستعمال خيار الخبراء لإعادة مسح كل خياراتكم، أنشئ معرف عميل جوجل جديد وابدأ من الصفر."
5615
 
5616
- #: methods/viaaddon-base.php:72
5617
  msgid "follow this link to get it"
5618
  msgstr "اتبع هذا الرابط للحصول عليه"
5619
 
5620
- #: methods/viaaddon-base.php:72
5621
  msgid "%s support is available as an add-on"
5622
  msgstr "دعم %s متوفر على شكل إضافة "
5623
 
5624
- #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5625
- #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5626
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5627
  msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها من %s"
5628
 
@@ -5631,8 +5693,8 @@ msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها
5631
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5632
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
5633
 
5634
- #: addons/migrator.php:1770 admin.php:2657 admin.php:2691 admin.php:2695
5635
- #: admin.php:3569 admin.php:3582 restorer.php:2203 restorer.php:2309
5636
  msgid "OK"
5637
  msgstr "حسنا"
5638
 
@@ -5656,8 +5718,8 @@ msgstr "إستعادة على النحو التالي:"
5656
  msgid "Old table prefix:"
5657
  msgstr "بادئة الجدول القديمة:"
5658
 
5659
- #: addons/reporting.php:65 addons/reporting.php:152 backup.php:930
5660
- #: class-updraftplus.php:3901
5661
  msgid "Backup of:"
5662
  msgstr "نسخة احتياطية لـ:"
5663
 
@@ -5733,156 +5795,152 @@ msgstr "ملف النسخ الاحتياطي غير متوفر."
5733
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5734
  msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
5735
 
5736
- #: admin.php:3590 admin.php:3591
5737
  msgid "Could not find one of the files for restoration"
5738
  msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
5739
 
5740
- #: admin.php:3685
5741
  msgid "Error message"
5742
  msgstr "رسالة الخطأ"
5743
 
5744
- #: admin.php:3587
5745
  msgid "The backup records do not contain information about the proper size of this file."
5746
  msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
5747
 
5748
- #: admin.php:3579
5749
  msgid "Archive is expected to be size:"
5750
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
5751
 
5752
- #: admin.php:3463
5753
  msgid "If making a request for support, please include this information:"
5754
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
5755
 
5756
- #: admin.php:3462
5757
  msgid "ABORT: Could not find the information on which entities to restore."
5758
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
5759
 
5760
- #: admin.php:3416
5761
  msgid "UpdraftPlus Restoration: Progress"
5762
  msgstr "استرجاع UpdraftPlus: تقدم"
5763
 
5764
- #: admin.php:3368
5765
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5766
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
5767
 
5768
- #: admin.php:3317
5769
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5770
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
5771
 
5772
- #: admin.php:3252
5773
- msgid "Press here to download"
5774
- msgstr "إضغط هنا لتحميل"
5775
-
5776
- #: admin.php:3326
5777
  msgid "Delete this backup set"
5778
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
5779
 
5780
- #: admin.php:2999
5781
  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."
5782
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
5783
 
5784
- #: admin.php:2996
5785
  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."
5786
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
5787
 
5788
- #: admin.php:2994
5789
  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)."
5790
  msgstr "نعلمكم أن نسخة PHP/Curl المنصبة لخادمكم لا تدعم وصول https. التواصل مع %s سيكون غير مشفر. من فضلك قم بمراسلة خدمة الإستضافة لتنصيب Curl/SSL لدعم خدمة التشفير (باستخدام إضافة)."
5791
 
5792
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5793
- #: methods/openstack-base.php:513 methods/s3.php:799
5794
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5795
  msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
5796
 
5797
- #: templates/wp-admin/settings/form-contents.php:388
5798
  msgid "Save Changes"
5799
  msgstr "حفظ التغييرات"
5800
 
5801
- #: templates/wp-admin/settings/form-contents.php:365
5802
  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."
5803
  msgstr "اختيار هذا الخيار قد يضعف من الآمان بإيقاف UpdraftPlus من استخدام SSL للمصادقة و تشفير العمليات، إن أمكن الأمر. لاحظ أن بعض الدمات السحابية لا تقبل هذه العملية (مثال: Dropbox)، مع هذا الخيار لن تتمكن من حفظ النسخ بهذه الخدمات."
5804
 
5805
- #: templates/wp-admin/settings/form-contents.php:364
5806
  msgid "Disable SSL entirely where possible"
5807
  msgstr "قم بتعطيل SSL تماما حيثما أمكن"
5808
 
5809
- #: templates/wp-admin/settings/form-contents.php:360
5810
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5811
  msgstr "لاحظ أنه ليست كل أساليب النسخ الإحتياطي بالسحابة بالضرورة تستخدم المصادقة عن طريق SSL."
5812
 
5813
- #: templates/wp-admin/settings/form-contents.php:360
5814
  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."
5815
  msgstr "اختيار هذا الخيار يمكن أن يضعف من حمايتك بمنع UpdraftPlus من التحقق من هوية المواقع التي يتصل بها ( مثال: Dropbox, Google Drive). هذا يعني أن UpdraftPlus سيستخدم SSL لتشفير حركة مرور البيانات، ولن يستخدم التقنية لتشفير المصادقة مع المواقع."
5816
 
5817
- #: templates/wp-admin/settings/form-contents.php:359
5818
  msgid "Do not verify SSL certificates"
5819
  msgstr "لا تحقق من شهادات SSL"
5820
 
5821
- #: templates/wp-admin/settings/form-contents.php:355
5822
  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."
5823
  msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من SSL للحقق من هوية المواقع (للتأكد من أن الموقع الآخر هو فعلا الموقع المقصود وليس موقع مقرصن). نقوم بتحديثها آليا. إن قابلك خطأ SSL، حينها قم باختيار هذا الخيار (الذي يفرض على UpdraftPlus استخدام ملفات SSL الخاصة بسيرفرك بدلا من الخاص به) يمكن أن يساعدك."
5824
 
5825
- #: templates/wp-admin/settings/form-contents.php:354
5826
  msgid "Use the server's SSL certificates"
5827
  msgstr "استخدام شهادات SSL للملقم"
5828
 
5829
- #: admin.php:2870
5830
  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."
5831
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
5832
 
5833
- #: admin.php:2870
5834
  msgid "click here"
5835
  msgstr "انقر هنا"
5836
 
5837
- #: admin.php:2870
5838
  msgid "or, to reset this option"
5839
  msgstr "أو، لإعادة هذا الخيار"
5840
 
5841
- #: admin.php:2870
5842
  msgid "Follow this link to attempt to create the directory and set the permissions"
5843
  msgstr ""
5844
 
5845
- #: admin.php:2862
5846
  msgid "Backup directory specified is writable, which is good."
5847
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
5848
 
5849
- #: templates/wp-admin/settings/form-contents.php:335
5850
  msgid "Backup directory"
5851
  msgstr "دليل النسخ الاحتياطي"
5852
 
5853
- #: templates/wp-admin/settings/form-contents.php:330
5854
  msgid "Delete local backup"
5855
  msgstr "حذف النسخة الاحتياطية المحلية"
5856
 
5857
- #: templates/wp-admin/settings/form-contents.php:310
5858
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5859
  msgstr "اضغط هنا لتتمكن من مشاهدة خيارات اضافية، لا ترعج نفسك بهذه الخيارات إلا إذا واجهت مشاكل."
5860
 
5861
- #: templates/wp-admin/settings/form-contents.php:310
5862
  msgid "Show expert settings"
5863
  msgstr "إظهار الإعدادات المتقدمة"
5864
 
5865
- #: templates/wp-admin/settings/form-contents.php:309
5866
  msgid "Expert settings"
5867
  msgstr "إعدادات متقدمة"
5868
 
5869
- #: templates/wp-admin/settings/form-contents.php:320
5870
  msgid "Debug mode"
5871
  msgstr "وضع التصحيح"
5872
 
5873
- #: templates/wp-admin/settings/form-contents.php:305
5874
  msgid "Advanced / Debugging Settings"
5875
  msgstr "متقدمة / تصحيح الإعدادات "
5876
 
5877
- #: admin.php:597
5878
  msgid "Requesting start of backup..."
5879
  msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
5880
 
5881
- #: addons/morefiles.php:234 admin.php:613
5882
  msgid "Cancel"
5883
  msgstr "إلغاء"
5884
 
5885
- #: addons/reporting.php:216 admin.php:3141
5886
  msgid "None"
5887
  msgstr "لا شيء"
5888
 
@@ -5890,31 +5948,31 @@ msgstr "لا شيء"
5890
  msgid "Choose your remote storage"
5891
  msgstr "اختر خدمت التخزين السحابي"
5892
 
5893
- #: templates/wp-admin/settings/form-contents.php:203
5894
  msgid "Manually decrypt a database backup file"
5895
  msgstr "فك تشفير ملف النسخ الاحتياطي لقاعدة البيانات يدويا"
5896
 
5897
- #: templates/wp-admin/settings/form-contents.php:184
5898
  msgid "Database encryption phrase"
5899
  msgstr "عبارة تشفير قاعدة البيانات"
5900
 
5901
- #: templates/wp-admin/settings/form-contents.php:282 udaddons/options.php:143
5902
  msgid "Email"
5903
  msgstr "البريد الإلكتروني"
5904
 
5905
- #: templates/wp-admin/settings/form-contents.php:174
5906
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5907
  msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
5908
 
5909
- #: addons/morefiles.php:380 admin.php:2940
5910
  msgid "Exclude these:"
5911
  msgstr "استبعاد هذه:"
5912
 
5913
- #: admin.php:2931
5914
  msgid "Any other directories found inside wp-content"
5915
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
5916
 
5917
- #: templates/wp-admin/settings/form-contents.php:171
5918
  msgid "Include in files backup"
5919
  msgstr "متضمن في ملفات النسخ الاحتياطي"
5920
 
@@ -5926,44 +5984,44 @@ msgstr "على سبيل المثال إذا كان الملقم مشغول في
5926
  msgid "To fix the time at which a backup should take place,"
5927
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
5928
 
5929
- #: admin.php:2856
5930
  msgid "Monthly"
5931
  msgstr "شهريا"
5932
 
5933
- #: admin.php:2855
5934
  msgid "Fortnightly"
5935
  msgstr "نصف شهري"
5936
 
5937
- #: admin.php:2854
5938
  msgid "Weekly"
5939
  msgstr "أسبوعيا"
5940
 
5941
- #: admin.php:2853
5942
  msgid "Daily"
5943
  msgstr "يوميا"
5944
 
5945
- #: admin.php:620 admin.php:2836
5946
  msgid "Download log file"
5947
  msgstr "تحميل ملف السجل"
5948
 
5949
- #: admin.php:2754
5950
  msgid "The folder exists, but your webserver does not have permission to write to it."
5951
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
5952
 
5953
- #: admin.php:2749
5954
  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"
5955
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
5956
 
5957
- #: admin.php:2735
5958
  msgid "The request to the filesystem to create the directory failed."
5959
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
5960
 
5961
- #: addons/migrator.php:2243 admin.php:614 admin.php:2651 admin.php:2684
5962
- #: admin.php:3326 templates/wp-admin/settings/delete-and-restore-modals.php:5
5963
  msgid "Delete"
5964
  msgstr "حذف"
5965
 
5966
- #: admin.php:2591
5967
  msgid "show log"
5968
  msgstr "عرض السجل"
5969
 
@@ -6039,7 +6097,7 @@ msgstr "قم بقراءة هذا المقال المليئ بالأشياء ال
6039
  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"
6040
  msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
6041
 
6042
- #: addons/morefiles.php:70
6043
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6044
  msgid "%s restoration options:"
6045
  msgstr "%s خيارات الإستعادة:"
@@ -6076,7 +6134,7 @@ msgstr "استعادة النسخة الاحتياطية"
6076
  msgid "Delete backup set"
6077
  msgstr "حذف مجموعة النسخ الاحتياطية"
6078
 
6079
- #: admin.php:596
6080
  msgid "Download error: the server sent us a response which we did not understand."
6081
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
6082
 
@@ -6086,17 +6144,21 @@ msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم
6086
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6087
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6088
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6089
- #: addons/s3-enhanced.php:127 addons/sftp.php:736 addons/webdav.php:79
6090
- #: admin.php:82 admin.php:588 admin.php:3584 admin.php:3614
6091
- #: methods/remotesend.php:76 methods/remotesend.php:234
6092
- #: methods/updraftvault.php:434 restorer.php:1364
6093
  msgid "Error:"
6094
  msgstr "خطأ:"
6095
 
6096
- #: admin.php:579 templates/wp-admin/settings/downloading-and-restoring.php:34
6097
  msgid "calculating..."
6098
  msgstr "حساب ..."
6099
 
 
 
 
 
6100
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6101
  msgid "UpdraftPlus - Upload backup files"
6102
  msgstr "UpdraftPlus - تحميل ملفات النسخ الاحتياطي"
@@ -6109,14 +6171,14 @@ msgstr "تحديث"
6109
  msgid "Web-server disk space in use by UpdraftPlus"
6110
  msgstr "مساحة القرص لخادم الويب قيد الاستخدام من قبل UpdraftPlus"
6111
 
6112
- #: addons/google-enhanced.php:72 methods/googledrive.php:146
6113
- #: methods/googledrive.php:363 methods/googledrive.php:386
6114
- #: methods/googledrive.php:415 methods/googledrive.php:422
6115
- #: methods/googledrive.php:432 methods/googledrive.php:438
6116
- #: methods/googledrive.php:440 methods/googledrive.php:903
6117
- #: methods/googledrive.php:915 methods/googledrive.php:931
6118
- #: methods/googledrive.php:935 methods/googledrive.php:946
6119
- #: methods/googledrive.php:956
6120
  msgid "Google Drive"
6121
  msgstr "جوجل درايف"
6122
 
@@ -6132,37 +6194,38 @@ msgstr "متصفح الويب أوبرا "
6132
  msgid "More tasks:"
6133
  msgstr "المزيد من المهام:"
6134
 
6135
- #: admin.php:2354
6136
  msgid "Download most recently modified log file"
6137
  msgstr "تحميل ملف السجل المعدل مؤخرا"
6138
 
6139
- #: admin.php:2313 admin.php:2319 central/bootstrap.php:161
6140
  msgid "(Nothing yet logged)"
6141
  msgstr "(لا شيء حتى الآن تم تسجيله)"
6142
 
6143
- #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2312
6144
- #: admin.php:2317
6145
  msgid "Last log message"
6146
  msgstr "رسالة السجل الأخيرة"
6147
 
6148
- #: addons/migrator.php:218 admin.php:619 admin.php:3317
6149
  #: templates/wp-admin/settings/tab-status.php:30
6150
  msgid "Restore"
6151
  msgstr "الإستعادة"
6152
 
6153
- #: admin.php:448 admin.php:612 templates/wp-admin/settings/tab-status.php:27
6154
  msgid "Backup Now"
6155
  msgstr "النسخ الاحتياطي الآن"
6156
 
6157
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6158
- #: addons/reporting.php:231 admin.php:233 admin.php:3116 admin.php:3189
6159
- #: admin.php:3668 includes/class-wpadmin-commands.php:138
 
6160
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6161
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6162
  msgid "Database"
6163
  msgstr "قاعدة بيانات"
6164
 
6165
- #: admin.php:229 admin.php:4080
6166
  msgid "Files"
6167
  msgstr "ملفات"
6168
 
@@ -6170,11 +6233,11 @@ msgstr "ملفات"
6170
  msgid "Next scheduled backups"
6171
  msgstr "النسخ الاحتياطي المجدولة القادمة"
6172
 
6173
- #: admin.php:209
6174
  msgid "At the same time as the files backup"
6175
  msgstr "في نفس الوقت الذي نقوم فيه بالنسخ الاحتياطي للملفات"
6176
 
6177
- #: admin.php:199 admin.php:220 admin.php:227
6178
  msgid "Nothing currently scheduled"
6179
  msgstr "لا شيء مقرر حاليا"
6180
 
@@ -6186,15 +6249,15 @@ msgstr "واجهة المشرف هذه تستخدم الجافا سكريبت ب
6186
  msgid "JavaScript warning"
6187
  msgstr "تحذير جافا سكريبت"
6188
 
6189
- #: admin.php:599 admin.php:2381
6190
  msgid "Delete Old Directories"
6191
  msgstr "حذف الدلائل القديمة"
6192
 
6193
- #: admin.php:2126
6194
  msgid "Current limit is:"
6195
  msgstr "الحد الحالي هو:"
6196
 
6197
- #: admin.php:2100
6198
  msgid "Your backup has been restored."
6199
  msgstr "تمت استعادة النسخ الاحتياطي."
6200
 
@@ -6206,127 +6269,127 @@ msgstr "الإصدار"
6206
  msgid "Lead developer's homepage"
6207
  msgstr "الولوج لموقع المطور"
6208
 
6209
- #: admin.php:4000
6210
  msgid "Your settings have been wiped."
6211
  msgstr "تم القضاء على الإعدادات الخاصة بك."
6212
 
6213
- #: admin.php:2060
6214
  msgid "Backup directory successfully created."
6215
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
6216
 
6217
- #: admin.php:2053
6218
  msgid "Backup directory could not be created"
6219
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
6220
 
6221
- #: admin.php:2623
6222
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6223
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
6224
 
6225
- #: admin.php:2621
6226
  msgid "Old directories successfully removed."
6227
  msgstr "تم إزالة الدلائل القديمة بنجاح."
6228
 
6229
- #: admin.php:2618
6230
  msgid "Remove old directories"
6231
  msgstr "إزالة الدلائل القديمة"
6232
 
6233
- #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2002
6234
- #: admin.php:2011 admin.php:2020 admin.php:2062 admin.php:2625
6235
  msgid "Return to UpdraftPlus Configuration"
6236
  msgstr "العودة إلى اعدادات UpdraftPlus"
6237
 
6238
- #: admin.php:592 admin.php:2002 admin.php:2011 admin.php:2020 admin.php:2062
6239
- #: admin.php:2625 templates/wp-admin/settings/existing-backups-table.php:14
6240
  msgid "Actions"
6241
  msgstr "الإجراءات"
6242
 
6243
- #: admin.php:1991
6244
  msgid "Restore successful!"
6245
  msgstr "استعادة ناجحة!"
6246
 
6247
- #: admin.php:1921
6248
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6249
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
6250
 
6251
- #: admin.php:1831
6252
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6253
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
6254
 
6255
- #: admin.php:1712
6256
  msgid "No local copy present."
6257
  msgstr "لا نسخة محلية متوفرة."
6258
 
6259
- #: admin.php:1709
6260
  msgid "Download in progress"
6261
  msgstr "التحميل في تقدم"
6262
 
6263
- #: admin.php:591 admin.php:1697
6264
  msgid "File ready."
6265
  msgstr "ملف جاهز."
6266
 
6267
- #: admin.php:1678
6268
  msgid "Download failed"
6269
  msgstr "فشل تحميل"
6270
 
6271
- #: admin.php:589 admin.php:1469 admin.php:3567 class-updraftplus.php:980
6272
- #: class-updraftplus.php:1024 methods/addon-base.php:75
6273
- #: methods/addon-base.php:80 methods/addon-base.php:194
6274
- #: methods/addon-base.php:214 methods/stream-base.php:201 restorer.php:2199
6275
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6276
  msgid "Error"
6277
  msgstr "خطأ"
6278
 
6279
- #: admin.php:1497
6280
  msgid "Could not find that job - perhaps it has already finished?"
6281
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
6282
 
6283
- #: admin.php:1489
6284
  msgid "Job deleted"
6285
  msgstr "وظيفة حذفت"
6286
 
6287
- #: admin.php:1573
6288
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6289
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
6290
 
6291
- #: admin.php:663
6292
  msgid "Nothing yet logged"
6293
  msgstr "لا شيء حتى الآن تم تسجيله"
6294
 
6295
- #: admin.php:871
6296
  msgid "Please consult this FAQ if you have problems backing up."
6297
  msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
6298
 
6299
- #: admin.php:871
6300
  msgid "Your website is hosted using the %s web server."
6301
  msgstr "موقعك يستخدم %s من خادم الويب."
6302
 
6303
- #: admin.php:867
6304
  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."
6305
  msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
6306
 
6307
- #: admin.php:863
6308
  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."
6309
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
6310
 
6311
- #: admin.php:855 admin.php:859 admin.php:863 admin.php:867 admin.php:871
6312
- #: admin.php:880 admin.php:2987 admin.php:2994 admin.php:2996
6313
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448 methods/ftp.php:284
6314
- #: methods/openstack-base.php:513 methods/s3.php:795 methods/s3.php:799
6315
- #: methods/updraftvault.php:260
6316
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6317
  #: udaddons/updraftplus-addons.php:208
6318
  msgid "Warning"
6319
  msgstr "تحذير"
6320
 
6321
- #: admin.php:804
6322
  msgid "Add-Ons / Pro Support"
6323
  msgstr "إضافات / الدعم المدفوع"
6324
 
6325
- #: admin.php:464 admin.php:800 templates/wp-admin/settings/tab-bar.php:7
6326
  msgid "Settings"
6327
  msgstr "إعدادات"
6328
 
6329
- #: admin.php:773
6330
  msgid "Allowed Files"
6331
  msgstr "ملفات مسموحة"
6332
 
@@ -6334,7 +6397,7 @@ msgstr "ملفات مسموحة"
6334
  msgid "Could not create %s zip. Consult the log file for more information."
6335
  msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
6336
 
6337
- #: backup.php:1999
6338
  msgid "Infinite recursion: consult your log for more information"
6339
  msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
6340
 
@@ -6346,88 +6409,88 @@ msgstr ""
6346
  msgid "Like UpdraftPlus and can spare one minute?"
6347
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
6348
 
6349
- #: addons/azure.php:217 class-updraftplus.php:3660 methods/googledrive.php:838
6350
  msgid "File not found"
6351
  msgstr "لم يتم العثور على ملف"
6352
 
6353
- #: class-updraftplus.php:3571
6354
  msgid "The decryption key used:"
6355
  msgstr "مفتاح فك التشفير المستخدم:"
6356
 
6357
- #: class-updraftplus.php:3571 class-updraftplus.php:3841 restorer.php:390
6358
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6359
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
6360
 
6361
- #: class-updraftplus.php:3552 class-updraftplus.php:3829 restorer.php:377
6362
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6363
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
6364
 
6365
- #: backup.php:1889
6366
  msgid "Could not open the backup file for writing"
6367
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
6368
 
6369
- #: class-updraftplus.php:3186
6370
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6371
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
6372
 
6373
- #: class-updraftplus.php:3163
6374
  msgid "Could not read the directory"
6375
  msgstr "لا يمكن قراءة الدليل"
6376
 
6377
- #: admin.php:1749 backup.php:1127 restorer.php:225
6378
  msgid "Backup directory (%s) is not writable, or does not exist."
6379
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
6380
 
6381
- #: backup.php:931
6382
  msgid "WordPress backup is complete"
6383
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
6384
 
6385
- #: class-updraftplus.php:2736
6386
  msgid "The backup attempt has finished, apparently unsuccessfully"
6387
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
6388
 
6389
- #: class-updraftplus.php:2721
6390
  msgid "The backup apparently succeeded and is now complete"
6391
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
6392
 
6393
- #: addons/moredatabase.php:368
6394
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6395
  msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
6396
 
6397
- #: class-updraftplus.php:2148
6398
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6399
  msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
6400
 
6401
- #: class-updraftplus.php:1540
6402
  msgid "Others"
6403
  msgstr "أخرى"
6404
 
6405
- #: addons/multisite.php:452 class-updraftplus.php:1525
6406
  msgid "Uploads"
6407
  msgstr "الملفات المرفوعة"
6408
 
6409
- #: class-updraftplus.php:1524
6410
  msgid "Themes"
6411
  msgstr "تصاميم"
6412
 
6413
- #: class-updraftplus.php:1523
6414
  msgid "Plugins"
6415
  msgstr "الإضافات"
6416
 
6417
- #: class-updraftplus.php:394
6418
  msgid "No log files were found."
6419
  msgstr "لا توجد ملفات السجل."
6420
 
6421
- #: admin.php:1632 admin.php:1636 class-updraftplus.php:389
6422
  msgid "The log file could not be read."
6423
  msgstr "لا يمكن قراءة ملف السجل."
6424
 
6425
- #: admin.php:887 admin.php:891 admin.php:895 admin.php:899 admin.php:903
6426
- #: class-updraftplus.php:354 class-updraftplus.php:389
6427
- #: class-updraftplus.php:394 class-updraftplus.php:399
6428
  msgid "UpdraftPlus notice:"
6429
  msgstr "إشعار UpdraftPlus :"
6430
 
6431
- #: addons/multisite.php:63 addons/multisite.php:660 options.php:42
6432
  msgid "UpdraftPlus Backups"
6433
  msgstr "نسخ الإحتياطية UpdraftPlus"
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: methods/updraftvault.php:49
15
+ msgid "UpdraftVault"
16
+ msgstr ""
17
+
18
+ #: includes/updraftplus-notices.php:260
19
+ msgid "get more info"
20
+ msgstr ""
21
+
22
+ #: includes/updraftplus-notices.php:260
23
+ msgid "install"
24
+ msgstr ""
25
+
26
+ #: includes/updraftplus-notices.php:260
27
+ msgid "Switch to UpdraftPlus's free alternative:"
28
+ msgstr ""
29
+
30
+ #: includes/updraftplus-notices.php:260
31
+ msgid "Clef confirms that they are closing down their two factor security plugin."
32
+ msgstr ""
33
+
34
+ #: includes/class-wpadmin-commands.php:467
35
+ msgid "archive"
36
+ msgstr ""
37
+
38
+ #: includes/class-wpadmin-commands.php:458
39
+ msgid "Extra database"
40
+ msgstr ""
41
+
42
+ #: admin.php:3302
43
+ msgid "Press here to download or browse"
44
+ msgstr ""
45
+
46
+ #: admin.php:1018 admin.php:1028
47
+ msgid "Error: invalid path"
48
+ msgstr ""
49
+
50
+ #: admin.php:876
51
+ msgid "An error occurred when fetching storage module options: "
52
+ msgstr ""
53
+
54
+ #: admin.php:705
55
+ msgid "Loading log file"
56
+ msgstr ""
57
+
58
+ #: admin.php:704
59
+ msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
60
+ msgstr ""
61
+
62
+ #: admin.php:703
63
+ msgid "Search"
64
+ msgstr ""
65
+
66
+ #: admin.php:702
67
+ msgid "Select a file to view information about it"
68
+ msgstr ""
69
+
70
+ #: admin.php:701
71
+ msgid "Browsing zip file"
72
+ msgstr ""
73
+
74
+ #: admin.php:671
75
+ msgid "With UpdraftPlus Premium, you can directly download individual files from here."
76
+ msgstr ""
77
+
78
+ #: admin.php:619
79
+ msgid "Browse contents"
80
+ msgstr ""
81
+
82
  #: restorer.php:1629
83
  msgid "Skipped tables:"
84
  msgstr ""
85
 
86
+ #: class-updraftplus.php:4173
87
  msgid "This database backup has the following WordPress tables excluded: %s"
88
  msgstr ""
89
 
90
+ #: admin.php:2319
91
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
92
  msgstr ""
93
 
94
+ #: admin.php:2319
95
  msgid "All WordPress tables will be backed up."
96
  msgstr ""
97
 
98
+ #: admin.php:700
99
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
100
  msgstr ""
101
 
102
+ #: admin.php:700
103
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
104
  msgstr ""
105
 
106
+ #: admin.php:700
107
  msgid "The available memory on the server."
108
  msgstr ""
109
 
110
+ #: admin.php:700
111
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
112
  msgstr ""
113
 
114
+ #: admin.php:700
115
  msgid "The file failed to upload. Please check the following:"
116
  msgstr ""
117
 
118
+ #: admin.php:699
119
  msgid "HTTP code:"
120
  msgstr ""
121
 
122
+ #: admin.php:596
123
  msgid "You have chosen to backup a database, but no tables have been selected"
124
  msgstr ""
125
 
126
+ #: addons/moredatabase.php:575
127
  msgid "tables"
128
  msgstr ""
129
 
130
+ #: addons/moredatabase.php:574
131
  msgid "WordPress database"
132
  msgstr ""
133
 
134
+ #: addons/moredatabase.php:567
135
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
136
  msgstr ""
137
 
282
  msgid "UpdraftPlus"
283
  msgstr ""
284
 
285
+ #: templates/wp-admin/settings/form-contents.php:274
286
  msgid "Recommended: optimize your database with WP-Optimize."
287
  msgstr ""
288
 
305
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
306
  msgstr ""
307
 
308
+ #: addons/morefiles.php:306
 
 
 
 
309
  msgid "Please choose a file or directory"
310
  msgstr ""
311
 
312
+ #: addons/morefiles.php:295
313
  msgid "Confirm"
314
  msgstr ""
315
 
316
+ #: addons/morefiles.php:298
317
  msgid "Go up a directory"
318
  msgstr ""
319
 
320
+ #: addons/morefiles.php:291
321
  msgid "Add directory..."
322
  msgstr ""
323
 
324
+ #: addons/morefiles.php:284 addons/morefiles.php:304
325
  msgid "Edit"
326
  msgstr ""
327
 
328
+ #: addons/morefiles.php:267
329
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
330
  msgstr ""
331
 
605
  msgid "Backup of: %s"
606
  msgstr ""
607
 
608
+ #: methods/googledrive.php:196
609
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
610
  msgstr ""
611
 
612
+ #: methods/dropbox.php:556
613
  msgid "%s de-authentication"
614
  msgstr ""
615
 
616
+ #: methods/dropbox.php:524
617
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
618
  msgstr ""
619
 
620
+ #: methods/dropbox.php:498
621
  msgid "Follow this link to deauthenticate with %s."
622
  msgstr ""
623
 
625
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
626
  msgstr ""
627
 
628
+ #: backup.php:1507
629
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
630
  msgstr ""
631
 
633
  msgid "You have selected a remote storage option which has an authorization step to complete:"
634
  msgstr ""
635
 
636
+ #: admin.php:1440
637
  msgid "Remote files deleted:"
638
  msgstr ""
639
 
640
+ #: admin.php:1439
641
  msgid "Local files deleted:"
642
  msgstr ""
643
 
644
+ #: admin.php:921 admin.php:925 admin.php:933 admin.php:937
645
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
646
  msgstr ""
647
 
648
+ #: admin.php:698
649
  msgid "remote files deleted"
650
  msgstr ""
651
 
652
+ #: admin.php:696
653
  msgid "Complete"
654
  msgstr ""
655
 
656
+ #: admin.php:695
657
  msgid "Do you want to carry out the import?"
658
  msgstr ""
659
 
660
+ #: admin.php:694
661
  msgid "Which was exported on:"
662
  msgstr ""
663
 
664
+ #: admin.php:693
665
  msgid "This will import data from:"
666
  msgstr ""
667
 
668
+ #: admin.php:692
669
  msgid "Importing..."
670
  msgstr ""
671
 
672
+ #: admin.php:689
673
  msgid "You have not yet selected a file to import."
674
  msgstr ""
675
 
676
+ #: admin.php:673
677
  msgid "Your export file will be of your displayed settings, not your saved ones."
678
  msgstr ""
679
 
718
  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"
719
  msgstr ""
720
 
721
+ #: admin.php:2144
722
  msgid "To fix this problem go here."
723
  msgstr ""
724
 
725
+ #: admin.php:2144
726
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
727
  msgstr ""
728
 
729
+ #: admin.php:657
730
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
731
  msgstr ""
732
 
758
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
759
  msgstr ""
760
 
761
+ #: methods/s3.php:1014
762
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
763
  msgstr ""
764
 
765
+ #: methods/s3.php:91
766
  msgid "No settings were found - please go to the Settings tab and check your settings"
767
  msgstr ""
768
 
830
  msgid "Public key was sent to:"
831
  msgstr ""
832
 
833
+ #: backup.php:2079
834
  msgid "Failed to open directory (check the file permissions and ownership): %s"
835
  msgstr ""
836
 
837
+ #: backup.php:2057
838
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
839
  msgstr ""
840
 
880
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
881
  msgstr ""
882
 
883
+ #: methods/googledrive.php:407
884
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
885
  msgstr ""
886
 
887
+ #: methods/ftp.php:390
888
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
889
  msgstr ""
890
 
891
+ #: methods/ftp.php:362
892
  msgid "login"
893
  msgstr "تسجيل الدخول"
894
 
895
+ #: methods/email.php:79
896
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
897
  msgstr ""
898
 
899
+ #: methods/email.php:30
900
  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."
901
  msgstr ""
902
 
903
+ #: class-updraftplus.php:1557
904
  msgid "Size: %s MB"
905
  msgstr ""
906
 
912
  msgid "i.e. you have an account there"
913
  msgstr ""
914
 
915
+ #: templates/wp-admin/settings/form-contents.php:359
916
  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)."
917
  msgstr ""
918
 
920
  msgid "Now"
921
  msgstr "الآن"
922
 
923
+ #: class-updraftplus.php:4037 restorer.php:996
924
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
925
  msgstr ""
926
 
928
  msgid "(tap on an icon to select or unselect)"
929
  msgstr ""
930
 
931
+ #: methods/updraftvault.php:289 methods/updraftvault.php:295
932
+ #: methods/updraftvault.php:301
933
  msgid "%s per year"
934
  msgstr ""
935
 
936
+ #: methods/updraftvault.php:288 methods/updraftvault.php:294
937
+ #: methods/updraftvault.php:300
938
  msgid "or (annual discount)"
939
  msgstr ""
940
 
941
+ #: methods/updraftvault.php:233
942
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
943
  msgstr ""
944
 
945
+ #: class-updraftplus.php:418 class-updraftplus.php:463
946
  msgid "The given file was not found, or could not be read."
947
  msgstr ""
948
 
1042
  msgid "UpdraftCentral Connection"
1043
  msgstr ""
1044
 
1045
+ #: backup.php:849 class-updraftplus.php:2813
1046
  msgid "The backup was aborted by the user"
1047
  msgstr ""
1048
 
1049
+ #: admin.php:4003
1050
  msgid "Your settings have been saved."
1051
  msgstr "تم حفظ إعداداتك."
1052
 
1053
+ #: admin.php:3196
1054
  msgid "Total backup size:"
1055
  msgstr ""
1056
 
1057
+ #: admin.php:2641
1058
  msgid "stop"
1059
  msgstr "توقف"
1060
 
1061
+ #: admin.php:2479
1062
  msgid "The backup has finished running"
1063
  msgstr ""
1064
 
1084
  msgid "calculate"
1085
  msgstr ""
1086
 
1087
+ #: admin.php:672
1088
  msgid "You should save your changes to ensure that they are used for making your backup."
1089
  msgstr ""
1090
 
1091
+ #: admin.php:665
1092
  msgid "We requested to delete the file, but could not understand the server's response"
1093
  msgstr ""
1094
 
1095
+ #: admin.php:664
1096
  msgid "Please enter a valid URL"
1097
  msgstr ""
1098
 
1099
+ #: admin.php:647
1100
  msgid "Saving..."
1101
  msgstr "جاري الحفظ..."
1102
 
1103
+ #: admin.php:610
1104
  msgid "Error: the server sent us a response which we did not understand."
1105
  msgstr ""
1106
 
1107
+ #: admin.php:602
1108
  msgid "Fetching..."
1109
  msgstr ""
1110
 
1112
  msgid "Asia Pacific (Seoul)"
1113
  msgstr ""
1114
 
 
 
 
 
1115
  #: restorer.php:1618
1116
  msgid "Uploads URL:"
1117
  msgstr ""
1118
 
1119
+ #: backup.php:400
1120
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1121
  msgstr ""
1122
 
1128
  msgid "Skipping table %s: this table will not be restored"
1129
  msgstr ""
1130
 
1131
+ #: class-updraftplus.php:4088 restorer.php:1642
1132
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1133
  msgstr ""
1134
 
1135
+ #: class-updraftplus.php:4084
1136
  msgid "Please read this link for important information on this process."
1137
  msgstr ""
1138
 
1139
+ #: class-updraftplus.php:4084
1140
  msgid "It will be imported as a new site."
1141
  msgstr ""
1142
 
1143
+ #: admin.php:2292 templates/wp-admin/notices/horizontal-notice.php:16
1144
  #: templates/wp-admin/notices/horizontal-notice.php:18
1145
  msgid "Dismiss"
1146
  msgstr "رفض"
1147
 
1148
+ #: admin.php:684
1149
  msgid "Please fill in the required information."
1150
  msgstr ""
1151
 
1152
+ #: addons/multisite.php:550
1153
  msgid "Read more..."
1154
  msgstr ""
1155
 
1156
+ #: addons/multisite.php:550
1157
  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."
1158
  msgstr ""
1159
 
1160
+ #: addons/multisite.php:541
1161
  msgid "may include some site-wide data"
1162
  msgstr ""
1163
 
1164
+ #: addons/multisite.php:536
1165
  msgid "All sites"
1166
  msgstr ""
1167
 
1168
+ #: addons/multisite.php:532
1169
  msgid "Which site to restore"
1170
  msgstr ""
1171
 
1172
+ #: addons/multisite.php:368 addons/multisite.php:378
1173
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1174
  msgstr ""
1175
 
1217
  msgid "Call WordPress action:"
1218
  msgstr ""
1219
 
1220
+ #: admin.php:2327
1221
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1222
  msgstr ""
1223
 
1224
+ #: admin.php:3604
1225
  msgid "Skipping: this archive was already restored."
1226
  msgstr ""
1227
 
1228
+ #: templates/wp-admin/settings/form-contents.php:200
1229
  msgid "File Options"
1230
  msgstr ""
1231
 
1253
  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)."
1254
  msgstr ""
1255
 
1256
+ #: admin.php:3885
1257
  msgid "Send this backup to remote storage"
1258
  msgstr ""
1259
 
1260
+ #: admin.php:3883
1261
  msgid "Check out UpdraftPlus Vault."
1262
  msgstr ""
1263
 
1264
+ #: admin.php:3883
1265
  msgid "Not got any remote storage?"
1266
  msgstr ""
1267
 
1268
+ #: admin.php:3883
1269
  msgid "settings"
1270
  msgstr "إعدادات"
1271
 
1272
+ #: admin.php:3883
1273
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1274
  msgstr ""
1275
 
1276
+ #: admin.php:2325
1277
  msgid "Include any files in the backup"
1278
  msgstr ""
1279
 
1280
+ #: admin.php:2311
1281
  msgid "Include the database in the backup"
1282
  msgstr ""
1283
 
1284
+ #: admin.php:2291
1285
  msgid "Continue restoration"
1286
  msgstr ""
1287
 
1288
+ #: admin.php:2286
1289
  msgid "You have an unfinished restoration operation, begun %s ago."
1290
  msgstr ""
1291
 
1292
+ #: admin.php:2285
1293
  msgid "Unfinished restoration"
1294
  msgstr ""
1295
 
1296
+ #: admin.php:2283
1297
  msgid "%s minutes, %s seconds"
1298
  msgstr ""
1299
 
1300
+ #: admin.php:2230
1301
  msgid "Backup Contents And Schedule"
1302
  msgstr ""
1303
 
1305
  msgid "Premium / Extensions"
1306
  msgstr ""
1307
 
1308
+ #: admin.php:2010 admin.php:2019
1309
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1310
  msgstr ""
1311
 
1312
+ #: addons/morefiles.php:53 admin.php:670
1313
  msgctxt "(verb)"
1314
  msgid "Download"
1315
  msgstr ""
1316
 
1317
+ #: admin.php:595
1318
  msgid "You have chosen to backup files, but no file entities have been selected"
1319
  msgstr ""
1320
 
1321
+ #: admin.php:504
1322
  msgid "Extensions"
1323
  msgstr "Extensions"
1324
 
1325
+ #: admin.php:496 templates/wp-admin/settings/tab-bar.php:8
1326
  msgid "Advanced Tools"
1327
  msgstr ""
1328
 
1403
  msgid "Standard"
1404
  msgstr ""
1405
 
1406
+ #: addons/azure.php:523
1407
  msgid "container"
1408
  msgstr ""
1409
 
1410
+ #: addons/azure.php:523
1411
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1412
  msgstr ""
1413
 
1414
+ #: addons/azure.php:522
1415
  msgid "optional"
1416
  msgstr ""
1417
 
1418
+ #: addons/azure.php:522
1419
  msgid "Prefix"
1420
  msgstr ""
1421
 
1422
+ #: addons/azure.php:517
1423
  msgid "See Microsoft's guidelines on container naming by following this link."
1424
  msgstr ""
1425
 
1426
+ #: addons/azure.php:517
1427
  msgid "If the %s does not already exist, then it will be created."
1428
  msgstr ""
1429
 
1430
+ #: addons/azure.php:517
1431
  msgid "Enter the path of the %s you wish to use here."
1432
  msgstr ""
1433
 
1434
+ #: addons/azure.php:506
1435
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1436
  msgstr ""
1437
 
1438
+ #: addons/azure.php:505
1439
  msgid "Account Name"
1440
  msgstr ""
1441
 
1442
+ #: addons/azure.php:505 addons/azure.php:509
1443
  msgid "Azure"
1444
  msgstr ""
1445
 
1446
+ #: addons/azure.php:501
1447
  msgid "Create Azure credentials in your Azure developer console."
1448
  msgstr ""
1449
 
1450
+ #: addons/azure.php:449
1451
  msgid "Could not create the container"
1452
  msgstr ""
1453
 
1454
+ #: addons/azure.php:343
1455
  msgid "Could not access container"
1456
  msgstr ""
1457
 
1458
+ #: class-updraftplus.php:2830
1459
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1460
  msgstr ""
1461
 
1462
+ #: backup.php:1559
1463
  msgid "the options table was not found"
1464
  msgstr ""
1465
 
1466
+ #: backup.php:1557
1467
  msgid "no options or sitemeta table was found"
1468
  msgstr ""
1469
 
1470
+ #: backup.php:1557 backup.php:1559
1471
  msgid "The database backup appears to have failed"
1472
  msgstr ""
1473
 
1474
+ #: backup.php:1431
1475
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1476
  msgstr ""
1477
 
1588
  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)."
1589
  msgstr ""
1590
 
1591
+ #: admin.php:1438
1592
  msgid "Backup sets removed:"
1593
  msgstr ""
1594
 
1595
+ #: admin.php:683
1596
  msgid "Processing..."
1597
  msgstr ""
1598
 
1599
+ #: admin.php:681
1600
  msgid "For backups older than"
1601
  msgstr ""
1602
 
1603
+ #: admin.php:680
1604
  msgid "week(s)"
1605
  msgstr ""
1606
 
1607
+ #: admin.php:679
1608
  msgid "hour(s)"
1609
  msgstr ""
1610
 
1611
+ #: admin.php:678
1612
  msgid "day(s)"
1613
  msgstr ""
1614
 
1615
+ #: admin.php:677
1616
  msgid "in the month"
1617
  msgstr ""
1618
 
1619
+ #: admin.php:676
1620
  msgid "day"
1621
  msgstr ""
1622
 
1636
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1637
  msgstr ""
1638
 
1639
+ #: methods/updraftvault.php:595
1640
  msgid "You do not currently have any UpdraftPlus Vault quota"
1641
  msgstr ""
1642
 
1643
+ #: class-updraftplus.php:4123
1644
  msgid "You must upgrade MySQL to be able to use this database."
1645
  msgstr ""
1646
 
1647
+ #: class-updraftplus.php:4123
1648
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1649
  msgstr ""
1650
 
1651
+ #: admin.php:2129
1652
  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."
1653
  msgstr ""
1654
 
1655
+ #: methods/updraftvault.php:322
1656
  msgid "Don't know your email address, or forgotten your password?"
1657
  msgstr ""
1658
 
1659
+ #: methods/updraftvault.php:315
1660
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1661
  msgstr ""
1662
 
1663
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1664
  msgid "Read the FAQs here."
1665
  msgstr ""
1666
 
1672
  msgid "Server-side encryption"
1673
  msgstr ""
1674
 
1675
+ #: methods/updraftvault.php:604
1676
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1677
  msgstr ""
1678
 
1679
+ #: admin.php:929
1680
  msgid "Go to the remote storage settings in order to connect."
1681
  msgstr ""
1682
 
1683
+ #: admin.php:929
1684
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1685
  msgstr ""
1686
 
1687
+ #: methods/updraftvault.php:304
1688
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1689
  msgstr ""
1690
 
1691
+ #: admin.php:653
1692
  msgid "Update quota count"
1693
  msgstr ""
1694
 
1695
+ #: admin.php:652
1696
  msgid "Counting..."
1697
  msgstr ""
1698
 
1699
+ #: admin.php:651
1700
  msgid "Disconnecting..."
1701
  msgstr ""
1702
 
1703
+ #: admin.php:649
1704
  msgid "Connecting..."
1705
  msgstr ""
1706
 
1707
+ #: methods/updraftvault.php:378 methods/updraftvault.php:447
1708
  msgid "Refresh current status"
1709
  msgstr ""
1710
 
1711
+ #: methods/updraftvault.php:376 methods/updraftvault.php:392
1712
+ #: methods/updraftvault.php:394 methods/updraftvault.php:447
1713
  msgid "Get more quota"
1714
  msgstr ""
1715
 
1716
+ #: methods/updraftvault.php:373 methods/updraftvault.php:389
1717
+ #: methods/updraftvault.php:428
1718
  msgid "Current use:"
1719
  msgstr ""
1720
 
1721
+ #: methods/updraftvault.php:368
1722
  msgid "You can get more quota here"
1723
  msgstr ""
1724
 
1725
+ #: methods/updraftvault.php:368
1726
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1727
  msgstr ""
1728
 
1729
+ #: admin.php:650 methods/updraftvault.php:360
1730
  msgid "Disconnect"
1731
  msgstr ""
1732
 
1733
+ #: methods/updraftvault.php:352
1734
  msgid "Quota:"
1735
  msgstr ""
1736
 
1737
+ #: methods/updraftvault.php:350
1738
  msgid "Vault owner"
1739
  msgstr ""
1740
 
1741
+ #: methods/updraftvault.php:350
1742
  msgid "Well done - there's nothing more needed to set up."
1743
  msgstr ""
1744
 
1745
+ #: methods/updraftvault.php:350
1746
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1747
  msgstr ""
1748
 
1749
+ #: methods/updraftvault.php:346
1750
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1751
  msgstr ""
1752
 
1753
+ #: methods/updraftvault.php:322
1754
  msgid "Go here for help"
1755
  msgstr ""
1756
 
1757
+ #: methods/updraftvault.php:317
1758
  msgid "E-mail"
1759
  msgstr ""
1760
 
1761
+ #: methods/updraftvault.php:310 methods/updraftvault.php:325
1762
  msgid "Back..."
1763
  msgstr ""
1764
 
1765
+ #: methods/updraftvault.php:304
1766
  msgid "Subscriptions can be cancelled at any time."
1767
  msgstr ""
1768
 
1769
+ #: methods/updraftvault.php:287 methods/updraftvault.php:293
1770
+ #: methods/updraftvault.php:299
1771
  msgid "%s per quarter"
1772
  msgstr ""
1773
 
1774
+ #: central/bootstrap.php:542 methods/updraftvault.php:277
1775
+ #: methods/updraftvault.php:307
1776
  msgid "Read more about it here."
1777
  msgstr ""
1778
 
1779
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1780
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1781
  msgstr ""
1782
 
1783
+ #: methods/updraftvault.php:273
1784
  msgid "Already purchased space?"
1785
  msgstr ""
1786
 
1787
+ #: methods/updraftvault.php:270
1788
  msgid "Show the options"
1789
  msgstr ""
1790
 
1791
+ #: methods/updraftvault.php:269
1792
  msgid "First time user?"
1793
  msgstr ""
1794
 
1795
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1796
  msgid "Press a button to get started."
1797
  msgstr ""
1798
 
1799
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1800
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1801
  msgstr ""
1802
 
1803
+ #: methods/updraftvault.php:229
1804
  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."
1805
  msgstr ""
1806
 
1807
+ #: methods/updraftvault.php:226
1808
  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!"
1809
  msgstr ""
1810
 
1811
+ #: methods/updraftvault.php:223
1812
  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."
1813
  msgstr ""
1814
 
1815
+ #: methods/updraftvault.php:77
1816
  msgid "Updraft Vault"
1817
  msgstr ""
1818
 
1819
+ #: addons/azure.php:365 addons/googlecloud.php:693 methods/s3.php:1042
1820
  msgid "Delete failed:"
1821
  msgstr ""
1822
 
1823
+ #: backup.php:3019
1824
  msgid "The zip engine returned the message: %s."
1825
  msgstr ""
1826
 
1844
  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."
1845
  msgstr ""
1846
 
1847
+ #: addons/migrator.php:1742 admin.php:659
1848
  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."
1849
  msgstr ""
1850
 
1912
  msgid "Backup made by %s"
1913
  msgstr ""
1914
 
1915
+ #: methods/addon-base-v2.php:187
1916
  msgid "This storage method does not allow downloading"
1917
  msgstr ""
1918
 
1919
+ #: admin.php:3364
1920
  msgid "(backup set imported from remote location)"
1921
  msgstr ""
1922
 
1936
  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."
1937
  msgstr ""
1938
 
1939
+ #: addons/migrator.php:1770 admin.php:666
1940
  msgid "Testing connection..."
1941
  msgstr ""
1942
 
1943
+ #: admin.php:663
1944
  msgid "Deleting..."
1945
  msgstr ""
1946
 
1947
+ #: admin.php:662
1948
  msgid "key name"
1949
  msgstr ""
1950
 
1951
+ #: admin.php:660
1952
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1953
  msgstr ""
1954
 
1955
+ #: admin.php:657
1956
  msgid "Creating..."
1957
  msgstr ""
1958
 
1976
  msgid "Or, send a backup to another site"
1977
  msgstr ""
1978
 
1979
+ #: addons/migrator.php:1937 admin.php:667
1980
  msgid "Send"
1981
  msgstr ""
1982
 
1983
+ #: addons/migrator.php:1931 admin.php:658
1984
  msgid "Send to site:"
1985
  msgstr ""
1986
 
2012
  msgid "key"
2013
  msgstr ""
2014
 
2015
+ #: methods/ftp.php:336
2016
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2017
  msgstr ""
2018
 
2019
+ #: methods/ftp.php:334
2020
  msgid "Passive mode"
2021
  msgstr ""
2022
 
2023
+ #: methods/ftp.php:329
2024
  msgid "Remote path"
2025
  msgstr ""
2026
 
2027
+ #: methods/ftp.php:324
2028
  msgid "FTP password"
2029
  msgstr ""
2030
 
2031
+ #: methods/ftp.php:319
2032
  msgid "FTP login"
2033
  msgstr ""
2034
 
2035
+ #: methods/ftp.php:314
2036
  msgid "FTP server"
2037
  msgstr ""
2038
 
2044
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2045
  msgstr ""
2046
 
2047
+ #: addons/migrator.php:2180 admin.php:655
2048
  msgid "Add site"
2049
  msgstr ""
2050
 
2051
+ #: admin.php:654
2052
  msgid "Adding..."
2053
  msgstr ""
2054
 
2055
+ #: udaddons/options.php:345
2056
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2057
  msgstr ""
2058
 
2080
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2081
  msgstr ""
2082
 
2083
+ #: admin.php:646 admin.php:672 admin.php:673
2084
  msgid "You have made changes to your settings, and not saved."
2085
  msgstr ""
2086
 
2092
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2093
  msgstr ""
2094
 
2095
+ #: addons/azure.php:501 addons/migrator.php:1757 addons/onedrive.php:961
2096
  msgid "For longer help, including screenshots, follow this link."
2097
  msgstr ""
2098
 
2116
  msgid "Please re-authorize the connection to your %s account."
2117
  msgstr ""
2118
 
2119
+ #: methods/email.php:75
2120
  msgid "configure it here"
2121
  msgstr ""
2122
 
2123
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2124
  msgid "To remove the block, please go here."
2125
  msgstr ""
2126
 
2265
  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)"
2266
  msgstr ""
2267
 
2268
+ #: methods/s3.php:844
2269
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2270
  msgstr ""
2271
 
2281
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2282
  msgstr ""
2283
 
2284
+ #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:568
2285
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2286
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2287
  msgstr ""
2288
 
2289
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2290
  #: udaddons/updraftplus-addons.php:747
2291
  msgid "It appears that your web server's IP Address (%s) is blocked."
2292
  msgstr ""
2293
 
2294
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2295
  #: udaddons/updraftplus-addons.php:747
2296
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2297
  msgstr ""
2342
  msgid "(at same time as files backup)"
2343
  msgstr ""
2344
 
2345
+ #: admin.php:2888
2346
  msgid "No backup has been completed"
2347
  msgstr ""
2348
 
2390
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2391
  msgstr ""
2392
 
2393
+ #: methods/s3.php:138 methods/s3.php:139 methods/s3.php:140 methods/s3.php:148
2394
+ #: methods/s3.php:149 methods/s3.php:150
2395
  msgid "%s Error: Failed to initialise"
2396
  msgstr ""
2397
 
2398
+ #: templates/wp-admin/settings/form-contents.php:249
2399
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2400
  msgid "or"
2401
  msgstr ""
2405
  msgid "or"
2406
  msgstr ""
2407
 
2408
+ #: admin.php:640
2409
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2410
  msgstr ""
2411
 
2412
+ #: addons/sftp.php:380
2413
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2414
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2415
  msgstr ""
2416
 
2417
+ #: addons/sftp.php:343
2418
  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."
2419
  msgstr ""
2420
 
2421
+ #: methods/openstack2.php:156
2422
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2423
  msgid "tenant"
2424
  msgstr ""
2425
 
2426
+ #: methods/openstack2.php:106
2427
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2428
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2429
  msgstr ""
2430
 
2431
+ #: templates/wp-admin/settings/form-contents.php:320
2432
  msgid "your site's admin address"
2433
  msgstr ""
2434
 
2435
+ #: templates/wp-admin/settings/form-contents.php:320
2436
  msgid "Check this box to have a basic report sent to"
2437
  msgstr ""
2438
 
2439
+ #: admin.php:2897
2440
  msgctxt "i.e. Non-automatic"
2441
  msgid "Manual"
2442
  msgstr ""
2450
  msgid "Change Lock Settings"
2451
  msgstr ""
2452
 
2453
+ #: addons/morefiles.php:245
2454
  msgid "Any other file/directory on your server that you wish to back up"
2455
  msgstr ""
2456
 
2457
+ #: admin.php:2146
2458
  msgid "For even more features and personal support, check out "
2459
  msgstr ""
2460
 
2470
  msgid "Database decryption phrase"
2471
  msgstr ""
2472
 
2473
+ #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:645
2474
  msgid "Automatic backup before update"
2475
  msgstr ""
2476
 
2550
  msgid "The admin password has now been removed."
2551
  msgstr ""
2552
 
2553
+ #: addons/morefiles.php:134
2554
  msgid "(learn more about this significant option)"
2555
  msgstr ""
2556
 
2557
+ #: udaddons/options.php:280
2558
  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."
2559
  msgstr ""
2560
 
2561
+ #: admin.php:2479 admin.php:3387
2562
  msgid "View Log"
2563
  msgstr ""
2564
 
2575
  msgid "and retain this many scheduled backups"
2576
  msgstr ""
2577
 
2578
+ #: admin.php:2858
2579
  msgid "incremental backup; base backup: %s"
2580
  msgstr ""
2581
 
2587
  msgid "Upload files into UpdraftPlus."
2588
  msgstr ""
2589
 
2590
+ #: admin.php:880 includes/class-commands.php:363
2591
  #: templates/wp-admin/settings/tab-status.php:22
2592
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2593
  msgstr ""
2594
 
2595
+ #: class-updraftplus.php:4073
2596
  msgid "Backup label:"
2597
  msgstr ""
2598
 
2599
+ #: admin.php:1674
2600
  msgid "Error: unexpected file read fail"
2601
  msgstr ""
2602
 
2603
+ #: backup.php:3025
2604
  msgid "check your log for more details."
2605
  msgstr ""
2606
 
2607
+ #: backup.php:3023
2608
  msgid "your web hosting account appears to be full; please see: %s"
2609
  msgstr ""
2610
 
2611
+ #: backup.php:3021
2612
  msgid "A zip error occurred"
2613
  msgstr ""
2614
 
2616
  msgid "Your label for this backup (optional)"
2617
  msgstr ""
2618
 
2619
+ #: addons/googlecloud.php:822 methods/googledrive.php:902
2620
  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."
2621
  msgstr ""
2622
 
2623
+ #: methods/updraftvault.php:607 udaddons/updraftplus-addons.php:789
2624
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2625
  msgstr ""
2626
 
2627
+ #: methods/updraftvault.php:604 udaddons/updraftplus-addons.php:785
2628
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2629
  msgstr ""
2630
 
2631
+ #: methods/updraftvault.php:544 udaddons/updraftplus-addons.php:655
2632
  msgid "You need to supply both an email address and a password"
2633
  msgstr ""
2634
 
2636
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2637
  msgstr ""
2638
 
2639
+ #: class-updraftplus.php:4092
2640
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2641
  msgstr ""
2642
 
2643
+ #: class-updraftplus.php:4092
2644
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2645
  msgstr ""
2646
 
2668
  msgid "Rows per batch"
2669
  msgstr ""
2670
 
2671
+ #: udaddons/options.php:109
2672
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2673
  msgstr ""
2674
 
2675
+ #: udaddons/options.php:107 udaddons/options.php:109
2676
  msgid "You need to connect to receive future updates to UpdraftPlus."
2677
  msgstr ""
2678
 
2679
+ #: class-updraftplus.php:4065
2680
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2681
  msgstr ""
2682
 
2683
+ #: class-updraftplus.php:4065
2684
  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."
2685
  msgstr ""
2686
 
2687
+ #: class-updraftplus.php:4065
2688
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2689
  msgstr ""
2690
 
2691
+ #: class-updraftplus.php:4065
2692
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2693
  msgstr ""
2694
 
2713
  msgid "UpdraftPlus is on social media - check us out!"
2714
  msgstr ""
2715
 
2716
+ #: admin.php:3448
2717
  msgid "Why am I seeing this?"
2718
  msgstr ""
2719
 
2725
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2726
  msgstr ""
2727
 
2728
+ #: admin.php:1622 admin.php:1634
2729
  msgid "Start backup"
2730
  msgstr ""
2731
 
2732
+ #: class-updraftplus.php:4037 restorer.php:996
2733
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2734
  msgstr ""
2735
 
2736
+ #: admin.php:2802
2737
  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."
2738
  msgstr ""
2739
 
2741
  msgid "Unless you have a problem, you can completely ignore everything here."
2742
  msgstr ""
2743
 
2744
+ #: admin.php:1832
2745
  msgid "This file could not be uploaded"
2746
  msgstr ""
2747
 
2748
+ #: admin.php:1797
2749
  msgid "You will find more information about this in the Settings section."
2750
  msgstr ""
2751
 
2765
  msgid "Memory limit"
2766
  msgstr ""
2767
 
2768
+ #: class-updraftplus.php:4195 restorer.php:1441
2769
  msgid "restoration"
2770
  msgstr ""
2771
 
2773
  msgid "Table to be implicitly dropped: %s"
2774
  msgstr ""
2775
 
2776
+ #: backup.php:844
2777
  msgid "Incremental"
2778
  msgstr ""
2779
 
2780
+ #: backup.php:844
2781
  msgid "Full backup"
2782
  msgstr ""
2783
 
2793
  msgid "Backup succeeded"
2794
  msgstr ""
2795
 
2796
+ #: admin.php:2898 admin.php:2899 admin.php:2900 updraftplus.php:92
2797
  #: updraftplus.php:93
2798
  msgid "Every %s hours"
2799
  msgstr ""
2836
  msgid "Too many database errors have occurred - aborting"
2837
  msgstr ""
2838
 
2839
+ #: backup.php:910
2840
  msgid "read more at %s"
2841
  msgstr ""
2842
 
2843
+ #: backup.php:910
2844
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2845
  msgstr ""
2846
 
2847
+ #: methods/googledrive.php:908
2848
  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."
2849
  msgstr ""
2850
 
2851
+ #: admin.php:3216
2852
  msgid "You have not yet made any backups."
2853
  msgstr ""
2854
 
2855
+ #: templates/wp-admin/settings/form-contents.php:212
2856
  msgid "Database Options"
2857
  msgstr ""
2858
 
2868
  msgid "Free disk space in account:"
2869
  msgstr ""
2870
 
2871
+ #: admin.php:3974 templates/wp-admin/settings/tab-status.php:27
2872
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2873
  msgstr ""
2874
 
2875
+ #: admin.php:480 admin.php:614 admin.php:1487
2876
  #: includes/deprecated-actions.php:30
2877
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2878
  #: templates/wp-admin/settings/tab-bar.php:6
2879
  msgid "Existing Backups"
2880
  msgstr ""
2881
 
2882
+ #: admin.php:472 templates/wp-admin/settings/tab-bar.php:5
2883
  msgid "Current Status"
2884
  msgstr ""
2885
 
2886
+ #: admin.php:885
2887
  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."
2888
  msgstr ""
2889
 
2890
+ #: admin.php:885
2891
  msgid "To make a backup, just press the Backup Now button."
2892
  msgstr ""
2893
 
2894
+ #: admin.php:885
2895
  msgid "Welcome to UpdraftPlus!"
2896
  msgstr ""
2897
 
2963
  msgid "user"
2964
  msgstr ""
2965
 
2966
+ #: class-updraftplus.php:1554
2967
  msgid "External database (%s)"
2968
  msgstr ""
2969
 
2970
+ #: methods/googledrive.php:908
2971
  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."
2972
  msgstr ""
2973
 
2974
+ #: methods/googledrive.php:371
2975
  msgid "failed to access parent folder"
2976
  msgstr ""
2977
 
2978
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2979
+ #: methods/googledrive.php:328
2980
  msgid "However, subsequent access attempts failed:"
2981
  msgstr ""
2982
 
2983
+ #: admin.php:3241
2984
  msgid "External database"
2985
  msgstr ""
2986
 
2987
+ #: templates/wp-admin/settings/form-contents.php:354
2988
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2989
  msgstr ""
2990
 
2991
+ #: templates/wp-admin/settings/form-contents.php:294
2992
  msgid "Back up more databases"
2993
  msgstr ""
2994
 
2995
+ #: templates/wp-admin/settings/form-contents.php:251
2996
  msgid "First, enter the decryption key"
2997
  msgstr ""
2998
 
2999
+ #: templates/wp-admin/settings/form-contents.php:233
3000
  msgid "You can manually decrypt an encrypted database here."
3001
  msgstr ""
3002
 
3003
+ #: templates/wp-admin/settings/form-contents.php:221
3004
  msgid "It can also backup external databases."
3005
  msgstr ""
3006
 
3007
+ #: templates/wp-admin/settings/form-contents.php:221
3008
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3009
  msgstr ""
3010
 
3012
  msgid "use UpdraftPlus Premium"
3013
  msgstr ""
3014
 
3015
+ #: class-updraftplus.php:3955
3016
  msgid "Decryption failed. The database file is encrypted."
3017
  msgstr ""
3018
 
3024
  msgid "An error occurred on the first %s command - aborting run"
3025
  msgstr ""
3026
 
3027
+ #: addons/moredatabase.php:98 backup.php:1372
3028
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3029
  msgstr ""
3030
 
3031
+ #: backup.php:1372
3032
  msgid "database connection attempt failed."
3033
  msgstr ""
3034
 
3036
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3037
  msgstr ""
3038
 
3039
+ #: addons/google-enhanced.php:84
3040
  msgid "In %s, path names are case sensitive."
3041
  msgstr ""
3042
 
3043
+ #: addons/azure.php:523 addons/google-enhanced.php:82 addons/onedrive.php:989
3044
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3045
  msgstr ""
3046
 
3047
+ #: addons/google-enhanced.php:82 addons/googlecloud.php:860
3048
  #: addons/onedrive.php:989
3049
  msgid "e.g. %s"
3050
  msgstr ""
3051
 
3052
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3053
  msgid "If the folder does not already exist, then it will be created."
3054
  msgstr ""
3055
 
3056
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3057
  msgid "Enter the path of the %s folder you wish to use here."
3058
  msgstr ""
3059
 
3060
+ #: addons/azure.php:516 methods/openstack2.php:137
3061
  msgid "Container"
3062
  msgstr ""
3063
 
3064
+ #: methods/openstack2.php:120
3065
  msgid "Leave this blank, and a default will be chosen."
3066
  msgstr ""
3067
 
3068
+ #: methods/openstack2.php:111
3069
  msgid "Tenant"
3070
  msgstr ""
3071
 
3072
+ #: methods/openstack2.php:111
3073
  msgid "Follow this link for more information"
3074
  msgstr ""
3075
 
3076
+ #: methods/openstack2.php:103 methods/openstack2.php:161
3077
  msgid "authentication URI"
3078
  msgstr ""
3079
 
3080
+ #: methods/openstack2.php:98
3081
  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."
3082
  msgstr ""
3083
 
3084
+ #: methods/addon-base-v2.php:204 methods/addon-base-v2.php:224
3085
  msgid "Failed to download %s"
3086
  msgstr ""
3087
 
3088
+ #: methods/addon-base-v2.php:218
3089
  msgid "Failed to download"
3090
  msgstr ""
3091
 
3092
+ #: methods/addon-base-v2.php:116
3093
  msgid "failed to list files"
3094
  msgstr ""
3095
 
3096
+ #: methods/addon-base-v2.php:84 methods/addon-base-v2.php:89
3097
  msgid "Failed to upload %s"
3098
  msgstr ""
3099
 
3100
+ #: methods/dropbox.php:599 methods/dropbox.php:601
3101
  msgid "Success:"
3102
  msgstr ""
3103
 
3104
+ #: addons/onedrive.php:997 methods/dropbox.php:500
3105
  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."
3106
  msgstr ""
3107
 
3108
+ #: addons/onedrive.php:995 methods/dropbox.php:497
3109
  msgid "(You appear to be already authenticated)."
3110
  msgstr ""
3111
 
3112
+ #: methods/dropbox.php:492 methods/dropbox.php:498 methods/dropbox.php:500
3113
  msgid "Dropbox"
3114
  msgstr ""
3115
 
3116
+ #: addons/onedrive.php:994 methods/dropbox.php:492
3117
  msgid "Authenticate with %s"
3118
  msgstr ""
3119
 
3120
+ #: methods/cloudfiles.php:396
3121
  msgid "Error downloading remote file: Failed to download"
3122
  msgstr ""
3123
 
3124
+ #: methods/openstack-base.php:476 methods/openstack-base.php:481
3125
  msgid "Region: %s"
3126
  msgstr ""
3127
 
3128
+ #: methods/openstack-base.php:475
3129
  msgid "%s error - we accessed the container, but failed to create a file within it"
3130
  msgstr ""
3131
 
3132
+ #: methods/openstack-base.php:393
3133
  msgid "The %s object was not found"
3134
  msgstr ""
3135
 
3136
+ #: methods/openstack-base.php:52 methods/openstack-base.php:316
3137
+ #: methods/openstack-base.php:385
3138
  msgid "Could not access %s container"
3139
  msgstr ""
3140
 
3141
+ #: methods/openstack-base.php:44 methods/openstack-base.php:112
3142
+ #: methods/openstack-base.php:119 methods/openstack-base.php:308
3143
+ #: methods/openstack-base.php:373
3144
  msgid "%s error - failed to access the container"
3145
  msgstr ""
3146
 
3147
+ #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:507
3148
+ #: methods/googledrive.php:957
3149
  msgid "Account holder's name: %s."
3150
  msgstr ""
3151
 
3152
+ #: methods/googledrive.php:946
3153
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3154
  msgstr ""
3155
 
3156
+ #: methods/googledrive.php:937
3157
  msgid "It is an ID number internal to Google Drive"
3158
  msgstr ""
3159
 
3160
+ #: methods/googledrive.php:937
3161
  msgid "<strong>This is NOT a folder name</strong>."
3162
  msgstr ""
3163
 
3164
+ #: addons/google-enhanced.php:81 addons/onedrive.php:988
3165
+ #: methods/googledrive.php:933 methods/googledrive.php:943
3166
  msgid "Folder"
3167
  msgstr ""
3168
 
3169
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3170
+ #: methods/googledrive.php:863
3171
  msgid "%s download: failed: file not found"
3172
  msgstr ""
3173
 
3174
+ #: addons/googlecloud.php:579 methods/googledrive.php:348
3175
  msgid "Name: %s."
3176
  msgstr ""
3177
 
3178
+ #: methods/googledrive.php:141
3179
  msgid "Google Drive list files: failed to access parent folder"
3180
  msgstr ""
3181
 
3182
+ #: methods/addon-not-yet-present.php:77 methods/insufficient.php:67
3183
  msgid "Your %s version: %s."
3184
  msgstr ""
3185
 
3186
+ #: methods/addon-not-yet-present.php:76 methods/insufficient.php:66
3187
  msgid "You will need to ask your web hosting company to upgrade."
3188
  msgstr ""
3189
 
3190
+ #: methods/addon-not-yet-present.php:18 methods/insufficient.php:19
3191
  msgid "This remote storage method (%s) requires PHP %s or later."
3192
  msgstr ""
3193
 
3194
+ #: admin.php:3793
3195
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3196
  msgstr ""
3197
 
3205
 
3206
  #: addons/migrator.php:375
3207
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3208
+ #: templates/wp-admin/settings/form-contents.php:241
3209
  msgid "This feature requires %s version %s or later"
3210
  msgstr ""
3211
 
3221
  msgid "Failed to unpack the archive"
3222
  msgstr ""
3223
 
3224
+ #: class-updraftplus.php:1112
3225
  msgid "Error - failed to download the file"
3226
  msgstr ""
3227
 
3241
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3242
  msgstr ""
3243
 
3244
+ #: addons/sftp.php:426
3245
  msgid "password/key"
3246
  msgstr " الرقم السري/المفتاح"
3247
 
3248
+ #: addons/azure.php:509 addons/migrator.php:2198 addons/sftp.php:377
3249
+ #: admin.php:661
3250
  msgid "Key"
3251
  msgstr "مفتاح"
3252
 
3253
+ #: addons/sftp.php:372
3254
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3255
  msgstr "للدخول يجب ادخال إما الرقم السري أو المفتاح، وليس كلاهما."
3256
 
3257
+ #: addons/sftp.php:309
3258
  msgid "The key provided was not in a valid format, or was corrupt."
3259
  msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فاسد."
3260
 
3261
+ #: addons/sftp.php:48
3262
  msgid "SCP/SFTP password/key"
3263
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
3264
 
3265
+ #: admin.php:3276
3266
  msgid "Files backup (created by %s)"
3267
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
3268
 
3269
+ #: admin.php:3276
3270
  msgid "Files and database WordPress backup (created by %s)"
3271
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
3272
 
3273
+ #: addons/importer.php:261 admin.php:3270 class-updraftplus.php:2612
3274
  msgid "Backup created by: %s."
3275
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
3276
 
3277
+ #: admin.php:3239
3278
  msgid "Database (created by %s)"
3279
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
3280
 
3281
+ #: admin.php:3233 admin.php:3272
3282
  msgid "unknown source"
3283
  msgstr "مصدر غير معروف"
3284
 
3290
  msgid "Upload backup files"
3291
  msgstr "رفع ملفات النسخة الإحتياطية"
3292
 
3293
+ #: admin.php:1876
3294
  msgid "This backup was created by %s, and can be imported."
3295
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
3296
 
3297
+ #: admin.php:914
3298
  msgid "Read this page for a guide to possible causes and how to fix it."
3299
  msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
3300
 
3301
+ #: admin.php:914
3302
  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."
3303
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
3304
 
3305
+ #: admin.php:626 class-updraftplus.php:2619
3306
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3307
  msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
3308
 
3309
+ #: admin.php:625
3310
  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."
3311
  msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
3312
 
3313
+ #: admin.php:625 admin.php:626 class-updraftplus.php:2619
3314
  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))."
3315
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3316
 
3317
+ #: admin.php:3273 includes/class-wpadmin-commands.php:143 restorer.php:1410
3318
  msgid "Backup created by unknown source (%s) - cannot be restored."
3319
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
3320
 
3326
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3327
  msgstr "هذه النسخة من UpdraftPlus لا تستطيع التعامل مع نوع النسخ الإحتياطية هذا."
3328
 
3329
+ #: methods/dropbox.php:285
3330
  msgid "%s returned an unexpected HTTP response: %s"
3331
  msgstr "أبدى %s إجابة HTTP غير متوقعة: %s"
3332
 
3333
+ #: addons/sftp.php:886
3334
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3335
  msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
3336
 
3337
+ #: methods/cloudfiles.php:221 methods/dropbox.php:266
3338
+ #: methods/openstack-base.php:107
3339
  msgid "No settings were found"
3340
  msgstr "لم يتم العثور على الإعدادات"
3341
 
3342
+ #: class-updraftplus.php:2740
3343
  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."
3344
  msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
3345
 
3346
+ #: admin.php:592
3347
  msgid "Rescanning remote and local storage for backup sets..."
3348
  msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
3349
 
3360
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3361
  msgstr "تسجيل كافة الرسائل بسجل الرسائل (من المحتمل أنه فقط مديري الخادم من سيغب في هذه العملية)"
3362
 
3363
+ #: addons/morefiles.php:488
3364
  msgid "No backup of location: there was nothing found to back up"
3365
  msgstr ""
3366
 
3367
+ #: addons/moredatabase.php:234 addons/morefiles.php:284
3368
+ #: addons/morefiles.php:305
3369
  msgid "Remove"
3370
  msgstr "حذف"
3371
 
3372
+ #: methods/s3.php:816
3373
  msgid "Other %s FAQs."
3374
  msgstr "الأسئلة الشائعة %s الأخرى."
3375
 
3376
+ #: templates/wp-admin/settings/form-contents.php:354
3377
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3378
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
3379
 
3380
+ #: addons/morefiles.php:442 admin.php:2990
3381
  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."
3382
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
3383
 
3385
  msgid "Custom content type manager plugin data detected: clearing option cache"
3386
  msgstr "تم الكشف عن بيانات لإضافة إدارة نوع المحتوى: تنضيف الخيارات"
3387
 
3388
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1441
3389
  msgid "Your hosting company must enable these functions before %s can work."
3390
  msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
3391
 
3392
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1440
3393
  msgid "Your web server's PHP installation has these functions disabled: %s."
3394
  msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
3395
 
3396
+ #: methods/ftp.php:288
3397
  msgid "encrypted FTP (explicit encryption)"
3398
  msgstr "خادم FTP مشفر (تشفير واضح)"
3399
 
3400
+ #: methods/ftp.php:287
3401
  msgid "encrypted FTP (implicit encryption)"
3402
  msgstr "خادم FTP مشفر (تشفير غير واضح)"
3403
 
3404
+ #: methods/ftp.php:286
3405
  msgid "regular non-encrypted FTP"
3406
  msgstr "خادم FTP غير مشفر اعتيادي"
3407
 
3409
  msgid "Backup created by:"
3410
  msgstr "نسخة احتياطية أنشأها:"
3411
 
3412
+ #: udaddons/options.php:489
3413
  msgid "Available to claim on this site"
3414
  msgstr "متوفر للطلب من هذا الموقع"
3415
 
3457
  msgid "Dismiss from main dashboard (for %s weeks)"
3458
  msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
3459
 
3460
+ #: class-updraftplus.php:4245
3461
  msgid "The attempt to undo the double-compression succeeded."
3462
  msgstr "نجاح محاولة التراجع من الضغط المزدوج"
3463
 
3464
+ #: class-updraftplus.php:4222 class-updraftplus.php:4243
3465
  msgid "The attempt to undo the double-compression failed."
3466
  msgstr "فشل محاولة التراجع من الضغط المزدوج"
3467
 
3468
+ #: class-updraftplus.php:4215
3469
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3470
  msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
3471
 
3473
  msgid "Constants"
3474
  msgstr "ثوابت"
3475
 
3476
+ #: backup.php:1607
3477
  msgid "Failed to open database file for reading:"
3478
  msgstr "فشل في فتح ملف قاعدة البيانات للقراءة:"
3479
 
3480
+ #: backup.php:1420
3481
  msgid "No database tables found"
3482
  msgstr "لم نجد أي جداول لقاعدة البيانات"
3483
 
3484
+ #: backup.php:1418
3485
  msgid "please wait for the rescheduled attempt"
3486
  msgstr "فضلا انتظر محاولة إعادة الجدولة"
3487
 
3509
  msgid "Errors occurred:"
3510
  msgstr "أخطاء حدثت:"
3511
 
3512
+ #: admin.php:3468
3513
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3514
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
3515
 
3516
+ #: templates/wp-admin/settings/form-contents.php:398
3517
  msgid "See this FAQ also."
3518
  msgstr "تابع هذه التعليمات أيضا."
3519
 
3533
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3534
  msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
3535
 
3536
+ #: admin.php:889 class-updraftplus.php:661
3537
  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)"
3538
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
3539
 
3549
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3550
  msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
3551
 
3552
+ #: addons/sftp.php:641 addons/sftp.php:644 includes/ftp.class.php:44
3553
  #: includes/ftp.class.php:47
3554
  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."
3555
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
3556
 
3557
+ #: admin.php:3801
3558
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3559
  msgstr "لم يتم العثور على تصميم موقعكم الحالي، لمنع توقف تحميل الموقع، تم استرجاع التصميم الإفتراضي."
3560
 
3561
+ #: admin.php:2054 admin.php:2064
3562
  msgid "Restore failed..."
3563
  msgstr "فشل في الإستعادة..."
3564
 
3565
+ #: addons/moredatabase.php:130 admin.php:1276
3566
  msgid "Messages:"
3567
  msgstr "رسائل:"
3568
 
3656
  msgid "Rackspace Cloud Files, enhanced"
3657
  msgstr "تم تعزيز ملفات المستضافة بخدمة Rackspace "
3658
 
3659
+ #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:143
3660
  msgid "Cloud Files Container"
3661
  msgstr "حاوية الملفات السحابية"
3662
 
3663
+ #: methods/cloudfiles-new.php:138
3664
  msgid "Cloud Files API Key"
3665
  msgstr "مفتاح API للملفات السحابية"
3666
 
3667
+ #: methods/cloudfiles-new.php:133
3668
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3669
  msgstr "لإنشاء مستخدم فرعي ومفتاح API جديد لديه صلاحيات الوصول فقط إلى هذه الحاوية، قم بإستخدام هذه الإضافة."
3670
 
3671
+ #: methods/cloudfiles-new.php:130
3672
  msgid "Cloud Files Username"
3673
  msgstr "اسم المستخدم للخدمة السحابية"
3674
 
3675
+ #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:116
3676
  msgid "London (LON)"
3677
  msgstr "لندن (LON)"
3678
 
3679
+ #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:115
3680
  msgid "Hong Kong (HKG)"
3681
  msgstr "هونغ كونغ (HKG)"
3682
 
3683
+ #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:114
3684
  msgid "Northern Virginia (IAD)"
3685
  msgstr "ولاية فرجينيا الشمالية (IAD)"
3686
 
3687
+ #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:113
3688
  msgid "Chicago (ORD)"
3689
  msgstr "شيكاغو (ORD)"
3690
 
3691
+ #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:112
3692
  msgid "Sydney (SYD)"
3693
  msgstr "سيدني (SYD)"
3694
 
3695
+ #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:111
3696
  msgid "Dallas (DFW) (default)"
3697
  msgstr "دالاس (DFW) (الافتراضي)"
3698
 
3699
+ #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:106
3700
  msgid "Cloud Files Storage Region"
3701
  msgstr "منطقة الملفات السحابة"
3702
 
3703
+ #: methods/cloudfiles-new.php:98
3704
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3705
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية"
3706
 
3707
+ #: methods/cloudfiles-new.php:96
3708
  msgid "US or UK-based Rackspace Account"
3709
  msgstr "حساب Rackspace بالولايات المتحدة أو المملكة المتحدة"
3710
 
3711
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:96
3712
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3713
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية "
3714
 
3715
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3716
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:435
3717
+ #: methods/openstack-base.php:437 methods/openstack-base.php:457
3718
  #: methods/openstack2.php:25
3719
  msgid "Authorisation failed (check your credentials)"
3720
  msgstr "فشل التفويض (راجع معلوماتك)"
3721
 
3722
+ #: methods/updraftvault.php:524 udaddons/options.php:272
3723
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3724
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
3725
 
3726
+ #: admin.php:639 central/bootstrap.php:513
3727
  msgid "Create"
3728
  msgstr "خلق"
3729
 
3730
+ #: admin.php:601
3731
  msgid "Trying..."
3732
  msgstr "اعادة المحاولة..."
3733
 
3734
+ #: admin.php:600
3735
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3736
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
3737
 
3738
+ #: class-updraftplus.php:1566
3739
  msgid "(when decrypted)"
3740
  msgstr "(عندما تكون مفكوكة)"
3741
 
3742
+ #: admin.php:611 admin.php:3743
3743
  msgid "Error data:"
3744
  msgstr "خطأ بالبيانات:"
3745
 
3746
+ #: admin.php:3419
3747
  msgid "Backup does not exist in the backup history"
3748
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
3749
 
3750
+ #: admin.php:2423
3751
  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."
3752
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
3753
 
3799
  msgid "Email reports"
3800
  msgstr "تقارير البريد الإلكتروني"
3801
 
3802
+ #: class-updraftplus.php:1562 class-updraftplus.php:1567
3803
  msgid "%s checksum: %s"
3804
  msgstr "%s الاختباري:%s"
3805
 
3806
+ #: class-updraftplus.php:1535 class-updraftplus.php:1537
3807
  msgid "files: %s"
3808
  msgstr "ملفات:%s"
3809
 
3823
  msgid "Debugging information"
3824
  msgstr "معلومات التصحيح"
3825
 
3826
+ #: addons/reporting.php:194 admin.php:3179
3827
  msgid "Uploaded to:"
3828
  msgstr "تحميلها على:"
3829
 
3843
  msgid "Errors / warnings:"
3844
  msgstr "أخطاء / تحذيرات:"
3845
 
3846
+ #: addons/morefiles.php:122 addons/morefiles.php:123 addons/reporting.php:155
3847
  msgid "Contains:"
3848
  msgstr "يحتوي على:"
3849
 
3863
  msgid "%d errors, %d warnings"
3864
  msgstr "%d الأخطاء، %d تحذيرات"
3865
 
3866
+ #: addons/onedrive.php:717 methods/dropbox.php:583
3867
  msgid "%s authentication"
3868
  msgstr "%s مصادقة"
3869
 
3870
+ #: addons/onedrive.php:717 class-updraftplus.php:366 methods/dropbox.php:556
3871
+ #: methods/dropbox.php:583 methods/dropbox.php:596 methods/dropbox.php:727
3872
  msgid "%s error: %s"
3873
  msgstr "%s خطأ: %s"
3874
 
3875
+ #: addons/googlecloud.php:815 methods/dropbox.php:467
3876
  msgid "%s logo"
3877
  msgstr "%s الشعار"
3878
 
3879
+ #: methods/dropbox.php:199
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
3882
 
3883
+ #: methods/s3.php:281
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
3886
 
3887
+ #: methods/email.php:76
3888
  msgid "For more options, use the \"%s\" add-on."
3889
  msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\"."
3890
 
3891
+ #: methods/email.php:75
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
3894
 
3895
+ #: admin.php:648 methods/updraftvault.php:274 methods/updraftvault.php:319
3896
+ #: udaddons/options.php:251
3897
  msgid "Connect"
3898
  msgstr "الإتصال"
3899
 
3900
+ #: templates/wp-admin/settings/form-contents.php:322
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
3903
 
3904
+ #: class-updraftplus.php:4025
3905
  msgid "(version: %s)"
3906
  msgstr "(الإصدار: %s)"
3907
 
3908
+ #: addons/reporting.php:438 admin.php:590
3909
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3910
  msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
3911
 
3912
+ #: addons/reporting.php:438 admin.php:589
3913
  msgid "When the Email storage method is enabled, also send the entire backup"
3914
  msgstr "عندما يتم تمكين طريقة تخزين البريد الإلكتروني، قم أيضا بإرسال النسخ الاحتياطي كاملة"
3915
 
3916
+ #: addons/reporting.php:153 backup.php:945
3917
  msgid "Latest status:"
3918
  msgstr "آخر التحديثات:"
3919
 
3920
+ #: backup.php:944
3921
  msgid "Backup contains:"
3922
  msgstr "تحتوي النسخة الإحتياطية على:"
3923
 
3924
+ #: backup.php:901
3925
  msgid "Backed up: %s"
3926
  msgstr "نسخ احتياطي: %s"
3927
 
3928
+ #: addons/reporting.php:236 backup.php:895
3929
  msgid "The log file has been attached to this email."
3930
  msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
3931
 
3932
+ #: backup.php:859
3933
  msgid "Unknown/unexpected error - please raise a support request"
3934
  msgstr "خطأ غير معروف / غير متوقع - يرجى رفع طلب دعم"
3935
 
3936
+ #: backup.php:856
3937
  msgid "Database only (files were not part of this particular schedule)"
3938
  msgstr " قاعدة البيانات فقط (لن يتم خلق نسخ احتياطية للملفات)"
3939
 
3940
+ #: backup.php:856
3941
  msgid "Database (files backup has not completed)"
3942
  msgstr "قاعدة بيانات (لم يتم إكمال نسخ الملفات احتياطيا)"
3943
 
3944
+ #: backup.php:853
3945
  msgid "Files only (database was not part of this particular schedule)"
3946
  msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقاعدة البيانات)"
3947
 
3948
+ #: backup.php:853
3949
  msgid "Files (database backup has not completed)"
3950
  msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
3951
 
3952
+ #: admin.php:253 backup.php:851
3953
  msgid "Files and database"
3954
  msgstr "ملفات وقواعد البيانات"
3955
 
3956
+ #: options.php:184
3957
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3958
  msgstr "(هذا ينطبق على جميع الإضافات للنسخ الاحتياطي لووردبريس ما لم تكن برمجة من أجل التوافق مع تعدد المواقع)."
3959
 
3960
+ #: options.php:184
3961
  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>."
3962
  msgstr "عند عدم الترقية، سيقوم UpdraftPlus بالسماح <strong>لكل</strong> مدير بالمدونة بالتعديل على خيارات الإضافة للخسن الإحتياطي (وبالتالي الوصول للبيانات، بما في ذلك كلمات السر) وإستعادة (مع امكانية التعديل، مثال: كلمات السر) <strong>الشبكة بالكامل</strong>."
3963
 
3964
+ #: options.php:184
3965
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3966
  msgstr "دعم مواقع ووردبريس متعددة، مع امتيازات اضافية، على حساب UpdraftPlus المميز، أو بإضافة المواقع المتعددة."
3967
 
3968
+ #: options.php:184
3969
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3970
  msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (شبكة a.k.a.)."
3971
 
3972
+ #: options.php:184
3973
  msgid "UpdraftPlus warning:"
3974
  msgstr "تحذير UpdraftPlus :"
3975
 
3976
+ #: udaddons/options.php:495
3977
  msgid "(or connect using the form on this page if you have already purchased it)"
3978
  msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
3979
 
3980
+ #: udaddons/options.php:481
3981
  msgid "please follow this link to update the plugin in order to activate it"
3982
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل تفعيله"
3983
 
3984
+ #: udaddons/options.php:478
3985
  msgid "please follow this link to update the plugin in order to get it"
3986
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل الحصول عليه"
3987
 
3988
+ #: udaddons/options.php:468 udaddons/options.php:470
3989
  msgid "latest"
3990
  msgstr "آخر"
3991
 
3992
+ #: udaddons/options.php:466
3993
  msgid "Your version: %s"
3994
  msgstr "الإصدار: %s"
3995
 
3996
+ #: udaddons/options.php:464
3997
  msgid "You've got it"
3998
  msgstr "كنت قد حصلت عليه"
3999
 
4000
+ #: udaddons/options.php:430
4001
  msgid "UpdraftPlus Support"
4002
  msgstr "دعم UpdraftPlus"
4003
 
4004
+ #: udaddons/options.php:388
4005
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4006
  msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
4007
 
4008
+ #: udaddons/options.php:377 udaddons/updraftplus-addons.php:256
4009
  msgid "UpdraftPlus Addons"
4010
  msgstr "اضافات UpdraftPlus"
4011
 
4012
+ #: udaddons/options.php:101
4013
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4014
  msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
4015
 
4016
+ #: methods/updraftvault.php:597 methods/updraftvault.php:615
4017
  #: udaddons/updraftplus-addons.php:795
4018
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4019
  msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
4020
 
4021
+ #: methods/updraftvault.php:611 udaddons/updraftplus-addons.php:792
4022
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4023
  msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
4024
 
4025
+ #: methods/updraftvault.php:570 udaddons/updraftplus-addons.php:752
4026
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4027
  msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
4028
 
4034
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4035
  msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
4036
 
4037
+ #: methods/email.php:76 templates/wp-admin/settings/form-contents.php:303
4038
  #: templates/wp-admin/settings/tab-addons.php:200
4039
  msgid "Reporting"
4040
  msgstr "التقارير"
4041
 
4042
+ #: admin.php:4154
4043
  msgid "Options (raw)"
4044
  msgstr "خيارات (الخام)"
4045
 
4046
+ #: addons/reporting.php:436 admin.php:588
4047
  msgid "Send a report only when there are warnings/errors"
4048
  msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
4049
 
4055
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4056
  msgstr ""
4057
 
4058
+ #: templates/wp-admin/settings/form-contents.php:207
4059
  msgid "See also the \"More Files\" add-on from our shop."
4060
  msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
4061
 
4062
+ #: backup.php:3012 class-updraftplus.php:674
4063
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4064
  msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
4065
 
4066
+ #: class-updraftplus.php:658
4067
  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)"
4068
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
4069
 
4070
+ #: udaddons/options.php:554
4071
  msgid "Manage Addons"
4072
  msgstr "ادارة الأضافات"
4073
 
4074
+ #: udaddons/options.php:496
4075
  msgid "Buy It"
4076
  msgstr "شراء"
4077
 
4078
+ #: udaddons/options.php:495
4079
  msgid "Get it from the UpdraftPlus.Com Store"
4080
  msgstr "الحصول علية من متجر UpdraftPlus.Com"
4081
 
4082
+ #: udaddons/options.php:489 udaddons/options.php:491
4083
  msgid "activate it on this site"
4084
  msgstr "تنشيطة على هذا الموقع"
4085
 
4086
+ #: udaddons/options.php:491
4087
  msgid "You have an inactive purchase"
4088
  msgstr "لديك شراء غير فعال"
4089
 
4090
+ #: udaddons/options.php:481
4091
  msgid "Assigned to this site"
4092
  msgstr "تعيين إلى هذا الموقع"
4093
 
4094
+ #: udaddons/options.php:478
4095
  msgid "Available for this site (via your all-addons purchase)"
4096
  msgstr "متاح لهذا الموقع (عن طريق الأضافات المشتراة)"
4097
 
4098
+ #: udaddons/options.php:472
4099
  msgid "(apparently a pre-release or withdrawn release)"
4100
  msgstr "(على ما يبدو انة اصدار قبل الاصدار الرسمى او اصدار مسحوب)"
4101
 
4102
+ #: udaddons/options.php:432
4103
  msgid "Go here"
4104
  msgstr "اذهب هنا"
4105
 
4106
+ #: udaddons/options.php:432
4107
  msgid "Need to get support?"
4108
  msgstr "هل انت بحاجة للحصول على الدعم؟"
4109
 
4110
+ #: udaddons/options.php:414
4111
  msgid "An error occurred when trying to retrieve your add-ons."
4112
  msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
4113
 
4114
+ #: udaddons/options.php:347
4115
  msgid "An unknown response was received. Response was:"
4116
  msgstr "تم تلقى رد غير معروف. الرد هو:"
4117
 
4118
+ #: udaddons/options.php:346
4119
  msgid "Claim not granted - your account login details were wrong"
4120
  msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
4121
 
4122
+ #: udaddons/options.php:344
4123
  msgid "Please wait whilst we make the claim..."
4124
  msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
4125
 
4126
+ #: udaddons/options.php:297
4127
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4128
  msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
4129
 
4130
+ #: udaddons/options.php:288
4131
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4132
  msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
4133
 
4134
+ #: udaddons/options.php:279
4135
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4136
  msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
4137
 
4138
+ #: udaddons/options.php:278
4139
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4140
  msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
4141
 
4142
+ #: udaddons/options.php:249
4143
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4144
  msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
4145
 
4146
+ #: udaddons/options.php:190
4147
  msgid "Forgotten your details?"
4148
  msgstr "هل نسيت التفاصيل الخاصة بك؟"
4149
 
4150
+ #: udaddons/options.php:179
4151
  msgid "Not yet got an account (it's free)? Go get one!"
4152
  msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
4153
 
4154
+ #: udaddons/options.php:148
4155
  msgid "Connect with your UpdraftPlus.Com account"
4156
  msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
4157
 
4158
+ #: udaddons/options.php:127
4159
  msgid "Your web server's version of PHP is too old ("
4160
  msgstr "إصدار خادم الويب الخاص بك من PHP قديم جدا ("
4161
 
4162
+ #: udaddons/options.php:121
4163
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4164
  msgstr "على ما يبدو انة لديك المكون الأضافى Updraft مثبت - ربما تم تثبيتة بطريقة خاطئة؟"
4165
 
4166
+ #: udaddons/options.php:120
4167
  msgid "Go here to begin installing it."
4168
  msgstr "اذهب هنا لبدء تثبيته."
4169
 
4170
+ #: udaddons/options.php:120
4171
  msgid "UpdraftPlus is not yet installed."
4172
  msgstr "لم يتم تثبيت UpdraftPlus حتى الآن."
4173
 
4174
+ #: udaddons/options.php:117
4175
  msgid "Go here to activate it."
4176
  msgstr "اذهب هنا لتنشيطه."
4177
 
4178
+ #: udaddons/options.php:116
4179
  msgid "UpdraftPlus is not yet activated."
4180
  msgstr "UpdraftPlus لم يتم تنشيطة حتى الأن."
4181
 
4182
+ #: udaddons/options.php:107 udaddons/options.php:109
4183
  msgid "Go here to connect."
4184
  msgstr "اذهب هنا للاتصال."
4185
 
4186
+ #: udaddons/options.php:107
4187
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4188
  msgstr "حتى الأن انت غير متصل بحسابك فى UpdraftPlus.Com, لتتمكن من استخدام الأضافات اللتى قمت بشرائها."
4189
 
4190
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4191
  msgid "Without it, encryption will be a lot slower."
4192
  msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
4193
 
4194
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4195
  msgid "Your web-server does not have the %s module installed."
4196
  msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
4197
 
4198
+ #: addons/googlecloud.php:898 methods/googledrive.php:953
4199
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4200
  msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
4201
 
4203
  msgid "Drop backup files here"
4204
  msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
4205
 
4206
+ #: admin.php:599
4207
  msgid "The web server returned an error code (try again, or check your web server logs)"
4208
  msgstr "اعاد خادم الويب برمز خطأ (حاول مجددا, او قم بالتحقق من سجلات خادم الويب الخاص بك)"
4209
 
4210
+ #: admin.php:597
4211
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4212
  msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إغلاق المتصفح حتى اعطائك التقرير بأنة تم انتهاء العملية."
4213
 
4214
+ #: admin.php:594
4215
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4216
  msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
4217
 
4219
  msgid "Site home:"
4220
  msgstr "الصفحة الرئيسية للموقع:"
4221
 
4222
+ #: addons/morestorage.php:79
4223
  msgid "Remote Storage Options"
4224
  msgstr "خيارات التخزين البعيد"
4225
 
4231
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4232
  msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
4233
 
4234
+ #: addons/azure.php:350 methods/stream-base.php:121 methods/stream-base.php:126
4235
  msgid "Upload failed"
4236
  msgstr "فشل التحميل"
4237
 
4239
  msgid "You can send a backup to more than one destination with an add-on."
4240
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
4241
 
4242
+ #: admin.php:2641
4243
  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."
4244
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
4245
 
4246
+ #: admin.php:2539
4247
  msgid "(%s%%, file %s of %s)"
4248
  msgstr "(%s%%, ملف %s من%s)"
4249
 
4252
  msgid "Read more about how this works..."
4253
  msgstr "قراءة المزيد عن كيفية عمل ذلك ..."
4254
 
4255
+ #: addons/sftp.php:486
4256
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4257
  msgstr "فشل:تمكنا من تسجيل الدخول، لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
4258
 
4259
+ #: addons/sftp.php:484
4260
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4261
  msgstr "فشل:لقد تمكنا من تسجيل الدخول والانتقال إلى الدليل المشار إليه،لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
4262
 
4263
+ #: addons/sftp.php:403
4264
  msgid "Use SCP instead of SFTP"
4265
  msgstr "استخدام SCP بدلا من SFTP"
4266
 
4267
+ #: addons/sftp.php:47
4268
  msgid "SCP/SFTP user setting"
4269
  msgstr "اعداد مستخدم SCP/SFTP"
4270
 
4271
+ #: addons/sftp.php:46
4272
  msgid "SCP/SFTP host setting"
4273
  msgstr "اعداد استضافة SCP/SFTP"
4274
 
4275
+ #: methods/email.php:60
4276
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4277
  msgstr "محاولة ارسال النسخ الأحتياطى عن طريق البريد الألكترونى فشلت (من المحتمل ان يكون ملف النسخ الاحتياطى اكبر من المساحة المسموح بها فى البريد)"
4278
 
4279
+ #: methods/email.php:47
4280
  msgid "Backup is of: %s."
4281
  msgstr "النسخ الأحتياطى من: %s"
4282
 
4283
+ #: admin.php:687
4284
  msgid "%s settings test result:"
4285
  msgstr "اعدادات نتيجة اختبار %s"
4286
 
4287
+ #: admin.php:3337 admin.php:3339
4288
  msgid "(Not finished)"
4289
  msgstr "(غير منتهي)"
4290
 
4291
+ #: admin.php:3339
4292
  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."
4293
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
4294
 
4295
+ #: templates/wp-admin/settings/form-contents.php:381
4296
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4297
  msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل الإضافات، لأن ذلك سوف يسبب الإعادة (نسخة احتياطية من نسخة احتياطية من نسخة احتياطية من......)."
4298
 
4299
+ #: templates/wp-admin/settings/form-contents.php:381
4300
  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)."
4301
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
4302
 
4303
+ #: admin.php:2636
4304
  msgid "Job ID: %s"
4305
  msgstr "رقم الوظيفة: %s"
4306
 
4307
+ #: admin.php:2621
4308
  msgid "last activity: %ss ago"
4309
  msgstr "آخر نشاط: منذ %ss"
4310
 
4311
+ #: admin.php:2620
4312
  msgid "next resumption: %d (after %ss)"
4313
  msgstr "الاستئناف التالي: %d (بعد %ss)"
4314
 
4315
+ #: admin.php:2603 central/bootstrap.php:405 central/bootstrap.php:412
4316
+ #: methods/updraftvault.php:354 methods/updraftvault.php:434
4317
  msgid "Unknown"
4318
  msgstr "غير معروف"
4319
 
4320
+ #: admin.php:2553
4321
  msgid "Backup finished"
4322
  msgstr "الانتهاء من النسخ الاحتياطي"
4323
 
4324
+ #: admin.php:2548
4325
  msgid "Waiting until scheduled time to retry because of errors"
4326
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
4327
 
4328
+ #: admin.php:2544
4329
  msgid "Pruning old backup sets"
4330
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
4331
 
4332
+ #: admin.php:2532
4333
  msgid "Uploading files to remote storage"
4334
  msgstr "تحميل الملفات للمخزن البعيد"
4335
 
4336
+ #: admin.php:2601
4337
  msgid "Encrypted database"
4338
  msgstr "قاعدة بيانات مشفرة"
4339
 
4340
+ #: admin.php:2593
4341
  msgid "Encrypting database"
4342
  msgstr "تشفير قاعدة البيانات"
4343
 
4344
+ #: admin.php:2567
4345
  msgid "Created database backup"
4346
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
4347
 
4348
+ #: admin.php:2580
4349
  msgid "table: %s"
4350
  msgstr "الجدول: %s"
4351
 
4352
+ #: admin.php:2578
4353
  msgid "Creating database backup"
4354
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
4355
 
4356
+ #: admin.php:2526
4357
  msgid "Created file backup zips"
4358
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
4359
 
4360
+ #: admin.php:2513
4361
  msgid "Creating file backup zips"
4362
  msgstr "انشاء ملف النسخ الاحتياطى zips"
4363
 
4364
+ #: admin.php:2508
4365
  msgid "Backup begun"
4366
  msgstr "بدأ النسخ الاحتياطى"
4367
 
4368
+ #: admin.php:2351
4369
  msgid "Backups in progress:"
4370
  msgstr "تقدم النسخ الأحتياطى:"
4371
 
4372
+ #: admin.php:893
4373
  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."
4374
  msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
4375
 
4385
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4386
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
4387
 
4388
+ #: class-updraftplus.php:2837
4389
  msgid "The backup has not finished; a resumption is scheduled"
4390
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
4391
 
4392
+ #: class-updraftplus.php:1807
4393
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4394
  msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
4395
 
4396
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4397
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4398
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4399
+ #: methods/googledrive.php:229
4400
  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)."
4401
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
4402
 
4403
+ #: admin.php:2174
4404
  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)."
4405
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
4406
 
4407
+ #: addons/autobackup.php:1006 admin.php:641
4408
  msgid "Proceed with update"
4409
  msgstr "المضي قدما مع التحديث"
4410
 
4457
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4458
  msgstr "النسخ الاحتياطي تلقائيا (حسب الحاجة) للملحقات, الثيمات و قاعدة بيانات وردبريس مع UpdraftPlus قبل التحديث"
4459
 
4460
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4461
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4462
  msgstr "اذا لم تكن متأكدا يجب عليك التوقف; والأ من المحتمل تدمير نسخة الورد بريس الخاصة بك"
4463
 
4464
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4465
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4466
  msgstr "هذة تبدو كأنها نسخة احتياطية اساسية صالحة للوردبريس - الملف %s كان مفقود."
4467
 
4468
+ #: addons/morefiles.php:183
4469
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4470
  msgstr "غير قادر على فتح ملف مضغوط (%s) - لا يمكن القيام بالفحص للتحقق من سلامتة."
4471
 
4472
+ #: addons/morefiles.php:173
4473
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4474
  msgstr "غير قادر على قراءة الملف المضغوط (%s) - لم يمكن فحصه للتأكد من سلامتة."
4475
 
4482
  msgid "Support"
4483
  msgstr "الدعم"
4484
 
4485
+ #: class-updraftplus.php:4178
4486
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4487
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
4488
 
4489
+ #: class-updraftplus.php:4170
4490
  msgid "This database backup is missing core WordPress tables: %s"
4491
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
4492
 
4493
+ #: class-updraftplus.php:4058
4494
  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."
4495
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
4496
 
4497
+ #: class-updraftplus.php:3974
4498
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4499
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
4500
 
4501
+ #: addons/autobackup.php:556 admin.php:857
4502
  msgid "Update Theme"
4503
  msgstr "تحديث الثيم"
4504
 
4505
+ #: addons/autobackup.php:505 admin.php:853
4506
  msgid "Update Plugin"
4507
  msgstr "تحديث المكون الإضافي"
4508
 
4509
+ #: addons/autobackup.php:985 admin.php:726 includes/updraftplus-notices.php:171
4510
  msgid "Be safe with an automatic backup"
4511
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
4512
 
4514
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4515
  msgstr "مسار الرفع (%s) غير موجود - إعادة ضبط (%s)"
4516
 
4517
+ #: admin.php:2126
4518
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4519
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
4520
 
4521
+ #: admin.php:635
4522
  msgid "The file was uploaded."
4523
  msgstr "تم رفع الملف."
4524
 
4525
+ #: admin.php:634
4526
  msgid "Unknown server response status:"
4527
  msgstr "استجابة الخادم غير معروفة:"
4528
 
4529
+ #: admin.php:633
4530
  msgid "Unknown server response:"
4531
  msgstr "استجابة الملقم غير معروف:"
4532
 
4533
+ #: admin.php:632
4534
  msgid "This decryption key will be attempted:"
4535
  msgstr "سيتم محاولة فتح مفتاح التشفير:"
4536
 
4537
+ #: admin.php:631
4538
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4539
  msgstr "اتبع هذا الرابط لمحاولة فك التشفير وتحميل ملف قاعدة البيانات على جهازك."
4540
 
4541
+ #: admin.php:630
4542
  msgid "Upload error"
4543
  msgstr "خطأ فى الرفع"
4544
 
4545
+ #: admin.php:629
4546
  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)."
4547
  msgstr "هذا الملف لا يبدو انة ملف UpdraftPlus مضغوط مشفر لقاعدة البيانات (هذة الملفات .gz.crypt التى لديها اسم مثل: backup_(time)_(site name)_(code)_db.crypt.gz)."
4548
 
4549
+ #: admin.php:628
4550
  msgid "Upload error:"
4551
  msgstr "خطأ التحميل:"
4552
 
4553
+ #: admin.php:627
4554
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4555
  msgstr "(تأكد من انك كنت تحاول رفع ملف مضغوط تم إنشاؤه مسبقا من قبل UpdraftPlus)"
4556
 
4557
+ #: admin.php:618
4558
  msgid "Download to your computer"
4559
  msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
4560
 
4561
+ #: admin.php:617
4562
  msgid "Delete from your web server"
4563
  msgstr "حذف من خادم الويب الخاص بك"
4564
 
4565
+ #: methods/s3.php:776
4566
  msgid "Examples of S3-compatible storage providers:"
4567
  msgstr "امثلة من مقدمى التخزين المتوافق-s3:"
4568
 
4569
+ #: admin.php:3693
4570
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4571
  msgstr "لن يتم حذف اى ارشيف بعد فك الضغط عنة, بسبب عدم وجود سحابة التخزين لهذه النسخة الاحتياطية"
4572
 
4573
+ #: admin.php:3310
4574
  msgid "You appear to be missing one or more archives from this multi-archive set."
4575
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
4576
 
4577
+ #: admin.php:3307
4578
  msgid "(%d archive(s) in set)."
4579
  msgstr "(%d الأرشيف(s) in set)."
4580
 
4581
+ #: templates/wp-admin/settings/form-contents.php:358
4582
  msgid "Split archives every:"
4583
  msgstr "تقسيم كل ارشيف:"
4584
 
4586
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4587
  msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
4588
 
4589
+ #: admin.php:608
4590
  msgid "Warnings:"
4591
  msgstr "تحذيرات:"
4592
 
4593
+ #: admin.php:607
4594
  msgid "Error: the server sent an empty response."
4595
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
4596
 
4597
+ #: admin.php:1887
4598
  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?"
4599
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
4600
 
4630
  msgid "No such backup set exists"
4631
  msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
4632
 
4633
+ #: admin.php:1164
4634
  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"
4635
  msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
4636
 
4646
  msgid "Moving unpacked backup into place..."
4647
  msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
4648
 
4649
+ #: backup.php:2716 backup.php:2972
4650
  msgid "Failed to open the zip file (%s) - %s"
4651
  msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4652
 
4653
+ #: addons/morefiles.php:161
4654
  msgid "WordPress root directory server path: %s"
4655
  msgstr "مسار جذر الوردبريس فى الخادم: %s"
4656
 
4657
+ #: methods/s3.php:821
4658
  msgid "%s end-point"
4659
  msgstr "نقطة النهاية %s "
4660
 
4661
+ #: methods/s3.php:783
4662
  msgid "... and many more!"
4663
  msgstr "... وغيرها الكثير!"
4664
 
4666
  msgid "S3 (Compatible)"
4667
  msgstr "S3 (متوافق)"
4668
 
4669
+ #: admin.php:3614
4670
  msgid "File is not locally present - needs retrieving from remote storage"
4671
  msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
4672
 
4673
+ #: admin.php:3601
4674
  msgid "Looking for %s archive: file name: %s"
4675
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
4676
 
4677
+ #: admin.php:3562
4678
  msgid "Final checks"
4679
  msgstr "الفحوصات النهائية"
4680
 
4681
+ #: templates/wp-admin/settings/form-contents.php:364
4682
  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)."
4683
  msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأحتياطى الزائدة من السيرفر الخاص بك بعد انتهاء عملية النسخ الأحتياطى (أي بمعنى. اذا لم تقم بالتحديد, فأنة سوف تظل ايضا الملفات اللتى ارسللت عن بعد على السيرفر محلياً, وان الملفات اللتى يتم الأحتفاظ بها محليا لن تكون خاضعة لحدود الأبقاء)."
4684
 
4685
+ #: templates/wp-admin/settings/form-contents.php:248
4686
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4687
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
4688
 
4689
+ #: admin.php:2979
4690
  msgid "Your wp-content directory server path: %s"
4691
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
4692
 
4693
+ #: admin.php:624
4694
  msgid "Raw backup history"
4695
  msgstr "تاريخ النسخ الاحتياطي الخام"
4696
 
4698
  msgid "Show raw backup and file list"
4699
  msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة الملفات"
4700
 
4701
+ #: admin.php:606
4702
  msgid "Processing files - please wait..."
4703
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
4704
 
4705
+ #: admin.php:3745 templates/wp-admin/settings/downloading-and-restoring.php:29
4706
  msgid "Please consult this FAQ for help on what to do about it."
4707
  msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
4708
 
4710
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4711
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
4712
 
4713
+ #: class-updraftplus.php:3982
4714
  msgid "Failed to open database file."
4715
  msgstr "فشل فى فتح ملف قاعدة البيانات."
4716
 
4717
+ #: admin.php:4124
4718
  msgid "Known backups (raw)"
4719
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
4720
 
4738
  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."
4739
  msgstr "هذة تبدو كأنها ترحيل (النسخة الأحتياطة من موقع عنوان الرابط الخاص بة مختلف), لكنك لم تقم بالأشارة على خيار البحث واستبدال قاعدة البيانات. عادة ما يكون خطأ."
4740
 
4741
+ #: admin.php:3634
4742
  msgid "file is size:"
4743
  msgstr "حجم الملف:"
4744
 
4745
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4746
+ #: addons/migrator.php:369 admin.php:893 admin.php:2131 backup.php:3019
4747
  #: updraftplus.php:147
4748
  msgid "Go here for more information."
4749
  msgstr "اذهب هنا لمزيد من المعلومات."
4750
 
4751
+ #: admin.php:605
4752
  msgid "Some files are still downloading or being processed - please wait."
4753
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
4754
 
4755
+ #: class-updraftplus.php:4030 class-updraftplus.php:4048
4756
  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."
4757
  msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
4758
 
4764
  msgid "Enter in format HH:MM (e.g. 14:22)."
4765
  msgstr "ادخل فى صيغة HH:MM (مثل 14:22)."
4766
 
4767
+ #: methods/ftp.php:116
4768
  msgid "%s upload failed"
4769
  msgstr "فشل ارسال الملف %s"
4770
 
4771
+ #: methods/ftp.php:89 methods/ftp.php:140 methods/ftp.php:244
4772
  msgid "%s login failure"
4773
  msgstr "فشل تسجيل الدخول %s"
4774
 
4775
+ #: methods/dropbox.php:410
4776
  msgid "You do not appear to be authenticated with %s"
4777
  msgstr "لا يبدو انة تمت المصادقة مع: %s"
4778
 
4779
+ #: methods/dropbox.php:377
4780
  msgid "Failed to access %s when deleting (see log file for more)"
4781
  msgstr "فشل الوصول الى %s عند الحذف (تحقق من ملف السجل لمزيد من المعلومات)"
4782
 
4783
+ #: methods/dropbox.php:369
4784
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4785
  msgstr "لا يبدو انة لديك التصريح ل %s (لحين الحذف)"
4786
 
4787
+ #: methods/dropbox.php:104
4788
  msgid "Dropbox error: %s (see log file for more)"
4789
  msgstr "خطأ فى الأسقاط: %s (تحقق من السجل لمزيد من المعلومات)"
4790
 
4791
+ #: methods/cloudfiles.php:409
4792
  msgid "Error - failed to download the file from %s"
4793
  msgstr "خطأ - فشل فى تحميل الملف من %s"
4794
 
4795
+ #: methods/cloudfiles.php:405
4796
  msgid "Error - no such file exists at %s"
4797
  msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
4798
 
4799
+ #: addons/azure.php:216 methods/addon-base-v2.php:218
4800
+ #: methods/cloudfiles.php:379 methods/cloudfiles.php:396
4801
+ #: methods/googledrive.php:823 methods/openstack-base.php:407
4802
+ #: methods/stream-base.php:262 methods/stream-base.php:269
4803
+ #: methods/stream-base.php:282
4804
  msgid "%s Error"
4805
  msgstr "خطأ %s"
4806
 
4807
+ #: methods/cloudfiles.php:206 methods/openstack-base.php:82
4808
  msgid "%s error - failed to upload file"
4809
  msgstr "خطأ %s - فشل فى ارسال الملف"
4810
 
4811
+ #: class-updraftplus.php:1004 methods/cloudfiles.php:198
4812
  msgid "%s error - failed to re-assemble chunks"
4813
  msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
4814
 
4815
+ #: methods/cloudfiles.php:82 methods/cloudfiles.php:86
4816
+ #: methods/cloudfiles.php:227 methods/cloudfiles.php:272
4817
+ #: methods/cloudfiles.php:323 methods/cloudfiles.php:327
4818
+ #: methods/openstack-base.php:40 methods/openstack-base.php:304
4819
+ #: methods/openstack-base.php:369 methods/openstack-base.php:441
4820
+ #: methods/openstack-base.php:444 methods/openstack-base.php:461
4821
+ #: methods/openstack-base.php:466
4822
  msgid "%s authentication failed"
4823
  msgstr "المصادقة فشلت %s"
4824
 
4825
+ #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1832
4826
+ #: admin.php:1879 admin.php:1887 class-updraftplus.php:789
4827
+ #: class-updraftplus.php:795 class-updraftplus.php:3953
4828
+ #: class-updraftplus.php:3955 class-updraftplus.php:4088
4829
+ #: class-updraftplus.php:4123 methods/googledrive.php:289 restorer.php:944
4830
  msgid "Error: %s"
4831
  msgstr "خطأ: %s"
4832
 
4833
+ #: admin.php:2916
4834
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4835
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
4836
 
4837
+ #: admin.php:2914
4838
  msgid "Backup directory specified does <b>not</b> exist."
4839
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
4840
 
4841
+ #: admin.php:2648 admin.php:2870 class-updraftplus.php:4030
4842
+ #: class-updraftplus.php:4048
4843
  msgid "Warning: %s"
4844
  msgstr "تحذير: %s"
4845
 
4847
  msgid "Last backup job run:"
4848
  msgstr "اخر تشغيل لوظيفة النسخ الأحتياطى:"
4849
 
4850
+ #: backup.php:2738
4851
  msgid "A very large file was encountered: %s (size: %s Mb)"
4852
  msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
4853
 
4854
+ #: backup.php:2112 backup.php:2144
4855
  msgid "%s: unreadable file - could not be backed up"
4856
  msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
4857
 
4858
+ #: backup.php:1507
4859
  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"
4860
  msgstr "الجدول %s بة عدد كبير من الصفوف (%s) - نأمل ان شركة الأستضافة الخاصة بك تعطيك ما يكفى من الموارد لتفريغ هذا الجدول من النسخة الأحتياطة."
4861
 
4862
+ #: backup.php:1626
4863
  msgid "An error occurred whilst closing the final database file"
4864
  msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
4865
 
4866
+ #: backup.php:886
4867
  msgid "Warnings encountered:"
4868
  msgstr "مصادفة تحذيرات:"
4869
 
4870
+ #: class-updraftplus.php:2825
4871
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4872
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
4873
 
4874
+ #: class-updraftplus.php:687
4875
  msgid "Your free disk space is very low - only %s Mb remain"
4876
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
4877
 
4903
  msgid "Processed plugin:"
4904
  msgstr "المكون الأضافى:"
4905
 
4906
+ #: addons/sftp.php:75
4907
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4908
  msgstr "تحقق من اذونات الملفات الخاصة بك: تعذر الدخول او انشاء الدليل:"
4909
 
4910
+ #: addons/sftp.php:35
4911
  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."
4912
  msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
4913
 
4914
+ #: methods/s3.php:797
4915
  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."
4916
  msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
4917
 
4918
+ #: methods/s3.php:1035
4919
  msgid "Please check your access credentials."
4920
  msgstr "يرجى التحقق من وصول بيانات الأعتماد."
4921
 
4922
+ #: addons/s3-enhanced.php:172 methods/s3.php:1013
4923
  msgid "The error reported by %s was:"
4924
  msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
4925
 
4935
  msgid "Cannot create new tables, so skipping this command (%s)"
4936
  msgstr "لا يمكن إنشاء جداول جديدة، حتى تخطى هذا الأمر (%s)"
4937
 
4938
+ #: class-updraftplus.php:4099 restorer.php:1648
4939
  msgid "Site information:"
4940
  msgstr "معلومات عن الموقع:"
4941
 
4943
  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."
4944
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
4945
 
4946
+ #: addons/migrator.php:325 admin.php:2126 class-updraftplus.php:4092
4947
  #: restorer.php:1970
4948
  msgid "Warning:"
4949
  msgstr "تحذير:"
4950
 
4951
+ #: class-updraftplus.php:4084 restorer.php:162
4952
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4953
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
4954
 
4955
+ #: admin.php:3589
4956
  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."
4957
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
4958
 
4959
+ #: admin.php:3035 methods/updraftvault.php:258
4960
  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."
4961
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
4962
 
4963
+ #: admin.php:642
4964
  msgid "Close"
4965
  msgstr "اغلق"
4966
 
4967
+ #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:598
4968
+ #: methods/remotesend.php:64 methods/remotesend.php:72
4969
+ #: methods/remotesend.php:213 methods/remotesend.php:230
4970
  msgid "Unexpected response:"
4971
  msgstr "استجابة غير متوقعة:"
4972
 
4973
+ #: addons/reporting.php:434 admin.php:593
4974
  msgid "To send to more than one address, separate each address with a comma."
4975
  msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
4976
 
4977
+ #: admin.php:622
4978
  msgid "PHP information"
4979
  msgstr "معلومات PHP"
4980
 
5010
  msgid "Also delete from remote storage"
5011
  msgstr "حذف ايضاً من التخزين البعيد"
5012
 
5013
+ #: admin.php:2378
5014
  msgid "Latest UpdraftPlus.com news:"
5015
  msgstr "اخر اخبار UpdraftPlus.com:"
5016
 
5027
  msgid "News"
5028
  msgstr "اخبار"
5029
 
5030
+ #: admin.php:1318 includes/class-wpadmin-commands.php:444
5031
  msgid "Backup set not found"
5032
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
5033
 
5045
  msgid "Blog link"
5046
  msgstr "رابط المدونة"
5047
 
5048
+ #: admin.php:686
5049
  msgid "Testing %s Settings..."
5050
  msgstr "اختبار اعدادات %s ..."
5051
 
5053
  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."
5054
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
5055
 
5056
+ #: admin.php:909
5057
  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."
5058
  msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
5059
 
5060
+ #: admin.php:909
5061
  msgid "Notice"
5062
  msgstr "لاحظ"
5063
 
5064
+ #: backup.php:868
5065
  msgid "Errors encountered:"
5066
  msgstr "مصادفة اخطاء:"
5067
 
5068
+ #: admin.php:591
5069
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5070
  msgstr "اعادة الفحص (يبحث عن النسخ الاحتياطية التي قمت برفعها يدويا في مسار النسخ الاحتياطي الداخلي)..."
5071
 
5072
+ #: admin.php:604
5073
  msgid "Begun looking for this entity"
5074
  msgstr "بدأ البحث عن هذا الكيان"
5075
 
5076
+ #: addons/dropbox-folders.php:33
5077
  msgid "Store at"
5078
  msgstr "المتجر فى"
5079
 
5089
  msgid "Time taken (seconds):"
5090
  msgstr "الوقت المستغرق (ثانية):"
5091
 
5092
+ #: addons/migrator.php:1113 admin.php:609
5093
  msgid "Errors:"
5094
  msgstr "الأخطاء:"
5095
 
5158
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5159
  msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
5160
 
5161
+ #: addons/multisite.php:624
5162
  msgid "Blog uploads"
5163
  msgstr "مدونة الملفات المرفوعة"
5164
 
5165
+ #: addons/migrator.php:369 addons/multisite.php:617
5166
  msgid "Must-use plugins"
5167
  msgstr "لابد من استخدام الأضافات"
5168
 
5169
+ #: addons/multisite.php:191
5170
  msgid "You do not have permission to access this page."
5171
  msgstr "ليس لديك الصلاحيات لدخول هذة الصفحة."
5172
 
5173
+ #: addons/multisite.php:177 udaddons/options.php:232
5174
  msgid "You do not have sufficient permissions to access this page."
5175
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذة الصفحة."
5176
 
5177
+ #: addons/multisite.php:171
5178
  msgid "Multisite Install"
5179
  msgstr "تثبيت الموقع المتعدد"
5180
 
5182
  msgid "starting from next time it is"
5183
  msgstr "ابتداء من المرة القادمة انها"
5184
 
5185
+ #: addons/sftp.php:431
5186
  msgid "Failure: Port must be an integer."
5187
  msgstr "فشل: المنفذ يجب ان يكون عدد صحيح."
5188
 
5189
+ #: methods/ftp.php:366 methods/openstack2.php:151
5190
  msgid "password"
5191
  msgstr "كلمة السر"
5192
 
5193
+ #: addons/sftp.php:422 methods/openstack2.php:146
5194
  msgid "username"
5195
  msgstr "اسم المستخدم"
5196
 
5197
+ #: addons/sftp.php:418
5198
  msgid "host name"
5199
  msgstr "اسم المضيف"
5200
 
5201
+ #: addons/sftp.php:396
5202
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5203
  msgstr "حيث لتغير الدليل الى بعد تسجيل الدخول - غالبا ما يكون هذا هو نسبة الى الدليل الرئيسى الخاص بك."
5204
 
5205
+ #: addons/sftp.php:394
5206
  msgid "Directory path"
5207
  msgstr "مسار الدليل"
5208
 
5209
+ #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:369
5210
+ #: addons/webdav.php:69 methods/openstack2.php:131 methods/updraftvault.php:318
5211
+ #: udaddons/options.php:152
5212
  msgid "Password"
5213
  msgstr "كلمة السر"
5214
 
5215
+ #: addons/sftp.php:355 addons/webdav.php:83
5216
  msgid "Port"
5217
  msgstr "المنفذ"
5218
 
5219
+ #: addons/moredatabase.php:237 addons/sftp.php:348 addons/webdav.php:75
5220
  msgid "Host"
5221
  msgstr "الاستضافة"
5222
 
5223
+ #: addons/sftp.php:281
5224
  msgid "%s Error: Failed to download"
5225
  msgstr "خطأ %s: فشل التحميل"
5226
 
5227
+ #: addons/sftp.php:461
5228
  msgid "Check your file permissions: Could not successfully create and enter:"
5229
  msgstr "تحقق من أذونات الملف الخاص بك: تعذر الإنشاء والدخول بنجاح :"
5230
 
5231
+ #: addons/sftp.php:46 addons/sftp.php:47 addons/sftp.php:48
5232
  msgid "No %s found"
5233
  msgstr "لم يتم العثور على %s "
5234
 
5235
+ #: addons/sftp.php:35
5236
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5237
  msgstr "يتم استخدام التشفير الصريح بشكل افتراضي. لإجبار التشفير الضمني (منفذ 990)، قم بإضافة :990 لخادم بروتوكول نقل الملفات الخاصة بك أدناه."
5238
 
5239
+ #: addons/sftp.php:35
5240
  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."
5241
  msgstr "FTP مشفرة متاح، وسيجرب أولا تلقائيا (قبل أن نتراجع إلى النسخة الغيرمشفرة إذا لم ننجح)، إلا إذا كنت تعطيله باستخدام خيارات المتقدمة. زر 'اختبار دخول FTP ' سيخبركم بنوع الإتصال المستخدم."
5242
 
5243
+ #: addons/morefiles.php:622
5244
  msgid "No backup of %s directories: there was nothing found to back up"
5245
  msgstr "لا توجد نسخ احتياطية من المجلدات %s : لم نجد أي شيء لنعمل له نسخة احتياطية"
5246
 
5247
+ #: addons/morefiles.php:269
5248
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5249
  msgstr ""
5250
 
5251
+ #: addons/morefiles.php:267
5252
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5253
  msgstr "إذا لم تكن متأكدا ما هو هذا الخيار، إذا انت حتما لا ترغب فيه، ويجب عليك إيقاف تشغيله."
5254
 
5255
+ #: addons/morefiles.php:246
5256
  msgid "More Files"
5257
  msgstr "ملفات أخرى"
5258
 
5259
+ #: addons/morefiles.php:160
5260
  msgid "WordPress core (including any additions to your WordPress root directory)"
5261
  msgstr "أساسيات ووردبريس (بما في ذلك أية إضافات لدليل ووردبريس الخاص بك)"
5262
 
5263
+ #: addons/morefiles.php:153
5264
  msgid "The above files comprise everything in a WordPress installation."
5265
  msgstr "الملفات بالأعلى تشمل جميع ملفات تنصيب الووردبريس"
5266
 
5267
+ #: addons/morefiles.php:134
5268
  msgid "Over-write wp-config.php"
5269
  msgstr "إعادة كتابة wp-config.php"
5270
 
5271
+ #: addons/morefiles.php:130 addons/morefiles.php:622
5272
+ #: includes/class-wpadmin-commands.php:461
5273
  msgid "WordPress Core"
5274
  msgstr "لب الووردبريس"
5275
 
5276
+ #: methods/addon-base-v2.php:303 methods/stream-base.php:312
5277
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5278
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
5279
 
5280
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5281
+ #: addons/googlecloud.php:666 addons/sftp.php:448 admin.php:2702 admin.php:2737
5282
+ #: admin.php:2746 methods/addon-base-v2.php:293 methods/stream-base.php:298
5283
  msgid "Failed"
5284
  msgstr "فشل"
5285
 
5287
  msgid "WebDAV URL"
5288
  msgstr "رابط WEBDAV"
5289
 
5290
+ #: methods/stream-base.php:282
5291
  msgid "Local write failed: Failed to download"
5292
  msgstr "فشلت الكتابة المحلية: فشل تحميل"
5293
 
5294
+ #: methods/stream-base.php:269
5295
  msgid "Error opening remote file: Failed to download"
5296
  msgstr "خطأ في فتح الملف : فشل في التحميل"
5297
 
5298
+ #: methods/stream-base.php:103 methods/stream-base.php:107
5299
  msgid "Chunk %s: A %s error occurred"
5300
  msgstr "قطعة %s: حدث خطأ %s"
5301
 
5302
+ #: addons/googlecloud.php:278 addons/sftp.php:44 methods/addon-base-v2.php:65
5303
+ #: methods/addon-base-v2.php:106 methods/addon-base-v2.php:138
5304
+ #: methods/addon-base-v2.php:194 methods/addon-base-v2.php:273
5305
+ #: methods/ftp.php:31 methods/googledrive.php:130 methods/stream-base.php:27
5306
+ #: methods/stream-base.php:141 methods/stream-base.php:147
5307
+ #: methods/stream-base.php:181 methods/stream-base.php:246
5308
  msgid "No %s settings were found"
5309
  msgstr "تم العثور على أية إعدادات %s"
5310
 
5311
+ #: methods/ftp.php:388
5312
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5313
  msgstr "فشل: نجحنا في تسجيل الدخول، لكن لا يمكننا إنشاء ملف في الدليل المعطى."
5314
 
5315
+ #: methods/ftp.php:385
5316
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5317
  msgstr "نجاح: نجحنا في تسجيل الدخول، وتأكيد قدرتنا على إنشاء ملف في الدليل المعطى (نوع تسجيل الدخول:"
5318
 
5319
+ #: methods/ftp.php:376
5320
  msgid "Failure: we did not successfully log in with those credentials."
5321
  msgstr "خطأ: لم نتمكن من تسجيل الدخول بنجاح."
5322
 
5323
+ #: methods/ftp.php:358
5324
  msgid "Failure: No server details were given."
5325
  msgstr "خطأ: ولم تعط أية تفاصيل خادم."
5326
 
5327
+ #: methods/ftp.php:330
5328
  msgid "Needs to already exist"
5329
  msgstr "يحتاج إلى وجود بالفعل"
5330
 
5331
+ #: methods/ftp.php:310
5332
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5333
  msgstr "إذا كنت تريد تشفير (على سبيل المثال كنت تخزن بيانات الأعمال الحساسة)، فهناك اضافة متاحة لهذا الغرض."
5334
 
5335
+ #: methods/ftp.php:310
5336
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5337
  msgstr "UpdraftPlus تدعم فقط حسابات FTP الغير مشفرة"
5338
 
5339
+ #: addons/onedrive.php:755 methods/dropbox.php:614
5340
  msgid "Your %s account name: %s"
5341
  msgstr "اسم الحساب %s الخاص بك: %s"
5342
 
5343
+ #: methods/dropbox.php:604 methods/dropbox.php:631
5344
  msgid "though part of the returned information was not as expected - your mileage may vary"
5345
  msgstr "على الرغم من أن جزء من المعلومات الذي عاد لم يكن كما هو متوقع - الأميال الخاص بك قد تختلف"
5346
 
5347
+ #: methods/dropbox.php:599 methods/dropbox.php:601
5348
  msgid "you have authenticated your %s account"
5349
  msgstr "تم المصادقة على %s حسابك"
5350
 
5351
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5352
  msgid "there's an add-on for that."
5353
  msgstr "هناك اضافة لذلك."
5354
 
5355
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5356
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5357
  msgstr "اذا كنت تستخدم النسخ الأحتياطى لعدة مواقع فى نفس الدروب بوكس وتريد ان تقوم بتنظيمها مع المجلدات الفرعية, اذا"
5358
 
5359
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5360
  msgid "Backups are saved in"
5361
  msgstr "يتم حفظ النسخ الأحتياطية فى"
5362
 
5363
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5364
  msgid "Need to use sub-folders?"
5365
  msgstr "هل تحتاج الى استخدام المجلدات الفرعية؟"
5366
 
5367
+ #: methods/dropbox.php:197 methods/dropbox.php:218 methods/dropbox.php:234
5368
  msgid "error: failed to upload file to %s (see log file for more)"
5369
  msgstr "خطأ: فشل فى رفع الملف الى %s (انظر السجل لمزيد من التفاصيل)"
5370
 
5371
+ #: methods/dropbox.php:82 methods/dropbox.php:99
5372
  msgid "You do not appear to be authenticated with Dropbox"
5373
  msgstr "لا يبدو ان المصادقة مع Dropbox"
5374
 
5375
+ #: methods/s3.php:1030
5376
  msgid "The communication with %s was not encrypted."
5377
  msgstr "التواصل مع %s كان غير مشفر."
5378
 
5379
+ #: methods/s3.php:1028
5380
  msgid "The communication with %s was encrypted."
5381
  msgstr "التواصل مع %s كان مشفر."
5382
 
5383
+ #: addons/googlecloud.php:689 methods/s3.php:1025
5384
  msgid "We accessed the bucket, and were able to create files within it."
5385
  msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
5386
 
5387
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5388
+ #: methods/s3.php:1035
5389
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5390
  msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
5391
 
5392
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5393
+ #: methods/s3.php:1035
5394
  msgid "Failure"
5395
  msgstr "فشل"
5396
 
5397
+ #: methods/s3.php:1011
5398
  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)."
5399
  msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
5400
 
5401
+ #: addons/s3-enhanced.php:145 methods/openstack2.php:117 methods/s3.php:1005
5402
  msgid "Region"
5403
  msgstr "المنطقة"
5404
 
5405
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:987
5406
  msgid "Failure: No bucket details were given."
5407
  msgstr "فشل: لم ترد تفاصيل الباكت."
5408
 
5409
+ #: methods/s3.php:965
5410
  msgid "API secret"
5411
  msgstr "API السرية"
5412
 
5413
+ #: methods/s3.php:858
5414
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5415
  msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
5416
 
5417
+ #: methods/s3.php:857
5418
  msgid "%s location"
5419
  msgstr "المكان %s"
5420
 
5421
+ #: methods/s3.php:853
5422
  msgid "%s secret key"
5423
  msgstr "المفتاح السرى %s"
5424
 
5425
+ #: methods/s3.php:849
5426
  msgid "%s access key"
5427
  msgstr "مفتاح الوصول %s"
5428
 
5429
+ #: methods/s3.php:814
5430
  msgid "If you see errors about SSL certificates, then please go here for help."
5431
  msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
5432
 
5433
+ #: methods/s3.php:812
5434
  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."
5435
  msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
5436
 
5437
+ #: methods/s3.php:446 methods/s3.php:620 methods/s3.php:722
5438
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5439
  msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
5440
 
5441
+ #: methods/s3.php:705 methods/s3.php:751
5442
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5443
  msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
5444
 
5445
+ #: methods/s3.php:424
5446
  msgid "%s re-assembly error (%s): (see log file for more)"
5447
  msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
5448
 
5449
+ #: methods/s3.php:420
5450
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5451
  msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
5452
 
5453
+ #: methods/s3.php:404
5454
  msgid "%s chunk %s: upload failed"
5455
  msgstr "%s قطعة %s : فشل الرفع"
5456
 
5457
+ #: methods/s3.php:394
5458
  msgid "%s error: file %s was shortened unexpectedly"
5459
  msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
5460
 
5461
+ #: methods/s3.php:371
5462
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5463
  msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
5464
 
5465
+ #: methods/email.php:71
5466
  msgid "Note:"
5467
  msgstr "ملاحظة:"
5468
 
5469
+ #: methods/email.php:45
5470
  msgid "WordPress Backup"
5471
  msgstr "نسخ ووردريس احتياطيا"
5472
 
5473
+ #: methods/cloudfiles.php:547 methods/openstack-base.php:480
5474
  msgid "We accessed the container, and were able to create files within it."
5475
  msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء ملف داخلها "
5476
 
5477
+ #: methods/cloudfiles.php:543
5478
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5479
  msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاوية، لكننا فشلنا في إنشاء ملف داخلها"
5480
 
5481
+ #: methods/cloudfiles.php:516 methods/openstack-base.php:424
5482
  msgid "Failure: No container details were given."
5483
  msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
5484
 
5485
+ #: addons/moredatabase.php:238 addons/sftp.php:362 addons/webdav.php:63
5486
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:496
5487
+ #: methods/openstack2.php:125
5488
  msgid "Username"
5489
  msgstr "اسم المستخدم"
5490
 
5491
+ #: methods/cloudfiles-new.php:153 methods/cloudfiles.php:491 methods/s3.php:961
5492
  msgid "API key"
5493
  msgstr "مفتاح API"
5494
 
5495
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5496
+ #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:418
5497
+ #: addons/sftp.php:422 addons/sftp.php:426 addons/webdav.php:103 admin.php:662
5498
+ #: methods/addon-base-v2.php:286 methods/cloudfiles-new.php:153
5499
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:491
5500
+ #: methods/cloudfiles.php:496 methods/ftp.php:362 methods/ftp.php:366
5501
+ #: methods/openstack2.php:146 methods/openstack2.php:151
5502
+ #: methods/openstack2.php:156 methods/openstack2.php:161 methods/s3.php:961
5503
+ #: methods/s3.php:965
5504
  msgid "Failure: No %s was given."
5505
  msgstr "فضل: لم تعطى أية %s."
5506
 
5507
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5508
+ #: methods/openstack-base.php:517 methods/s3.php:801
5509
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5510
  msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
5511
 
5512
+ #: methods/cloudfiles.php:477
5513
  msgid "Cloud Files container"
5514
  msgstr "سحابة الملفات الحاوية"
5515
 
5516
+ #: methods/cloudfiles.php:473
5517
  msgid "Cloud Files API key"
5518
  msgstr "سحابة ملفات مفاتيح API "
5519
 
5520
+ #: methods/cloudfiles.php:469
5521
  msgid "Cloud Files username"
5522
  msgstr "سحابة ملفات المستخدم"
5523
 
5524
+ #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:100
5525
+ #: methods/cloudfiles.php:453
5526
  msgid "UK"
5527
  msgstr "المملكة المتحدة"
5528
 
5529
+ #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:99
5530
+ #: methods/cloudfiles.php:452
5531
  msgid "US (default)"
5532
  msgstr "الولايات المتحدة (افتراضى)"
5533
 
5534
+ #: methods/cloudfiles.php:449
5535
  msgid "US or UK Cloud"
5536
  msgstr "سحابة الولايات المتحدة او المملكة المتحدة"
5537
 
5538
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5539
+ #: methods/openstack2.php:98
5540
  msgid "Also, you should read this important FAQ."
5541
  msgstr "أيضا، يجب عليك قراءة هذا التعليمات الهامة."
5542
 
5543
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5544
  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."
5545
  msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\">من خدمة Rackspace Cloud </a> (يمكن قراءة التعليمات <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">هنا</a>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
5546
 
5547
+ #: addons/sftp.php:409 admin.php:685 methods/addon-base-v2.php:252
5548
+ #: methods/backup-module.php:186 methods/cloudfiles.php:483
5549
+ #: methods/openstack-base.php:528 methods/s3.php:863
5550
+ #: methods/stream-base.php:220
5551
  msgid "Test %s Settings"
5552
  msgstr "اختبار %s الإعدادات"
5553
 
5554
+ #: methods/openstack-base.php:407
5555
  msgid "Error downloading remote file: Failed to download ("
5556
  msgstr "خطأ في تحميل الملف بالخدمة السحابية: فشل في تحميل ("
5557
 
5558
+ #: class-updraftplus.php:1044 class-updraftplus.php:1088
5559
+ #: methods/cloudfiles.php:379 methods/stream-base.php:262
5560
  msgid "Error opening local file: Failed to download"
5561
  msgstr "خطأ في فتح ملف محلي: فشل التحميل"
5562
 
5563
+ #: methods/cloudfiles.php:205
5564
  msgid "Cloud Files error - failed to upload file"
5565
  msgstr "خطأ بملفات سحابة - فشل في رفع الملف"
5566
 
5567
+ #: addons/sftp.php:135 addons/sftp.php:147 methods/cloudfiles.php:134
5568
+ #: methods/cloudfiles.php:176 methods/openstack-base.php:77
5569
+ #: methods/openstack-base.php:266 methods/s3.php:339 methods/s3.php:351
5570
+ #: methods/s3.php:352
5571
  msgid "%s Error: Failed to upload"
5572
  msgstr "%s خطأ: فشل في تحميل"
5573
 
5574
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5575
+ #: class-updraftplus.php:906 methods/cloudfiles.php:117
5576
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5577
  msgid "%s Error: Failed to open local file"
5578
  msgstr "%s خطأ: فشل في فتح ملف محلي"
5579
 
5580
+ #: methods/cloudfiles.php:90 methods/cloudfiles.php:331
5581
+ #: methods/cloudfiles.php:350
5582
  msgid "Cloud Files error - failed to create and access the container"
5583
  msgstr "خطأ ملفات السحابة - فشل في إنشاء والوصول إلى الحاوية"
5584
 
5585
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5586
+ #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:526
5587
+ #: methods/cloudfiles.php:529 methods/cloudfiles.php:532
5588
  msgid "Cloud Files authentication failed"
5589
  msgstr "فشل المصادقة بملفات سحابة"
5590
 
5591
+ #: addons/googlecloud.php:907 methods/googledrive.php:963
5592
  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."
5593
  msgstr "<strong>بعد</strong> حفظ خياراتك (بالضغط على زر 'حفظ التغيرات' أدناه)، قم بالرجوع مرة أخرى هنا وقم بزيارة الرابط لإكمال عملية المصادقة مه جوجل."
5594
 
5595
+ #: addons/googlecloud.php:896 methods/googledrive.php:952
5596
  msgid "Authenticate with Google"
5597
  msgstr "المصادقة مع جوجل"
5598
 
5599
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5600
+ #: methods/googledrive.php:922
5601
  msgid "Client Secret"
5602
  msgstr "سر العميل"
5603
 
5604
+ #: addons/googlecloud.php:842 methods/googledrive.php:919
5605
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5606
  msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
5607
 
5608
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5609
+ #: methods/googledrive.php:918
5610
  msgid "Client ID"
5611
  msgstr "معرف العميل"
5612
 
5613
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5614
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5615
  msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
5616
 
5617
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5618
  msgid "Select 'Web Application' as the application type."
5619
  msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
5620
 
5621
+ #: addons/googlecloud.php:826 methods/googledrive.php:906
5622
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5623
  msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
5624
 
5625
+ #: methods/addon-base-v2.php:240 methods/cloudfiles.php:425
5626
+ #: methods/dropbox.php:468 methods/ftp.php:305 methods/googledrive.php:891
5627
+ #: methods/openstack-base.php:507 methods/s3.php:773
5628
+ #: methods/stream-base.php:213
5629
  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."
5630
  msgstr "%s هو خيار صائب، لأن UpdraftPlus يدعم الرفع المقسم - لا يهمنا كم حجم موقعكم، لأن UpdraftPlus يستطيع تقسيم ورفع الأجزاء المقسمة، ولن يحبط من كثرة المهلات."
5631
 
5632
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5633
+ #: addons/googlecloud.php:709 methods/googledrive.php:445
5634
+ #: methods/googledrive.php:446
5635
  msgid "Account is not authorized."
5636
  msgstr "حساب غير مخول."
5637
 
5638
+ #: methods/googledrive.php:371 methods/googledrive.php:417
5639
+ #: methods/googledrive.php:423 methods/googledrive.php:425
5640
+ #: methods/stream-base.php:197
5641
  msgid "Failed to upload to %s"
5642
  msgstr "فشل في تحميل إلى %s"
5643
 
5644
+ #: methods/googledrive.php:400
5645
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5646
  msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك على %d بايت متبقية، ولكن الملف حجمه %d بايت"
5647
 
5648
+ #: methods/googledrive.php:497
5649
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5650
  msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
5651
 
5652
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5653
+ #: methods/googledrive.php:348
5654
  msgid "you have authenticated your %s account."
5655
  msgstr "لديك حساب %s مصادق عليه."
5656
 
5657
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5658
+ #: addons/onedrive.php:793 addons/sftp.php:481 methods/addon-base-v2.php:300
5659
+ #: methods/cloudfiles.php:547 methods/googledrive.php:348
5660
+ #: methods/openstack-base.php:480 methods/s3.php:1025
5661
+ #: methods/stream-base.php:309
5662
  msgid "Success"
5663
  msgstr "نجاح"
5664
 
5665
+ #: addons/onedrive.php:747 methods/dropbox.php:642 methods/dropbox.php:651
5666
+ #: methods/googledrive.php:322
5667
  msgid "Your %s quota usage: %s %% used, %s available"
5668
  msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
5669
 
5670
+ #: addons/googlecloud.php:390 methods/googledrive.php:295
5671
  msgid "Authorization failed"
5672
  msgstr "فشل التخويل"
5673
 
5674
+ #: addons/googlecloud.php:382 methods/googledrive.php:287
5675
  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."
5676
  msgstr "لم نتمكن من الحصول على أي رمز من جوجل. يعني هذا غالبا أنكم قمتم بإدخال رقمكم السري خاطئ، أو أنكم لم تتمكنوا من إعادة مصادقة الخدمة (أسفله) بعد تصحيحها. تأكد منها، ثم قم بمتابعة الرابط أسفله لإعادة المصادقة مع الخدمة مرة أخرى. أخيرا، إن لم تعمل الإضافة، قم باستعمال خيار الخبراء لإعادة مسح كل خياراتكم، أنشئ معرف عميل جوجل جديد وابدأ من الصفر."
5677
 
5678
+ #: methods/addon-not-yet-present.php:62
5679
  msgid "follow this link to get it"
5680
  msgstr "اتبع هذا الرابط للحصول عليه"
5681
 
5682
+ #: methods/addon-not-yet-present.php:62
5683
  msgid "%s support is available as an add-on"
5684
  msgstr "دعم %s متوفر على شكل إضافة "
5685
 
5686
+ #: methods/addon-not-yet-present.php:27 methods/addon-not-yet-present.php:39
5687
+ #: methods/addon-not-yet-present.php:46 methods/addon-not-yet-present.php:55
5688
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5689
  msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها من %s"
5690
 
5693
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5694
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
5695
 
5696
+ #: addons/migrator.php:1770 admin.php:2705 admin.php:2739 admin.php:2743
5697
+ #: admin.php:3619 admin.php:3632 restorer.php:2203 restorer.php:2309
5698
  msgid "OK"
5699
  msgstr "حسنا"
5700
 
5718
  msgid "Old table prefix:"
5719
  msgstr "بادئة الجدول القديمة:"
5720
 
5721
+ #: addons/reporting.php:65 addons/reporting.php:152 backup.php:942
5722
+ #: class-updraftplus.php:4025
5723
  msgid "Backup of:"
5724
  msgstr "نسخة احتياطية لـ:"
5725
 
5795
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5796
  msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
5797
 
5798
+ #: admin.php:3640 admin.php:3641
5799
  msgid "Could not find one of the files for restoration"
5800
  msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
5801
 
5802
+ #: admin.php:3735
5803
  msgid "Error message"
5804
  msgstr "رسالة الخطأ"
5805
 
5806
+ #: admin.php:3637
5807
  msgid "The backup records do not contain information about the proper size of this file."
5808
  msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
5809
 
5810
+ #: admin.php:3629
5811
  msgid "Archive is expected to be size:"
5812
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
5813
 
5814
+ #: admin.php:3513
5815
  msgid "If making a request for support, please include this information:"
5816
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
5817
 
5818
+ #: admin.php:3512
5819
  msgid "ABORT: Could not find the information on which entities to restore."
5820
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
5821
 
5822
+ #: admin.php:3466
5823
  msgid "UpdraftPlus Restoration: Progress"
5824
  msgstr "استرجاع UpdraftPlus: تقدم"
5825
 
5826
+ #: admin.php:3418
5827
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5828
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
5829
 
5830
+ #: admin.php:3367
5831
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5832
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
5833
 
5834
+ #: admin.php:3376
 
 
 
 
5835
  msgid "Delete this backup set"
5836
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
5837
 
5838
+ #: admin.php:3047
5839
  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."
5840
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
5841
 
5842
+ #: admin.php:3044
5843
  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."
5844
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
5845
 
5846
+ #: admin.php:3042
5847
  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)."
5848
  msgstr "نعلمكم أن نسخة PHP/Curl المنصبة لخادمكم لا تدعم وصول https. التواصل مع %s سيكون غير مشفر. من فضلك قم بمراسلة خدمة الإستضافة لتنصيب Curl/SSL لدعم خدمة التشفير (باستخدام إضافة)."
5849
 
5850
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5851
+ #: methods/openstack-base.php:517 methods/s3.php:801
5852
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5853
  msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
5854
 
5855
+ #: templates/wp-admin/settings/form-contents.php:421
5856
  msgid "Save Changes"
5857
  msgstr "حفظ التغييرات"
5858
 
5859
+ #: templates/wp-admin/settings/form-contents.php:398
5860
  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."
5861
  msgstr "اختيار هذا الخيار قد يضعف من الآمان بإيقاف UpdraftPlus من استخدام SSL للمصادقة و تشفير العمليات، إن أمكن الأمر. لاحظ أن بعض الدمات السحابية لا تقبل هذه العملية (مثال: Dropbox)، مع هذا الخيار لن تتمكن من حفظ النسخ بهذه الخدمات."
5862
 
5863
+ #: templates/wp-admin/settings/form-contents.php:397
5864
  msgid "Disable SSL entirely where possible"
5865
  msgstr "قم بتعطيل SSL تماما حيثما أمكن"
5866
 
5867
+ #: templates/wp-admin/settings/form-contents.php:393
5868
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5869
  msgstr "لاحظ أنه ليست كل أساليب النسخ الإحتياطي بالسحابة بالضرورة تستخدم المصادقة عن طريق SSL."
5870
 
5871
+ #: templates/wp-admin/settings/form-contents.php:393
5872
  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."
5873
  msgstr "اختيار هذا الخيار يمكن أن يضعف من حمايتك بمنع UpdraftPlus من التحقق من هوية المواقع التي يتصل بها ( مثال: Dropbox, Google Drive). هذا يعني أن UpdraftPlus سيستخدم SSL لتشفير حركة مرور البيانات، ولن يستخدم التقنية لتشفير المصادقة مع المواقع."
5874
 
5875
+ #: templates/wp-admin/settings/form-contents.php:392
5876
  msgid "Do not verify SSL certificates"
5877
  msgstr "لا تحقق من شهادات SSL"
5878
 
5879
+ #: templates/wp-admin/settings/form-contents.php:388
5880
  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."
5881
  msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من SSL للحقق من هوية المواقع (للتأكد من أن الموقع الآخر هو فعلا الموقع المقصود وليس موقع مقرصن). نقوم بتحديثها آليا. إن قابلك خطأ SSL، حينها قم باختيار هذا الخيار (الذي يفرض على UpdraftPlus استخدام ملفات SSL الخاصة بسيرفرك بدلا من الخاص به) يمكن أن يساعدك."
5882
 
5883
+ #: templates/wp-admin/settings/form-contents.php:387
5884
  msgid "Use the server's SSL certificates"
5885
  msgstr "استخدام شهادات SSL للملقم"
5886
 
5887
+ #: admin.php:2918
5888
  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."
5889
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
5890
 
5891
+ #: admin.php:2918
5892
  msgid "click here"
5893
  msgstr "انقر هنا"
5894
 
5895
+ #: admin.php:2918
5896
  msgid "or, to reset this option"
5897
  msgstr "أو، لإعادة هذا الخيار"
5898
 
5899
+ #: admin.php:2918
5900
  msgid "Follow this link to attempt to create the directory and set the permissions"
5901
  msgstr ""
5902
 
5903
+ #: admin.php:2910
5904
  msgid "Backup directory specified is writable, which is good."
5905
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
5906
 
5907
+ #: templates/wp-admin/settings/form-contents.php:368
5908
  msgid "Backup directory"
5909
  msgstr "دليل النسخ الاحتياطي"
5910
 
5911
+ #: templates/wp-admin/settings/form-contents.php:363
5912
  msgid "Delete local backup"
5913
  msgstr "حذف النسخة الاحتياطية المحلية"
5914
 
5915
+ #: templates/wp-admin/settings/form-contents.php:343
5916
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5917
  msgstr "اضغط هنا لتتمكن من مشاهدة خيارات اضافية، لا ترعج نفسك بهذه الخيارات إلا إذا واجهت مشاكل."
5918
 
5919
+ #: templates/wp-admin/settings/form-contents.php:343
5920
  msgid "Show expert settings"
5921
  msgstr "إظهار الإعدادات المتقدمة"
5922
 
5923
+ #: templates/wp-admin/settings/form-contents.php:342
5924
  msgid "Expert settings"
5925
  msgstr "إعدادات متقدمة"
5926
 
5927
+ #: templates/wp-admin/settings/form-contents.php:353
5928
  msgid "Debug mode"
5929
  msgstr "وضع التصحيح"
5930
 
5931
+ #: templates/wp-admin/settings/form-contents.php:338
5932
  msgid "Advanced / Debugging Settings"
5933
  msgstr "متقدمة / تصحيح الإعدادات "
5934
 
5935
+ #: admin.php:621
5936
  msgid "Requesting start of backup..."
5937
  msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
5938
 
5939
+ #: addons/morefiles.php:294 admin.php:637
5940
  msgid "Cancel"
5941
  msgstr "إلغاء"
5942
 
5943
+ #: addons/reporting.php:216 admin.php:3191
5944
  msgid "None"
5945
  msgstr "لا شيء"
5946
 
5948
  msgid "Choose your remote storage"
5949
  msgstr "اختر خدمت التخزين السحابي"
5950
 
5951
+ #: templates/wp-admin/settings/form-contents.php:236
5952
  msgid "Manually decrypt a database backup file"
5953
  msgstr "فك تشفير ملف النسخ الاحتياطي لقاعدة البيانات يدويا"
5954
 
5955
+ #: templates/wp-admin/settings/form-contents.php:217
5956
  msgid "Database encryption phrase"
5957
  msgstr "عبارة تشفير قاعدة البيانات"
5958
 
5959
+ #: templates/wp-admin/settings/form-contents.php:315 udaddons/options.php:150
5960
  msgid "Email"
5961
  msgstr "البريد الإلكتروني"
5962
 
5963
+ #: templates/wp-admin/settings/form-contents.php:207
5964
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5965
  msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
5966
 
5967
+ #: addons/morefiles.php:440 admin.php:2988
5968
  msgid "Exclude these:"
5969
  msgstr "استبعاد هذه:"
5970
 
5971
+ #: admin.php:2979
5972
  msgid "Any other directories found inside wp-content"
5973
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
5974
 
5975
+ #: templates/wp-admin/settings/form-contents.php:204
5976
  msgid "Include in files backup"
5977
  msgstr "متضمن في ملفات النسخ الاحتياطي"
5978
 
5984
  msgid "To fix the time at which a backup should take place,"
5985
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
5986
 
5987
+ #: admin.php:2904
5988
  msgid "Monthly"
5989
  msgstr "شهريا"
5990
 
5991
+ #: admin.php:2903
5992
  msgid "Fortnightly"
5993
  msgstr "نصف شهري"
5994
 
5995
+ #: admin.php:2902
5996
  msgid "Weekly"
5997
  msgstr "أسبوعيا"
5998
 
5999
+ #: admin.php:2901
6000
  msgid "Daily"
6001
  msgstr "يوميا"
6002
 
6003
+ #: admin.php:644 admin.php:2884
6004
  msgid "Download log file"
6005
  msgstr "تحميل ملف السجل"
6006
 
6007
+ #: admin.php:2802
6008
  msgid "The folder exists, but your webserver does not have permission to write to it."
6009
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
6010
 
6011
+ #: admin.php:2797
6012
  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"
6013
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
6014
 
6015
+ #: admin.php:2783
6016
  msgid "The request to the filesystem to create the directory failed."
6017
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
6018
 
6019
+ #: addons/migrator.php:2243 admin.php:638 admin.php:2699 admin.php:2732
6020
+ #: admin.php:3376 templates/wp-admin/settings/delete-and-restore-modals.php:5
6021
  msgid "Delete"
6022
  msgstr "حذف"
6023
 
6024
+ #: admin.php:2639
6025
  msgid "show log"
6026
  msgstr "عرض السجل"
6027
 
6097
  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"
6098
  msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
6099
 
6100
+ #: addons/morefiles.php:130
6101
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6102
  msgid "%s restoration options:"
6103
  msgstr "%s خيارات الإستعادة:"
6134
  msgid "Delete backup set"
6135
  msgstr "حذف مجموعة النسخ الاحتياطية"
6136
 
6137
+ #: admin.php:620
6138
  msgid "Download error: the server sent us a response which we did not understand."
6139
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
6140
 
6144
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6145
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6146
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6147
+ #: addons/s3-enhanced.php:127 addons/sftp.php:737 addons/webdav.php:79
6148
+ #: admin.php:82 admin.php:612 admin.php:3634 admin.php:3664
6149
+ #: methods/remotesend.php:69 methods/remotesend.php:227
6150
+ #: methods/updraftvault.php:432 restorer.php:1364
6151
  msgid "Error:"
6152
  msgstr "خطأ:"
6153
 
6154
+ #: admin.php:603 templates/wp-admin/settings/downloading-and-restoring.php:34
6155
  msgid "calculating..."
6156
  msgstr "حساب ..."
6157
 
6158
+ #: includes/updraftplus-notices.php:260
6159
+ msgid "or"
6160
+ msgstr "أو"
6161
+
6162
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6163
  msgid "UpdraftPlus - Upload backup files"
6164
  msgstr "UpdraftPlus - تحميل ملفات النسخ الاحتياطي"
6171
  msgid "Web-server disk space in use by UpdraftPlus"
6172
  msgstr "مساحة القرص لخادم الويب قيد الاستخدام من قبل UpdraftPlus"
6173
 
6174
+ #: addons/google-enhanced.php:81 methods/googledrive.php:130
6175
+ #: methods/googledrive.php:348 methods/googledrive.php:371
6176
+ #: methods/googledrive.php:400 methods/googledrive.php:407
6177
+ #: methods/googledrive.php:417 methods/googledrive.php:423
6178
+ #: methods/googledrive.php:425 methods/googledrive.php:890
6179
+ #: methods/googledrive.php:902 methods/googledrive.php:918
6180
+ #: methods/googledrive.php:922 methods/googledrive.php:933
6181
+ #: methods/googledrive.php:943
6182
  msgid "Google Drive"
6183
  msgstr "جوجل درايف"
6184
 
6194
  msgid "More tasks:"
6195
  msgstr "المزيد من المهام:"
6196
 
6197
+ #: admin.php:2402
6198
  msgid "Download most recently modified log file"
6199
  msgstr "تحميل ملف السجل المعدل مؤخرا"
6200
 
6201
+ #: admin.php:2361 admin.php:2367 central/bootstrap.php:161
6202
  msgid "(Nothing yet logged)"
6203
  msgstr "(لا شيء حتى الآن تم تسجيله)"
6204
 
6205
+ #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2360
6206
+ #: admin.php:2365
6207
  msgid "Last log message"
6208
  msgstr "رسالة السجل الأخيرة"
6209
 
6210
+ #: addons/migrator.php:218 admin.php:643 admin.php:3367
6211
  #: templates/wp-admin/settings/tab-status.php:30
6212
  msgid "Restore"
6213
  msgstr "الإستعادة"
6214
 
6215
+ #: admin.php:472 admin.php:636 templates/wp-admin/settings/tab-status.php:27
6216
  msgid "Backup Now"
6217
  msgstr "النسخ الاحتياطي الآن"
6218
 
6219
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6220
+ #: addons/reporting.php:231 admin.php:257 admin.php:3166 admin.php:3239
6221
+ #: admin.php:3718 includes/class-wpadmin-commands.php:138
6222
+ #: includes/class-wpadmin-commands.php:459
6223
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6224
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6225
  msgid "Database"
6226
  msgstr "قاعدة بيانات"
6227
 
6228
+ #: admin.php:253 admin.php:4130
6229
  msgid "Files"
6230
  msgstr "ملفات"
6231
 
6233
  msgid "Next scheduled backups"
6234
  msgstr "النسخ الاحتياطي المجدولة القادمة"
6235
 
6236
+ #: admin.php:233
6237
  msgid "At the same time as the files backup"
6238
  msgstr "في نفس الوقت الذي نقوم فيه بالنسخ الاحتياطي للملفات"
6239
 
6240
+ #: admin.php:223 admin.php:244 admin.php:251
6241
  msgid "Nothing currently scheduled"
6242
  msgstr "لا شيء مقرر حاليا"
6243
 
6249
  msgid "JavaScript warning"
6250
  msgstr "تحذير جافا سكريبت"
6251
 
6252
+ #: admin.php:623 admin.php:2429
6253
  msgid "Delete Old Directories"
6254
  msgstr "حذف الدلائل القديمة"
6255
 
6256
+ #: admin.php:2174
6257
  msgid "Current limit is:"
6258
  msgstr "الحد الحالي هو:"
6259
 
6260
+ #: admin.php:2148
6261
  msgid "Your backup has been restored."
6262
  msgstr "تمت استعادة النسخ الاحتياطي."
6263
 
6269
  msgid "Lead developer's homepage"
6270
  msgstr "الولوج لموقع المطور"
6271
 
6272
+ #: admin.php:4050
6273
  msgid "Your settings have been wiped."
6274
  msgstr "تم القضاء على الإعدادات الخاصة بك."
6275
 
6276
+ #: admin.php:2108
6277
  msgid "Backup directory successfully created."
6278
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
6279
 
6280
+ #: admin.php:2101
6281
  msgid "Backup directory could not be created"
6282
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
6283
 
6284
+ #: admin.php:2671
6285
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6286
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
6287
 
6288
+ #: admin.php:2669
6289
  msgid "Old directories successfully removed."
6290
  msgstr "تم إزالة الدلائل القديمة بنجاح."
6291
 
6292
+ #: admin.php:2666
6293
  msgid "Remove old directories"
6294
  msgstr "إزالة الدلائل القديمة"
6295
 
6296
+ #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2050
6297
+ #: admin.php:2059 admin.php:2068 admin.php:2110 admin.php:2673
6298
  msgid "Return to UpdraftPlus Configuration"
6299
  msgstr "العودة إلى اعدادات UpdraftPlus"
6300
 
6301
+ #: admin.php:616 admin.php:2050 admin.php:2059 admin.php:2068 admin.php:2110
6302
+ #: admin.php:2673 templates/wp-admin/settings/existing-backups-table.php:14
6303
  msgid "Actions"
6304
  msgstr "الإجراءات"
6305
 
6306
+ #: admin.php:2039
6307
  msgid "Restore successful!"
6308
  msgstr "استعادة ناجحة!"
6309
 
6310
+ #: admin.php:1969
6311
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6312
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
6313
 
6314
+ #: admin.php:1879
6315
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6316
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
6317
 
6318
+ #: admin.php:1760
6319
  msgid "No local copy present."
6320
  msgstr "لا نسخة محلية متوفرة."
6321
 
6322
+ #: admin.php:1757
6323
  msgid "Download in progress"
6324
  msgstr "التحميل في تقدم"
6325
 
6326
+ #: admin.php:615 admin.php:1746
6327
  msgid "File ready."
6328
  msgstr "ملف جاهز."
6329
 
6330
+ #: admin.php:1727
6331
  msgid "Download failed"
6332
  msgstr "فشل تحميل"
6333
 
6334
+ #: admin.php:613 admin.php:1518 admin.php:3617 class-updraftplus.php:1044
6335
+ #: class-updraftplus.php:1088 methods/addon-base-v2.php:84
6336
+ #: methods/addon-base-v2.php:89 methods/addon-base-v2.php:204
6337
+ #: methods/addon-base-v2.php:224 methods/stream-base.php:197 restorer.php:2199
6338
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6339
  msgid "Error"
6340
  msgstr "خطأ"
6341
 
6342
+ #: admin.php:1546
6343
  msgid "Could not find that job - perhaps it has already finished?"
6344
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
6345
 
6346
+ #: admin.php:1538
6347
  msgid "Job deleted"
6348
  msgstr "وظيفة حذفت"
6349
 
6350
+ #: admin.php:1622
6351
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6352
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
6353
 
6354
+ #: admin.php:688
6355
  msgid "Nothing yet logged"
6356
  msgstr "لا شيء حتى الآن تم تسجيله"
6357
 
6358
+ #: admin.php:905
6359
  msgid "Please consult this FAQ if you have problems backing up."
6360
  msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
6361
 
6362
+ #: admin.php:905
6363
  msgid "Your website is hosted using the %s web server."
6364
  msgstr "موقعك يستخدم %s من خادم الويب."
6365
 
6366
+ #: admin.php:901
6367
  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."
6368
  msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
6369
 
6370
+ #: admin.php:897
6371
  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."
6372
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
6373
 
6374
+ #: admin.php:889 admin.php:893 admin.php:897 admin.php:901 admin.php:905
6375
+ #: admin.php:914 admin.php:3035 admin.php:3042 admin.php:3044
6376
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435 methods/ftp.php:291
6377
+ #: methods/openstack-base.php:517 methods/s3.php:797 methods/s3.php:801
6378
+ #: methods/updraftvault.php:258
6379
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6380
  #: udaddons/updraftplus-addons.php:208
6381
  msgid "Warning"
6382
  msgstr "تحذير"
6383
 
6384
+ #: admin.php:834
6385
  msgid "Add-Ons / Pro Support"
6386
  msgstr "إضافات / الدعم المدفوع"
6387
 
6388
+ #: admin.php:488 admin.php:830 templates/wp-admin/settings/tab-bar.php:7
6389
  msgid "Settings"
6390
  msgstr "إعدادات"
6391
 
6392
+ #: admin.php:803
6393
  msgid "Allowed Files"
6394
  msgstr "ملفات مسموحة"
6395
 
6397
  msgid "Could not create %s zip. Consult the log file for more information."
6398
  msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
6399
 
6400
+ #: backup.php:2024
6401
  msgid "Infinite recursion: consult your log for more information"
6402
  msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
6403
 
6409
  msgid "Like UpdraftPlus and can spare one minute?"
6410
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
6411
 
6412
+ #: addons/azure.php:216 class-updraftplus.php:3784 methods/googledrive.php:823
6413
  msgid "File not found"
6414
  msgstr "لم يتم العثور على ملف"
6415
 
6416
+ #: class-updraftplus.php:3695
6417
  msgid "The decryption key used:"
6418
  msgstr "مفتاح فك التشفير المستخدم:"
6419
 
6420
+ #: class-updraftplus.php:3695 class-updraftplus.php:3965 restorer.php:390
6421
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6422
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
6423
 
6424
+ #: class-updraftplus.php:3676 class-updraftplus.php:3953 restorer.php:377
6425
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6426
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
6427
 
6428
+ #: backup.php:1914
6429
  msgid "Could not open the backup file for writing"
6430
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
6431
 
6432
+ #: class-updraftplus.php:3288
6433
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6434
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
6435
 
6436
+ #: class-updraftplus.php:3265
6437
  msgid "Could not read the directory"
6438
  msgstr "لا يمكن قراءة الدليل"
6439
 
6440
+ #: admin.php:1797 backup.php:1139 restorer.php:225
6441
  msgid "Backup directory (%s) is not writable, or does not exist."
6442
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
6443
 
6444
+ #: backup.php:943
6445
  msgid "WordPress backup is complete"
6446
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
6447
 
6448
+ #: class-updraftplus.php:2834
6449
  msgid "The backup attempt has finished, apparently unsuccessfully"
6450
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
6451
 
6452
+ #: class-updraftplus.php:2819
6453
  msgid "The backup apparently succeeded and is now complete"
6454
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
6455
 
6456
+ #: addons/moredatabase.php:373
6457
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6458
  msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
6459
 
6460
+ #: class-updraftplus.php:2246
6461
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6462
  msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
6463
 
6464
+ #: class-updraftplus.php:1613
6465
  msgid "Others"
6466
  msgstr "أخرى"
6467
 
6468
+ #: addons/multisite.php:446 class-updraftplus.php:1598
6469
  msgid "Uploads"
6470
  msgstr "الملفات المرفوعة"
6471
 
6472
+ #: class-updraftplus.php:1597
6473
  msgid "Themes"
6474
  msgstr "تصاميم"
6475
 
6476
+ #: class-updraftplus.php:1596
6477
  msgid "Plugins"
6478
  msgstr "الإضافات"
6479
 
6480
+ #: class-updraftplus.php:458
6481
  msgid "No log files were found."
6482
  msgstr "لا توجد ملفات السجل."
6483
 
6484
+ #: admin.php:1681 admin.php:1685 class-updraftplus.php:453
6485
  msgid "The log file could not be read."
6486
  msgstr "لا يمكن قراءة ملف السجل."
6487
 
6488
+ #: admin.php:921 admin.php:925 admin.php:929 admin.php:933 admin.php:937
6489
+ #: class-updraftplus.php:418 class-updraftplus.php:453
6490
+ #: class-updraftplus.php:458 class-updraftplus.php:463
6491
  msgid "UpdraftPlus notice:"
6492
  msgstr "إشعار UpdraftPlus :"
6493
 
6494
+ #: addons/multisite.php:63 addons/multisite.php:654 options.php:42
6495
  msgid "UpdraftPlus Backups"
6496
  msgstr "نسخ الإحتياطية UpdraftPlus"
languages/updraftplus-bn_BD.po CHANGED
@@ -11,59 +11,127 @@ msgstr ""
11
  "Language: bn\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: restorer.php:1629
15
  msgid "Skipped tables:"
16
  msgstr ""
17
 
18
- #: class-updraftplus.php:4049
19
  msgid "This database backup has the following WordPress tables excluded: %s"
20
  msgstr ""
21
 
22
- #: admin.php:2271
23
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
24
  msgstr ""
25
 
26
- #: admin.php:2271
27
  msgid "All WordPress tables will be backed up."
28
  msgstr ""
29
 
30
- #: admin.php:675
31
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
32
  msgstr ""
33
 
34
- #: admin.php:675
35
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
36
  msgstr ""
37
 
38
- #: admin.php:675
39
  msgid "The available memory on the server."
40
  msgstr ""
41
 
42
- #: admin.php:675
43
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
44
  msgstr ""
45
 
46
- #: admin.php:675
47
  msgid "The file failed to upload. Please check the following:"
48
  msgstr ""
49
 
50
- #: admin.php:674
51
  msgid "HTTP code:"
52
  msgstr ""
53
 
54
- #: admin.php:572
55
  msgid "You have chosen to backup a database, but no tables have been selected"
56
  msgstr ""
57
 
58
- #: addons/moredatabase.php:484
59
  msgid "tables"
60
  msgstr ""
61
 
62
- #: addons/moredatabase.php:483
63
  msgid "WordPress database"
64
  msgstr ""
65
 
66
- #: addons/moredatabase.php:476
67
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
68
  msgstr ""
69
 
@@ -214,7 +282,7 @@ msgstr ""
214
  msgid "UpdraftPlus"
215
  msgstr ""
216
 
217
- #: templates/wp-admin/settings/form-contents.php:241
218
  msgid "Recommended: optimize your database with WP-Optimize."
219
  msgstr ""
220
 
@@ -237,31 +305,27 @@ msgstr ""
237
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
238
  msgstr ""
239
 
240
- #: admin.php:595
241
- msgid "Show contents"
242
- msgstr ""
243
-
244
- #: addons/morefiles.php:246
245
  msgid "Please choose a file or directory"
246
  msgstr ""
247
 
248
- #: addons/morefiles.php:235
249
  msgid "Confirm"
250
  msgstr ""
251
 
252
- #: addons/morefiles.php:238
253
  msgid "Go up a directory"
254
  msgstr ""
255
 
256
- #: addons/morefiles.php:231
257
  msgid "Add directory..."
258
  msgstr ""
259
 
260
- #: addons/morefiles.php:224 addons/morefiles.php:244
261
  msgid "Edit"
262
  msgstr ""
263
 
264
- #: addons/morefiles.php:207
265
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
266
  msgstr ""
267
 
@@ -541,19 +605,19 @@ msgstr ""
541
  msgid "Backup of: %s"
542
  msgstr ""
543
 
544
- #: methods/googledrive.php:212
545
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
546
  msgstr ""
547
 
548
- #: methods/dropbox.php:569
549
  msgid "%s de-authentication"
550
  msgstr ""
551
 
552
- #: methods/dropbox.php:537
553
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
554
  msgstr ""
555
 
556
- #: methods/dropbox.php:511
557
  msgid "Follow this link to deauthenticate with %s."
558
  msgstr ""
559
 
@@ -561,7 +625,7 @@ msgstr ""
561
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
562
  msgstr ""
563
 
564
- #: backup.php:1495
565
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
566
  msgstr ""
567
 
@@ -569,47 +633,47 @@ msgstr ""
569
  msgid "You have selected a remote storage option which has an authorization step to complete:"
570
  msgstr ""
571
 
572
- #: admin.php:1391
573
  msgid "Remote files deleted:"
574
  msgstr ""
575
 
576
- #: admin.php:1390
577
  msgid "Local files deleted:"
578
  msgstr ""
579
 
580
- #: admin.php:887 admin.php:891 admin.php:899 admin.php:903
581
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
582
  msgstr ""
583
 
584
- #: admin.php:673
585
  msgid "remote files deleted"
586
  msgstr ""
587
 
588
- #: admin.php:671
589
  msgid "Complete"
590
  msgstr ""
591
 
592
- #: admin.php:670
593
  msgid "Do you want to carry out the import?"
594
  msgstr ""
595
 
596
- #: admin.php:669
597
  msgid "Which was exported on:"
598
  msgstr ""
599
 
600
- #: admin.php:668
601
  msgid "This will import data from:"
602
  msgstr ""
603
 
604
- #: admin.php:667
605
  msgid "Importing..."
606
  msgstr ""
607
 
608
- #: admin.php:664
609
  msgid "You have not yet selected a file to import."
610
  msgstr ""
611
 
612
- #: admin.php:648
613
  msgid "Your export file will be of your displayed settings, not your saved ones."
614
  msgstr ""
615
 
@@ -654,15 +718,15 @@ msgstr "অথবা ম্যানুয়ালি পুনরুদ্ধা
654
  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"
655
  msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
656
 
657
- #: admin.php:2096
658
  msgid "To fix this problem go here."
659
  msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
660
 
661
- #: admin.php:2096
662
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
663
  msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
664
 
665
- #: admin.php:633
666
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
667
  msgstr "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
668
 
@@ -694,11 +758,11 @@ msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ
694
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
695
  msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
696
 
697
- #: methods/s3.php:1012
698
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
699
  msgstr "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
700
 
701
- #: methods/s3.php:89
702
  msgid "No settings were found - please go to the Settings tab and check your settings"
703
  msgstr "কোন সেটিং পাওয়া যায়নি - দয়া করে সেটিং ট্যাবে গিয়ে আপনার সেটিং যাচাই করুন।"
704
 
@@ -766,11 +830,11 @@ msgstr "কি সাইজ: %d বিটস"
766
  msgid "Public key was sent to:"
767
  msgstr "পাবলিক কি টি পাঠানো হয়েছিল:"
768
 
769
- #: backup.php:2054
770
  msgid "Failed to open directory (check the file permissions and ownership): %s"
771
  msgstr "ডিরেক্টরি খুলতে ব্যর্থ (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন): %s"
772
 
773
- #: backup.php:2032
774
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
775
  msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
776
 
@@ -816,27 +880,27 @@ msgstr "পূর্বেই ঠিক করা নামটি লিখু
816
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
817
  msgstr "একটি পিন তৈরি করুনঃ এই পিনটির একটি অনন্য নাম দিন (উদাহরণস্বরূপ, এই সাইট টি কিসের জন্য তা উল্লেখ করতে পারেন), তারপর \"পিন তৈরি করুন\" এ ক্লিক করুনঃ"
818
 
819
- #: methods/googledrive.php:422
820
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
821
  msgstr "আপলোড সফল হবে নাঃ যেকোন একটি ফাইলের %s লিমিট হচ্ছে %s, যেখনে এই ফাইলের সাইজ হচ্ছে %s GB (%d bytes)"
822
 
823
- #: methods/ftp.php:383
824
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
825
  msgstr "এটা কোন কোন সময় ফায়ারওয়ালের কারনে ঘটে থাকে - expert সেটিং থেকে SSL বন্ধ করে আবার চেস্টা করে দেখুন।"
826
 
827
- #: methods/ftp.php:355
828
  msgid "login"
829
  msgstr "লগিন"
830
 
831
- #: methods/email.php:77
832
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
833
  msgstr ""
834
 
835
- #: methods/email.php:28
836
  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."
837
  msgstr ""
838
 
839
- #: class-updraftplus.php:1484
840
  msgid "Size: %s MB"
841
  msgstr "সাইজঃ %s MB"
842
 
@@ -848,7 +912,7 @@ msgstr ""
848
  msgid "i.e. you have an account there"
849
  msgstr "যদি আপনার সেখানে একটি একাউণ্ট (পরিচিতি) থাকে"
850
 
851
- #: templates/wp-admin/settings/form-contents.php:326
852
  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)."
853
  msgstr ""
854
 
@@ -856,7 +920,7 @@ msgstr ""
856
  msgid "Now"
857
  msgstr "এখন"
858
 
859
- #: class-updraftplus.php:3913 restorer.php:996
860
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
861
  msgstr ""
862
 
@@ -864,21 +928,21 @@ msgstr ""
864
  msgid "(tap on an icon to select or unselect)"
865
  msgstr "(সিলেক্ট অথবা আনসিলেক্ট করার জন্য আইকনের উপর টিপ দিন)"
866
 
867
- #: methods/updraftvault.php:291 methods/updraftvault.php:297
868
- #: methods/updraftvault.php:303
869
  msgid "%s per year"
870
  msgstr "প্রতি বৎসর %s"
871
 
872
- #: methods/updraftvault.php:290 methods/updraftvault.php:296
873
- #: methods/updraftvault.php:302
874
  msgid "or (annual discount)"
875
  msgstr "অথবা (বাৎসরিক মূল্যছাড়)"
876
 
877
- #: methods/updraftvault.php:235
878
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
879
  msgstr "এই সাইটের জন্য কোন ভল্ট কানেকশন পাওয়া যায়নি (এটা কি স্থানান্তর করা হয়েছে?), দয়া করে ডিসকানেক্ট করে আবার কানেক্ট করুন।"
880
 
881
- #: class-updraftplus.php:354 class-updraftplus.php:399
882
  msgid "The given file was not found, or could not be read."
883
  msgstr "প্রদত্ত ফাইল পাওয়া যায়নি অথবা পড়া সম্ভব হয়নি।"
884
 
@@ -978,23 +1042,23 @@ msgstr ""
978
  msgid "UpdraftCentral Connection"
979
  msgstr ""
980
 
981
- #: backup.php:837 class-updraftplus.php:2715
982
  msgid "The backup was aborted by the user"
983
  msgstr ""
984
 
985
- #: admin.php:3953
986
  msgid "Your settings have been saved."
987
  msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
988
 
989
- #: admin.php:3146
990
  msgid "Total backup size:"
991
  msgstr ""
992
 
993
- #: admin.php:2593
994
  msgid "stop"
995
  msgstr ""
996
 
997
- #: admin.php:2431
998
  msgid "The backup has finished running"
999
  msgstr ""
1000
 
@@ -1020,27 +1084,27 @@ msgstr "এই ব্যাকআপ সেট"
1020
  msgid "calculate"
1021
  msgstr "গণনা করুন"
1022
 
1023
- #: admin.php:647
1024
  msgid "You should save your changes to ensure that they are used for making your backup."
1025
  msgstr ""
1026
 
1027
- #: admin.php:641
1028
  msgid "We requested to delete the file, but could not understand the server's response"
1029
  msgstr ""
1030
 
1031
- #: admin.php:640
1032
  msgid "Please enter a valid URL"
1033
  msgstr "দয়া করে সঠিক URL প্রবেশ করান"
1034
 
1035
- #: admin.php:623
1036
  msgid "Saving..."
1037
  msgstr "সংরক্ষণ হচ্ছে..."
1038
 
1039
- #: admin.php:586
1040
  msgid "Error: the server sent us a response which we did not understand."
1041
  msgstr ""
1042
 
1043
- #: admin.php:578
1044
  msgid "Fetching..."
1045
  msgstr "আনা হচ্ছে..."
1046
 
@@ -1048,15 +1112,11 @@ msgstr "আনা হচ্ছে..."
1048
  msgid "Asia Pacific (Seoul)"
1049
  msgstr ""
1050
 
1051
- #: addons/copycom.php:43 addons/copycom.php:81
1052
- msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
1053
- msgstr ""
1054
-
1055
  #: restorer.php:1618
1056
  msgid "Uploads URL:"
1057
  msgstr ""
1058
 
1059
- #: backup.php:388
1060
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1061
  msgstr ""
1062
 
@@ -1068,48 +1128,48 @@ msgstr ""
1068
  msgid "Skipping table %s: this table will not be restored"
1069
  msgstr ""
1070
 
1071
- #: class-updraftplus.php:3964 restorer.php:1642
1072
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1073
  msgstr ""
1074
 
1075
- #: class-updraftplus.php:3960
1076
  msgid "Please read this link for important information on this process."
1077
  msgstr ""
1078
 
1079
- #: class-updraftplus.php:3960
1080
  msgid "It will be imported as a new site."
1081
  msgstr ""
1082
 
1083
- #: admin.php:2244 templates/wp-admin/notices/horizontal-notice.php:16
1084
  #: templates/wp-admin/notices/horizontal-notice.php:18
1085
  msgid "Dismiss"
1086
  msgstr "খারিজ"
1087
 
1088
- #: admin.php:659
1089
  msgid "Please fill in the required information."
1090
  msgstr ""
1091
 
1092
- #: addons/multisite.php:556
1093
  msgid "Read more..."
1094
  msgstr "আরও পড়ুন..."
1095
 
1096
- #: addons/multisite.php:556
1097
  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."
1098
  msgstr ""
1099
 
1100
- #: addons/multisite.php:547
1101
  msgid "may include some site-wide data"
1102
  msgstr ""
1103
 
1104
- #: addons/multisite.php:542
1105
  msgid "All sites"
1106
  msgstr ""
1107
 
1108
- #: addons/multisite.php:538
1109
  msgid "Which site to restore"
1110
  msgstr ""
1111
 
1112
- #: addons/multisite.php:374 addons/multisite.php:384
1113
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1114
  msgstr ""
1115
 
@@ -1157,15 +1217,15 @@ msgstr ""
1157
  msgid "Call WordPress action:"
1158
  msgstr ""
1159
 
1160
- #: admin.php:2279
1161
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1162
  msgstr ""
1163
 
1164
- #: admin.php:3554
1165
  msgid "Skipping: this archive was already restored."
1166
  msgstr ""
1167
 
1168
- #: templates/wp-admin/settings/form-contents.php:167
1169
  msgid "File Options"
1170
  msgstr ""
1171
 
@@ -1193,51 +1253,51 @@ msgstr ""
1193
  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)."
1194
  msgstr ""
1195
 
1196
- #: admin.php:3835
1197
  msgid "Send this backup to remote storage"
1198
  msgstr ""
1199
 
1200
- #: admin.php:3833
1201
  msgid "Check out UpdraftPlus Vault."
1202
  msgstr ""
1203
 
1204
- #: admin.php:3833
1205
  msgid "Not got any remote storage?"
1206
  msgstr ""
1207
 
1208
- #: admin.php:3833
1209
  msgid "settings"
1210
  msgstr "সেটিংস"
1211
 
1212
- #: admin.php:3833
1213
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1214
  msgstr ""
1215
 
1216
- #: admin.php:2277
1217
  msgid "Include any files in the backup"
1218
  msgstr ""
1219
 
1220
- #: admin.php:2263
1221
  msgid "Include the database in the backup"
1222
  msgstr ""
1223
 
1224
- #: admin.php:2243
1225
  msgid "Continue restoration"
1226
  msgstr ""
1227
 
1228
- #: admin.php:2238
1229
  msgid "You have an unfinished restoration operation, begun %s ago."
1230
  msgstr ""
1231
 
1232
- #: admin.php:2237
1233
  msgid "Unfinished restoration"
1234
  msgstr ""
1235
 
1236
- #: admin.php:2235
1237
  msgid "%s minutes, %s seconds"
1238
  msgstr ""
1239
 
1240
- #: admin.php:2182
1241
  msgid "Backup Contents And Schedule"
1242
  msgstr ""
1243
 
@@ -1245,24 +1305,24 @@ msgstr ""
1245
  msgid "Premium / Extensions"
1246
  msgstr ""
1247
 
1248
- #: admin.php:1962 admin.php:1971
1249
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1250
  msgstr ""
1251
 
1252
- #: admin.php:646
1253
  msgctxt "(verb)"
1254
  msgid "Download"
1255
  msgstr ""
1256
 
1257
- #: admin.php:571
1258
  msgid "You have chosen to backup files, but no file entities have been selected"
1259
  msgstr ""
1260
 
1261
- #: admin.php:480
1262
  msgid "Extensions"
1263
  msgstr ""
1264
 
1265
- #: admin.php:472 templates/wp-admin/settings/tab-bar.php:8
1266
  msgid "Advanced Tools"
1267
  msgstr ""
1268
 
@@ -1343,75 +1403,75 @@ msgstr ""
1343
  msgid "Standard"
1344
  msgstr ""
1345
 
1346
- #: addons/azure.php:524
1347
  msgid "container"
1348
  msgstr ""
1349
 
1350
- #: addons/azure.php:524
1351
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1352
  msgstr ""
1353
 
1354
- #: addons/azure.php:523
1355
  msgid "optional"
1356
  msgstr ""
1357
 
1358
- #: addons/azure.php:523
1359
  msgid "Prefix"
1360
  msgstr ""
1361
 
1362
- #: addons/azure.php:518
1363
  msgid "See Microsoft's guidelines on container naming by following this link."
1364
  msgstr ""
1365
 
1366
- #: addons/azure.php:518
1367
  msgid "If the %s does not already exist, then it will be created."
1368
  msgstr ""
1369
 
1370
- #: addons/azure.php:518
1371
  msgid "Enter the path of the %s you wish to use here."
1372
  msgstr ""
1373
 
1374
- #: addons/azure.php:507
1375
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1376
  msgstr ""
1377
 
1378
- #: addons/azure.php:506
1379
  msgid "Account Name"
1380
  msgstr ""
1381
 
1382
- #: addons/azure.php:506 addons/azure.php:510
1383
  msgid "Azure"
1384
  msgstr ""
1385
 
1386
- #: addons/azure.php:502
1387
  msgid "Create Azure credentials in your Azure developer console."
1388
  msgstr ""
1389
 
1390
- #: addons/azure.php:450
1391
  msgid "Could not create the container"
1392
  msgstr ""
1393
 
1394
- #: addons/azure.php:344
1395
  msgid "Could not access container"
1396
  msgstr ""
1397
 
1398
- #: class-updraftplus.php:2732
1399
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1400
  msgstr ""
1401
 
1402
- #: backup.php:1547
1403
  msgid "the options table was not found"
1404
  msgstr ""
1405
 
1406
- #: backup.php:1545
1407
  msgid "no options or sitemeta table was found"
1408
  msgstr ""
1409
 
1410
- #: backup.php:1545 backup.php:1547
1411
  msgid "The database backup appears to have failed"
1412
  msgstr ""
1413
 
1414
- #: backup.php:1419
1415
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1416
  msgstr ""
1417
 
@@ -1528,35 +1588,35 @@ msgstr ""
1528
  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)."
1529
  msgstr ""
1530
 
1531
- #: admin.php:1389
1532
  msgid "Backup sets removed:"
1533
  msgstr ""
1534
 
1535
- #: admin.php:658
1536
  msgid "Processing..."
1537
  msgstr ""
1538
 
1539
- #: admin.php:656
1540
  msgid "For backups older than"
1541
  msgstr ""
1542
 
1543
- #: admin.php:655
1544
  msgid "week(s)"
1545
  msgstr ""
1546
 
1547
- #: admin.php:654
1548
  msgid "hour(s)"
1549
  msgstr ""
1550
 
1551
- #: admin.php:653
1552
  msgid "day(s)"
1553
  msgstr ""
1554
 
1555
- #: admin.php:652
1556
  msgid "in the month"
1557
  msgstr ""
1558
 
1559
- #: admin.php:651
1560
  msgid "day"
1561
  msgstr ""
1562
 
@@ -1576,31 +1636,31 @@ msgstr ""
1576
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1577
  msgstr ""
1578
 
1579
- #: methods/updraftvault.php:596
1580
  msgid "You do not currently have any UpdraftPlus Vault quota"
1581
  msgstr ""
1582
 
1583
- #: class-updraftplus.php:3999
1584
  msgid "You must upgrade MySQL to be able to use this database."
1585
  msgstr ""
1586
 
1587
- #: class-updraftplus.php:3999
1588
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1589
  msgstr ""
1590
 
1591
- #: admin.php:2081
1592
  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."
1593
  msgstr ""
1594
 
1595
- #: methods/updraftvault.php:324
1596
  msgid "Don't know your email address, or forgotten your password?"
1597
  msgstr "আপনার ইমেল ঠিকানা জানা নেই, নাকি আপনার পাসওয়ার্ড ভুলে গিয়েছেন?"
1598
 
1599
- #: methods/updraftvault.php:317
1600
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1601
  msgstr ""
1602
 
1603
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1604
  msgid "Read the FAQs here."
1605
  msgstr "এখানে প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী পড়ুন।"
1606
 
@@ -1612,155 +1672,155 @@ msgstr "আমাজনের সার্ভার সাইড এনক্র
1612
  msgid "Server-side encryption"
1613
  msgstr "সার্ভার সাইড এনক্রিপশন"
1614
 
1615
- #: methods/updraftvault.php:605
1616
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1617
  msgstr ""
1618
 
1619
- #: admin.php:895
1620
  msgid "Go to the remote storage settings in order to connect."
1621
  msgstr ""
1622
 
1623
- #: admin.php:895
1624
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1625
  msgstr ""
1626
 
1627
- #: methods/updraftvault.php:306
1628
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1629
  msgstr "পেমেন্ট ইউএস ডলার, ইউরো বা GB pounds sterling এর মাধ্যমে কার্ড বা পেপ্যাল এর দ্বারা করতে হবে।"
1630
 
1631
- #: admin.php:629
1632
  msgid "Update quota count"
1633
  msgstr " প্রাপ্য সংখ্যা হালনাগাদ"
1634
 
1635
- #: admin.php:628
1636
  msgid "Counting..."
1637
  msgstr "গণনা করা হচ্ছে..."
1638
 
1639
- #: admin.php:627
1640
  msgid "Disconnecting..."
1641
  msgstr "সংযোগ বিচ্ছিন্ন করা হচ্ছে..."
1642
 
1643
- #: admin.php:625
1644
  msgid "Connecting..."
1645
  msgstr "সংযোগ করা হচ্ছে..."
1646
 
1647
- #: methods/updraftvault.php:380 methods/updraftvault.php:449
1648
  msgid "Refresh current status"
1649
  msgstr "বর্তমান অবস্থা পুনঃবিবেচনা করুন"
1650
 
1651
- #: methods/updraftvault.php:378 methods/updraftvault.php:394
1652
- #: methods/updraftvault.php:396 methods/updraftvault.php:449
1653
  msgid "Get more quota"
1654
  msgstr "আরও প্রাপ্য নিন"
1655
 
1656
- #: methods/updraftvault.php:375 methods/updraftvault.php:391
1657
- #: methods/updraftvault.php:430
1658
  msgid "Current use:"
1659
  msgstr "বর্তমান ব্যাবহার:"
1660
 
1661
- #: methods/updraftvault.php:370
1662
  msgid "You can get more quota here"
1663
  msgstr "আপনি এখান থেকে আরও প্রাপ্য পেতে পারেন"
1664
 
1665
- #: methods/updraftvault.php:370
1666
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1667
  msgstr "%s ইরোর: আপনার যথেষ্ট প্রাপ্য(%s) নেই আর্কাইভটি(%s) আপলোড করার জন্য।"
1668
 
1669
- #: admin.php:626 methods/updraftvault.php:362
1670
  msgid "Disconnect"
1671
  msgstr "সংযোগ বিচ্ছিন্ন করুন"
1672
 
1673
- #: methods/updraftvault.php:354
1674
  msgid "Quota:"
1675
  msgstr "প্রাপ্য:"
1676
 
1677
- #: methods/updraftvault.php:352
1678
  msgid "Vault owner"
1679
  msgstr "ভল্টের মালিক"
1680
 
1681
- #: methods/updraftvault.php:352
1682
  msgid "Well done - there's nothing more needed to set up."
1683
  msgstr "চমৎকার - এখন আর আপনাকে কিছুই করতে হবে না।"
1684
 
1685
- #: methods/updraftvault.php:352
1686
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1687
  msgstr "এই সাইটটি UpdraftPlus Vault এ <strong>সংযুক্ত</strong>।"
1688
 
1689
- #: methods/updraftvault.php:348
1690
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1691
  msgstr "আপনি UpdraftPlus Vault এ<strong>সংযুক্ত নন</strong>।"
1692
 
1693
- #: methods/updraftvault.php:324
1694
  msgid "Go here for help"
1695
  msgstr "সাহায্যের জন্য এখানে যান"
1696
 
1697
- #: methods/updraftvault.php:319
1698
  msgid "E-mail"
1699
  msgstr "ই-মেইল"
1700
 
1701
- #: methods/updraftvault.php:312 methods/updraftvault.php:327
1702
  msgid "Back..."
1703
  msgstr "ফিরে চলুন..."
1704
 
1705
- #: methods/updraftvault.php:306
1706
  msgid "Subscriptions can be cancelled at any time."
1707
  msgstr "সাবস্ক্রিপশন যেকোনো সময় বাতিল করা সম্ভব"
1708
 
1709
- #: methods/updraftvault.php:289 methods/updraftvault.php:295
1710
- #: methods/updraftvault.php:301
1711
  msgid "%s per quarter"
1712
  msgstr "%s প্রতি তিন মাসে"
1713
 
1714
- #: central/bootstrap.php:542 methods/updraftvault.php:279
1715
- #: methods/updraftvault.php:309
1716
  msgid "Read more about it here."
1717
  msgstr "এইটি সম্পর্কে আরও পড়ুন এখানে।"
1718
 
1719
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1720
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1721
  msgstr "UpdraftPlus Vault অ্যামাজনের বিশ্বসেরা ডাটা সেন্টারে তৈরী। এছাড়া অতিরিক্ত ডাটার স্টোরেজের মাধ্যমে আছে ৯৯.৯৯৯৯৯৯৯৯৯% বিশ্বাসযোগ্যতা"
1722
 
1723
- #: methods/updraftvault.php:275
1724
  msgid "Already purchased space?"
1725
  msgstr "জায়গা আগে থেকে কিনেছেন?"
1726
 
1727
- #: methods/updraftvault.php:272
1728
  msgid "Show the options"
1729
  msgstr "অপশন দেখান"
1730
 
1731
- #: methods/updraftvault.php:271
1732
  msgid "First time user?"
1733
  msgstr "প্রথম বার ব্যাবহারকারি?"
1734
 
1735
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1736
  msgid "Press a button to get started."
1737
  msgstr "কাজ শুরু করতে যেকোনো একটি বোতাম চাপুন।"
1738
 
1739
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1740
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1741
  msgstr "UpdraftPlus Vault আপনাকে স্টোরেজের সুবিধা দেয় যেটি <strong>বিশ্বাসযোগ্য, সহজে ব্যাবহারযোগ্য এবং চমৎকার দামে</strong>।"
1742
 
1743
- #: methods/updraftvault.php:231
1744
  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."
1745
  msgstr ""
1746
 
1747
- #: methods/updraftvault.php:228
1748
  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!"
1749
  msgstr "আপনার UpdraftPlus Vault এর পেমেন্ট নির্দিষ্ট সময় অতিক্রম করে ফেলেছে। এবং আপনার এ্যাকাউন্ট কিছু দিনের মাঝে বন্ধ করে দেয়া হবে, এবং আপনি আপনার প্রাপ্য এবং এর সকল তথ্য হারাবেন। দয়া করে তাড়াতাড়ি রিনিউ করুন!"
1750
 
1751
- #: methods/updraftvault.php:225
1752
  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."
1753
  msgstr "আপনার UpdraftPlus Premium কেনার এক বছর অতিক্রান্ত হয়ে গিয়েছে। আপনার এখনি তা নবিনীকরন করা উচিত আপনার ১২ মাসের বিনামূল্যের স্টোরেজ এর সুবিধা রক্ষার্থে যা আপনি UpdraftPlus Premium কাস্টমার হওয়ার জন্য পেয়ে থাকেন।"
1754
 
1755
- #: methods/updraftvault.php:48 methods/updraftvault.php:77
1756
  msgid "Updraft Vault"
1757
  msgstr "ভল্ট আপডেট করুন"
1758
 
1759
- #: addons/azure.php:366 addons/googlecloud.php:693 methods/s3.php:1040
1760
  msgid "Delete failed:"
1761
  msgstr "ডিলিট ব্যর্থ:"
1762
 
1763
- #: backup.php:2994
1764
  msgid "The zip engine returned the message: %s."
1765
  msgstr "Zip engine টি এই বার্তা নিয়ে এসেছে: %s।"
1766
 
@@ -1784,7 +1844,7 @@ msgstr "ডাউনলোড এর অনুমতি দিন"
1784
  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."
1785
  msgstr ""
1786
 
1787
- #: addons/migrator.php:1742 admin.php:635
1788
  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."
1789
  msgstr ""
1790
 
@@ -1852,11 +1912,11 @@ msgstr ""
1852
  msgid "Backup made by %s"
1853
  msgstr "ব্যাকআপ তৈরি করেছেন %s"
1854
 
1855
- #: methods/addon-base.php:177
1856
  msgid "This storage method does not allow downloading"
1857
  msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
1858
 
1859
- #: admin.php:3314
1860
  msgid "(backup set imported from remote location)"
1861
  msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
1862
 
@@ -1876,23 +1936,23 @@ msgstr ""
1876
  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."
1877
  msgstr ""
1878
 
1879
- #: addons/migrator.php:1770 admin.php:642
1880
  msgid "Testing connection..."
1881
  msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
1882
 
1883
- #: admin.php:639
1884
  msgid "Deleting..."
1885
  msgstr "মুছে ফেলা হচ্ছে..."
1886
 
1887
- #: admin.php:638
1888
  msgid "key name"
1889
  msgstr "চাবির(কি) নাম"
1890
 
1891
- #: admin.php:636
1892
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1893
  msgstr "এই চাবিকাঠির একটি নাম দিন (e.g. indicate the site it is for):"
1894
 
1895
- #: admin.php:633
1896
  msgid "Creating..."
1897
  msgstr "তৈরি করা হচ্ছে..."
1898
 
@@ -1916,11 +1976,11 @@ msgstr ""
1916
  msgid "Or, send a backup to another site"
1917
  msgstr "অথবা, ব্যাকআপ অন্য একটি সাইটে পাঠান"
1918
 
1919
- #: addons/migrator.php:1937 admin.php:643
1920
  msgid "Send"
1921
  msgstr "পাঠান"
1922
 
1923
- #: addons/migrator.php:1931 admin.php:634
1924
  msgid "Send to site:"
1925
  msgstr ""
1926
 
@@ -1952,27 +2012,27 @@ msgstr ""
1952
  msgid "key"
1953
  msgstr "চাবি"
1954
 
1955
- #: methods/ftp.php:325
1956
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1957
  msgstr ""
1958
 
1959
- #: methods/ftp.php:323
1960
  msgid "Passive mode"
1961
  msgstr ""
1962
 
1963
- #: methods/ftp.php:319
1964
  msgid "Remote path"
1965
  msgstr ""
1966
 
1967
- #: methods/ftp.php:315
1968
  msgid "FTP password"
1969
  msgstr "FTP পাসওয়ার্ড"
1970
 
1971
- #: methods/ftp.php:311
1972
  msgid "FTP login"
1973
  msgstr "FTP লগইন"
1974
 
1975
- #: methods/ftp.php:307
1976
  msgid "FTP server"
1977
  msgstr "FTP সার্ভার"
1978
 
@@ -1984,15 +2044,15 @@ msgstr ""
1984
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1985
  msgstr ""
1986
 
1987
- #: addons/migrator.php:2180 admin.php:631
1988
  msgid "Add site"
1989
  msgstr "সাইট যুক্ত করুন"
1990
 
1991
- #: admin.php:630
1992
  msgid "Adding..."
1993
  msgstr "যুক্ত করা হচ্ছে..."
1994
 
1995
- #: udaddons/options.php:338
1996
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1997
  msgstr ""
1998
 
@@ -2020,7 +2080,7 @@ msgstr ""
2020
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2021
  msgstr ""
2022
 
2023
- #: admin.php:622 admin.php:647 admin.php:648
2024
  msgid "You have made changes to your settings, and not saved."
2025
  msgstr ""
2026
 
@@ -2032,7 +2092,7 @@ msgstr ""
2032
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2033
  msgstr ""
2034
 
2035
- #: addons/azure.php:502 addons/migrator.php:1757 addons/onedrive.php:961
2036
  msgid "For longer help, including screenshots, follow this link."
2037
  msgstr ""
2038
 
@@ -2056,11 +2116,11 @@ msgstr "OneDrive"
2056
  msgid "Please re-authorize the connection to your %s account."
2057
  msgstr ""
2058
 
2059
- #: methods/email.php:73
2060
  msgid "configure it here"
2061
  msgstr "এটিকে এইখানে কনফিগার করুন"
2062
 
2063
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2064
  msgid "To remove the block, please go here."
2065
  msgstr "ব্লক সরাতে, এখানে যান।"
2066
 
@@ -2205,7 +2265,7 @@ msgstr ""
2205
  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)"
2206
  msgstr ""
2207
 
2208
- #: methods/s3.php:842
2209
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2210
  msgstr ""
2211
 
@@ -2221,17 +2281,17 @@ msgstr ""
2221
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2222
  msgstr ""
2223
 
2224
- #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:569
2225
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2226
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2227
  msgstr ""
2228
 
2229
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2230
  #: udaddons/updraftplus-addons.php:747
2231
  msgid "It appears that your web server's IP Address (%s) is blocked."
2232
  msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
2233
 
2234
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2235
  #: udaddons/updraftplus-addons.php:747
2236
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2237
  msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
@@ -2282,7 +2342,7 @@ msgstr ""
2282
  msgid "(at same time as files backup)"
2283
  msgstr ""
2284
 
2285
- #: admin.php:2840
2286
  msgid "No backup has been completed"
2287
  msgstr ""
2288
 
@@ -2330,12 +2390,12 @@ msgstr "আপনি বর্তমানে wordpress.org থেকে প্
2330
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2331
  msgstr ""
2332
 
2333
- #: methods/s3.php:136 methods/s3.php:137 methods/s3.php:138 methods/s3.php:146
2334
- #: methods/s3.php:147 methods/s3.php:148
2335
  msgid "%s Error: Failed to initialise"
2336
  msgstr "%s ত্রুটি: ইনিশিয়ালাইজ করতে ব্যর্থ"
2337
 
2338
- #: templates/wp-admin/settings/form-contents.php:216
2339
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2340
  msgid "or"
2341
  msgstr "অথবা"
@@ -2345,38 +2405,38 @@ msgctxt "Uploader: Drop backup files here - or - Select Files"
2345
  msgid "or"
2346
  msgstr "অথবা"
2347
 
2348
- #: admin.php:616
2349
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2350
  msgstr ""
2351
 
2352
- #: addons/sftp.php:379
2353
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2354
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2355
  msgstr ""
2356
 
2357
- #: addons/sftp.php:342
2358
  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."
2359
  msgstr ""
2360
 
2361
- #: methods/openstack2.php:152
2362
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2363
  msgid "tenant"
2364
  msgstr ""
2365
 
2366
- #: methods/openstack2.php:102
2367
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2368
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2369
  msgstr ""
2370
 
2371
- #: templates/wp-admin/settings/form-contents.php:287
2372
  msgid "your site's admin address"
2373
  msgstr ""
2374
 
2375
- #: templates/wp-admin/settings/form-contents.php:287
2376
  msgid "Check this box to have a basic report sent to"
2377
  msgstr ""
2378
 
2379
- #: admin.php:2849
2380
  msgctxt "i.e. Non-automatic"
2381
  msgid "Manual"
2382
  msgstr ""
@@ -2390,11 +2450,11 @@ msgstr ""
2390
  msgid "Change Lock Settings"
2391
  msgstr "লক সেটিং পরিবর্তন করুন"
2392
 
2393
- #: addons/morefiles.php:185
2394
  msgid "Any other file/directory on your server that you wish to back up"
2395
  msgstr ""
2396
 
2397
- #: admin.php:2098
2398
  msgid "For even more features and personal support, check out "
2399
  msgstr ""
2400
 
@@ -2410,7 +2470,7 @@ msgstr ""
2410
  msgid "Database decryption phrase"
2411
  msgstr "ডাটাবেস ডিক্রিপশন শব্দগুচ্ছ"
2412
 
2413
- #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:621
2414
  msgid "Automatic backup before update"
2415
  msgstr "আপডেট করার আগে স্বয়ংক্রিয় ব্যাকআপ"
2416
 
@@ -2490,15 +2550,15 @@ msgstr ""
2490
  msgid "The admin password has now been removed."
2491
  msgstr ""
2492
 
2493
- #: addons/morefiles.php:74
2494
  msgid "(learn more about this significant option)"
2495
  msgstr ""
2496
 
2497
- #: udaddons/options.php:273
2498
  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."
2499
  msgstr ""
2500
 
2501
- #: admin.php:2431 admin.php:3337
2502
  msgid "View Log"
2503
  msgstr ""
2504
 
@@ -2515,7 +2575,7 @@ msgstr ""
2515
  msgid "and retain this many scheduled backups"
2516
  msgstr ""
2517
 
2518
- #: admin.php:2810
2519
  msgid "incremental backup; base backup: %s"
2520
  msgstr ""
2521
 
@@ -2527,28 +2587,28 @@ msgstr ""
2527
  msgid "Upload files into UpdraftPlus."
2528
  msgstr ""
2529
 
2530
- #: admin.php:846 includes/class-commands.php:363
2531
  #: templates/wp-admin/settings/tab-status.php:22
2532
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2533
  msgstr ""
2534
 
2535
- #: class-updraftplus.php:3949
2536
  msgid "Backup label:"
2537
  msgstr ""
2538
 
2539
- #: admin.php:1625
2540
  msgid "Error: unexpected file read fail"
2541
  msgstr ""
2542
 
2543
- #: backup.php:3000
2544
  msgid "check your log for more details."
2545
  msgstr ""
2546
 
2547
- #: backup.php:2998
2548
  msgid "your web hosting account appears to be full; please see: %s"
2549
  msgstr ""
2550
 
2551
- #: backup.php:2996
2552
  msgid "A zip error occurred"
2553
  msgstr ""
2554
 
@@ -2556,19 +2616,19 @@ msgstr ""
2556
  msgid "Your label for this backup (optional)"
2557
  msgstr ""
2558
 
2559
- #: addons/googlecloud.php:822 methods/googledrive.php:915
2560
  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."
2561
  msgstr ""
2562
 
2563
- #: methods/updraftvault.php:608 udaddons/updraftplus-addons.php:789
2564
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2565
  msgstr ""
2566
 
2567
- #: methods/updraftvault.php:605 udaddons/updraftplus-addons.php:785
2568
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2569
  msgstr ""
2570
 
2571
- #: methods/updraftvault.php:545 udaddons/updraftplus-addons.php:655
2572
  msgid "You need to supply both an email address and a password"
2573
  msgstr ""
2574
 
@@ -2576,11 +2636,11 @@ msgstr ""
2576
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2577
  msgstr ""
2578
 
2579
- #: class-updraftplus.php:3968
2580
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2581
  msgstr ""
2582
 
2583
- #: class-updraftplus.php:3968
2584
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2585
  msgstr ""
2586
 
@@ -2608,27 +2668,27 @@ msgstr ""
2608
  msgid "Rows per batch"
2609
  msgstr ""
2610
 
2611
- #: udaddons/options.php:102
2612
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2613
  msgstr ""
2614
 
2615
- #: udaddons/options.php:100 udaddons/options.php:102
2616
  msgid "You need to connect to receive future updates to UpdraftPlus."
2617
  msgstr ""
2618
 
2619
- #: class-updraftplus.php:3941
2620
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2621
  msgstr ""
2622
 
2623
- #: class-updraftplus.php:3941
2624
  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."
2625
  msgstr ""
2626
 
2627
- #: class-updraftplus.php:3941
2628
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2629
  msgstr ""
2630
 
2631
- #: class-updraftplus.php:3941
2632
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2633
  msgstr ""
2634
 
@@ -2653,7 +2713,7 @@ msgstr ""
2653
  msgid "UpdraftPlus is on social media - check us out!"
2654
  msgstr ""
2655
 
2656
- #: admin.php:3398
2657
  msgid "Why am I seeing this?"
2658
  msgstr "আমি কেন এটি দেখছি?"
2659
 
@@ -2665,15 +2725,15 @@ msgstr ""
2665
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2666
  msgstr ""
2667
 
2668
- #: admin.php:1573 admin.php:1585
2669
  msgid "Start backup"
2670
  msgstr "ব্যাকআপ শুরু করুন"
2671
 
2672
- #: class-updraftplus.php:3913 restorer.php:996
2673
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2674
  msgstr ""
2675
 
2676
- #: admin.php:2754
2677
  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."
2678
  msgstr ""
2679
 
@@ -2681,11 +2741,11 @@ msgstr ""
2681
  msgid "Unless you have a problem, you can completely ignore everything here."
2682
  msgstr ""
2683
 
2684
- #: admin.php:1784
2685
  msgid "This file could not be uploaded"
2686
  msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
2687
 
2688
- #: admin.php:1749
2689
  msgid "You will find more information about this in the Settings section."
2690
  msgstr ""
2691
 
@@ -2705,7 +2765,7 @@ msgstr ""
2705
  msgid "Memory limit"
2706
  msgstr ""
2707
 
2708
- #: class-updraftplus.php:4071 restorer.php:1441
2709
  msgid "restoration"
2710
  msgstr ""
2711
 
@@ -2713,11 +2773,11 @@ msgstr ""
2713
  msgid "Table to be implicitly dropped: %s"
2714
  msgstr ""
2715
 
2716
- #: backup.php:832
2717
  msgid "Incremental"
2718
  msgstr ""
2719
 
2720
- #: backup.php:832
2721
  msgid "Full backup"
2722
  msgstr ""
2723
 
@@ -2733,7 +2793,7 @@ msgstr ""
2733
  msgid "Backup succeeded"
2734
  msgstr ""
2735
 
2736
- #: admin.php:2850 admin.php:2851 admin.php:2852 updraftplus.php:92
2737
  #: updraftplus.php:93
2738
  msgid "Every %s hours"
2739
  msgstr ""
@@ -2776,23 +2836,23 @@ msgstr ""
2776
  msgid "Too many database errors have occurred - aborting"
2777
  msgstr ""
2778
 
2779
- #: backup.php:898
2780
  msgid "read more at %s"
2781
  msgstr ""
2782
 
2783
- #: backup.php:898
2784
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2785
  msgstr ""
2786
 
2787
- #: methods/googledrive.php:921
2788
  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."
2789
  msgstr ""
2790
 
2791
- #: admin.php:3166
2792
  msgid "You have not yet made any backups."
2793
  msgstr ""
2794
 
2795
- #: templates/wp-admin/settings/form-contents.php:179
2796
  msgid "Database Options"
2797
  msgstr ""
2798
 
@@ -2808,30 +2868,30 @@ msgstr ""
2808
  msgid "Free disk space in account:"
2809
  msgstr ""
2810
 
2811
- #: admin.php:3924 templates/wp-admin/settings/tab-status.php:27
2812
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2813
  msgstr ""
2814
 
2815
- #: admin.php:456 admin.php:590 admin.php:1438
2816
  #: includes/deprecated-actions.php:30
2817
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2818
  #: templates/wp-admin/settings/tab-bar.php:6
2819
  msgid "Existing Backups"
2820
  msgstr ""
2821
 
2822
- #: admin.php:448 templates/wp-admin/settings/tab-bar.php:5
2823
  msgid "Current Status"
2824
  msgstr ""
2825
 
2826
- #: admin.php:851
2827
  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."
2828
  msgstr ""
2829
 
2830
- #: admin.php:851
2831
  msgid "To make a backup, just press the Backup Now button."
2832
  msgstr ""
2833
 
2834
- #: admin.php:851
2835
  msgid "Welcome to UpdraftPlus!"
2836
  msgstr ""
2837
 
@@ -2903,48 +2963,48 @@ msgstr ""
2903
  msgid "user"
2904
  msgstr ""
2905
 
2906
- #: class-updraftplus.php:1481
2907
  msgid "External database (%s)"
2908
  msgstr ""
2909
 
2910
- #: methods/googledrive.php:921
2911
  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."
2912
  msgstr ""
2913
 
2914
- #: methods/googledrive.php:386
2915
  msgid "failed to access parent folder"
2916
  msgstr ""
2917
 
2918
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2919
- #: methods/googledrive.php:343
2920
  msgid "However, subsequent access attempts failed:"
2921
  msgstr ""
2922
 
2923
- #: admin.php:3191
2924
  msgid "External database"
2925
  msgstr ""
2926
 
2927
- #: templates/wp-admin/settings/form-contents.php:321
2928
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2929
  msgstr ""
2930
 
2931
- #: templates/wp-admin/settings/form-contents.php:261
2932
  msgid "Back up more databases"
2933
  msgstr ""
2934
 
2935
- #: templates/wp-admin/settings/form-contents.php:218
2936
  msgid "First, enter the decryption key"
2937
  msgstr ""
2938
 
2939
- #: templates/wp-admin/settings/form-contents.php:200
2940
  msgid "You can manually decrypt an encrypted database here."
2941
  msgstr ""
2942
 
2943
- #: templates/wp-admin/settings/form-contents.php:188
2944
  msgid "It can also backup external databases."
2945
  msgstr ""
2946
 
2947
- #: templates/wp-admin/settings/form-contents.php:188
2948
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2949
  msgstr ""
2950
 
@@ -2952,7 +3012,7 @@ msgstr ""
2952
  msgid "use UpdraftPlus Premium"
2953
  msgstr ""
2954
 
2955
- #: class-updraftplus.php:3831
2956
  msgid "Decryption failed. The database file is encrypted."
2957
  msgstr ""
2958
 
@@ -2964,11 +3024,11 @@ msgstr ""
2964
  msgid "An error occurred on the first %s command - aborting run"
2965
  msgstr ""
2966
 
2967
- #: addons/moredatabase.php:98 backup.php:1360
2968
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2969
  msgstr ""
2970
 
2971
- #: backup.php:1360
2972
  msgid "database connection attempt failed."
2973
  msgstr ""
2974
 
@@ -2976,162 +3036,162 @@ msgstr ""
2976
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2977
  msgstr ""
2978
 
2979
- #: addons/google-enhanced.php:75
2980
  msgid "In %s, path names are case sensitive."
2981
  msgstr ""
2982
 
2983
- #: addons/azure.php:524 addons/google-enhanced.php:73 addons/onedrive.php:989
2984
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2985
  msgstr ""
2986
 
2987
- #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2988
  #: addons/onedrive.php:989
2989
  msgid "e.g. %s"
2990
  msgstr ""
2991
 
2992
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2993
  msgid "If the folder does not already exist, then it will be created."
2994
  msgstr ""
2995
 
2996
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2997
  msgid "Enter the path of the %s folder you wish to use here."
2998
  msgstr ""
2999
 
3000
- #: addons/azure.php:517 methods/openstack2.php:133
3001
  msgid "Container"
3002
  msgstr ""
3003
 
3004
- #: methods/openstack2.php:116
3005
  msgid "Leave this blank, and a default will be chosen."
3006
  msgstr ""
3007
 
3008
- #: methods/openstack2.php:107
3009
  msgid "Tenant"
3010
  msgstr ""
3011
 
3012
- #: methods/openstack2.php:107
3013
  msgid "Follow this link for more information"
3014
  msgstr ""
3015
 
3016
- #: methods/openstack2.php:99 methods/openstack2.php:157
3017
  msgid "authentication URI"
3018
  msgstr ""
3019
 
3020
- #: methods/openstack2.php:94
3021
  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."
3022
  msgstr ""
3023
 
3024
- #: methods/addon-base.php:194 methods/addon-base.php:214
3025
  msgid "Failed to download %s"
3026
  msgstr ""
3027
 
3028
- #: methods/addon-base.php:208
3029
  msgid "Failed to download"
3030
  msgstr ""
3031
 
3032
- #: methods/addon-base.php:106
3033
  msgid "failed to list files"
3034
  msgstr ""
3035
 
3036
- #: methods/addon-base.php:75 methods/addon-base.php:80
3037
  msgid "Failed to upload %s"
3038
  msgstr ""
3039
 
3040
- #: methods/dropbox.php:612 methods/dropbox.php:614
3041
  msgid "Success:"
3042
  msgstr ""
3043
 
3044
- #: addons/onedrive.php:997 methods/dropbox.php:513
3045
  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."
3046
  msgstr ""
3047
 
3048
- #: addons/onedrive.php:995 methods/dropbox.php:510
3049
  msgid "(You appear to be already authenticated)."
3050
  msgstr ""
3051
 
3052
- #: methods/dropbox.php:505 methods/dropbox.php:511 methods/dropbox.php:513
3053
  msgid "Dropbox"
3054
  msgstr ""
3055
 
3056
- #: addons/onedrive.php:994 methods/dropbox.php:505
3057
  msgid "Authenticate with %s"
3058
  msgstr ""
3059
 
3060
- #: methods/cloudfiles.php:409
3061
  msgid "Error downloading remote file: Failed to download"
3062
  msgstr ""
3063
 
3064
- #: methods/openstack-base.php:472 methods/openstack-base.php:477
3065
  msgid "Region: %s"
3066
  msgstr ""
3067
 
3068
- #: methods/openstack-base.php:471
3069
  msgid "%s error - we accessed the container, but failed to create a file within it"
3070
  msgstr ""
3071
 
3072
- #: methods/openstack-base.php:389
3073
  msgid "The %s object was not found"
3074
  msgstr ""
3075
 
3076
- #: methods/openstack-base.php:48 methods/openstack-base.php:312
3077
- #: methods/openstack-base.php:381
3078
  msgid "Could not access %s container"
3079
  msgstr ""
3080
 
3081
- #: methods/openstack-base.php:40 methods/openstack-base.php:108
3082
- #: methods/openstack-base.php:115 methods/openstack-base.php:304
3083
- #: methods/openstack-base.php:369
3084
  msgid "%s error - failed to access the container"
3085
  msgstr ""
3086
 
3087
- #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:520
3088
- #: methods/googledrive.php:970
3089
  msgid "Account holder's name: %s."
3090
  msgstr ""
3091
 
3092
- #: methods/googledrive.php:959
3093
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3094
  msgstr ""
3095
 
3096
- #: methods/googledrive.php:950
3097
  msgid "It is an ID number internal to Google Drive"
3098
  msgstr ""
3099
 
3100
- #: methods/googledrive.php:950
3101
  msgid "<strong>This is NOT a folder name</strong>."
3102
  msgstr ""
3103
 
3104
- #: addons/google-enhanced.php:72 addons/onedrive.php:988
3105
- #: methods/googledrive.php:946 methods/googledrive.php:956
3106
  msgid "Folder"
3107
  msgstr ""
3108
 
3109
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3110
- #: methods/googledrive.php:878
3111
  msgid "%s download: failed: file not found"
3112
  msgstr ""
3113
 
3114
- #: addons/googlecloud.php:579 methods/googledrive.php:363
3115
  msgid "Name: %s."
3116
  msgstr ""
3117
 
3118
- #: methods/googledrive.php:157
3119
  msgid "Google Drive list files: failed to access parent folder"
3120
  msgstr ""
3121
 
3122
- #: methods/insufficient.php:65 methods/viaaddon-base.php:87
3123
  msgid "Your %s version: %s."
3124
  msgstr ""
3125
 
3126
- #: methods/insufficient.php:64 methods/viaaddon-base.php:86
3127
  msgid "You will need to ask your web hosting company to upgrade."
3128
  msgstr ""
3129
 
3130
- #: methods/insufficient.php:17 methods/viaaddon-base.php:16
3131
  msgid "This remote storage method (%s) requires PHP %s or later."
3132
  msgstr ""
3133
 
3134
- #: admin.php:3743
3135
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3136
  msgstr ""
3137
 
@@ -3145,7 +3205,7 @@ msgstr ""
3145
 
3146
  #: addons/migrator.php:375
3147
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3148
- #: templates/wp-admin/settings/form-contents.php:208
3149
  msgid "This feature requires %s version %s or later"
3150
  msgstr ""
3151
 
@@ -3161,7 +3221,7 @@ msgstr ""
3161
  msgid "Failed to unpack the archive"
3162
  msgstr ""
3163
 
3164
- #: class-updraftplus.php:1048
3165
  msgid "Error - failed to download the file"
3166
  msgstr ""
3167
 
@@ -3181,44 +3241,44 @@ msgstr ""
3181
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3182
  msgstr ""
3183
 
3184
- #: addons/sftp.php:425
3185
  msgid "password/key"
3186
  msgstr ""
3187
 
3188
- #: addons/azure.php:510 addons/migrator.php:2198 addons/sftp.php:376
3189
- #: admin.php:637
3190
  msgid "Key"
3191
  msgstr ""
3192
 
3193
- #: addons/sftp.php:371
3194
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3195
  msgstr ""
3196
 
3197
- #: addons/sftp.php:308
3198
  msgid "The key provided was not in a valid format, or was corrupt."
3199
  msgstr ""
3200
 
3201
- #: addons/sftp.php:47
3202
  msgid "SCP/SFTP password/key"
3203
  msgstr ""
3204
 
3205
- #: admin.php:3226
3206
  msgid "Files backup (created by %s)"
3207
  msgstr ""
3208
 
3209
- #: admin.php:3226
3210
  msgid "Files and database WordPress backup (created by %s)"
3211
  msgstr ""
3212
 
3213
- #: addons/importer.php:261 admin.php:3220 class-updraftplus.php:2514
3214
  msgid "Backup created by: %s."
3215
  msgstr ""
3216
 
3217
- #: admin.php:3189
3218
  msgid "Database (created by %s)"
3219
  msgstr ""
3220
 
3221
- #: admin.php:3183 admin.php:3222
3222
  msgid "unknown source"
3223
  msgstr ""
3224
 
@@ -3230,31 +3290,31 @@ msgstr ""
3230
  msgid "Upload backup files"
3231
  msgstr ""
3232
 
3233
- #: admin.php:1828
3234
  msgid "This backup was created by %s, and can be imported."
3235
  msgstr ""
3236
 
3237
- #: admin.php:880
3238
  msgid "Read this page for a guide to possible causes and how to fix it."
3239
  msgstr ""
3240
 
3241
- #: admin.php:880
3242
  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."
3243
  msgstr ""
3244
 
3245
- #: admin.php:602 class-updraftplus.php:2521
3246
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3247
  msgstr ""
3248
 
3249
- #: admin.php:601
3250
  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."
3251
  msgstr ""
3252
 
3253
- #: admin.php:601 admin.php:602 class-updraftplus.php:2521
3254
  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))."
3255
  msgstr ""
3256
 
3257
- #: admin.php:3223 includes/class-wpadmin-commands.php:143 restorer.php:1410
3258
  msgid "Backup created by unknown source (%s) - cannot be restored."
3259
  msgstr ""
3260
 
@@ -3266,24 +3326,24 @@ msgstr ""
3266
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3267
  msgstr ""
3268
 
3269
- #: methods/dropbox.php:300
3270
  msgid "%s returned an unexpected HTTP response: %s"
3271
  msgstr ""
3272
 
3273
- #: addons/sftp.php:885
3274
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3275
  msgstr ""
3276
 
3277
- #: methods/cloudfiles.php:234 methods/dropbox.php:281
3278
- #: methods/openstack-base.php:103
3279
  msgid "No settings were found"
3280
  msgstr ""
3281
 
3282
- #: class-updraftplus.php:2642
3283
  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."
3284
  msgstr ""
3285
 
3286
- #: admin.php:568
3287
  msgid "Rescanning remote and local storage for backup sets..."
3288
  msgstr ""
3289
 
@@ -3300,24 +3360,24 @@ msgstr ""
3300
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3301
  msgstr ""
3302
 
3303
- #: addons/morefiles.php:428
3304
  msgid "No backup of location: there was nothing found to back up"
3305
  msgstr ""
3306
 
3307
- #: addons/moredatabase.php:234 addons/morefiles.php:224
3308
- #: addons/morefiles.php:245
3309
  msgid "Remove"
3310
  msgstr ""
3311
 
3312
- #: methods/s3.php:814
3313
  msgid "Other %s FAQs."
3314
  msgstr ""
3315
 
3316
- #: templates/wp-admin/settings/form-contents.php:321
3317
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3318
  msgstr ""
3319
 
3320
- #: addons/morefiles.php:382 admin.php:2942
3321
  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."
3322
  msgstr ""
3323
 
@@ -3325,23 +3385,23 @@ msgstr ""
3325
  msgid "Custom content type manager plugin data detected: clearing option cache"
3326
  msgstr ""
3327
 
3328
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1441
3329
  msgid "Your hosting company must enable these functions before %s can work."
3330
  msgstr ""
3331
 
3332
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1440
3333
  msgid "Your web server's PHP installation has these functions disabled: %s."
3334
  msgstr ""
3335
 
3336
- #: methods/ftp.php:281
3337
  msgid "encrypted FTP (explicit encryption)"
3338
  msgstr ""
3339
 
3340
- #: methods/ftp.php:280
3341
  msgid "encrypted FTP (implicit encryption)"
3342
  msgstr ""
3343
 
3344
- #: methods/ftp.php:279
3345
  msgid "regular non-encrypted FTP"
3346
  msgstr ""
3347
 
@@ -3349,7 +3409,7 @@ msgstr ""
3349
  msgid "Backup created by:"
3350
  msgstr ""
3351
 
3352
- #: udaddons/options.php:482
3353
  msgid "Available to claim on this site"
3354
  msgstr ""
3355
 
@@ -3397,15 +3457,15 @@ msgstr ""
3397
  msgid "Dismiss from main dashboard (for %s weeks)"
3398
  msgstr ""
3399
 
3400
- #: class-updraftplus.php:4121
3401
  msgid "The attempt to undo the double-compression succeeded."
3402
  msgstr ""
3403
 
3404
- #: class-updraftplus.php:4098 class-updraftplus.php:4119
3405
  msgid "The attempt to undo the double-compression failed."
3406
  msgstr ""
3407
 
3408
- #: class-updraftplus.php:4091
3409
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3410
  msgstr ""
3411
 
@@ -3413,15 +3473,15 @@ msgstr ""
3413
  msgid "Constants"
3414
  msgstr ""
3415
 
3416
- #: backup.php:1595
3417
  msgid "Failed to open database file for reading:"
3418
  msgstr ""
3419
 
3420
- #: backup.php:1408
3421
  msgid "No database tables found"
3422
  msgstr ""
3423
 
3424
- #: backup.php:1406
3425
  msgid "please wait for the rescheduled attempt"
3426
  msgstr ""
3427
 
@@ -3449,11 +3509,11 @@ msgstr ""
3449
  msgid "Errors occurred:"
3450
  msgstr ""
3451
 
3452
- #: admin.php:3418
3453
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3454
  msgstr ""
3455
 
3456
- #: templates/wp-admin/settings/form-contents.php:365
3457
  msgid "See this FAQ also."
3458
  msgstr ""
3459
 
@@ -3473,7 +3533,7 @@ msgstr ""
3473
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3474
  msgstr ""
3475
 
3476
- #: admin.php:855 class-updraftplus.php:597
3477
  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)"
3478
  msgstr ""
3479
 
@@ -3489,20 +3549,20 @@ msgstr ""
3489
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3490
  msgstr ""
3491
 
3492
- #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
3493
  #: includes/ftp.class.php:47
3494
  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."
3495
  msgstr ""
3496
 
3497
- #: admin.php:3751
3498
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3499
  msgstr ""
3500
 
3501
- #: admin.php:2006 admin.php:2016
3502
  msgid "Restore failed..."
3503
  msgstr ""
3504
 
3505
- #: addons/moredatabase.php:130 admin.php:1227
3506
  msgid "Messages:"
3507
  msgstr ""
3508
 
@@ -3596,98 +3656,98 @@ msgstr ""
3596
  msgid "Rackspace Cloud Files, enhanced"
3597
  msgstr ""
3598
 
3599
- #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:142
3600
  msgid "Cloud Files Container"
3601
  msgstr ""
3602
 
3603
- #: methods/cloudfiles-new.php:137
3604
  msgid "Cloud Files API Key"
3605
  msgstr ""
3606
 
3607
- #: methods/cloudfiles-new.php:132
3608
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3609
  msgstr ""
3610
 
3611
- #: methods/cloudfiles-new.php:129
3612
  msgid "Cloud Files Username"
3613
  msgstr ""
3614
 
3615
- #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:115
3616
  msgid "London (LON)"
3617
  msgstr ""
3618
 
3619
- #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:114
3620
  msgid "Hong Kong (HKG)"
3621
  msgstr ""
3622
 
3623
- #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:113
3624
  msgid "Northern Virginia (IAD)"
3625
  msgstr ""
3626
 
3627
- #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:112
3628
  msgid "Chicago (ORD)"
3629
  msgstr ""
3630
 
3631
- #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:111
3632
  msgid "Sydney (SYD)"
3633
  msgstr ""
3634
 
3635
- #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:110
3636
  msgid "Dallas (DFW) (default)"
3637
  msgstr ""
3638
 
3639
- #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:105
3640
  msgid "Cloud Files Storage Region"
3641
  msgstr ""
3642
 
3643
- #: methods/cloudfiles-new.php:97
3644
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3645
  msgstr ""
3646
 
3647
- #: methods/cloudfiles-new.php:95
3648
  msgid "US or UK-based Rackspace Account"
3649
  msgstr ""
3650
 
3651
- #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:95
3652
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3653
  msgstr ""
3654
 
3655
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3656
- #: methods/cloudfiles-new.php:39 methods/openstack-base.php:431
3657
- #: methods/openstack-base.php:433 methods/openstack-base.php:453
3658
  #: methods/openstack2.php:25
3659
  msgid "Authorisation failed (check your credentials)"
3660
  msgstr ""
3661
 
3662
- #: methods/updraftvault.php:525 udaddons/options.php:265
3663
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3664
  msgstr ""
3665
 
3666
- #: admin.php:615 central/bootstrap.php:513
3667
  msgid "Create"
3668
  msgstr ""
3669
 
3670
- #: admin.php:577
3671
  msgid "Trying..."
3672
  msgstr ""
3673
 
3674
- #: admin.php:576
3675
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3676
  msgstr ""
3677
 
3678
- #: class-updraftplus.php:1493
3679
  msgid "(when decrypted)"
3680
  msgstr ""
3681
 
3682
- #: admin.php:587 admin.php:3693
3683
  msgid "Error data:"
3684
  msgstr ""
3685
 
3686
- #: admin.php:3369
3687
  msgid "Backup does not exist in the backup history"
3688
  msgstr ""
3689
 
3690
- #: admin.php:2375
3691
  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."
3692
  msgstr ""
3693
 
@@ -3739,11 +3799,11 @@ msgstr ""
3739
  msgid "Email reports"
3740
  msgstr ""
3741
 
3742
- #: class-updraftplus.php:1489 class-updraftplus.php:1494
3743
  msgid "%s checksum: %s"
3744
  msgstr ""
3745
 
3746
- #: class-updraftplus.php:1462 class-updraftplus.php:1464
3747
  msgid "files: %s"
3748
  msgstr ""
3749
 
@@ -3763,7 +3823,7 @@ msgstr ""
3763
  msgid "Debugging information"
3764
  msgstr ""
3765
 
3766
- #: addons/reporting.php:194 admin.php:3129
3767
  msgid "Uploaded to:"
3768
  msgstr ""
3769
 
@@ -3783,7 +3843,7 @@ msgstr ""
3783
  msgid "Errors / warnings:"
3784
  msgstr ""
3785
 
3786
- #: addons/morefiles.php:62 addons/morefiles.php:63 addons/reporting.php:155
3787
  msgid "Contains:"
3788
  msgstr ""
3789
 
@@ -3803,166 +3863,166 @@ msgstr ""
3803
  msgid "%d errors, %d warnings"
3804
  msgstr ""
3805
 
3806
- #: addons/onedrive.php:717 methods/dropbox.php:596
3807
  msgid "%s authentication"
3808
  msgstr ""
3809
 
3810
- #: addons/onedrive.php:717 class-updraftplus.php:302 methods/dropbox.php:569
3811
- #: methods/dropbox.php:596 methods/dropbox.php:609 methods/dropbox.php:740
3812
  msgid "%s error: %s"
3813
  msgstr ""
3814
 
3815
- #: addons/googlecloud.php:815 methods/dropbox.php:480
3816
  msgid "%s logo"
3817
  msgstr ""
3818
 
3819
- #: methods/dropbox.php:214
3820
  msgid "%s did not return the expected response - check your log file for more details"
3821
  msgstr ""
3822
 
3823
- #: methods/s3.php:279
3824
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3825
  msgstr ""
3826
 
3827
- #: methods/email.php:74
3828
  msgid "For more options, use the \"%s\" add-on."
3829
  msgstr ""
3830
 
3831
- #: methods/email.php:73
3832
  msgid "Your site's admin email address (%s) will be used."
3833
  msgstr ""
3834
 
3835
- #: admin.php:624 methods/updraftvault.php:276 methods/updraftvault.php:321
3836
- #: udaddons/options.php:244
3837
  msgid "Connect"
3838
  msgstr ""
3839
 
3840
- #: templates/wp-admin/settings/form-contents.php:289
3841
  msgid "For more reporting features, use the Reporting add-on."
3842
  msgstr ""
3843
 
3844
- #: class-updraftplus.php:3901
3845
  msgid "(version: %s)"
3846
  msgstr ""
3847
 
3848
- #: addons/reporting.php:438 admin.php:566
3849
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3850
  msgstr ""
3851
 
3852
- #: addons/reporting.php:438 admin.php:565
3853
  msgid "When the Email storage method is enabled, also send the entire backup"
3854
  msgstr ""
3855
 
3856
- #: addons/reporting.php:153 backup.php:933
3857
  msgid "Latest status:"
3858
  msgstr ""
3859
 
3860
- #: backup.php:932
3861
  msgid "Backup contains:"
3862
  msgstr ""
3863
 
3864
- #: backup.php:889
3865
  msgid "Backed up: %s"
3866
  msgstr ""
3867
 
3868
- #: addons/reporting.php:236 backup.php:883
3869
  msgid "The log file has been attached to this email."
3870
  msgstr ""
3871
 
3872
- #: backup.php:847
3873
  msgid "Unknown/unexpected error - please raise a support request"
3874
  msgstr ""
3875
 
3876
- #: backup.php:844
3877
  msgid "Database only (files were not part of this particular schedule)"
3878
  msgstr ""
3879
 
3880
- #: backup.php:844
3881
  msgid "Database (files backup has not completed)"
3882
  msgstr ""
3883
 
3884
- #: backup.php:841
3885
  msgid "Files only (database was not part of this particular schedule)"
3886
  msgstr ""
3887
 
3888
- #: backup.php:841
3889
  msgid "Files (database backup has not completed)"
3890
  msgstr ""
3891
 
3892
- #: admin.php:229 backup.php:839
3893
  msgid "Files and database"
3894
  msgstr ""
3895
 
3896
- #: options.php:186
3897
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3898
  msgstr ""
3899
 
3900
- #: options.php:186
3901
  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>."
3902
  msgstr ""
3903
 
3904
- #: options.php:186
3905
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3906
  msgstr ""
3907
 
3908
- #: options.php:186
3909
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3910
  msgstr ""
3911
 
3912
- #: options.php:186
3913
  msgid "UpdraftPlus warning:"
3914
  msgstr ""
3915
 
3916
- #: udaddons/options.php:488
3917
  msgid "(or connect using the form on this page if you have already purchased it)"
3918
  msgstr ""
3919
 
3920
- #: udaddons/options.php:474
3921
  msgid "please follow this link to update the plugin in order to activate it"
3922
  msgstr ""
3923
 
3924
- #: udaddons/options.php:471
3925
  msgid "please follow this link to update the plugin in order to get it"
3926
  msgstr ""
3927
 
3928
- #: udaddons/options.php:461 udaddons/options.php:463
3929
  msgid "latest"
3930
  msgstr ""
3931
 
3932
- #: udaddons/options.php:459
3933
  msgid "Your version: %s"
3934
  msgstr ""
3935
 
3936
- #: udaddons/options.php:457
3937
  msgid "You've got it"
3938
  msgstr ""
3939
 
3940
- #: udaddons/options.php:423
3941
  msgid "UpdraftPlus Support"
3942
  msgstr ""
3943
 
3944
- #: udaddons/options.php:381
3945
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3946
  msgstr ""
3947
 
3948
- #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3949
  msgid "UpdraftPlus Addons"
3950
  msgstr ""
3951
 
3952
- #: udaddons/options.php:94
3953
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
3954
  msgstr ""
3955
 
3956
- #: methods/updraftvault.php:598 methods/updraftvault.php:616
3957
  #: udaddons/updraftplus-addons.php:795
3958
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3959
  msgstr ""
3960
 
3961
- #: methods/updraftvault.php:612 udaddons/updraftplus-addons.php:792
3962
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3963
  msgstr ""
3964
 
3965
- #: methods/updraftvault.php:571 udaddons/updraftplus-addons.php:752
3966
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3967
  msgstr ""
3968
 
@@ -3974,16 +4034,16 @@ msgstr ""
3974
  msgid "We failed to successfully connect to UpdraftPlus.Com"
3975
  msgstr ""
3976
 
3977
- #: methods/email.php:74 templates/wp-admin/settings/form-contents.php:270
3978
  #: templates/wp-admin/settings/tab-addons.php:200
3979
  msgid "Reporting"
3980
  msgstr ""
3981
 
3982
- #: admin.php:4104
3983
  msgid "Options (raw)"
3984
  msgstr ""
3985
 
3986
- #: addons/reporting.php:436 admin.php:564
3987
  msgid "Send a report only when there are warnings/errors"
3988
  msgstr ""
3989
 
@@ -3995,147 +4055,147 @@ msgstr ""
3995
  msgid "You should check the file ownerships and permissions in your WordPress installation"
3996
  msgstr ""
3997
 
3998
- #: templates/wp-admin/settings/form-contents.php:174
3999
  msgid "See also the \"More Files\" add-on from our shop."
4000
  msgstr ""
4001
 
4002
- #: backup.php:2987 class-updraftplus.php:610
4003
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4004
  msgstr ""
4005
 
4006
- #: class-updraftplus.php:594
4007
  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)"
4008
  msgstr ""
4009
 
4010
- #: udaddons/options.php:547
4011
  msgid "Manage Addons"
4012
  msgstr ""
4013
 
4014
- #: udaddons/options.php:489
4015
  msgid "Buy It"
4016
  msgstr ""
4017
 
4018
- #: udaddons/options.php:488
4019
  msgid "Get it from the UpdraftPlus.Com Store"
4020
  msgstr ""
4021
 
4022
- #: udaddons/options.php:482 udaddons/options.php:484
4023
  msgid "activate it on this site"
4024
  msgstr ""
4025
 
4026
- #: udaddons/options.php:484
4027
  msgid "You have an inactive purchase"
4028
  msgstr ""
4029
 
4030
- #: udaddons/options.php:474
4031
  msgid "Assigned to this site"
4032
  msgstr ""
4033
 
4034
- #: udaddons/options.php:471
4035
  msgid "Available for this site (via your all-addons purchase)"
4036
  msgstr ""
4037
 
4038
- #: udaddons/options.php:465
4039
  msgid "(apparently a pre-release or withdrawn release)"
4040
  msgstr ""
4041
 
4042
- #: udaddons/options.php:425
4043
  msgid "Go here"
4044
  msgstr ""
4045
 
4046
- #: udaddons/options.php:425
4047
  msgid "Need to get support?"
4048
  msgstr ""
4049
 
4050
- #: udaddons/options.php:407
4051
  msgid "An error occurred when trying to retrieve your add-ons."
4052
  msgstr ""
4053
 
4054
- #: udaddons/options.php:340
4055
  msgid "An unknown response was received. Response was:"
4056
  msgstr ""
4057
 
4058
- #: udaddons/options.php:339
4059
  msgid "Claim not granted - your account login details were wrong"
4060
  msgstr ""
4061
 
4062
- #: udaddons/options.php:337
4063
  msgid "Please wait whilst we make the claim..."
4064
  msgstr ""
4065
 
4066
- #: udaddons/options.php:290
4067
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4068
  msgstr ""
4069
 
4070
- #: udaddons/options.php:281
4071
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4072
  msgstr ""
4073
 
4074
- #: udaddons/options.php:272
4075
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4076
  msgstr ""
4077
 
4078
- #: udaddons/options.php:271
4079
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4080
  msgstr ""
4081
 
4082
- #: udaddons/options.php:242
4083
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4084
  msgstr ""
4085
 
4086
- #: udaddons/options.php:183
4087
  msgid "Forgotten your details?"
4088
  msgstr ""
4089
 
4090
- #: udaddons/options.php:172
4091
  msgid "Not yet got an account (it's free)? Go get one!"
4092
  msgstr ""
4093
 
4094
- #: udaddons/options.php:141
4095
  msgid "Connect with your UpdraftPlus.Com account"
4096
  msgstr ""
4097
 
4098
- #: udaddons/options.php:120
4099
  msgid "Your web server's version of PHP is too old ("
4100
  msgstr ""
4101
 
4102
- #: udaddons/options.php:114
4103
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4104
  msgstr ""
4105
 
4106
- #: udaddons/options.php:113
4107
  msgid "Go here to begin installing it."
4108
  msgstr ""
4109
 
4110
- #: udaddons/options.php:113
4111
  msgid "UpdraftPlus is not yet installed."
4112
  msgstr ""
4113
 
4114
- #: udaddons/options.php:110
4115
  msgid "Go here to activate it."
4116
  msgstr ""
4117
 
4118
- #: udaddons/options.php:109
4119
  msgid "UpdraftPlus is not yet activated."
4120
  msgstr ""
4121
 
4122
- #: udaddons/options.php:100 udaddons/options.php:102
4123
  msgid "Go here to connect."
4124
  msgstr ""
4125
 
4126
- #: udaddons/options.php:100
4127
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4128
  msgstr ""
4129
 
4130
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4131
  msgid "Without it, encryption will be a lot slower."
4132
  msgstr ""
4133
 
4134
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4135
  msgid "Your web-server does not have the %s module installed."
4136
  msgstr ""
4137
 
4138
- #: addons/googlecloud.php:898 methods/googledrive.php:966
4139
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4140
  msgstr ""
4141
 
@@ -4143,15 +4203,15 @@ msgstr ""
4143
  msgid "Drop backup files here"
4144
  msgstr ""
4145
 
4146
- #: admin.php:575
4147
  msgid "The web server returned an error code (try again, or check your web server logs)"
4148
  msgstr ""
4149
 
4150
- #: admin.php:573
4151
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4152
  msgstr ""
4153
 
4154
- #: admin.php:570
4155
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4156
  msgstr ""
4157
 
@@ -4159,7 +4219,7 @@ msgstr ""
4159
  msgid "Site home:"
4160
  msgstr ""
4161
 
4162
- #: addons/morestorage.php:78
4163
  msgid "Remote Storage Options"
4164
  msgstr ""
4165
 
@@ -4171,7 +4231,7 @@ msgstr ""
4171
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4172
  msgstr ""
4173
 
4174
- #: addons/azure.php:351 methods/stream-base.php:125 methods/stream-base.php:130
4175
  msgid "Upload failed"
4176
  msgstr ""
4177
 
@@ -4179,11 +4239,11 @@ msgstr ""
4179
  msgid "You can send a backup to more than one destination with an add-on."
4180
  msgstr ""
4181
 
4182
- #: admin.php:2593
4183
  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."
4184
  msgstr ""
4185
 
4186
- #: admin.php:2491
4187
  msgid "(%s%%, file %s of %s)"
4188
  msgstr ""
4189
 
@@ -4192,124 +4252,124 @@ msgstr ""
4192
  msgid "Read more about how this works..."
4193
  msgstr ""
4194
 
4195
- #: addons/sftp.php:485
4196
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4197
  msgstr ""
4198
 
4199
- #: addons/sftp.php:483
4200
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4201
  msgstr ""
4202
 
4203
- #: addons/sftp.php:402
4204
  msgid "Use SCP instead of SFTP"
4205
  msgstr ""
4206
 
4207
- #: addons/sftp.php:46
4208
  msgid "SCP/SFTP user setting"
4209
  msgstr ""
4210
 
4211
- #: addons/sftp.php:45
4212
  msgid "SCP/SFTP host setting"
4213
  msgstr ""
4214
 
4215
- #: methods/email.php:58
4216
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4217
  msgstr ""
4218
 
4219
- #: methods/email.php:45
4220
  msgid "Backup is of: %s."
4221
  msgstr ""
4222
 
4223
- #: admin.php:662
4224
  msgid "%s settings test result:"
4225
  msgstr ""
4226
 
4227
- #: admin.php:3287 admin.php:3289
4228
  msgid "(Not finished)"
4229
  msgstr ""
4230
 
4231
- #: admin.php:3289
4232
  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."
4233
  msgstr ""
4234
 
4235
- #: templates/wp-admin/settings/form-contents.php:348
4236
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4237
  msgstr ""
4238
 
4239
- #: templates/wp-admin/settings/form-contents.php:348
4240
  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)."
4241
  msgstr ""
4242
 
4243
- #: admin.php:2588
4244
  msgid "Job ID: %s"
4245
  msgstr ""
4246
 
4247
- #: admin.php:2573
4248
  msgid "last activity: %ss ago"
4249
  msgstr ""
4250
 
4251
- #: admin.php:2572
4252
  msgid "next resumption: %d (after %ss)"
4253
  msgstr ""
4254
 
4255
- #: admin.php:2555 central/bootstrap.php:405 central/bootstrap.php:412
4256
- #: methods/updraftvault.php:356 methods/updraftvault.php:436
4257
  msgid "Unknown"
4258
  msgstr ""
4259
 
4260
- #: admin.php:2505
4261
  msgid "Backup finished"
4262
  msgstr ""
4263
 
4264
- #: admin.php:2500
4265
  msgid "Waiting until scheduled time to retry because of errors"
4266
  msgstr ""
4267
 
4268
- #: admin.php:2496
4269
  msgid "Pruning old backup sets"
4270
  msgstr ""
4271
 
4272
- #: admin.php:2484
4273
  msgid "Uploading files to remote storage"
4274
  msgstr ""
4275
 
4276
- #: admin.php:2553
4277
  msgid "Encrypted database"
4278
  msgstr ""
4279
 
4280
- #: admin.php:2545
4281
  msgid "Encrypting database"
4282
  msgstr ""
4283
 
4284
- #: admin.php:2519
4285
  msgid "Created database backup"
4286
  msgstr ""
4287
 
4288
- #: admin.php:2532
4289
  msgid "table: %s"
4290
  msgstr ""
4291
 
4292
- #: admin.php:2530
4293
  msgid "Creating database backup"
4294
  msgstr ""
4295
 
4296
- #: admin.php:2478
4297
  msgid "Created file backup zips"
4298
  msgstr ""
4299
 
4300
- #: admin.php:2465
4301
  msgid "Creating file backup zips"
4302
  msgstr ""
4303
 
4304
- #: admin.php:2460
4305
  msgid "Backup begun"
4306
  msgstr ""
4307
 
4308
- #: admin.php:2303
4309
  msgid "Backups in progress:"
4310
  msgstr ""
4311
 
4312
- #: admin.php:859
4313
  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."
4314
  msgstr ""
4315
 
@@ -4325,26 +4385,26 @@ msgstr ""
4325
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4326
  msgstr ""
4327
 
4328
- #: class-updraftplus.php:2739
4329
  msgid "The backup has not finished; a resumption is scheduled"
4330
  msgstr ""
4331
 
4332
- #: class-updraftplus.php:1734
4333
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4334
  msgstr ""
4335
 
4336
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4337
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4338
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4339
- #: methods/googledrive.php:244
4340
  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)."
4341
  msgstr ""
4342
 
4343
- #: admin.php:2126
4344
  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)."
4345
  msgstr ""
4346
 
4347
- #: addons/autobackup.php:1006 admin.php:617
4348
  msgid "Proceed with update"
4349
  msgstr ""
4350
 
@@ -4397,19 +4457,19 @@ msgstr ""
4397
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4398
  msgstr ""
4399
 
4400
- #: addons/morefiles.php:170 addons/morefiles.php:171
4401
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4402
  msgstr ""
4403
 
4404
- #: addons/morefiles.php:170 addons/morefiles.php:171
4405
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4406
  msgstr ""
4407
 
4408
- #: addons/morefiles.php:123
4409
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4410
  msgstr ""
4411
 
4412
- #: addons/morefiles.php:113
4413
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4414
  msgstr ""
4415
 
@@ -4422,31 +4482,31 @@ msgstr ""
4422
  msgid "Support"
4423
  msgstr "সহায়তা"
4424
 
4425
- #: class-updraftplus.php:4054
4426
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4427
  msgstr ""
4428
 
4429
- #: class-updraftplus.php:4046
4430
  msgid "This database backup is missing core WordPress tables: %s"
4431
  msgstr ""
4432
 
4433
- #: class-updraftplus.php:3934
4434
  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."
4435
  msgstr ""
4436
 
4437
- #: class-updraftplus.php:3850
4438
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4439
  msgstr ""
4440
 
4441
- #: addons/autobackup.php:556 admin.php:827
4442
  msgid "Update Theme"
4443
  msgstr ""
4444
 
4445
- #: addons/autobackup.php:505 admin.php:823
4446
  msgid "Update Plugin"
4447
  msgstr ""
4448
 
4449
- #: addons/autobackup.php:985 admin.php:696 includes/updraftplus-notices.php:171
4450
  msgid "Be safe with an automatic backup"
4451
  msgstr ""
4452
 
@@ -4454,71 +4514,71 @@ msgstr ""
4454
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4455
  msgstr ""
4456
 
4457
- #: admin.php:2078
4458
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4459
  msgstr ""
4460
 
4461
- #: admin.php:611
4462
  msgid "The file was uploaded."
4463
  msgstr ""
4464
 
4465
- #: admin.php:610
4466
  msgid "Unknown server response status:"
4467
  msgstr ""
4468
 
4469
- #: admin.php:609
4470
  msgid "Unknown server response:"
4471
  msgstr ""
4472
 
4473
- #: admin.php:608
4474
  msgid "This decryption key will be attempted:"
4475
  msgstr ""
4476
 
4477
- #: admin.php:607
4478
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4479
  msgstr ""
4480
 
4481
- #: admin.php:606
4482
  msgid "Upload error"
4483
  msgstr ""
4484
 
4485
- #: admin.php:605
4486
  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)."
4487
  msgstr ""
4488
 
4489
- #: admin.php:604
4490
  msgid "Upload error:"
4491
  msgstr ""
4492
 
4493
- #: admin.php:603
4494
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4495
  msgstr ""
4496
 
4497
- #: admin.php:594
4498
  msgid "Download to your computer"
4499
  msgstr ""
4500
 
4501
- #: admin.php:593
4502
  msgid "Delete from your web server"
4503
  msgstr ""
4504
 
4505
- #: methods/s3.php:774
4506
  msgid "Examples of S3-compatible storage providers:"
4507
  msgstr ""
4508
 
4509
- #: admin.php:3643
4510
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4511
  msgstr ""
4512
 
4513
- #: admin.php:3260
4514
  msgid "You appear to be missing one or more archives from this multi-archive set."
4515
  msgstr ""
4516
 
4517
- #: admin.php:3257
4518
  msgid "(%d archive(s) in set)."
4519
  msgstr ""
4520
 
4521
- #: templates/wp-admin/settings/form-contents.php:325
4522
  msgid "Split archives every:"
4523
  msgstr ""
4524
 
@@ -4526,15 +4586,15 @@ msgstr ""
4526
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4527
  msgstr ""
4528
 
4529
- #: admin.php:584
4530
  msgid "Warnings:"
4531
  msgstr ""
4532
 
4533
- #: admin.php:583
4534
  msgid "Error: the server sent an empty response."
4535
  msgstr ""
4536
 
4537
- #: admin.php:1839
4538
  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?"
4539
  msgstr ""
4540
 
@@ -4570,7 +4630,7 @@ msgstr ""
4570
  msgid "No such backup set exists"
4571
  msgstr ""
4572
 
4573
- #: admin.php:1115
4574
  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"
4575
  msgstr ""
4576
 
@@ -4586,19 +4646,19 @@ msgstr ""
4586
  msgid "Moving unpacked backup into place..."
4587
  msgstr ""
4588
 
4589
- #: backup.php:2691 backup.php:2947
4590
  msgid "Failed to open the zip file (%s) - %s"
4591
  msgstr ""
4592
 
4593
- #: addons/morefiles.php:101
4594
  msgid "WordPress root directory server path: %s"
4595
  msgstr ""
4596
 
4597
- #: methods/s3.php:819
4598
  msgid "%s end-point"
4599
  msgstr ""
4600
 
4601
- #: methods/s3.php:781
4602
  msgid "... and many more!"
4603
  msgstr ""
4604
 
@@ -4606,31 +4666,31 @@ msgstr ""
4606
  msgid "S3 (Compatible)"
4607
  msgstr ""
4608
 
4609
- #: admin.php:3564
4610
  msgid "File is not locally present - needs retrieving from remote storage"
4611
  msgstr ""
4612
 
4613
- #: admin.php:3551
4614
  msgid "Looking for %s archive: file name: %s"
4615
  msgstr ""
4616
 
4617
- #: admin.php:3512
4618
  msgid "Final checks"
4619
  msgstr ""
4620
 
4621
- #: templates/wp-admin/settings/form-contents.php:331
4622
  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)."
4623
  msgstr ""
4624
 
4625
- #: templates/wp-admin/settings/form-contents.php:215
4626
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4627
  msgstr ""
4628
 
4629
- #: admin.php:2931
4630
  msgid "Your wp-content directory server path: %s"
4631
  msgstr ""
4632
 
4633
- #: admin.php:600
4634
  msgid "Raw backup history"
4635
  msgstr ""
4636
 
@@ -4638,11 +4698,11 @@ msgstr ""
4638
  msgid "Show raw backup and file list"
4639
  msgstr ""
4640
 
4641
- #: admin.php:582
4642
  msgid "Processing files - please wait..."
4643
  msgstr ""
4644
 
4645
- #: admin.php:3695 templates/wp-admin/settings/downloading-and-restoring.php:29
4646
  msgid "Please consult this FAQ for help on what to do about it."
4647
  msgstr ""
4648
 
@@ -4650,11 +4710,11 @@ msgstr ""
4650
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4651
  msgstr ""
4652
 
4653
- #: class-updraftplus.php:3858
4654
  msgid "Failed to open database file."
4655
  msgstr ""
4656
 
4657
- #: admin.php:4074
4658
  msgid "Known backups (raw)"
4659
  msgstr ""
4660
 
@@ -4678,21 +4738,21 @@ msgstr ""
4678
  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."
4679
  msgstr ""
4680
 
4681
- #: admin.php:3584
4682
  msgid "file is size:"
4683
  msgstr ""
4684
 
4685
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4686
- #: addons/migrator.php:369 admin.php:859 admin.php:2083 backup.php:2994
4687
  #: updraftplus.php:147
4688
  msgid "Go here for more information."
4689
  msgstr ""
4690
 
4691
- #: admin.php:581
4692
  msgid "Some files are still downloading or being processed - please wait."
4693
  msgstr ""
4694
 
4695
- #: class-updraftplus.php:3906 class-updraftplus.php:3924
4696
  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."
4697
  msgstr ""
4698
 
@@ -4704,81 +4764,82 @@ msgstr ""
4704
  msgid "Enter in format HH:MM (e.g. 14:22)."
4705
  msgstr ""
4706
 
4707
- #: methods/ftp.php:111
4708
  msgid "%s upload failed"
4709
  msgstr ""
4710
 
4711
- #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4712
  msgid "%s login failure"
4713
  msgstr ""
4714
 
4715
- #: methods/dropbox.php:425
4716
  msgid "You do not appear to be authenticated with %s"
4717
  msgstr ""
4718
 
4719
- #: methods/dropbox.php:392
4720
  msgid "Failed to access %s when deleting (see log file for more)"
4721
  msgstr ""
4722
 
4723
- #: methods/dropbox.php:384
4724
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4725
  msgstr ""
4726
 
4727
- #: methods/dropbox.php:119
4728
  msgid "Dropbox error: %s (see log file for more)"
4729
  msgstr ""
4730
 
4731
- #: methods/cloudfiles.php:422
4732
  msgid "Error - failed to download the file from %s"
4733
  msgstr ""
4734
 
4735
- #: methods/cloudfiles.php:418
4736
  msgid "Error - no such file exists at %s"
4737
  msgstr ""
4738
 
4739
- #: addons/azure.php:217 methods/addon-base.php:208 methods/cloudfiles.php:392
4740
- #: methods/cloudfiles.php:409 methods/googledrive.php:838
4741
- #: methods/openstack-base.php:403 methods/stream-base.php:266
4742
- #: methods/stream-base.php:273 methods/stream-base.php:286
 
4743
  msgid "%s Error"
4744
  msgstr ""
4745
 
4746
- #: methods/cloudfiles.php:219 methods/openstack-base.php:78
4747
  msgid "%s error - failed to upload file"
4748
  msgstr ""
4749
 
4750
- #: class-updraftplus.php:940 methods/cloudfiles.php:211
4751
  msgid "%s error - failed to re-assemble chunks"
4752
  msgstr ""
4753
 
4754
- #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4755
- #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4756
- #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4757
- #: methods/openstack-base.php:36 methods/openstack-base.php:300
4758
- #: methods/openstack-base.php:365 methods/openstack-base.php:437
4759
- #: methods/openstack-base.php:440 methods/openstack-base.php:457
4760
- #: methods/openstack-base.php:462
4761
  msgid "%s authentication failed"
4762
  msgstr ""
4763
 
4764
- #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1784
4765
- #: admin.php:1831 admin.php:1839 class-updraftplus.php:725
4766
- #: class-updraftplus.php:731 class-updraftplus.php:3829
4767
- #: class-updraftplus.php:3831 class-updraftplus.php:3964
4768
- #: class-updraftplus.php:3999 methods/googledrive.php:304 restorer.php:944
4769
  msgid "Error: %s"
4770
  msgstr ""
4771
 
4772
- #: admin.php:2868
4773
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4774
  msgstr ""
4775
 
4776
- #: admin.php:2866
4777
  msgid "Backup directory specified does <b>not</b> exist."
4778
  msgstr ""
4779
 
4780
- #: admin.php:2600 admin.php:2822 class-updraftplus.php:3906
4781
- #: class-updraftplus.php:3924
4782
  msgid "Warning: %s"
4783
  msgstr ""
4784
 
@@ -4786,31 +4847,31 @@ msgstr ""
4786
  msgid "Last backup job run:"
4787
  msgstr ""
4788
 
4789
- #: backup.php:2713
4790
  msgid "A very large file was encountered: %s (size: %s Mb)"
4791
  msgstr ""
4792
 
4793
- #: backup.php:2087 backup.php:2119
4794
  msgid "%s: unreadable file - could not be backed up"
4795
  msgstr ""
4796
 
4797
- #: backup.php:1495
4798
  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"
4799
  msgstr ""
4800
 
4801
- #: backup.php:1614
4802
  msgid "An error occurred whilst closing the final database file"
4803
  msgstr ""
4804
 
4805
- #: backup.php:874
4806
  msgid "Warnings encountered:"
4807
  msgstr ""
4808
 
4809
- #: class-updraftplus.php:2727
4810
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4811
  msgstr ""
4812
 
4813
- #: class-updraftplus.php:623
4814
  msgid "Your free disk space is very low - only %s Mb remain"
4815
  msgstr ""
4816
 
@@ -4842,23 +4903,23 @@ msgstr ""
4842
  msgid "Processed plugin:"
4843
  msgstr ""
4844
 
4845
- #: addons/sftp.php:74
4846
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4847
  msgstr ""
4848
 
4849
- #: addons/sftp.php:38
4850
  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."
4851
  msgstr ""
4852
 
4853
- #: methods/s3.php:795
4854
  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."
4855
  msgstr ""
4856
 
4857
- #: methods/s3.php:1033
4858
  msgid "Please check your access credentials."
4859
  msgstr ""
4860
 
4861
- #: addons/s3-enhanced.php:172 methods/s3.php:1011
4862
  msgid "The error reported by %s was:"
4863
  msgstr ""
4864
 
@@ -4874,7 +4935,7 @@ msgstr ""
4874
  msgid "Cannot create new tables, so skipping this command (%s)"
4875
  msgstr ""
4876
 
4877
- #: class-updraftplus.php:3975 restorer.php:1648
4878
  msgid "Site information:"
4879
  msgstr ""
4880
 
@@ -4882,38 +4943,38 @@ msgstr ""
4882
  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."
4883
  msgstr ""
4884
 
4885
- #: addons/migrator.php:325 admin.php:2078 class-updraftplus.php:3968
4886
  #: restorer.php:1970
4887
  msgid "Warning:"
4888
  msgstr ""
4889
 
4890
- #: class-updraftplus.php:3960 restorer.php:162
4891
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4892
  msgstr ""
4893
 
4894
- #: admin.php:3539
4895
  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."
4896
  msgstr ""
4897
 
4898
- #: admin.php:2987 methods/updraftvault.php:260
4899
  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."
4900
  msgstr ""
4901
 
4902
- #: admin.php:618
4903
  msgid "Close"
4904
  msgstr ""
4905
 
4906
- #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:574
4907
- #: methods/remotesend.php:71 methods/remotesend.php:79
4908
- #: methods/remotesend.php:220 methods/remotesend.php:237
4909
  msgid "Unexpected response:"
4910
  msgstr ""
4911
 
4912
- #: addons/reporting.php:434 admin.php:569
4913
  msgid "To send to more than one address, separate each address with a comma."
4914
  msgstr ""
4915
 
4916
- #: admin.php:598
4917
  msgid "PHP information"
4918
  msgstr ""
4919
 
@@ -4949,7 +5010,7 @@ msgstr ""
4949
  msgid "Also delete from remote storage"
4950
  msgstr ""
4951
 
4952
- #: admin.php:2330
4953
  msgid "Latest UpdraftPlus.com news:"
4954
  msgstr ""
4955
 
@@ -4966,7 +5027,7 @@ msgstr ""
4966
  msgid "News"
4967
  msgstr ""
4968
 
4969
- #: admin.php:1269
4970
  msgid "Backup set not found"
4971
  msgstr ""
4972
 
@@ -4984,7 +5045,7 @@ msgstr ""
4984
  msgid "Blog link"
4985
  msgstr ""
4986
 
4987
- #: admin.php:661
4988
  msgid "Testing %s Settings..."
4989
  msgstr ""
4990
 
@@ -4992,27 +5053,27 @@ msgstr ""
4992
  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."
4993
  msgstr ""
4994
 
4995
- #: admin.php:875
4996
  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."
4997
  msgstr ""
4998
 
4999
- #: admin.php:875
5000
  msgid "Notice"
5001
  msgstr ""
5002
 
5003
- #: backup.php:856
5004
  msgid "Errors encountered:"
5005
  msgstr ""
5006
 
5007
- #: admin.php:567
5008
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5009
  msgstr ""
5010
 
5011
- #: admin.php:580
5012
  msgid "Begun looking for this entity"
5013
  msgstr ""
5014
 
5015
- #: addons/dropbox-folders.php:26
5016
  msgid "Store at"
5017
  msgstr ""
5018
 
@@ -5028,7 +5089,7 @@ msgstr ""
5028
  msgid "Time taken (seconds):"
5029
  msgstr ""
5030
 
5031
- #: addons/migrator.php:1113 admin.php:585
5032
  msgid "Errors:"
5033
  msgstr ""
5034
 
@@ -5097,23 +5158,23 @@ msgstr ""
5097
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5098
  msgstr ""
5099
 
5100
- #: addons/multisite.php:630
5101
  msgid "Blog uploads"
5102
  msgstr ""
5103
 
5104
- #: addons/migrator.php:369 addons/multisite.php:623
5105
  msgid "Must-use plugins"
5106
  msgstr ""
5107
 
5108
- #: addons/multisite.php:193
5109
  msgid "You do not have permission to access this page."
5110
  msgstr ""
5111
 
5112
- #: addons/multisite.php:179 udaddons/options.php:225
5113
  msgid "You do not have sufficient permissions to access this page."
5114
  msgstr ""
5115
 
5116
- #: addons/multisite.php:173
5117
  msgid "Multisite Install"
5118
  msgstr ""
5119
 
@@ -5121,103 +5182,104 @@ msgstr ""
5121
  msgid "starting from next time it is"
5122
  msgstr ""
5123
 
5124
- #: addons/sftp.php:430
5125
  msgid "Failure: Port must be an integer."
5126
  msgstr ""
5127
 
5128
- #: methods/ftp.php:359 methods/openstack2.php:147
5129
  msgid "password"
5130
  msgstr ""
5131
 
5132
- #: addons/sftp.php:421 methods/openstack2.php:142
5133
  msgid "username"
5134
  msgstr ""
5135
 
5136
- #: addons/sftp.php:417
5137
  msgid "host name"
5138
  msgstr ""
5139
 
5140
- #: addons/sftp.php:395
5141
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5142
  msgstr ""
5143
 
5144
- #: addons/sftp.php:393
5145
  msgid "Directory path"
5146
  msgstr ""
5147
 
5148
- #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:368
5149
- #: addons/webdav.php:69 methods/openstack2.php:127 methods/updraftvault.php:320
5150
- #: udaddons/options.php:145
5151
  msgid "Password"
5152
  msgstr ""
5153
 
5154
- #: addons/sftp.php:354 addons/webdav.php:83
5155
  msgid "Port"
5156
  msgstr ""
5157
 
5158
- #: addons/moredatabase.php:237 addons/sftp.php:347 addons/webdav.php:75
5159
  msgid "Host"
5160
  msgstr ""
5161
 
5162
- #: addons/sftp.php:280
5163
  msgid "%s Error: Failed to download"
5164
  msgstr ""
5165
 
5166
- #: addons/sftp.php:460
5167
  msgid "Check your file permissions: Could not successfully create and enter:"
5168
  msgstr ""
5169
 
5170
- #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
5171
  msgid "No %s found"
5172
  msgstr ""
5173
 
5174
- #: addons/sftp.php:38
5175
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5176
  msgstr ""
5177
 
5178
- #: addons/sftp.php:38
5179
  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."
5180
  msgstr ""
5181
 
5182
- #: addons/morefiles.php:562
5183
  msgid "No backup of %s directories: there was nothing found to back up"
5184
  msgstr ""
5185
 
5186
- #: addons/morefiles.php:209
5187
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5188
  msgstr ""
5189
 
5190
- #: addons/morefiles.php:207
5191
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5192
  msgstr ""
5193
 
5194
- #: addons/morefiles.php:186
5195
  msgid "More Files"
5196
  msgstr ""
5197
 
5198
- #: addons/morefiles.php:100
5199
  msgid "WordPress core (including any additions to your WordPress root directory)"
5200
  msgstr ""
5201
 
5202
- #: addons/morefiles.php:93
5203
  msgid "The above files comprise everything in a WordPress installation."
5204
  msgstr ""
5205
 
5206
- #: addons/morefiles.php:74
5207
  msgid "Over-write wp-config.php"
5208
  msgstr ""
5209
 
5210
- #: addons/morefiles.php:70 addons/morefiles.php:562
 
5211
  msgid "WordPress Core"
5212
  msgstr ""
5213
 
5214
- #: methods/addon-base.php:294 methods/stream-base.php:316
5215
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5216
  msgstr ""
5217
 
5218
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5219
- #: addons/googlecloud.php:666 addons/sftp.php:447 admin.php:2654 admin.php:2689
5220
- #: admin.php:2698 methods/addon-base.php:284 methods/stream-base.php:302
5221
  msgid "Failed"
5222
  msgstr ""
5223
 
@@ -5225,404 +5287,404 @@ msgstr ""
5225
  msgid "WebDAV URL"
5226
  msgstr ""
5227
 
5228
- #: methods/stream-base.php:286
5229
  msgid "Local write failed: Failed to download"
5230
  msgstr ""
5231
 
5232
- #: methods/stream-base.php:273
5233
  msgid "Error opening remote file: Failed to download"
5234
  msgstr ""
5235
 
5236
- #: methods/stream-base.php:107 methods/stream-base.php:111
5237
  msgid "Chunk %s: A %s error occurred"
5238
  msgstr ""
5239
 
5240
- #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
5241
- #: methods/addon-base.php:97 methods/addon-base.php:128
5242
- #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
5243
- #: methods/googledrive.php:146 methods/stream-base.php:31
5244
- #: methods/stream-base.php:145 methods/stream-base.php:151
5245
- #: methods/stream-base.php:185 methods/stream-base.php:250
5246
  msgid "No %s settings were found"
5247
  msgstr ""
5248
 
5249
- #: methods/ftp.php:381
5250
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5251
  msgstr ""
5252
 
5253
- #: methods/ftp.php:378
5254
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5255
  msgstr ""
5256
 
5257
- #: methods/ftp.php:369
5258
  msgid "Failure: we did not successfully log in with those credentials."
5259
  msgstr ""
5260
 
5261
- #: methods/ftp.php:351
5262
  msgid "Failure: No server details were given."
5263
  msgstr ""
5264
 
5265
- #: methods/ftp.php:320
5266
  msgid "Needs to already exist"
5267
  msgstr ""
5268
 
5269
- #: methods/ftp.php:303
5270
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5271
  msgstr ""
5272
 
5273
- #: methods/ftp.php:303
5274
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5275
  msgstr ""
5276
 
5277
- #: addons/onedrive.php:755 methods/dropbox.php:627
5278
  msgid "Your %s account name: %s"
5279
  msgstr ""
5280
 
5281
- #: methods/dropbox.php:617 methods/dropbox.php:644
5282
  msgid "though part of the returned information was not as expected - your mileage may vary"
5283
  msgstr ""
5284
 
5285
- #: methods/dropbox.php:612 methods/dropbox.php:614
5286
  msgid "you have authenticated your %s account"
5287
  msgstr ""
5288
 
5289
- #: methods/dropbox.php:499 methods/dropbox.php:501
5290
  msgid "there's an add-on for that."
5291
  msgstr ""
5292
 
5293
- #: methods/dropbox.php:499 methods/dropbox.php:501
5294
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5295
  msgstr ""
5296
 
5297
- #: methods/dropbox.php:499 methods/dropbox.php:501
5298
  msgid "Backups are saved in"
5299
  msgstr ""
5300
 
5301
- #: methods/dropbox.php:499 methods/dropbox.php:501
5302
  msgid "Need to use sub-folders?"
5303
  msgstr ""
5304
 
5305
- #: methods/dropbox.php:212 methods/dropbox.php:233 methods/dropbox.php:249
5306
  msgid "error: failed to upload file to %s (see log file for more)"
5307
  msgstr ""
5308
 
5309
- #: methods/dropbox.php:97 methods/dropbox.php:114
5310
  msgid "You do not appear to be authenticated with Dropbox"
5311
  msgstr ""
5312
 
5313
- #: methods/s3.php:1028
5314
  msgid "The communication with %s was not encrypted."
5315
  msgstr ""
5316
 
5317
- #: methods/s3.php:1026
5318
  msgid "The communication with %s was encrypted."
5319
  msgstr ""
5320
 
5321
- #: addons/googlecloud.php:689 methods/s3.php:1023
5322
  msgid "We accessed the bucket, and were able to create files within it."
5323
  msgstr ""
5324
 
5325
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5326
- #: methods/s3.php:1033
5327
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5328
  msgstr ""
5329
 
5330
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5331
- #: methods/s3.php:1033
5332
  msgid "Failure"
5333
  msgstr ""
5334
 
5335
- #: methods/s3.php:1009
5336
  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)."
5337
  msgstr ""
5338
 
5339
- #: addons/s3-enhanced.php:145 methods/openstack2.php:113 methods/s3.php:1003
5340
  msgid "Region"
5341
  msgstr ""
5342
 
5343
- #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:985
5344
  msgid "Failure: No bucket details were given."
5345
  msgstr ""
5346
 
5347
- #: methods/s3.php:963
5348
  msgid "API secret"
5349
  msgstr ""
5350
 
5351
- #: methods/s3.php:856
5352
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5353
  msgstr ""
5354
 
5355
- #: methods/s3.php:855
5356
  msgid "%s location"
5357
  msgstr ""
5358
 
5359
- #: methods/s3.php:851
5360
  msgid "%s secret key"
5361
  msgstr ""
5362
 
5363
- #: methods/s3.php:847
5364
  msgid "%s access key"
5365
  msgstr ""
5366
 
5367
- #: methods/s3.php:812
5368
  msgid "If you see errors about SSL certificates, then please go here for help."
5369
  msgstr ""
5370
 
5371
- #: methods/s3.php:810
5372
  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."
5373
  msgstr ""
5374
 
5375
- #: methods/s3.php:444 methods/s3.php:618 methods/s3.php:720
5376
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5377
  msgstr ""
5378
 
5379
- #: methods/s3.php:703 methods/s3.php:749
5380
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5381
  msgstr ""
5382
 
5383
- #: methods/s3.php:422
5384
  msgid "%s re-assembly error (%s): (see log file for more)"
5385
  msgstr ""
5386
 
5387
- #: methods/s3.php:418
5388
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5389
  msgstr ""
5390
 
5391
- #: methods/s3.php:402
5392
  msgid "%s chunk %s: upload failed"
5393
  msgstr ""
5394
 
5395
- #: methods/s3.php:392
5396
  msgid "%s error: file %s was shortened unexpectedly"
5397
  msgstr ""
5398
 
5399
- #: methods/s3.php:369
5400
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5401
  msgstr ""
5402
 
5403
- #: methods/email.php:69
5404
  msgid "Note:"
5405
  msgstr ""
5406
 
5407
- #: methods/email.php:43
5408
  msgid "WordPress Backup"
5409
  msgstr ""
5410
 
5411
- #: methods/cloudfiles.php:560 methods/openstack-base.php:476
5412
  msgid "We accessed the container, and were able to create files within it."
5413
  msgstr ""
5414
 
5415
- #: methods/cloudfiles.php:556
5416
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5417
  msgstr ""
5418
 
5419
- #: methods/cloudfiles.php:529 methods/openstack-base.php:420
5420
  msgid "Failure: No container details were given."
5421
  msgstr ""
5422
 
5423
- #: addons/moredatabase.php:238 addons/sftp.php:361 addons/webdav.php:63
5424
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:509
5425
- #: methods/openstack2.php:121
5426
  msgid "Username"
5427
  msgstr "ব্যবহারকারী নাম"
5428
 
5429
- #: methods/cloudfiles-new.php:152 methods/cloudfiles.php:504 methods/s3.php:959
5430
  msgid "API key"
5431
  msgstr ""
5432
 
5433
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5434
- #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:417
5435
- #: addons/sftp.php:421 addons/sftp.php:425 addons/webdav.php:103 admin.php:638
5436
- #: methods/addon-base.php:277 methods/cloudfiles-new.php:152
5437
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:504
5438
- #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
5439
- #: methods/openstack2.php:142 methods/openstack2.php:147
5440
- #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:959
5441
- #: methods/s3.php:963
5442
  msgid "Failure: No %s was given."
5443
  msgstr ""
5444
 
5445
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5446
- #: methods/openstack-base.php:513 methods/s3.php:799
5447
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5448
  msgstr ""
5449
 
5450
- #: methods/cloudfiles.php:490
5451
  msgid "Cloud Files container"
5452
  msgstr ""
5453
 
5454
- #: methods/cloudfiles.php:486
5455
  msgid "Cloud Files API key"
5456
  msgstr ""
5457
 
5458
- #: methods/cloudfiles.php:482
5459
  msgid "Cloud Files username"
5460
  msgstr ""
5461
 
5462
- #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:99
5463
- #: methods/cloudfiles.php:466
5464
  msgid "UK"
5465
  msgstr ""
5466
 
5467
- #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:98
5468
- #: methods/cloudfiles.php:465
5469
  msgid "US (default)"
5470
  msgstr ""
5471
 
5472
- #: methods/cloudfiles.php:462
5473
  msgid "US or UK Cloud"
5474
  msgstr ""
5475
 
5476
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5477
- #: methods/openstack2.php:94
5478
  msgid "Also, you should read this important FAQ."
5479
  msgstr ""
5480
 
5481
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5482
  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."
5483
  msgstr ""
5484
 
5485
- #: addons/sftp.php:408 admin.php:660 methods/addon-base.php:242
5486
- #: methods/cloudfiles.php:496 methods/ftp.php:329
5487
- #: methods/openstack-base.php:524 methods/s3.php:861
5488
- #: methods/stream-base.php:224
5489
  msgid "Test %s Settings"
5490
  msgstr ""
5491
 
5492
- #: methods/openstack-base.php:403
5493
  msgid "Error downloading remote file: Failed to download ("
5494
  msgstr ""
5495
 
5496
- #: class-updraftplus.php:980 class-updraftplus.php:1024
5497
- #: methods/cloudfiles.php:392 methods/stream-base.php:266
5498
  msgid "Error opening local file: Failed to download"
5499
  msgstr ""
5500
 
5501
- #: methods/cloudfiles.php:218
5502
  msgid "Cloud Files error - failed to upload file"
5503
  msgstr ""
5504
 
5505
- #: addons/sftp.php:134 addons/sftp.php:146 methods/cloudfiles.php:147
5506
- #: methods/cloudfiles.php:189 methods/openstack-base.php:73
5507
- #: methods/openstack-base.php:262 methods/s3.php:337 methods/s3.php:349
5508
- #: methods/s3.php:350
5509
  msgid "%s Error: Failed to upload"
5510
  msgstr ""
5511
 
5512
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5513
- #: class-updraftplus.php:842 methods/cloudfiles.php:130
5514
- #: methods/googledrive.php:756 methods/googledrive.php:761
5515
  msgid "%s Error: Failed to open local file"
5516
  msgstr ""
5517
 
5518
- #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
5519
- #: methods/cloudfiles.php:363
5520
  msgid "Cloud Files error - failed to create and access the container"
5521
  msgstr ""
5522
 
5523
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5524
- #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:539
5525
- #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
5526
  msgid "Cloud Files authentication failed"
5527
  msgstr ""
5528
 
5529
- #: addons/googlecloud.php:907 methods/googledrive.php:976
5530
  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."
5531
  msgstr ""
5532
 
5533
- #: addons/googlecloud.php:896 methods/googledrive.php:965
5534
  msgid "Authenticate with Google"
5535
  msgstr ""
5536
 
5537
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5538
- #: methods/googledrive.php:935
5539
  msgid "Client Secret"
5540
  msgstr ""
5541
 
5542
- #: addons/googlecloud.php:842 methods/googledrive.php:932
5543
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5544
  msgstr ""
5545
 
5546
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5547
- #: methods/googledrive.php:931
5548
  msgid "Client ID"
5549
  msgstr ""
5550
 
5551
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5552
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5553
  msgstr ""
5554
 
5555
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5556
  msgid "Select 'Web Application' as the application type."
5557
  msgstr ""
5558
 
5559
- #: addons/googlecloud.php:826 methods/googledrive.php:919
5560
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5561
  msgstr ""
5562
 
5563
- #: methods/addon-base.php:230 methods/cloudfiles.php:438
5564
- #: methods/dropbox.php:481 methods/ftp.php:298 methods/googledrive.php:904
5565
- #: methods/openstack-base.php:503 methods/s3.php:771
5566
- #: methods/stream-base.php:217
5567
  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."
5568
  msgstr ""
5569
 
5570
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5571
- #: addons/googlecloud.php:709 methods/googledrive.php:460
5572
- #: methods/googledrive.php:461
5573
  msgid "Account is not authorized."
5574
  msgstr ""
5575
 
5576
- #: methods/googledrive.php:386 methods/googledrive.php:432
5577
- #: methods/googledrive.php:438 methods/googledrive.php:440
5578
- #: methods/stream-base.php:201
5579
  msgid "Failed to upload to %s"
5580
  msgstr ""
5581
 
5582
- #: methods/googledrive.php:415
5583
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5584
  msgstr ""
5585
 
5586
- #: methods/googledrive.php:512
5587
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5588
  msgstr ""
5589
 
5590
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5591
- #: methods/googledrive.php:363
5592
  msgid "you have authenticated your %s account."
5593
  msgstr ""
5594
 
5595
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5596
- #: addons/onedrive.php:793 addons/sftp.php:480 methods/addon-base.php:291
5597
- #: methods/cloudfiles.php:560 methods/googledrive.php:363
5598
- #: methods/openstack-base.php:476 methods/s3.php:1023
5599
- #: methods/stream-base.php:313
5600
  msgid "Success"
5601
  msgstr ""
5602
 
5603
- #: addons/onedrive.php:747 methods/dropbox.php:655 methods/dropbox.php:664
5604
- #: methods/googledrive.php:337
5605
  msgid "Your %s quota usage: %s %% used, %s available"
5606
  msgstr ""
5607
 
5608
- #: addons/googlecloud.php:390 methods/googledrive.php:310
5609
  msgid "Authorization failed"
5610
  msgstr "অনুমোদন ব্যর্থ"
5611
 
5612
- #: addons/googlecloud.php:382 methods/googledrive.php:302
5613
  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."
5614
  msgstr ""
5615
 
5616
- #: methods/viaaddon-base.php:72
5617
  msgid "follow this link to get it"
5618
  msgstr "এটি পেতে এই লিঙ্কটি অনুসরণ করুন"
5619
 
5620
- #: methods/viaaddon-base.php:72
5621
  msgid "%s support is available as an add-on"
5622
  msgstr ""
5623
 
5624
- #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5625
- #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5626
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5627
  msgstr ""
5628
 
@@ -5631,8 +5693,8 @@ msgstr ""
5631
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5632
  msgstr ""
5633
 
5634
- #: addons/migrator.php:1770 admin.php:2657 admin.php:2691 admin.php:2695
5635
- #: admin.php:3569 admin.php:3582 restorer.php:2203 restorer.php:2309
5636
  msgid "OK"
5637
  msgstr "ঠিক আছে"
5638
 
@@ -5656,8 +5718,8 @@ msgstr ""
5656
  msgid "Old table prefix:"
5657
  msgstr ""
5658
 
5659
- #: addons/reporting.php:65 addons/reporting.php:152 backup.php:930
5660
- #: class-updraftplus.php:3901
5661
  msgid "Backup of:"
5662
  msgstr ""
5663
 
@@ -5733,156 +5795,152 @@ msgstr ""
5733
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5734
  msgstr ""
5735
 
5736
- #: admin.php:3590 admin.php:3591
5737
  msgid "Could not find one of the files for restoration"
5738
  msgstr ""
5739
 
5740
- #: admin.php:3685
5741
  msgid "Error message"
5742
  msgstr ""
5743
 
5744
- #: admin.php:3587
5745
  msgid "The backup records do not contain information about the proper size of this file."
5746
  msgstr ""
5747
 
5748
- #: admin.php:3579
5749
  msgid "Archive is expected to be size:"
5750
  msgstr ""
5751
 
5752
- #: admin.php:3463
5753
  msgid "If making a request for support, please include this information:"
5754
  msgstr ""
5755
 
5756
- #: admin.php:3462
5757
  msgid "ABORT: Could not find the information on which entities to restore."
5758
  msgstr ""
5759
 
5760
- #: admin.php:3416
5761
  msgid "UpdraftPlus Restoration: Progress"
5762
  msgstr ""
5763
 
5764
- #: admin.php:3368
5765
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5766
  msgstr ""
5767
 
5768
- #: admin.php:3317
5769
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5770
  msgstr ""
5771
 
5772
- #: admin.php:3252
5773
- msgid "Press here to download"
5774
- msgstr ""
5775
-
5776
- #: admin.php:3326
5777
  msgid "Delete this backup set"
5778
  msgstr ""
5779
 
5780
- #: admin.php:2999
5781
  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."
5782
  msgstr ""
5783
 
5784
- #: admin.php:2996
5785
  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."
5786
  msgstr ""
5787
 
5788
- #: admin.php:2994
5789
  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)."
5790
  msgstr ""
5791
 
5792
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5793
- #: methods/openstack-base.php:513 methods/s3.php:799
5794
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5795
  msgstr ""
5796
 
5797
- #: templates/wp-admin/settings/form-contents.php:388
5798
  msgid "Save Changes"
5799
  msgstr ""
5800
 
5801
- #: templates/wp-admin/settings/form-contents.php:365
5802
  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."
5803
  msgstr ""
5804
 
5805
- #: templates/wp-admin/settings/form-contents.php:364
5806
  msgid "Disable SSL entirely where possible"
5807
  msgstr ""
5808
 
5809
- #: templates/wp-admin/settings/form-contents.php:360
5810
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5811
  msgstr ""
5812
 
5813
- #: templates/wp-admin/settings/form-contents.php:360
5814
  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."
5815
  msgstr ""
5816
 
5817
- #: templates/wp-admin/settings/form-contents.php:359
5818
  msgid "Do not verify SSL certificates"
5819
  msgstr ""
5820
 
5821
- #: templates/wp-admin/settings/form-contents.php:355
5822
  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."
5823
  msgstr ""
5824
 
5825
- #: templates/wp-admin/settings/form-contents.php:354
5826
  msgid "Use the server's SSL certificates"
5827
  msgstr ""
5828
 
5829
- #: admin.php:2870
5830
  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."
5831
  msgstr ""
5832
 
5833
- #: admin.php:2870
5834
  msgid "click here"
5835
  msgstr "এখানে ক্লিক করুন"
5836
 
5837
- #: admin.php:2870
5838
  msgid "or, to reset this option"
5839
  msgstr ""
5840
 
5841
- #: admin.php:2870
5842
  msgid "Follow this link to attempt to create the directory and set the permissions"
5843
  msgstr ""
5844
 
5845
- #: admin.php:2862
5846
  msgid "Backup directory specified is writable, which is good."
5847
  msgstr ""
5848
 
5849
- #: templates/wp-admin/settings/form-contents.php:335
5850
  msgid "Backup directory"
5851
  msgstr "ব্যাকআপ ডিরেক্টরি"
5852
 
5853
- #: templates/wp-admin/settings/form-contents.php:330
5854
  msgid "Delete local backup"
5855
  msgstr "স্থানীয় ব্যাকআপ মুছুন"
5856
 
5857
- #: templates/wp-admin/settings/form-contents.php:310
5858
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5859
  msgstr ""
5860
 
5861
- #: templates/wp-admin/settings/form-contents.php:310
5862
  msgid "Show expert settings"
5863
  msgstr "বিশেষজ্ঞ সেটিংস দেখান"
5864
 
5865
- #: templates/wp-admin/settings/form-contents.php:309
5866
  msgid "Expert settings"
5867
  msgstr "বিশেষজ্ঞদের সেটিংস"
5868
 
5869
- #: templates/wp-admin/settings/form-contents.php:320
5870
  msgid "Debug mode"
5871
  msgstr ""
5872
 
5873
- #: templates/wp-admin/settings/form-contents.php:305
5874
  msgid "Advanced / Debugging Settings"
5875
  msgstr ""
5876
 
5877
- #: admin.php:597
5878
  msgid "Requesting start of backup..."
5879
  msgstr ""
5880
 
5881
- #: addons/morefiles.php:234 admin.php:613
5882
  msgid "Cancel"
5883
  msgstr "বাতিল"
5884
 
5885
- #: addons/reporting.php:216 admin.php:3141
5886
  msgid "None"
5887
  msgstr "কোনটিই না"
5888
 
@@ -5890,31 +5948,31 @@ msgstr "কোনটিই না"
5890
  msgid "Choose your remote storage"
5891
  msgstr ""
5892
 
5893
- #: templates/wp-admin/settings/form-contents.php:203
5894
  msgid "Manually decrypt a database backup file"
5895
  msgstr ""
5896
 
5897
- #: templates/wp-admin/settings/form-contents.php:184
5898
  msgid "Database encryption phrase"
5899
  msgstr ""
5900
 
5901
- #: templates/wp-admin/settings/form-contents.php:282 udaddons/options.php:143
5902
  msgid "Email"
5903
  msgstr ""
5904
 
5905
- #: templates/wp-admin/settings/form-contents.php:174
5906
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5907
  msgstr ""
5908
 
5909
- #: addons/morefiles.php:380 admin.php:2940
5910
  msgid "Exclude these:"
5911
  msgstr ""
5912
 
5913
- #: admin.php:2931
5914
  msgid "Any other directories found inside wp-content"
5915
  msgstr ""
5916
 
5917
- #: templates/wp-admin/settings/form-contents.php:171
5918
  msgid "Include in files backup"
5919
  msgstr ""
5920
 
@@ -5926,44 +5984,44 @@ msgstr ""
5926
  msgid "To fix the time at which a backup should take place,"
5927
  msgstr ""
5928
 
5929
- #: admin.php:2856
5930
  msgid "Monthly"
5931
  msgstr "মাসিক"
5932
 
5933
- #: admin.php:2855
5934
  msgid "Fortnightly"
5935
  msgstr "পাক্ষিক"
5936
 
5937
- #: admin.php:2854
5938
  msgid "Weekly"
5939
  msgstr "সাপ্তাহিক"
5940
 
5941
- #: admin.php:2853
5942
  msgid "Daily"
5943
  msgstr ""
5944
 
5945
- #: admin.php:620 admin.php:2836
5946
  msgid "Download log file"
5947
  msgstr "লগ ফাইল ডাউনলোড করুন"
5948
 
5949
- #: admin.php:2754
5950
  msgid "The folder exists, but your webserver does not have permission to write to it."
5951
  msgstr ""
5952
 
5953
- #: admin.php:2749
5954
  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"
5955
  msgstr ""
5956
 
5957
- #: admin.php:2735
5958
  msgid "The request to the filesystem to create the directory failed."
5959
  msgstr ""
5960
 
5961
- #: addons/migrator.php:2243 admin.php:614 admin.php:2651 admin.php:2684
5962
- #: admin.php:3326 templates/wp-admin/settings/delete-and-restore-modals.php:5
5963
  msgid "Delete"
5964
  msgstr "মুছুন"
5965
 
5966
- #: admin.php:2591
5967
  msgid "show log"
5968
  msgstr "লগ দেখান"
5969
 
@@ -6039,7 +6097,7 @@ msgstr ""
6039
  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"
6040
  msgstr ""
6041
 
6042
- #: addons/morefiles.php:70
6043
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6044
  msgid "%s restoration options:"
6045
  msgstr ""
@@ -6076,7 +6134,7 @@ msgstr ""
6076
  msgid "Delete backup set"
6077
  msgstr ""
6078
 
6079
- #: admin.php:596
6080
  msgid "Download error: the server sent us a response which we did not understand."
6081
  msgstr ""
6082
 
@@ -6086,17 +6144,21 @@ msgstr ""
6086
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6087
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6088
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6089
- #: addons/s3-enhanced.php:127 addons/sftp.php:736 addons/webdav.php:79
6090
- #: admin.php:82 admin.php:588 admin.php:3584 admin.php:3614
6091
- #: methods/remotesend.php:76 methods/remotesend.php:234
6092
- #: methods/updraftvault.php:434 restorer.php:1364
6093
  msgid "Error:"
6094
  msgstr ""
6095
 
6096
- #: admin.php:579 templates/wp-admin/settings/downloading-and-restoring.php:34
6097
  msgid "calculating..."
6098
  msgstr ""
6099
 
 
 
 
 
6100
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6101
  msgid "UpdraftPlus - Upload backup files"
6102
  msgstr ""
@@ -6109,14 +6171,14 @@ msgstr "রিফ্রেশ"
6109
  msgid "Web-server disk space in use by UpdraftPlus"
6110
  msgstr ""
6111
 
6112
- #: addons/google-enhanced.php:72 methods/googledrive.php:146
6113
- #: methods/googledrive.php:363 methods/googledrive.php:386
6114
- #: methods/googledrive.php:415 methods/googledrive.php:422
6115
- #: methods/googledrive.php:432 methods/googledrive.php:438
6116
- #: methods/googledrive.php:440 methods/googledrive.php:903
6117
- #: methods/googledrive.php:915 methods/googledrive.php:931
6118
- #: methods/googledrive.php:935 methods/googledrive.php:946
6119
- #: methods/googledrive.php:956
6120
  msgid "Google Drive"
6121
  msgstr "গুগোল ড্রাইভ"
6122
 
@@ -6132,37 +6194,38 @@ msgstr "অপেরা ওযেব ব্রাউজার"
6132
  msgid "More tasks:"
6133
  msgstr "আরও টাস্ক:"
6134
 
6135
- #: admin.php:2354
6136
  msgid "Download most recently modified log file"
6137
  msgstr ""
6138
 
6139
- #: admin.php:2313 admin.php:2319 central/bootstrap.php:161
6140
  msgid "(Nothing yet logged)"
6141
  msgstr ""
6142
 
6143
- #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2312
6144
- #: admin.php:2317
6145
  msgid "Last log message"
6146
  msgstr ""
6147
 
6148
- #: addons/migrator.php:218 admin.php:619 admin.php:3317
6149
  #: templates/wp-admin/settings/tab-status.php:30
6150
  msgid "Restore"
6151
  msgstr "পুনঃস্থাপন"
6152
 
6153
- #: admin.php:448 admin.php:612 templates/wp-admin/settings/tab-status.php:27
6154
  msgid "Backup Now"
6155
  msgstr ""
6156
 
6157
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6158
- #: addons/reporting.php:231 admin.php:233 admin.php:3116 admin.php:3189
6159
- #: admin.php:3668 includes/class-wpadmin-commands.php:138
 
6160
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6161
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6162
  msgid "Database"
6163
  msgstr ""
6164
 
6165
- #: admin.php:229 admin.php:4080
6166
  msgid "Files"
6167
  msgstr ""
6168
 
@@ -6170,11 +6233,11 @@ msgstr ""
6170
  msgid "Next scheduled backups"
6171
  msgstr ""
6172
 
6173
- #: admin.php:209
6174
  msgid "At the same time as the files backup"
6175
  msgstr ""
6176
 
6177
- #: admin.php:199 admin.php:220 admin.php:227
6178
  msgid "Nothing currently scheduled"
6179
  msgstr ""
6180
 
@@ -6186,15 +6249,15 @@ msgstr ""
6186
  msgid "JavaScript warning"
6187
  msgstr ""
6188
 
6189
- #: admin.php:599 admin.php:2381
6190
  msgid "Delete Old Directories"
6191
  msgstr ""
6192
 
6193
- #: admin.php:2126
6194
  msgid "Current limit is:"
6195
  msgstr ""
6196
 
6197
- #: admin.php:2100
6198
  msgid "Your backup has been restored."
6199
  msgstr ""
6200
 
@@ -6206,127 +6269,127 @@ msgstr ""
6206
  msgid "Lead developer's homepage"
6207
  msgstr "প্রধান ডেভেলপার এর হোমপেজে"
6208
 
6209
- #: admin.php:4000
6210
  msgid "Your settings have been wiped."
6211
  msgstr ""
6212
 
6213
- #: admin.php:2060
6214
  msgid "Backup directory successfully created."
6215
  msgstr ""
6216
 
6217
- #: admin.php:2053
6218
  msgid "Backup directory could not be created"
6219
  msgstr ""
6220
 
6221
- #: admin.php:2623
6222
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6223
  msgstr ""
6224
 
6225
- #: admin.php:2621
6226
  msgid "Old directories successfully removed."
6227
  msgstr ""
6228
 
6229
- #: admin.php:2618
6230
  msgid "Remove old directories"
6231
  msgstr ""
6232
 
6233
- #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2002
6234
- #: admin.php:2011 admin.php:2020 admin.php:2062 admin.php:2625
6235
  msgid "Return to UpdraftPlus Configuration"
6236
  msgstr ""
6237
 
6238
- #: admin.php:592 admin.php:2002 admin.php:2011 admin.php:2020 admin.php:2062
6239
- #: admin.php:2625 templates/wp-admin/settings/existing-backups-table.php:14
6240
  msgid "Actions"
6241
  msgstr ""
6242
 
6243
- #: admin.php:1991
6244
  msgid "Restore successful!"
6245
  msgstr ""
6246
 
6247
- #: admin.php:1921
6248
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6249
  msgstr ""
6250
 
6251
- #: admin.php:1831
6252
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6253
  msgstr ""
6254
 
6255
- #: admin.php:1712
6256
  msgid "No local copy present."
6257
  msgstr ""
6258
 
6259
- #: admin.php:1709
6260
  msgid "Download in progress"
6261
  msgstr "ডাউনলোড হচ্ছে"
6262
 
6263
- #: admin.php:591 admin.php:1697
6264
  msgid "File ready."
6265
  msgstr "ফাইল তৈরি।"
6266
 
6267
- #: admin.php:1678
6268
  msgid "Download failed"
6269
  msgstr ""
6270
 
6271
- #: admin.php:589 admin.php:1469 admin.php:3567 class-updraftplus.php:980
6272
- #: class-updraftplus.php:1024 methods/addon-base.php:75
6273
- #: methods/addon-base.php:80 methods/addon-base.php:194
6274
- #: methods/addon-base.php:214 methods/stream-base.php:201 restorer.php:2199
6275
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6276
  msgid "Error"
6277
  msgstr ""
6278
 
6279
- #: admin.php:1497
6280
  msgid "Could not find that job - perhaps it has already finished?"
6281
  msgstr ""
6282
 
6283
- #: admin.php:1489
6284
  msgid "Job deleted"
6285
  msgstr ""
6286
 
6287
- #: admin.php:1573
6288
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6289
  msgstr ""
6290
 
6291
- #: admin.php:663
6292
  msgid "Nothing yet logged"
6293
  msgstr ""
6294
 
6295
- #: admin.php:871
6296
  msgid "Please consult this FAQ if you have problems backing up."
6297
  msgstr ""
6298
 
6299
- #: admin.php:871
6300
  msgid "Your website is hosted using the %s web server."
6301
  msgstr ""
6302
 
6303
- #: admin.php:867
6304
  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."
6305
  msgstr ""
6306
 
6307
- #: admin.php:863
6308
  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."
6309
  msgstr ""
6310
 
6311
- #: admin.php:855 admin.php:859 admin.php:863 admin.php:867 admin.php:871
6312
- #: admin.php:880 admin.php:2987 admin.php:2994 admin.php:2996
6313
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448 methods/ftp.php:284
6314
- #: methods/openstack-base.php:513 methods/s3.php:795 methods/s3.php:799
6315
- #: methods/updraftvault.php:260
6316
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6317
  #: udaddons/updraftplus-addons.php:208
6318
  msgid "Warning"
6319
  msgstr "সতর্কতা"
6320
 
6321
- #: admin.php:804
6322
  msgid "Add-Ons / Pro Support"
6323
  msgstr "অ্যাড অন / প্রো সাপোর্ট"
6324
 
6325
- #: admin.php:464 admin.php:800 templates/wp-admin/settings/tab-bar.php:7
6326
  msgid "Settings"
6327
  msgstr "সেটিংস"
6328
 
6329
- #: admin.php:773
6330
  msgid "Allowed Files"
6331
  msgstr ""
6332
 
@@ -6334,7 +6397,7 @@ msgstr ""
6334
  msgid "Could not create %s zip. Consult the log file for more information."
6335
  msgstr ""
6336
 
6337
- #: backup.php:1999
6338
  msgid "Infinite recursion: consult your log for more information"
6339
  msgstr ""
6340
 
@@ -6346,88 +6409,88 @@ msgstr ""
6346
  msgid "Like UpdraftPlus and can spare one minute?"
6347
  msgstr ""
6348
 
6349
- #: addons/azure.php:217 class-updraftplus.php:3660 methods/googledrive.php:838
6350
  msgid "File not found"
6351
  msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
6352
 
6353
- #: class-updraftplus.php:3571
6354
  msgid "The decryption key used:"
6355
  msgstr ""
6356
 
6357
- #: class-updraftplus.php:3571 class-updraftplus.php:3841 restorer.php:390
6358
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6359
  msgstr ""
6360
 
6361
- #: class-updraftplus.php:3552 class-updraftplus.php:3829 restorer.php:377
6362
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6363
  msgstr ""
6364
 
6365
- #: backup.php:1889
6366
  msgid "Could not open the backup file for writing"
6367
  msgstr ""
6368
 
6369
- #: class-updraftplus.php:3186
6370
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6371
  msgstr ""
6372
 
6373
- #: class-updraftplus.php:3163
6374
  msgid "Could not read the directory"
6375
  msgstr "ডিরেক্টরিটি পড়া যায়নি"
6376
 
6377
- #: admin.php:1749 backup.php:1127 restorer.php:225
6378
  msgid "Backup directory (%s) is not writable, or does not exist."
6379
  msgstr ""
6380
 
6381
- #: backup.php:931
6382
  msgid "WordPress backup is complete"
6383
  msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
6384
 
6385
- #: class-updraftplus.php:2736
6386
  msgid "The backup attempt has finished, apparently unsuccessfully"
6387
  msgstr ""
6388
 
6389
- #: class-updraftplus.php:2721
6390
  msgid "The backup apparently succeeded and is now complete"
6391
  msgstr ""
6392
 
6393
- #: addons/moredatabase.php:368
6394
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6395
  msgstr ""
6396
 
6397
- #: class-updraftplus.php:2148
6398
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6399
  msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
6400
 
6401
- #: class-updraftplus.php:1540
6402
  msgid "Others"
6403
  msgstr "অন্যান্য"
6404
 
6405
- #: addons/multisite.php:452 class-updraftplus.php:1525
6406
  msgid "Uploads"
6407
  msgstr "আপলোডসমূহ"
6408
 
6409
- #: class-updraftplus.php:1524
6410
  msgid "Themes"
6411
  msgstr "থিমসমূহ"
6412
 
6413
- #: class-updraftplus.php:1523
6414
  msgid "Plugins"
6415
  msgstr "প্লাগইন"
6416
 
6417
- #: class-updraftplus.php:394
6418
  msgid "No log files were found."
6419
  msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
6420
 
6421
- #: admin.php:1632 admin.php:1636 class-updraftplus.php:389
6422
  msgid "The log file could not be read."
6423
  msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
6424
 
6425
- #: admin.php:887 admin.php:891 admin.php:895 admin.php:899 admin.php:903
6426
- #: class-updraftplus.php:354 class-updraftplus.php:389
6427
- #: class-updraftplus.php:394 class-updraftplus.php:399
6428
  msgid "UpdraftPlus notice:"
6429
  msgstr "UpdraftPlus নোটিশ:"
6430
 
6431
- #: addons/multisite.php:63 addons/multisite.php:660 options.php:42
6432
  msgid "UpdraftPlus Backups"
6433
  msgstr "UpdraftPlus ব্যাকআপসমূহ"
11
  "Language: bn\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: methods/updraftvault.php:49
15
+ msgid "UpdraftVault"
16
+ msgstr ""
17
+
18
+ #: includes/updraftplus-notices.php:260
19
+ msgid "get more info"
20
+ msgstr ""
21
+
22
+ #: includes/updraftplus-notices.php:260
23
+ msgid "install"
24
+ msgstr ""
25
+
26
+ #: includes/updraftplus-notices.php:260
27
+ msgid "Switch to UpdraftPlus's free alternative:"
28
+ msgstr ""
29
+
30
+ #: includes/updraftplus-notices.php:260
31
+ msgid "Clef confirms that they are closing down their two factor security plugin."
32
+ msgstr ""
33
+
34
+ #: includes/class-wpadmin-commands.php:467
35
+ msgid "archive"
36
+ msgstr ""
37
+
38
+ #: includes/class-wpadmin-commands.php:458
39
+ msgid "Extra database"
40
+ msgstr ""
41
+
42
+ #: admin.php:3302
43
+ msgid "Press here to download or browse"
44
+ msgstr ""
45
+
46
+ #: admin.php:1018 admin.php:1028
47
+ msgid "Error: invalid path"
48
+ msgstr ""
49
+
50
+ #: admin.php:876
51
+ msgid "An error occurred when fetching storage module options: "
52
+ msgstr ""
53
+
54
+ #: admin.php:705
55
+ msgid "Loading log file"
56
+ msgstr ""
57
+
58
+ #: admin.php:704
59
+ msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
60
+ msgstr ""
61
+
62
+ #: admin.php:703
63
+ msgid "Search"
64
+ msgstr ""
65
+
66
+ #: admin.php:702
67
+ msgid "Select a file to view information about it"
68
+ msgstr ""
69
+
70
+ #: admin.php:701
71
+ msgid "Browsing zip file"
72
+ msgstr ""
73
+
74
+ #: admin.php:671
75
+ msgid "With UpdraftPlus Premium, you can directly download individual files from here."
76
+ msgstr ""
77
+
78
+ #: admin.php:619
79
+ msgid "Browse contents"
80
+ msgstr ""
81
+
82
  #: restorer.php:1629
83
  msgid "Skipped tables:"
84
  msgstr ""
85
 
86
+ #: class-updraftplus.php:4173
87
  msgid "This database backup has the following WordPress tables excluded: %s"
88
  msgstr ""
89
 
90
+ #: admin.php:2319
91
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
92
  msgstr ""
93
 
94
+ #: admin.php:2319
95
  msgid "All WordPress tables will be backed up."
96
  msgstr ""
97
 
98
+ #: admin.php:700
99
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
100
  msgstr ""
101
 
102
+ #: admin.php:700
103
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
104
  msgstr ""
105
 
106
+ #: admin.php:700
107
  msgid "The available memory on the server."
108
  msgstr ""
109
 
110
+ #: admin.php:700
111
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
112
  msgstr ""
113
 
114
+ #: admin.php:700
115
  msgid "The file failed to upload. Please check the following:"
116
  msgstr ""
117
 
118
+ #: admin.php:699
119
  msgid "HTTP code:"
120
  msgstr ""
121
 
122
+ #: admin.php:596
123
  msgid "You have chosen to backup a database, but no tables have been selected"
124
  msgstr ""
125
 
126
+ #: addons/moredatabase.php:575
127
  msgid "tables"
128
  msgstr ""
129
 
130
+ #: addons/moredatabase.php:574
131
  msgid "WordPress database"
132
  msgstr ""
133
 
134
+ #: addons/moredatabase.php:567
135
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
136
  msgstr ""
137
 
282
  msgid "UpdraftPlus"
283
  msgstr ""
284
 
285
+ #: templates/wp-admin/settings/form-contents.php:274
286
  msgid "Recommended: optimize your database with WP-Optimize."
287
  msgstr ""
288
 
305
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
306
  msgstr ""
307
 
308
+ #: addons/morefiles.php:306
 
 
 
 
309
  msgid "Please choose a file or directory"
310
  msgstr ""
311
 
312
+ #: addons/morefiles.php:295
313
  msgid "Confirm"
314
  msgstr ""
315
 
316
+ #: addons/morefiles.php:298
317
  msgid "Go up a directory"
318
  msgstr ""
319
 
320
+ #: addons/morefiles.php:291
321
  msgid "Add directory..."
322
  msgstr ""
323
 
324
+ #: addons/morefiles.php:284 addons/morefiles.php:304
325
  msgid "Edit"
326
  msgstr ""
327
 
328
+ #: addons/morefiles.php:267
329
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
330
  msgstr ""
331
 
605
  msgid "Backup of: %s"
606
  msgstr ""
607
 
608
+ #: methods/googledrive.php:196
609
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
610
  msgstr ""
611
 
612
+ #: methods/dropbox.php:556
613
  msgid "%s de-authentication"
614
  msgstr ""
615
 
616
+ #: methods/dropbox.php:524
617
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
618
  msgstr ""
619
 
620
+ #: methods/dropbox.php:498
621
  msgid "Follow this link to deauthenticate with %s."
622
  msgstr ""
623
 
625
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
626
  msgstr ""
627
 
628
+ #: backup.php:1507
629
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
630
  msgstr ""
631
 
633
  msgid "You have selected a remote storage option which has an authorization step to complete:"
634
  msgstr ""
635
 
636
+ #: admin.php:1440
637
  msgid "Remote files deleted:"
638
  msgstr ""
639
 
640
+ #: admin.php:1439
641
  msgid "Local files deleted:"
642
  msgstr ""
643
 
644
+ #: admin.php:921 admin.php:925 admin.php:933 admin.php:937
645
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
646
  msgstr ""
647
 
648
+ #: admin.php:698
649
  msgid "remote files deleted"
650
  msgstr ""
651
 
652
+ #: admin.php:696
653
  msgid "Complete"
654
  msgstr ""
655
 
656
+ #: admin.php:695
657
  msgid "Do you want to carry out the import?"
658
  msgstr ""
659
 
660
+ #: admin.php:694
661
  msgid "Which was exported on:"
662
  msgstr ""
663
 
664
+ #: admin.php:693
665
  msgid "This will import data from:"
666
  msgstr ""
667
 
668
+ #: admin.php:692
669
  msgid "Importing..."
670
  msgstr ""
671
 
672
+ #: admin.php:689
673
  msgid "You have not yet selected a file to import."
674
  msgstr ""
675
 
676
+ #: admin.php:673
677
  msgid "Your export file will be of your displayed settings, not your saved ones."
678
  msgstr ""
679
 
718
  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"
719
  msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
720
 
721
+ #: admin.php:2144
722
  msgid "To fix this problem go here."
723
  msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
724
 
725
+ #: admin.php:2144
726
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
727
  msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
728
 
729
+ #: admin.php:657
730
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
731
  msgstr "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
732
 
758
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
759
  msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
760
 
761
+ #: methods/s3.php:1014
762
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
763
  msgstr "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
764
 
765
+ #: methods/s3.php:91
766
  msgid "No settings were found - please go to the Settings tab and check your settings"
767
  msgstr "কোন সেটিং পাওয়া যায়নি - দয়া করে সেটিং ট্যাবে গিয়ে আপনার সেটিং যাচাই করুন।"
768
 
830
  msgid "Public key was sent to:"
831
  msgstr "পাবলিক কি টি পাঠানো হয়েছিল:"
832
 
833
+ #: backup.php:2079
834
  msgid "Failed to open directory (check the file permissions and ownership): %s"
835
  msgstr "ডিরেক্টরি খুলতে ব্যর্থ (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন): %s"
836
 
837
+ #: backup.php:2057
838
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
839
  msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
840
 
880
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
881
  msgstr "একটি পিন তৈরি করুনঃ এই পিনটির একটি অনন্য নাম দিন (উদাহরণস্বরূপ, এই সাইট টি কিসের জন্য তা উল্লেখ করতে পারেন), তারপর \"পিন তৈরি করুন\" এ ক্লিক করুনঃ"
882
 
883
+ #: methods/googledrive.php:407
884
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
885
  msgstr "আপলোড সফল হবে নাঃ যেকোন একটি ফাইলের %s লিমিট হচ্ছে %s, যেখনে এই ফাইলের সাইজ হচ্ছে %s GB (%d bytes)"
886
 
887
+ #: methods/ftp.php:390
888
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
889
  msgstr "এটা কোন কোন সময় ফায়ারওয়ালের কারনে ঘটে থাকে - expert সেটিং থেকে SSL বন্ধ করে আবার চেস্টা করে দেখুন।"
890
 
891
+ #: methods/ftp.php:362
892
  msgid "login"
893
  msgstr "লগিন"
894
 
895
+ #: methods/email.php:79
896
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
897
  msgstr ""
898
 
899
+ #: methods/email.php:30
900
  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."
901
  msgstr ""
902
 
903
+ #: class-updraftplus.php:1557
904
  msgid "Size: %s MB"
905
  msgstr "সাইজঃ %s MB"
906
 
912
  msgid "i.e. you have an account there"
913
  msgstr "যদি আপনার সেখানে একটি একাউণ্ট (পরিচিতি) থাকে"
914
 
915
+ #: templates/wp-admin/settings/form-contents.php:359
916
  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)."
917
  msgstr ""
918
 
920
  msgid "Now"
921
  msgstr "এখন"
922
 
923
+ #: class-updraftplus.php:4037 restorer.php:996
924
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
925
  msgstr ""
926
 
928
  msgid "(tap on an icon to select or unselect)"
929
  msgstr "(সিলেক্ট অথবা আনসিলেক্ট করার জন্য আইকনের উপর টিপ দিন)"
930
 
931
+ #: methods/updraftvault.php:289 methods/updraftvault.php:295
932
+ #: methods/updraftvault.php:301
933
  msgid "%s per year"
934
  msgstr "প্রতি বৎসর %s"
935
 
936
+ #: methods/updraftvault.php:288 methods/updraftvault.php:294
937
+ #: methods/updraftvault.php:300
938
  msgid "or (annual discount)"
939
  msgstr "অথবা (বাৎসরিক মূল্যছাড়)"
940
 
941
+ #: methods/updraftvault.php:233
942
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
943
  msgstr "এই সাইটের জন্য কোন ভল্ট কানেকশন পাওয়া যায়নি (এটা কি স্থানান্তর করা হয়েছে?), দয়া করে ডিসকানেক্ট করে আবার কানেক্ট করুন।"
944
 
945
+ #: class-updraftplus.php:418 class-updraftplus.php:463
946
  msgid "The given file was not found, or could not be read."
947
  msgstr "প্রদত্ত ফাইল পাওয়া যায়নি অথবা পড়া সম্ভব হয়নি।"
948
 
1042
  msgid "UpdraftCentral Connection"
1043
  msgstr ""
1044
 
1045
+ #: backup.php:849 class-updraftplus.php:2813
1046
  msgid "The backup was aborted by the user"
1047
  msgstr ""
1048
 
1049
+ #: admin.php:4003
1050
  msgid "Your settings have been saved."
1051
  msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
1052
 
1053
+ #: admin.php:3196
1054
  msgid "Total backup size:"
1055
  msgstr ""
1056
 
1057
+ #: admin.php:2641
1058
  msgid "stop"
1059
  msgstr ""
1060
 
1061
+ #: admin.php:2479
1062
  msgid "The backup has finished running"
1063
  msgstr ""
1064
 
1084
  msgid "calculate"
1085
  msgstr "গণনা করুন"
1086
 
1087
+ #: admin.php:672
1088
  msgid "You should save your changes to ensure that they are used for making your backup."
1089
  msgstr ""
1090
 
1091
+ #: admin.php:665
1092
  msgid "We requested to delete the file, but could not understand the server's response"
1093
  msgstr ""
1094
 
1095
+ #: admin.php:664
1096
  msgid "Please enter a valid URL"
1097
  msgstr "দয়া করে সঠিক URL প্রবেশ করান"
1098
 
1099
+ #: admin.php:647
1100
  msgid "Saving..."
1101
  msgstr "সংরক্ষণ হচ্ছে..."
1102
 
1103
+ #: admin.php:610
1104
  msgid "Error: the server sent us a response which we did not understand."
1105
  msgstr ""
1106
 
1107
+ #: admin.php:602
1108
  msgid "Fetching..."
1109
  msgstr "আনা হচ্ছে..."
1110
 
1112
  msgid "Asia Pacific (Seoul)"
1113
  msgstr ""
1114
 
 
 
 
 
1115
  #: restorer.php:1618
1116
  msgid "Uploads URL:"
1117
  msgstr ""
1118
 
1119
+ #: backup.php:400
1120
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1121
  msgstr ""
1122
 
1128
  msgid "Skipping table %s: this table will not be restored"
1129
  msgstr ""
1130
 
1131
+ #: class-updraftplus.php:4088 restorer.php:1642
1132
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1133
  msgstr ""
1134
 
1135
+ #: class-updraftplus.php:4084
1136
  msgid "Please read this link for important information on this process."
1137
  msgstr ""
1138
 
1139
+ #: class-updraftplus.php:4084
1140
  msgid "It will be imported as a new site."
1141
  msgstr ""
1142
 
1143
+ #: admin.php:2292 templates/wp-admin/notices/horizontal-notice.php:16
1144
  #: templates/wp-admin/notices/horizontal-notice.php:18
1145
  msgid "Dismiss"
1146
  msgstr "খারিজ"
1147
 
1148
+ #: admin.php:684
1149
  msgid "Please fill in the required information."
1150
  msgstr ""
1151
 
1152
+ #: addons/multisite.php:550
1153
  msgid "Read more..."
1154
  msgstr "আরও পড়ুন..."
1155
 
1156
+ #: addons/multisite.php:550
1157
  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."
1158
  msgstr ""
1159
 
1160
+ #: addons/multisite.php:541
1161
  msgid "may include some site-wide data"
1162
  msgstr ""
1163
 
1164
+ #: addons/multisite.php:536
1165
  msgid "All sites"
1166
  msgstr ""
1167
 
1168
+ #: addons/multisite.php:532
1169
  msgid "Which site to restore"
1170
  msgstr ""
1171
 
1172
+ #: addons/multisite.php:368 addons/multisite.php:378
1173
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1174
  msgstr ""
1175
 
1217
  msgid "Call WordPress action:"
1218
  msgstr ""
1219
 
1220
+ #: admin.php:2327
1221
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1222
  msgstr ""
1223
 
1224
+ #: admin.php:3604
1225
  msgid "Skipping: this archive was already restored."
1226
  msgstr ""
1227
 
1228
+ #: templates/wp-admin/settings/form-contents.php:200
1229
  msgid "File Options"
1230
  msgstr ""
1231
 
1253
  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)."
1254
  msgstr ""
1255
 
1256
+ #: admin.php:3885
1257
  msgid "Send this backup to remote storage"
1258
  msgstr ""
1259
 
1260
+ #: admin.php:3883
1261
  msgid "Check out UpdraftPlus Vault."
1262
  msgstr ""
1263
 
1264
+ #: admin.php:3883
1265
  msgid "Not got any remote storage?"
1266
  msgstr ""
1267
 
1268
+ #: admin.php:3883
1269
  msgid "settings"
1270
  msgstr "সেটিংস"
1271
 
1272
+ #: admin.php:3883
1273
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1274
  msgstr ""
1275
 
1276
+ #: admin.php:2325
1277
  msgid "Include any files in the backup"
1278
  msgstr ""
1279
 
1280
+ #: admin.php:2311
1281
  msgid "Include the database in the backup"
1282
  msgstr ""
1283
 
1284
+ #: admin.php:2291
1285
  msgid "Continue restoration"
1286
  msgstr ""
1287
 
1288
+ #: admin.php:2286
1289
  msgid "You have an unfinished restoration operation, begun %s ago."
1290
  msgstr ""
1291
 
1292
+ #: admin.php:2285
1293
  msgid "Unfinished restoration"
1294
  msgstr ""
1295
 
1296
+ #: admin.php:2283
1297
  msgid "%s minutes, %s seconds"
1298
  msgstr ""
1299
 
1300
+ #: admin.php:2230
1301
  msgid "Backup Contents And Schedule"
1302
  msgstr ""
1303
 
1305
  msgid "Premium / Extensions"
1306
  msgstr ""
1307
 
1308
+ #: admin.php:2010 admin.php:2019
1309
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1310
  msgstr ""
1311
 
1312
+ #: addons/morefiles.php:53 admin.php:670
1313
  msgctxt "(verb)"
1314
  msgid "Download"
1315
  msgstr ""
1316
 
1317
+ #: admin.php:595
1318
  msgid "You have chosen to backup files, but no file entities have been selected"
1319
  msgstr ""
1320
 
1321
+ #: admin.php:504
1322
  msgid "Extensions"
1323
  msgstr ""
1324
 
1325
+ #: admin.php:496 templates/wp-admin/settings/tab-bar.php:8
1326
  msgid "Advanced Tools"
1327
  msgstr ""
1328
 
1403
  msgid "Standard"
1404
  msgstr ""
1405
 
1406
+ #: addons/azure.php:523
1407
  msgid "container"
1408
  msgstr ""
1409
 
1410
+ #: addons/azure.php:523
1411
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1412
  msgstr ""
1413
 
1414
+ #: addons/azure.php:522
1415
  msgid "optional"
1416
  msgstr ""
1417
 
1418
+ #: addons/azure.php:522
1419
  msgid "Prefix"
1420
  msgstr ""
1421
 
1422
+ #: addons/azure.php:517
1423
  msgid "See Microsoft's guidelines on container naming by following this link."
1424
  msgstr ""
1425
 
1426
+ #: addons/azure.php:517
1427
  msgid "If the %s does not already exist, then it will be created."
1428
  msgstr ""
1429
 
1430
+ #: addons/azure.php:517
1431
  msgid "Enter the path of the %s you wish to use here."
1432
  msgstr ""
1433
 
1434
+ #: addons/azure.php:506
1435
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1436
  msgstr ""
1437
 
1438
+ #: addons/azure.php:505
1439
  msgid "Account Name"
1440
  msgstr ""
1441
 
1442
+ #: addons/azure.php:505 addons/azure.php:509
1443
  msgid "Azure"
1444
  msgstr ""
1445
 
1446
+ #: addons/azure.php:501
1447
  msgid "Create Azure credentials in your Azure developer console."
1448
  msgstr ""
1449
 
1450
+ #: addons/azure.php:449
1451
  msgid "Could not create the container"
1452
  msgstr ""
1453
 
1454
+ #: addons/azure.php:343
1455
  msgid "Could not access container"
1456
  msgstr ""
1457
 
1458
+ #: class-updraftplus.php:2830
1459
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1460
  msgstr ""
1461
 
1462
+ #: backup.php:1559
1463
  msgid "the options table was not found"
1464
  msgstr ""
1465
 
1466
+ #: backup.php:1557
1467
  msgid "no options or sitemeta table was found"
1468
  msgstr ""
1469
 
1470
+ #: backup.php:1557 backup.php:1559
1471
  msgid "The database backup appears to have failed"
1472
  msgstr ""
1473
 
1474
+ #: backup.php:1431
1475
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1476
  msgstr ""
1477
 
1588
  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)."
1589
  msgstr ""
1590
 
1591
+ #: admin.php:1438
1592
  msgid "Backup sets removed:"
1593
  msgstr ""
1594
 
1595
+ #: admin.php:683
1596
  msgid "Processing..."
1597
  msgstr ""
1598
 
1599
+ #: admin.php:681
1600
  msgid "For backups older than"
1601
  msgstr ""
1602
 
1603
+ #: admin.php:680
1604
  msgid "week(s)"
1605
  msgstr ""
1606
 
1607
+ #: admin.php:679
1608
  msgid "hour(s)"
1609
  msgstr ""
1610
 
1611
+ #: admin.php:678
1612
  msgid "day(s)"
1613
  msgstr ""
1614
 
1615
+ #: admin.php:677
1616
  msgid "in the month"
1617
  msgstr ""
1618
 
1619
+ #: admin.php:676
1620
  msgid "day"
1621
  msgstr ""
1622
 
1636
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1637
  msgstr ""
1638
 
1639
+ #: methods/updraftvault.php:595
1640
  msgid "You do not currently have any UpdraftPlus Vault quota"
1641
  msgstr ""
1642
 
1643
+ #: class-updraftplus.php:4123
1644
  msgid "You must upgrade MySQL to be able to use this database."
1645
  msgstr ""
1646
 
1647
+ #: class-updraftplus.php:4123
1648
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1649
  msgstr ""
1650
 
1651
+ #: admin.php:2129
1652
  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."
1653
  msgstr ""
1654
 
1655
+ #: methods/updraftvault.php:322
1656
  msgid "Don't know your email address, or forgotten your password?"
1657
  msgstr "আপনার ইমেল ঠিকানা জানা নেই, নাকি আপনার পাসওয়ার্ড ভুলে গিয়েছেন?"
1658
 
1659
+ #: methods/updraftvault.php:315
1660
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1661
  msgstr ""
1662
 
1663
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1664
  msgid "Read the FAQs here."
1665
  msgstr "এখানে প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী পড়ুন।"
1666
 
1672
  msgid "Server-side encryption"
1673
  msgstr "সার্ভার সাইড এনক্রিপশন"
1674
 
1675
+ #: methods/updraftvault.php:604
1676
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1677
  msgstr ""
1678
 
1679
+ #: admin.php:929
1680
  msgid "Go to the remote storage settings in order to connect."
1681
  msgstr ""
1682
 
1683
+ #: admin.php:929
1684
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1685
  msgstr ""
1686
 
1687
+ #: methods/updraftvault.php:304
1688
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1689
  msgstr "পেমেন্ট ইউএস ডলার, ইউরো বা GB pounds sterling এর মাধ্যমে কার্ড বা পেপ্যাল এর দ্বারা করতে হবে।"
1690
 
1691
+ #: admin.php:653
1692
  msgid "Update quota count"
1693
  msgstr " প্রাপ্য সংখ্যা হালনাগাদ"
1694
 
1695
+ #: admin.php:652
1696
  msgid "Counting..."
1697
  msgstr "গণনা করা হচ্ছে..."
1698
 
1699
+ #: admin.php:651
1700
  msgid "Disconnecting..."
1701
  msgstr "সংযোগ বিচ্ছিন্ন করা হচ্ছে..."
1702
 
1703
+ #: admin.php:649
1704
  msgid "Connecting..."
1705
  msgstr "সংযোগ করা হচ্ছে..."
1706
 
1707
+ #: methods/updraftvault.php:378 methods/updraftvault.php:447
1708
  msgid "Refresh current status"
1709
  msgstr "বর্তমান অবস্থা পুনঃবিবেচনা করুন"
1710
 
1711
+ #: methods/updraftvault.php:376 methods/updraftvault.php:392
1712
+ #: methods/updraftvault.php:394 methods/updraftvault.php:447
1713
  msgid "Get more quota"
1714
  msgstr "আরও প্রাপ্য নিন"
1715
 
1716
+ #: methods/updraftvault.php:373 methods/updraftvault.php:389
1717
+ #: methods/updraftvault.php:428
1718
  msgid "Current use:"
1719
  msgstr "বর্তমান ব্যাবহার:"
1720
 
1721
+ #: methods/updraftvault.php:368
1722
  msgid "You can get more quota here"
1723
  msgstr "আপনি এখান থেকে আরও প্রাপ্য পেতে পারেন"
1724
 
1725
+ #: methods/updraftvault.php:368
1726
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1727
  msgstr "%s ইরোর: আপনার যথেষ্ট প্রাপ্য(%s) নেই আর্কাইভটি(%s) আপলোড করার জন্য।"
1728
 
1729
+ #: admin.php:650 methods/updraftvault.php:360
1730
  msgid "Disconnect"
1731
  msgstr "সংযোগ বিচ্ছিন্ন করুন"
1732
 
1733
+ #: methods/updraftvault.php:352
1734
  msgid "Quota:"
1735
  msgstr "প্রাপ্য:"
1736
 
1737
+ #: methods/updraftvault.php:350
1738
  msgid "Vault owner"
1739
  msgstr "ভল্টের মালিক"
1740
 
1741
+ #: methods/updraftvault.php:350
1742
  msgid "Well done - there's nothing more needed to set up."
1743
  msgstr "চমৎকার - এখন আর আপনাকে কিছুই করতে হবে না।"
1744
 
1745
+ #: methods/updraftvault.php:350
1746
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1747
  msgstr "এই সাইটটি UpdraftPlus Vault এ <strong>সংযুক্ত</strong>।"
1748
 
1749
+ #: methods/updraftvault.php:346
1750
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1751
  msgstr "আপনি UpdraftPlus Vault এ<strong>সংযুক্ত নন</strong>।"
1752
 
1753
+ #: methods/updraftvault.php:322
1754
  msgid "Go here for help"
1755
  msgstr "সাহায্যের জন্য এখানে যান"
1756
 
1757
+ #: methods/updraftvault.php:317
1758
  msgid "E-mail"
1759
  msgstr "ই-মেইল"
1760
 
1761
+ #: methods/updraftvault.php:310 methods/updraftvault.php:325
1762
  msgid "Back..."
1763
  msgstr "ফিরে চলুন..."
1764
 
1765
+ #: methods/updraftvault.php:304
1766
  msgid "Subscriptions can be cancelled at any time."
1767
  msgstr "সাবস্ক্রিপশন যেকোনো সময় বাতিল করা সম্ভব"
1768
 
1769
+ #: methods/updraftvault.php:287 methods/updraftvault.php:293
1770
+ #: methods/updraftvault.php:299
1771
  msgid "%s per quarter"
1772
  msgstr "%s প্রতি তিন মাসে"
1773
 
1774
+ #: central/bootstrap.php:542 methods/updraftvault.php:277
1775
+ #: methods/updraftvault.php:307
1776
  msgid "Read more about it here."
1777
  msgstr "এইটি সম্পর্কে আরও পড়ুন এখানে।"
1778
 
1779
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1780
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1781
  msgstr "UpdraftPlus Vault অ্যামাজনের বিশ্বসেরা ডাটা সেন্টারে তৈরী। এছাড়া অতিরিক্ত ডাটার স্টোরেজের মাধ্যমে আছে ৯৯.৯৯৯৯৯৯৯৯৯% বিশ্বাসযোগ্যতা"
1782
 
1783
+ #: methods/updraftvault.php:273
1784
  msgid "Already purchased space?"
1785
  msgstr "জায়গা আগে থেকে কিনেছেন?"
1786
 
1787
+ #: methods/updraftvault.php:270
1788
  msgid "Show the options"
1789
  msgstr "অপশন দেখান"
1790
 
1791
+ #: methods/updraftvault.php:269
1792
  msgid "First time user?"
1793
  msgstr "প্রথম বার ব্যাবহারকারি?"
1794
 
1795
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1796
  msgid "Press a button to get started."
1797
  msgstr "কাজ শুরু করতে যেকোনো একটি বোতাম চাপুন।"
1798
 
1799
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1800
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1801
  msgstr "UpdraftPlus Vault আপনাকে স্টোরেজের সুবিধা দেয় যেটি <strong>বিশ্বাসযোগ্য, সহজে ব্যাবহারযোগ্য এবং চমৎকার দামে</strong>।"
1802
 
1803
+ #: methods/updraftvault.php:229
1804
  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."
1805
  msgstr ""
1806
 
1807
+ #: methods/updraftvault.php:226
1808
  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!"
1809
  msgstr "আপনার UpdraftPlus Vault এর পেমেন্ট নির্দিষ্ট সময় অতিক্রম করে ফেলেছে। এবং আপনার এ্যাকাউন্ট কিছু দিনের মাঝে বন্ধ করে দেয়া হবে, এবং আপনি আপনার প্রাপ্য এবং এর সকল তথ্য হারাবেন। দয়া করে তাড়াতাড়ি রিনিউ করুন!"
1810
 
1811
+ #: methods/updraftvault.php:223
1812
  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."
1813
  msgstr "আপনার UpdraftPlus Premium কেনার এক বছর অতিক্রান্ত হয়ে গিয়েছে। আপনার এখনি তা নবিনীকরন করা উচিত আপনার ১২ মাসের বিনামূল্যের স্টোরেজ এর সুবিধা রক্ষার্থে যা আপনি UpdraftPlus Premium কাস্টমার হওয়ার জন্য পেয়ে থাকেন।"
1814
 
1815
+ #: methods/updraftvault.php:77
1816
  msgid "Updraft Vault"
1817
  msgstr "ভল্ট আপডেট করুন"
1818
 
1819
+ #: addons/azure.php:365 addons/googlecloud.php:693 methods/s3.php:1042
1820
  msgid "Delete failed:"
1821
  msgstr "ডিলিট ব্যর্থ:"
1822
 
1823
+ #: backup.php:3019
1824
  msgid "The zip engine returned the message: %s."
1825
  msgstr "Zip engine টি এই বার্তা নিয়ে এসেছে: %s।"
1826
 
1844
  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."
1845
  msgstr ""
1846
 
1847
+ #: addons/migrator.php:1742 admin.php:659
1848
  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."
1849
  msgstr ""
1850
 
1912
  msgid "Backup made by %s"
1913
  msgstr "ব্যাকআপ তৈরি করেছেন %s"
1914
 
1915
+ #: methods/addon-base-v2.php:187
1916
  msgid "This storage method does not allow downloading"
1917
  msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
1918
 
1919
+ #: admin.php:3364
1920
  msgid "(backup set imported from remote location)"
1921
  msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
1922
 
1936
  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."
1937
  msgstr ""
1938
 
1939
+ #: addons/migrator.php:1770 admin.php:666
1940
  msgid "Testing connection..."
1941
  msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
1942
 
1943
+ #: admin.php:663
1944
  msgid "Deleting..."
1945
  msgstr "মুছে ফেলা হচ্ছে..."
1946
 
1947
+ #: admin.php:662
1948
  msgid "key name"
1949
  msgstr "চাবির(কি) নাম"
1950
 
1951
+ #: admin.php:660
1952
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1953
  msgstr "এই চাবিকাঠির একটি নাম দিন (e.g. indicate the site it is for):"
1954
 
1955
+ #: admin.php:657
1956
  msgid "Creating..."
1957
  msgstr "তৈরি করা হচ্ছে..."
1958
 
1976
  msgid "Or, send a backup to another site"
1977
  msgstr "অথবা, ব্যাকআপ অন্য একটি সাইটে পাঠান"
1978
 
1979
+ #: addons/migrator.php:1937 admin.php:667
1980
  msgid "Send"
1981
  msgstr "পাঠান"
1982
 
1983
+ #: addons/migrator.php:1931 admin.php:658
1984
  msgid "Send to site:"
1985
  msgstr ""
1986
 
2012
  msgid "key"
2013
  msgstr "চাবি"
2014
 
2015
+ #: methods/ftp.php:336
2016
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2017
  msgstr ""
2018
 
2019
+ #: methods/ftp.php:334
2020
  msgid "Passive mode"
2021
  msgstr ""
2022
 
2023
+ #: methods/ftp.php:329
2024
  msgid "Remote path"
2025
  msgstr ""
2026
 
2027
+ #: methods/ftp.php:324
2028
  msgid "FTP password"
2029
  msgstr "FTP পাসওয়ার্ড"
2030
 
2031
+ #: methods/ftp.php:319
2032
  msgid "FTP login"
2033
  msgstr "FTP লগইন"
2034
 
2035
+ #: methods/ftp.php:314
2036
  msgid "FTP server"
2037
  msgstr "FTP সার্ভার"
2038
 
2044
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2045
  msgstr ""
2046
 
2047
+ #: addons/migrator.php:2180 admin.php:655
2048
  msgid "Add site"
2049
  msgstr "সাইট যুক্ত করুন"
2050
 
2051
+ #: admin.php:654
2052
  msgid "Adding..."
2053
  msgstr "যুক্ত করা হচ্ছে..."
2054
 
2055
+ #: udaddons/options.php:345
2056
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2057
  msgstr ""
2058
 
2080
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2081
  msgstr ""
2082
 
2083
+ #: admin.php:646 admin.php:672 admin.php:673
2084
  msgid "You have made changes to your settings, and not saved."
2085
  msgstr ""
2086
 
2092
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2093
  msgstr ""
2094
 
2095
+ #: addons/azure.php:501 addons/migrator.php:1757 addons/onedrive.php:961
2096
  msgid "For longer help, including screenshots, follow this link."
2097
  msgstr ""
2098
 
2116
  msgid "Please re-authorize the connection to your %s account."
2117
  msgstr ""
2118
 
2119
+ #: methods/email.php:75
2120
  msgid "configure it here"
2121
  msgstr "এটিকে এইখানে কনফিগার করুন"
2122
 
2123
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2124
  msgid "To remove the block, please go here."
2125
  msgstr "ব্লক সরাতে, এখানে যান।"
2126
 
2265
  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)"
2266
  msgstr ""
2267
 
2268
+ #: methods/s3.php:844
2269
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2270
  msgstr ""
2271
 
2281
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2282
  msgstr ""
2283
 
2284
+ #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:568
2285
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2286
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2287
  msgstr ""
2288
 
2289
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2290
  #: udaddons/updraftplus-addons.php:747
2291
  msgid "It appears that your web server's IP Address (%s) is blocked."
2292
  msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
2293
 
2294
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2295
  #: udaddons/updraftplus-addons.php:747
2296
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2297
  msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
2342
  msgid "(at same time as files backup)"
2343
  msgstr ""
2344
 
2345
+ #: admin.php:2888
2346
  msgid "No backup has been completed"
2347
  msgstr ""
2348
 
2390
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2391
  msgstr ""
2392
 
2393
+ #: methods/s3.php:138 methods/s3.php:139 methods/s3.php:140 methods/s3.php:148
2394
+ #: methods/s3.php:149 methods/s3.php:150
2395
  msgid "%s Error: Failed to initialise"
2396
  msgstr "%s ত্রুটি: ইনিশিয়ালাইজ করতে ব্যর্থ"
2397
 
2398
+ #: templates/wp-admin/settings/form-contents.php:249
2399
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2400
  msgid "or"
2401
  msgstr "অথবা"
2405
  msgid "or"
2406
  msgstr "অথবা"
2407
 
2408
+ #: admin.php:640
2409
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2410
  msgstr ""
2411
 
2412
+ #: addons/sftp.php:380
2413
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2414
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2415
  msgstr ""
2416
 
2417
+ #: addons/sftp.php:343
2418
  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."
2419
  msgstr ""
2420
 
2421
+ #: methods/openstack2.php:156
2422
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2423
  msgid "tenant"
2424
  msgstr ""
2425
 
2426
+ #: methods/openstack2.php:106
2427
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2428
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2429
  msgstr ""
2430
 
2431
+ #: templates/wp-admin/settings/form-contents.php:320
2432
  msgid "your site's admin address"
2433
  msgstr ""
2434
 
2435
+ #: templates/wp-admin/settings/form-contents.php:320
2436
  msgid "Check this box to have a basic report sent to"
2437
  msgstr ""
2438
 
2439
+ #: admin.php:2897
2440
  msgctxt "i.e. Non-automatic"
2441
  msgid "Manual"
2442
  msgstr ""
2450
  msgid "Change Lock Settings"
2451
  msgstr "লক সেটিং পরিবর্তন করুন"
2452
 
2453
+ #: addons/morefiles.php:245
2454
  msgid "Any other file/directory on your server that you wish to back up"
2455
  msgstr ""
2456
 
2457
+ #: admin.php:2146
2458
  msgid "For even more features and personal support, check out "
2459
  msgstr ""
2460
 
2470
  msgid "Database decryption phrase"
2471
  msgstr "ডাটাবেস ডিক্রিপশন শব্দগুচ্ছ"
2472
 
2473
+ #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:645
2474
  msgid "Automatic backup before update"
2475
  msgstr "আপডেট করার আগে স্বয়ংক্রিয় ব্যাকআপ"
2476
 
2550
  msgid "The admin password has now been removed."
2551
  msgstr ""
2552
 
2553
+ #: addons/morefiles.php:134
2554
  msgid "(learn more about this significant option)"
2555
  msgstr ""
2556
 
2557
+ #: udaddons/options.php:280
2558
  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."
2559
  msgstr ""
2560
 
2561
+ #: admin.php:2479 admin.php:3387
2562
  msgid "View Log"
2563
  msgstr ""
2564
 
2575
  msgid "and retain this many scheduled backups"
2576
  msgstr ""
2577
 
2578
+ #: admin.php:2858
2579
  msgid "incremental backup; base backup: %s"
2580
  msgstr ""
2581
 
2587
  msgid "Upload files into UpdraftPlus."
2588
  msgstr ""
2589
 
2590
+ #: admin.php:880 includes/class-commands.php:363
2591
  #: templates/wp-admin/settings/tab-status.php:22
2592
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2593
  msgstr ""
2594
 
2595
+ #: class-updraftplus.php:4073
2596
  msgid "Backup label:"
2597
  msgstr ""
2598
 
2599
+ #: admin.php:1674
2600
  msgid "Error: unexpected file read fail"
2601
  msgstr ""
2602
 
2603
+ #: backup.php:3025
2604
  msgid "check your log for more details."
2605
  msgstr ""
2606
 
2607
+ #: backup.php:3023
2608
  msgid "your web hosting account appears to be full; please see: %s"
2609
  msgstr ""
2610
 
2611
+ #: backup.php:3021
2612
  msgid "A zip error occurred"
2613
  msgstr ""
2614
 
2616
  msgid "Your label for this backup (optional)"
2617
  msgstr ""
2618
 
2619
+ #: addons/googlecloud.php:822 methods/googledrive.php:902
2620
  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."
2621
  msgstr ""
2622
 
2623
+ #: methods/updraftvault.php:607 udaddons/updraftplus-addons.php:789
2624
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2625
  msgstr ""
2626
 
2627
+ #: methods/updraftvault.php:604 udaddons/updraftplus-addons.php:785
2628
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2629
  msgstr ""
2630
 
2631
+ #: methods/updraftvault.php:544 udaddons/updraftplus-addons.php:655
2632
  msgid "You need to supply both an email address and a password"
2633
  msgstr ""
2634
 
2636
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2637
  msgstr ""
2638
 
2639
+ #: class-updraftplus.php:4092
2640
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2641
  msgstr ""
2642
 
2643
+ #: class-updraftplus.php:4092
2644
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2645
  msgstr ""
2646
 
2668
  msgid "Rows per batch"
2669
  msgstr ""
2670
 
2671
+ #: udaddons/options.php:109
2672
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2673
  msgstr ""
2674
 
2675
+ #: udaddons/options.php:107 udaddons/options.php:109
2676
  msgid "You need to connect to receive future updates to UpdraftPlus."
2677
  msgstr ""
2678
 
2679
+ #: class-updraftplus.php:4065
2680
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2681
  msgstr ""
2682
 
2683
+ #: class-updraftplus.php:4065
2684
  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."
2685
  msgstr ""
2686
 
2687
+ #: class-updraftplus.php:4065
2688
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2689
  msgstr ""
2690
 
2691
+ #: class-updraftplus.php:4065
2692
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2693
  msgstr ""
2694
 
2713
  msgid "UpdraftPlus is on social media - check us out!"
2714
  msgstr ""
2715
 
2716
+ #: admin.php:3448
2717
  msgid "Why am I seeing this?"
2718
  msgstr "আমি কেন এটি দেখছি?"
2719
 
2725
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2726
  msgstr ""
2727
 
2728
+ #: admin.php:1622 admin.php:1634
2729
  msgid "Start backup"
2730
  msgstr "ব্যাকআপ শুরু করুন"
2731
 
2732
+ #: class-updraftplus.php:4037 restorer.php:996
2733
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2734
  msgstr ""
2735
 
2736
+ #: admin.php:2802
2737
  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."
2738
  msgstr ""
2739
 
2741
  msgid "Unless you have a problem, you can completely ignore everything here."
2742
  msgstr ""
2743
 
2744
+ #: admin.php:1832
2745
  msgid "This file could not be uploaded"
2746
  msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
2747
 
2748
+ #: admin.php:1797
2749
  msgid "You will find more information about this in the Settings section."
2750
  msgstr ""
2751
 
2765
  msgid "Memory limit"
2766
  msgstr ""
2767
 
2768
+ #: class-updraftplus.php:4195 restorer.php:1441
2769
  msgid "restoration"
2770
  msgstr ""
2771
 
2773
  msgid "Table to be implicitly dropped: %s"
2774
  msgstr ""
2775
 
2776
+ #: backup.php:844
2777
  msgid "Incremental"
2778
  msgstr ""
2779
 
2780
+ #: backup.php:844
2781
  msgid "Full backup"
2782
  msgstr ""
2783
 
2793
  msgid "Backup succeeded"
2794
  msgstr ""
2795
 
2796
+ #: admin.php:2898 admin.php:2899 admin.php:2900 updraftplus.php:92
2797
  #: updraftplus.php:93
2798
  msgid "Every %s hours"
2799
  msgstr ""
2836
  msgid "Too many database errors have occurred - aborting"
2837
  msgstr ""
2838
 
2839
+ #: backup.php:910
2840
  msgid "read more at %s"
2841
  msgstr ""
2842
 
2843
+ #: backup.php:910
2844
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2845
  msgstr ""
2846
 
2847
+ #: methods/googledrive.php:908
2848
  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."
2849
  msgstr ""
2850
 
2851
+ #: admin.php:3216
2852
  msgid "You have not yet made any backups."
2853
  msgstr ""
2854
 
2855
+ #: templates/wp-admin/settings/form-contents.php:212
2856
  msgid "Database Options"
2857
  msgstr ""
2858
 
2868
  msgid "Free disk space in account:"
2869
  msgstr ""
2870
 
2871
+ #: admin.php:3974 templates/wp-admin/settings/tab-status.php:27
2872
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2873
  msgstr ""
2874
 
2875
+ #: admin.php:480 admin.php:614 admin.php:1487
2876
  #: includes/deprecated-actions.php:30
2877
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2878
  #: templates/wp-admin/settings/tab-bar.php:6
2879
  msgid "Existing Backups"
2880
  msgstr ""
2881
 
2882
+ #: admin.php:472 templates/wp-admin/settings/tab-bar.php:5
2883
  msgid "Current Status"
2884
  msgstr ""
2885
 
2886
+ #: admin.php:885
2887
  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."
2888
  msgstr ""
2889
 
2890
+ #: admin.php:885
2891
  msgid "To make a backup, just press the Backup Now button."
2892
  msgstr ""
2893
 
2894
+ #: admin.php:885
2895
  msgid "Welcome to UpdraftPlus!"
2896
  msgstr ""
2897
 
2963
  msgid "user"
2964
  msgstr ""
2965
 
2966
+ #: class-updraftplus.php:1554
2967
  msgid "External database (%s)"
2968
  msgstr ""
2969
 
2970
+ #: methods/googledrive.php:908
2971
  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."
2972
  msgstr ""
2973
 
2974
+ #: methods/googledrive.php:371
2975
  msgid "failed to access parent folder"
2976
  msgstr ""
2977
 
2978
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2979
+ #: methods/googledrive.php:328
2980
  msgid "However, subsequent access attempts failed:"
2981
  msgstr ""
2982
 
2983
+ #: admin.php:3241
2984
  msgid "External database"
2985
  msgstr ""
2986
 
2987
+ #: templates/wp-admin/settings/form-contents.php:354
2988
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2989
  msgstr ""
2990
 
2991
+ #: templates/wp-admin/settings/form-contents.php:294
2992
  msgid "Back up more databases"
2993
  msgstr ""
2994
 
2995
+ #: templates/wp-admin/settings/form-contents.php:251
2996
  msgid "First, enter the decryption key"
2997
  msgstr ""
2998
 
2999
+ #: templates/wp-admin/settings/form-contents.php:233
3000
  msgid "You can manually decrypt an encrypted database here."
3001
  msgstr ""
3002
 
3003
+ #: templates/wp-admin/settings/form-contents.php:221
3004
  msgid "It can also backup external databases."
3005
  msgstr ""
3006
 
3007
+ #: templates/wp-admin/settings/form-contents.php:221
3008
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3009
  msgstr ""
3010
 
3012
  msgid "use UpdraftPlus Premium"
3013
  msgstr ""
3014
 
3015
+ #: class-updraftplus.php:3955
3016
  msgid "Decryption failed. The database file is encrypted."
3017
  msgstr ""
3018
 
3024
  msgid "An error occurred on the first %s command - aborting run"
3025
  msgstr ""
3026
 
3027
+ #: addons/moredatabase.php:98 backup.php:1372
3028
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3029
  msgstr ""
3030
 
3031
+ #: backup.php:1372
3032
  msgid "database connection attempt failed."
3033
  msgstr ""
3034
 
3036
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3037
  msgstr ""
3038
 
3039
+ #: addons/google-enhanced.php:84
3040
  msgid "In %s, path names are case sensitive."
3041
  msgstr ""
3042
 
3043
+ #: addons/azure.php:523 addons/google-enhanced.php:82 addons/onedrive.php:989
3044
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3045
  msgstr ""
3046
 
3047
+ #: addons/google-enhanced.php:82 addons/googlecloud.php:860
3048
  #: addons/onedrive.php:989
3049
  msgid "e.g. %s"
3050
  msgstr ""
3051
 
3052
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3053
  msgid "If the folder does not already exist, then it will be created."
3054
  msgstr ""
3055
 
3056
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3057
  msgid "Enter the path of the %s folder you wish to use here."
3058
  msgstr ""
3059
 
3060
+ #: addons/azure.php:516 methods/openstack2.php:137
3061
  msgid "Container"
3062
  msgstr ""
3063
 
3064
+ #: methods/openstack2.php:120
3065
  msgid "Leave this blank, and a default will be chosen."
3066
  msgstr ""
3067
 
3068
+ #: methods/openstack2.php:111
3069
  msgid "Tenant"
3070
  msgstr ""
3071
 
3072
+ #: methods/openstack2.php:111
3073
  msgid "Follow this link for more information"
3074
  msgstr ""
3075
 
3076
+ #: methods/openstack2.php:103 methods/openstack2.php:161
3077
  msgid "authentication URI"
3078
  msgstr ""
3079
 
3080
+ #: methods/openstack2.php:98
3081
  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."
3082
  msgstr ""
3083
 
3084
+ #: methods/addon-base-v2.php:204 methods/addon-base-v2.php:224
3085
  msgid "Failed to download %s"
3086
  msgstr ""
3087
 
3088
+ #: methods/addon-base-v2.php:218
3089
  msgid "Failed to download"
3090
  msgstr ""
3091
 
3092
+ #: methods/addon-base-v2.php:116
3093
  msgid "failed to list files"
3094
  msgstr ""
3095
 
3096
+ #: methods/addon-base-v2.php:84 methods/addon-base-v2.php:89
3097
  msgid "Failed to upload %s"
3098
  msgstr ""
3099
 
3100
+ #: methods/dropbox.php:599 methods/dropbox.php:601
3101
  msgid "Success:"
3102
  msgstr ""
3103
 
3104
+ #: addons/onedrive.php:997 methods/dropbox.php:500
3105
  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."
3106
  msgstr ""
3107
 
3108
+ #: addons/onedrive.php:995 methods/dropbox.php:497
3109
  msgid "(You appear to be already authenticated)."
3110
  msgstr ""
3111
 
3112
+ #: methods/dropbox.php:492 methods/dropbox.php:498 methods/dropbox.php:500
3113
  msgid "Dropbox"
3114
  msgstr ""
3115
 
3116
+ #: addons/onedrive.php:994 methods/dropbox.php:492
3117
  msgid "Authenticate with %s"
3118
  msgstr ""
3119
 
3120
+ #: methods/cloudfiles.php:396
3121
  msgid "Error downloading remote file: Failed to download"
3122
  msgstr ""
3123
 
3124
+ #: methods/openstack-base.php:476 methods/openstack-base.php:481
3125
  msgid "Region: %s"
3126
  msgstr ""
3127
 
3128
+ #: methods/openstack-base.php:475
3129
  msgid "%s error - we accessed the container, but failed to create a file within it"
3130
  msgstr ""
3131
 
3132
+ #: methods/openstack-base.php:393
3133
  msgid "The %s object was not found"
3134
  msgstr ""
3135
 
3136
+ #: methods/openstack-base.php:52 methods/openstack-base.php:316
3137
+ #: methods/openstack-base.php:385
3138
  msgid "Could not access %s container"
3139
  msgstr ""
3140
 
3141
+ #: methods/openstack-base.php:44 methods/openstack-base.php:112
3142
+ #: methods/openstack-base.php:119 methods/openstack-base.php:308
3143
+ #: methods/openstack-base.php:373
3144
  msgid "%s error - failed to access the container"
3145
  msgstr ""
3146
 
3147
+ #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:507
3148
+ #: methods/googledrive.php:957
3149
  msgid "Account holder's name: %s."
3150
  msgstr ""
3151
 
3152
+ #: methods/googledrive.php:946
3153
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3154
  msgstr ""
3155
 
3156
+ #: methods/googledrive.php:937
3157
  msgid "It is an ID number internal to Google Drive"
3158
  msgstr ""
3159
 
3160
+ #: methods/googledrive.php:937
3161
  msgid "<strong>This is NOT a folder name</strong>."
3162
  msgstr ""
3163
 
3164
+ #: addons/google-enhanced.php:81 addons/onedrive.php:988
3165
+ #: methods/googledrive.php:933 methods/googledrive.php:943
3166
  msgid "Folder"
3167
  msgstr ""
3168
 
3169
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3170
+ #: methods/googledrive.php:863
3171
  msgid "%s download: failed: file not found"
3172
  msgstr ""
3173
 
3174
+ #: addons/googlecloud.php:579 methods/googledrive.php:348
3175
  msgid "Name: %s."
3176
  msgstr ""
3177
 
3178
+ #: methods/googledrive.php:141
3179
  msgid "Google Drive list files: failed to access parent folder"
3180
  msgstr ""
3181
 
3182
+ #: methods/addon-not-yet-present.php:77 methods/insufficient.php:67
3183
  msgid "Your %s version: %s."
3184
  msgstr ""
3185
 
3186
+ #: methods/addon-not-yet-present.php:76 methods/insufficient.php:66
3187
  msgid "You will need to ask your web hosting company to upgrade."
3188
  msgstr ""
3189
 
3190
+ #: methods/addon-not-yet-present.php:18 methods/insufficient.php:19
3191
  msgid "This remote storage method (%s) requires PHP %s or later."
3192
  msgstr ""
3193
 
3194
+ #: admin.php:3793
3195
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3196
  msgstr ""
3197
 
3205
 
3206
  #: addons/migrator.php:375
3207
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3208
+ #: templates/wp-admin/settings/form-contents.php:241
3209
  msgid "This feature requires %s version %s or later"
3210
  msgstr ""
3211
 
3221
  msgid "Failed to unpack the archive"
3222
  msgstr ""
3223
 
3224
+ #: class-updraftplus.php:1112
3225
  msgid "Error - failed to download the file"
3226
  msgstr ""
3227
 
3241
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3242
  msgstr ""
3243
 
3244
+ #: addons/sftp.php:426
3245
  msgid "password/key"
3246
  msgstr ""
3247
 
3248
+ #: addons/azure.php:509 addons/migrator.php:2198 addons/sftp.php:377
3249
+ #: admin.php:661
3250
  msgid "Key"
3251
  msgstr ""
3252
 
3253
+ #: addons/sftp.php:372
3254
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3255
  msgstr ""
3256
 
3257
+ #: addons/sftp.php:309
3258
  msgid "The key provided was not in a valid format, or was corrupt."
3259
  msgstr ""
3260
 
3261
+ #: addons/sftp.php:48
3262
  msgid "SCP/SFTP password/key"
3263
  msgstr ""
3264
 
3265
+ #: admin.php:3276
3266
  msgid "Files backup (created by %s)"
3267
  msgstr ""
3268
 
3269
+ #: admin.php:3276
3270
  msgid "Files and database WordPress backup (created by %s)"
3271
  msgstr ""
3272
 
3273
+ #: addons/importer.php:261 admin.php:3270 class-updraftplus.php:2612
3274
  msgid "Backup created by: %s."
3275
  msgstr ""
3276
 
3277
+ #: admin.php:3239
3278
  msgid "Database (created by %s)"
3279
  msgstr ""
3280
 
3281
+ #: admin.php:3233 admin.php:3272
3282
  msgid "unknown source"
3283
  msgstr ""
3284
 
3290
  msgid "Upload backup files"
3291
  msgstr ""
3292
 
3293
+ #: admin.php:1876
3294
  msgid "This backup was created by %s, and can be imported."
3295
  msgstr ""
3296
 
3297
+ #: admin.php:914
3298
  msgid "Read this page for a guide to possible causes and how to fix it."
3299
  msgstr ""
3300
 
3301
+ #: admin.php:914
3302
  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."
3303
  msgstr ""
3304
 
3305
+ #: admin.php:626 class-updraftplus.php:2619
3306
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3307
  msgstr ""
3308
 
3309
+ #: admin.php:625
3310
  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."
3311
  msgstr ""
3312
 
3313
+ #: admin.php:625 admin.php:626 class-updraftplus.php:2619
3314
  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))."
3315
  msgstr ""
3316
 
3317
+ #: admin.php:3273 includes/class-wpadmin-commands.php:143 restorer.php:1410
3318
  msgid "Backup created by unknown source (%s) - cannot be restored."
3319
  msgstr ""
3320
 
3326
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3327
  msgstr ""
3328
 
3329
+ #: methods/dropbox.php:285
3330
  msgid "%s returned an unexpected HTTP response: %s"
3331
  msgstr ""
3332
 
3333
+ #: addons/sftp.php:886
3334
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3335
  msgstr ""
3336
 
3337
+ #: methods/cloudfiles.php:221 methods/dropbox.php:266
3338
+ #: methods/openstack-base.php:107
3339
  msgid "No settings were found"
3340
  msgstr ""
3341
 
3342
+ #: class-updraftplus.php:2740
3343
  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."
3344
  msgstr ""
3345
 
3346
+ #: admin.php:592
3347
  msgid "Rescanning remote and local storage for backup sets..."
3348
  msgstr ""
3349
 
3360
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3361
  msgstr ""
3362
 
3363
+ #: addons/morefiles.php:488
3364
  msgid "No backup of location: there was nothing found to back up"
3365
  msgstr ""
3366
 
3367
+ #: addons/moredatabase.php:234 addons/morefiles.php:284
3368
+ #: addons/morefiles.php:305
3369
  msgid "Remove"
3370
  msgstr ""
3371
 
3372
+ #: methods/s3.php:816
3373
  msgid "Other %s FAQs."
3374
  msgstr ""
3375
 
3376
+ #: templates/wp-admin/settings/form-contents.php:354
3377
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3378
  msgstr ""
3379
 
3380
+ #: addons/morefiles.php:442 admin.php:2990
3381
  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."
3382
  msgstr ""
3383
 
3385
  msgid "Custom content type manager plugin data detected: clearing option cache"
3386
  msgstr ""
3387
 
3388
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1441
3389
  msgid "Your hosting company must enable these functions before %s can work."
3390
  msgstr ""
3391
 
3392
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1440
3393
  msgid "Your web server's PHP installation has these functions disabled: %s."
3394
  msgstr ""
3395
 
3396
+ #: methods/ftp.php:288
3397
  msgid "encrypted FTP (explicit encryption)"
3398
  msgstr ""
3399
 
3400
+ #: methods/ftp.php:287
3401
  msgid "encrypted FTP (implicit encryption)"
3402
  msgstr ""
3403
 
3404
+ #: methods/ftp.php:286
3405
  msgid "regular non-encrypted FTP"
3406
  msgstr ""
3407
 
3409
  msgid "Backup created by:"
3410
  msgstr ""
3411
 
3412
+ #: udaddons/options.php:489
3413
  msgid "Available to claim on this site"
3414
  msgstr ""
3415
 
3457
  msgid "Dismiss from main dashboard (for %s weeks)"
3458
  msgstr ""
3459
 
3460
+ #: class-updraftplus.php:4245
3461
  msgid "The attempt to undo the double-compression succeeded."
3462
  msgstr ""
3463
 
3464
+ #: class-updraftplus.php:4222 class-updraftplus.php:4243
3465
  msgid "The attempt to undo the double-compression failed."
3466
  msgstr ""
3467
 
3468
+ #: class-updraftplus.php:4215
3469
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3470
  msgstr ""
3471
 
3473
  msgid "Constants"
3474
  msgstr ""
3475
 
3476
+ #: backup.php:1607
3477
  msgid "Failed to open database file for reading:"
3478
  msgstr ""
3479
 
3480
+ #: backup.php:1420
3481
  msgid "No database tables found"
3482
  msgstr ""
3483
 
3484
+ #: backup.php:1418
3485
  msgid "please wait for the rescheduled attempt"
3486
  msgstr ""
3487
 
3509
  msgid "Errors occurred:"
3510
  msgstr ""
3511
 
3512
+ #: admin.php:3468
3513
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3514
  msgstr ""
3515
 
3516
+ #: templates/wp-admin/settings/form-contents.php:398
3517
  msgid "See this FAQ also."
3518
  msgstr ""
3519
 
3533
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3534
  msgstr ""
3535
 
3536
+ #: admin.php:889 class-updraftplus.php:661
3537
  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)"
3538
  msgstr ""
3539
 
3549
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3550
  msgstr ""
3551
 
3552
+ #: addons/sftp.php:641 addons/sftp.php:644 includes/ftp.class.php:44
3553
  #: includes/ftp.class.php:47
3554
  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."
3555
  msgstr ""
3556
 
3557
+ #: admin.php:3801
3558
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3559
  msgstr ""
3560
 
3561
+ #: admin.php:2054 admin.php:2064
3562
  msgid "Restore failed..."
3563
  msgstr ""
3564
 
3565
+ #: addons/moredatabase.php:130 admin.php:1276
3566
  msgid "Messages:"
3567
  msgstr ""
3568
 
3656
  msgid "Rackspace Cloud Files, enhanced"
3657
  msgstr ""
3658
 
3659
+ #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:143
3660
  msgid "Cloud Files Container"
3661
  msgstr ""
3662
 
3663
+ #: methods/cloudfiles-new.php:138
3664
  msgid "Cloud Files API Key"
3665
  msgstr ""
3666
 
3667
+ #: methods/cloudfiles-new.php:133
3668
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3669
  msgstr ""
3670
 
3671
+ #: methods/cloudfiles-new.php:130
3672
  msgid "Cloud Files Username"
3673
  msgstr ""
3674
 
3675
+ #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:116
3676
  msgid "London (LON)"
3677
  msgstr ""
3678
 
3679
+ #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:115
3680
  msgid "Hong Kong (HKG)"
3681
  msgstr ""
3682
 
3683
+ #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:114
3684
  msgid "Northern Virginia (IAD)"
3685
  msgstr ""
3686
 
3687
+ #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:113
3688
  msgid "Chicago (ORD)"
3689
  msgstr ""
3690
 
3691
+ #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:112
3692
  msgid "Sydney (SYD)"
3693
  msgstr ""
3694
 
3695
+ #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:111
3696
  msgid "Dallas (DFW) (default)"
3697
  msgstr ""
3698
 
3699
+ #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:106
3700
  msgid "Cloud Files Storage Region"
3701
  msgstr ""
3702
 
3703
+ #: methods/cloudfiles-new.php:98
3704
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3705
  msgstr ""
3706
 
3707
+ #: methods/cloudfiles-new.php:96
3708
  msgid "US or UK-based Rackspace Account"
3709
  msgstr ""
3710
 
3711
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:96
3712
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3713
  msgstr ""
3714
 
3715
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3716
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:435
3717
+ #: methods/openstack-base.php:437 methods/openstack-base.php:457
3718
  #: methods/openstack2.php:25
3719
  msgid "Authorisation failed (check your credentials)"
3720
  msgstr ""
3721
 
3722
+ #: methods/updraftvault.php:524 udaddons/options.php:272
3723
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3724
  msgstr ""
3725
 
3726
+ #: admin.php:639 central/bootstrap.php:513
3727
  msgid "Create"
3728
  msgstr ""
3729
 
3730
+ #: admin.php:601
3731
  msgid "Trying..."
3732
  msgstr ""
3733
 
3734
+ #: admin.php:600
3735
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3736
  msgstr ""
3737
 
3738
+ #: class-updraftplus.php:1566
3739
  msgid "(when decrypted)"
3740
  msgstr ""
3741
 
3742
+ #: admin.php:611 admin.php:3743
3743
  msgid "Error data:"
3744
  msgstr ""
3745
 
3746
+ #: admin.php:3419
3747
  msgid "Backup does not exist in the backup history"
3748
  msgstr ""
3749
 
3750
+ #: admin.php:2423
3751
  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."
3752
  msgstr ""
3753
 
3799
  msgid "Email reports"
3800
  msgstr ""
3801
 
3802
+ #: class-updraftplus.php:1562 class-updraftplus.php:1567
3803
  msgid "%s checksum: %s"
3804
  msgstr ""
3805
 
3806
+ #: class-updraftplus.php:1535 class-updraftplus.php:1537
3807
  msgid "files: %s"
3808
  msgstr ""
3809
 
3823
  msgid "Debugging information"
3824
  msgstr ""
3825
 
3826
+ #: addons/reporting.php:194 admin.php:3179
3827
  msgid "Uploaded to:"
3828
  msgstr ""
3829
 
3843
  msgid "Errors / warnings:"
3844
  msgstr ""
3845
 
3846
+ #: addons/morefiles.php:122 addons/morefiles.php:123 addons/reporting.php:155
3847
  msgid "Contains:"
3848
  msgstr ""
3849
 
3863
  msgid "%d errors, %d warnings"
3864
  msgstr ""
3865
 
3866
+ #: addons/onedrive.php:717 methods/dropbox.php:583
3867
  msgid "%s authentication"
3868
  msgstr ""
3869
 
3870
+ #: addons/onedrive.php:717 class-updraftplus.php:366 methods/dropbox.php:556
3871
+ #: methods/dropbox.php:583 methods/dropbox.php:596 methods/dropbox.php:727
3872
  msgid "%s error: %s"
3873
  msgstr ""
3874
 
3875
+ #: addons/googlecloud.php:815 methods/dropbox.php:467
3876
  msgid "%s logo"
3877
  msgstr ""
3878
 
3879
+ #: methods/dropbox.php:199
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
+ #: methods/s3.php:281
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
3887
+ #: methods/email.php:76
3888
  msgid "For more options, use the \"%s\" add-on."
3889
  msgstr ""
3890
 
3891
+ #: methods/email.php:75
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr ""
3894
 
3895
+ #: admin.php:648 methods/updraftvault.php:274 methods/updraftvault.php:319
3896
+ #: udaddons/options.php:251
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3900
+ #: templates/wp-admin/settings/form-contents.php:322
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
+ #: class-updraftplus.php:4025
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3908
+ #: addons/reporting.php:438 admin.php:590
3909
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3910
  msgstr ""
3911
 
3912
+ #: addons/reporting.php:438 admin.php:589
3913
  msgid "When the Email storage method is enabled, also send the entire backup"
3914
  msgstr ""
3915
 
3916
+ #: addons/reporting.php:153 backup.php:945
3917
  msgid "Latest status:"
3918
  msgstr ""
3919
 
3920
+ #: backup.php:944
3921
  msgid "Backup contains:"
3922
  msgstr ""
3923
 
3924
+ #: backup.php:901
3925
  msgid "Backed up: %s"
3926
  msgstr ""
3927
 
3928
+ #: addons/reporting.php:236 backup.php:895
3929
  msgid "The log file has been attached to this email."
3930
  msgstr ""
3931
 
3932
+ #: backup.php:859
3933
  msgid "Unknown/unexpected error - please raise a support request"
3934
  msgstr ""
3935
 
3936
+ #: backup.php:856
3937
  msgid "Database only (files were not part of this particular schedule)"
3938
  msgstr ""
3939
 
3940
+ #: backup.php:856
3941
  msgid "Database (files backup has not completed)"
3942
  msgstr ""
3943
 
3944
+ #: backup.php:853
3945
  msgid "Files only (database was not part of this particular schedule)"
3946
  msgstr ""
3947
 
3948
+ #: backup.php:853
3949
  msgid "Files (database backup has not completed)"
3950
  msgstr ""
3951
 
3952
+ #: admin.php:253 backup.php:851
3953
  msgid "Files and database"
3954
  msgstr ""
3955
 
3956
+ #: options.php:184
3957
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3958
  msgstr ""
3959
 
3960
+ #: options.php:184
3961
  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>."
3962
  msgstr ""
3963
 
3964
+ #: options.php:184
3965
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3966
  msgstr ""
3967
 
3968
+ #: options.php:184
3969
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3970
  msgstr ""
3971
 
3972
+ #: options.php:184
3973
  msgid "UpdraftPlus warning:"
3974
  msgstr ""
3975
 
3976
+ #: udaddons/options.php:495
3977
  msgid "(or connect using the form on this page if you have already purchased it)"
3978
  msgstr ""
3979
 
3980
+ #: udaddons/options.php:481
3981
  msgid "please follow this link to update the plugin in order to activate it"
3982
  msgstr ""
3983
 
3984
+ #: udaddons/options.php:478
3985
  msgid "please follow this link to update the plugin in order to get it"
3986
  msgstr ""
3987
 
3988
+ #: udaddons/options.php:468 udaddons/options.php:470
3989
  msgid "latest"
3990
  msgstr ""
3991
 
3992
+ #: udaddons/options.php:466
3993
  msgid "Your version: %s"
3994
  msgstr ""
3995
 
3996
+ #: udaddons/options.php:464
3997
  msgid "You've got it"
3998
  msgstr ""
3999
 
4000
+ #: udaddons/options.php:430
4001
  msgid "UpdraftPlus Support"
4002
  msgstr ""
4003
 
4004
+ #: udaddons/options.php:388
4005
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4006
  msgstr ""
4007
 
4008
+ #: udaddons/options.php:377 udaddons/updraftplus-addons.php:256
4009
  msgid "UpdraftPlus Addons"
4010
  msgstr ""
4011
 
4012
+ #: udaddons/options.php:101
4013
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4014
  msgstr ""
4015
 
4016
+ #: methods/updraftvault.php:597 methods/updraftvault.php:615
4017
  #: udaddons/updraftplus-addons.php:795
4018
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4019
  msgstr ""
4020
 
4021
+ #: methods/updraftvault.php:611 udaddons/updraftplus-addons.php:792
4022
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4023
  msgstr ""
4024
 
4025
+ #: methods/updraftvault.php:570 udaddons/updraftplus-addons.php:752
4026
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4027
  msgstr ""
4028
 
4034
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4035
  msgstr ""
4036
 
4037
+ #: methods/email.php:76 templates/wp-admin/settings/form-contents.php:303
4038
  #: templates/wp-admin/settings/tab-addons.php:200
4039
  msgid "Reporting"
4040
  msgstr ""
4041
 
4042
+ #: admin.php:4154
4043
  msgid "Options (raw)"
4044
  msgstr ""
4045
 
4046
+ #: addons/reporting.php:436 admin.php:588
4047
  msgid "Send a report only when there are warnings/errors"
4048
  msgstr ""
4049
 
4055
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4056
  msgstr ""
4057
 
4058
+ #: templates/wp-admin/settings/form-contents.php:207
4059
  msgid "See also the \"More Files\" add-on from our shop."
4060
  msgstr ""
4061
 
4062
+ #: backup.php:3012 class-updraftplus.php:674
4063
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4064
  msgstr ""
4065
 
4066
+ #: class-updraftplus.php:658
4067
  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)"
4068
  msgstr ""
4069
 
4070
+ #: udaddons/options.php:554
4071
  msgid "Manage Addons"
4072
  msgstr ""
4073
 
4074
+ #: udaddons/options.php:496
4075
  msgid "Buy It"
4076
  msgstr ""
4077
 
4078
+ #: udaddons/options.php:495
4079
  msgid "Get it from the UpdraftPlus.Com Store"
4080
  msgstr ""
4081
 
4082
+ #: udaddons/options.php:489 udaddons/options.php:491
4083
  msgid "activate it on this site"
4084
  msgstr ""
4085
 
4086
+ #: udaddons/options.php:491
4087
  msgid "You have an inactive purchase"
4088
  msgstr ""
4089
 
4090
+ #: udaddons/options.php:481
4091
  msgid "Assigned to this site"
4092
  msgstr ""
4093
 
4094
+ #: udaddons/options.php:478
4095
  msgid "Available for this site (via your all-addons purchase)"
4096
  msgstr ""
4097
 
4098
+ #: udaddons/options.php:472
4099
  msgid "(apparently a pre-release or withdrawn release)"
4100
  msgstr ""
4101
 
4102
+ #: udaddons/options.php:432
4103
  msgid "Go here"
4104
  msgstr ""
4105
 
4106
+ #: udaddons/options.php:432
4107
  msgid "Need to get support?"
4108
  msgstr ""
4109
 
4110
+ #: udaddons/options.php:414
4111
  msgid "An error occurred when trying to retrieve your add-ons."
4112
  msgstr ""
4113
 
4114
+ #: udaddons/options.php:347
4115
  msgid "An unknown response was received. Response was:"
4116
  msgstr ""
4117
 
4118
+ #: udaddons/options.php:346
4119
  msgid "Claim not granted - your account login details were wrong"
4120
  msgstr ""
4121
 
4122
+ #: udaddons/options.php:344
4123
  msgid "Please wait whilst we make the claim..."
4124
  msgstr ""
4125
 
4126
+ #: udaddons/options.php:297
4127
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4128
  msgstr ""
4129
 
4130
+ #: udaddons/options.php:288
4131
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4132
  msgstr ""
4133
 
4134
+ #: udaddons/options.php:279
4135
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4136
  msgstr ""
4137
 
4138
+ #: udaddons/options.php:278
4139
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4140
  msgstr ""
4141
 
4142
+ #: udaddons/options.php:249
4143
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4144
  msgstr ""
4145
 
4146
+ #: udaddons/options.php:190
4147
  msgid "Forgotten your details?"
4148
  msgstr ""
4149
 
4150
+ #: udaddons/options.php:179
4151
  msgid "Not yet got an account (it's free)? Go get one!"
4152
  msgstr ""
4153
 
4154
+ #: udaddons/options.php:148
4155
  msgid "Connect with your UpdraftPlus.Com account"
4156
  msgstr ""
4157
 
4158
+ #: udaddons/options.php:127
4159
  msgid "Your web server's version of PHP is too old ("
4160
  msgstr ""
4161
 
4162
+ #: udaddons/options.php:121
4163
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4164
  msgstr ""
4165
 
4166
+ #: udaddons/options.php:120
4167
  msgid "Go here to begin installing it."
4168
  msgstr ""
4169
 
4170
+ #: udaddons/options.php:120
4171
  msgid "UpdraftPlus is not yet installed."
4172
  msgstr ""
4173
 
4174
+ #: udaddons/options.php:117
4175
  msgid "Go here to activate it."
4176
  msgstr ""
4177
 
4178
+ #: udaddons/options.php:116
4179
  msgid "UpdraftPlus is not yet activated."
4180
  msgstr ""
4181
 
4182
+ #: udaddons/options.php:107 udaddons/options.php:109
4183
  msgid "Go here to connect."
4184
  msgstr ""
4185
 
4186
+ #: udaddons/options.php:107
4187
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4188
  msgstr ""
4189
 
4190
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4191
  msgid "Without it, encryption will be a lot slower."
4192
  msgstr ""
4193
 
4194
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4195
  msgid "Your web-server does not have the %s module installed."
4196
  msgstr ""
4197
 
4198
+ #: addons/googlecloud.php:898 methods/googledrive.php:953
4199
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4200
  msgstr ""
4201
 
4203
  msgid "Drop backup files here"
4204
  msgstr ""
4205
 
4206
+ #: admin.php:599
4207
  msgid "The web server returned an error code (try again, or check your web server logs)"
4208
  msgstr ""
4209
 
4210
+ #: admin.php:597
4211
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4212
  msgstr ""
4213
 
4214
+ #: admin.php:594
4215
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4216
  msgstr ""
4217
 
4219
  msgid "Site home:"
4220
  msgstr ""
4221
 
4222
+ #: addons/morestorage.php:79
4223
  msgid "Remote Storage Options"
4224
  msgstr ""
4225
 
4231
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4232
  msgstr ""
4233
 
4234
+ #: addons/azure.php:350 methods/stream-base.php:121 methods/stream-base.php:126
4235
  msgid "Upload failed"
4236
  msgstr ""
4237
 
4239
  msgid "You can send a backup to more than one destination with an add-on."
4240
  msgstr ""
4241
 
4242
+ #: admin.php:2641
4243
  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."
4244
  msgstr ""
4245
 
4246
+ #: admin.php:2539
4247
  msgid "(%s%%, file %s of %s)"
4248
  msgstr ""
4249
 
4252
  msgid "Read more about how this works..."
4253
  msgstr ""
4254
 
4255
+ #: addons/sftp.php:486
4256
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4257
  msgstr ""
4258
 
4259
+ #: addons/sftp.php:484
4260
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4261
  msgstr ""
4262
 
4263
+ #: addons/sftp.php:403
4264
  msgid "Use SCP instead of SFTP"
4265
  msgstr ""
4266
 
4267
+ #: addons/sftp.php:47
4268
  msgid "SCP/SFTP user setting"
4269
  msgstr ""
4270
 
4271
+ #: addons/sftp.php:46
4272
  msgid "SCP/SFTP host setting"
4273
  msgstr ""
4274
 
4275
+ #: methods/email.php:60
4276
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4277
  msgstr ""
4278
 
4279
+ #: methods/email.php:47
4280
  msgid "Backup is of: %s."
4281
  msgstr ""
4282
 
4283
+ #: admin.php:687
4284
  msgid "%s settings test result:"
4285
  msgstr ""
4286
 
4287
+ #: admin.php:3337 admin.php:3339
4288
  msgid "(Not finished)"
4289
  msgstr ""
4290
 
4291
+ #: admin.php:3339
4292
  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."
4293
  msgstr ""
4294
 
4295
+ #: templates/wp-admin/settings/form-contents.php:381
4296
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4297
  msgstr ""
4298
 
4299
+ #: templates/wp-admin/settings/form-contents.php:381
4300
  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)."
4301
  msgstr ""
4302
 
4303
+ #: admin.php:2636
4304
  msgid "Job ID: %s"
4305
  msgstr ""
4306
 
4307
+ #: admin.php:2621
4308
  msgid "last activity: %ss ago"
4309
  msgstr ""
4310
 
4311
+ #: admin.php:2620
4312
  msgid "next resumption: %d (after %ss)"
4313
  msgstr ""
4314
 
4315
+ #: admin.php:2603 central/bootstrap.php:405 central/bootstrap.php:412
4316
+ #: methods/updraftvault.php:354 methods/updraftvault.php:434
4317
  msgid "Unknown"
4318
  msgstr ""
4319
 
4320
+ #: admin.php:2553
4321
  msgid "Backup finished"
4322
  msgstr ""
4323
 
4324
+ #: admin.php:2548
4325
  msgid "Waiting until scheduled time to retry because of errors"
4326
  msgstr ""
4327
 
4328
+ #: admin.php:2544
4329
  msgid "Pruning old backup sets"
4330
  msgstr ""
4331
 
4332
+ #: admin.php:2532
4333
  msgid "Uploading files to remote storage"
4334
  msgstr ""
4335
 
4336
+ #: admin.php:2601
4337
  msgid "Encrypted database"
4338
  msgstr ""
4339
 
4340
+ #: admin.php:2593
4341
  msgid "Encrypting database"
4342
  msgstr ""
4343
 
4344
+ #: admin.php:2567
4345
  msgid "Created database backup"
4346
  msgstr ""
4347
 
4348
+ #: admin.php:2580
4349
  msgid "table: %s"
4350
  msgstr ""
4351
 
4352
+ #: admin.php:2578
4353
  msgid "Creating database backup"
4354
  msgstr ""
4355
 
4356
+ #: admin.php:2526
4357
  msgid "Created file backup zips"
4358
  msgstr ""
4359
 
4360
+ #: admin.php:2513
4361
  msgid "Creating file backup zips"
4362
  msgstr ""
4363
 
4364
+ #: admin.php:2508
4365
  msgid "Backup begun"
4366
  msgstr ""
4367
 
4368
+ #: admin.php:2351
4369
  msgid "Backups in progress:"
4370
  msgstr ""
4371
 
4372
+ #: admin.php:893
4373
  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."
4374
  msgstr ""
4375
 
4385
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4386
  msgstr ""
4387
 
4388
+ #: class-updraftplus.php:2837
4389
  msgid "The backup has not finished; a resumption is scheduled"
4390
  msgstr ""
4391
 
4392
+ #: class-updraftplus.php:1807
4393
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4394
  msgstr ""
4395
 
4396
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4397
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4398
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4399
+ #: methods/googledrive.php:229
4400
  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)."
4401
  msgstr ""
4402
 
4403
+ #: admin.php:2174
4404
  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)."
4405
  msgstr ""
4406
 
4407
+ #: addons/autobackup.php:1006 admin.php:641
4408
  msgid "Proceed with update"
4409
  msgstr ""
4410
 
4457
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4458
  msgstr ""
4459
 
4460
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4461
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4462
  msgstr ""
4463
 
4464
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4465
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4466
  msgstr ""
4467
 
4468
+ #: addons/morefiles.php:183
4469
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4470
  msgstr ""
4471
 
4472
+ #: addons/morefiles.php:173
4473
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4474
  msgstr ""
4475
 
4482
  msgid "Support"
4483
  msgstr "সহায়তা"
4484
 
4485
+ #: class-updraftplus.php:4178
4486
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4487
  msgstr ""
4488
 
4489
+ #: class-updraftplus.php:4170
4490
  msgid "This database backup is missing core WordPress tables: %s"
4491
  msgstr ""
4492
 
4493
+ #: class-updraftplus.php:4058
4494
  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."
4495
  msgstr ""
4496
 
4497
+ #: class-updraftplus.php:3974
4498
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4499
  msgstr ""
4500
 
4501
+ #: addons/autobackup.php:556 admin.php:857
4502
  msgid "Update Theme"
4503
  msgstr ""
4504
 
4505
+ #: addons/autobackup.php:505 admin.php:853
4506
  msgid "Update Plugin"
4507
  msgstr ""
4508
 
4509
+ #: addons/autobackup.php:985 admin.php:726 includes/updraftplus-notices.php:171
4510
  msgid "Be safe with an automatic backup"
4511
  msgstr ""
4512
 
4514
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4515
  msgstr ""
4516
 
4517
+ #: admin.php:2126
4518
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4519
  msgstr ""
4520
 
4521
+ #: admin.php:635
4522
  msgid "The file was uploaded."
4523
  msgstr ""
4524
 
4525
+ #: admin.php:634
4526
  msgid "Unknown server response status:"
4527
  msgstr ""
4528
 
4529
+ #: admin.php:633
4530
  msgid "Unknown server response:"
4531
  msgstr ""
4532
 
4533
+ #: admin.php:632
4534
  msgid "This decryption key will be attempted:"
4535
  msgstr ""
4536
 
4537
+ #: admin.php:631
4538
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4539
  msgstr ""
4540
 
4541
+ #: admin.php:630
4542
  msgid "Upload error"
4543
  msgstr ""
4544
 
4545
+ #: admin.php:629
4546
  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)."
4547
  msgstr ""
4548
 
4549
+ #: admin.php:628
4550
  msgid "Upload error:"
4551
  msgstr ""
4552
 
4553
+ #: admin.php:627
4554
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4555
  msgstr ""
4556
 
4557
+ #: admin.php:618
4558
  msgid "Download to your computer"
4559
  msgstr ""
4560
 
4561
+ #: admin.php:617
4562
  msgid "Delete from your web server"
4563
  msgstr ""
4564
 
4565
+ #: methods/s3.php:776
4566
  msgid "Examples of S3-compatible storage providers:"
4567
  msgstr ""
4568
 
4569
+ #: admin.php:3693
4570
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4571
  msgstr ""
4572
 
4573
+ #: admin.php:3310
4574
  msgid "You appear to be missing one or more archives from this multi-archive set."
4575
  msgstr ""
4576
 
4577
+ #: admin.php:3307
4578
  msgid "(%d archive(s) in set)."
4579
  msgstr ""
4580
 
4581
+ #: templates/wp-admin/settings/form-contents.php:358
4582
  msgid "Split archives every:"
4583
  msgstr ""
4584
 
4586
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4587
  msgstr ""
4588
 
4589
+ #: admin.php:608
4590
  msgid "Warnings:"
4591
  msgstr ""
4592
 
4593
+ #: admin.php:607
4594
  msgid "Error: the server sent an empty response."
4595
  msgstr ""
4596
 
4597
+ #: admin.php:1887
4598
  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?"
4599
  msgstr ""
4600
 
4630
  msgid "No such backup set exists"
4631
  msgstr ""
4632
 
4633
+ #: admin.php:1164
4634
  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"
4635
  msgstr ""
4636
 
4646
  msgid "Moving unpacked backup into place..."
4647
  msgstr ""
4648
 
4649
+ #: backup.php:2716 backup.php:2972
4650
  msgid "Failed to open the zip file (%s) - %s"
4651
  msgstr ""
4652
 
4653
+ #: addons/morefiles.php:161
4654
  msgid "WordPress root directory server path: %s"
4655
  msgstr ""
4656
 
4657
+ #: methods/s3.php:821
4658
  msgid "%s end-point"
4659
  msgstr ""
4660
 
4661
+ #: methods/s3.php:783
4662
  msgid "... and many more!"
4663
  msgstr ""
4664
 
4666
  msgid "S3 (Compatible)"
4667
  msgstr ""
4668
 
4669
+ #: admin.php:3614
4670
  msgid "File is not locally present - needs retrieving from remote storage"
4671
  msgstr ""
4672
 
4673
+ #: admin.php:3601
4674
  msgid "Looking for %s archive: file name: %s"
4675
  msgstr ""
4676
 
4677
+ #: admin.php:3562
4678
  msgid "Final checks"
4679
  msgstr ""
4680
 
4681
+ #: templates/wp-admin/settings/form-contents.php:364
4682
  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)."
4683
  msgstr ""
4684
 
4685
+ #: templates/wp-admin/settings/form-contents.php:248
4686
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4687
  msgstr ""
4688
 
4689
+ #: admin.php:2979
4690
  msgid "Your wp-content directory server path: %s"
4691
  msgstr ""
4692
 
4693
+ #: admin.php:624
4694
  msgid "Raw backup history"
4695
  msgstr ""
4696
 
4698
  msgid "Show raw backup and file list"
4699
  msgstr ""
4700
 
4701
+ #: admin.php:606
4702
  msgid "Processing files - please wait..."
4703
  msgstr ""
4704
 
4705
+ #: admin.php:3745 templates/wp-admin/settings/downloading-and-restoring.php:29
4706
  msgid "Please consult this FAQ for help on what to do about it."
4707
  msgstr ""
4708
 
4710
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4711
  msgstr ""
4712
 
4713
+ #: class-updraftplus.php:3982
4714
  msgid "Failed to open database file."
4715
  msgstr ""
4716
 
4717
+ #: admin.php:4124
4718
  msgid "Known backups (raw)"
4719
  msgstr ""
4720
 
4738
  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."
4739
  msgstr ""
4740
 
4741
+ #: admin.php:3634
4742
  msgid "file is size:"
4743
  msgstr ""
4744
 
4745
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4746
+ #: addons/migrator.php:369 admin.php:893 admin.php:2131 backup.php:3019
4747
  #: updraftplus.php:147
4748
  msgid "Go here for more information."
4749
  msgstr ""
4750
 
4751
+ #: admin.php:605
4752
  msgid "Some files are still downloading or being processed - please wait."
4753
  msgstr ""
4754
 
4755
+ #: class-updraftplus.php:4030 class-updraftplus.php:4048
4756
  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."
4757
  msgstr ""
4758
 
4764
  msgid "Enter in format HH:MM (e.g. 14:22)."
4765
  msgstr ""
4766
 
4767
+ #: methods/ftp.php:116
4768
  msgid "%s upload failed"
4769
  msgstr ""
4770
 
4771
+ #: methods/ftp.php:89 methods/ftp.php:140 methods/ftp.php:244
4772
  msgid "%s login failure"
4773
  msgstr ""
4774
 
4775
+ #: methods/dropbox.php:410
4776
  msgid "You do not appear to be authenticated with %s"
4777
  msgstr ""
4778
 
4779
+ #: methods/dropbox.php:377
4780
  msgid "Failed to access %s when deleting (see log file for more)"
4781
  msgstr ""
4782
 
4783
+ #: methods/dropbox.php:369
4784
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4785
  msgstr ""
4786
 
4787
+ #: methods/dropbox.php:104
4788
  msgid "Dropbox error: %s (see log file for more)"
4789
  msgstr ""
4790
 
4791
+ #: methods/cloudfiles.php:409
4792
  msgid "Error - failed to download the file from %s"
4793
  msgstr ""
4794
 
4795
+ #: methods/cloudfiles.php:405
4796
  msgid "Error - no such file exists at %s"
4797
  msgstr ""
4798
 
4799
+ #: addons/azure.php:216 methods/addon-base-v2.php:218
4800
+ #: methods/cloudfiles.php:379 methods/cloudfiles.php:396
4801
+ #: methods/googledrive.php:823 methods/openstack-base.php:407
4802
+ #: methods/stream-base.php:262 methods/stream-base.php:269
4803
+ #: methods/stream-base.php:282
4804
  msgid "%s Error"
4805
  msgstr ""
4806
 
4807
+ #: methods/cloudfiles.php:206 methods/openstack-base.php:82
4808
  msgid "%s error - failed to upload file"
4809
  msgstr ""
4810
 
4811
+ #: class-updraftplus.php:1004 methods/cloudfiles.php:198
4812
  msgid "%s error - failed to re-assemble chunks"
4813
  msgstr ""
4814
 
4815
+ #: methods/cloudfiles.php:82 methods/cloudfiles.php:86
4816
+ #: methods/cloudfiles.php:227 methods/cloudfiles.php:272
4817
+ #: methods/cloudfiles.php:323 methods/cloudfiles.php:327
4818
+ #: methods/openstack-base.php:40 methods/openstack-base.php:304
4819
+ #: methods/openstack-base.php:369 methods/openstack-base.php:441
4820
+ #: methods/openstack-base.php:444 methods/openstack-base.php:461
4821
+ #: methods/openstack-base.php:466
4822
  msgid "%s authentication failed"
4823
  msgstr ""
4824
 
4825
+ #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1832
4826
+ #: admin.php:1879 admin.php:1887 class-updraftplus.php:789
4827
+ #: class-updraftplus.php:795 class-updraftplus.php:3953
4828
+ #: class-updraftplus.php:3955 class-updraftplus.php:4088
4829
+ #: class-updraftplus.php:4123 methods/googledrive.php:289 restorer.php:944
4830
  msgid "Error: %s"
4831
  msgstr ""
4832
 
4833
+ #: admin.php:2916
4834
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4835
  msgstr ""
4836
 
4837
+ #: admin.php:2914
4838
  msgid "Backup directory specified does <b>not</b> exist."
4839
  msgstr ""
4840
 
4841
+ #: admin.php:2648 admin.php:2870 class-updraftplus.php:4030
4842
+ #: class-updraftplus.php:4048
4843
  msgid "Warning: %s"
4844
  msgstr ""
4845
 
4847
  msgid "Last backup job run:"
4848
  msgstr ""
4849
 
4850
+ #: backup.php:2738
4851
  msgid "A very large file was encountered: %s (size: %s Mb)"
4852
  msgstr ""
4853
 
4854
+ #: backup.php:2112 backup.php:2144
4855
  msgid "%s: unreadable file - could not be backed up"
4856
  msgstr ""
4857
 
4858
+ #: backup.php:1507
4859
  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"
4860
  msgstr ""
4861
 
4862
+ #: backup.php:1626
4863
  msgid "An error occurred whilst closing the final database file"
4864
  msgstr ""
4865
 
4866
+ #: backup.php:886
4867
  msgid "Warnings encountered:"
4868
  msgstr ""
4869
 
4870
+ #: class-updraftplus.php:2825
4871
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4872
  msgstr ""
4873
 
4874
+ #: class-updraftplus.php:687
4875
  msgid "Your free disk space is very low - only %s Mb remain"
4876
  msgstr ""
4877
 
4903
  msgid "Processed plugin:"
4904
  msgstr ""
4905
 
4906
+ #: addons/sftp.php:75
4907
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4908
  msgstr ""
4909
 
4910
+ #: addons/sftp.php:35
4911
  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."
4912
  msgstr ""
4913
 
4914
+ #: methods/s3.php:797
4915
  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."
4916
  msgstr ""
4917
 
4918
+ #: methods/s3.php:1035
4919
  msgid "Please check your access credentials."
4920
  msgstr ""
4921
 
4922
+ #: addons/s3-enhanced.php:172 methods/s3.php:1013
4923
  msgid "The error reported by %s was:"
4924
  msgstr ""
4925
 
4935
  msgid "Cannot create new tables, so skipping this command (%s)"
4936
  msgstr ""
4937
 
4938
+ #: class-updraftplus.php:4099 restorer.php:1648
4939
  msgid "Site information:"
4940
  msgstr ""
4941
 
4943
  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."
4944
  msgstr ""
4945
 
4946
+ #: addons/migrator.php:325 admin.php:2126 class-updraftplus.php:4092
4947
  #: restorer.php:1970
4948
  msgid "Warning:"
4949
  msgstr ""
4950
 
4951
+ #: class-updraftplus.php:4084 restorer.php:162
4952
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4953
  msgstr ""
4954
 
4955
+ #: admin.php:3589
4956
  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."
4957
  msgstr ""
4958
 
4959
+ #: admin.php:3035 methods/updraftvault.php:258
4960
  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."
4961
  msgstr ""
4962
 
4963
+ #: admin.php:642
4964
  msgid "Close"
4965
  msgstr ""
4966
 
4967
+ #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:598
4968
+ #: methods/remotesend.php:64 methods/remotesend.php:72
4969
+ #: methods/remotesend.php:213 methods/remotesend.php:230
4970
  msgid "Unexpected response:"
4971
  msgstr ""
4972
 
4973
+ #: addons/reporting.php:434 admin.php:593
4974
  msgid "To send to more than one address, separate each address with a comma."
4975
  msgstr ""
4976
 
4977
+ #: admin.php:622
4978
  msgid "PHP information"
4979
  msgstr ""
4980
 
5010
  msgid "Also delete from remote storage"
5011
  msgstr ""
5012
 
5013
+ #: admin.php:2378
5014
  msgid "Latest UpdraftPlus.com news:"
5015
  msgstr ""
5016
 
5027
  msgid "News"
5028
  msgstr ""
5029
 
5030
+ #: admin.php:1318 includes/class-wpadmin-commands.php:444
5031
  msgid "Backup set not found"
5032
  msgstr ""
5033
 
5045
  msgid "Blog link"
5046
  msgstr ""
5047
 
5048
+ #: admin.php:686
5049
  msgid "Testing %s Settings..."
5050
  msgstr ""
5051
 
5053
  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."
5054
  msgstr ""
5055
 
5056
+ #: admin.php:909
5057
  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."
5058
  msgstr ""
5059
 
5060
+ #: admin.php:909
5061
  msgid "Notice"
5062
  msgstr ""
5063
 
5064
+ #: backup.php:868
5065
  msgid "Errors encountered:"
5066
  msgstr ""
5067
 
5068
+ #: admin.php:591
5069
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5070
  msgstr ""
5071
 
5072
+ #: admin.php:604
5073
  msgid "Begun looking for this entity"
5074
  msgstr ""
5075
 
5076
+ #: addons/dropbox-folders.php:33
5077
  msgid "Store at"
5078
  msgstr ""
5079
 
5089
  msgid "Time taken (seconds):"
5090
  msgstr ""
5091
 
5092
+ #: addons/migrator.php:1113 admin.php:609
5093
  msgid "Errors:"
5094
  msgstr ""
5095
 
5158
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5159
  msgstr ""
5160
 
5161
+ #: addons/multisite.php:624
5162
  msgid "Blog uploads"
5163
  msgstr ""
5164
 
5165
+ #: addons/migrator.php:369 addons/multisite.php:617
5166
  msgid "Must-use plugins"
5167
  msgstr ""
5168
 
5169
+ #: addons/multisite.php:191
5170
  msgid "You do not have permission to access this page."
5171
  msgstr ""
5172
 
5173
+ #: addons/multisite.php:177 udaddons/options.php:232
5174
  msgid "You do not have sufficient permissions to access this page."
5175
  msgstr ""
5176
 
5177
+ #: addons/multisite.php:171
5178
  msgid "Multisite Install"
5179
  msgstr ""
5180
 
5182
  msgid "starting from next time it is"
5183
  msgstr ""
5184
 
5185
+ #: addons/sftp.php:431
5186
  msgid "Failure: Port must be an integer."
5187
  msgstr ""
5188
 
5189
+ #: methods/ftp.php:366 methods/openstack2.php:151
5190
  msgid "password"
5191
  msgstr ""
5192
 
5193
+ #: addons/sftp.php:422 methods/openstack2.php:146
5194
  msgid "username"
5195
  msgstr ""
5196
 
5197
+ #: addons/sftp.php:418
5198
  msgid "host name"
5199
  msgstr ""
5200
 
5201
+ #: addons/sftp.php:396
5202
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5203
  msgstr ""
5204
 
5205
+ #: addons/sftp.php:394
5206
  msgid "Directory path"
5207
  msgstr ""
5208
 
5209
+ #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:369
5210
+ #: addons/webdav.php:69 methods/openstack2.php:131 methods/updraftvault.php:318
5211
+ #: udaddons/options.php:152
5212
  msgid "Password"
5213
  msgstr ""
5214
 
5215
+ #: addons/sftp.php:355 addons/webdav.php:83
5216
  msgid "Port"
5217
  msgstr ""
5218
 
5219
+ #: addons/moredatabase.php:237 addons/sftp.php:348 addons/webdav.php:75
5220
  msgid "Host"
5221
  msgstr ""
5222
 
5223
+ #: addons/sftp.php:281
5224
  msgid "%s Error: Failed to download"
5225
  msgstr ""
5226
 
5227
+ #: addons/sftp.php:461
5228
  msgid "Check your file permissions: Could not successfully create and enter:"
5229
  msgstr ""
5230
 
5231
+ #: addons/sftp.php:46 addons/sftp.php:47 addons/sftp.php:48
5232
  msgid "No %s found"
5233
  msgstr ""
5234
 
5235
+ #: addons/sftp.php:35
5236
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5237
  msgstr ""
5238
 
5239
+ #: addons/sftp.php:35
5240
  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."
5241
  msgstr ""
5242
 
5243
+ #: addons/morefiles.php:622
5244
  msgid "No backup of %s directories: there was nothing found to back up"
5245
  msgstr ""
5246
 
5247
+ #: addons/morefiles.php:269
5248
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5249
  msgstr ""
5250
 
5251
+ #: addons/morefiles.php:267
5252
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5253
  msgstr ""
5254
 
5255
+ #: addons/morefiles.php:246
5256
  msgid "More Files"
5257
  msgstr ""
5258
 
5259
+ #: addons/morefiles.php:160
5260
  msgid "WordPress core (including any additions to your WordPress root directory)"
5261
  msgstr ""
5262
 
5263
+ #: addons/morefiles.php:153
5264
  msgid "The above files comprise everything in a WordPress installation."
5265
  msgstr ""
5266
 
5267
+ #: addons/morefiles.php:134
5268
  msgid "Over-write wp-config.php"
5269
  msgstr ""
5270
 
5271
+ #: addons/morefiles.php:130 addons/morefiles.php:622
5272
+ #: includes/class-wpadmin-commands.php:461
5273
  msgid "WordPress Core"
5274
  msgstr ""
5275
 
5276
+ #: methods/addon-base-v2.php:303 methods/stream-base.php:312
5277
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5278
  msgstr ""
5279
 
5280
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5281
+ #: addons/googlecloud.php:666 addons/sftp.php:448 admin.php:2702 admin.php:2737
5282
+ #: admin.php:2746 methods/addon-base-v2.php:293 methods/stream-base.php:298
5283
  msgid "Failed"
5284
  msgstr ""
5285
 
5287
  msgid "WebDAV URL"
5288
  msgstr ""
5289
 
5290
+ #: methods/stream-base.php:282
5291
  msgid "Local write failed: Failed to download"
5292
  msgstr ""
5293
 
5294
+ #: methods/stream-base.php:269
5295
  msgid "Error opening remote file: Failed to download"
5296
  msgstr ""
5297
 
5298
+ #: methods/stream-base.php:103 methods/stream-base.php:107
5299
  msgid "Chunk %s: A %s error occurred"
5300
  msgstr ""
5301
 
5302
+ #: addons/googlecloud.php:278 addons/sftp.php:44 methods/addon-base-v2.php:65
5303
+ #: methods/addon-base-v2.php:106 methods/addon-base-v2.php:138
5304
+ #: methods/addon-base-v2.php:194 methods/addon-base-v2.php:273
5305
+ #: methods/ftp.php:31 methods/googledrive.php:130 methods/stream-base.php:27
5306
+ #: methods/stream-base.php:141 methods/stream-base.php:147
5307
+ #: methods/stream-base.php:181 methods/stream-base.php:246
5308
  msgid "No %s settings were found"
5309
  msgstr ""
5310
 
5311
+ #: methods/ftp.php:388
5312
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5313
  msgstr ""
5314
 
5315
+ #: methods/ftp.php:385
5316
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5317
  msgstr ""
5318
 
5319
+ #: methods/ftp.php:376
5320
  msgid "Failure: we did not successfully log in with those credentials."
5321
  msgstr ""
5322
 
5323
+ #: methods/ftp.php:358
5324
  msgid "Failure: No server details were given."
5325
  msgstr ""
5326
 
5327
+ #: methods/ftp.php:330
5328
  msgid "Needs to already exist"
5329
  msgstr ""
5330
 
5331
+ #: methods/ftp.php:310
5332
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5333
  msgstr ""
5334
 
5335
+ #: methods/ftp.php:310
5336
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5337
  msgstr ""
5338
 
5339
+ #: addons/onedrive.php:755 methods/dropbox.php:614
5340
  msgid "Your %s account name: %s"
5341
  msgstr ""
5342
 
5343
+ #: methods/dropbox.php:604 methods/dropbox.php:631
5344
  msgid "though part of the returned information was not as expected - your mileage may vary"
5345
  msgstr ""
5346
 
5347
+ #: methods/dropbox.php:599 methods/dropbox.php:601
5348
  msgid "you have authenticated your %s account"
5349
  msgstr ""
5350
 
5351
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5352
  msgid "there's an add-on for that."
5353
  msgstr ""
5354
 
5355
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5356
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5357
  msgstr ""
5358
 
5359
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5360
  msgid "Backups are saved in"
5361
  msgstr ""
5362
 
5363
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5364
  msgid "Need to use sub-folders?"
5365
  msgstr ""
5366
 
5367
+ #: methods/dropbox.php:197 methods/dropbox.php:218 methods/dropbox.php:234
5368
  msgid "error: failed to upload file to %s (see log file for more)"
5369
  msgstr ""
5370
 
5371
+ #: methods/dropbox.php:82 methods/dropbox.php:99
5372
  msgid "You do not appear to be authenticated with Dropbox"
5373
  msgstr ""
5374
 
5375
+ #: methods/s3.php:1030
5376
  msgid "The communication with %s was not encrypted."
5377
  msgstr ""
5378
 
5379
+ #: methods/s3.php:1028
5380
  msgid "The communication with %s was encrypted."
5381
  msgstr ""
5382
 
5383
+ #: addons/googlecloud.php:689 methods/s3.php:1025
5384
  msgid "We accessed the bucket, and were able to create files within it."
5385
  msgstr ""
5386
 
5387
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5388
+ #: methods/s3.php:1035
5389
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5390
  msgstr ""
5391
 
5392
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5393
+ #: methods/s3.php:1035
5394
  msgid "Failure"
5395
  msgstr ""
5396
 
5397
+ #: methods/s3.php:1011
5398
  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)."
5399
  msgstr ""
5400
 
5401
+ #: addons/s3-enhanced.php:145 methods/openstack2.php:117 methods/s3.php:1005
5402
  msgid "Region"
5403
  msgstr ""
5404
 
5405
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:987
5406
  msgid "Failure: No bucket details were given."
5407
  msgstr ""
5408
 
5409
+ #: methods/s3.php:965
5410
  msgid "API secret"
5411
  msgstr ""
5412
 
5413
+ #: methods/s3.php:858
5414
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5415
  msgstr ""
5416
 
5417
+ #: methods/s3.php:857
5418
  msgid "%s location"
5419
  msgstr ""
5420
 
5421
+ #: methods/s3.php:853
5422
  msgid "%s secret key"
5423
  msgstr ""
5424
 
5425
+ #: methods/s3.php:849
5426
  msgid "%s access key"
5427
  msgstr ""
5428
 
5429
+ #: methods/s3.php:814
5430
  msgid "If you see errors about SSL certificates, then please go here for help."
5431
  msgstr ""
5432
 
5433
+ #: methods/s3.php:812
5434
  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."
5435
  msgstr ""
5436
 
5437
+ #: methods/s3.php:446 methods/s3.php:620 methods/s3.php:722
5438
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5439
  msgstr ""
5440
 
5441
+ #: methods/s3.php:705 methods/s3.php:751
5442
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5443
  msgstr ""
5444
 
5445
+ #: methods/s3.php:424
5446
  msgid "%s re-assembly error (%s): (see log file for more)"
5447
  msgstr ""
5448
 
5449
+ #: methods/s3.php:420
5450
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5451
  msgstr ""
5452
 
5453
+ #: methods/s3.php:404
5454
  msgid "%s chunk %s: upload failed"
5455
  msgstr ""
5456
 
5457
+ #: methods/s3.php:394
5458
  msgid "%s error: file %s was shortened unexpectedly"
5459
  msgstr ""
5460
 
5461
+ #: methods/s3.php:371
5462
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5463
  msgstr ""
5464
 
5465
+ #: methods/email.php:71
5466
  msgid "Note:"
5467
  msgstr ""
5468
 
5469
+ #: methods/email.php:45
5470
  msgid "WordPress Backup"
5471
  msgstr ""
5472
 
5473
+ #: methods/cloudfiles.php:547 methods/openstack-base.php:480
5474
  msgid "We accessed the container, and were able to create files within it."
5475
  msgstr ""
5476
 
5477
+ #: methods/cloudfiles.php:543
5478
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5479
  msgstr ""
5480
 
5481
+ #: methods/cloudfiles.php:516 methods/openstack-base.php:424
5482
  msgid "Failure: No container details were given."
5483
  msgstr ""
5484
 
5485
+ #: addons/moredatabase.php:238 addons/sftp.php:362 addons/webdav.php:63
5486
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:496
5487
+ #: methods/openstack2.php:125
5488
  msgid "Username"
5489
  msgstr "ব্যবহারকারী নাম"
5490
 
5491
+ #: methods/cloudfiles-new.php:153 methods/cloudfiles.php:491 methods/s3.php:961
5492
  msgid "API key"
5493
  msgstr ""
5494
 
5495
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5496
+ #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:418
5497
+ #: addons/sftp.php:422 addons/sftp.php:426 addons/webdav.php:103 admin.php:662
5498
+ #: methods/addon-base-v2.php:286 methods/cloudfiles-new.php:153
5499
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:491
5500
+ #: methods/cloudfiles.php:496 methods/ftp.php:362 methods/ftp.php:366
5501
+ #: methods/openstack2.php:146 methods/openstack2.php:151
5502
+ #: methods/openstack2.php:156 methods/openstack2.php:161 methods/s3.php:961
5503
+ #: methods/s3.php:965
5504
  msgid "Failure: No %s was given."
5505
  msgstr ""
5506
 
5507
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5508
+ #: methods/openstack-base.php:517 methods/s3.php:801
5509
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5510
  msgstr ""
5511
 
5512
+ #: methods/cloudfiles.php:477
5513
  msgid "Cloud Files container"
5514
  msgstr ""
5515
 
5516
+ #: methods/cloudfiles.php:473
5517
  msgid "Cloud Files API key"
5518
  msgstr ""
5519
 
5520
+ #: methods/cloudfiles.php:469
5521
  msgid "Cloud Files username"
5522
  msgstr ""
5523
 
5524
+ #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:100
5525
+ #: methods/cloudfiles.php:453
5526
  msgid "UK"
5527
  msgstr ""
5528
 
5529
+ #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:99
5530
+ #: methods/cloudfiles.php:452
5531
  msgid "US (default)"
5532
  msgstr ""
5533
 
5534
+ #: methods/cloudfiles.php:449
5535
  msgid "US or UK Cloud"
5536
  msgstr ""
5537
 
5538
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5539
+ #: methods/openstack2.php:98
5540
  msgid "Also, you should read this important FAQ."
5541
  msgstr ""
5542
 
5543
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5544
  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."
5545
  msgstr ""
5546
 
5547
+ #: addons/sftp.php:409 admin.php:685 methods/addon-base-v2.php:252
5548
+ #: methods/backup-module.php:186 methods/cloudfiles.php:483
5549
+ #: methods/openstack-base.php:528 methods/s3.php:863
5550
+ #: methods/stream-base.php:220
5551
  msgid "Test %s Settings"
5552
  msgstr ""
5553
 
5554
+ #: methods/openstack-base.php:407
5555
  msgid "Error downloading remote file: Failed to download ("
5556
  msgstr ""
5557
 
5558
+ #: class-updraftplus.php:1044 class-updraftplus.php:1088
5559
+ #: methods/cloudfiles.php:379 methods/stream-base.php:262
5560
  msgid "Error opening local file: Failed to download"
5561
  msgstr ""
5562
 
5563
+ #: methods/cloudfiles.php:205
5564
  msgid "Cloud Files error - failed to upload file"
5565
  msgstr ""
5566
 
5567
+ #: addons/sftp.php:135 addons/sftp.php:147 methods/cloudfiles.php:134
5568
+ #: methods/cloudfiles.php:176 methods/openstack-base.php:77
5569
+ #: methods/openstack-base.php:266 methods/s3.php:339 methods/s3.php:351
5570
+ #: methods/s3.php:352
5571
  msgid "%s Error: Failed to upload"
5572
  msgstr ""
5573
 
5574
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5575
+ #: class-updraftplus.php:906 methods/cloudfiles.php:117
5576
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5577
  msgid "%s Error: Failed to open local file"
5578
  msgstr ""
5579
 
5580
+ #: methods/cloudfiles.php:90 methods/cloudfiles.php:331
5581
+ #: methods/cloudfiles.php:350
5582
  msgid "Cloud Files error - failed to create and access the container"
5583
  msgstr ""
5584
 
5585
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5586
+ #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:526
5587
+ #: methods/cloudfiles.php:529 methods/cloudfiles.php:532
5588
  msgid "Cloud Files authentication failed"
5589
  msgstr ""
5590
 
5591
+ #: addons/googlecloud.php:907 methods/googledrive.php:963
5592
  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."
5593
  msgstr ""
5594
 
5595
+ #: addons/googlecloud.php:896 methods/googledrive.php:952
5596
  msgid "Authenticate with Google"
5597
  msgstr ""
5598
 
5599
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5600
+ #: methods/googledrive.php:922
5601
  msgid "Client Secret"
5602
  msgstr ""
5603
 
5604
+ #: addons/googlecloud.php:842 methods/googledrive.php:919
5605
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5606
  msgstr ""
5607
 
5608
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5609
+ #: methods/googledrive.php:918
5610
  msgid "Client ID"
5611
  msgstr ""
5612
 
5613
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5614
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5615
  msgstr ""
5616
 
5617
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5618
  msgid "Select 'Web Application' as the application type."
5619
  msgstr ""
5620
 
5621
+ #: addons/googlecloud.php:826 methods/googledrive.php:906
5622
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5623
  msgstr ""
5624
 
5625
+ #: methods/addon-base-v2.php:240 methods/cloudfiles.php:425
5626
+ #: methods/dropbox.php:468 methods/ftp.php:305 methods/googledrive.php:891
5627
+ #: methods/openstack-base.php:507 methods/s3.php:773
5628
+ #: methods/stream-base.php:213
5629
  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."
5630
  msgstr ""
5631
 
5632
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5633
+ #: addons/googlecloud.php:709 methods/googledrive.php:445
5634
+ #: methods/googledrive.php:446
5635
  msgid "Account is not authorized."
5636
  msgstr ""
5637
 
5638
+ #: methods/googledrive.php:371 methods/googledrive.php:417
5639
+ #: methods/googledrive.php:423 methods/googledrive.php:425
5640
+ #: methods/stream-base.php:197
5641
  msgid "Failed to upload to %s"
5642
  msgstr ""
5643
 
5644
+ #: methods/googledrive.php:400
5645
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5646
  msgstr ""
5647
 
5648
+ #: methods/googledrive.php:497
5649
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5650
  msgstr ""
5651
 
5652
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5653
+ #: methods/googledrive.php:348
5654
  msgid "you have authenticated your %s account."
5655
  msgstr ""
5656
 
5657
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5658
+ #: addons/onedrive.php:793 addons/sftp.php:481 methods/addon-base-v2.php:300
5659
+ #: methods/cloudfiles.php:547 methods/googledrive.php:348
5660
+ #: methods/openstack-base.php:480 methods/s3.php:1025
5661
+ #: methods/stream-base.php:309
5662
  msgid "Success"
5663
  msgstr ""
5664
 
5665
+ #: addons/onedrive.php:747 methods/dropbox.php:642 methods/dropbox.php:651
5666
+ #: methods/googledrive.php:322
5667
  msgid "Your %s quota usage: %s %% used, %s available"
5668
  msgstr ""
5669
 
5670
+ #: addons/googlecloud.php:390 methods/googledrive.php:295
5671
  msgid "Authorization failed"
5672
  msgstr "অনুমোদন ব্যর্থ"
5673
 
5674
+ #: addons/googlecloud.php:382 methods/googledrive.php:287
5675
  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."
5676
  msgstr ""
5677
 
5678
+ #: methods/addon-not-yet-present.php:62
5679
  msgid "follow this link to get it"
5680
  msgstr "এটি পেতে এই লিঙ্কটি অনুসরণ করুন"
5681
 
5682
+ #: methods/addon-not-yet-present.php:62
5683
  msgid "%s support is available as an add-on"
5684
  msgstr ""
5685
 
5686
+ #: methods/addon-not-yet-present.php:27 methods/addon-not-yet-present.php:39
5687
+ #: methods/addon-not-yet-present.php:46 methods/addon-not-yet-present.php:55
5688
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5689
  msgstr ""
5690
 
5693
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5694
  msgstr ""
5695
 
5696
+ #: addons/migrator.php:1770 admin.php:2705 admin.php:2739 admin.php:2743
5697
+ #: admin.php:3619 admin.php:3632 restorer.php:2203 restorer.php:2309
5698
  msgid "OK"
5699
  msgstr "ঠিক আছে"
5700
 
5718
  msgid "Old table prefix:"
5719
  msgstr ""
5720
 
5721
+ #: addons/reporting.php:65 addons/reporting.php:152 backup.php:942
5722
+ #: class-updraftplus.php:4025
5723
  msgid "Backup of:"
5724
  msgstr ""
5725
 
5795
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5796
  msgstr ""
5797
 
5798
+ #: admin.php:3640 admin.php:3641
5799
  msgid "Could not find one of the files for restoration"
5800
  msgstr ""
5801
 
5802
+ #: admin.php:3735
5803
  msgid "Error message"
5804
  msgstr ""
5805
 
5806
+ #: admin.php:3637
5807
  msgid "The backup records do not contain information about the proper size of this file."
5808
  msgstr ""
5809
 
5810
+ #: admin.php:3629
5811
  msgid "Archive is expected to be size:"
5812
  msgstr ""
5813
 
5814
+ #: admin.php:3513
5815
  msgid "If making a request for support, please include this information:"
5816
  msgstr ""
5817
 
5818
+ #: admin.php:3512
5819
  msgid "ABORT: Could not find the information on which entities to restore."
5820
  msgstr ""
5821
 
5822
+ #: admin.php:3466
5823
  msgid "UpdraftPlus Restoration: Progress"
5824
  msgstr ""
5825
 
5826
+ #: admin.php:3418
5827
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5828
  msgstr ""
5829
 
5830
+ #: admin.php:3367
5831
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5832
  msgstr ""
5833
 
5834
+ #: admin.php:3376
 
 
 
 
5835
  msgid "Delete this backup set"
5836
  msgstr ""
5837
 
5838
+ #: admin.php:3047
5839
  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."
5840
  msgstr ""
5841
 
5842
+ #: admin.php:3044
5843
  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."
5844
  msgstr ""
5845
 
5846
+ #: admin.php:3042
5847
  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)."
5848
  msgstr ""
5849
 
5850
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5851
+ #: methods/openstack-base.php:517 methods/s3.php:801
5852
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5853
  msgstr ""
5854
 
5855
+ #: templates/wp-admin/settings/form-contents.php:421
5856
  msgid "Save Changes"
5857
  msgstr ""
5858
 
5859
+ #: templates/wp-admin/settings/form-contents.php:398
5860
  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."
5861
  msgstr ""
5862
 
5863
+ #: templates/wp-admin/settings/form-contents.php:397
5864
  msgid "Disable SSL entirely where possible"
5865
  msgstr ""
5866
 
5867
+ #: templates/wp-admin/settings/form-contents.php:393
5868
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5869
  msgstr ""
5870
 
5871
+ #: templates/wp-admin/settings/form-contents.php:393
5872
  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."
5873
  msgstr ""
5874
 
5875
+ #: templates/wp-admin/settings/form-contents.php:392
5876
  msgid "Do not verify SSL certificates"
5877
  msgstr ""
5878
 
5879
+ #: templates/wp-admin/settings/form-contents.php:388
5880
  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."
5881
  msgstr ""
5882
 
5883
+ #: templates/wp-admin/settings/form-contents.php:387
5884
  msgid "Use the server's SSL certificates"
5885
  msgstr ""
5886
 
5887
+ #: admin.php:2918
5888
  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."
5889
  msgstr ""
5890
 
5891
+ #: admin.php:2918
5892
  msgid "click here"
5893
  msgstr "এখানে ক্লিক করুন"
5894
 
5895
+ #: admin.php:2918
5896
  msgid "or, to reset this option"
5897
  msgstr ""
5898
 
5899
+ #: admin.php:2918
5900
  msgid "Follow this link to attempt to create the directory and set the permissions"
5901
  msgstr ""
5902
 
5903
+ #: admin.php:2910
5904
  msgid "Backup directory specified is writable, which is good."
5905
  msgstr ""
5906
 
5907
+ #: templates/wp-admin/settings/form-contents.php:368
5908
  msgid "Backup directory"
5909
  msgstr "ব্যাকআপ ডিরেক্টরি"
5910
 
5911
+ #: templates/wp-admin/settings/form-contents.php:363
5912
  msgid "Delete local backup"
5913
  msgstr "স্থানীয় ব্যাকআপ মুছুন"
5914
 
5915
+ #: templates/wp-admin/settings/form-contents.php:343
5916
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5917
  msgstr ""
5918
 
5919
+ #: templates/wp-admin/settings/form-contents.php:343
5920
  msgid "Show expert settings"
5921
  msgstr "বিশেষজ্ঞ সেটিংস দেখান"
5922
 
5923
+ #: templates/wp-admin/settings/form-contents.php:342
5924
  msgid "Expert settings"
5925
  msgstr "বিশেষজ্ঞদের সেটিংস"
5926
 
5927
+ #: templates/wp-admin/settings/form-contents.php:353
5928
  msgid "Debug mode"
5929
  msgstr ""
5930
 
5931
+ #: templates/wp-admin/settings/form-contents.php:338
5932
  msgid "Advanced / Debugging Settings"
5933
  msgstr ""
5934
 
5935
+ #: admin.php:621
5936
  msgid "Requesting start of backup..."
5937
  msgstr ""
5938
 
5939
+ #: addons/morefiles.php:294 admin.php:637
5940
  msgid "Cancel"
5941
  msgstr "বাতিল"
5942
 
5943
+ #: addons/reporting.php:216 admin.php:3191
5944
  msgid "None"
5945
  msgstr "কোনটিই না"
5946
 
5948
  msgid "Choose your remote storage"
5949
  msgstr ""
5950
 
5951
+ #: templates/wp-admin/settings/form-contents.php:236
5952
  msgid "Manually decrypt a database backup file"
5953
  msgstr ""
5954
 
5955
+ #: templates/wp-admin/settings/form-contents.php:217
5956
  msgid "Database encryption phrase"
5957
  msgstr ""
5958
 
5959
+ #: templates/wp-admin/settings/form-contents.php:315 udaddons/options.php:150
5960
  msgid "Email"
5961
  msgstr ""
5962
 
5963
+ #: templates/wp-admin/settings/form-contents.php:207
5964
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5965
  msgstr ""
5966
 
5967
+ #: addons/morefiles.php:440 admin.php:2988
5968
  msgid "Exclude these:"
5969
  msgstr ""
5970
 
5971
+ #: admin.php:2979
5972
  msgid "Any other directories found inside wp-content"
5973
  msgstr ""
5974
 
5975
+ #: templates/wp-admin/settings/form-contents.php:204
5976
  msgid "Include in files backup"
5977
  msgstr ""
5978
 
5984
  msgid "To fix the time at which a backup should take place,"
5985
  msgstr ""
5986
 
5987
+ #: admin.php:2904
5988
  msgid "Monthly"
5989
  msgstr "মাসিক"
5990
 
5991
+ #: admin.php:2903
5992
  msgid "Fortnightly"
5993
  msgstr "পাক্ষিক"
5994
 
5995
+ #: admin.php:2902
5996
  msgid "Weekly"
5997
  msgstr "সাপ্তাহিক"
5998
 
5999
+ #: admin.php:2901
6000
  msgid "Daily"
6001
  msgstr ""
6002
 
6003
+ #: admin.php:644 admin.php:2884
6004
  msgid "Download log file"
6005
  msgstr "লগ ফাইল ডাউনলোড করুন"
6006
 
6007
+ #: admin.php:2802
6008
  msgid "The folder exists, but your webserver does not have permission to write to it."
6009
  msgstr ""
6010
 
6011
+ #: admin.php:2797
6012
  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"
6013
  msgstr ""
6014
 
6015
+ #: admin.php:2783
6016
  msgid "The request to the filesystem to create the directory failed."
6017
  msgstr ""
6018
 
6019
+ #: addons/migrator.php:2243 admin.php:638 admin.php:2699 admin.php:2732
6020
+ #: admin.php:3376 templates/wp-admin/settings/delete-and-restore-modals.php:5
6021
  msgid "Delete"
6022
  msgstr "মুছুন"
6023
 
6024
+ #: admin.php:2639
6025
  msgid "show log"
6026
  msgstr "লগ দেখান"
6027
 
6097
  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"
6098
  msgstr ""
6099
 
6100
+ #: addons/morefiles.php:130
6101
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6102
  msgid "%s restoration options:"
6103
  msgstr ""
6134
  msgid "Delete backup set"
6135
  msgstr ""
6136
 
6137
+ #: admin.php:620
6138
  msgid "Download error: the server sent us a response which we did not understand."
6139
  msgstr ""
6140
 
6144
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6145
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6146
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6147
+ #: addons/s3-enhanced.php:127 addons/sftp.php:737 addons/webdav.php:79
6148
+ #: admin.php:82 admin.php:612 admin.php:3634 admin.php:3664
6149
+ #: methods/remotesend.php:69 methods/remotesend.php:227
6150
+ #: methods/updraftvault.php:432 restorer.php:1364
6151
  msgid "Error:"
6152
  msgstr ""
6153
 
6154
+ #: admin.php:603 templates/wp-admin/settings/downloading-and-restoring.php:34
6155
  msgid "calculating..."
6156
  msgstr ""
6157
 
6158
+ #: includes/updraftplus-notices.php:260
6159
+ msgid "or"
6160
+ msgstr ""
6161
+
6162
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6163
  msgid "UpdraftPlus - Upload backup files"
6164
  msgstr ""
6171
  msgid "Web-server disk space in use by UpdraftPlus"
6172
  msgstr ""
6173
 
6174
+ #: addons/google-enhanced.php:81 methods/googledrive.php:130
6175
+ #: methods/googledrive.php:348 methods/googledrive.php:371
6176
+ #: methods/googledrive.php:400 methods/googledrive.php:407
6177
+ #: methods/googledrive.php:417 methods/googledrive.php:423
6178
+ #: methods/googledrive.php:425 methods/googledrive.php:890
6179
+ #: methods/googledrive.php:902 methods/googledrive.php:918
6180
+ #: methods/googledrive.php:922 methods/googledrive.php:933
6181
+ #: methods/googledrive.php:943
6182
  msgid "Google Drive"
6183
  msgstr "গুগোল ড্রাইভ"
6184
 
6194
  msgid "More tasks:"
6195
  msgstr "আরও টাস্ক:"
6196
 
6197
+ #: admin.php:2402
6198
  msgid "Download most recently modified log file"
6199
  msgstr ""
6200
 
6201
+ #: admin.php:2361 admin.php:2367 central/bootstrap.php:161
6202
  msgid "(Nothing yet logged)"
6203
  msgstr ""
6204
 
6205
+ #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2360
6206
+ #: admin.php:2365
6207
  msgid "Last log message"
6208
  msgstr ""
6209
 
6210
+ #: addons/migrator.php:218 admin.php:643 admin.php:3367
6211
  #: templates/wp-admin/settings/tab-status.php:30
6212
  msgid "Restore"
6213
  msgstr "পুনঃস্থাপন"
6214
 
6215
+ #: admin.php:472 admin.php:636 templates/wp-admin/settings/tab-status.php:27
6216
  msgid "Backup Now"
6217
  msgstr ""
6218
 
6219
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6220
+ #: addons/reporting.php:231 admin.php:257 admin.php:3166 admin.php:3239
6221
+ #: admin.php:3718 includes/class-wpadmin-commands.php:138
6222
+ #: includes/class-wpadmin-commands.php:459
6223
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6224
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6225
  msgid "Database"
6226
  msgstr ""
6227
 
6228
+ #: admin.php:253 admin.php:4130
6229
  msgid "Files"
6230
  msgstr ""
6231
 
6233
  msgid "Next scheduled backups"
6234
  msgstr ""
6235
 
6236
+ #: admin.php:233
6237
  msgid "At the same time as the files backup"
6238
  msgstr ""
6239
 
6240
+ #: admin.php:223 admin.php:244 admin.php:251
6241
  msgid "Nothing currently scheduled"
6242
  msgstr ""
6243
 
6249
  msgid "JavaScript warning"
6250
  msgstr ""
6251
 
6252
+ #: admin.php:623 admin.php:2429
6253
  msgid "Delete Old Directories"
6254
  msgstr ""
6255
 
6256
+ #: admin.php:2174
6257
  msgid "Current limit is:"
6258
  msgstr ""
6259
 
6260
+ #: admin.php:2148
6261
  msgid "Your backup has been restored."
6262
  msgstr ""
6263
 
6269
  msgid "Lead developer's homepage"
6270
  msgstr "প্রধান ডেভেলপার এর হোমপেজে"
6271
 
6272
+ #: admin.php:4050
6273
  msgid "Your settings have been wiped."
6274
  msgstr ""
6275
 
6276
+ #: admin.php:2108
6277
  msgid "Backup directory successfully created."
6278
  msgstr ""
6279
 
6280
+ #: admin.php:2101
6281
  msgid "Backup directory could not be created"
6282
  msgstr ""
6283
 
6284
+ #: admin.php:2671
6285
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6286
  msgstr ""
6287
 
6288
+ #: admin.php:2669
6289
  msgid "Old directories successfully removed."
6290
  msgstr ""
6291
 
6292
+ #: admin.php:2666
6293
  msgid "Remove old directories"
6294
  msgstr ""
6295
 
6296
+ #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2050
6297
+ #: admin.php:2059 admin.php:2068 admin.php:2110 admin.php:2673
6298
  msgid "Return to UpdraftPlus Configuration"
6299
  msgstr ""
6300
 
6301
+ #: admin.php:616 admin.php:2050 admin.php:2059 admin.php:2068 admin.php:2110
6302
+ #: admin.php:2673 templates/wp-admin/settings/existing-backups-table.php:14
6303
  msgid "Actions"
6304
  msgstr ""
6305
 
6306
+ #: admin.php:2039
6307
  msgid "Restore successful!"
6308
  msgstr ""
6309
 
6310
+ #: admin.php:1969
6311
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6312
  msgstr ""
6313
 
6314
+ #: admin.php:1879
6315
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6316
  msgstr ""
6317
 
6318
+ #: admin.php:1760
6319
  msgid "No local copy present."
6320
  msgstr ""
6321
 
6322
+ #: admin.php:1757
6323
  msgid "Download in progress"
6324
  msgstr "ডাউনলোড হচ্ছে"
6325
 
6326
+ #: admin.php:615 admin.php:1746
6327
  msgid "File ready."
6328
  msgstr "ফাইল তৈরি।"
6329
 
6330
+ #: admin.php:1727
6331
  msgid "Download failed"
6332
  msgstr ""
6333
 
6334
+ #: admin.php:613 admin.php:1518 admin.php:3617 class-updraftplus.php:1044
6335
+ #: class-updraftplus.php:1088 methods/addon-base-v2.php:84
6336
+ #: methods/addon-base-v2.php:89 methods/addon-base-v2.php:204
6337
+ #: methods/addon-base-v2.php:224 methods/stream-base.php:197 restorer.php:2199
6338
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6339
  msgid "Error"
6340
  msgstr ""
6341
 
6342
+ #: admin.php:1546
6343
  msgid "Could not find that job - perhaps it has already finished?"
6344
  msgstr ""
6345
 
6346
+ #: admin.php:1538
6347
  msgid "Job deleted"
6348
  msgstr ""
6349
 
6350
+ #: admin.php:1622
6351
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6352
  msgstr ""
6353
 
6354
+ #: admin.php:688
6355
  msgid "Nothing yet logged"
6356
  msgstr ""
6357
 
6358
+ #: admin.php:905
6359
  msgid "Please consult this FAQ if you have problems backing up."
6360
  msgstr ""
6361
 
6362
+ #: admin.php:905
6363
  msgid "Your website is hosted using the %s web server."
6364
  msgstr ""
6365
 
6366
+ #: admin.php:901
6367
  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."
6368
  msgstr ""
6369
 
6370
+ #: admin.php:897
6371
  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."
6372
  msgstr ""
6373
 
6374
+ #: admin.php:889 admin.php:893 admin.php:897 admin.php:901 admin.php:905
6375
+ #: admin.php:914 admin.php:3035 admin.php:3042 admin.php:3044
6376
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435 methods/ftp.php:291
6377
+ #: methods/openstack-base.php:517 methods/s3.php:797 methods/s3.php:801
6378
+ #: methods/updraftvault.php:258
6379
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6380
  #: udaddons/updraftplus-addons.php:208
6381
  msgid "Warning"
6382
  msgstr "সতর্কতা"
6383
 
6384
+ #: admin.php:834
6385
  msgid "Add-Ons / Pro Support"
6386
  msgstr "অ্যাড অন / প্রো সাপোর্ট"
6387
 
6388
+ #: admin.php:488 admin.php:830 templates/wp-admin/settings/tab-bar.php:7
6389
  msgid "Settings"
6390
  msgstr "সেটিংস"
6391
 
6392
+ #: admin.php:803
6393
  msgid "Allowed Files"
6394
  msgstr ""
6395
 
6397
  msgid "Could not create %s zip. Consult the log file for more information."
6398
  msgstr ""
6399
 
6400
+ #: backup.php:2024
6401
  msgid "Infinite recursion: consult your log for more information"
6402
  msgstr ""
6403
 
6409
  msgid "Like UpdraftPlus and can spare one minute?"
6410
  msgstr ""
6411
 
6412
+ #: addons/azure.php:216 class-updraftplus.php:3784 methods/googledrive.php:823
6413
  msgid "File not found"
6414
  msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
6415
 
6416
+ #: class-updraftplus.php:3695
6417
  msgid "The decryption key used:"
6418
  msgstr ""
6419
 
6420
+ #: class-updraftplus.php:3695 class-updraftplus.php:3965 restorer.php:390
6421
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6422
  msgstr ""
6423
 
6424
+ #: class-updraftplus.php:3676 class-updraftplus.php:3953 restorer.php:377
6425
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6426
  msgstr ""
6427
 
6428
+ #: backup.php:1914
6429
  msgid "Could not open the backup file for writing"
6430
  msgstr ""
6431
 
6432
+ #: class-updraftplus.php:3288
6433
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6434
  msgstr ""
6435
 
6436
+ #: class-updraftplus.php:3265
6437
  msgid "Could not read the directory"
6438
  msgstr "ডিরেক্টরিটি পড়া যায়নি"
6439
 
6440
+ #: admin.php:1797 backup.php:1139 restorer.php:225
6441
  msgid "Backup directory (%s) is not writable, or does not exist."
6442
  msgstr ""
6443
 
6444
+ #: backup.php:943
6445
  msgid "WordPress backup is complete"
6446
  msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
6447
 
6448
+ #: class-updraftplus.php:2834
6449
  msgid "The backup attempt has finished, apparently unsuccessfully"
6450
  msgstr ""
6451
 
6452
+ #: class-updraftplus.php:2819
6453
  msgid "The backup apparently succeeded and is now complete"
6454
  msgstr ""
6455
 
6456
+ #: addons/moredatabase.php:373
6457
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6458
  msgstr ""
6459
 
6460
+ #: class-updraftplus.php:2246
6461
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6462
  msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
6463
 
6464
+ #: class-updraftplus.php:1613
6465
  msgid "Others"
6466
  msgstr "অন্যান্য"
6467
 
6468
+ #: addons/multisite.php:446 class-updraftplus.php:1598
6469
  msgid "Uploads"
6470
  msgstr "আপলোডসমূহ"
6471
 
6472
+ #: class-updraftplus.php:1597
6473
  msgid "Themes"
6474
  msgstr "থিমসমূহ"
6475
 
6476
+ #: class-updraftplus.php:1596
6477
  msgid "Plugins"
6478
  msgstr "প্লাগইন"
6479
 
6480
+ #: class-updraftplus.php:458
6481
  msgid "No log files were found."
6482
  msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
6483
 
6484
+ #: admin.php:1681 admin.php:1685 class-updraftplus.php:453
6485
  msgid "The log file could not be read."
6486
  msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
6487
 
6488
+ #: admin.php:921 admin.php:925 admin.php:929 admin.php:933 admin.php:937
6489
+ #: class-updraftplus.php:418 class-updraftplus.php:453
6490
+ #: class-updraftplus.php:458 class-updraftplus.php:463
6491
  msgid "UpdraftPlus notice:"
6492
  msgstr "UpdraftPlus নোটিশ:"
6493
 
6494
+ #: addons/multisite.php:63 addons/multisite.php:654 options.php:42
6495
  msgid "UpdraftPlus Backups"
6496
  msgstr "UpdraftPlus ব্যাকআপসমূহ"
languages/updraftplus-bs_BA.po CHANGED
@@ -11,59 +11,127 @@ msgstr ""
11
  "Language: bs_BA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: restorer.php:1629
15
  msgid "Skipped tables:"
16
  msgstr ""
17
 
18
- #: class-updraftplus.php:4049
19
  msgid "This database backup has the following WordPress tables excluded: %s"
20
  msgstr ""
21
 
22
- #: admin.php:2271
23
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
24
  msgstr ""
25
 
26
- #: admin.php:2271
27
  msgid "All WordPress tables will be backed up."
28
  msgstr ""
29
 
30
- #: admin.php:675
31
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
32
  msgstr ""
33
 
34
- #: admin.php:675
35
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
36
  msgstr ""
37
 
38
- #: admin.php:675
39
  msgid "The available memory on the server."
40
  msgstr ""
41
 
42
- #: admin.php:675
43
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
44
  msgstr ""
45
 
46
- #: admin.php:675
47
  msgid "The file failed to upload. Please check the following:"
48
  msgstr ""
49
 
50
- #: admin.php:674
51
  msgid "HTTP code:"
52
  msgstr ""
53
 
54
- #: admin.php:572
55
  msgid "You have chosen to backup a database, but no tables have been selected"
56
  msgstr ""
57
 
58
- #: addons/moredatabase.php:484
59
  msgid "tables"
60
  msgstr ""
61
 
62
- #: addons/moredatabase.php:483
63
  msgid "WordPress database"
64
  msgstr ""
65
 
66
- #: addons/moredatabase.php:476
67
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
68
  msgstr ""
69
 
@@ -214,7 +282,7 @@ msgstr ""
214
  msgid "UpdraftPlus"
215
  msgstr ""
216
 
217
- #: templates/wp-admin/settings/form-contents.php:241
218
  msgid "Recommended: optimize your database with WP-Optimize."
219
  msgstr ""
220
 
@@ -237,31 +305,27 @@ msgstr ""
237
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
238
  msgstr ""
239
 
240
- #: admin.php:595
241
- msgid "Show contents"
242
- msgstr ""
243
-
244
- #: addons/morefiles.php:246
245
  msgid "Please choose a file or directory"
246
  msgstr ""
247
 
248
- #: addons/morefiles.php:235
249
  msgid "Confirm"
250
  msgstr ""
251
 
252
- #: addons/morefiles.php:238
253
  msgid "Go up a directory"
254
  msgstr ""
255
 
256
- #: addons/morefiles.php:231
257
  msgid "Add directory..."
258
  msgstr ""
259
 
260
- #: addons/morefiles.php:224 addons/morefiles.php:244
261
  msgid "Edit"
262
  msgstr ""
263
 
264
- #: addons/morefiles.php:207
265
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
266
  msgstr ""
267
 
@@ -541,19 +605,19 @@ msgstr ""
541
  msgid "Backup of: %s"
542
  msgstr ""
543
 
544
- #: methods/googledrive.php:212
545
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
546
  msgstr ""
547
 
548
- #: methods/dropbox.php:569
549
  msgid "%s de-authentication"
550
  msgstr ""
551
 
552
- #: methods/dropbox.php:537
553
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
554
  msgstr ""
555
 
556
- #: methods/dropbox.php:511
557
  msgid "Follow this link to deauthenticate with %s."
558
  msgstr ""
559
 
@@ -561,7 +625,7 @@ msgstr ""
561
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
562
  msgstr ""
563
 
564
- #: backup.php:1495
565
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
566
  msgstr ""
567
 
@@ -569,47 +633,47 @@ msgstr ""
569
  msgid "You have selected a remote storage option which has an authorization step to complete:"
570
  msgstr ""
571
 
572
- #: admin.php:1391
573
  msgid "Remote files deleted:"
574
  msgstr ""
575
 
576
- #: admin.php:1390
577
  msgid "Local files deleted:"
578
  msgstr ""
579
 
580
- #: admin.php:887 admin.php:891 admin.php:899 admin.php:903
581
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
582
  msgstr ""
583
 
584
- #: admin.php:673
585
  msgid "remote files deleted"
586
  msgstr ""
587
 
588
- #: admin.php:671
589
  msgid "Complete"
590
  msgstr ""
591
 
592
- #: admin.php:670
593
  msgid "Do you want to carry out the import?"
594
  msgstr ""
595
 
596
- #: admin.php:669
597
  msgid "Which was exported on:"
598
  msgstr ""
599
 
600
- #: admin.php:668
601
  msgid "This will import data from:"
602
  msgstr ""
603
 
604
- #: admin.php:667
605
  msgid "Importing..."
606
  msgstr ""
607
 
608
- #: admin.php:664
609
  msgid "You have not yet selected a file to import."
610
  msgstr ""
611
 
612
- #: admin.php:648
613
  msgid "Your export file will be of your displayed settings, not your saved ones."
614
  msgstr ""
615
 
@@ -654,15 +718,15 @@ msgstr ""
654
  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"
655
  msgstr ""
656
 
657
- #: admin.php:2096
658
  msgid "To fix this problem go here."
659
  msgstr ""
660
 
661
- #: admin.php:2096
662
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
663
  msgstr ""
664
 
665
- #: admin.php:633
666
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
667
  msgstr ""
668
 
@@ -694,11 +758,11 @@ msgstr ""
694
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
695
  msgstr ""
696
 
697
- #: methods/s3.php:1012
698
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
699
  msgstr ""
700
 
701
- #: methods/s3.php:89
702
  msgid "No settings were found - please go to the Settings tab and check your settings"
703
  msgstr ""
704
 
@@ -766,11 +830,11 @@ msgstr ""
766
  msgid "Public key was sent to:"
767
  msgstr ""
768
 
769
- #: backup.php:2054
770
  msgid "Failed to open directory (check the file permissions and ownership): %s"
771
  msgstr ""
772
 
773
- #: backup.php:2032
774
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
775
  msgstr ""
776
 
@@ -816,27 +880,27 @@ msgstr ""
816
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
817
  msgstr ""
818
 
819
- #: methods/googledrive.php:422
820
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
821
  msgstr ""
822
 
823
- #: methods/ftp.php:383
824
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
825
  msgstr ""
826
 
827
- #: methods/ftp.php:355
828
  msgid "login"
829
  msgstr ""
830
 
831
- #: methods/email.php:77
832
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
833
  msgstr ""
834
 
835
- #: methods/email.php:28
836
  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."
837
  msgstr ""
838
 
839
- #: class-updraftplus.php:1484
840
  msgid "Size: %s MB"
841
  msgstr ""
842
 
@@ -848,7 +912,7 @@ msgstr ""
848
  msgid "i.e. you have an account there"
849
  msgstr ""
850
 
851
- #: templates/wp-admin/settings/form-contents.php:326
852
  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)."
853
  msgstr ""
854
 
@@ -856,7 +920,7 @@ msgstr ""
856
  msgid "Now"
857
  msgstr ""
858
 
859
- #: class-updraftplus.php:3913 restorer.php:996
860
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
861
  msgstr ""
862
 
@@ -864,21 +928,21 @@ msgstr ""
864
  msgid "(tap on an icon to select or unselect)"
865
  msgstr ""
866
 
867
- #: methods/updraftvault.php:291 methods/updraftvault.php:297
868
- #: methods/updraftvault.php:303
869
  msgid "%s per year"
870
  msgstr ""
871
 
872
- #: methods/updraftvault.php:290 methods/updraftvault.php:296
873
- #: methods/updraftvault.php:302
874
  msgid "or (annual discount)"
875
  msgstr ""
876
 
877
- #: methods/updraftvault.php:235
878
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
879
  msgstr ""
880
 
881
- #: class-updraftplus.php:354 class-updraftplus.php:399
882
  msgid "The given file was not found, or could not be read."
883
  msgstr ""
884
 
@@ -978,23 +1042,23 @@ msgstr ""
978
  msgid "UpdraftCentral Connection"
979
  msgstr ""
980
 
981
- #: backup.php:837 class-updraftplus.php:2715
982
  msgid "The backup was aborted by the user"
983
  msgstr ""
984
 
985
- #: admin.php:3953
986
  msgid "Your settings have been saved."
987
  msgstr ""
988
 
989
- #: admin.php:3146
990
  msgid "Total backup size:"
991
  msgstr ""
992
 
993
- #: admin.php:2593
994
  msgid "stop"
995
  msgstr ""
996
 
997
- #: admin.php:2431
998
  msgid "The backup has finished running"
999
  msgstr ""
1000
 
@@ -1020,27 +1084,27 @@ msgstr ""
1020
  msgid "calculate"
1021
  msgstr ""
1022
 
1023
- #: admin.php:647
1024
  msgid "You should save your changes to ensure that they are used for making your backup."
1025
  msgstr ""
1026
 
1027
- #: admin.php:641
1028
  msgid "We requested to delete the file, but could not understand the server's response"
1029
  msgstr ""
1030
 
1031
- #: admin.php:640
1032
  msgid "Please enter a valid URL"
1033
  msgstr ""
1034
 
1035
- #: admin.php:623
1036
  msgid "Saving..."
1037
  msgstr ""
1038
 
1039
- #: admin.php:586
1040
  msgid "Error: the server sent us a response which we did not understand."
1041
  msgstr ""
1042
 
1043
- #: admin.php:578
1044
  msgid "Fetching..."
1045
  msgstr ""
1046
 
@@ -1048,15 +1112,11 @@ msgstr ""
1048
  msgid "Asia Pacific (Seoul)"
1049
  msgstr ""
1050
 
1051
- #: addons/copycom.php:43 addons/copycom.php:81
1052
- msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
1053
- msgstr ""
1054
-
1055
  #: restorer.php:1618
1056
  msgid "Uploads URL:"
1057
  msgstr ""
1058
 
1059
- #: backup.php:388
1060
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1061
  msgstr ""
1062
 
@@ -1068,48 +1128,48 @@ msgstr ""
1068
  msgid "Skipping table %s: this table will not be restored"
1069
  msgstr ""
1070
 
1071
- #: class-updraftplus.php:3964 restorer.php:1642
1072
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1073
  msgstr ""
1074
 
1075
- #: class-updraftplus.php:3960
1076
  msgid "Please read this link for important information on this process."
1077
  msgstr ""
1078
 
1079
- #: class-updraftplus.php:3960
1080
  msgid "It will be imported as a new site."
1081
  msgstr ""
1082
 
1083
- #: admin.php:2244 templates/wp-admin/notices/horizontal-notice.php:16
1084
  #: templates/wp-admin/notices/horizontal-notice.php:18
1085
  msgid "Dismiss"
1086
  msgstr ""
1087
 
1088
- #: admin.php:659
1089
  msgid "Please fill in the required information."
1090
  msgstr ""
1091
 
1092
- #: addons/multisite.php:556
1093
  msgid "Read more..."
1094
  msgstr ""
1095
 
1096
- #: addons/multisite.php:556
1097
  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."
1098
  msgstr ""
1099
 
1100
- #: addons/multisite.php:547
1101
  msgid "may include some site-wide data"
1102
  msgstr ""
1103
 
1104
- #: addons/multisite.php:542
1105
  msgid "All sites"
1106
  msgstr ""
1107
 
1108
- #: addons/multisite.php:538
1109
  msgid "Which site to restore"
1110
  msgstr ""
1111
 
1112
- #: addons/multisite.php:374 addons/multisite.php:384
1113
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1114
  msgstr ""
1115
 
@@ -1157,15 +1217,15 @@ msgstr ""
1157
  msgid "Call WordPress action:"
1158
  msgstr ""
1159
 
1160
- #: admin.php:2279
1161
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1162
  msgstr ""
1163
 
1164
- #: admin.php:3554
1165
  msgid "Skipping: this archive was already restored."
1166
  msgstr ""
1167
 
1168
- #: templates/wp-admin/settings/form-contents.php:167
1169
  msgid "File Options"
1170
  msgstr ""
1171
 
@@ -1193,51 +1253,51 @@ msgstr ""
1193
  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)."
1194
  msgstr ""
1195
 
1196
- #: admin.php:3835
1197
  msgid "Send this backup to remote storage"
1198
  msgstr ""
1199
 
1200
- #: admin.php:3833
1201
  msgid "Check out UpdraftPlus Vault."
1202
  msgstr ""
1203
 
1204
- #: admin.php:3833
1205
  msgid "Not got any remote storage?"
1206
  msgstr ""
1207
 
1208
- #: admin.php:3833
1209
  msgid "settings"
1210
  msgstr ""
1211
 
1212
- #: admin.php:3833
1213
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1214
  msgstr ""
1215
 
1216
- #: admin.php:2277
1217
  msgid "Include any files in the backup"
1218
  msgstr ""
1219
 
1220
- #: admin.php:2263
1221
  msgid "Include the database in the backup"
1222
  msgstr ""
1223
 
1224
- #: admin.php:2243
1225
  msgid "Continue restoration"
1226
  msgstr ""
1227
 
1228
- #: admin.php:2238
1229
  msgid "You have an unfinished restoration operation, begun %s ago."
1230
  msgstr ""
1231
 
1232
- #: admin.php:2237
1233
  msgid "Unfinished restoration"
1234
  msgstr ""
1235
 
1236
- #: admin.php:2235
1237
  msgid "%s minutes, %s seconds"
1238
  msgstr ""
1239
 
1240
- #: admin.php:2182
1241
  msgid "Backup Contents And Schedule"
1242
  msgstr ""
1243
 
@@ -1245,24 +1305,24 @@ msgstr ""
1245
  msgid "Premium / Extensions"
1246
  msgstr ""
1247
 
1248
- #: admin.php:1962 admin.php:1971
1249
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1250
  msgstr ""
1251
 
1252
- #: admin.php:646
1253
  msgctxt "(verb)"
1254
  msgid "Download"
1255
  msgstr ""
1256
 
1257
- #: admin.php:571
1258
  msgid "You have chosen to backup files, but no file entities have been selected"
1259
  msgstr ""
1260
 
1261
- #: admin.php:480
1262
  msgid "Extensions"
1263
  msgstr ""
1264
 
1265
- #: admin.php:472 templates/wp-admin/settings/tab-bar.php:8
1266
  msgid "Advanced Tools"
1267
  msgstr ""
1268
 
@@ -1343,75 +1403,75 @@ msgstr ""
1343
  msgid "Standard"
1344
  msgstr ""
1345
 
1346
- #: addons/azure.php:524
1347
  msgid "container"
1348
  msgstr ""
1349
 
1350
- #: addons/azure.php:524
1351
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1352
  msgstr ""
1353
 
1354
- #: addons/azure.php:523
1355
  msgid "optional"
1356
  msgstr ""
1357
 
1358
- #: addons/azure.php:523
1359
  msgid "Prefix"
1360
  msgstr ""
1361
 
1362
- #: addons/azure.php:518
1363
  msgid "See Microsoft's guidelines on container naming by following this link."
1364
  msgstr ""
1365
 
1366
- #: addons/azure.php:518
1367
  msgid "If the %s does not already exist, then it will be created."
1368
  msgstr ""
1369
 
1370
- #: addons/azure.php:518
1371
  msgid "Enter the path of the %s you wish to use here."
1372
  msgstr ""
1373
 
1374
- #: addons/azure.php:507
1375
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1376
  msgstr ""
1377
 
1378
- #: addons/azure.php:506
1379
  msgid "Account Name"
1380
  msgstr ""
1381
 
1382
- #: addons/azure.php:506 addons/azure.php:510
1383
  msgid "Azure"
1384
  msgstr ""
1385
 
1386
- #: addons/azure.php:502
1387
  msgid "Create Azure credentials in your Azure developer console."
1388
  msgstr ""
1389
 
1390
- #: addons/azure.php:450
1391
  msgid "Could not create the container"
1392
  msgstr ""
1393
 
1394
- #: addons/azure.php:344
1395
  msgid "Could not access container"
1396
  msgstr ""
1397
 
1398
- #: class-updraftplus.php:2732
1399
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1400
  msgstr ""
1401
 
1402
- #: backup.php:1547
1403
  msgid "the options table was not found"
1404
  msgstr ""
1405
 
1406
- #: backup.php:1545
1407
  msgid "no options or sitemeta table was found"
1408
  msgstr ""
1409
 
1410
- #: backup.php:1545 backup.php:1547
1411
  msgid "The database backup appears to have failed"
1412
  msgstr ""
1413
 
1414
- #: backup.php:1419
1415
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1416
  msgstr ""
1417
 
@@ -1528,35 +1588,35 @@ msgstr ""
1528
  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)."
1529
  msgstr ""
1530
 
1531
- #: admin.php:1389
1532
  msgid "Backup sets removed:"
1533
  msgstr ""
1534
 
1535
- #: admin.php:658
1536
  msgid "Processing..."
1537
  msgstr ""
1538
 
1539
- #: admin.php:656
1540
  msgid "For backups older than"
1541
  msgstr ""
1542
 
1543
- #: admin.php:655
1544
  msgid "week(s)"
1545
  msgstr ""
1546
 
1547
- #: admin.php:654
1548
  msgid "hour(s)"
1549
  msgstr ""
1550
 
1551
- #: admin.php:653
1552
  msgid "day(s)"
1553
  msgstr ""
1554
 
1555
- #: admin.php:652
1556
  msgid "in the month"
1557
  msgstr ""
1558
 
1559
- #: admin.php:651
1560
  msgid "day"
1561
  msgstr ""
1562
 
@@ -1576,31 +1636,31 @@ msgstr ""
1576
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1577
  msgstr ""
1578
 
1579
- #: methods/updraftvault.php:596
1580
  msgid "You do not currently have any UpdraftPlus Vault quota"
1581
  msgstr ""
1582
 
1583
- #: class-updraftplus.php:3999
1584
  msgid "You must upgrade MySQL to be able to use this database."
1585
  msgstr ""
1586
 
1587
- #: class-updraftplus.php:3999
1588
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1589
  msgstr ""
1590
 
1591
- #: admin.php:2081
1592
  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."
1593
  msgstr ""
1594
 
1595
- #: methods/updraftvault.php:324
1596
  msgid "Don't know your email address, or forgotten your password?"
1597
  msgstr ""
1598
 
1599
- #: methods/updraftvault.php:317
1600
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1601
  msgstr ""
1602
 
1603
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1604
  msgid "Read the FAQs here."
1605
  msgstr ""
1606
 
@@ -1612,155 +1672,155 @@ msgstr ""
1612
  msgid "Server-side encryption"
1613
  msgstr ""
1614
 
1615
- #: methods/updraftvault.php:605
1616
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1617
  msgstr ""
1618
 
1619
- #: admin.php:895
1620
  msgid "Go to the remote storage settings in order to connect."
1621
  msgstr ""
1622
 
1623
- #: admin.php:895
1624
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1625
  msgstr ""
1626
 
1627
- #: methods/updraftvault.php:306
1628
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1629
  msgstr ""
1630
 
1631
- #: admin.php:629
1632
  msgid "Update quota count"
1633
  msgstr ""
1634
 
1635
- #: admin.php:628
1636
  msgid "Counting..."
1637
  msgstr ""
1638
 
1639
- #: admin.php:627
1640
  msgid "Disconnecting..."
1641
  msgstr ""
1642
 
1643
- #: admin.php:625
1644
  msgid "Connecting..."
1645
  msgstr ""
1646
 
1647
- #: methods/updraftvault.php:380 methods/updraftvault.php:449
1648
  msgid "Refresh current status"
1649
  msgstr ""
1650
 
1651
- #: methods/updraftvault.php:378 methods/updraftvault.php:394
1652
- #: methods/updraftvault.php:396 methods/updraftvault.php:449
1653
  msgid "Get more quota"
1654
  msgstr ""
1655
 
1656
- #: methods/updraftvault.php:375 methods/updraftvault.php:391
1657
- #: methods/updraftvault.php:430
1658
  msgid "Current use:"
1659
  msgstr ""
1660
 
1661
- #: methods/updraftvault.php:370
1662
  msgid "You can get more quota here"
1663
  msgstr ""
1664
 
1665
- #: methods/updraftvault.php:370
1666
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1667
  msgstr ""
1668
 
1669
- #: admin.php:626 methods/updraftvault.php:362
1670
  msgid "Disconnect"
1671
  msgstr ""
1672
 
1673
- #: methods/updraftvault.php:354
1674
  msgid "Quota:"
1675
  msgstr ""
1676
 
1677
- #: methods/updraftvault.php:352
1678
  msgid "Vault owner"
1679
  msgstr ""
1680
 
1681
- #: methods/updraftvault.php:352
1682
  msgid "Well done - there's nothing more needed to set up."
1683
  msgstr ""
1684
 
1685
- #: methods/updraftvault.php:352
1686
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1687
  msgstr ""
1688
 
1689
- #: methods/updraftvault.php:348
1690
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1691
  msgstr ""
1692
 
1693
- #: methods/updraftvault.php:324
1694
  msgid "Go here for help"
1695
  msgstr ""
1696
 
1697
- #: methods/updraftvault.php:319
1698
  msgid "E-mail"
1699
  msgstr ""
1700
 
1701
- #: methods/updraftvault.php:312 methods/updraftvault.php:327
1702
  msgid "Back..."
1703
  msgstr ""
1704
 
1705
- #: methods/updraftvault.php:306
1706
  msgid "Subscriptions can be cancelled at any time."
1707
  msgstr ""
1708
 
1709
- #: methods/updraftvault.php:289 methods/updraftvault.php:295
1710
- #: methods/updraftvault.php:301
1711
  msgid "%s per quarter"
1712
  msgstr ""
1713
 
1714
- #: central/bootstrap.php:542 methods/updraftvault.php:279
1715
- #: methods/updraftvault.php:309
1716
  msgid "Read more about it here."
1717
  msgstr ""
1718
 
1719
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1720
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1721
  msgstr ""
1722
 
1723
- #: methods/updraftvault.php:275
1724
  msgid "Already purchased space?"
1725
  msgstr ""
1726
 
1727
- #: methods/updraftvault.php:272
1728
  msgid "Show the options"
1729
  msgstr ""
1730
 
1731
- #: methods/updraftvault.php:271
1732
  msgid "First time user?"
1733
  msgstr ""
1734
 
1735
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1736
  msgid "Press a button to get started."
1737
  msgstr ""
1738
 
1739
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1740
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1741
  msgstr ""
1742
 
1743
- #: methods/updraftvault.php:231
1744
  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."
1745
  msgstr ""
1746
 
1747
- #: methods/updraftvault.php:228
1748
  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!"
1749
  msgstr ""
1750
 
1751
- #: methods/updraftvault.php:225
1752
  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."
1753
  msgstr ""
1754
 
1755
- #: methods/updraftvault.php:48 methods/updraftvault.php:77
1756
  msgid "Updraft Vault"
1757
  msgstr ""
1758
 
1759
- #: addons/azure.php:366 addons/googlecloud.php:693 methods/s3.php:1040
1760
  msgid "Delete failed:"
1761
  msgstr ""
1762
 
1763
- #: backup.php:2994
1764
  msgid "The zip engine returned the message: %s."
1765
  msgstr ""
1766
 
@@ -1784,7 +1844,7 @@ msgstr ""
1784
  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."
1785
  msgstr ""
1786
 
1787
- #: addons/migrator.php:1742 admin.php:635
1788
  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."
1789
  msgstr ""
1790
 
@@ -1852,11 +1912,11 @@ msgstr ""
1852
  msgid "Backup made by %s"
1853
  msgstr ""
1854
 
1855
- #: methods/addon-base.php:177
1856
  msgid "This storage method does not allow downloading"
1857
  msgstr ""
1858
 
1859
- #: admin.php:3314
1860
  msgid "(backup set imported from remote location)"
1861
  msgstr ""
1862
 
@@ -1876,23 +1936,23 @@ msgstr ""
1876
  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."
1877
  msgstr ""
1878
 
1879
- #: addons/migrator.php:1770 admin.php:642
1880
  msgid "Testing connection..."
1881
  msgstr ""
1882
 
1883
- #: admin.php:639
1884
  msgid "Deleting..."
1885
  msgstr ""
1886
 
1887
- #: admin.php:638
1888
  msgid "key name"
1889
  msgstr ""
1890
 
1891
- #: admin.php:636
1892
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1893
  msgstr ""
1894
 
1895
- #: admin.php:633
1896
  msgid "Creating..."
1897
  msgstr ""
1898
 
@@ -1916,11 +1976,11 @@ msgstr ""
1916
  msgid "Or, send a backup to another site"
1917
  msgstr ""
1918
 
1919
- #: addons/migrator.php:1937 admin.php:643
1920
  msgid "Send"
1921
  msgstr ""
1922
 
1923
- #: addons/migrator.php:1931 admin.php:634
1924
  msgid "Send to site:"
1925
  msgstr ""
1926
 
@@ -1952,27 +2012,27 @@ msgstr ""
1952
  msgid "key"
1953
  msgstr ""
1954
 
1955
- #: methods/ftp.php:325
1956
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1957
  msgstr ""
1958
 
1959
- #: methods/ftp.php:323
1960
  msgid "Passive mode"
1961
  msgstr ""
1962
 
1963
- #: methods/ftp.php:319
1964
  msgid "Remote path"
1965
  msgstr ""
1966
 
1967
- #: methods/ftp.php:315
1968
  msgid "FTP password"
1969
  msgstr ""
1970
 
1971
- #: methods/ftp.php:311
1972
  msgid "FTP login"
1973
  msgstr ""
1974
 
1975
- #: methods/ftp.php:307
1976
  msgid "FTP server"
1977
  msgstr ""
1978
 
@@ -1984,15 +2044,15 @@ msgstr ""
1984
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1985
  msgstr ""
1986
 
1987
- #: addons/migrator.php:2180 admin.php:631
1988
  msgid "Add site"
1989
  msgstr ""
1990
 
1991
- #: admin.php:630
1992
  msgid "Adding..."
1993
  msgstr ""
1994
 
1995
- #: udaddons/options.php:338
1996
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1997
  msgstr ""
1998
 
@@ -2020,7 +2080,7 @@ msgstr ""
2020
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2021
  msgstr ""
2022
 
2023
- #: admin.php:622 admin.php:647 admin.php:648
2024
  msgid "You have made changes to your settings, and not saved."
2025
  msgstr ""
2026
 
@@ -2032,7 +2092,7 @@ msgstr ""
2032
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2033
  msgstr ""
2034
 
2035
- #: addons/azure.php:502 addons/migrator.php:1757 addons/onedrive.php:961
2036
  msgid "For longer help, including screenshots, follow this link."
2037
  msgstr ""
2038
 
@@ -2056,11 +2116,11 @@ msgstr ""
2056
  msgid "Please re-authorize the connection to your %s account."
2057
  msgstr ""
2058
 
2059
- #: methods/email.php:73
2060
  msgid "configure it here"
2061
  msgstr ""
2062
 
2063
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2064
  msgid "To remove the block, please go here."
2065
  msgstr ""
2066
 
@@ -2205,7 +2265,7 @@ msgstr ""
2205
  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)"
2206
  msgstr ""
2207
 
2208
- #: methods/s3.php:842
2209
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2210
  msgstr ""
2211
 
@@ -2221,17 +2281,17 @@ msgstr ""
2221
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2222
  msgstr ""
2223
 
2224
- #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:569
2225
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2226
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2227
  msgstr ""
2228
 
2229
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2230
  #: udaddons/updraftplus-addons.php:747
2231
  msgid "It appears that your web server's IP Address (%s) is blocked."
2232
  msgstr ""
2233
 
2234
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2235
  #: udaddons/updraftplus-addons.php:747
2236
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2237
  msgstr ""
@@ -2282,7 +2342,7 @@ msgstr ""
2282
  msgid "(at same time as files backup)"
2283
  msgstr ""
2284
 
2285
- #: admin.php:2840
2286
  msgid "No backup has been completed"
2287
  msgstr ""
2288
 
@@ -2330,12 +2390,12 @@ msgstr ""
2330
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2331
  msgstr ""
2332
 
2333
- #: methods/s3.php:136 methods/s3.php:137 methods/s3.php:138 methods/s3.php:146
2334
- #: methods/s3.php:147 methods/s3.php:148
2335
  msgid "%s Error: Failed to initialise"
2336
  msgstr ""
2337
 
2338
- #: templates/wp-admin/settings/form-contents.php:216
2339
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2340
  msgid "or"
2341
  msgstr ""
@@ -2345,38 +2405,38 @@ msgctxt "Uploader: Drop backup files here - or - Select Files"
2345
  msgid "or"
2346
  msgstr ""
2347
 
2348
- #: admin.php:616
2349
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2350
  msgstr ""
2351
 
2352
- #: addons/sftp.php:379
2353
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2354
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2355
  msgstr ""
2356
 
2357
- #: addons/sftp.php:342
2358
  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."
2359
  msgstr ""
2360
 
2361
- #: methods/openstack2.php:152
2362
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2363
  msgid "tenant"
2364
  msgstr ""
2365
 
2366
- #: methods/openstack2.php:102
2367
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2368
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2369
  msgstr ""
2370
 
2371
- #: templates/wp-admin/settings/form-contents.php:287
2372
  msgid "your site's admin address"
2373
  msgstr ""
2374
 
2375
- #: templates/wp-admin/settings/form-contents.php:287
2376
  msgid "Check this box to have a basic report sent to"
2377
  msgstr ""
2378
 
2379
- #: admin.php:2849
2380
  msgctxt "i.e. Non-automatic"
2381
  msgid "Manual"
2382
  msgstr ""
@@ -2390,11 +2450,11 @@ msgstr ""
2390
  msgid "Change Lock Settings"
2391
  msgstr ""
2392
 
2393
- #: addons/morefiles.php:185
2394
  msgid "Any other file/directory on your server that you wish to back up"
2395
  msgstr ""
2396
 
2397
- #: admin.php:2098
2398
  msgid "For even more features and personal support, check out "
2399
  msgstr ""
2400
 
@@ -2410,7 +2470,7 @@ msgstr ""
2410
  msgid "Database decryption phrase"
2411
  msgstr ""
2412
 
2413
- #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:621
2414
  msgid "Automatic backup before update"
2415
  msgstr ""
2416
 
@@ -2490,15 +2550,15 @@ msgstr ""
2490
  msgid "The admin password has now been removed."
2491
  msgstr ""
2492
 
2493
- #: addons/morefiles.php:74
2494
  msgid "(learn more about this significant option)"
2495
  msgstr ""
2496
 
2497
- #: udaddons/options.php:273
2498
  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."
2499
  msgstr ""
2500
 
2501
- #: admin.php:2431 admin.php:3337
2502
  msgid "View Log"
2503
  msgstr ""
2504
 
@@ -2515,7 +2575,7 @@ msgstr ""
2515
  msgid "and retain this many scheduled backups"
2516
  msgstr ""
2517
 
2518
- #: admin.php:2810
2519
  msgid "incremental backup; base backup: %s"
2520
  msgstr ""
2521
 
@@ -2527,28 +2587,28 @@ msgstr ""
2527
  msgid "Upload files into UpdraftPlus."
2528
  msgstr ""
2529
 
2530
- #: admin.php:846 includes/class-commands.php:363
2531
  #: templates/wp-admin/settings/tab-status.php:22
2532
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2533
  msgstr ""
2534
 
2535
- #: class-updraftplus.php:3949
2536
  msgid "Backup label:"
2537
  msgstr ""
2538
 
2539
- #: admin.php:1625
2540
  msgid "Error: unexpected file read fail"
2541
  msgstr ""
2542
 
2543
- #: backup.php:3000
2544
  msgid "check your log for more details."
2545
  msgstr ""
2546
 
2547
- #: backup.php:2998
2548
  msgid "your web hosting account appears to be full; please see: %s"
2549
  msgstr ""
2550
 
2551
- #: backup.php:2996
2552
  msgid "A zip error occurred"
2553
  msgstr ""
2554
 
@@ -2556,19 +2616,19 @@ msgstr ""
2556
  msgid "Your label for this backup (optional)"
2557
  msgstr ""
2558
 
2559
- #: addons/googlecloud.php:822 methods/googledrive.php:915
2560
  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."
2561
  msgstr ""
2562
 
2563
- #: methods/updraftvault.php:608 udaddons/updraftplus-addons.php:789
2564
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2565
  msgstr ""
2566
 
2567
- #: methods/updraftvault.php:605 udaddons/updraftplus-addons.php:785
2568
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2569
  msgstr ""
2570
 
2571
- #: methods/updraftvault.php:545 udaddons/updraftplus-addons.php:655
2572
  msgid "You need to supply both an email address and a password"
2573
  msgstr ""
2574
 
@@ -2576,11 +2636,11 @@ msgstr ""
2576
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2577
  msgstr ""
2578
 
2579
- #: class-updraftplus.php:3968
2580
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2581
  msgstr ""
2582
 
2583
- #: class-updraftplus.php:3968
2584
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2585
  msgstr ""
2586
 
@@ -2608,27 +2668,27 @@ msgstr ""
2608
  msgid "Rows per batch"
2609
  msgstr ""
2610
 
2611
- #: udaddons/options.php:102
2612
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2613
  msgstr ""
2614
 
2615
- #: udaddons/options.php:100 udaddons/options.php:102
2616
  msgid "You need to connect to receive future updates to UpdraftPlus."
2617
  msgstr ""
2618
 
2619
- #: class-updraftplus.php:3941
2620
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2621
  msgstr ""
2622
 
2623
- #: class-updraftplus.php:3941
2624
  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."
2625
  msgstr ""
2626
 
2627
- #: class-updraftplus.php:3941
2628
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2629
  msgstr ""
2630
 
2631
- #: class-updraftplus.php:3941
2632
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2633
  msgstr ""
2634
 
@@ -2653,7 +2713,7 @@ msgstr ""
2653
  msgid "UpdraftPlus is on social media - check us out!"
2654
  msgstr ""
2655
 
2656
- #: admin.php:3398
2657
  msgid "Why am I seeing this?"
2658
  msgstr ""
2659
 
@@ -2665,15 +2725,15 @@ msgstr ""
2665
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2666
  msgstr ""
2667
 
2668
- #: admin.php:1573 admin.php:1585
2669
  msgid "Start backup"
2670
  msgstr ""
2671
 
2672
- #: class-updraftplus.php:3913 restorer.php:996
2673
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2674
  msgstr ""
2675
 
2676
- #: admin.php:2754
2677
  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."
2678
  msgstr ""
2679
 
@@ -2681,11 +2741,11 @@ msgstr ""
2681
  msgid "Unless you have a problem, you can completely ignore everything here."
2682
  msgstr ""
2683
 
2684
- #: admin.php:1784
2685
  msgid "This file could not be uploaded"
2686
  msgstr ""
2687
 
2688
- #: admin.php:1749
2689
  msgid "You will find more information about this in the Settings section."
2690
  msgstr ""
2691
 
@@ -2705,7 +2765,7 @@ msgstr ""
2705
  msgid "Memory limit"
2706
  msgstr ""
2707
 
2708
- #: class-updraftplus.php:4071 restorer.php:1441
2709
  msgid "restoration"
2710
  msgstr ""
2711
 
@@ -2713,11 +2773,11 @@ msgstr ""
2713
  msgid "Table to be implicitly dropped: %s"
2714
  msgstr ""
2715
 
2716
- #: backup.php:832
2717
  msgid "Incremental"
2718
  msgstr ""
2719
 
2720
- #: backup.php:832
2721
  msgid "Full backup"
2722
  msgstr ""
2723
 
@@ -2733,7 +2793,7 @@ msgstr ""
2733
  msgid "Backup succeeded"
2734
  msgstr ""
2735
 
2736
- #: admin.php:2850 admin.php:2851 admin.php:2852 updraftplus.php:92
2737
  #: updraftplus.php:93
2738
  msgid "Every %s hours"
2739
  msgstr ""
@@ -2776,23 +2836,23 @@ msgstr ""
2776
  msgid "Too many database errors have occurred - aborting"
2777
  msgstr ""
2778
 
2779
- #: backup.php:898
2780
  msgid "read more at %s"
2781
  msgstr ""
2782
 
2783
- #: backup.php:898
2784
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2785
  msgstr ""
2786
 
2787
- #: methods/googledrive.php:921
2788
  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."
2789
  msgstr ""
2790
 
2791
- #: admin.php:3166
2792
  msgid "You have not yet made any backups."
2793
  msgstr ""
2794
 
2795
- #: templates/wp-admin/settings/form-contents.php:179
2796
  msgid "Database Options"
2797
  msgstr ""
2798
 
@@ -2808,30 +2868,30 @@ msgstr ""
2808
  msgid "Free disk space in account:"
2809
  msgstr ""
2810
 
2811
- #: admin.php:3924 templates/wp-admin/settings/tab-status.php:27
2812
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2813
  msgstr ""
2814
 
2815
- #: admin.php:456 admin.php:590 admin.php:1438
2816
  #: includes/deprecated-actions.php:30
2817
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2818
  #: templates/wp-admin/settings/tab-bar.php:6
2819
  msgid "Existing Backups"
2820
  msgstr ""
2821
 
2822
- #: admin.php:448 templates/wp-admin/settings/tab-bar.php:5
2823
  msgid "Current Status"
2824
  msgstr ""
2825
 
2826
- #: admin.php:851
2827
  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."
2828
  msgstr ""
2829
 
2830
- #: admin.php:851
2831
  msgid "To make a backup, just press the Backup Now button."
2832
  msgstr ""
2833
 
2834
- #: admin.php:851
2835
  msgid "Welcome to UpdraftPlus!"
2836
  msgstr ""
2837
 
@@ -2903,48 +2963,48 @@ msgstr ""
2903
  msgid "user"
2904
  msgstr ""
2905
 
2906
- #: class-updraftplus.php:1481
2907
  msgid "External database (%s)"
2908
  msgstr ""
2909
 
2910
- #: methods/googledrive.php:921
2911
  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."
2912
  msgstr ""
2913
 
2914
- #: methods/googledrive.php:386
2915
  msgid "failed to access parent folder"
2916
  msgstr ""
2917
 
2918
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2919
- #: methods/googledrive.php:343
2920
  msgid "However, subsequent access attempts failed:"
2921
  msgstr ""
2922
 
2923
- #: admin.php:3191
2924
  msgid "External database"
2925
  msgstr ""
2926
 
2927
- #: templates/wp-admin/settings/form-contents.php:321
2928
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2929
  msgstr ""
2930
 
2931
- #: templates/wp-admin/settings/form-contents.php:261
2932
  msgid "Back up more databases"
2933
  msgstr ""
2934
 
2935
- #: templates/wp-admin/settings/form-contents.php:218
2936
  msgid "First, enter the decryption key"
2937
  msgstr ""
2938
 
2939
- #: templates/wp-admin/settings/form-contents.php:200
2940
  msgid "You can manually decrypt an encrypted database here."
2941
  msgstr ""
2942
 
2943
- #: templates/wp-admin/settings/form-contents.php:188
2944
  msgid "It can also backup external databases."
2945
  msgstr ""
2946
 
2947
- #: templates/wp-admin/settings/form-contents.php:188
2948
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2949
  msgstr ""
2950
 
@@ -2952,7 +3012,7 @@ msgstr ""
2952
  msgid "use UpdraftPlus Premium"
2953
  msgstr ""
2954
 
2955
- #: class-updraftplus.php:3831
2956
  msgid "Decryption failed. The database file is encrypted."
2957
  msgstr ""
2958
 
@@ -2964,11 +3024,11 @@ msgstr ""
2964
  msgid "An error occurred on the first %s command - aborting run"
2965
  msgstr ""
2966
 
2967
- #: addons/moredatabase.php:98 backup.php:1360
2968
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2969
  msgstr ""
2970
 
2971
- #: backup.php:1360
2972
  msgid "database connection attempt failed."
2973
  msgstr ""
2974
 
@@ -2976,162 +3036,162 @@ msgstr ""
2976
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2977
  msgstr ""
2978
 
2979
- #: addons/google-enhanced.php:75
2980
  msgid "In %s, path names are case sensitive."
2981
  msgstr ""
2982
 
2983
- #: addons/azure.php:524 addons/google-enhanced.php:73 addons/onedrive.php:989
2984
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2985
  msgstr ""
2986
 
2987
- #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2988
  #: addons/onedrive.php:989
2989
  msgid "e.g. %s"
2990
  msgstr ""
2991
 
2992
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2993
  msgid "If the folder does not already exist, then it will be created."
2994
  msgstr ""
2995
 
2996
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2997
  msgid "Enter the path of the %s folder you wish to use here."
2998
  msgstr ""
2999
 
3000
- #: addons/azure.php:517 methods/openstack2.php:133
3001
  msgid "Container"
3002
  msgstr ""
3003
 
3004
- #: methods/openstack2.php:116
3005
  msgid "Leave this blank, and a default will be chosen."
3006
  msgstr ""
3007
 
3008
- #: methods/openstack2.php:107
3009
  msgid "Tenant"
3010
  msgstr ""
3011
 
3012
- #: methods/openstack2.php:107
3013
  msgid "Follow this link for more information"
3014
  msgstr ""
3015
 
3016
- #: methods/openstack2.php:99 methods/openstack2.php:157
3017
  msgid "authentication URI"
3018
  msgstr ""
3019
 
3020
- #: methods/openstack2.php:94
3021
  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."
3022
  msgstr ""
3023
 
3024
- #: methods/addon-base.php:194 methods/addon-base.php:214
3025
  msgid "Failed to download %s"
3026
  msgstr ""
3027
 
3028
- #: methods/addon-base.php:208
3029
  msgid "Failed to download"
3030
  msgstr ""
3031
 
3032
- #: methods/addon-base.php:106
3033
  msgid "failed to list files"
3034
  msgstr ""
3035
 
3036
- #: methods/addon-base.php:75 methods/addon-base.php:80
3037
  msgid "Failed to upload %s"
3038
  msgstr ""
3039
 
3040
- #: methods/dropbox.php:612 methods/dropbox.php:614
3041
  msgid "Success:"
3042
  msgstr ""
3043
 
3044
- #: addons/onedrive.php:997 methods/dropbox.php:513
3045
  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."
3046
  msgstr ""
3047
 
3048
- #: addons/onedrive.php:995 methods/dropbox.php:510
3049
  msgid "(You appear to be already authenticated)."
3050
  msgstr ""
3051
 
3052
- #: methods/dropbox.php:505 methods/dropbox.php:511 methods/dropbox.php:513
3053
  msgid "Dropbox"
3054
  msgstr ""
3055
 
3056
- #: addons/onedrive.php:994 methods/dropbox.php:505
3057
  msgid "Authenticate with %s"
3058
  msgstr ""
3059
 
3060
- #: methods/cloudfiles.php:409
3061
  msgid "Error downloading remote file: Failed to download"
3062
  msgstr ""
3063
 
3064
- #: methods/openstack-base.php:472 methods/openstack-base.php:477
3065
  msgid "Region: %s"
3066
  msgstr ""
3067
 
3068
- #: methods/openstack-base.php:471
3069
  msgid "%s error - we accessed the container, but failed to create a file within it"
3070
  msgstr ""
3071
 
3072
- #: methods/openstack-base.php:389
3073
  msgid "The %s object was not found"
3074
  msgstr ""
3075
 
3076
- #: methods/openstack-base.php:48 methods/openstack-base.php:312
3077
- #: methods/openstack-base.php:381
3078
  msgid "Could not access %s container"
3079
  msgstr ""
3080
 
3081
- #: methods/openstack-base.php:40 methods/openstack-base.php:108
3082
- #: methods/openstack-base.php:115 methods/openstack-base.php:304
3083
- #: methods/openstack-base.php:369
3084
  msgid "%s error - failed to access the container"
3085
  msgstr ""
3086
 
3087
- #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:520
3088
- #: methods/googledrive.php:970
3089
  msgid "Account holder's name: %s."
3090
  msgstr ""
3091
 
3092
- #: methods/googledrive.php:959
3093
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3094
  msgstr ""
3095
 
3096
- #: methods/googledrive.php:950
3097
  msgid "It is an ID number internal to Google Drive"
3098
  msgstr ""
3099
 
3100
- #: methods/googledrive.php:950
3101
  msgid "<strong>This is NOT a folder name</strong>."
3102
  msgstr ""
3103
 
3104
- #: addons/google-enhanced.php:72 addons/onedrive.php:988
3105
- #: methods/googledrive.php:946 methods/googledrive.php:956
3106
  msgid "Folder"
3107
  msgstr ""
3108
 
3109
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3110
- #: methods/googledrive.php:878
3111
  msgid "%s download: failed: file not found"
3112
  msgstr ""
3113
 
3114
- #: addons/googlecloud.php:579 methods/googledrive.php:363
3115
  msgid "Name: %s."
3116
  msgstr ""
3117
 
3118
- #: methods/googledrive.php:157
3119
  msgid "Google Drive list files: failed to access parent folder"
3120
  msgstr ""
3121
 
3122
- #: methods/insufficient.php:65 methods/viaaddon-base.php:87
3123
  msgid "Your %s version: %s."
3124
  msgstr ""
3125
 
3126
- #: methods/insufficient.php:64 methods/viaaddon-base.php:86
3127
  msgid "You will need to ask your web hosting company to upgrade."
3128
  msgstr ""
3129
 
3130
- #: methods/insufficient.php:17 methods/viaaddon-base.php:16
3131
  msgid "This remote storage method (%s) requires PHP %s or later."
3132
  msgstr ""
3133
 
3134
- #: admin.php:3743
3135
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3136
  msgstr ""
3137
 
@@ -3145,7 +3205,7 @@ msgstr ""
3145
 
3146
  #: addons/migrator.php:375
3147
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3148
- #: templates/wp-admin/settings/form-contents.php:208
3149
  msgid "This feature requires %s version %s or later"
3150
  msgstr ""
3151
 
@@ -3161,7 +3221,7 @@ msgstr ""
3161
  msgid "Failed to unpack the archive"
3162
  msgstr ""
3163
 
3164
- #: class-updraftplus.php:1048
3165
  msgid "Error - failed to download the file"
3166
  msgstr ""
3167
 
@@ -3181,44 +3241,44 @@ msgstr ""
3181
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3182
  msgstr ""
3183
 
3184
- #: addons/sftp.php:425
3185
  msgid "password/key"
3186
  msgstr ""
3187
 
3188
- #: addons/azure.php:510 addons/migrator.php:2198 addons/sftp.php:376
3189
- #: admin.php:637
3190
  msgid "Key"
3191
  msgstr ""
3192
 
3193
- #: addons/sftp.php:371
3194
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3195
  msgstr ""
3196
 
3197
- #: addons/sftp.php:308
3198
  msgid "The key provided was not in a valid format, or was corrupt."
3199
  msgstr ""
3200
 
3201
- #: addons/sftp.php:47
3202
  msgid "SCP/SFTP password/key"
3203
  msgstr ""
3204
 
3205
- #: admin.php:3226
3206
  msgid "Files backup (created by %s)"
3207
  msgstr ""
3208
 
3209
- #: admin.php:3226
3210
  msgid "Files and database WordPress backup (created by %s)"
3211
  msgstr ""
3212
 
3213
- #: addons/importer.php:261 admin.php:3220 class-updraftplus.php:2514
3214
  msgid "Backup created by: %s."
3215
  msgstr ""
3216
 
3217
- #: admin.php:3189
3218
  msgid "Database (created by %s)"
3219
  msgstr ""
3220
 
3221
- #: admin.php:3183 admin.php:3222
3222
  msgid "unknown source"
3223
  msgstr ""
3224
 
@@ -3230,31 +3290,31 @@ msgstr ""
3230
  msgid "Upload backup files"
3231
  msgstr ""
3232
 
3233
- #: admin.php:1828
3234
  msgid "This backup was created by %s, and can be imported."
3235
  msgstr ""
3236
 
3237
- #: admin.php:880
3238
  msgid "Read this page for a guide to possible causes and how to fix it."
3239
  msgstr ""
3240
 
3241
- #: admin.php:880
3242
  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."
3243
  msgstr ""
3244
 
3245
- #: admin.php:602 class-updraftplus.php:2521
3246
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3247
  msgstr ""
3248
 
3249
- #: admin.php:601
3250
  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."
3251
  msgstr ""
3252
 
3253
- #: admin.php:601 admin.php:602 class-updraftplus.php:2521
3254
  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))."
3255
  msgstr ""
3256
 
3257
- #: admin.php:3223 includes/class-wpadmin-commands.php:143 restorer.php:1410
3258
  msgid "Backup created by unknown source (%s) - cannot be restored."
3259
  msgstr ""
3260
 
@@ -3266,24 +3326,24 @@ msgstr ""
3266
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3267
  msgstr ""
3268
 
3269
- #: methods/dropbox.php:300
3270
  msgid "%s returned an unexpected HTTP response: %s"
3271
  msgstr ""
3272
 
3273
- #: addons/sftp.php:885
3274
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3275
  msgstr ""
3276
 
3277
- #: methods/cloudfiles.php:234 methods/dropbox.php:281
3278
- #: methods/openstack-base.php:103
3279
  msgid "No settings were found"
3280
  msgstr ""
3281
 
3282
- #: class-updraftplus.php:2642
3283
  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."
3284
  msgstr ""
3285
 
3286
- #: admin.php:568
3287
  msgid "Rescanning remote and local storage for backup sets..."
3288
  msgstr ""
3289
 
@@ -3300,24 +3360,24 @@ msgstr ""
3300
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3301
  msgstr ""
3302
 
3303
- #: addons/morefiles.php:428
3304
  msgid "No backup of location: there was nothing found to back up"
3305
  msgstr ""
3306
 
3307
- #: addons/moredatabase.php:234 addons/morefiles.php:224
3308
- #: addons/morefiles.php:245
3309
  msgid "Remove"
3310
  msgstr ""
3311
 
3312
- #: methods/s3.php:814
3313
  msgid "Other %s FAQs."
3314
  msgstr ""
3315
 
3316
- #: templates/wp-admin/settings/form-contents.php:321
3317
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3318
  msgstr ""
3319
 
3320
- #: addons/morefiles.php:382 admin.php:2942
3321
  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."
3322
  msgstr ""
3323
 
@@ -3325,23 +3385,23 @@ msgstr ""
3325
  msgid "Custom content type manager plugin data detected: clearing option cache"
3326
  msgstr ""
3327
 
3328
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1441
3329
  msgid "Your hosting company must enable these functions before %s can work."
3330
  msgstr ""
3331
 
3332
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1440
3333
  msgid "Your web server's PHP installation has these functions disabled: %s."
3334
  msgstr ""
3335
 
3336
- #: methods/ftp.php:281
3337
  msgid "encrypted FTP (explicit encryption)"
3338
  msgstr ""
3339
 
3340
- #: methods/ftp.php:280
3341
  msgid "encrypted FTP (implicit encryption)"
3342
  msgstr ""
3343
 
3344
- #: methods/ftp.php:279
3345
  msgid "regular non-encrypted FTP"
3346
  msgstr ""
3347
 
@@ -3349,7 +3409,7 @@ msgstr ""
3349
  msgid "Backup created by:"
3350
  msgstr ""
3351
 
3352
- #: udaddons/options.php:482
3353
  msgid "Available to claim on this site"
3354
  msgstr ""
3355
 
@@ -3397,15 +3457,15 @@ msgstr ""
3397
  msgid "Dismiss from main dashboard (for %s weeks)"
3398
  msgstr ""
3399
 
3400
- #: class-updraftplus.php:4121
3401
  msgid "The attempt to undo the double-compression succeeded."
3402
  msgstr ""
3403
 
3404
- #: class-updraftplus.php:4098 class-updraftplus.php:4119
3405
  msgid "The attempt to undo the double-compression failed."
3406
  msgstr ""
3407
 
3408
- #: class-updraftplus.php:4091
3409
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3410
  msgstr ""
3411
 
@@ -3413,15 +3473,15 @@ msgstr ""
3413
  msgid "Constants"
3414
  msgstr ""
3415
 
3416
- #: backup.php:1595
3417
  msgid "Failed to open database file for reading:"
3418
  msgstr ""
3419
 
3420
- #: backup.php:1408
3421
  msgid "No database tables found"
3422
  msgstr ""
3423
 
3424
- #: backup.php:1406
3425
  msgid "please wait for the rescheduled attempt"
3426
  msgstr ""
3427
 
@@ -3449,11 +3509,11 @@ msgstr ""
3449
  msgid "Errors occurred:"
3450
  msgstr ""
3451
 
3452
- #: admin.php:3418
3453
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3454
  msgstr ""
3455
 
3456
- #: templates/wp-admin/settings/form-contents.php:365
3457
  msgid "See this FAQ also."
3458
  msgstr ""
3459
 
@@ -3473,7 +3533,7 @@ msgstr ""
3473
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3474
  msgstr ""
3475
 
3476
- #: admin.php:855 class-updraftplus.php:597
3477
  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)"
3478
  msgstr ""
3479
 
@@ -3489,20 +3549,20 @@ msgstr ""
3489
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3490
  msgstr ""
3491
 
3492
- #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
3493
  #: includes/ftp.class.php:47
3494
  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."
3495
  msgstr ""
3496
 
3497
- #: admin.php:3751
3498
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3499
  msgstr ""
3500
 
3501
- #: admin.php:2006 admin.php:2016
3502
  msgid "Restore failed..."
3503
  msgstr ""
3504
 
3505
- #: addons/moredatabase.php:130 admin.php:1227
3506
  msgid "Messages:"
3507
  msgstr ""
3508
 
@@ -3596,98 +3656,98 @@ msgstr ""
3596
  msgid "Rackspace Cloud Files, enhanced"
3597
  msgstr ""
3598
 
3599
- #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:142
3600
  msgid "Cloud Files Container"
3601
  msgstr ""
3602
 
3603
- #: methods/cloudfiles-new.php:137
3604
  msgid "Cloud Files API Key"
3605
  msgstr ""
3606
 
3607
- #: methods/cloudfiles-new.php:132
3608
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3609
  msgstr ""
3610
 
3611
- #: methods/cloudfiles-new.php:129
3612
  msgid "Cloud Files Username"
3613
  msgstr ""
3614
 
3615
- #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:115
3616
  msgid "London (LON)"
3617
  msgstr ""
3618
 
3619
- #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:114
3620
  msgid "Hong Kong (HKG)"
3621
  msgstr ""
3622
 
3623
- #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:113
3624
  msgid "Northern Virginia (IAD)"
3625
  msgstr ""
3626
 
3627
- #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:112
3628
  msgid "Chicago (ORD)"
3629
  msgstr ""
3630
 
3631
- #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:111
3632
  msgid "Sydney (SYD)"
3633
  msgstr ""
3634
 
3635
- #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:110
3636
  msgid "Dallas (DFW) (default)"
3637
  msgstr ""
3638
 
3639
- #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:105
3640
  msgid "Cloud Files Storage Region"
3641
  msgstr ""
3642
 
3643
- #: methods/cloudfiles-new.php:97
3644
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3645
  msgstr ""
3646
 
3647
- #: methods/cloudfiles-new.php:95
3648
  msgid "US or UK-based Rackspace Account"
3649
  msgstr ""
3650
 
3651
- #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:95
3652
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3653
  msgstr ""
3654
 
3655
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3656
- #: methods/cloudfiles-new.php:39 methods/openstack-base.php:431
3657
- #: methods/openstack-base.php:433 methods/openstack-base.php:453
3658
  #: methods/openstack2.php:25
3659
  msgid "Authorisation failed (check your credentials)"
3660
  msgstr ""
3661
 
3662
- #: methods/updraftvault.php:525 udaddons/options.php:265
3663
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3664
  msgstr ""
3665
 
3666
- #: admin.php:615 central/bootstrap.php:513
3667
  msgid "Create"
3668
  msgstr ""
3669
 
3670
- #: admin.php:577
3671
  msgid "Trying..."
3672
  msgstr ""
3673
 
3674
- #: admin.php:576
3675
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3676
  msgstr ""
3677
 
3678
- #: class-updraftplus.php:1493
3679
  msgid "(when decrypted)"
3680
  msgstr ""
3681
 
3682
- #: admin.php:587 admin.php:3693
3683
  msgid "Error data:"
3684
  msgstr ""
3685
 
3686
- #: admin.php:3369
3687
  msgid "Backup does not exist in the backup history"
3688
  msgstr ""
3689
 
3690
- #: admin.php:2375
3691
  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."
3692
  msgstr ""
3693
 
@@ -3739,11 +3799,11 @@ msgstr ""
3739
  msgid "Email reports"
3740
  msgstr ""
3741
 
3742
- #: class-updraftplus.php:1489 class-updraftplus.php:1494
3743
  msgid "%s checksum: %s"
3744
  msgstr ""
3745
 
3746
- #: class-updraftplus.php:1462 class-updraftplus.php:1464
3747
  msgid "files: %s"
3748
  msgstr ""
3749
 
@@ -3763,7 +3823,7 @@ msgstr ""
3763
  msgid "Debugging information"
3764
  msgstr ""
3765
 
3766
- #: addons/reporting.php:194 admin.php:3129
3767
  msgid "Uploaded to:"
3768
  msgstr ""
3769
 
@@ -3783,7 +3843,7 @@ msgstr ""
3783
  msgid "Errors / warnings:"
3784
  msgstr ""
3785
 
3786
- #: addons/morefiles.php:62 addons/morefiles.php:63 addons/reporting.php:155
3787
  msgid "Contains:"
3788
  msgstr ""
3789
 
@@ -3803,166 +3863,166 @@ msgstr ""
3803
  msgid "%d errors, %d warnings"
3804
  msgstr ""
3805
 
3806
- #: addons/onedrive.php:717 methods/dropbox.php:596
3807
  msgid "%s authentication"
3808
  msgstr ""
3809
 
3810
- #: addons/onedrive.php:717 class-updraftplus.php:302 methods/dropbox.php:569
3811
- #: methods/dropbox.php:596 methods/dropbox.php:609 methods/dropbox.php:740
3812
  msgid "%s error: %s"
3813
  msgstr ""
3814
 
3815
- #: addons/googlecloud.php:815 methods/dropbox.php:480
3816
  msgid "%s logo"
3817
  msgstr ""
3818
 
3819
- #: methods/dropbox.php:214
3820
  msgid "%s did not return the expected response - check your log file for more details"
3821
  msgstr ""
3822
 
3823
- #: methods/s3.php:279
3824
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3825
  msgstr ""
3826
 
3827
- #: methods/email.php:74
3828
  msgid "For more options, use the \"%s\" add-on."
3829
  msgstr ""
3830
 
3831
- #: methods/email.php:73
3832
  msgid "Your site's admin email address (%s) will be used."
3833
  msgstr ""
3834
 
3835
- #: admin.php:624 methods/updraftvault.php:276 methods/updraftvault.php:321
3836
- #: udaddons/options.php:244
3837
  msgid "Connect"
3838
  msgstr ""
3839
 
3840
- #: templates/wp-admin/settings/form-contents.php:289
3841
  msgid "For more reporting features, use the Reporting add-on."
3842
  msgstr ""
3843
 
3844
- #: class-updraftplus.php:3901
3845
  msgid "(version: %s)"
3846
  msgstr ""
3847
 
3848
- #: addons/reporting.php:438 admin.php:566
3849
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3850
  msgstr ""
3851
 
3852
- #: addons/reporting.php:438 admin.php:565
3853
  msgid "When the Email storage method is enabled, also send the entire backup"
3854
  msgstr ""
3855
 
3856
- #: addons/reporting.php:153 backup.php:933
3857
  msgid "Latest status:"
3858
  msgstr ""
3859
 
3860
- #: backup.php:932
3861
  msgid "Backup contains:"
3862
  msgstr ""
3863
 
3864
- #: backup.php:889
3865
  msgid "Backed up: %s"
3866
  msgstr ""
3867
 
3868
- #: addons/reporting.php:236 backup.php:883
3869
  msgid "The log file has been attached to this email."
3870
  msgstr ""
3871
 
3872
- #: backup.php:847
3873
  msgid "Unknown/unexpected error - please raise a support request"
3874
  msgstr ""
3875
 
3876
- #: backup.php:844
3877
  msgid "Database only (files were not part of this particular schedule)"
3878
  msgstr ""
3879
 
3880
- #: backup.php:844
3881
  msgid "Database (files backup has not completed)"
3882
  msgstr ""
3883
 
3884
- #: backup.php:841
3885
  msgid "Files only (database was not part of this particular schedule)"
3886
  msgstr ""
3887
 
3888
- #: backup.php:841
3889
  msgid "Files (database backup has not completed)"
3890
  msgstr ""
3891
 
3892
- #: admin.php:229 backup.php:839
3893
  msgid "Files and database"
3894
  msgstr ""
3895
 
3896
- #: options.php:186
3897
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3898
  msgstr ""
3899
 
3900
- #: options.php:186
3901
  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>."
3902
  msgstr ""
3903
 
3904
- #: options.php:186
3905
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3906
  msgstr ""
3907
 
3908
- #: options.php:186
3909
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3910
  msgstr ""
3911
 
3912
- #: options.php:186
3913
  msgid "UpdraftPlus warning:"
3914
  msgstr ""
3915
 
3916
- #: udaddons/options.php:488
3917
  msgid "(or connect using the form on this page if you have already purchased it)"
3918
  msgstr ""
3919
 
3920
- #: udaddons/options.php:474
3921
  msgid "please follow this link to update the plugin in order to activate it"
3922
  msgstr ""
3923
 
3924
- #: udaddons/options.php:471
3925
  msgid "please follow this link to update the plugin in order to get it"
3926
  msgstr ""
3927
 
3928
- #: udaddons/options.php:461 udaddons/options.php:463
3929
  msgid "latest"
3930
  msgstr ""
3931
 
3932
- #: udaddons/options.php:459
3933
  msgid "Your version: %s"
3934
  msgstr ""
3935
 
3936
- #: udaddons/options.php:457
3937
  msgid "You've got it"
3938
  msgstr ""
3939
 
3940
- #: udaddons/options.php:423
3941
  msgid "UpdraftPlus Support"
3942
  msgstr ""
3943
 
3944
- #: udaddons/options.php:381
3945
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3946
  msgstr ""
3947
 
3948
- #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3949
  msgid "UpdraftPlus Addons"
3950
  msgstr ""
3951
 
3952
- #: udaddons/options.php:94
3953
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
3954
  msgstr ""
3955
 
3956
- #: methods/updraftvault.php:598 methods/updraftvault.php:616
3957
  #: udaddons/updraftplus-addons.php:795
3958
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3959
  msgstr ""
3960
 
3961
- #: methods/updraftvault.php:612 udaddons/updraftplus-addons.php:792
3962
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3963
  msgstr ""
3964
 
3965
- #: methods/updraftvault.php:571 udaddons/updraftplus-addons.php:752
3966
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3967
  msgstr ""
3968
 
@@ -3974,16 +4034,16 @@ msgstr ""
3974
  msgid "We failed to successfully connect to UpdraftPlus.Com"
3975
  msgstr ""
3976
 
3977
- #: methods/email.php:74 templates/wp-admin/settings/form-contents.php:270
3978
  #: templates/wp-admin/settings/tab-addons.php:200
3979
  msgid "Reporting"
3980
  msgstr ""
3981
 
3982
- #: admin.php:4104
3983
  msgid "Options (raw)"
3984
  msgstr ""
3985
 
3986
- #: addons/reporting.php:436 admin.php:564
3987
  msgid "Send a report only when there are warnings/errors"
3988
  msgstr ""
3989
 
@@ -3995,147 +4055,147 @@ msgstr ""
3995
  msgid "You should check the file ownerships and permissions in your WordPress installation"
3996
  msgstr ""
3997
 
3998
- #: templates/wp-admin/settings/form-contents.php:174
3999
  msgid "See also the \"More Files\" add-on from our shop."
4000
  msgstr ""
4001
 
4002
- #: backup.php:2987 class-updraftplus.php:610
4003
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4004
  msgstr ""
4005
 
4006
- #: class-updraftplus.php:594
4007
  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)"
4008
  msgstr ""
4009
 
4010
- #: udaddons/options.php:547
4011
  msgid "Manage Addons"
4012
  msgstr ""
4013
 
4014
- #: udaddons/options.php:489
4015
  msgid "Buy It"
4016
  msgstr ""
4017
 
4018
- #: udaddons/options.php:488
4019
  msgid "Get it from the UpdraftPlus.Com Store"
4020
  msgstr ""
4021
 
4022
- #: udaddons/options.php:482 udaddons/options.php:484
4023
  msgid "activate it on this site"
4024
  msgstr ""
4025
 
4026
- #: udaddons/options.php:484
4027
  msgid "You have an inactive purchase"
4028
  msgstr ""
4029
 
4030
- #: udaddons/options.php:474
4031
  msgid "Assigned to this site"
4032
  msgstr ""
4033
 
4034
- #: udaddons/options.php:471
4035
  msgid "Available for this site (via your all-addons purchase)"
4036
  msgstr ""
4037
 
4038
- #: udaddons/options.php:465
4039
  msgid "(apparently a pre-release or withdrawn release)"
4040
  msgstr ""
4041
 
4042
- #: udaddons/options.php:425
4043
  msgid "Go here"
4044
  msgstr ""
4045
 
4046
- #: udaddons/options.php:425
4047
  msgid "Need to get support?"
4048
  msgstr ""
4049
 
4050
- #: udaddons/options.php:407
4051
  msgid "An error occurred when trying to retrieve your add-ons."
4052
  msgstr ""
4053
 
4054
- #: udaddons/options.php:340
4055
  msgid "An unknown response was received. Response was:"
4056
  msgstr ""
4057
 
4058
- #: udaddons/options.php:339
4059
  msgid "Claim not granted - your account login details were wrong"
4060
  msgstr ""
4061
 
4062
- #: udaddons/options.php:337
4063
  msgid "Please wait whilst we make the claim..."
4064
  msgstr ""
4065
 
4066
- #: udaddons/options.php:290
4067
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4068
  msgstr ""
4069
 
4070
- #: udaddons/options.php:281
4071
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4072
  msgstr ""
4073
 
4074
- #: udaddons/options.php:272
4075
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4076
  msgstr ""
4077
 
4078
- #: udaddons/options.php:271
4079
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4080
  msgstr ""
4081
 
4082
- #: udaddons/options.php:242
4083
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4084
  msgstr ""
4085
 
4086
- #: udaddons/options.php:183
4087
  msgid "Forgotten your details?"
4088
  msgstr ""
4089
 
4090
- #: udaddons/options.php:172
4091
  msgid "Not yet got an account (it's free)? Go get one!"
4092
  msgstr ""
4093
 
4094
- #: udaddons/options.php:141
4095
  msgid "Connect with your UpdraftPlus.Com account"
4096
  msgstr ""
4097
 
4098
- #: udaddons/options.php:120
4099
  msgid "Your web server's version of PHP is too old ("
4100
  msgstr ""
4101
 
4102
- #: udaddons/options.php:114
4103
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4104
  msgstr ""
4105
 
4106
- #: udaddons/options.php:113
4107
  msgid "Go here to begin installing it."
4108
  msgstr ""
4109
 
4110
- #: udaddons/options.php:113
4111
  msgid "UpdraftPlus is not yet installed."
4112
  msgstr ""
4113
 
4114
- #: udaddons/options.php:110
4115
  msgid "Go here to activate it."
4116
  msgstr ""
4117
 
4118
- #: udaddons/options.php:109
4119
  msgid "UpdraftPlus is not yet activated."
4120
  msgstr ""
4121
 
4122
- #: udaddons/options.php:100 udaddons/options.php:102
4123
  msgid "Go here to connect."
4124
  msgstr ""
4125
 
4126
- #: udaddons/options.php:100
4127
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4128
  msgstr ""
4129
 
4130
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4131
  msgid "Without it, encryption will be a lot slower."
4132
  msgstr ""
4133
 
4134
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4135
  msgid "Your web-server does not have the %s module installed."
4136
  msgstr ""
4137
 
4138
- #: addons/googlecloud.php:898 methods/googledrive.php:966
4139
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4140
  msgstr ""
4141
 
@@ -4143,15 +4203,15 @@ msgstr ""
4143
  msgid "Drop backup files here"
4144
  msgstr ""
4145
 
4146
- #: admin.php:575
4147
  msgid "The web server returned an error code (try again, or check your web server logs)"
4148
  msgstr ""
4149
 
4150
- #: admin.php:573
4151
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4152
  msgstr ""
4153
 
4154
- #: admin.php:570
4155
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4156
  msgstr ""
4157
 
@@ -4159,7 +4219,7 @@ msgstr ""
4159
  msgid "Site home:"
4160
  msgstr ""
4161
 
4162
- #: addons/morestorage.php:78
4163
  msgid "Remote Storage Options"
4164
  msgstr ""
4165
 
@@ -4171,7 +4231,7 @@ msgstr ""
4171
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4172
  msgstr ""
4173
 
4174
- #: addons/azure.php:351 methods/stream-base.php:125 methods/stream-base.php:130
4175
  msgid "Upload failed"
4176
  msgstr ""
4177
 
@@ -4179,11 +4239,11 @@ msgstr ""
4179
  msgid "You can send a backup to more than one destination with an add-on."
4180
  msgstr ""
4181
 
4182
- #: admin.php:2593
4183
  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."
4184
  msgstr ""
4185
 
4186
- #: admin.php:2491
4187
  msgid "(%s%%, file %s of %s)"
4188
  msgstr ""
4189
 
@@ -4192,124 +4252,124 @@ msgstr ""
4192
  msgid "Read more about how this works..."
4193
  msgstr ""
4194
 
4195
- #: addons/sftp.php:485
4196
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4197
  msgstr ""
4198
 
4199
- #: addons/sftp.php:483
4200
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4201
  msgstr ""
4202
 
4203
- #: addons/sftp.php:402
4204
  msgid "Use SCP instead of SFTP"
4205
  msgstr ""
4206
 
4207
- #: addons/sftp.php:46
4208
  msgid "SCP/SFTP user setting"
4209
  msgstr ""
4210
 
4211
- #: addons/sftp.php:45
4212
  msgid "SCP/SFTP host setting"
4213
  msgstr ""
4214
 
4215
- #: methods/email.php:58
4216
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4217
  msgstr ""
4218
 
4219
- #: methods/email.php:45
4220
  msgid "Backup is of: %s."
4221
  msgstr ""
4222
 
4223
- #: admin.php:662
4224
  msgid "%s settings test result:"
4225
  msgstr ""
4226
 
4227
- #: admin.php:3287 admin.php:3289
4228
  msgid "(Not finished)"
4229
  msgstr ""
4230
 
4231
- #: admin.php:3289
4232
  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."
4233
  msgstr ""
4234
 
4235
- #: templates/wp-admin/settings/form-contents.php:348
4236
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4237
  msgstr ""
4238
 
4239
- #: templates/wp-admin/settings/form-contents.php:348
4240
  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)."
4241
  msgstr ""
4242
 
4243
- #: admin.php:2588
4244
  msgid "Job ID: %s"
4245
  msgstr ""
4246
 
4247
- #: admin.php:2573
4248
  msgid "last activity: %ss ago"
4249
  msgstr ""
4250
 
4251
- #: admin.php:2572
4252
  msgid "next resumption: %d (after %ss)"
4253
  msgstr ""
4254
 
4255
- #: admin.php:2555 central/bootstrap.php:405 central/bootstrap.php:412
4256
- #: methods/updraftvault.php:356 methods/updraftvault.php:436
4257
  msgid "Unknown"
4258
  msgstr ""
4259
 
4260
- #: admin.php:2505
4261
  msgid "Backup finished"
4262
  msgstr ""
4263
 
4264
- #: admin.php:2500
4265
  msgid "Waiting until scheduled time to retry because of errors"
4266
  msgstr ""
4267
 
4268
- #: admin.php:2496
4269
  msgid "Pruning old backup sets"
4270
  msgstr ""
4271
 
4272
- #: admin.php:2484
4273
  msgid "Uploading files to remote storage"
4274
  msgstr ""
4275
 
4276
- #: admin.php:2553
4277
  msgid "Encrypted database"
4278
  msgstr ""
4279
 
4280
- #: admin.php:2545
4281
  msgid "Encrypting database"
4282
  msgstr ""
4283
 
4284
- #: admin.php:2519
4285
  msgid "Created database backup"
4286
  msgstr ""
4287
 
4288
- #: admin.php:2532
4289
  msgid "table: %s"
4290
  msgstr ""
4291
 
4292
- #: admin.php:2530
4293
  msgid "Creating database backup"
4294
  msgstr ""
4295
 
4296
- #: admin.php:2478
4297
  msgid "Created file backup zips"
4298
  msgstr ""
4299
 
4300
- #: admin.php:2465
4301
  msgid "Creating file backup zips"
4302
  msgstr ""
4303
 
4304
- #: admin.php:2460
4305
  msgid "Backup begun"
4306
  msgstr ""
4307
 
4308
- #: admin.php:2303
4309
  msgid "Backups in progress:"
4310
  msgstr ""
4311
 
4312
- #: admin.php:859
4313
  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."
4314
  msgstr ""
4315
 
@@ -4325,26 +4385,26 @@ msgstr ""
4325
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4326
  msgstr ""
4327
 
4328
- #: class-updraftplus.php:2739
4329
  msgid "The backup has not finished; a resumption is scheduled"
4330
  msgstr ""
4331
 
4332
- #: class-updraftplus.php:1734
4333
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4334
  msgstr ""
4335
 
4336
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4337
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4338
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4339
- #: methods/googledrive.php:244
4340
  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)."
4341
  msgstr ""
4342
 
4343
- #: admin.php:2126
4344
  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)."
4345
  msgstr ""
4346
 
4347
- #: addons/autobackup.php:1006 admin.php:617
4348
  msgid "Proceed with update"
4349
  msgstr ""
4350
 
@@ -4397,19 +4457,19 @@ msgstr ""
4397
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4398
  msgstr ""
4399
 
4400
- #: addons/morefiles.php:170 addons/morefiles.php:171
4401
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4402
  msgstr ""
4403
 
4404
- #: addons/morefiles.php:170 addons/morefiles.php:171
4405
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4406
  msgstr ""
4407
 
4408
- #: addons/morefiles.php:123
4409
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4410
  msgstr ""
4411
 
4412
- #: addons/morefiles.php:113
4413
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4414
  msgstr ""
4415
 
@@ -4422,31 +4482,31 @@ msgstr ""
4422
  msgid "Support"
4423
  msgstr ""
4424
 
4425
- #: class-updraftplus.php:4054
4426
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4427
  msgstr ""
4428
 
4429
- #: class-updraftplus.php:4046
4430
  msgid "This database backup is missing core WordPress tables: %s"
4431
  msgstr ""
4432
 
4433
- #: class-updraftplus.php:3934
4434
  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."
4435
  msgstr ""
4436
 
4437
- #: class-updraftplus.php:3850
4438
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4439
  msgstr ""
4440
 
4441
- #: addons/autobackup.php:556 admin.php:827
4442
  msgid "Update Theme"
4443
  msgstr ""
4444
 
4445
- #: addons/autobackup.php:505 admin.php:823
4446
  msgid "Update Plugin"
4447
  msgstr ""
4448
 
4449
- #: addons/autobackup.php:985 admin.php:696 includes/updraftplus-notices.php:171
4450
  msgid "Be safe with an automatic backup"
4451
  msgstr ""
4452
 
@@ -4454,71 +4514,71 @@ msgstr ""
4454
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4455
  msgstr ""
4456
 
4457
- #: admin.php:2078
4458
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4459
  msgstr ""
4460
 
4461
- #: admin.php:611
4462
  msgid "The file was uploaded."
4463
  msgstr ""
4464
 
4465
- #: admin.php:610
4466
  msgid "Unknown server response status:"
4467
  msgstr ""
4468
 
4469
- #: admin.php:609
4470
  msgid "Unknown server response:"
4471
  msgstr ""
4472
 
4473
- #: admin.php:608
4474
  msgid "This decryption key will be attempted:"
4475
  msgstr ""
4476
 
4477
- #: admin.php:607
4478
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4479
  msgstr ""
4480
 
4481
- #: admin.php:606
4482
  msgid "Upload error"
4483
  msgstr ""
4484
 
4485
- #: admin.php:605
4486
  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)."
4487
  msgstr ""
4488
 
4489
- #: admin.php:604
4490
  msgid "Upload error:"
4491
  msgstr ""
4492
 
4493
- #: admin.php:603
4494
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4495
  msgstr ""
4496
 
4497
- #: admin.php:594
4498
  msgid "Download to your computer"
4499
  msgstr ""
4500
 
4501
- #: admin.php:593
4502
  msgid "Delete from your web server"
4503
  msgstr ""
4504
 
4505
- #: methods/s3.php:774
4506
  msgid "Examples of S3-compatible storage providers:"
4507
  msgstr ""
4508
 
4509
- #: admin.php:3643
4510
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4511
  msgstr ""
4512
 
4513
- #: admin.php:3260
4514
  msgid "You appear to be missing one or more archives from this multi-archive set."
4515
  msgstr ""
4516
 
4517
- #: admin.php:3257
4518
  msgid "(%d archive(s) in set)."
4519
  msgstr ""
4520
 
4521
- #: templates/wp-admin/settings/form-contents.php:325
4522
  msgid "Split archives every:"
4523
  msgstr ""
4524
 
@@ -4526,15 +4586,15 @@ msgstr ""
4526
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4527
  msgstr ""
4528
 
4529
- #: admin.php:584
4530
  msgid "Warnings:"
4531
  msgstr ""
4532
 
4533
- #: admin.php:583
4534
  msgid "Error: the server sent an empty response."
4535
  msgstr ""
4536
 
4537
- #: admin.php:1839
4538
  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?"
4539
  msgstr ""
4540
 
@@ -4570,7 +4630,7 @@ msgstr ""
4570
  msgid "No such backup set exists"
4571
  msgstr ""
4572
 
4573
- #: admin.php:1115
4574
  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"
4575
  msgstr ""
4576
 
@@ -4586,19 +4646,19 @@ msgstr ""
4586
  msgid "Moving unpacked backup into place..."
4587
  msgstr ""
4588
 
4589
- #: backup.php:2691 backup.php:2947
4590
  msgid "Failed to open the zip file (%s) - %s"
4591
  msgstr ""
4592
 
4593
- #: addons/morefiles.php:101
4594
  msgid "WordPress root directory server path: %s"
4595
  msgstr ""
4596
 
4597
- #: methods/s3.php:819
4598
  msgid "%s end-point"
4599
  msgstr ""
4600
 
4601
- #: methods/s3.php:781
4602
  msgid "... and many more!"
4603
  msgstr ""
4604
 
@@ -4606,31 +4666,31 @@ msgstr ""
4606
  msgid "S3 (Compatible)"
4607
  msgstr ""
4608
 
4609
- #: admin.php:3564
4610
  msgid "File is not locally present - needs retrieving from remote storage"
4611
  msgstr ""
4612
 
4613
- #: admin.php:3551
4614
  msgid "Looking for %s archive: file name: %s"
4615
  msgstr ""
4616
 
4617
- #: admin.php:3512
4618
  msgid "Final checks"
4619
  msgstr ""
4620
 
4621
- #: templates/wp-admin/settings/form-contents.php:331
4622
  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)."
4623
  msgstr ""
4624
 
4625
- #: templates/wp-admin/settings/form-contents.php:215
4626
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4627
  msgstr ""
4628
 
4629
- #: admin.php:2931
4630
  msgid "Your wp-content directory server path: %s"
4631
  msgstr ""
4632
 
4633
- #: admin.php:600
4634
  msgid "Raw backup history"
4635
  msgstr ""
4636
 
@@ -4638,11 +4698,11 @@ msgstr ""
4638
  msgid "Show raw backup and file list"
4639
  msgstr ""
4640
 
4641
- #: admin.php:582
4642
  msgid "Processing files - please wait..."
4643
  msgstr ""
4644
 
4645
- #: admin.php:3695 templates/wp-admin/settings/downloading-and-restoring.php:29
4646
  msgid "Please consult this FAQ for help on what to do about it."
4647
  msgstr ""
4648
 
@@ -4650,11 +4710,11 @@ msgstr ""
4650
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4651
  msgstr ""
4652
 
4653
- #: class-updraftplus.php:3858
4654
  msgid "Failed to open database file."
4655
  msgstr ""
4656
 
4657
- #: admin.php:4074
4658
  msgid "Known backups (raw)"
4659
  msgstr ""
4660
 
@@ -4678,21 +4738,21 @@ msgstr ""
4678
  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."
4679
  msgstr ""
4680
 
4681
- #: admin.php:3584
4682
  msgid "file is size:"
4683
  msgstr ""
4684
 
4685
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4686
- #: addons/migrator.php:369 admin.php:859 admin.php:2083 backup.php:2994
4687
  #: updraftplus.php:147
4688
  msgid "Go here for more information."
4689
  msgstr ""
4690
 
4691
- #: admin.php:581
4692
  msgid "Some files are still downloading or being processed - please wait."
4693
  msgstr ""
4694
 
4695
- #: class-updraftplus.php:3906 class-updraftplus.php:3924
4696
  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."
4697
  msgstr ""
4698
 
@@ -4704,81 +4764,82 @@ msgstr ""
4704
  msgid "Enter in format HH:MM (e.g. 14:22)."
4705
  msgstr ""
4706
 
4707
- #: methods/ftp.php:111
4708
  msgid "%s upload failed"
4709
  msgstr ""
4710
 
4711
- #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4712
  msgid "%s login failure"
4713
  msgstr ""
4714
 
4715
- #: methods/dropbox.php:425
4716
  msgid "You do not appear to be authenticated with %s"
4717
  msgstr ""
4718
 
4719
- #: methods/dropbox.php:392
4720
  msgid "Failed to access %s when deleting (see log file for more)"
4721
  msgstr ""
4722
 
4723
- #: methods/dropbox.php:384
4724
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4725
  msgstr ""
4726
 
4727
- #: methods/dropbox.php:119
4728
  msgid "Dropbox error: %s (see log file for more)"
4729
  msgstr ""
4730
 
4731
- #: methods/cloudfiles.php:422
4732
  msgid "Error - failed to download the file from %s"
4733
  msgstr ""
4734
 
4735
- #: methods/cloudfiles.php:418
4736
  msgid "Error - no such file exists at %s"
4737
  msgstr ""
4738
 
4739
- #: addons/azure.php:217 methods/addon-base.php:208 methods/cloudfiles.php:392
4740
- #: methods/cloudfiles.php:409 methods/googledrive.php:838
4741
- #: methods/openstack-base.php:403 methods/stream-base.php:266
4742
- #: methods/stream-base.php:273 methods/stream-base.php:286
 
4743
  msgid "%s Error"
4744
  msgstr ""
4745
 
4746
- #: methods/cloudfiles.php:219 methods/openstack-base.php:78
4747
  msgid "%s error - failed to upload file"
4748
  msgstr ""
4749
 
4750
- #: class-updraftplus.php:940 methods/cloudfiles.php:211
4751
  msgid "%s error - failed to re-assemble chunks"
4752
  msgstr ""
4753
 
4754
- #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4755
- #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4756
- #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4757
- #: methods/openstack-base.php:36 methods/openstack-base.php:300
4758
- #: methods/openstack-base.php:365 methods/openstack-base.php:437
4759
- #: methods/openstack-base.php:440 methods/openstack-base.php:457
4760
- #: methods/openstack-base.php:462
4761
  msgid "%s authentication failed"
4762
  msgstr ""
4763
 
4764
- #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1784
4765
- #: admin.php:1831 admin.php:1839 class-updraftplus.php:725
4766
- #: class-updraftplus.php:731 class-updraftplus.php:3829
4767
- #: class-updraftplus.php:3831 class-updraftplus.php:3964
4768
- #: class-updraftplus.php:3999 methods/googledrive.php:304 restorer.php:944
4769
  msgid "Error: %s"
4770
  msgstr ""
4771
 
4772
- #: admin.php:2868
4773
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4774
  msgstr ""
4775
 
4776
- #: admin.php:2866
4777
  msgid "Backup directory specified does <b>not</b> exist."
4778
  msgstr ""
4779
 
4780
- #: admin.php:2600 admin.php:2822 class-updraftplus.php:3906
4781
- #: class-updraftplus.php:3924
4782
  msgid "Warning: %s"
4783
  msgstr ""
4784
 
@@ -4786,31 +4847,31 @@ msgstr ""
4786
  msgid "Last backup job run:"
4787
  msgstr ""
4788
 
4789
- #: backup.php:2713
4790
  msgid "A very large file was encountered: %s (size: %s Mb)"
4791
  msgstr ""
4792
 
4793
- #: backup.php:2087 backup.php:2119
4794
  msgid "%s: unreadable file - could not be backed up"
4795
  msgstr ""
4796
 
4797
- #: backup.php:1495
4798
  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"
4799
  msgstr ""
4800
 
4801
- #: backup.php:1614
4802
  msgid "An error occurred whilst closing the final database file"
4803
  msgstr ""
4804
 
4805
- #: backup.php:874
4806
  msgid "Warnings encountered:"
4807
  msgstr ""
4808
 
4809
- #: class-updraftplus.php:2727
4810
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4811
  msgstr ""
4812
 
4813
- #: class-updraftplus.php:623
4814
  msgid "Your free disk space is very low - only %s Mb remain"
4815
  msgstr ""
4816
 
@@ -4842,23 +4903,23 @@ msgstr ""
4842
  msgid "Processed plugin:"
4843
  msgstr ""
4844
 
4845
- #: addons/sftp.php:74
4846
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4847
  msgstr ""
4848
 
4849
- #: addons/sftp.php:38
4850
  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."
4851
  msgstr ""
4852
 
4853
- #: methods/s3.php:795
4854
  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."
4855
  msgstr ""
4856
 
4857
- #: methods/s3.php:1033
4858
  msgid "Please check your access credentials."
4859
  msgstr ""
4860
 
4861
- #: addons/s3-enhanced.php:172 methods/s3.php:1011
4862
  msgid "The error reported by %s was:"
4863
  msgstr ""
4864
 
@@ -4874,7 +4935,7 @@ msgstr ""
4874
  msgid "Cannot create new tables, so skipping this command (%s)"
4875
  msgstr ""
4876
 
4877
- #: class-updraftplus.php:3975 restorer.php:1648
4878
  msgid "Site information:"
4879
  msgstr ""
4880
 
@@ -4882,38 +4943,38 @@ msgstr ""
4882
  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."
4883
  msgstr ""
4884
 
4885
- #: addons/migrator.php:325 admin.php:2078 class-updraftplus.php:3968
4886
  #: restorer.php:1970
4887
  msgid "Warning:"
4888
  msgstr ""
4889
 
4890
- #: class-updraftplus.php:3960 restorer.php:162
4891
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4892
  msgstr ""
4893
 
4894
- #: admin.php:3539
4895
  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."
4896
  msgstr ""
4897
 
4898
- #: admin.php:2987 methods/updraftvault.php:260
4899
  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."
4900
  msgstr ""
4901
 
4902
- #: admin.php:618
4903
  msgid "Close"
4904
  msgstr ""
4905
 
4906
- #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:574
4907
- #: methods/remotesend.php:71 methods/remotesend.php:79
4908
- #: methods/remotesend.php:220 methods/remotesend.php:237
4909
  msgid "Unexpected response:"
4910
  msgstr ""
4911
 
4912
- #: addons/reporting.php:434 admin.php:569
4913
  msgid "To send to more than one address, separate each address with a comma."
4914
  msgstr ""
4915
 
4916
- #: admin.php:598
4917
  msgid "PHP information"
4918
  msgstr ""
4919
 
@@ -4949,7 +5010,7 @@ msgstr ""
4949
  msgid "Also delete from remote storage"
4950
  msgstr ""
4951
 
4952
- #: admin.php:2330
4953
  msgid "Latest UpdraftPlus.com news:"
4954
  msgstr ""
4955
 
@@ -4966,7 +5027,7 @@ msgstr ""
4966
  msgid "News"
4967
  msgstr ""
4968
 
4969
- #: admin.php:1269
4970
  msgid "Backup set not found"
4971
  msgstr ""
4972
 
@@ -4984,7 +5045,7 @@ msgstr ""
4984
  msgid "Blog link"
4985
  msgstr ""
4986
 
4987
- #: admin.php:661
4988
  msgid "Testing %s Settings..."
4989
  msgstr ""
4990
 
@@ -4992,27 +5053,27 @@ msgstr ""
4992
  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."
4993
  msgstr ""
4994
 
4995
- #: admin.php:875
4996
  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."
4997
  msgstr ""
4998
 
4999
- #: admin.php:875
5000
  msgid "Notice"
5001
  msgstr ""
5002
 
5003
- #: backup.php:856
5004
  msgid "Errors encountered:"
5005
  msgstr ""
5006
 
5007
- #: admin.php:567
5008
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5009
  msgstr ""
5010
 
5011
- #: admin.php:580
5012
  msgid "Begun looking for this entity"
5013
  msgstr ""
5014
 
5015
- #: addons/dropbox-folders.php:26
5016
  msgid "Store at"
5017
  msgstr ""
5018
 
@@ -5028,7 +5089,7 @@ msgstr ""
5028
  msgid "Time taken (seconds):"
5029
  msgstr ""
5030
 
5031
- #: addons/migrator.php:1113 admin.php:585
5032
  msgid "Errors:"
5033
  msgstr ""
5034
 
@@ -5097,23 +5158,23 @@ msgstr ""
5097
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5098
  msgstr ""
5099
 
5100
- #: addons/multisite.php:630
5101
  msgid "Blog uploads"
5102
  msgstr ""
5103
 
5104
- #: addons/migrator.php:369 addons/multisite.php:623
5105
  msgid "Must-use plugins"
5106
  msgstr ""
5107
 
5108
- #: addons/multisite.php:193
5109
  msgid "You do not have permission to access this page."
5110
  msgstr ""
5111
 
5112
- #: addons/multisite.php:179 udaddons/options.php:225
5113
  msgid "You do not have sufficient permissions to access this page."
5114
  msgstr ""
5115
 
5116
- #: addons/multisite.php:173
5117
  msgid "Multisite Install"
5118
  msgstr ""
5119
 
@@ -5121,103 +5182,104 @@ msgstr ""
5121
  msgid "starting from next time it is"
5122
  msgstr ""
5123
 
5124
- #: addons/sftp.php:430
5125
  msgid "Failure: Port must be an integer."
5126
  msgstr ""
5127
 
5128
- #: methods/ftp.php:359 methods/openstack2.php:147
5129
  msgid "password"
5130
  msgstr ""
5131
 
5132
- #: addons/sftp.php:421 methods/openstack2.php:142
5133
  msgid "username"
5134
  msgstr ""
5135
 
5136
- #: addons/sftp.php:417
5137
  msgid "host name"
5138
  msgstr ""
5139
 
5140
- #: addons/sftp.php:395
5141
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5142
  msgstr ""
5143
 
5144
- #: addons/sftp.php:393
5145
  msgid "Directory path"
5146
  msgstr ""
5147
 
5148
- #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:368
5149
- #: addons/webdav.php:69 methods/openstack2.php:127 methods/updraftvault.php:320
5150
- #: udaddons/options.php:145
5151
  msgid "Password"
5152
  msgstr ""
5153
 
5154
- #: addons/sftp.php:354 addons/webdav.php:83
5155
  msgid "Port"
5156
  msgstr ""
5157
 
5158
- #: addons/moredatabase.php:237 addons/sftp.php:347 addons/webdav.php:75
5159
  msgid "Host"
5160
  msgstr ""
5161
 
5162
- #: addons/sftp.php:280
5163
  msgid "%s Error: Failed to download"
5164
  msgstr ""
5165
 
5166
- #: addons/sftp.php:460
5167
  msgid "Check your file permissions: Could not successfully create and enter:"
5168
  msgstr ""
5169
 
5170
- #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
5171
  msgid "No %s found"
5172
  msgstr ""
5173
 
5174
- #: addons/sftp.php:38
5175
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5176
  msgstr ""
5177
 
5178
- #: addons/sftp.php:38
5179
  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."
5180
  msgstr ""
5181
 
5182
- #: addons/morefiles.php:562
5183
  msgid "No backup of %s directories: there was nothing found to back up"
5184
  msgstr ""
5185
 
5186
- #: addons/morefiles.php:209
5187
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5188
  msgstr ""
5189
 
5190
- #: addons/morefiles.php:207
5191
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5192
  msgstr ""
5193
 
5194
- #: addons/morefiles.php:186
5195
  msgid "More Files"
5196
  msgstr ""
5197
 
5198
- #: addons/morefiles.php:100
5199
  msgid "WordPress core (including any additions to your WordPress root directory)"
5200
  msgstr ""
5201
 
5202
- #: addons/morefiles.php:93
5203
  msgid "The above files comprise everything in a WordPress installation."
5204
  msgstr ""
5205
 
5206
- #: addons/morefiles.php:74
5207
  msgid "Over-write wp-config.php"
5208
  msgstr ""
5209
 
5210
- #: addons/morefiles.php:70 addons/morefiles.php:562
 
5211
  msgid "WordPress Core"
5212
  msgstr ""
5213
 
5214
- #: methods/addon-base.php:294 methods/stream-base.php:316
5215
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5216
  msgstr ""
5217
 
5218
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5219
- #: addons/googlecloud.php:666 addons/sftp.php:447 admin.php:2654 admin.php:2689
5220
- #: admin.php:2698 methods/addon-base.php:284 methods/stream-base.php:302
5221
  msgid "Failed"
5222
  msgstr ""
5223
 
@@ -5225,404 +5287,404 @@ msgstr ""
5225
  msgid "WebDAV URL"
5226
  msgstr ""
5227
 
5228
- #: methods/stream-base.php:286
5229
  msgid "Local write failed: Failed to download"
5230
  msgstr ""
5231
 
5232
- #: methods/stream-base.php:273
5233
  msgid "Error opening remote file: Failed to download"
5234
  msgstr ""
5235
 
5236
- #: methods/stream-base.php:107 methods/stream-base.php:111
5237
  msgid "Chunk %s: A %s error occurred"
5238
  msgstr ""
5239
 
5240
- #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
5241
- #: methods/addon-base.php:97 methods/addon-base.php:128
5242
- #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
5243
- #: methods/googledrive.php:146 methods/stream-base.php:31
5244
- #: methods/stream-base.php:145 methods/stream-base.php:151
5245
- #: methods/stream-base.php:185 methods/stream-base.php:250
5246
  msgid "No %s settings were found"
5247
  msgstr ""
5248
 
5249
- #: methods/ftp.php:381
5250
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5251
  msgstr ""
5252
 
5253
- #: methods/ftp.php:378
5254
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5255
  msgstr ""
5256
 
5257
- #: methods/ftp.php:369
5258
  msgid "Failure: we did not successfully log in with those credentials."
5259
  msgstr ""
5260
 
5261
- #: methods/ftp.php:351
5262
  msgid "Failure: No server details were given."
5263
  msgstr ""
5264
 
5265
- #: methods/ftp.php:320
5266
  msgid "Needs to already exist"
5267
  msgstr ""
5268
 
5269
- #: methods/ftp.php:303
5270
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5271
  msgstr ""
5272
 
5273
- #: methods/ftp.php:303
5274
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5275
  msgstr ""
5276
 
5277
- #: addons/onedrive.php:755 methods/dropbox.php:627
5278
  msgid "Your %s account name: %s"
5279
  msgstr ""
5280
 
5281
- #: methods/dropbox.php:617 methods/dropbox.php:644
5282
  msgid "though part of the returned information was not as expected - your mileage may vary"
5283
  msgstr ""
5284
 
5285
- #: methods/dropbox.php:612 methods/dropbox.php:614
5286
  msgid "you have authenticated your %s account"
5287
  msgstr ""
5288
 
5289
- #: methods/dropbox.php:499 methods/dropbox.php:501
5290
  msgid "there's an add-on for that."
5291
  msgstr ""
5292
 
5293
- #: methods/dropbox.php:499 methods/dropbox.php:501
5294
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5295
  msgstr ""
5296
 
5297
- #: methods/dropbox.php:499 methods/dropbox.php:501
5298
  msgid "Backups are saved in"
5299
  msgstr ""
5300
 
5301
- #: methods/dropbox.php:499 methods/dropbox.php:501
5302
  msgid "Need to use sub-folders?"
5303
  msgstr ""
5304
 
5305
- #: methods/dropbox.php:212 methods/dropbox.php:233 methods/dropbox.php:249
5306
  msgid "error: failed to upload file to %s (see log file for more)"
5307
  msgstr ""
5308
 
5309
- #: methods/dropbox.php:97 methods/dropbox.php:114
5310
  msgid "You do not appear to be authenticated with Dropbox"
5311
  msgstr ""
5312
 
5313
- #: methods/s3.php:1028
5314
  msgid "The communication with %s was not encrypted."
5315
  msgstr ""
5316
 
5317
- #: methods/s3.php:1026
5318
  msgid "The communication with %s was encrypted."
5319
  msgstr ""
5320
 
5321
- #: addons/googlecloud.php:689 methods/s3.php:1023
5322
  msgid "We accessed the bucket, and were able to create files within it."
5323
  msgstr ""
5324
 
5325
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5326
- #: methods/s3.php:1033
5327
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5328
  msgstr ""
5329
 
5330
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5331
- #: methods/s3.php:1033
5332
  msgid "Failure"
5333
  msgstr ""
5334
 
5335
- #: methods/s3.php:1009
5336
  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)."
5337
  msgstr ""
5338
 
5339
- #: addons/s3-enhanced.php:145 methods/openstack2.php:113 methods/s3.php:1003
5340
  msgid "Region"
5341
  msgstr ""
5342
 
5343
- #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:985
5344
  msgid "Failure: No bucket details were given."
5345
  msgstr ""
5346
 
5347
- #: methods/s3.php:963
5348
  msgid "API secret"
5349
  msgstr ""
5350
 
5351
- #: methods/s3.php:856
5352
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5353
  msgstr ""
5354
 
5355
- #: methods/s3.php:855
5356
  msgid "%s location"
5357
  msgstr ""
5358
 
5359
- #: methods/s3.php:851
5360
  msgid "%s secret key"
5361
  msgstr ""
5362
 
5363
- #: methods/s3.php:847
5364
  msgid "%s access key"
5365
  msgstr ""
5366
 
5367
- #: methods/s3.php:812
5368
  msgid "If you see errors about SSL certificates, then please go here for help."
5369
  msgstr ""
5370
 
5371
- #: methods/s3.php:810
5372
  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."
5373
  msgstr ""
5374
 
5375
- #: methods/s3.php:444 methods/s3.php:618 methods/s3.php:720
5376
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5377
  msgstr ""
5378
 
5379
- #: methods/s3.php:703 methods/s3.php:749
5380
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5381
  msgstr ""
5382
 
5383
- #: methods/s3.php:422
5384
  msgid "%s re-assembly error (%s): (see log file for more)"
5385
  msgstr ""
5386
 
5387
- #: methods/s3.php:418
5388
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5389
  msgstr ""
5390
 
5391
- #: methods/s3.php:402
5392
  msgid "%s chunk %s: upload failed"
5393
  msgstr ""
5394
 
5395
- #: methods/s3.php:392
5396
  msgid "%s error: file %s was shortened unexpectedly"
5397
  msgstr ""
5398
 
5399
- #: methods/s3.php:369
5400
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5401
  msgstr ""
5402
 
5403
- #: methods/email.php:69
5404
  msgid "Note:"
5405
  msgstr ""
5406
 
5407
- #: methods/email.php:43
5408
  msgid "WordPress Backup"
5409
  msgstr ""
5410
 
5411
- #: methods/cloudfiles.php:560 methods/openstack-base.php:476
5412
  msgid "We accessed the container, and were able to create files within it."
5413
  msgstr ""
5414
 
5415
- #: methods/cloudfiles.php:556
5416
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5417
  msgstr ""
5418
 
5419
- #: methods/cloudfiles.php:529 methods/openstack-base.php:420
5420
  msgid "Failure: No container details were given."
5421
  msgstr ""
5422
 
5423
- #: addons/moredatabase.php:238 addons/sftp.php:361 addons/webdav.php:63
5424
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:509
5425
- #: methods/openstack2.php:121
5426
  msgid "Username"
5427
  msgstr ""
5428
 
5429
- #: methods/cloudfiles-new.php:152 methods/cloudfiles.php:504 methods/s3.php:959
5430
  msgid "API key"
5431
  msgstr ""
5432
 
5433
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5434
- #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:417
5435
- #: addons/sftp.php:421 addons/sftp.php:425 addons/webdav.php:103 admin.php:638
5436
- #: methods/addon-base.php:277 methods/cloudfiles-new.php:152
5437
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:504
5438
- #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
5439
- #: methods/openstack2.php:142 methods/openstack2.php:147
5440
- #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:959
5441
- #: methods/s3.php:963
5442
  msgid "Failure: No %s was given."
5443
  msgstr ""
5444
 
5445
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5446
- #: methods/openstack-base.php:513 methods/s3.php:799
5447
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5448
  msgstr ""
5449
 
5450
- #: methods/cloudfiles.php:490
5451
  msgid "Cloud Files container"
5452
  msgstr ""
5453
 
5454
- #: methods/cloudfiles.php:486
5455
  msgid "Cloud Files API key"
5456
  msgstr ""
5457
 
5458
- #: methods/cloudfiles.php:482
5459
  msgid "Cloud Files username"
5460
  msgstr ""
5461
 
5462
- #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:99
5463
- #: methods/cloudfiles.php:466
5464
  msgid "UK"
5465
  msgstr ""
5466
 
5467
- #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:98
5468
- #: methods/cloudfiles.php:465
5469
  msgid "US (default)"
5470
  msgstr ""
5471
 
5472
- #: methods/cloudfiles.php:462
5473
  msgid "US or UK Cloud"
5474
  msgstr ""
5475
 
5476
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5477
- #: methods/openstack2.php:94
5478
  msgid "Also, you should read this important FAQ."
5479
  msgstr ""
5480
 
5481
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5482
  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."
5483
  msgstr ""
5484
 
5485
- #: addons/sftp.php:408 admin.php:660 methods/addon-base.php:242
5486
- #: methods/cloudfiles.php:496 methods/ftp.php:329
5487
- #: methods/openstack-base.php:524 methods/s3.php:861
5488
- #: methods/stream-base.php:224
5489
  msgid "Test %s Settings"
5490
  msgstr ""
5491
 
5492
- #: methods/openstack-base.php:403
5493
  msgid "Error downloading remote file: Failed to download ("
5494
  msgstr ""
5495
 
5496
- #: class-updraftplus.php:980 class-updraftplus.php:1024
5497
- #: methods/cloudfiles.php:392 methods/stream-base.php:266
5498
  msgid "Error opening local file: Failed to download"
5499
  msgstr ""
5500
 
5501
- #: methods/cloudfiles.php:218
5502
  msgid "Cloud Files error - failed to upload file"
5503
  msgstr ""
5504
 
5505
- #: addons/sftp.php:134 addons/sftp.php:146 methods/cloudfiles.php:147
5506
- #: methods/cloudfiles.php:189 methods/openstack-base.php:73
5507
- #: methods/openstack-base.php:262 methods/s3.php:337 methods/s3.php:349
5508
- #: methods/s3.php:350
5509
  msgid "%s Error: Failed to upload"
5510
  msgstr ""
5511
 
5512
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5513
- #: class-updraftplus.php:842 methods/cloudfiles.php:130
5514
- #: methods/googledrive.php:756 methods/googledrive.php:761
5515
  msgid "%s Error: Failed to open local file"
5516
  msgstr ""
5517
 
5518
- #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
5519
- #: methods/cloudfiles.php:363
5520
  msgid "Cloud Files error - failed to create and access the container"
5521
  msgstr ""
5522
 
5523
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5524
- #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:539
5525
- #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
5526
  msgid "Cloud Files authentication failed"
5527
  msgstr ""
5528
 
5529
- #: addons/googlecloud.php:907 methods/googledrive.php:976
5530
  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."
5531
  msgstr ""
5532
 
5533
- #: addons/googlecloud.php:896 methods/googledrive.php:965
5534
  msgid "Authenticate with Google"
5535
  msgstr ""
5536
 
5537
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5538
- #: methods/googledrive.php:935
5539
  msgid "Client Secret"
5540
  msgstr ""
5541
 
5542
- #: addons/googlecloud.php:842 methods/googledrive.php:932
5543
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5544
  msgstr ""
5545
 
5546
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5547
- #: methods/googledrive.php:931
5548
  msgid "Client ID"
5549
  msgstr ""
5550
 
5551
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5552
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5553
  msgstr ""
5554
 
5555
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5556
  msgid "Select 'Web Application' as the application type."
5557
  msgstr ""
5558
 
5559
- #: addons/googlecloud.php:826 methods/googledrive.php:919
5560
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5561
  msgstr ""
5562
 
5563
- #: methods/addon-base.php:230 methods/cloudfiles.php:438
5564
- #: methods/dropbox.php:481 methods/ftp.php:298 methods/googledrive.php:904
5565
- #: methods/openstack-base.php:503 methods/s3.php:771
5566
- #: methods/stream-base.php:217
5567
  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."
5568
  msgstr ""
5569
 
5570
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5571
- #: addons/googlecloud.php:709 methods/googledrive.php:460
5572
- #: methods/googledrive.php:461
5573
  msgid "Account is not authorized."
5574
  msgstr ""
5575
 
5576
- #: methods/googledrive.php:386 methods/googledrive.php:432
5577
- #: methods/googledrive.php:438 methods/googledrive.php:440
5578
- #: methods/stream-base.php:201
5579
  msgid "Failed to upload to %s"
5580
  msgstr ""
5581
 
5582
- #: methods/googledrive.php:415
5583
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5584
  msgstr ""
5585
 
5586
- #: methods/googledrive.php:512
5587
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5588
  msgstr ""
5589
 
5590
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5591
- #: methods/googledrive.php:363
5592
  msgid "you have authenticated your %s account."
5593
  msgstr ""
5594
 
5595
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5596
- #: addons/onedrive.php:793 addons/sftp.php:480 methods/addon-base.php:291
5597
- #: methods/cloudfiles.php:560 methods/googledrive.php:363
5598
- #: methods/openstack-base.php:476 methods/s3.php:1023
5599
- #: methods/stream-base.php:313
5600
  msgid "Success"
5601
  msgstr ""
5602
 
5603
- #: addons/onedrive.php:747 methods/dropbox.php:655 methods/dropbox.php:664
5604
- #: methods/googledrive.php:337
5605
  msgid "Your %s quota usage: %s %% used, %s available"
5606
  msgstr ""
5607
 
5608
- #: addons/googlecloud.php:390 methods/googledrive.php:310
5609
  msgid "Authorization failed"
5610
  msgstr ""
5611
 
5612
- #: addons/googlecloud.php:382 methods/googledrive.php:302
5613
  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."
5614
  msgstr ""
5615
 
5616
- #: methods/viaaddon-base.php:72
5617
  msgid "follow this link to get it"
5618
  msgstr ""
5619
 
5620
- #: methods/viaaddon-base.php:72
5621
  msgid "%s support is available as an add-on"
5622
  msgstr ""
5623
 
5624
- #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5625
- #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5626
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5627
  msgstr ""
5628
 
@@ -5631,8 +5693,8 @@ msgstr ""
5631
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5632
  msgstr ""
5633
 
5634
- #: addons/migrator.php:1770 admin.php:2657 admin.php:2691 admin.php:2695
5635
- #: admin.php:3569 admin.php:3582 restorer.php:2203 restorer.php:2309
5636
  msgid "OK"
5637
  msgstr ""
5638
 
@@ -5656,8 +5718,8 @@ msgstr ""
5656
  msgid "Old table prefix:"
5657
  msgstr ""
5658
 
5659
- #: addons/reporting.php:65 addons/reporting.php:152 backup.php:930
5660
- #: class-updraftplus.php:3901
5661
  msgid "Backup of:"
5662
  msgstr ""
5663
 
@@ -5733,156 +5795,152 @@ msgstr ""
5733
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5734
  msgstr ""
5735
 
5736
- #: admin.php:3590 admin.php:3591
5737
  msgid "Could not find one of the files for restoration"
5738
  msgstr ""
5739
 
5740
- #: admin.php:3685
5741
  msgid "Error message"
5742
  msgstr ""
5743
 
5744
- #: admin.php:3587
5745
  msgid "The backup records do not contain information about the proper size of this file."
5746
  msgstr ""
5747
 
5748
- #: admin.php:3579
5749
  msgid "Archive is expected to be size:"
5750
  msgstr ""
5751
 
5752
- #: admin.php:3463
5753
  msgid "If making a request for support, please include this information:"
5754
  msgstr ""
5755
 
5756
- #: admin.php:3462
5757
  msgid "ABORT: Could not find the information on which entities to restore."
5758
  msgstr ""
5759
 
5760
- #: admin.php:3416
5761
  msgid "UpdraftPlus Restoration: Progress"
5762
  msgstr ""
5763
 
5764
- #: admin.php:3368
5765
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5766
  msgstr ""
5767
 
5768
- #: admin.php:3317
5769
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5770
  msgstr ""
5771
 
5772
- #: admin.php:3252
5773
- msgid "Press here to download"
5774
- msgstr ""
5775
-
5776
- #: admin.php:3326
5777
  msgid "Delete this backup set"
5778
  msgstr ""
5779
 
5780
- #: admin.php:2999
5781
  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."
5782
  msgstr ""
5783
 
5784
- #: admin.php:2996
5785
  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."
5786
  msgstr ""
5787
 
5788
- #: admin.php:2994
5789
  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)."
5790
  msgstr ""
5791
 
5792
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5793
- #: methods/openstack-base.php:513 methods/s3.php:799
5794
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5795
  msgstr ""
5796
 
5797
- #: templates/wp-admin/settings/form-contents.php:388
5798
  msgid "Save Changes"
5799
  msgstr ""
5800
 
5801
- #: templates/wp-admin/settings/form-contents.php:365
5802
  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."
5803
  msgstr ""
5804
 
5805
- #: templates/wp-admin/settings/form-contents.php:364
5806
  msgid "Disable SSL entirely where possible"
5807
  msgstr ""
5808
 
5809
- #: templates/wp-admin/settings/form-contents.php:360
5810
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5811
  msgstr ""
5812
 
5813
- #: templates/wp-admin/settings/form-contents.php:360
5814
  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."
5815
  msgstr ""
5816
 
5817
- #: templates/wp-admin/settings/form-contents.php:359
5818
  msgid "Do not verify SSL certificates"
5819
  msgstr ""
5820
 
5821
- #: templates/wp-admin/settings/form-contents.php:355
5822
  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."
5823
  msgstr ""
5824
 
5825
- #: templates/wp-admin/settings/form-contents.php:354
5826
  msgid "Use the server's SSL certificates"
5827
  msgstr ""
5828
 
5829
- #: admin.php:2870
5830
  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."
5831
  msgstr ""
5832
 
5833
- #: admin.php:2870
5834
  msgid "click here"
5835
  msgstr ""
5836
 
5837
- #: admin.php:2870
5838
  msgid "or, to reset this option"
5839
  msgstr ""
5840
 
5841
- #: admin.php:2870
5842
  msgid "Follow this link to attempt to create the directory and set the permissions"
5843
  msgstr ""
5844
 
5845
- #: admin.php:2862
5846
  msgid "Backup directory specified is writable, which is good."
5847
  msgstr ""
5848
 
5849
- #: templates/wp-admin/settings/form-contents.php:335
5850
  msgid "Backup directory"
5851
  msgstr ""
5852
 
5853
- #: templates/wp-admin/settings/form-contents.php:330
5854
  msgid "Delete local backup"
5855
  msgstr ""
5856
 
5857
- #: templates/wp-admin/settings/form-contents.php:310
5858
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5859
  msgstr ""
5860
 
5861
- #: templates/wp-admin/settings/form-contents.php:310
5862
  msgid "Show expert settings"
5863
  msgstr ""
5864
 
5865
- #: templates/wp-admin/settings/form-contents.php:309
5866
  msgid "Expert settings"
5867
  msgstr ""
5868
 
5869
- #: templates/wp-admin/settings/form-contents.php:320
5870
  msgid "Debug mode"
5871
  msgstr ""
5872
 
5873
- #: templates/wp-admin/settings/form-contents.php:305
5874
  msgid "Advanced / Debugging Settings"
5875
  msgstr ""
5876
 
5877
- #: admin.php:597
5878
  msgid "Requesting start of backup..."
5879
  msgstr ""
5880
 
5881
- #: addons/morefiles.php:234 admin.php:613
5882
  msgid "Cancel"
5883
  msgstr ""
5884
 
5885
- #: addons/reporting.php:216 admin.php:3141
5886
  msgid "None"
5887
  msgstr ""
5888
 
@@ -5890,31 +5948,31 @@ msgstr ""
5890
  msgid "Choose your remote storage"
5891
  msgstr ""
5892
 
5893
- #: templates/wp-admin/settings/form-contents.php:203
5894
  msgid "Manually decrypt a database backup file"
5895
  msgstr ""
5896
 
5897
- #: templates/wp-admin/settings/form-contents.php:184
5898
  msgid "Database encryption phrase"
5899
  msgstr ""
5900
 
5901
- #: templates/wp-admin/settings/form-contents.php:282 udaddons/options.php:143
5902
  msgid "Email"
5903
  msgstr ""
5904
 
5905
- #: templates/wp-admin/settings/form-contents.php:174
5906
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5907
  msgstr ""
5908
 
5909
- #: addons/morefiles.php:380 admin.php:2940
5910
  msgid "Exclude these:"
5911
  msgstr ""
5912
 
5913
- #: admin.php:2931
5914
  msgid "Any other directories found inside wp-content"
5915
  msgstr ""
5916
 
5917
- #: templates/wp-admin/settings/form-contents.php:171
5918
  msgid "Include in files backup"
5919
  msgstr ""
5920
 
@@ -5926,44 +5984,44 @@ msgstr ""
5926
  msgid "To fix the time at which a backup should take place,"
5927
  msgstr ""
5928
 
5929
- #: admin.php:2856
5930
  msgid "Monthly"
5931
  msgstr ""
5932
 
5933
- #: admin.php:2855
5934
  msgid "Fortnightly"
5935
  msgstr ""
5936
 
5937
- #: admin.php:2854
5938
  msgid "Weekly"
5939
  msgstr ""
5940
 
5941
- #: admin.php:2853
5942
  msgid "Daily"
5943
  msgstr ""
5944
 
5945
- #: admin.php:620 admin.php:2836
5946
  msgid "Download log file"
5947
  msgstr ""
5948
 
5949
- #: admin.php:2754
5950
  msgid "The folder exists, but your webserver does not have permission to write to it."
5951
  msgstr ""
5952
 
5953
- #: admin.php:2749
5954
  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"
5955
  msgstr ""
5956
 
5957
- #: admin.php:2735
5958
  msgid "The request to the filesystem to create the directory failed."
5959
  msgstr ""
5960
 
5961
- #: addons/migrator.php:2243 admin.php:614 admin.php:2651 admin.php:2684
5962
- #: admin.php:3326 templates/wp-admin/settings/delete-and-restore-modals.php:5
5963
  msgid "Delete"
5964
  msgstr ""
5965
 
5966
- #: admin.php:2591
5967
  msgid "show log"
5968
  msgstr ""
5969
 
@@ -6039,7 +6097,7 @@ msgstr ""
6039
  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"
6040
  msgstr ""
6041
 
6042
- #: addons/morefiles.php:70
6043
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6044
  msgid "%s restoration options:"
6045
  msgstr ""
@@ -6076,7 +6134,7 @@ msgstr ""
6076
  msgid "Delete backup set"
6077
  msgstr ""
6078
 
6079
- #: admin.php:596
6080
  msgid "Download error: the server sent us a response which we did not understand."
6081
  msgstr ""
6082
 
@@ -6086,17 +6144,21 @@ msgstr ""
6086
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6087
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6088
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6089
- #: addons/s3-enhanced.php:127 addons/sftp.php:736 addons/webdav.php:79
6090
- #: admin.php:82 admin.php:588 admin.php:3584 admin.php:3614
6091
- #: methods/remotesend.php:76 methods/remotesend.php:234
6092
- #: methods/updraftvault.php:434 restorer.php:1364
6093
  msgid "Error:"
6094
  msgstr ""
6095
 
6096
- #: admin.php:579 templates/wp-admin/settings/downloading-and-restoring.php:34
6097
  msgid "calculating..."
6098
  msgstr ""
6099
 
 
 
 
 
6100
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6101
  msgid "UpdraftPlus - Upload backup files"
6102
  msgstr ""
@@ -6109,14 +6171,14 @@ msgstr ""
6109
  msgid "Web-server disk space in use by UpdraftPlus"
6110
  msgstr ""
6111
 
6112
- #: addons/google-enhanced.php:72 methods/googledrive.php:146
6113
- #: methods/googledrive.php:363 methods/googledrive.php:386
6114
- #: methods/googledrive.php:415 methods/googledrive.php:422
6115
- #: methods/googledrive.php:432 methods/googledrive.php:438
6116
- #: methods/googledrive.php:440 methods/googledrive.php:903
6117
- #: methods/googledrive.php:915 methods/googledrive.php:931
6118
- #: methods/googledrive.php:935 methods/googledrive.php:946
6119
- #: methods/googledrive.php:956
6120
  msgid "Google Drive"
6121
  msgstr ""
6122
 
@@ -6132,37 +6194,38 @@ msgstr ""
6132
  msgid "More tasks:"
6133
  msgstr ""
6134
 
6135
- #: admin.php:2354
6136
  msgid "Download most recently modified log file"
6137
  msgstr ""
6138
 
6139
- #: admin.php:2313 admin.php:2319 central/bootstrap.php:161
6140
  msgid "(Nothing yet logged)"
6141
  msgstr ""
6142
 
6143
- #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2312
6144
- #: admin.php:2317
6145
  msgid "Last log message"
6146
  msgstr ""
6147
 
6148
- #: addons/migrator.php:218 admin.php:619 admin.php:3317
6149
  #: templates/wp-admin/settings/tab-status.php:30
6150
  msgid "Restore"
6151
  msgstr ""
6152
 
6153
- #: admin.php:448 admin.php:612 templates/wp-admin/settings/tab-status.php:27
6154
  msgid "Backup Now"
6155
  msgstr ""
6156
 
6157
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6158
- #: addons/reporting.php:231 admin.php:233 admin.php:3116 admin.php:3189
6159
- #: admin.php:3668 includes/class-wpadmin-commands.php:138
 
6160
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6161
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6162
  msgid "Database"
6163
  msgstr ""
6164
 
6165
- #: admin.php:229 admin.php:4080
6166
  msgid "Files"
6167
  msgstr ""
6168
 
@@ -6170,11 +6233,11 @@ msgstr ""
6170
  msgid "Next scheduled backups"
6171
  msgstr ""
6172
 
6173
- #: admin.php:209
6174
  msgid "At the same time as the files backup"
6175
  msgstr ""
6176
 
6177
- #: admin.php:199 admin.php:220 admin.php:227
6178
  msgid "Nothing currently scheduled"
6179
  msgstr ""
6180
 
@@ -6186,15 +6249,15 @@ msgstr ""
6186
  msgid "JavaScript warning"
6187
  msgstr ""
6188
 
6189
- #: admin.php:599 admin.php:2381
6190
  msgid "Delete Old Directories"
6191
  msgstr ""
6192
 
6193
- #: admin.php:2126
6194
  msgid "Current limit is:"
6195
  msgstr ""
6196
 
6197
- #: admin.php:2100
6198
  msgid "Your backup has been restored."
6199
  msgstr ""
6200
 
@@ -6206,127 +6269,127 @@ msgstr ""
6206
  msgid "Lead developer's homepage"
6207
  msgstr ""
6208
 
6209
- #: admin.php:4000
6210
  msgid "Your settings have been wiped."
6211
  msgstr ""
6212
 
6213
- #: admin.php:2060
6214
  msgid "Backup directory successfully created."
6215
  msgstr ""
6216
 
6217
- #: admin.php:2053
6218
  msgid "Backup directory could not be created"
6219
  msgstr ""
6220
 
6221
- #: admin.php:2623
6222
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6223
  msgstr ""
6224
 
6225
- #: admin.php:2621
6226
  msgid "Old directories successfully removed."
6227
  msgstr ""
6228
 
6229
- #: admin.php:2618
6230
  msgid "Remove old directories"
6231
  msgstr ""
6232
 
6233
- #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2002
6234
- #: admin.php:2011 admin.php:2020 admin.php:2062 admin.php:2625
6235
  msgid "Return to UpdraftPlus Configuration"
6236
  msgstr ""
6237
 
6238
- #: admin.php:592 admin.php:2002 admin.php:2011 admin.php:2020 admin.php:2062
6239
- #: admin.php:2625 templates/wp-admin/settings/existing-backups-table.php:14
6240
  msgid "Actions"
6241
  msgstr ""
6242
 
6243
- #: admin.php:1991
6244
  msgid "Restore successful!"
6245
  msgstr ""
6246
 
6247
- #: admin.php:1921
6248
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6249
  msgstr ""
6250
 
6251
- #: admin.php:1831
6252
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6253
  msgstr ""
6254
 
6255
- #: admin.php:1712
6256
  msgid "No local copy present."
6257
  msgstr ""
6258
 
6259
- #: admin.php:1709
6260
  msgid "Download in progress"
6261
  msgstr ""
6262
 
6263
- #: admin.php:591 admin.php:1697
6264
  msgid "File ready."
6265
  msgstr ""
6266
 
6267
- #: admin.php:1678
6268
  msgid "Download failed"
6269
  msgstr ""
6270
 
6271
- #: admin.php:589 admin.php:1469 admin.php:3567 class-updraftplus.php:980
6272
- #: class-updraftplus.php:1024 methods/addon-base.php:75
6273
- #: methods/addon-base.php:80 methods/addon-base.php:194
6274
- #: methods/addon-base.php:214 methods/stream-base.php:201 restorer.php:2199
6275
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6276
  msgid "Error"
6277
  msgstr ""
6278
 
6279
- #: admin.php:1497
6280
  msgid "Could not find that job - perhaps it has already finished?"
6281
  msgstr ""
6282
 
6283
- #: admin.php:1489
6284
  msgid "Job deleted"
6285
  msgstr ""
6286
 
6287
- #: admin.php:1573
6288
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6289
  msgstr ""
6290
 
6291
- #: admin.php:663
6292
  msgid "Nothing yet logged"
6293
  msgstr ""
6294
 
6295
- #: admin.php:871
6296
  msgid "Please consult this FAQ if you have problems backing up."
6297
  msgstr ""
6298
 
6299
- #: admin.php:871
6300
  msgid "Your website is hosted using the %s web server."
6301
  msgstr ""
6302
 
6303
- #: admin.php:867
6304
  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."
6305
  msgstr ""
6306
 
6307
- #: admin.php:863
6308
  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."
6309
  msgstr ""
6310
 
6311
- #: admin.php:855 admin.php:859 admin.php:863 admin.php:867 admin.php:871
6312
- #: admin.php:880 admin.php:2987 admin.php:2994 admin.php:2996
6313
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448 methods/ftp.php:284
6314
- #: methods/openstack-base.php:513 methods/s3.php:795 methods/s3.php:799
6315
- #: methods/updraftvault.php:260
6316
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6317
  #: udaddons/updraftplus-addons.php:208
6318
  msgid "Warning"
6319
  msgstr ""
6320
 
6321
- #: admin.php:804
6322
  msgid "Add-Ons / Pro Support"
6323
  msgstr ""
6324
 
6325
- #: admin.php:464 admin.php:800 templates/wp-admin/settings/tab-bar.php:7
6326
  msgid "Settings"
6327
  msgstr ""
6328
 
6329
- #: admin.php:773
6330
  msgid "Allowed Files"
6331
  msgstr ""
6332
 
@@ -6334,7 +6397,7 @@ msgstr ""
6334
  msgid "Could not create %s zip. Consult the log file for more information."
6335
  msgstr ""
6336
 
6337
- #: backup.php:1999
6338
  msgid "Infinite recursion: consult your log for more information"
6339
  msgstr ""
6340
 
@@ -6346,88 +6409,88 @@ msgstr ""
6346
  msgid "Like UpdraftPlus and can spare one minute?"
6347
  msgstr ""
6348
 
6349
- #: addons/azure.php:217 class-updraftplus.php:3660 methods/googledrive.php:838
6350
  msgid "File not found"
6351
  msgstr ""
6352
 
6353
- #: class-updraftplus.php:3571
6354
  msgid "The decryption key used:"
6355
  msgstr ""
6356
 
6357
- #: class-updraftplus.php:3571 class-updraftplus.php:3841 restorer.php:390
6358
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6359
  msgstr ""
6360
 
6361
- #: class-updraftplus.php:3552 class-updraftplus.php:3829 restorer.php:377
6362
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6363
  msgstr ""
6364
 
6365
- #: backup.php:1889
6366
  msgid "Could not open the backup file for writing"
6367
  msgstr ""
6368
 
6369
- #: class-updraftplus.php:3186
6370
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6371
  msgstr ""
6372
 
6373
- #: class-updraftplus.php:3163
6374
  msgid "Could not read the directory"
6375
  msgstr ""
6376
 
6377
- #: admin.php:1749 backup.php:1127 restorer.php:225
6378
  msgid "Backup directory (%s) is not writable, or does not exist."
6379
  msgstr ""
6380
 
6381
- #: backup.php:931
6382
  msgid "WordPress backup is complete"
6383
  msgstr ""
6384
 
6385
- #: class-updraftplus.php:2736
6386
  msgid "The backup attempt has finished, apparently unsuccessfully"
6387
  msgstr ""
6388
 
6389
- #: class-updraftplus.php:2721
6390
  msgid "The backup apparently succeeded and is now complete"
6391
  msgstr ""
6392
 
6393
- #: addons/moredatabase.php:368
6394
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6395
  msgstr ""
6396
 
6397
- #: class-updraftplus.php:2148
6398
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6399
  msgstr ""
6400
 
6401
- #: class-updraftplus.php:1540
6402
  msgid "Others"
6403
  msgstr ""
6404
 
6405
- #: addons/multisite.php:452 class-updraftplus.php:1525
6406
  msgid "Uploads"
6407
  msgstr ""
6408
 
6409
- #: class-updraftplus.php:1524
6410
  msgid "Themes"
6411
  msgstr ""
6412
 
6413
- #: class-updraftplus.php:1523
6414
  msgid "Plugins"
6415
  msgstr ""
6416
 
6417
- #: class-updraftplus.php:394
6418
  msgid "No log files were found."
6419
  msgstr ""
6420
 
6421
- #: admin.php:1632 admin.php:1636 class-updraftplus.php:389
6422
  msgid "The log file could not be read."
6423
  msgstr ""
6424
 
6425
- #: admin.php:887 admin.php:891 admin.php:895 admin.php:899 admin.php:903
6426
- #: class-updraftplus.php:354 class-updraftplus.php:389
6427
- #: class-updraftplus.php:394 class-updraftplus.php:399
6428
  msgid "UpdraftPlus notice:"
6429
  msgstr ""
6430
 
6431
- #: addons/multisite.php:63 addons/multisite.php:660 options.php:42
6432
  msgid "UpdraftPlus Backups"
6433
  msgstr ""
11
  "Language: bs_BA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: methods/updraftvault.php:49
15
+ msgid "UpdraftVault"
16
+ msgstr ""
17
+
18
+ #: includes/updraftplus-notices.php:260
19
+ msgid "get more info"
20
+ msgstr ""
21
+
22
+ #: includes/updraftplus-notices.php:260
23
+ msgid "install"
24
+ msgstr ""
25
+
26
+ #: includes/updraftplus-notices.php:260
27
+ msgid "Switch to UpdraftPlus's free alternative:"
28
+ msgstr ""
29
+
30
+ #: includes/updraftplus-notices.php:260
31
+ msgid "Clef confirms that they are closing down their two factor security plugin."
32
+ msgstr ""
33
+
34
+ #: includes/class-wpadmin-commands.php:467
35
+ msgid "archive"
36
+ msgstr ""
37
+
38
+ #: includes/class-wpadmin-commands.php:458
39
+ msgid "Extra database"
40
+ msgstr ""
41
+
42
+ #: admin.php:3302
43
+ msgid "Press here to download or browse"
44
+ msgstr ""
45
+
46
+ #: admin.php:1018 admin.php:1028
47
+ msgid "Error: invalid path"
48
+ msgstr ""
49
+
50
+ #: admin.php:876
51
+ msgid "An error occurred when fetching storage module options: "
52
+ msgstr ""
53
+
54
+ #: admin.php:705
55
+ msgid "Loading log file"
56
+ msgstr ""
57
+
58
+ #: admin.php:704
59
+ msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
60
+ msgstr ""
61
+
62
+ #: admin.php:703
63
+ msgid "Search"
64
+ msgstr ""
65
+
66
+ #: admin.php:702
67
+ msgid "Select a file to view information about it"
68
+ msgstr ""
69
+
70
+ #: admin.php:701
71
+ msgid "Browsing zip file"
72
+ msgstr ""
73
+
74
+ #: admin.php:671
75
+ msgid "With UpdraftPlus Premium, you can directly download individual files from here."
76
+ msgstr ""
77
+
78
+ #: admin.php:619
79
+ msgid "Browse contents"
80
+ msgstr ""
81
+
82
  #: restorer.php:1629
83
  msgid "Skipped tables:"
84
  msgstr ""
85
 
86
+ #: class-updraftplus.php:4173
87
  msgid "This database backup has the following WordPress tables excluded: %s"
88
  msgstr ""
89
 
90
+ #: admin.php:2319
91
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
92
  msgstr ""
93
 
94
+ #: admin.php:2319
95
  msgid "All WordPress tables will be backed up."
96
  msgstr ""
97
 
98
+ #: admin.php:700
99
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
100
  msgstr ""
101
 
102
+ #: admin.php:700
103
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
104
  msgstr ""
105
 
106
+ #: admin.php:700
107
  msgid "The available memory on the server."
108
  msgstr ""
109
 
110
+ #: admin.php:700
111
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
112
  msgstr ""
113
 
114
+ #: admin.php:700
115
  msgid "The file failed to upload. Please check the following:"
116
  msgstr ""
117
 
118
+ #: admin.php:699
119
  msgid "HTTP code:"
120
  msgstr ""
121
 
122
+ #: admin.php:596
123
  msgid "You have chosen to backup a database, but no tables have been selected"
124
  msgstr ""
125
 
126
+ #: addons/moredatabase.php:575
127
  msgid "tables"
128
  msgstr ""
129
 
130
+ #: addons/moredatabase.php:574
131
  msgid "WordPress database"
132
  msgstr ""
133
 
134
+ #: addons/moredatabase.php:567
135
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
136
  msgstr ""
137
 
282
  msgid "UpdraftPlus"
283
  msgstr ""
284
 
285
+ #: templates/wp-admin/settings/form-contents.php:274
286
  msgid "Recommended: optimize your database with WP-Optimize."
287
  msgstr ""
288
 
305
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
306
  msgstr ""
307
 
308
+ #: addons/morefiles.php:306
 
 
 
 
309
  msgid "Please choose a file or directory"
310
  msgstr ""
311
 
312
+ #: addons/morefiles.php:295
313
  msgid "Confirm"
314
  msgstr ""
315
 
316
+ #: addons/morefiles.php:298
317
  msgid "Go up a directory"
318
  msgstr ""
319
 
320
+ #: addons/morefiles.php:291
321
  msgid "Add directory..."
322
  msgstr ""
323
 
324
+ #: addons/morefiles.php:284 addons/morefiles.php:304
325
  msgid "Edit"
326
  msgstr ""
327
 
328
+ #: addons/morefiles.php:267
329
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
330
  msgstr ""
331
 
605
  msgid "Backup of: %s"
606
  msgstr ""
607
 
608
+ #: methods/googledrive.php:196
609
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
610
  msgstr ""
611
 
612
+ #: methods/dropbox.php:556
613
  msgid "%s de-authentication"
614
  msgstr ""
615
 
616
+ #: methods/dropbox.php:524
617
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
618
  msgstr ""
619
 
620
+ #: methods/dropbox.php:498
621
  msgid "Follow this link to deauthenticate with %s."
622
  msgstr ""
623
 
625
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
626
  msgstr ""
627
 
628
+ #: backup.php:1507
629
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
630
  msgstr ""
631
 
633
  msgid "You have selected a remote storage option which has an authorization step to complete:"
634
  msgstr ""
635
 
636
+ #: admin.php:1440
637
  msgid "Remote files deleted:"
638
  msgstr ""
639
 
640
+ #: admin.php:1439
641
  msgid "Local files deleted:"
642
  msgstr ""
643
 
644
+ #: admin.php:921 admin.php:925 admin.php:933 admin.php:937
645
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
646
  msgstr ""
647
 
648
+ #: admin.php:698
649
  msgid "remote files deleted"
650
  msgstr ""
651
 
652
+ #: admin.php:696
653
  msgid "Complete"
654
  msgstr ""
655
 
656
+ #: admin.php:695
657
  msgid "Do you want to carry out the import?"
658
  msgstr ""
659
 
660
+ #: admin.php:694
661
  msgid "Which was exported on:"
662
  msgstr ""
663
 
664
+ #: admin.php:693
665
  msgid "This will import data from:"
666
  msgstr ""
667
 
668
+ #: admin.php:692
669
  msgid "Importing..."
670
  msgstr ""
671
 
672
+ #: admin.php:689
673
  msgid "You have not yet selected a file to import."
674
  msgstr ""
675
 
676
+ #: admin.php:673
677
  msgid "Your export file will be of your displayed settings, not your saved ones."
678
  msgstr ""
679
 
718
  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"
719
  msgstr ""
720
 
721
+ #: admin.php:2144
722
  msgid "To fix this problem go here."
723
  msgstr ""
724
 
725
+ #: admin.php:2144
726
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
727
  msgstr ""
728
 
729
+ #: admin.php:657
730
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
731
  msgstr ""
732
 
758
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
759
  msgstr ""
760
 
761
+ #: methods/s3.php:1014
762
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
763
  msgstr ""
764
 
765
+ #: methods/s3.php:91
766
  msgid "No settings were found - please go to the Settings tab and check your settings"
767
  msgstr ""
768
 
830
  msgid "Public key was sent to:"
831
  msgstr ""
832
 
833
+ #: backup.php:2079
834
  msgid "Failed to open directory (check the file permissions and ownership): %s"
835
  msgstr ""
836
 
837
+ #: backup.php:2057
838
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
839
  msgstr ""
840
 
880
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
881
  msgstr ""
882
 
883
+ #: methods/googledrive.php:407
884
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
885
  msgstr ""
886
 
887
+ #: methods/ftp.php:390
888
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
889
  msgstr ""
890
 
891
+ #: methods/ftp.php:362
892
  msgid "login"
893
  msgstr ""
894
 
895
+ #: methods/email.php:79
896
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
897
  msgstr ""
898
 
899
+ #: methods/email.php:30
900
  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."
901
  msgstr ""
902
 
903
+ #: class-updraftplus.php:1557
904
  msgid "Size: %s MB"
905
  msgstr ""
906
 
912
  msgid "i.e. you have an account there"
913
  msgstr ""
914
 
915
+ #: templates/wp-admin/settings/form-contents.php:359
916
  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)."
917
  msgstr ""
918
 
920
  msgid "Now"
921
  msgstr ""
922
 
923
+ #: class-updraftplus.php:4037 restorer.php:996
924
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
925
  msgstr ""
926
 
928
  msgid "(tap on an icon to select or unselect)"
929
  msgstr ""
930
 
931
+ #: methods/updraftvault.php:289 methods/updraftvault.php:295
932
+ #: methods/updraftvault.php:301
933
  msgid "%s per year"
934
  msgstr ""
935
 
936
+ #: methods/updraftvault.php:288 methods/updraftvault.php:294
937
+ #: methods/updraftvault.php:300
938
  msgid "or (annual discount)"
939
  msgstr ""
940
 
941
+ #: methods/updraftvault.php:233
942
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
943
  msgstr ""
944
 
945
+ #: class-updraftplus.php:418 class-updraftplus.php:463
946
  msgid "The given file was not found, or could not be read."
947
  msgstr ""
948
 
1042
  msgid "UpdraftCentral Connection"
1043
  msgstr ""
1044
 
1045
+ #: backup.php:849 class-updraftplus.php:2813
1046
  msgid "The backup was aborted by the user"
1047
  msgstr ""
1048
 
1049
+ #: admin.php:4003
1050
  msgid "Your settings have been saved."
1051
  msgstr ""
1052
 
1053
+ #: admin.php:3196
1054
  msgid "Total backup size:"
1055
  msgstr ""
1056
 
1057
+ #: admin.php:2641
1058
  msgid "stop"
1059
  msgstr ""
1060
 
1061
+ #: admin.php:2479
1062
  msgid "The backup has finished running"
1063
  msgstr ""
1064
 
1084
  msgid "calculate"
1085
  msgstr ""
1086
 
1087
+ #: admin.php:672
1088
  msgid "You should save your changes to ensure that they are used for making your backup."
1089
  msgstr ""
1090
 
1091
+ #: admin.php:665
1092
  msgid "We requested to delete the file, but could not understand the server's response"
1093
  msgstr ""
1094
 
1095
+ #: admin.php:664
1096
  msgid "Please enter a valid URL"
1097
  msgstr ""
1098
 
1099
+ #: admin.php:647
1100
  msgid "Saving..."
1101
  msgstr ""
1102
 
1103
+ #: admin.php:610
1104
  msgid "Error: the server sent us a response which we did not understand."
1105
  msgstr ""
1106
 
1107
+ #: admin.php:602
1108
  msgid "Fetching..."
1109
  msgstr ""
1110
 
1112
  msgid "Asia Pacific (Seoul)"
1113
  msgstr ""
1114
 
 
 
 
 
1115
  #: restorer.php:1618
1116
  msgid "Uploads URL:"
1117
  msgstr ""
1118
 
1119
+ #: backup.php:400
1120
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1121
  msgstr ""
1122
 
1128
  msgid "Skipping table %s: this table will not be restored"
1129
  msgstr ""
1130
 
1131
+ #: class-updraftplus.php:4088 restorer.php:1642
1132
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1133
  msgstr ""
1134
 
1135
+ #: class-updraftplus.php:4084
1136
  msgid "Please read this link for important information on this process."
1137
  msgstr ""
1138
 
1139
+ #: class-updraftplus.php:4084
1140
  msgid "It will be imported as a new site."
1141
  msgstr ""
1142
 
1143
+ #: admin.php:2292 templates/wp-admin/notices/horizontal-notice.php:16
1144
  #: templates/wp-admin/notices/horizontal-notice.php:18
1145
  msgid "Dismiss"
1146
  msgstr ""
1147
 
1148
+ #: admin.php:684
1149
  msgid "Please fill in the required information."
1150
  msgstr ""
1151
 
1152
+ #: addons/multisite.php:550
1153
  msgid "Read more..."
1154
  msgstr ""
1155
 
1156
+ #: addons/multisite.php:550
1157
  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."
1158
  msgstr ""
1159
 
1160
+ #: addons/multisite.php:541
1161
  msgid "may include some site-wide data"
1162
  msgstr ""
1163
 
1164
+ #: addons/multisite.php:536
1165
  msgid "All sites"
1166
  msgstr ""
1167
 
1168
+ #: addons/multisite.php:532
1169
  msgid "Which site to restore"
1170
  msgstr ""
1171
 
1172
+ #: addons/multisite.php:368 addons/multisite.php:378
1173
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1174
  msgstr ""
1175
 
1217
  msgid "Call WordPress action:"
1218
  msgstr ""
1219
 
1220
+ #: admin.php:2327
1221
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1222
  msgstr ""
1223
 
1224
+ #: admin.php:3604
1225
  msgid "Skipping: this archive was already restored."
1226
  msgstr ""
1227
 
1228
+ #: templates/wp-admin/settings/form-contents.php:200
1229
  msgid "File Options"
1230
  msgstr ""
1231
 
1253
  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)."
1254
  msgstr ""
1255
 
1256
+ #: admin.php:3885
1257
  msgid "Send this backup to remote storage"
1258
  msgstr ""
1259
 
1260
+ #: admin.php:3883
1261
  msgid "Check out UpdraftPlus Vault."
1262
  msgstr ""
1263
 
1264
+ #: admin.php:3883
1265
  msgid "Not got any remote storage?"
1266
  msgstr ""
1267
 
1268
+ #: admin.php:3883
1269
  msgid "settings"
1270
  msgstr ""
1271
 
1272
+ #: admin.php:3883
1273
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1274
  msgstr ""
1275
 
1276
+ #: admin.php:2325
1277
  msgid "Include any files in the backup"
1278
  msgstr ""
1279
 
1280
+ #: admin.php:2311
1281
  msgid "Include the database in the backup"
1282
  msgstr ""
1283
 
1284
+ #: admin.php:2291
1285
  msgid "Continue restoration"
1286
  msgstr ""
1287
 
1288
+ #: admin.php:2286
1289
  msgid "You have an unfinished restoration operation, begun %s ago."
1290
  msgstr ""
1291
 
1292
+ #: admin.php:2285
1293
  msgid "Unfinished restoration"
1294
  msgstr ""
1295
 
1296
+ #: admin.php:2283
1297
  msgid "%s minutes, %s seconds"
1298
  msgstr ""
1299
 
1300
+ #: admin.php:2230
1301
  msgid "Backup Contents And Schedule"
1302
  msgstr ""
1303
 
1305
  msgid "Premium / Extensions"
1306
  msgstr ""
1307
 
1308
+ #: admin.php:2010 admin.php:2019
1309
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1310
  msgstr ""
1311
 
1312
+ #: addons/morefiles.php:53 admin.php:670
1313
  msgctxt "(verb)"
1314
  msgid "Download"
1315
  msgstr ""
1316
 
1317
+ #: admin.php:595
1318
  msgid "You have chosen to backup files, but no file entities have been selected"
1319
  msgstr ""
1320
 
1321
+ #: admin.php:504
1322
  msgid "Extensions"
1323
  msgstr ""
1324
 
1325
+ #: admin.php:496 templates/wp-admin/settings/tab-bar.php:8
1326
  msgid "Advanced Tools"
1327
  msgstr ""
1328
 
1403
  msgid "Standard"
1404
  msgstr ""
1405
 
1406
+ #: addons/azure.php:523
1407
  msgid "container"
1408
  msgstr ""
1409
 
1410
+ #: addons/azure.php:523
1411
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1412
  msgstr ""
1413
 
1414
+ #: addons/azure.php:522
1415
  msgid "optional"
1416
  msgstr ""
1417
 
1418
+ #: addons/azure.php:522
1419
  msgid "Prefix"
1420
  msgstr ""
1421
 
1422
+ #: addons/azure.php:517
1423
  msgid "See Microsoft's guidelines on container naming by following this link."
1424
  msgstr ""
1425
 
1426
+ #: addons/azure.php:517
1427
  msgid "If the %s does not already exist, then it will be created."
1428
  msgstr ""
1429
 
1430
+ #: addons/azure.php:517
1431
  msgid "Enter the path of the %s you wish to use here."
1432
  msgstr ""
1433
 
1434
+ #: addons/azure.php:506
1435
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1436
  msgstr ""
1437
 
1438
+ #: addons/azure.php:505
1439
  msgid "Account Name"
1440
  msgstr ""
1441
 
1442
+ #: addons/azure.php:505 addons/azure.php:509
1443
  msgid "Azure"
1444
  msgstr ""
1445
 
1446
+ #: addons/azure.php:501
1447
  msgid "Create Azure credentials in your Azure developer console."
1448
  msgstr ""
1449
 
1450
+ #: addons/azure.php:449
1451
  msgid "Could not create the container"
1452
  msgstr ""
1453
 
1454
+ #: addons/azure.php:343
1455
  msgid "Could not access container"
1456
  msgstr ""
1457
 
1458
+ #: class-updraftplus.php:2830
1459
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1460
  msgstr ""
1461
 
1462
+ #: backup.php:1559
1463
  msgid "the options table was not found"
1464
  msgstr ""
1465
 
1466
+ #: backup.php:1557
1467
  msgid "no options or sitemeta table was found"
1468
  msgstr ""
1469
 
1470
+ #: backup.php:1557 backup.php:1559
1471
  msgid "The database backup appears to have failed"
1472
  msgstr ""
1473
 
1474
+ #: backup.php:1431
1475
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1476
  msgstr ""
1477
 
1588
  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)."
1589
  msgstr ""
1590
 
1591
+ #: admin.php:1438
1592
  msgid "Backup sets removed:"
1593
  msgstr ""
1594
 
1595
+ #: admin.php:683
1596
  msgid "Processing..."
1597
  msgstr ""
1598
 
1599
+ #: admin.php:681
1600
  msgid "For backups older than"
1601
  msgstr ""
1602
 
1603
+ #: admin.php:680
1604
  msgid "week(s)"
1605
  msgstr ""
1606
 
1607
+ #: admin.php:679
1608
  msgid "hour(s)"
1609
  msgstr ""
1610
 
1611
+ #: admin.php:678
1612
  msgid "day(s)"
1613
  msgstr ""
1614
 
1615
+ #: admin.php:677
1616
  msgid "in the month"
1617
  msgstr ""
1618
 
1619
+ #: admin.php:676
1620
  msgid "day"
1621
  msgstr ""
1622
 
1636
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1637
  msgstr ""
1638
 
1639
+ #: methods/updraftvault.php:595
1640
  msgid "You do not currently have any UpdraftPlus Vault quota"
1641
  msgstr ""
1642
 
1643
+ #: class-updraftplus.php:4123
1644
  msgid "You must upgrade MySQL to be able to use this database."
1645
  msgstr ""
1646
 
1647
+ #: class-updraftplus.php:4123
1648
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1649
  msgstr ""
1650
 
1651
+ #: admin.php:2129
1652
  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."
1653
  msgstr ""
1654
 
1655
+ #: methods/updraftvault.php:322
1656
  msgid "Don't know your email address, or forgotten your password?"
1657
  msgstr ""
1658
 
1659
+ #: methods/updraftvault.php:315
1660
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1661
  msgstr ""
1662
 
1663
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1664
  msgid "Read the FAQs here."
1665
  msgstr ""
1666
 
1672
  msgid "Server-side encryption"
1673
  msgstr ""
1674
 
1675
+ #: methods/updraftvault.php:604
1676
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1677
  msgstr ""
1678
 
1679
+ #: admin.php:929
1680
  msgid "Go to the remote storage settings in order to connect."
1681
  msgstr ""
1682
 
1683
+ #: admin.php:929
1684
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1685
  msgstr ""
1686
 
1687
+ #: methods/updraftvault.php:304
1688
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1689
  msgstr ""
1690
 
1691
+ #: admin.php:653
1692
  msgid "Update quota count"
1693
  msgstr ""
1694
 
1695
+ #: admin.php:652
1696
  msgid "Counting..."
1697
  msgstr ""
1698
 
1699
+ #: admin.php:651
1700
  msgid "Disconnecting..."
1701
  msgstr ""
1702
 
1703
+ #: admin.php:649
1704
  msgid "Connecting..."
1705
  msgstr ""
1706
 
1707
+ #: methods/updraftvault.php:378 methods/updraftvault.php:447
1708
  msgid "Refresh current status"
1709
  msgstr ""
1710
 
1711
+ #: methods/updraftvault.php:376 methods/updraftvault.php:392
1712
+ #: methods/updraftvault.php:394 methods/updraftvault.php:447
1713
  msgid "Get more quota"
1714
  msgstr ""
1715
 
1716
+ #: methods/updraftvault.php:373 methods/updraftvault.php:389
1717
+ #: methods/updraftvault.php:428
1718
  msgid "Current use:"
1719
  msgstr ""
1720
 
1721
+ #: methods/updraftvault.php:368
1722
  msgid "You can get more quota here"
1723
  msgstr ""
1724
 
1725
+ #: methods/updraftvault.php:368
1726
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1727
  msgstr ""
1728
 
1729
+ #: admin.php:650 methods/updraftvault.php:360
1730
  msgid "Disconnect"
1731
  msgstr ""
1732
 
1733
+ #: methods/updraftvault.php:352
1734
  msgid "Quota:"
1735
  msgstr ""
1736
 
1737
+ #: methods/updraftvault.php:350
1738
  msgid "Vault owner"
1739
  msgstr ""
1740
 
1741
+ #: methods/updraftvault.php:350
1742
  msgid "Well done - there's nothing more needed to set up."
1743
  msgstr ""
1744
 
1745
+ #: methods/updraftvault.php:350
1746
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1747
  msgstr ""
1748
 
1749
+ #: methods/updraftvault.php:346
1750
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1751
  msgstr ""
1752
 
1753
+ #: methods/updraftvault.php:322
1754
  msgid "Go here for help"
1755
  msgstr ""
1756
 
1757
+ #: methods/updraftvault.php:317
1758
  msgid "E-mail"
1759
  msgstr ""
1760
 
1761
+ #: methods/updraftvault.php:310 methods/updraftvault.php:325
1762
  msgid "Back..."
1763
  msgstr ""
1764
 
1765
+ #: methods/updraftvault.php:304
1766
  msgid "Subscriptions can be cancelled at any time."
1767
  msgstr ""
1768
 
1769
+ #: methods/updraftvault.php:287 methods/updraftvault.php:293
1770
+ #: methods/updraftvault.php:299
1771
  msgid "%s per quarter"
1772
  msgstr ""
1773
 
1774
+ #: central/bootstrap.php:542 methods/updraftvault.php:277
1775
+ #: methods/updraftvault.php:307
1776
  msgid "Read more about it here."
1777
  msgstr ""
1778
 
1779
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1780
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1781
  msgstr ""
1782
 
1783
+ #: methods/updraftvault.php:273
1784
  msgid "Already purchased space?"
1785
  msgstr ""
1786
 
1787
+ #: methods/updraftvault.php:270
1788
  msgid "Show the options"
1789
  msgstr ""
1790
 
1791
+ #: methods/updraftvault.php:269
1792
  msgid "First time user?"
1793
  msgstr ""
1794
 
1795
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1796
  msgid "Press a button to get started."
1797
  msgstr ""
1798
 
1799
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1800
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1801
  msgstr ""
1802
 
1803
+ #: methods/updraftvault.php:229
1804
  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."
1805
  msgstr ""
1806
 
1807
+ #: methods/updraftvault.php:226
1808
  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!"
1809
  msgstr ""
1810
 
1811
+ #: methods/updraftvault.php:223
1812
  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."
1813
  msgstr ""
1814
 
1815
+ #: methods/updraftvault.php:77
1816
  msgid "Updraft Vault"
1817
  msgstr ""
1818
 
1819
+ #: addons/azure.php:365 addons/googlecloud.php:693 methods/s3.php:1042
1820
  msgid "Delete failed:"
1821
  msgstr ""
1822
 
1823
+ #: backup.php:3019
1824
  msgid "The zip engine returned the message: %s."
1825
  msgstr ""
1826
 
1844
  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."
1845
  msgstr ""
1846
 
1847
+ #: addons/migrator.php:1742 admin.php:659
1848
  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."
1849
  msgstr ""
1850
 
1912
  msgid "Backup made by %s"
1913
  msgstr ""
1914
 
1915
+ #: methods/addon-base-v2.php:187
1916
  msgid "This storage method does not allow downloading"
1917
  msgstr ""
1918
 
1919
+ #: admin.php:3364
1920
  msgid "(backup set imported from remote location)"
1921
  msgstr ""
1922
 
1936
  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."
1937
  msgstr ""
1938
 
1939
+ #: addons/migrator.php:1770 admin.php:666
1940
  msgid "Testing connection..."
1941
  msgstr ""
1942
 
1943
+ #: admin.php:663
1944
  msgid "Deleting..."
1945
  msgstr ""
1946
 
1947
+ #: admin.php:662
1948
  msgid "key name"
1949
  msgstr ""
1950
 
1951
+ #: admin.php:660
1952
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1953
  msgstr ""
1954
 
1955
+ #: admin.php:657
1956
  msgid "Creating..."
1957
  msgstr ""
1958
 
1976
  msgid "Or, send a backup to another site"
1977
  msgstr ""
1978
 
1979
+ #: addons/migrator.php:1937 admin.php:667
1980
  msgid "Send"
1981
  msgstr ""
1982
 
1983
+ #: addons/migrator.php:1931 admin.php:658
1984
  msgid "Send to site:"
1985
  msgstr ""
1986
 
2012
  msgid "key"
2013
  msgstr ""
2014
 
2015
+ #: methods/ftp.php:336
2016
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2017
  msgstr ""
2018
 
2019
+ #: methods/ftp.php:334
2020
  msgid "Passive mode"
2021
  msgstr ""
2022
 
2023
+ #: methods/ftp.php:329
2024
  msgid "Remote path"
2025
  msgstr ""
2026
 
2027
+ #: methods/ftp.php:324
2028
  msgid "FTP password"
2029
  msgstr ""
2030
 
2031
+ #: methods/ftp.php:319
2032
  msgid "FTP login"
2033
  msgstr ""
2034
 
2035
+ #: methods/ftp.php:314
2036
  msgid "FTP server"
2037
  msgstr ""
2038
 
2044
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2045
  msgstr ""
2046
 
2047
+ #: addons/migrator.php:2180 admin.php:655
2048
  msgid "Add site"
2049
  msgstr ""
2050
 
2051
+ #: admin.php:654
2052
  msgid "Adding..."
2053
  msgstr ""
2054
 
2055
+ #: udaddons/options.php:345
2056
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2057
  msgstr ""
2058
 
2080
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2081
  msgstr ""
2082
 
2083
+ #: admin.php:646 admin.php:672 admin.php:673
2084
  msgid "You have made changes to your settings, and not saved."
2085
  msgstr ""
2086
 
2092
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2093
  msgstr ""
2094
 
2095
+ #: addons/azure.php:501 addons/migrator.php:1757 addons/onedrive.php:961
2096
  msgid "For longer help, including screenshots, follow this link."
2097
  msgstr ""
2098
 
2116
  msgid "Please re-authorize the connection to your %s account."
2117
  msgstr ""
2118
 
2119
+ #: methods/email.php:75
2120
  msgid "configure it here"
2121
  msgstr ""
2122
 
2123
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2124
  msgid "To remove the block, please go here."
2125
  msgstr ""
2126
 
2265
  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)"
2266
  msgstr ""
2267
 
2268
+ #: methods/s3.php:844
2269
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2270
  msgstr ""
2271
 
2281
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2282
  msgstr ""
2283
 
2284
+ #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:568
2285
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2286
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2287
  msgstr ""
2288
 
2289
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2290
  #: udaddons/updraftplus-addons.php:747
2291
  msgid "It appears that your web server's IP Address (%s) is blocked."
2292
  msgstr ""
2293
 
2294
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2295
  #: udaddons/updraftplus-addons.php:747
2296
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2297
  msgstr ""
2342
  msgid "(at same time as files backup)"
2343
  msgstr ""
2344
 
2345
+ #: admin.php:2888
2346
  msgid "No backup has been completed"
2347
  msgstr ""
2348
 
2390
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2391
  msgstr ""
2392
 
2393
+ #: methods/s3.php:138 methods/s3.php:139 methods/s3.php:140 methods/s3.php:148
2394
+ #: methods/s3.php:149 methods/s3.php:150
2395
  msgid "%s Error: Failed to initialise"
2396
  msgstr ""
2397
 
2398
+ #: templates/wp-admin/settings/form-contents.php:249
2399
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2400
  msgid "or"
2401
  msgstr ""
2405
  msgid "or"
2406
  msgstr ""
2407
 
2408
+ #: admin.php:640
2409
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2410
  msgstr ""
2411
 
2412
+ #: addons/sftp.php:380
2413
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2414
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2415
  msgstr ""
2416
 
2417
+ #: addons/sftp.php:343
2418
  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."
2419
  msgstr ""
2420
 
2421
+ #: methods/openstack2.php:156
2422
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2423
  msgid "tenant"
2424
  msgstr ""
2425
 
2426
+ #: methods/openstack2.php:106
2427
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2428
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2429
  msgstr ""
2430
 
2431
+ #: templates/wp-admin/settings/form-contents.php:320
2432
  msgid "your site's admin address"
2433
  msgstr ""
2434
 
2435
+ #: templates/wp-admin/settings/form-contents.php:320
2436
  msgid "Check this box to have a basic report sent to"
2437
  msgstr ""
2438
 
2439
+ #: admin.php:2897
2440
  msgctxt "i.e. Non-automatic"
2441
  msgid "Manual"
2442
  msgstr ""
2450
  msgid "Change Lock Settings"
2451
  msgstr ""
2452
 
2453
+ #: addons/morefiles.php:245
2454
  msgid "Any other file/directory on your server that you wish to back up"
2455
  msgstr ""
2456
 
2457
+ #: admin.php:2146
2458
  msgid "For even more features and personal support, check out "
2459
  msgstr ""
2460
 
2470
  msgid "Database decryption phrase"
2471
  msgstr ""
2472
 
2473
+ #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:645
2474
  msgid "Automatic backup before update"
2475
  msgstr ""
2476
 
2550
  msgid "The admin password has now been removed."
2551
  msgstr ""
2552
 
2553
+ #: addons/morefiles.php:134
2554
  msgid "(learn more about this significant option)"
2555
  msgstr ""
2556
 
2557
+ #: udaddons/options.php:280
2558
  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."
2559
  msgstr ""
2560
 
2561
+ #: admin.php:2479 admin.php:3387
2562
  msgid "View Log"
2563
  msgstr ""
2564
 
2575
  msgid "and retain this many scheduled backups"
2576
  msgstr ""
2577
 
2578
+ #: admin.php:2858
2579
  msgid "incremental backup; base backup: %s"
2580
  msgstr ""
2581
 
2587
  msgid "Upload files into UpdraftPlus."
2588
  msgstr ""
2589
 
2590
+ #: admin.php:880 includes/class-commands.php:363
2591
  #: templates/wp-admin/settings/tab-status.php:22
2592
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2593
  msgstr ""
2594
 
2595
+ #: class-updraftplus.php:4073
2596
  msgid "Backup label:"
2597
  msgstr ""
2598
 
2599
+ #: admin.php:1674
2600
  msgid "Error: unexpected file read fail"
2601
  msgstr ""
2602
 
2603
+ #: backup.php:3025
2604
  msgid "check your log for more details."
2605
  msgstr ""
2606
 
2607
+ #: backup.php:3023
2608
  msgid "your web hosting account appears to be full; please see: %s"
2609
  msgstr ""
2610
 
2611
+ #: backup.php:3021
2612
  msgid "A zip error occurred"
2613
  msgstr ""
2614
 
2616
  msgid "Your label for this backup (optional)"
2617
  msgstr ""
2618
 
2619
+ #: addons/googlecloud.php:822 methods/googledrive.php:902
2620
  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."
2621
  msgstr ""
2622
 
2623
+ #: methods/updraftvault.php:607 udaddons/updraftplus-addons.php:789
2624
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2625
  msgstr ""
2626
 
2627
+ #: methods/updraftvault.php:604 udaddons/updraftplus-addons.php:785
2628
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2629
  msgstr ""
2630
 
2631
+ #: methods/updraftvault.php:544 udaddons/updraftplus-addons.php:655
2632
  msgid "You need to supply both an email address and a password"
2633
  msgstr ""
2634
 
2636
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2637
  msgstr ""
2638
 
2639
+ #: class-updraftplus.php:4092
2640
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2641
  msgstr ""
2642
 
2643
+ #: class-updraftplus.php:4092
2644
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2645
  msgstr ""
2646
 
2668
  msgid "Rows per batch"
2669
  msgstr ""
2670
 
2671
+ #: udaddons/options.php:109
2672
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2673
  msgstr ""
2674
 
2675
+ #: udaddons/options.php:107 udaddons/options.php:109
2676
  msgid "You need to connect to receive future updates to UpdraftPlus."
2677
  msgstr ""
2678
 
2679
+ #: class-updraftplus.php:4065
2680
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2681
  msgstr ""
2682
 
2683
+ #: class-updraftplus.php:4065
2684
  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."
2685
  msgstr ""
2686
 
2687
+ #: class-updraftplus.php:4065
2688
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2689
  msgstr ""
2690
 
2691
+ #: class-updraftplus.php:4065
2692
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2693
  msgstr ""
2694
 
2713
  msgid "UpdraftPlus is on social media - check us out!"
2714
  msgstr ""
2715
 
2716
+ #: admin.php:3448
2717
  msgid "Why am I seeing this?"
2718
  msgstr ""
2719
 
2725
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2726
  msgstr ""
2727
 
2728
+ #: admin.php:1622 admin.php:1634
2729
  msgid "Start backup"
2730
  msgstr ""
2731
 
2732
+ #: class-updraftplus.php:4037 restorer.php:996
2733
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2734
  msgstr ""
2735
 
2736
+ #: admin.php:2802
2737
  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."
2738
  msgstr ""
2739
 
2741
  msgid "Unless you have a problem, you can completely ignore everything here."
2742
  msgstr ""
2743
 
2744
+ #: admin.php:1832
2745
  msgid "This file could not be uploaded"
2746
  msgstr ""
2747
 
2748
+ #: admin.php:1797
2749
  msgid "You will find more information about this in the Settings section."
2750
  msgstr ""
2751
 
2765
  msgid "Memory limit"
2766
  msgstr ""
2767
 
2768
+ #: class-updraftplus.php:4195 restorer.php:1441
2769
  msgid "restoration"
2770
  msgstr ""
2771
 
2773
  msgid "Table to be implicitly dropped: %s"
2774
  msgstr ""
2775
 
2776
+ #: backup.php:844
2777
  msgid "Incremental"
2778
  msgstr ""
2779
 
2780
+ #: backup.php:844
2781
  msgid "Full backup"
2782
  msgstr ""
2783
 
2793
  msgid "Backup succeeded"
2794
  msgstr ""
2795
 
2796
+ #: admin.php:2898 admin.php:2899 admin.php:2900 updraftplus.php:92
2797
  #: updraftplus.php:93
2798
  msgid "Every %s hours"
2799
  msgstr ""
2836
  msgid "Too many database errors have occurred - aborting"
2837
  msgstr ""
2838
 
2839
+ #: backup.php:910
2840
  msgid "read more at %s"
2841
  msgstr ""
2842
 
2843
+ #: backup.php:910
2844
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2845
  msgstr ""
2846
 
2847
+ #: methods/googledrive.php:908
2848
  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."
2849
  msgstr ""
2850
 
2851
+ #: admin.php:3216
2852
  msgid "You have not yet made any backups."
2853
  msgstr ""
2854
 
2855
+ #: templates/wp-admin/settings/form-contents.php:212
2856
  msgid "Database Options"
2857
  msgstr ""
2858
 
2868
  msgid "Free disk space in account:"
2869
  msgstr ""
2870
 
2871
+ #: admin.php:3974 templates/wp-admin/settings/tab-status.php:27
2872
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2873
  msgstr ""
2874
 
2875
+ #: admin.php:480 admin.php:614 admin.php:1487
2876
  #: includes/deprecated-actions.php:30
2877
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2878
  #: templates/wp-admin/settings/tab-bar.php:6
2879
  msgid "Existing Backups"
2880
  msgstr ""
2881
 
2882
+ #: admin.php:472 templates/wp-admin/settings/tab-bar.php:5
2883
  msgid "Current Status"
2884
  msgstr ""
2885
 
2886
+ #: admin.php:885
2887
  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."
2888
  msgstr ""
2889
 
2890
+ #: admin.php:885
2891
  msgid "To make a backup, just press the Backup Now button."
2892
  msgstr ""
2893
 
2894
+ #: admin.php:885
2895
  msgid "Welcome to UpdraftPlus!"
2896
  msgstr ""
2897
 
2963
  msgid "user"
2964
  msgstr ""
2965
 
2966
+ #: class-updraftplus.php:1554
2967
  msgid "External database (%s)"
2968
  msgstr ""
2969
 
2970
+ #: methods/googledrive.php:908
2971
  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."
2972
  msgstr ""
2973
 
2974
+ #: methods/googledrive.php:371
2975
  msgid "failed to access parent folder"
2976
  msgstr ""
2977
 
2978
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2979
+ #: methods/googledrive.php:328
2980
  msgid "However, subsequent access attempts failed:"
2981
  msgstr ""
2982
 
2983
+ #: admin.php:3241
2984
  msgid "External database"
2985
  msgstr ""
2986
 
2987
+ #: templates/wp-admin/settings/form-contents.php:354
2988
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2989
  msgstr ""
2990
 
2991
+ #: templates/wp-admin/settings/form-contents.php:294
2992
  msgid "Back up more databases"
2993
  msgstr ""
2994
 
2995
+ #: templates/wp-admin/settings/form-contents.php:251
2996
  msgid "First, enter the decryption key"
2997
  msgstr ""
2998
 
2999
+ #: templates/wp-admin/settings/form-contents.php:233
3000
  msgid "You can manually decrypt an encrypted database here."
3001
  msgstr ""
3002
 
3003
+ #: templates/wp-admin/settings/form-contents.php:221
3004
  msgid "It can also backup external databases."
3005
  msgstr ""
3006
 
3007
+ #: templates/wp-admin/settings/form-contents.php:221
3008
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3009
  msgstr ""
3010
 
3012
  msgid "use UpdraftPlus Premium"
3013
  msgstr ""
3014
 
3015
+ #: class-updraftplus.php:3955
3016
  msgid "Decryption failed. The database file is encrypted."
3017
  msgstr ""
3018
 
3024
  msgid "An error occurred on the first %s command - aborting run"
3025
  msgstr ""
3026
 
3027
+ #: addons/moredatabase.php:98 backup.php:1372
3028
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3029
  msgstr ""
3030
 
3031
+ #: backup.php:1372
3032
  msgid "database connection attempt failed."
3033
  msgstr ""
3034
 
3036
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3037
  msgstr ""
3038
 
3039
+ #: addons/google-enhanced.php:84
3040
  msgid "In %s, path names are case sensitive."
3041
  msgstr ""
3042
 
3043
+ #: addons/azure.php:523 addons/google-enhanced.php:82 addons/onedrive.php:989
3044
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3045
  msgstr ""
3046
 
3047
+ #: addons/google-enhanced.php:82 addons/googlecloud.php:860
3048
  #: addons/onedrive.php:989
3049
  msgid "e.g. %s"
3050
  msgstr ""
3051
 
3052
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3053
  msgid "If the folder does not already exist, then it will be created."
3054
  msgstr ""
3055
 
3056
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3057
  msgid "Enter the path of the %s folder you wish to use here."
3058
  msgstr ""
3059
 
3060
+ #: addons/azure.php:516 methods/openstack2.php:137
3061
  msgid "Container"
3062
  msgstr ""
3063
 
3064
+ #: methods/openstack2.php:120
3065
  msgid "Leave this blank, and a default will be chosen."
3066
  msgstr ""
3067
 
3068
+ #: methods/openstack2.php:111
3069
  msgid "Tenant"
3070
  msgstr ""
3071
 
3072
+ #: methods/openstack2.php:111
3073
  msgid "Follow this link for more information"
3074
  msgstr ""
3075
 
3076
+ #: methods/openstack2.php:103 methods/openstack2.php:161
3077
  msgid "authentication URI"
3078
  msgstr ""
3079
 
3080
+ #: methods/openstack2.php:98
3081
  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."
3082
  msgstr ""
3083
 
3084
+ #: methods/addon-base-v2.php:204 methods/addon-base-v2.php:224
3085
  msgid "Failed to download %s"
3086
  msgstr ""
3087
 
3088
+ #: methods/addon-base-v2.php:218
3089
  msgid "Failed to download"
3090
  msgstr ""
3091
 
3092
+ #: methods/addon-base-v2.php:116
3093
  msgid "failed to list files"
3094
  msgstr ""
3095
 
3096
+ #: methods/addon-base-v2.php:84 methods/addon-base-v2.php:89
3097
  msgid "Failed to upload %s"
3098
  msgstr ""
3099
 
3100
+ #: methods/dropbox.php:599 methods/dropbox.php:601
3101
  msgid "Success:"
3102
  msgstr ""
3103
 
3104
+ #: addons/onedrive.php:997 methods/dropbox.php:500
3105
  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."
3106
  msgstr ""
3107
 
3108
+ #: addons/onedrive.php:995 methods/dropbox.php:497
3109
  msgid "(You appear to be already authenticated)."
3110
  msgstr ""
3111
 
3112
+ #: methods/dropbox.php:492 methods/dropbox.php:498 methods/dropbox.php:500
3113
  msgid "Dropbox"
3114
  msgstr ""
3115
 
3116
+ #: addons/onedrive.php:994 methods/dropbox.php:492
3117
  msgid "Authenticate with %s"
3118
  msgstr ""
3119
 
3120
+ #: methods/cloudfiles.php:396
3121
  msgid "Error downloading remote file: Failed to download"
3122
  msgstr ""
3123
 
3124
+ #: methods/openstack-base.php:476 methods/openstack-base.php:481
3125
  msgid "Region: %s"
3126
  msgstr ""
3127
 
3128
+ #: methods/openstack-base.php:475
3129
  msgid "%s error - we accessed the container, but failed to create a file within it"
3130
  msgstr ""
3131
 
3132
+ #: methods/openstack-base.php:393
3133
  msgid "The %s object was not found"
3134
  msgstr ""
3135
 
3136
+ #: methods/openstack-base.php:52 methods/openstack-base.php:316
3137
+ #: methods/openstack-base.php:385
3138
  msgid "Could not access %s container"
3139
  msgstr ""
3140
 
3141
+ #: methods/openstack-base.php:44 methods/openstack-base.php:112
3142
+ #: methods/openstack-base.php:119 methods/openstack-base.php:308
3143
+ #: methods/openstack-base.php:373
3144
  msgid "%s error - failed to access the container"
3145
  msgstr ""
3146
 
3147
+ #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:507
3148
+ #: methods/googledrive.php:957
3149
  msgid "Account holder's name: %s."
3150
  msgstr ""
3151
 
3152
+ #: methods/googledrive.php:946
3153
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3154
  msgstr ""
3155
 
3156
+ #: methods/googledrive.php:937
3157
  msgid "It is an ID number internal to Google Drive"
3158
  msgstr ""
3159
 
3160
+ #: methods/googledrive.php:937
3161
  msgid "<strong>This is NOT a folder name</strong>."
3162
  msgstr ""
3163
 
3164
+ #: addons/google-enhanced.php:81 addons/onedrive.php:988
3165
+ #: methods/googledrive.php:933 methods/googledrive.php:943
3166
  msgid "Folder"
3167
  msgstr ""
3168
 
3169
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3170
+ #: methods/googledrive.php:863
3171
  msgid "%s download: failed: file not found"
3172
  msgstr ""
3173
 
3174
+ #: addons/googlecloud.php:579 methods/googledrive.php:348
3175
  msgid "Name: %s."
3176
  msgstr ""
3177
 
3178
+ #: methods/googledrive.php:141
3179
  msgid "Google Drive list files: failed to access parent folder"
3180
  msgstr ""
3181
 
3182
+ #: methods/addon-not-yet-present.php:77 methods/insufficient.php:67
3183
  msgid "Your %s version: %s."
3184
  msgstr ""
3185
 
3186
+ #: methods/addon-not-yet-present.php:76 methods/insufficient.php:66
3187
  msgid "You will need to ask your web hosting company to upgrade."
3188
  msgstr ""
3189
 
3190
+ #: methods/addon-not-yet-present.php:18 methods/insufficient.php:19
3191
  msgid "This remote storage method (%s) requires PHP %s or later."
3192
  msgstr ""
3193
 
3194
+ #: admin.php:3793
3195
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3196
  msgstr ""
3197
 
3205
 
3206
  #: addons/migrator.php:375
3207
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3208
+ #: templates/wp-admin/settings/form-contents.php:241
3209
  msgid "This feature requires %s version %s or later"
3210
  msgstr ""
3211
 
3221
  msgid "Failed to unpack the archive"
3222
  msgstr ""
3223
 
3224
+ #: class-updraftplus.php:1112
3225
  msgid "Error - failed to download the file"
3226
  msgstr ""
3227
 
3241
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3242
  msgstr ""
3243
 
3244
+ #: addons/sftp.php:426
3245
  msgid "password/key"
3246
  msgstr ""
3247
 
3248
+ #: addons/azure.php:509 addons/migrator.php:2198 addons/sftp.php:377
3249
+ #: admin.php:661
3250
  msgid "Key"
3251
  msgstr ""
3252
 
3253
+ #: addons/sftp.php:372
3254
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3255
  msgstr ""
3256
 
3257
+ #: addons/sftp.php:309
3258
  msgid "The key provided was not in a valid format, or was corrupt."
3259
  msgstr ""
3260
 
3261
+ #: addons/sftp.php:48
3262
  msgid "SCP/SFTP password/key"
3263
  msgstr ""
3264
 
3265
+ #: admin.php:3276
3266
  msgid "Files backup (created by %s)"
3267
  msgstr ""
3268
 
3269
+ #: admin.php:3276
3270
  msgid "Files and database WordPress backup (created by %s)"
3271
  msgstr ""
3272
 
3273
+ #: addons/importer.php:261 admin.php:3270 class-updraftplus.php:2612
3274
  msgid "Backup created by: %s."
3275
  msgstr ""
3276
 
3277
+ #: admin.php:3239
3278
  msgid "Database (created by %s)"
3279
  msgstr ""
3280
 
3281
+ #: admin.php:3233 admin.php:3272
3282
  msgid "unknown source"
3283
  msgstr ""
3284
 
3290
  msgid "Upload backup files"
3291
  msgstr ""
3292
 
3293
+ #: admin.php:1876
3294
  msgid "This backup was created by %s, and can be imported."
3295
  msgstr ""
3296
 
3297
+ #: admin.php:914
3298
  msgid "Read this page for a guide to possible causes and how to fix it."
3299
  msgstr ""
3300
 
3301
+ #: admin.php:914
3302
  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."
3303
  msgstr ""
3304
 
3305
+ #: admin.php:626 class-updraftplus.php:2619
3306
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3307
  msgstr ""
3308
 
3309
+ #: admin.php:625
3310
  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."
3311
  msgstr ""
3312
 
3313
+ #: admin.php:625 admin.php:626 class-updraftplus.php:2619
3314
  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))."
3315
  msgstr ""
3316
 
3317
+ #: admin.php:3273 includes/class-wpadmin-commands.php:143 restorer.php:1410
3318
  msgid "Backup created by unknown source (%s) - cannot be restored."
3319
  msgstr ""
3320
 
3326
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3327
  msgstr ""
3328
 
3329
+ #: methods/dropbox.php:285
3330
  msgid "%s returned an unexpected HTTP response: %s"
3331
  msgstr ""
3332
 
3333
+ #: addons/sftp.php:886
3334
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3335
  msgstr ""
3336
 
3337
+ #: methods/cloudfiles.php:221 methods/dropbox.php:266
3338
+ #: methods/openstack-base.php:107
3339
  msgid "No settings were found"
3340
  msgstr ""
3341
 
3342
+ #: class-updraftplus.php:2740
3343
  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."
3344
  msgstr ""
3345
 
3346
+ #: admin.php:592
3347
  msgid "Rescanning remote and local storage for backup sets..."
3348
  msgstr ""
3349
 
3360
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3361
  msgstr ""
3362
 
3363
+ #: addons/morefiles.php:488
3364
  msgid "No backup of location: there was nothing found to back up"
3365
  msgstr ""
3366
 
3367
+ #: addons/moredatabase.php:234 addons/morefiles.php:284
3368
+ #: addons/morefiles.php:305
3369
  msgid "Remove"
3370
  msgstr ""
3371
 
3372
+ #: methods/s3.php:816
3373
  msgid "Other %s FAQs."
3374
  msgstr ""
3375
 
3376
+ #: templates/wp-admin/settings/form-contents.php:354
3377
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3378
  msgstr ""
3379
 
3380
+ #: addons/morefiles.php:442 admin.php:2990
3381
  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."
3382
  msgstr ""
3383
 
3385
  msgid "Custom content type manager plugin data detected: clearing option cache"
3386
  msgstr ""
3387
 
3388
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1441
3389
  msgid "Your hosting company must enable these functions before %s can work."
3390
  msgstr ""
3391
 
3392
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1440
3393
  msgid "Your web server's PHP installation has these functions disabled: %s."
3394
  msgstr ""
3395
 
3396
+ #: methods/ftp.php:288
3397
  msgid "encrypted FTP (explicit encryption)"
3398
  msgstr ""
3399
 
3400
+ #: methods/ftp.php:287
3401
  msgid "encrypted FTP (implicit encryption)"
3402
  msgstr ""
3403
 
3404
+ #: methods/ftp.php:286
3405
  msgid "regular non-encrypted FTP"
3406
  msgstr ""
3407
 
3409
  msgid "Backup created by:"
3410
  msgstr ""
3411
 
3412
+ #: udaddons/options.php:489
3413
  msgid "Available to claim on this site"
3414
  msgstr ""
3415
 
3457
  msgid "Dismiss from main dashboard (for %s weeks)"
3458
  msgstr ""
3459
 
3460
+ #: class-updraftplus.php:4245
3461
  msgid "The attempt to undo the double-compression succeeded."
3462
  msgstr ""
3463
 
3464
+ #: class-updraftplus.php:4222 class-updraftplus.php:4243
3465
  msgid "The attempt to undo the double-compression failed."
3466
  msgstr ""
3467
 
3468
+ #: class-updraftplus.php:4215
3469
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3470
  msgstr ""
3471
 
3473
  msgid "Constants"
3474
  msgstr ""
3475
 
3476
+ #: backup.php:1607
3477
  msgid "Failed to open database file for reading:"
3478
  msgstr ""
3479
 
3480
+ #: backup.php:1420
3481
  msgid "No database tables found"
3482
  msgstr ""
3483
 
3484
+ #: backup.php:1418
3485
  msgid "please wait for the rescheduled attempt"
3486
  msgstr ""
3487
 
3509
  msgid "Errors occurred:"
3510
  msgstr ""
3511
 
3512
+ #: admin.php:3468
3513
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3514
  msgstr ""
3515
 
3516
+ #: templates/wp-admin/settings/form-contents.php:398
3517
  msgid "See this FAQ also."
3518
  msgstr ""
3519
 
3533
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3534
  msgstr ""
3535
 
3536
+ #: admin.php:889 class-updraftplus.php:661
3537
  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)"
3538
  msgstr ""
3539
 
3549
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3550
  msgstr ""
3551
 
3552
+ #: addons/sftp.php:641 addons/sftp.php:644 includes/ftp.class.php:44
3553
  #: includes/ftp.class.php:47
3554
  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."
3555
  msgstr ""
3556
 
3557
+ #: admin.php:3801
3558
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3559
  msgstr ""
3560
 
3561
+ #: admin.php:2054 admin.php:2064
3562
  msgid "Restore failed..."
3563
  msgstr ""
3564
 
3565
+ #: addons/moredatabase.php:130 admin.php:1276
3566
  msgid "Messages:"
3567
  msgstr ""
3568
 
3656
  msgid "Rackspace Cloud Files, enhanced"
3657
  msgstr ""
3658
 
3659
+ #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:143
3660
  msgid "Cloud Files Container"
3661
  msgstr ""
3662
 
3663
+ #: methods/cloudfiles-new.php:138
3664
  msgid "Cloud Files API Key"
3665
  msgstr ""
3666
 
3667
+ #: methods/cloudfiles-new.php:133
3668
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3669
  msgstr ""
3670
 
3671
+ #: methods/cloudfiles-new.php:130
3672
  msgid "Cloud Files Username"
3673
  msgstr ""
3674
 
3675
+ #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:116
3676
  msgid "London (LON)"
3677
  msgstr ""
3678
 
3679
+ #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:115
3680
  msgid "Hong Kong (HKG)"
3681
  msgstr ""
3682
 
3683
+ #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:114
3684
  msgid "Northern Virginia (IAD)"
3685
  msgstr ""
3686
 
3687
+ #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:113
3688
  msgid "Chicago (ORD)"
3689
  msgstr ""
3690
 
3691
+ #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:112
3692
  msgid "Sydney (SYD)"
3693
  msgstr ""
3694
 
3695
+ #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:111
3696
  msgid "Dallas (DFW) (default)"
3697
  msgstr ""
3698
 
3699
+ #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:106
3700
  msgid "Cloud Files Storage Region"
3701
  msgstr ""
3702
 
3703
+ #: methods/cloudfiles-new.php:98
3704
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3705
  msgstr ""
3706
 
3707
+ #: methods/cloudfiles-new.php:96
3708
  msgid "US or UK-based Rackspace Account"
3709
  msgstr ""
3710
 
3711
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:96
3712
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3713
  msgstr ""
3714
 
3715
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3716
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:435
3717
+ #: methods/openstack-base.php:437 methods/openstack-base.php:457
3718
  #: methods/openstack2.php:25
3719
  msgid "Authorisation failed (check your credentials)"
3720
  msgstr ""
3721
 
3722
+ #: methods/updraftvault.php:524 udaddons/options.php:272
3723
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3724
  msgstr ""
3725
 
3726
+ #: admin.php:639 central/bootstrap.php:513
3727
  msgid "Create"
3728
  msgstr ""
3729
 
3730
+ #: admin.php:601
3731
  msgid "Trying..."
3732
  msgstr ""
3733
 
3734
+ #: admin.php:600
3735
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3736
  msgstr ""
3737
 
3738
+ #: class-updraftplus.php:1566
3739
  msgid "(when decrypted)"
3740
  msgstr ""
3741
 
3742
+ #: admin.php:611 admin.php:3743
3743
  msgid "Error data:"
3744
  msgstr ""
3745
 
3746
+ #: admin.php:3419
3747
  msgid "Backup does not exist in the backup history"
3748
  msgstr ""
3749
 
3750
+ #: admin.php:2423
3751
  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."
3752
  msgstr ""
3753
 
3799
  msgid "Email reports"
3800
  msgstr ""
3801
 
3802
+ #: class-updraftplus.php:1562 class-updraftplus.php:1567
3803
  msgid "%s checksum: %s"
3804
  msgstr ""
3805
 
3806
+ #: class-updraftplus.php:1535 class-updraftplus.php:1537
3807
  msgid "files: %s"
3808
  msgstr ""
3809
 
3823
  msgid "Debugging information"
3824
  msgstr ""
3825
 
3826
+ #: addons/reporting.php:194 admin.php:3179
3827
  msgid "Uploaded to:"
3828
  msgstr ""
3829
 
3843
  msgid "Errors / warnings:"
3844
  msgstr ""
3845
 
3846
+ #: addons/morefiles.php:122 addons/morefiles.php:123 addons/reporting.php:155
3847
  msgid "Contains:"
3848
  msgstr ""
3849
 
3863
  msgid "%d errors, %d warnings"
3864
  msgstr ""
3865
 
3866
+ #: addons/onedrive.php:717 methods/dropbox.php:583
3867
  msgid "%s authentication"
3868
  msgstr ""
3869
 
3870
+ #: addons/onedrive.php:717 class-updraftplus.php:366 methods/dropbox.php:556
3871
+ #: methods/dropbox.php:583 methods/dropbox.php:596 methods/dropbox.php:727
3872
  msgid "%s error: %s"
3873
  msgstr ""
3874
 
3875
+ #: addons/googlecloud.php:815 methods/dropbox.php:467
3876
  msgid "%s logo"
3877
  msgstr ""
3878
 
3879
+ #: methods/dropbox.php:199
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
+ #: methods/s3.php:281
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
3887
+ #: methods/email.php:76
3888
  msgid "For more options, use the \"%s\" add-on."
3889
  msgstr ""
3890
 
3891
+ #: methods/email.php:75
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr ""
3894
 
3895
+ #: admin.php:648 methods/updraftvault.php:274 methods/updraftvault.php:319
3896
+ #: udaddons/options.php:251
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3900
+ #: templates/wp-admin/settings/form-contents.php:322
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
+ #: class-updraftplus.php:4025
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3908
+ #: addons/reporting.php:438 admin.php:590
3909
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3910
  msgstr ""
3911
 
3912
+ #: addons/reporting.php:438 admin.php:589
3913
  msgid "When the Email storage method is enabled, also send the entire backup"
3914
  msgstr ""
3915
 
3916
+ #: addons/reporting.php:153 backup.php:945
3917
  msgid "Latest status:"
3918
  msgstr ""
3919
 
3920
+ #: backup.php:944
3921
  msgid "Backup contains:"
3922
  msgstr ""
3923
 
3924
+ #: backup.php:901
3925
  msgid "Backed up: %s"
3926
  msgstr ""
3927
 
3928
+ #: addons/reporting.php:236 backup.php:895
3929
  msgid "The log file has been attached to this email."
3930
  msgstr ""
3931
 
3932
+ #: backup.php:859
3933
  msgid "Unknown/unexpected error - please raise a support request"
3934
  msgstr ""
3935
 
3936
+ #: backup.php:856
3937
  msgid "Database only (files were not part of this particular schedule)"
3938
  msgstr ""
3939
 
3940
+ #: backup.php:856
3941
  msgid "Database (files backup has not completed)"
3942
  msgstr ""
3943
 
3944
+ #: backup.php:853
3945
  msgid "Files only (database was not part of this particular schedule)"
3946
  msgstr ""
3947
 
3948
+ #: backup.php:853
3949
  msgid "Files (database backup has not completed)"
3950
  msgstr ""
3951
 
3952
+ #: admin.php:253 backup.php:851
3953
  msgid "Files and database"
3954
  msgstr ""
3955
 
3956
+ #: options.php:184
3957
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3958
  msgstr ""
3959
 
3960
+ #: options.php:184
3961
  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>."
3962
  msgstr ""
3963
 
3964
+ #: options.php:184
3965
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3966
  msgstr ""
3967
 
3968
+ #: options.php:184
3969
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3970
  msgstr ""
3971
 
3972
+ #: options.php:184
3973
  msgid "UpdraftPlus warning:"
3974
  msgstr ""
3975
 
3976
+ #: udaddons/options.php:495
3977
  msgid "(or connect using the form on this page if you have already purchased it)"
3978
  msgstr ""
3979
 
3980
+ #: udaddons/options.php:481
3981
  msgid "please follow this link to update the plugin in order to activate it"
3982
  msgstr ""
3983
 
3984
+ #: udaddons/options.php:478
3985
  msgid "please follow this link to update the plugin in order to get it"
3986
  msgstr ""
3987
 
3988
+ #: udaddons/options.php:468 udaddons/options.php:470
3989
  msgid "latest"
3990
  msgstr ""
3991
 
3992
+ #: udaddons/options.php:466
3993
  msgid "Your version: %s"
3994
  msgstr ""
3995
 
3996
+ #: udaddons/options.php:464
3997
  msgid "You've got it"
3998
  msgstr ""
3999
 
4000
+ #: udaddons/options.php:430
4001
  msgid "UpdraftPlus Support"
4002
  msgstr ""
4003
 
4004
+ #: udaddons/options.php:388
4005
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4006
  msgstr ""
4007
 
4008
+ #: udaddons/options.php:377 udaddons/updraftplus-addons.php:256
4009
  msgid "UpdraftPlus Addons"
4010
  msgstr ""
4011
 
4012
+ #: udaddons/options.php:101
4013
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4014
  msgstr ""
4015
 
4016
+ #: methods/updraftvault.php:597 methods/updraftvault.php:615
4017
  #: udaddons/updraftplus-addons.php:795
4018
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4019
  msgstr ""
4020
 
4021
+ #: methods/updraftvault.php:611 udaddons/updraftplus-addons.php:792
4022
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4023
  msgstr ""
4024
 
4025
+ #: methods/updraftvault.php:570 udaddons/updraftplus-addons.php:752
4026
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4027
  msgstr ""
4028
 
4034
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4035
  msgstr ""
4036
 
4037
+ #: methods/email.php:76 templates/wp-admin/settings/form-contents.php:303
4038
  #: templates/wp-admin/settings/tab-addons.php:200
4039
  msgid "Reporting"
4040
  msgstr ""
4041
 
4042
+ #: admin.php:4154
4043
  msgid "Options (raw)"
4044
  msgstr ""
4045
 
4046
+ #: addons/reporting.php:436 admin.php:588
4047
  msgid "Send a report only when there are warnings/errors"
4048
  msgstr ""
4049
 
4055
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4056
  msgstr ""
4057
 
4058
+ #: templates/wp-admin/settings/form-contents.php:207
4059
  msgid "See also the \"More Files\" add-on from our shop."
4060
  msgstr ""
4061
 
4062
+ #: backup.php:3012 class-updraftplus.php:674
4063
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4064
  msgstr ""
4065
 
4066
+ #: class-updraftplus.php:658
4067
  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)"
4068
  msgstr ""
4069
 
4070
+ #: udaddons/options.php:554
4071
  msgid "Manage Addons"
4072
  msgstr ""
4073
 
4074
+ #: udaddons/options.php:496
4075
  msgid "Buy It"
4076
  msgstr ""
4077
 
4078
+ #: udaddons/options.php:495
4079
  msgid "Get it from the UpdraftPlus.Com Store"
4080
  msgstr ""
4081
 
4082
+ #: udaddons/options.php:489 udaddons/options.php:491
4083
  msgid "activate it on this site"
4084
  msgstr ""
4085
 
4086
+ #: udaddons/options.php:491
4087
  msgid "You have an inactive purchase"
4088
  msgstr ""
4089
 
4090
+ #: udaddons/options.php:481
4091
  msgid "Assigned to this site"
4092
  msgstr ""
4093
 
4094
+ #: udaddons/options.php:478
4095
  msgid "Available for this site (via your all-addons purchase)"
4096
  msgstr ""
4097
 
4098
+ #: udaddons/options.php:472
4099
  msgid "(apparently a pre-release or withdrawn release)"
4100
  msgstr ""
4101
 
4102
+ #: udaddons/options.php:432
4103
  msgid "Go here"
4104
  msgstr ""
4105
 
4106
+ #: udaddons/options.php:432
4107
  msgid "Need to get support?"
4108
  msgstr ""
4109
 
4110
+ #: udaddons/options.php:414
4111
  msgid "An error occurred when trying to retrieve your add-ons."
4112
  msgstr ""
4113
 
4114
+ #: udaddons/options.php:347
4115
  msgid "An unknown response was received. Response was:"
4116
  msgstr ""
4117
 
4118
+ #: udaddons/options.php:346
4119
  msgid "Claim not granted - your account login details were wrong"
4120
  msgstr ""
4121
 
4122
+ #: udaddons/options.php:344
4123
  msgid "Please wait whilst we make the claim..."
4124
  msgstr ""
4125
 
4126
+ #: udaddons/options.php:297
4127
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4128
  msgstr ""
4129
 
4130
+ #: udaddons/options.php:288
4131
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4132
  msgstr ""
4133
 
4134
+ #: udaddons/options.php:279
4135
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4136
  msgstr ""
4137
 
4138
+ #: udaddons/options.php:278
4139
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4140
  msgstr ""
4141
 
4142
+ #: udaddons/options.php:249
4143
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4144
  msgstr ""
4145
 
4146
+ #: udaddons/options.php:190
4147
  msgid "Forgotten your details?"
4148
  msgstr ""
4149
 
4150
+ #: udaddons/options.php:179
4151
  msgid "Not yet got an account (it's free)? Go get one!"
4152
  msgstr ""
4153
 
4154
+ #: udaddons/options.php:148
4155
  msgid "Connect with your UpdraftPlus.Com account"
4156
  msgstr ""
4157
 
4158
+ #: udaddons/options.php:127
4159
  msgid "Your web server's version of PHP is too old ("
4160
  msgstr ""
4161
 
4162
+ #: udaddons/options.php:121
4163
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4164
  msgstr ""
4165
 
4166
+ #: udaddons/options.php:120
4167
  msgid "Go here to begin installing it."
4168
  msgstr ""
4169
 
4170
+ #: udaddons/options.php:120
4171
  msgid "UpdraftPlus is not yet installed."
4172
  msgstr ""
4173
 
4174
+ #: udaddons/options.php:117
4175
  msgid "Go here to activate it."
4176
  msgstr ""
4177
 
4178
+ #: udaddons/options.php:116
4179
  msgid "UpdraftPlus is not yet activated."
4180
  msgstr ""
4181
 
4182
+ #: udaddons/options.php:107 udaddons/options.php:109
4183
  msgid "Go here to connect."
4184
  msgstr ""
4185
 
4186
+ #: udaddons/options.php:107
4187
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4188
  msgstr ""
4189
 
4190
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4191
  msgid "Without it, encryption will be a lot slower."
4192
  msgstr ""
4193
 
4194
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4195
  msgid "Your web-server does not have the %s module installed."
4196
  msgstr ""
4197
 
4198
+ #: addons/googlecloud.php:898 methods/googledrive.php:953
4199
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4200
  msgstr ""
4201
 
4203
  msgid "Drop backup files here"
4204
  msgstr ""
4205
 
4206
+ #: admin.php:599
4207
  msgid "The web server returned an error code (try again, or check your web server logs)"
4208
  msgstr ""
4209
 
4210
+ #: admin.php:597
4211
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4212
  msgstr ""
4213
 
4214
+ #: admin.php:594
4215
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4216
  msgstr ""
4217
 
4219
  msgid "Site home:"
4220
  msgstr ""
4221
 
4222
+ #: addons/morestorage.php:79
4223
  msgid "Remote Storage Options"
4224
  msgstr ""
4225
 
4231
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4232
  msgstr ""
4233
 
4234
+ #: addons/azure.php:350 methods/stream-base.php:121 methods/stream-base.php:126
4235
  msgid "Upload failed"
4236
  msgstr ""
4237
 
4239
  msgid "You can send a backup to more than one destination with an add-on."
4240
  msgstr ""
4241
 
4242
+ #: admin.php:2641
4243
  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."
4244
  msgstr ""
4245
 
4246
+ #: admin.php:2539
4247
  msgid "(%s%%, file %s of %s)"
4248
  msgstr ""
4249
 
4252
  msgid "Read more about how this works..."
4253
  msgstr ""
4254
 
4255
+ #: addons/sftp.php:486
4256
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4257
  msgstr ""
4258
 
4259
+ #: addons/sftp.php:484
4260
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4261
  msgstr ""
4262
 
4263
+ #: addons/sftp.php:403
4264
  msgid "Use SCP instead of SFTP"
4265
  msgstr ""
4266
 
4267
+ #: addons/sftp.php:47
4268
  msgid "SCP/SFTP user setting"
4269
  msgstr ""
4270
 
4271
+ #: addons/sftp.php:46
4272
  msgid "SCP/SFTP host setting"
4273
  msgstr ""
4274
 
4275
+ #: methods/email.php:60
4276
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4277
  msgstr ""
4278
 
4279
+ #: methods/email.php:47
4280
  msgid "Backup is of: %s."
4281
  msgstr ""
4282
 
4283
+ #: admin.php:687
4284
  msgid "%s settings test result:"
4285
  msgstr ""
4286
 
4287
+ #: admin.php:3337 admin.php:3339
4288
  msgid "(Not finished)"
4289
  msgstr ""
4290
 
4291
+ #: admin.php:3339
4292
  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."
4293
  msgstr ""
4294
 
4295
+ #: templates/wp-admin/settings/form-contents.php:381
4296
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4297
  msgstr ""
4298
 
4299
+ #: templates/wp-admin/settings/form-contents.php:381
4300
  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)."
4301
  msgstr ""
4302
 
4303
+ #: admin.php:2636
4304
  msgid "Job ID: %s"
4305
  msgstr ""
4306
 
4307
+ #: admin.php:2621
4308
  msgid "last activity: %ss ago"
4309
  msgstr ""
4310
 
4311
+ #: admin.php:2620
4312
  msgid "next resumption: %d (after %ss)"
4313
  msgstr ""
4314
 
4315
+ #: admin.php:2603 central/bootstrap.php:405 central/bootstrap.php:412
4316
+ #: methods/updraftvault.php:354 methods/updraftvault.php:434
4317
  msgid "Unknown"
4318
  msgstr ""
4319
 
4320
+ #: admin.php:2553
4321
  msgid "Backup finished"
4322
  msgstr ""
4323
 
4324
+ #: admin.php:2548
4325
  msgid "Waiting until scheduled time to retry because of errors"
4326
  msgstr ""
4327
 
4328
+ #: admin.php:2544
4329
  msgid "Pruning old backup sets"
4330
  msgstr ""
4331
 
4332
+ #: admin.php:2532
4333
  msgid "Uploading files to remote storage"
4334
  msgstr ""
4335
 
4336
+ #: admin.php:2601
4337
  msgid "Encrypted database"
4338
  msgstr ""
4339
 
4340
+ #: admin.php:2593
4341
  msgid "Encrypting database"
4342
  msgstr ""
4343
 
4344
+ #: admin.php:2567
4345
  msgid "Created database backup"
4346
  msgstr ""
4347
 
4348
+ #: admin.php:2580
4349
  msgid "table: %s"
4350
  msgstr ""
4351
 
4352
+ #: admin.php:2578
4353
  msgid "Creating database backup"
4354
  msgstr ""
4355
 
4356
+ #: admin.php:2526
4357
  msgid "Created file backup zips"
4358
  msgstr ""
4359
 
4360
+ #: admin.php:2513
4361
  msgid "Creating file backup zips"
4362
  msgstr ""
4363
 
4364
+ #: admin.php:2508
4365
  msgid "Backup begun"
4366
  msgstr ""
4367
 
4368
+ #: admin.php:2351
4369
  msgid "Backups in progress:"
4370
  msgstr ""
4371
 
4372
+ #: admin.php:893
4373
  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."
4374
  msgstr ""
4375
 
4385
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4386
  msgstr ""
4387
 
4388
+ #: class-updraftplus.php:2837
4389
  msgid "The backup has not finished; a resumption is scheduled"
4390
  msgstr ""
4391
 
4392
+ #: class-updraftplus.php:1807
4393
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4394
  msgstr ""
4395
 
4396
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4397
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4398
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4399
+ #: methods/googledrive.php:229
4400
  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)."
4401
  msgstr ""
4402
 
4403
+ #: admin.php:2174
4404
  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)."
4405
  msgstr ""
4406
 
4407
+ #: addons/autobackup.php:1006 admin.php:641
4408
  msgid "Proceed with update"
4409
  msgstr ""
4410
 
4457
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4458
  msgstr ""
4459
 
4460
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4461
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4462
  msgstr ""
4463
 
4464
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4465
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4466
  msgstr ""
4467
 
4468
+ #: addons/morefiles.php:183
4469
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4470
  msgstr ""
4471
 
4472
+ #: addons/morefiles.php:173
4473
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4474
  msgstr ""
4475
 
4482
  msgid "Support"
4483
  msgstr ""
4484
 
4485
+ #: class-updraftplus.php:4178
4486
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4487
  msgstr ""
4488
 
4489
+ #: class-updraftplus.php:4170
4490
  msgid "This database backup is missing core WordPress tables: %s"
4491
  msgstr ""
4492
 
4493
+ #: class-updraftplus.php:4058
4494
  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."
4495
  msgstr ""
4496
 
4497
+ #: class-updraftplus.php:3974
4498
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4499
  msgstr ""
4500
 
4501
+ #: addons/autobackup.php:556 admin.php:857
4502
  msgid "Update Theme"
4503
  msgstr ""
4504
 
4505
+ #: addons/autobackup.php:505 admin.php:853
4506
  msgid "Update Plugin"
4507
  msgstr ""
4508
 
4509
+ #: addons/autobackup.php:985 admin.php:726 includes/updraftplus-notices.php:171
4510
  msgid "Be safe with an automatic backup"
4511
  msgstr ""
4512
 
4514
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4515
  msgstr ""
4516
 
4517
+ #: admin.php:2126
4518
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4519
  msgstr ""
4520
 
4521
+ #: admin.php:635
4522
  msgid "The file was uploaded."
4523
  msgstr ""
4524
 
4525
+ #: admin.php:634
4526
  msgid "Unknown server response status:"
4527
  msgstr ""
4528
 
4529
+ #: admin.php:633
4530
  msgid "Unknown server response:"
4531
  msgstr ""
4532
 
4533
+ #: admin.php:632
4534
  msgid "This decryption key will be attempted:"
4535
  msgstr ""
4536
 
4537
+ #: admin.php:631
4538
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4539
  msgstr ""
4540
 
4541
+ #: admin.php:630
4542
  msgid "Upload error"
4543
  msgstr ""
4544
 
4545
+ #: admin.php:629
4546
  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)."
4547
  msgstr ""
4548
 
4549
+ #: admin.php:628
4550
  msgid "Upload error:"
4551
  msgstr ""
4552
 
4553
+ #: admin.php:627
4554
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4555
  msgstr ""
4556
 
4557
+ #: admin.php:618
4558
  msgid "Download to your computer"
4559
  msgstr ""
4560
 
4561
+ #: admin.php:617
4562
  msgid "Delete from your web server"
4563
  msgstr ""
4564
 
4565
+ #: methods/s3.php:776
4566
  msgid "Examples of S3-compatible storage providers:"
4567
  msgstr ""
4568
 
4569
+ #: admin.php:3693
4570
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4571
  msgstr ""
4572
 
4573
+ #: admin.php:3310
4574
  msgid "You appear to be missing one or more archives from this multi-archive set."
4575
  msgstr ""
4576
 
4577
+ #: admin.php:3307
4578
  msgid "(%d archive(s) in set)."
4579
  msgstr ""
4580
 
4581
+ #: templates/wp-admin/settings/form-contents.php:358
4582
  msgid "Split archives every:"
4583
  msgstr ""
4584
 
4586
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4587
  msgstr ""
4588
 
4589
+ #: admin.php:608
4590
  msgid "Warnings:"
4591
  msgstr ""
4592
 
4593
+ #: admin.php:607
4594
  msgid "Error: the server sent an empty response."
4595
  msgstr ""
4596
 
4597
+ #: admin.php:1887
4598
  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?"
4599
  msgstr ""
4600
 
4630
  msgid "No such backup set exists"
4631
  msgstr ""
4632
 
4633
+ #: admin.php:1164
4634
  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"
4635
  msgstr ""
4636
 
4646
  msgid "Moving unpacked backup into place..."
4647
  msgstr ""
4648
 
4649
+ #: backup.php:2716 backup.php:2972
4650
  msgid "Failed to open the zip file (%s) - %s"
4651
  msgstr ""
4652
 
4653
+ #: addons/morefiles.php:161
4654
  msgid "WordPress root directory server path: %s"
4655
  msgstr ""
4656
 
4657
+ #: methods/s3.php:821
4658
  msgid "%s end-point"
4659
  msgstr ""
4660
 
4661
+ #: methods/s3.php:783
4662
  msgid "... and many more!"
4663
  msgstr ""
4664
 
4666
  msgid "S3 (Compatible)"
4667
  msgstr ""
4668
 
4669
+ #: admin.php:3614
4670
  msgid "File is not locally present - needs retrieving from remote storage"
4671
  msgstr ""
4672
 
4673
+ #: admin.php:3601
4674
  msgid "Looking for %s archive: file name: %s"
4675
  msgstr ""
4676
 
4677
+ #: admin.php:3562
4678
  msgid "Final checks"
4679
  msgstr ""
4680
 
4681
+ #: templates/wp-admin/settings/form-contents.php:364
4682
  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)."
4683
  msgstr ""
4684
 
4685
+ #: templates/wp-admin/settings/form-contents.php:248
4686
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4687
  msgstr ""
4688
 
4689
+ #: admin.php:2979
4690
  msgid "Your wp-content directory server path: %s"
4691
  msgstr ""
4692
 
4693
+ #: admin.php:624
4694
  msgid "Raw backup history"
4695
  msgstr ""
4696
 
4698
  msgid "Show raw backup and file list"
4699
  msgstr ""
4700
 
4701
+ #: admin.php:606
4702
  msgid "Processing files - please wait..."
4703
  msgstr ""
4704
 
4705
+ #: admin.php:3745 templates/wp-admin/settings/downloading-and-restoring.php:29
4706
  msgid "Please consult this FAQ for help on what to do about it."
4707
  msgstr ""
4708
 
4710
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4711
  msgstr ""
4712
 
4713
+ #: class-updraftplus.php:3982
4714
  msgid "Failed to open database file."
4715
  msgstr ""
4716
 
4717
+ #: admin.php:4124
4718
  msgid "Known backups (raw)"
4719
  msgstr ""
4720
 
4738
  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."
4739
  msgstr ""
4740
 
4741
+ #: admin.php:3634
4742
  msgid "file is size:"
4743
  msgstr ""
4744
 
4745
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4746
+ #: addons/migrator.php:369 admin.php:893 admin.php:2131 backup.php:3019
4747
  #: updraftplus.php:147
4748
  msgid "Go here for more information."
4749
  msgstr ""
4750
 
4751
+ #: admin.php:605
4752
  msgid "Some files are still downloading or being processed - please wait."
4753
  msgstr ""
4754
 
4755
+ #: class-updraftplus.php:4030 class-updraftplus.php:4048
4756
  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."
4757
  msgstr ""
4758
 
4764
  msgid "Enter in format HH:MM (e.g. 14:22)."
4765
  msgstr ""
4766
 
4767
+ #: methods/ftp.php:116
4768
  msgid "%s upload failed"
4769
  msgstr ""
4770
 
4771
+ #: methods/ftp.php:89 methods/ftp.php:140 methods/ftp.php:244
4772
  msgid "%s login failure"
4773
  msgstr ""
4774
 
4775
+ #: methods/dropbox.php:410
4776
  msgid "You do not appear to be authenticated with %s"
4777
  msgstr ""
4778
 
4779
+ #: methods/dropbox.php:377
4780
  msgid "Failed to access %s when deleting (see log file for more)"
4781
  msgstr ""
4782
 
4783
+ #: methods/dropbox.php:369
4784
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4785
  msgstr ""
4786
 
4787
+ #: methods/dropbox.php:104
4788
  msgid "Dropbox error: %s (see log file for more)"
4789
  msgstr ""
4790
 
4791
+ #: methods/cloudfiles.php:409
4792
  msgid "Error - failed to download the file from %s"
4793
  msgstr ""
4794
 
4795
+ #: methods/cloudfiles.php:405
4796
  msgid "Error - no such file exists at %s"
4797
  msgstr ""
4798
 
4799
+ #: addons/azure.php:216 methods/addon-base-v2.php:218
4800
+ #: methods/cloudfiles.php:379 methods/cloudfiles.php:396
4801
+ #: methods/googledrive.php:823 methods/openstack-base.php:407
4802
+ #: methods/stream-base.php:262 methods/stream-base.php:269
4803
+ #: methods/stream-base.php:282
4804
  msgid "%s Error"
4805
  msgstr ""
4806
 
4807
+ #: methods/cloudfiles.php:206 methods/openstack-base.php:82
4808
  msgid "%s error - failed to upload file"
4809
  msgstr ""
4810
 
4811
+ #: class-updraftplus.php:1004 methods/cloudfiles.php:198
4812
  msgid "%s error - failed to re-assemble chunks"
4813
  msgstr ""
4814
 
4815
+ #: methods/cloudfiles.php:82 methods/cloudfiles.php:86
4816
+ #: methods/cloudfiles.php:227 methods/cloudfiles.php:272
4817
+ #: methods/cloudfiles.php:323 methods/cloudfiles.php:327
4818
+ #: methods/openstack-base.php:40 methods/openstack-base.php:304
4819
+ #: methods/openstack-base.php:369 methods/openstack-base.php:441
4820
+ #: methods/openstack-base.php:444 methods/openstack-base.php:461
4821
+ #: methods/openstack-base.php:466
4822
  msgid "%s authentication failed"
4823
  msgstr ""
4824
 
4825
+ #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1832
4826
+ #: admin.php:1879 admin.php:1887 class-updraftplus.php:789
4827
+ #: class-updraftplus.php:795 class-updraftplus.php:3953
4828
+ #: class-updraftplus.php:3955 class-updraftplus.php:4088
4829
+ #: class-updraftplus.php:4123 methods/googledrive.php:289 restorer.php:944
4830
  msgid "Error: %s"
4831
  msgstr ""
4832
 
4833
+ #: admin.php:2916
4834
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4835
  msgstr ""
4836
 
4837
+ #: admin.php:2914
4838
  msgid "Backup directory specified does <b>not</b> exist."
4839
  msgstr ""
4840
 
4841
+ #: admin.php:2648 admin.php:2870 class-updraftplus.php:4030
4842
+ #: class-updraftplus.php:4048
4843
  msgid "Warning: %s"
4844
  msgstr ""
4845
 
4847
  msgid "Last backup job run:"
4848
  msgstr ""
4849
 
4850
+ #: backup.php:2738
4851
  msgid "A very large file was encountered: %s (size: %s Mb)"
4852
  msgstr ""
4853
 
4854
+ #: backup.php:2112 backup.php:2144
4855
  msgid "%s: unreadable file - could not be backed up"
4856
  msgstr ""
4857
 
4858
+ #: backup.php:1507
4859
  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"
4860
  msgstr ""
4861
 
4862
+ #: backup.php:1626
4863
  msgid "An error occurred whilst closing the final database file"
4864
  msgstr ""
4865
 
4866
+ #: backup.php:886
4867
  msgid "Warnings encountered:"
4868
  msgstr ""
4869
 
4870
+ #: class-updraftplus.php:2825
4871
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4872
  msgstr ""
4873
 
4874
+ #: class-updraftplus.php:687
4875
  msgid "Your free disk space is very low - only %s Mb remain"
4876
  msgstr ""
4877
 
4903
  msgid "Processed plugin:"
4904
  msgstr ""
4905
 
4906
+ #: addons/sftp.php:75
4907
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4908
  msgstr ""
4909
 
4910
+ #: addons/sftp.php:35
4911
  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."
4912
  msgstr ""
4913
 
4914
+ #: methods/s3.php:797
4915
  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."
4916
  msgstr ""
4917
 
4918
+ #: methods/s3.php:1035
4919
  msgid "Please check your access credentials."
4920
  msgstr ""
4921
 
4922
+ #: addons/s3-enhanced.php:172 methods/s3.php:1013
4923
  msgid "The error reported by %s was:"
4924
  msgstr ""
4925
 
4935
  msgid "Cannot create new tables, so skipping this command (%s)"
4936
  msgstr ""
4937
 
4938
+ #: class-updraftplus.php:4099 restorer.php:1648
4939
  msgid "Site information:"
4940
  msgstr ""
4941
 
4943
  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."
4944
  msgstr ""
4945
 
4946
+ #: addons/migrator.php:325 admin.php:2126 class-updraftplus.php:4092
4947
  #: restorer.php:1970
4948
  msgid "Warning:"
4949
  msgstr ""
4950
 
4951
+ #: class-updraftplus.php:4084 restorer.php:162
4952
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4953
  msgstr ""
4954
 
4955
+ #: admin.php:3589
4956
  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."
4957
  msgstr ""
4958
 
4959
+ #: admin.php:3035 methods/updraftvault.php:258
4960
  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."
4961
  msgstr ""
4962
 
4963
+ #: admin.php:642
4964
  msgid "Close"
4965
  msgstr ""
4966
 
4967
+ #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:598
4968
+ #: methods/remotesend.php:64 methods/remotesend.php:72
4969
+ #: methods/remotesend.php:213 methods/remotesend.php:230
4970
  msgid "Unexpected response:"
4971
  msgstr ""
4972
 
4973
+ #: addons/reporting.php:434 admin.php:593
4974
  msgid "To send to more than one address, separate each address with a comma."
4975
  msgstr ""
4976
 
4977
+ #: admin.php:622
4978
  msgid "PHP information"
4979
  msgstr ""
4980
 
5010
  msgid "Also delete from remote storage"
5011
  msgstr ""
5012
 
5013
+ #: admin.php:2378
5014
  msgid "Latest UpdraftPlus.com news:"
5015
  msgstr ""
5016
 
5027
  msgid "News"
5028
  msgstr ""
5029
 
5030
+ #: admin.php:1318 includes/class-wpadmin-commands.php:444
5031
  msgid "Backup set not found"
5032
  msgstr ""
5033
 
5045
  msgid "Blog link"
5046
  msgstr ""
5047
 
5048
+ #: admin.php:686
5049
  msgid "Testing %s Settings..."
5050
  msgstr ""
5051
 
5053
  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."
5054
  msgstr ""
5055
 
5056
+ #: admin.php:909
5057
  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."
5058
  msgstr ""
5059
 
5060
+ #: admin.php:909
5061
  msgid "Notice"
5062
  msgstr ""
5063
 
5064
+ #: backup.php:868
5065
  msgid "Errors encountered:"
5066
  msgstr ""
5067
 
5068
+ #: admin.php:591
5069
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5070
  msgstr ""
5071
 
5072
+ #: admin.php:604
5073
  msgid "Begun looking for this entity"
5074
  msgstr ""
5075
 
5076
+ #: addons/dropbox-folders.php:33
5077
  msgid "Store at"
5078
  msgstr ""
5079
 
5089
  msgid "Time taken (seconds):"
5090
  msgstr ""
5091
 
5092
+ #: addons/migrator.php:1113 admin.php:609
5093
  msgid "Errors:"
5094
  msgstr ""
5095
 
5158
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5159
  msgstr ""
5160
 
5161
+ #: addons/multisite.php:624
5162
  msgid "Blog uploads"
5163
  msgstr ""
5164
 
5165
+ #: addons/migrator.php:369 addons/multisite.php:617
5166
  msgid "Must-use plugins"
5167
  msgstr ""
5168
 
5169
+ #: addons/multisite.php:191
5170
  msgid "You do not have permission to access this page."
5171
  msgstr ""
5172
 
5173
+ #: addons/multisite.php:177 udaddons/options.php:232
5174
  msgid "You do not have sufficient permissions to access this page."
5175
  msgstr ""
5176
 
5177
+ #: addons/multisite.php:171
5178
  msgid "Multisite Install"
5179
  msgstr ""
5180
 
5182
  msgid "starting from next time it is"
5183
  msgstr ""
5184
 
5185
+ #: addons/sftp.php:431
5186
  msgid "Failure: Port must be an integer."
5187
  msgstr ""
5188
 
5189
+ #: methods/ftp.php:366 methods/openstack2.php:151
5190
  msgid "password"
5191
  msgstr ""
5192
 
5193
+ #: addons/sftp.php:422 methods/openstack2.php:146
5194
  msgid "username"
5195
  msgstr ""
5196
 
5197
+ #: addons/sftp.php:418
5198
  msgid "host name"
5199
  msgstr ""
5200
 
5201
+ #: addons/sftp.php:396
5202
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5203
  msgstr ""
5204
 
5205
+ #: addons/sftp.php:394
5206
  msgid "Directory path"
5207
  msgstr ""
5208
 
5209
+ #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:369
5210
+ #: addons/webdav.php:69 methods/openstack2.php:131 methods/updraftvault.php:318
5211
+ #: udaddons/options.php:152
5212
  msgid "Password"
5213
  msgstr ""
5214
 
5215
+ #: addons/sftp.php:355 addons/webdav.php:83
5216
  msgid "Port"
5217
  msgstr ""
5218
 
5219
+ #: addons/moredatabase.php:237 addons/sftp.php:348 addons/webdav.php:75
5220
  msgid "Host"
5221
  msgstr ""
5222
 
5223
+ #: addons/sftp.php:281
5224
  msgid "%s Error: Failed to download"
5225
  msgstr ""
5226
 
5227
+ #: addons/sftp.php:461
5228
  msgid "Check your file permissions: Could not successfully create and enter:"
5229
  msgstr ""
5230
 
5231
+ #: addons/sftp.php:46 addons/sftp.php:47 addons/sftp.php:48
5232
  msgid "No %s found"
5233
  msgstr ""
5234
 
5235
+ #: addons/sftp.php:35
5236
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5237
  msgstr ""
5238
 
5239
+ #: addons/sftp.php:35
5240
  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."
5241
  msgstr ""
5242
 
5243
+ #: addons/morefiles.php:622
5244
  msgid "No backup of %s directories: there was nothing found to back up"
5245
  msgstr ""
5246
 
5247
+ #: addons/morefiles.php:269
5248
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5249
  msgstr ""
5250
 
5251
+ #: addons/morefiles.php:267
5252
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5253
  msgstr ""
5254
 
5255
+ #: addons/morefiles.php:246
5256
  msgid "More Files"
5257
  msgstr ""
5258
 
5259
+ #: addons/morefiles.php:160
5260
  msgid "WordPress core (including any additions to your WordPress root directory)"
5261
  msgstr ""
5262
 
5263
+ #: addons/morefiles.php:153
5264
  msgid "The above files comprise everything in a WordPress installation."
5265
  msgstr ""
5266
 
5267
+ #: addons/morefiles.php:134
5268
  msgid "Over-write wp-config.php"
5269
  msgstr ""
5270
 
5271
+ #: addons/morefiles.php:130 addons/morefiles.php:622
5272
+ #: includes/class-wpadmin-commands.php:461
5273
  msgid "WordPress Core"
5274
  msgstr ""
5275
 
5276
+ #: methods/addon-base-v2.php:303 methods/stream-base.php:312
5277
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5278
  msgstr ""
5279
 
5280
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5281
+ #: addons/googlecloud.php:666 addons/sftp.php:448 admin.php:2702 admin.php:2737
5282
+ #: admin.php:2746 methods/addon-base-v2.php:293 methods/stream-base.php:298
5283
  msgid "Failed"
5284
  msgstr ""
5285
 
5287
  msgid "WebDAV URL"
5288
  msgstr ""
5289
 
5290
+ #: methods/stream-base.php:282
5291
  msgid "Local write failed: Failed to download"
5292
  msgstr ""
5293
 
5294
+ #: methods/stream-base.php:269
5295
  msgid "Error opening remote file: Failed to download"
5296
  msgstr ""
5297
 
5298
+ #: methods/stream-base.php:103 methods/stream-base.php:107
5299
  msgid "Chunk %s: A %s error occurred"
5300
  msgstr ""
5301
 
5302
+ #: addons/googlecloud.php:278 addons/sftp.php:44 methods/addon-base-v2.php:65
5303
+ #: methods/addon-base-v2.php:106 methods/addon-base-v2.php:138
5304
+ #: methods/addon-base-v2.php:194 methods/addon-base-v2.php:273
5305
+ #: methods/ftp.php:31 methods/googledrive.php:130 methods/stream-base.php:27
5306
+ #: methods/stream-base.php:141 methods/stream-base.php:147
5307
+ #: methods/stream-base.php:181 methods/stream-base.php:246
5308
  msgid "No %s settings were found"
5309
  msgstr ""
5310
 
5311
+ #: methods/ftp.php:388
5312
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5313
  msgstr ""
5314
 
5315
+ #: methods/ftp.php:385
5316
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5317
  msgstr ""
5318
 
5319
+ #: methods/ftp.php:376
5320
  msgid "Failure: we did not successfully log in with those credentials."
5321
  msgstr ""
5322
 
5323
+ #: methods/ftp.php:358
5324
  msgid "Failure: No server details were given."
5325
  msgstr ""
5326
 
5327
+ #: methods/ftp.php:330
5328
  msgid "Needs to already exist"
5329
  msgstr ""
5330
 
5331
+ #: methods/ftp.php:310
5332
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5333
  msgstr ""
5334
 
5335
+ #: methods/ftp.php:310
5336
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5337
  msgstr ""
5338
 
5339
+ #: addons/onedrive.php:755 methods/dropbox.php:614
5340
  msgid "Your %s account name: %s"
5341
  msgstr ""
5342
 
5343
+ #: methods/dropbox.php:604 methods/dropbox.php:631
5344
  msgid "though part of the returned information was not as expected - your mileage may vary"
5345
  msgstr ""
5346
 
5347
+ #: methods/dropbox.php:599 methods/dropbox.php:601
5348
  msgid "you have authenticated your %s account"
5349
  msgstr ""
5350
 
5351
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5352
  msgid "there's an add-on for that."
5353
  msgstr ""
5354
 
5355
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5356
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5357
  msgstr ""
5358
 
5359
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5360
  msgid "Backups are saved in"
5361
  msgstr ""
5362
 
5363
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5364
  msgid "Need to use sub-folders?"
5365
  msgstr ""
5366
 
5367
+ #: methods/dropbox.php:197 methods/dropbox.php:218 methods/dropbox.php:234
5368
  msgid "error: failed to upload file to %s (see log file for more)"
5369
  msgstr ""
5370
 
5371
+ #: methods/dropbox.php:82 methods/dropbox.php:99
5372
  msgid "You do not appear to be authenticated with Dropbox"
5373
  msgstr ""
5374
 
5375
+ #: methods/s3.php:1030
5376
  msgid "The communication with %s was not encrypted."
5377
  msgstr ""
5378
 
5379
+ #: methods/s3.php:1028
5380
  msgid "The communication with %s was encrypted."
5381
  msgstr ""
5382
 
5383
+ #: addons/googlecloud.php:689 methods/s3.php:1025
5384
  msgid "We accessed the bucket, and were able to create files within it."
5385
  msgstr ""
5386
 
5387
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5388
+ #: methods/s3.php:1035
5389
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5390
  msgstr ""
5391
 
5392
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5393
+ #: methods/s3.php:1035
5394
  msgid "Failure"
5395
  msgstr ""
5396
 
5397
+ #: methods/s3.php:1011
5398
  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)."
5399
  msgstr ""
5400
 
5401
+ #: addons/s3-enhanced.php:145 methods/openstack2.php:117 methods/s3.php:1005
5402
  msgid "Region"
5403
  msgstr ""
5404
 
5405
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:987
5406
  msgid "Failure: No bucket details were given."
5407
  msgstr ""
5408
 
5409
+ #: methods/s3.php:965
5410
  msgid "API secret"
5411
  msgstr ""
5412
 
5413
+ #: methods/s3.php:858
5414
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5415
  msgstr ""
5416
 
5417
+ #: methods/s3.php:857
5418
  msgid "%s location"
5419
  msgstr ""
5420
 
5421
+ #: methods/s3.php:853
5422
  msgid "%s secret key"
5423
  msgstr ""
5424
 
5425
+ #: methods/s3.php:849
5426
  msgid "%s access key"
5427
  msgstr ""
5428
 
5429
+ #: methods/s3.php:814
5430
  msgid "If you see errors about SSL certificates, then please go here for help."
5431
  msgstr ""
5432
 
5433
+ #: methods/s3.php:812
5434
  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."
5435
  msgstr ""
5436
 
5437
+ #: methods/s3.php:446 methods/s3.php:620 methods/s3.php:722
5438
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5439
  msgstr ""
5440
 
5441
+ #: methods/s3.php:705 methods/s3.php:751
5442
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5443
  msgstr ""
5444
 
5445
+ #: methods/s3.php:424
5446
  msgid "%s re-assembly error (%s): (see log file for more)"
5447
  msgstr ""
5448
 
5449
+ #: methods/s3.php:420
5450
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5451
  msgstr ""
5452
 
5453
+ #: methods/s3.php:404
5454
  msgid "%s chunk %s: upload failed"
5455
  msgstr ""
5456
 
5457
+ #: methods/s3.php:394
5458
  msgid "%s error: file %s was shortened unexpectedly"
5459
  msgstr ""
5460
 
5461
+ #: methods/s3.php:371
5462
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5463
  msgstr ""
5464
 
5465
+ #: methods/email.php:71
5466
  msgid "Note:"
5467
  msgstr ""
5468
 
5469
+ #: methods/email.php:45
5470
  msgid "WordPress Backup"
5471
  msgstr ""
5472
 
5473
+ #: methods/cloudfiles.php:547 methods/openstack-base.php:480
5474
  msgid "We accessed the container, and were able to create files within it."
5475
  msgstr ""
5476
 
5477
+ #: methods/cloudfiles.php:543
5478
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5479
  msgstr ""
5480
 
5481
+ #: methods/cloudfiles.php:516 methods/openstack-base.php:424
5482
  msgid "Failure: No container details were given."
5483
  msgstr ""
5484
 
5485
+ #: addons/moredatabase.php:238 addons/sftp.php:362 addons/webdav.php:63
5486
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:496
5487
+ #: methods/openstack2.php:125
5488
  msgid "Username"
5489
  msgstr ""
5490
 
5491
+ #: methods/cloudfiles-new.php:153 methods/cloudfiles.php:491 methods/s3.php:961
5492
  msgid "API key"
5493
  msgstr ""
5494
 
5495
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5496
+ #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:418
5497
+ #: addons/sftp.php:422 addons/sftp.php:426 addons/webdav.php:103 admin.php:662
5498
+ #: methods/addon-base-v2.php:286 methods/cloudfiles-new.php:153
5499
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:491
5500
+ #: methods/cloudfiles.php:496 methods/ftp.php:362 methods/ftp.php:366
5501
+ #: methods/openstack2.php:146 methods/openstack2.php:151
5502
+ #: methods/openstack2.php:156 methods/openstack2.php:161 methods/s3.php:961
5503
+ #: methods/s3.php:965
5504
  msgid "Failure: No %s was given."
5505
  msgstr ""
5506
 
5507
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5508
+ #: methods/openstack-base.php:517 methods/s3.php:801
5509
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5510
  msgstr ""
5511
 
5512
+ #: methods/cloudfiles.php:477
5513
  msgid "Cloud Files container"
5514
  msgstr ""
5515
 
5516
+ #: methods/cloudfiles.php:473
5517
  msgid "Cloud Files API key"
5518
  msgstr ""
5519
 
5520
+ #: methods/cloudfiles.php:469
5521
  msgid "Cloud Files username"
5522
  msgstr ""
5523
 
5524
+ #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:100
5525
+ #: methods/cloudfiles.php:453
5526
  msgid "UK"
5527
  msgstr ""
5528
 
5529
+ #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:99
5530
+ #: methods/cloudfiles.php:452
5531
  msgid "US (default)"
5532
  msgstr ""
5533
 
5534
+ #: methods/cloudfiles.php:449
5535
  msgid "US or UK Cloud"
5536
  msgstr ""
5537
 
5538
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5539
+ #: methods/openstack2.php:98
5540
  msgid "Also, you should read this important FAQ."
5541
  msgstr ""
5542
 
5543
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5544
  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."
5545
  msgstr ""
5546
 
5547
+ #: addons/sftp.php:409 admin.php:685 methods/addon-base-v2.php:252
5548
+ #: methods/backup-module.php:186 methods/cloudfiles.php:483
5549
+ #: methods/openstack-base.php:528 methods/s3.php:863
5550
+ #: methods/stream-base.php:220
5551
  msgid "Test %s Settings"
5552
  msgstr ""
5553
 
5554
+ #: methods/openstack-base.php:407
5555
  msgid "Error downloading remote file: Failed to download ("
5556
  msgstr ""
5557
 
5558
+ #: class-updraftplus.php:1044 class-updraftplus.php:1088
5559
+ #: methods/cloudfiles.php:379 methods/stream-base.php:262
5560
  msgid "Error opening local file: Failed to download"
5561
  msgstr ""
5562
 
5563
+ #: methods/cloudfiles.php:205
5564
  msgid "Cloud Files error - failed to upload file"
5565
  msgstr ""
5566
 
5567
+ #: addons/sftp.php:135 addons/sftp.php:147 methods/cloudfiles.php:134
5568
+ #: methods/cloudfiles.php:176 methods/openstack-base.php:77
5569
+ #: methods/openstack-base.php:266 methods/s3.php:339 methods/s3.php:351
5570
+ #: methods/s3.php:352
5571
  msgid "%s Error: Failed to upload"
5572
  msgstr ""
5573
 
5574
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5575
+ #: class-updraftplus.php:906 methods/cloudfiles.php:117
5576
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5577
  msgid "%s Error: Failed to open local file"
5578
  msgstr ""
5579
 
5580
+ #: methods/cloudfiles.php:90 methods/cloudfiles.php:331
5581
+ #: methods/cloudfiles.php:350
5582
  msgid "Cloud Files error - failed to create and access the container"
5583
  msgstr ""
5584
 
5585
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5586
+ #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:526
5587
+ #: methods/cloudfiles.php:529 methods/cloudfiles.php:532
5588
  msgid "Cloud Files authentication failed"
5589
  msgstr ""
5590
 
5591
+ #: addons/googlecloud.php:907 methods/googledrive.php:963
5592
  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."
5593
  msgstr ""
5594
 
5595
+ #: addons/googlecloud.php:896 methods/googledrive.php:952
5596
  msgid "Authenticate with Google"
5597
  msgstr ""
5598
 
5599
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5600
+ #: methods/googledrive.php:922
5601
  msgid "Client Secret"
5602
  msgstr ""
5603
 
5604
+ #: addons/googlecloud.php:842 methods/googledrive.php:919
5605
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5606
  msgstr ""
5607
 
5608
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5609
+ #: methods/googledrive.php:918
5610
  msgid "Client ID"
5611
  msgstr ""
5612
 
5613
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5614
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5615
  msgstr ""
5616
 
5617
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5618
  msgid "Select 'Web Application' as the application type."
5619
  msgstr ""
5620
 
5621
+ #: addons/googlecloud.php:826 methods/googledrive.php:906
5622
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5623
  msgstr ""
5624
 
5625
+ #: methods/addon-base-v2.php:240 methods/cloudfiles.php:425
5626
+ #: methods/dropbox.php:468 methods/ftp.php:305 methods/googledrive.php:891
5627
+ #: methods/openstack-base.php:507 methods/s3.php:773
5628
+ #: methods/stream-base.php:213
5629
  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."
5630
  msgstr ""
5631
 
5632
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5633
+ #: addons/googlecloud.php:709 methods/googledrive.php:445
5634
+ #: methods/googledrive.php:446
5635
  msgid "Account is not authorized."
5636
  msgstr ""
5637
 
5638
+ #: methods/googledrive.php:371 methods/googledrive.php:417
5639
+ #: methods/googledrive.php:423 methods/googledrive.php:425
5640
+ #: methods/stream-base.php:197
5641
  msgid "Failed to upload to %s"
5642
  msgstr ""
5643
 
5644
+ #: methods/googledrive.php:400
5645
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5646
  msgstr ""
5647
 
5648
+ #: methods/googledrive.php:497
5649
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5650
  msgstr ""
5651
 
5652
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5653
+ #: methods/googledrive.php:348
5654
  msgid "you have authenticated your %s account."
5655
  msgstr ""
5656
 
5657
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5658
+ #: addons/onedrive.php:793 addons/sftp.php:481 methods/addon-base-v2.php:300
5659
+ #: methods/cloudfiles.php:547 methods/googledrive.php:348
5660
+ #: methods/openstack-base.php:480 methods/s3.php:1025
5661
+ #: methods/stream-base.php:309
5662
  msgid "Success"
5663
  msgstr ""
5664
 
5665
+ #: addons/onedrive.php:747 methods/dropbox.php:642 methods/dropbox.php:651
5666
+ #: methods/googledrive.php:322
5667
  msgid "Your %s quota usage: %s %% used, %s available"
5668
  msgstr ""
5669
 
5670
+ #: addons/googlecloud.php:390 methods/googledrive.php:295
5671
  msgid "Authorization failed"
5672
  msgstr ""
5673
 
5674
+ #: addons/googlecloud.php:382 methods/googledrive.php:287
5675
  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."
5676
  msgstr ""
5677
 
5678
+ #: methods/addon-not-yet-present.php:62
5679
  msgid "follow this link to get it"
5680
  msgstr ""
5681
 
5682
+ #: methods/addon-not-yet-present.php:62
5683
  msgid "%s support is available as an add-on"
5684
  msgstr ""
5685
 
5686
+ #: methods/addon-not-yet-present.php:27 methods/addon-not-yet-present.php:39
5687
+ #: methods/addon-not-yet-present.php:46 methods/addon-not-yet-present.php:55
5688
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5689
  msgstr ""
5690
 
5693
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5694
  msgstr ""
5695
 
5696
+ #: addons/migrator.php:1770 admin.php:2705 admin.php:2739 admin.php:2743
5697
+ #: admin.php:3619 admin.php:3632 restorer.php:2203 restorer.php:2309
5698
  msgid "OK"
5699
  msgstr ""
5700
 
5718
  msgid "Old table prefix:"
5719
  msgstr ""
5720
 
5721
+ #: addons/reporting.php:65 addons/reporting.php:152 backup.php:942
5722
+ #: class-updraftplus.php:4025
5723
  msgid "Backup of:"
5724
  msgstr ""
5725
 
5795
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5796
  msgstr ""
5797
 
5798
+ #: admin.php:3640 admin.php:3641
5799
  msgid "Could not find one of the files for restoration"
5800
  msgstr ""
5801
 
5802
+ #: admin.php:3735
5803
  msgid "Error message"
5804
  msgstr ""
5805
 
5806
+ #: admin.php:3637
5807
  msgid "The backup records do not contain information about the proper size of this file."
5808
  msgstr ""
5809
 
5810
+ #: admin.php:3629
5811
  msgid "Archive is expected to be size:"
5812
  msgstr ""
5813
 
5814
+ #: admin.php:3513
5815
  msgid "If making a request for support, please include this information:"
5816
  msgstr ""
5817
 
5818
+ #: admin.php:3512
5819
  msgid "ABORT: Could not find the information on which entities to restore."
5820
  msgstr ""
5821
 
5822
+ #: admin.php:3466
5823
  msgid "UpdraftPlus Restoration: Progress"
5824
  msgstr ""
5825
 
5826
+ #: admin.php:3418
5827
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5828
  msgstr ""
5829
 
5830
+ #: admin.php:3367
5831
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5832
  msgstr ""
5833
 
5834
+ #: admin.php:3376
 
 
 
 
5835
  msgid "Delete this backup set"
5836
  msgstr ""
5837
 
5838
+ #: admin.php:3047
5839
  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."
5840
  msgstr ""
5841
 
5842
+ #: admin.php:3044
5843
  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."
5844
  msgstr ""
5845
 
5846
+ #: admin.php:3042
5847
  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)."
5848
  msgstr ""
5849
 
5850
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5851
+ #: methods/openstack-base.php:517 methods/s3.php:801
5852
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5853
  msgstr ""
5854
 
5855
+ #: templates/wp-admin/settings/form-contents.php:421
5856
  msgid "Save Changes"
5857
  msgstr ""
5858
 
5859
+ #: templates/wp-admin/settings/form-contents.php:398
5860
  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."
5861
  msgstr ""
5862
 
5863
+ #: templates/wp-admin/settings/form-contents.php:397
5864
  msgid "Disable SSL entirely where possible"
5865
  msgstr ""
5866
 
5867
+ #: templates/wp-admin/settings/form-contents.php:393
5868
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5869
  msgstr ""
5870
 
5871
+ #: templates/wp-admin/settings/form-contents.php:393
5872
  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."
5873
  msgstr ""
5874
 
5875
+ #: templates/wp-admin/settings/form-contents.php:392
5876
  msgid "Do not verify SSL certificates"
5877
  msgstr ""
5878
 
5879
+ #: templates/wp-admin/settings/form-contents.php:388
5880
  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."
5881
  msgstr ""
5882
 
5883
+ #: templates/wp-admin/settings/form-contents.php:387
5884
  msgid "Use the server's SSL certificates"
5885
  msgstr ""
5886
 
5887
+ #: admin.php:2918
5888
  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."
5889
  msgstr ""
5890
 
5891
+ #: admin.php:2918
5892
  msgid "click here"
5893
  msgstr ""
5894
 
5895
+ #: admin.php:2918
5896
  msgid "or, to reset this option"
5897
  msgstr ""
5898
 
5899
+ #: admin.php:2918
5900
  msgid "Follow this link to attempt to create the directory and set the permissions"
5901
  msgstr ""
5902
 
5903
+ #: admin.php:2910
5904
  msgid "Backup directory specified is writable, which is good."
5905
  msgstr ""
5906
 
5907
+ #: templates/wp-admin/settings/form-contents.php:368
5908
  msgid "Backup directory"
5909
  msgstr ""
5910
 
5911
+ #: templates/wp-admin/settings/form-contents.php:363
5912
  msgid "Delete local backup"
5913
  msgstr ""
5914
 
5915
+ #: templates/wp-admin/settings/form-contents.php:343
5916
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5917
  msgstr ""
5918
 
5919
+ #: templates/wp-admin/settings/form-contents.php:343
5920
  msgid "Show expert settings"
5921
  msgstr ""
5922
 
5923
+ #: templates/wp-admin/settings/form-contents.php:342
5924
  msgid "Expert settings"
5925
  msgstr ""
5926
 
5927
+ #: templates/wp-admin/settings/form-contents.php:353
5928
  msgid "Debug mode"
5929
  msgstr ""
5930
 
5931
+ #: templates/wp-admin/settings/form-contents.php:338
5932
  msgid "Advanced / Debugging Settings"
5933
  msgstr ""
5934
 
5935
+ #: admin.php:621
5936
  msgid "Requesting start of backup..."
5937
  msgstr ""
5938
 
5939
+ #: addons/morefiles.php:294 admin.php:637
5940
  msgid "Cancel"
5941
  msgstr ""
5942
 
5943
+ #: addons/reporting.php:216 admin.php:3191
5944
  msgid "None"
5945
  msgstr ""
5946
 
5948
  msgid "Choose your remote storage"
5949
  msgstr ""
5950
 
5951
+ #: templates/wp-admin/settings/form-contents.php:236
5952
  msgid "Manually decrypt a database backup file"
5953
  msgstr ""
5954
 
5955
+ #: templates/wp-admin/settings/form-contents.php:217
5956
  msgid "Database encryption phrase"
5957
  msgstr ""
5958
 
5959
+ #: templates/wp-admin/settings/form-contents.php:315 udaddons/options.php:150
5960
  msgid "Email"
5961
  msgstr ""
5962
 
5963
+ #: templates/wp-admin/settings/form-contents.php:207
5964
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5965
  msgstr ""
5966
 
5967
+ #: addons/morefiles.php:440 admin.php:2988
5968
  msgid "Exclude these:"
5969
  msgstr ""
5970
 
5971
+ #: admin.php:2979
5972
  msgid "Any other directories found inside wp-content"
5973
  msgstr ""
5974
 
5975
+ #: templates/wp-admin/settings/form-contents.php:204
5976
  msgid "Include in files backup"
5977
  msgstr ""
5978
 
5984
  msgid "To fix the time at which a backup should take place,"
5985
  msgstr ""
5986
 
5987
+ #: admin.php:2904
5988
  msgid "Monthly"
5989
  msgstr ""
5990
 
5991
+ #: admin.php:2903
5992
  msgid "Fortnightly"
5993
  msgstr ""
5994
 
5995
+ #: admin.php:2902
5996
  msgid "Weekly"
5997
  msgstr ""
5998
 
5999
+ #: admin.php:2901
6000
  msgid "Daily"
6001
  msgstr ""
6002
 
6003
+ #: admin.php:644 admin.php:2884
6004
  msgid "Download log file"
6005
  msgstr ""
6006
 
6007
+ #: admin.php:2802
6008
  msgid "The folder exists, but your webserver does not have permission to write to it."
6009
  msgstr ""
6010
 
6011
+ #: admin.php:2797
6012
  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"
6013
  msgstr ""
6014
 
6015
+ #: admin.php:2783
6016
  msgid "The request to the filesystem to create the directory failed."
6017
  msgstr ""
6018
 
6019
+ #: addons/migrator.php:2243 admin.php:638 admin.php:2699 admin.php:2732
6020
+ #: admin.php:3376 templates/wp-admin/settings/delete-and-restore-modals.php:5
6021
  msgid "Delete"
6022
  msgstr ""
6023
 
6024
+ #: admin.php:2639
6025
  msgid "show log"
6026
  msgstr ""
6027
 
6097
  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"
6098
  msgstr ""
6099
 
6100
+ #: addons/morefiles.php:130
6101
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6102
  msgid "%s restoration options:"
6103
  msgstr ""
6134
  msgid "Delete backup set"
6135
  msgstr ""
6136
 
6137
+ #: admin.php:620
6138
  msgid "Download error: the server sent us a response which we did not understand."
6139
  msgstr ""
6140
 
6144
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6145
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6146
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6147
+ #: addons/s3-enhanced.php:127 addons/sftp.php:737 addons/webdav.php:79
6148
+ #: admin.php:82 admin.php:612 admin.php:3634 admin.php:3664
6149
+ #: methods/remotesend.php:69 methods/remotesend.php:227
6150
+ #: methods/updraftvault.php:432 restorer.php:1364
6151
  msgid "Error:"
6152
  msgstr ""
6153
 
6154
+ #: admin.php:603 templates/wp-admin/settings/downloading-and-restoring.php:34
6155
  msgid "calculating..."
6156
  msgstr ""
6157
 
6158
+ #: includes/updraftplus-notices.php:260
6159
+ msgid "or"
6160
+ msgstr ""
6161
+
6162
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6163
  msgid "UpdraftPlus - Upload backup files"
6164
  msgstr ""
6171
  msgid "Web-server disk space in use by UpdraftPlus"
6172
  msgstr ""
6173
 
6174
+ #: addons/google-enhanced.php:81 methods/googledrive.php:130
6175
+ #: methods/googledrive.php:348 methods/googledrive.php:371
6176
+ #: methods/googledrive.php:400 methods/googledrive.php:407
6177
+ #: methods/googledrive.php:417 methods/googledrive.php:423
6178
+ #: methods/googledrive.php:425 methods/googledrive.php:890
6179
+ #: methods/googledrive.php:902 methods/googledrive.php:918
6180
+ #: methods/googledrive.php:922 methods/googledrive.php:933
6181
+ #: methods/googledrive.php:943
6182
  msgid "Google Drive"
6183
  msgstr ""
6184
 
6194
  msgid "More tasks:"
6195
  msgstr ""
6196
 
6197
+ #: admin.php:2402
6198
  msgid "Download most recently modified log file"
6199
  msgstr ""
6200
 
6201
+ #: admin.php:2361 admin.php:2367 central/bootstrap.php:161
6202
  msgid "(Nothing yet logged)"
6203
  msgstr ""
6204
 
6205
+ #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2360
6206
+ #: admin.php:2365
6207
  msgid "Last log message"
6208
  msgstr ""
6209
 
6210
+ #: addons/migrator.php:218 admin.php:643 admin.php:3367
6211
  #: templates/wp-admin/settings/tab-status.php:30
6212
  msgid "Restore"
6213
  msgstr ""
6214
 
6215
+ #: admin.php:472 admin.php:636 templates/wp-admin/settings/tab-status.php:27
6216
  msgid "Backup Now"
6217
  msgstr ""
6218
 
6219
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6220
+ #: addons/reporting.php:231 admin.php:257 admin.php:3166 admin.php:3239
6221
+ #: admin.php:3718 includes/class-wpadmin-commands.php:138
6222
+ #: includes/class-wpadmin-commands.php:459
6223
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6224
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6225
  msgid "Database"
6226
  msgstr ""
6227
 
6228
+ #: admin.php:253 admin.php:4130
6229
  msgid "Files"
6230
  msgstr ""
6231
 
6233
  msgid "Next scheduled backups"
6234
  msgstr ""
6235
 
6236
+ #: admin.php:233
6237
  msgid "At the same time as the files backup"
6238
  msgstr ""
6239
 
6240
+ #: admin.php:223 admin.php:244 admin.php:251
6241
  msgid "Nothing currently scheduled"
6242
  msgstr ""
6243
 
6249
  msgid "JavaScript warning"
6250
  msgstr ""
6251
 
6252
+ #: admin.php:623 admin.php:2429
6253
  msgid "Delete Old Directories"
6254
  msgstr ""
6255
 
6256
+ #: admin.php:2174
6257
  msgid "Current limit is:"
6258
  msgstr ""
6259
 
6260
+ #: admin.php:2148
6261
  msgid "Your backup has been restored."
6262
  msgstr ""
6263
 
6269
  msgid "Lead developer's homepage"
6270
  msgstr ""
6271
 
6272
+ #: admin.php:4050
6273
  msgid "Your settings have been wiped."
6274
  msgstr ""
6275
 
6276
+ #: admin.php:2108
6277
  msgid "Backup directory successfully created."
6278
  msgstr ""
6279
 
6280
+ #: admin.php:2101
6281
  msgid "Backup directory could not be created"
6282
  msgstr ""
6283
 
6284
+ #: admin.php:2671
6285
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6286
  msgstr ""
6287
 
6288
+ #: admin.php:2669
6289
  msgid "Old directories successfully removed."
6290
  msgstr ""
6291
 
6292
+ #: admin.php:2666
6293
  msgid "Remove old directories"
6294
  msgstr ""
6295
 
6296
+ #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2050
6297
+ #: admin.php:2059 admin.php:2068 admin.php:2110 admin.php:2673
6298
  msgid "Return to UpdraftPlus Configuration"
6299
  msgstr ""
6300
 
6301
+ #: admin.php:616 admin.php:2050 admin.php:2059 admin.php:2068 admin.php:2110
6302
+ #: admin.php:2673 templates/wp-admin/settings/existing-backups-table.php:14
6303
  msgid "Actions"
6304
  msgstr ""
6305
 
6306
+ #: admin.php:2039
6307
  msgid "Restore successful!"
6308
  msgstr ""
6309
 
6310
+ #: admin.php:1969
6311
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6312
  msgstr ""
6313
 
6314
+ #: admin.php:1879
6315
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6316
  msgstr ""
6317
 
6318
+ #: admin.php:1760
6319
  msgid "No local copy present."
6320
  msgstr ""
6321
 
6322
+ #: admin.php:1757
6323
  msgid "Download in progress"
6324
  msgstr ""
6325
 
6326
+ #: admin.php:615 admin.php:1746
6327
  msgid "File ready."
6328
  msgstr ""
6329
 
6330
+ #: admin.php:1727
6331
  msgid "Download failed"
6332
  msgstr ""
6333
 
6334
+ #: admin.php:613 admin.php:1518 admin.php:3617 class-updraftplus.php:1044
6335
+ #: class-updraftplus.php:1088 methods/addon-base-v2.php:84
6336
+ #: methods/addon-base-v2.php:89 methods/addon-base-v2.php:204
6337
+ #: methods/addon-base-v2.php:224 methods/stream-base.php:197 restorer.php:2199
6338
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6339
  msgid "Error"
6340
  msgstr ""
6341
 
6342
+ #: admin.php:1546
6343
  msgid "Could not find that job - perhaps it has already finished?"
6344
  msgstr ""
6345
 
6346
+ #: admin.php:1538
6347
  msgid "Job deleted"
6348
  msgstr ""
6349
 
6350
+ #: admin.php:1622
6351
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6352
  msgstr ""
6353
 
6354
+ #: admin.php:688
6355
  msgid "Nothing yet logged"
6356
  msgstr ""
6357
 
6358
+ #: admin.php:905
6359
  msgid "Please consult this FAQ if you have problems backing up."
6360
  msgstr ""
6361
 
6362
+ #: admin.php:905
6363
  msgid "Your website is hosted using the %s web server."
6364
  msgstr ""
6365
 
6366
+ #: admin.php:901
6367
  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."
6368
  msgstr ""
6369
 
6370
+ #: admin.php:897
6371
  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."
6372
  msgstr ""
6373
 
6374
+ #: admin.php:889 admin.php:893 admin.php:897 admin.php:901 admin.php:905
6375
+ #: admin.php:914 admin.php:3035 admin.php:3042 admin.php:3044
6376
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435 methods/ftp.php:291
6377
+ #: methods/openstack-base.php:517 methods/s3.php:797 methods/s3.php:801
6378
+ #: methods/updraftvault.php:258
6379
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6380
  #: udaddons/updraftplus-addons.php:208
6381
  msgid "Warning"
6382
  msgstr ""
6383
 
6384
+ #: admin.php:834
6385
  msgid "Add-Ons / Pro Support"
6386
  msgstr ""
6387
 
6388
+ #: admin.php:488 admin.php:830 templates/wp-admin/settings/tab-bar.php:7
6389
  msgid "Settings"
6390
  msgstr ""
6391
 
6392
+ #: admin.php:803
6393
  msgid "Allowed Files"
6394
  msgstr ""
6395
 
6397
  msgid "Could not create %s zip. Consult the log file for more information."
6398
  msgstr ""
6399
 
6400
+ #: backup.php:2024
6401
  msgid "Infinite recursion: consult your log for more information"
6402
  msgstr ""
6403
 
6409
  msgid "Like UpdraftPlus and can spare one minute?"
6410
  msgstr ""
6411
 
6412
+ #: addons/azure.php:216 class-updraftplus.php:3784 methods/googledrive.php:823
6413
  msgid "File not found"
6414
  msgstr ""
6415
 
6416
+ #: class-updraftplus.php:3695
6417
  msgid "The decryption key used:"
6418
  msgstr ""
6419
 
6420
+ #: class-updraftplus.php:3695 class-updraftplus.php:3965 restorer.php:390
6421
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6422
  msgstr ""
6423
 
6424
+ #: class-updraftplus.php:3676 class-updraftplus.php:3953 restorer.php:377
6425
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6426
  msgstr ""
6427
 
6428
+ #: backup.php:1914
6429
  msgid "Could not open the backup file for writing"
6430
  msgstr ""
6431
 
6432
+ #: class-updraftplus.php:3288
6433
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6434
  msgstr ""
6435
 
6436
+ #: class-updraftplus.php:3265
6437
  msgid "Could not read the directory"
6438
  msgstr ""
6439
 
6440
+ #: admin.php:1797 backup.php:1139 restorer.php:225
6441
  msgid "Backup directory (%s) is not writable, or does not exist."
6442
  msgstr ""
6443
 
6444
+ #: backup.php:943
6445
  msgid "WordPress backup is complete"
6446
  msgstr ""
6447
 
6448
+ #: class-updraftplus.php:2834
6449
  msgid "The backup attempt has finished, apparently unsuccessfully"
6450
  msgstr ""
6451
 
6452
+ #: class-updraftplus.php:2819
6453
  msgid "The backup apparently succeeded and is now complete"
6454
  msgstr ""
6455
 
6456
+ #: addons/moredatabase.php:373
6457
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6458
  msgstr ""
6459
 
6460
+ #: class-updraftplus.php:2246
6461
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6462
  msgstr ""
6463
 
6464
+ #: class-updraftplus.php:1613
6465
  msgid "Others"
6466
  msgstr ""
6467
 
6468
+ #: addons/multisite.php:446 class-updraftplus.php:1598
6469
  msgid "Uploads"
6470
  msgstr ""
6471
 
6472
+ #: class-updraftplus.php:1597
6473
  msgid "Themes"
6474
  msgstr ""
6475
 
6476
+ #: class-updraftplus.php:1596
6477
  msgid "Plugins"
6478
  msgstr ""
6479
 
6480
+ #: class-updraftplus.php:458
6481
  msgid "No log files were found."
6482
  msgstr ""
6483
 
6484
+ #: admin.php:1681 admin.php:1685 class-updraftplus.php:453
6485
  msgid "The log file could not be read."
6486
  msgstr ""
6487
 
6488
+ #: admin.php:921 admin.php:925 admin.php:929 admin.php:933 admin.php:937
6489
+ #: class-updraftplus.php:418 class-updraftplus.php:453
6490
+ #: class-updraftplus.php:458 class-updraftplus.php:463
6491
  msgid "UpdraftPlus notice:"
6492
  msgstr ""
6493
 
6494
+ #: addons/multisite.php:63 addons/multisite.php:654 options.php:42
6495
  msgid "UpdraftPlus Backups"
6496
  msgstr ""
languages/updraftplus-ca.po CHANGED
@@ -11,59 +11,127 @@ msgstr ""
11
  "Language: ca\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: restorer.php:1629
15
  msgid "Skipped tables:"
16
  msgstr ""
17
 
18
- #: class-updraftplus.php:4049
19
  msgid "This database backup has the following WordPress tables excluded: %s"
20
  msgstr ""
21
 
22
- #: admin.php:2271
23
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
24
  msgstr ""
25
 
26
- #: admin.php:2271
27
  msgid "All WordPress tables will be backed up."
28
  msgstr ""
29
 
30
- #: admin.php:675
31
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
32
  msgstr ""
33
 
34
- #: admin.php:675
35
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
36
  msgstr ""
37
 
38
- #: admin.php:675
39
  msgid "The available memory on the server."
40
  msgstr ""
41
 
42
- #: admin.php:675
43
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
44
  msgstr ""
45
 
46
- #: admin.php:675
47
  msgid "The file failed to upload. Please check the following:"
48
  msgstr ""
49
 
50
- #: admin.php:674
51
  msgid "HTTP code:"
52
  msgstr ""
53
 
54
- #: admin.php:572
55
  msgid "You have chosen to backup a database, but no tables have been selected"
56
  msgstr ""
57
 
58
- #: addons/moredatabase.php:484
59
  msgid "tables"
60
  msgstr ""
61
 
62
- #: addons/moredatabase.php:483
63
  msgid "WordPress database"
64
  msgstr ""
65
 
66
- #: addons/moredatabase.php:476
67
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
68
  msgstr ""
69
 
@@ -214,7 +282,7 @@ msgstr ""
214
  msgid "UpdraftPlus"
215
  msgstr ""
216
 
217
- #: templates/wp-admin/settings/form-contents.php:241
218
  msgid "Recommended: optimize your database with WP-Optimize."
219
  msgstr ""
220
 
@@ -237,31 +305,27 @@ msgstr ""
237
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
238
  msgstr ""
239
 
240
- #: admin.php:595
241
- msgid "Show contents"
242
- msgstr ""
243
-
244
- #: addons/morefiles.php:246
245
  msgid "Please choose a file or directory"
246
  msgstr ""
247
 
248
- #: addons/morefiles.php:235
249
  msgid "Confirm"
250
  msgstr ""
251
 
252
- #: addons/morefiles.php:238
253
  msgid "Go up a directory"
254
  msgstr ""
255
 
256
- #: addons/morefiles.php:231
257
  msgid "Add directory..."
258
  msgstr ""
259
 
260
- #: addons/morefiles.php:224 addons/morefiles.php:244
261
  msgid "Edit"
262
  msgstr ""
263
 
264
- #: addons/morefiles.php:207
265
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
266
  msgstr ""
267
 
@@ -541,19 +605,19 @@ msgstr ""
541
  msgid "Backup of: %s"
542
  msgstr ""
543
 
544
- #: methods/googledrive.php:212
545
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
546
  msgstr ""
547
 
548
- #: methods/dropbox.php:569
549
  msgid "%s de-authentication"
550
  msgstr ""
551
 
552
- #: methods/dropbox.php:537
553
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
554
  msgstr ""
555
 
556
- #: methods/dropbox.php:511
557
  msgid "Follow this link to deauthenticate with %s."
558
  msgstr ""
559
 
@@ -561,7 +625,7 @@ msgstr ""
561
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
562
  msgstr ""
563
 
564
- #: backup.php:1495
565
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
566
  msgstr ""
567
 
@@ -569,47 +633,47 @@ msgstr ""
569
  msgid "You have selected a remote storage option which has an authorization step to complete:"
570
  msgstr ""
571
 
572
- #: admin.php:1391
573
  msgid "Remote files deleted:"
574
  msgstr ""
575
 
576
- #: admin.php:1390
577
  msgid "Local files deleted:"
578
  msgstr ""
579
 
580
- #: admin.php:887 admin.php:891 admin.php:899 admin.php:903
581
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
582
  msgstr ""
583
 
584
- #: admin.php:673
585
  msgid "remote files deleted"
586
  msgstr ""
587
 
588
- #: admin.php:671
589
  msgid "Complete"
590
  msgstr ""
591
 
592
- #: admin.php:670
593
  msgid "Do you want to carry out the import?"
594
  msgstr ""
595
 
596
- #: admin.php:669
597
  msgid "Which was exported on:"
598
  msgstr ""
599
 
600
- #: admin.php:668
601
  msgid "This will import data from:"
602
  msgstr ""
603
 
604
- #: admin.php:667
605
  msgid "Importing..."
606
  msgstr ""
607
 
608
- #: admin.php:664
609
  msgid "You have not yet selected a file to import."
610
  msgstr ""
611
 
612
- #: admin.php:648
613
  msgid "Your export file will be of your displayed settings, not your saved ones."
614
  msgstr ""
615
 
@@ -654,15 +718,15 @@ msgstr ""
654
  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"
655
  msgstr ""
656
 
657
- #: admin.php:2096
658
  msgid "To fix this problem go here."
659
  msgstr ""
660
 
661
- #: admin.php:2096
662
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
663
  msgstr ""
664
 
665
- #: admin.php:633
666
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
667
  msgstr ""
668
 
@@ -694,11 +758,11 @@ msgstr ""
694
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
695
  msgstr ""
696
 
697
- #: methods/s3.php:1012
698
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
699
  msgstr ""
700
 
701
- #: methods/s3.php:89
702
  msgid "No settings were found - please go to the Settings tab and check your settings"
703
  msgstr ""
704
 
@@ -766,11 +830,11 @@ msgstr ""
766
  msgid "Public key was sent to:"
767
  msgstr ""
768
 
769
- #: backup.php:2054
770
  msgid "Failed to open directory (check the file permissions and ownership): %s"
771
  msgstr ""
772
 
773
- #: backup.php:2032
774
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
775
  msgstr ""
776
 
@@ -816,27 +880,27 @@ msgstr ""
816
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
817
  msgstr ""
818
 
819
- #: methods/googledrive.php:422
820
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
821
  msgstr ""
822
 
823
- #: methods/ftp.php:383
824
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
825
  msgstr ""
826
 
827
- #: methods/ftp.php:355
828
  msgid "login"
829
  msgstr ""
830
 
831
- #: methods/email.php:77
832
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
833
  msgstr ""
834
 
835
- #: methods/email.php:28
836
  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."
837
  msgstr ""
838
 
839
- #: class-updraftplus.php:1484
840
  msgid "Size: %s MB"
841
  msgstr ""
842
 
@@ -848,7 +912,7 @@ msgstr ""
848
  msgid "i.e. you have an account there"
849
  msgstr ""
850
 
851
- #: templates/wp-admin/settings/form-contents.php:326
852
  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)."
853
  msgstr ""
854
 
@@ -856,7 +920,7 @@ msgstr ""
856
  msgid "Now"
857
  msgstr ""
858
 
859
- #: class-updraftplus.php:3913 restorer.php:996
860
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
861
  msgstr ""
862
 
@@ -864,21 +928,21 @@ msgstr ""
864
  msgid "(tap on an icon to select or unselect)"
865
  msgstr ""
866
 
867
- #: methods/updraftvault.php:291 methods/updraftvault.php:297
868
- #: methods/updraftvault.php:303
869
  msgid "%s per year"
870
  msgstr ""
871
 
872
- #: methods/updraftvault.php:290 methods/updraftvault.php:296
873
- #: methods/updraftvault.php:302
874
  msgid "or (annual discount)"
875
  msgstr ""
876
 
877
- #: methods/updraftvault.php:235
878
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
879
  msgstr ""
880
 
881
- #: class-updraftplus.php:354 class-updraftplus.php:399
882
  msgid "The given file was not found, or could not be read."
883
  msgstr ""
884
 
@@ -978,23 +1042,23 @@ msgstr ""
978
  msgid "UpdraftCentral Connection"
979
  msgstr ""
980
 
981
- #: backup.php:837 class-updraftplus.php:2715
982
  msgid "The backup was aborted by the user"
983
  msgstr ""
984
 
985
- #: admin.php:3953
986
  msgid "Your settings have been saved."
987
  msgstr ""
988
 
989
- #: admin.php:3146
990
  msgid "Total backup size:"
991
  msgstr ""
992
 
993
- #: admin.php:2593
994
  msgid "stop"
995
  msgstr ""
996
 
997
- #: admin.php:2431
998
  msgid "The backup has finished running"
999
  msgstr ""
1000
 
@@ -1020,27 +1084,27 @@ msgstr ""
1020
  msgid "calculate"
1021
  msgstr ""
1022
 
1023
- #: admin.php:647
1024
  msgid "You should save your changes to ensure that they are used for making your backup."
1025
  msgstr ""
1026
 
1027
- #: admin.php:641
1028
  msgid "We requested to delete the file, but could not understand the server's response"
1029
  msgstr ""
1030
 
1031
- #: admin.php:640
1032
  msgid "Please enter a valid URL"
1033
  msgstr ""
1034
 
1035
- #: admin.php:623
1036
  msgid "Saving..."
1037
  msgstr ""
1038
 
1039
- #: admin.php:586
1040
  msgid "Error: the server sent us a response which we did not understand."
1041
  msgstr ""
1042
 
1043
- #: admin.php:578
1044
  msgid "Fetching..."
1045
  msgstr ""
1046
 
@@ -1048,15 +1112,11 @@ msgstr ""
1048
  msgid "Asia Pacific (Seoul)"
1049
  msgstr ""
1050
 
1051
- #: addons/copycom.php:43 addons/copycom.php:81
1052
- msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
1053
- msgstr ""
1054
-
1055
  #: restorer.php:1618
1056
  msgid "Uploads URL:"
1057
  msgstr ""
1058
 
1059
- #: backup.php:388
1060
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1061
  msgstr ""
1062
 
@@ -1068,48 +1128,48 @@ msgstr ""
1068
  msgid "Skipping table %s: this table will not be restored"
1069
  msgstr ""
1070
 
1071
- #: class-updraftplus.php:3964 restorer.php:1642
1072
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1073
  msgstr ""
1074
 
1075
- #: class-updraftplus.php:3960
1076
  msgid "Please read this link for important information on this process."
1077
  msgstr ""
1078
 
1079
- #: class-updraftplus.php:3960
1080
  msgid "It will be imported as a new site."
1081
  msgstr ""
1082
 
1083
- #: admin.php:2244 templates/wp-admin/notices/horizontal-notice.php:16
1084
  #: templates/wp-admin/notices/horizontal-notice.php:18
1085
  msgid "Dismiss"
1086
  msgstr ""
1087
 
1088
- #: admin.php:659
1089
  msgid "Please fill in the required information."
1090
  msgstr ""
1091
 
1092
- #: addons/multisite.php:556
1093
  msgid "Read more..."
1094
  msgstr ""
1095
 
1096
- #: addons/multisite.php:556
1097
  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."
1098
  msgstr ""
1099
 
1100
- #: addons/multisite.php:547
1101
  msgid "may include some site-wide data"
1102
  msgstr ""
1103
 
1104
- #: addons/multisite.php:542
1105
  msgid "All sites"
1106
  msgstr ""
1107
 
1108
- #: addons/multisite.php:538
1109
  msgid "Which site to restore"
1110
  msgstr ""
1111
 
1112
- #: addons/multisite.php:374 addons/multisite.php:384
1113
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1114
  msgstr ""
1115
 
@@ -1157,15 +1217,15 @@ msgstr ""
1157
  msgid "Call WordPress action:"
1158
  msgstr ""
1159
 
1160
- #: admin.php:2279
1161
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1162
  msgstr ""
1163
 
1164
- #: admin.php:3554
1165
  msgid "Skipping: this archive was already restored."
1166
  msgstr ""
1167
 
1168
- #: templates/wp-admin/settings/form-contents.php:167
1169
  msgid "File Options"
1170
  msgstr ""
1171
 
@@ -1193,51 +1253,51 @@ msgstr ""
1193
  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)."
1194
  msgstr ""
1195
 
1196
- #: admin.php:3835
1197
  msgid "Send this backup to remote storage"
1198
  msgstr ""
1199
 
1200
- #: admin.php:3833
1201
  msgid "Check out UpdraftPlus Vault."
1202
  msgstr ""
1203
 
1204
- #: admin.php:3833
1205
  msgid "Not got any remote storage?"
1206
  msgstr ""
1207
 
1208
- #: admin.php:3833
1209
  msgid "settings"
1210
  msgstr ""
1211
 
1212
- #: admin.php:3833
1213
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1214
  msgstr ""
1215
 
1216
- #: admin.php:2277
1217
  msgid "Include any files in the backup"
1218
  msgstr ""
1219
 
1220
- #: admin.php:2263
1221
  msgid "Include the database in the backup"
1222
  msgstr ""
1223
 
1224
- #: admin.php:2243
1225
  msgid "Continue restoration"
1226
  msgstr ""
1227
 
1228
- #: admin.php:2238
1229
  msgid "You have an unfinished restoration operation, begun %s ago."
1230
  msgstr ""
1231
 
1232
- #: admin.php:2237
1233
  msgid "Unfinished restoration"
1234
  msgstr ""
1235
 
1236
- #: admin.php:2235
1237
  msgid "%s minutes, %s seconds"
1238
  msgstr ""
1239
 
1240
- #: admin.php:2182
1241
  msgid "Backup Contents And Schedule"
1242
  msgstr ""
1243
 
@@ -1245,24 +1305,24 @@ msgstr ""
1245
  msgid "Premium / Extensions"
1246
  msgstr ""
1247
 
1248
- #: admin.php:1962 admin.php:1971
1249
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1250
  msgstr ""
1251
 
1252
- #: admin.php:646
1253
  msgctxt "(verb)"
1254
  msgid "Download"
1255
  msgstr ""
1256
 
1257
- #: admin.php:571
1258
  msgid "You have chosen to backup files, but no file entities have been selected"
1259
  msgstr ""
1260
 
1261
- #: admin.php:480
1262
  msgid "Extensions"
1263
  msgstr ""
1264
 
1265
- #: admin.php:472 templates/wp-admin/settings/tab-bar.php:8
1266
  msgid "Advanced Tools"
1267
  msgstr ""
1268
 
@@ -1343,75 +1403,75 @@ msgstr ""
1343
  msgid "Standard"
1344
  msgstr ""
1345
 
1346
- #: addons/azure.php:524
1347
  msgid "container"
1348
  msgstr ""
1349
 
1350
- #: addons/azure.php:524
1351
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1352
  msgstr ""
1353
 
1354
- #: addons/azure.php:523
1355
  msgid "optional"
1356
  msgstr ""
1357
 
1358
- #: addons/azure.php:523
1359
  msgid "Prefix"
1360
  msgstr ""
1361
 
1362
- #: addons/azure.php:518
1363
  msgid "See Microsoft's guidelines on container naming by following this link."
1364
  msgstr ""
1365
 
1366
- #: addons/azure.php:518
1367
  msgid "If the %s does not already exist, then it will be created."
1368
  msgstr ""
1369
 
1370
- #: addons/azure.php:518
1371
  msgid "Enter the path of the %s you wish to use here."
1372
  msgstr ""
1373
 
1374
- #: addons/azure.php:507
1375
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1376
  msgstr ""
1377
 
1378
- #: addons/azure.php:506
1379
  msgid "Account Name"
1380
  msgstr ""
1381
 
1382
- #: addons/azure.php:506 addons/azure.php:510
1383
  msgid "Azure"
1384
  msgstr ""
1385
 
1386
- #: addons/azure.php:502
1387
  msgid "Create Azure credentials in your Azure developer console."
1388
  msgstr ""
1389
 
1390
- #: addons/azure.php:450
1391
  msgid "Could not create the container"
1392
  msgstr ""
1393
 
1394
- #: addons/azure.php:344
1395
  msgid "Could not access container"
1396
  msgstr ""
1397
 
1398
- #: class-updraftplus.php:2732
1399
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1400
  msgstr ""
1401
 
1402
- #: backup.php:1547
1403
  msgid "the options table was not found"
1404
  msgstr ""
1405
 
1406
- #: backup.php:1545
1407
  msgid "no options or sitemeta table was found"
1408
  msgstr ""
1409
 
1410
- #: backup.php:1545 backup.php:1547
1411
  msgid "The database backup appears to have failed"
1412
  msgstr ""
1413
 
1414
- #: backup.php:1419
1415
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1416
  msgstr ""
1417
 
@@ -1528,35 +1588,35 @@ msgstr ""
1528
  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)."
1529
  msgstr ""
1530
 
1531
- #: admin.php:1389
1532
  msgid "Backup sets removed:"
1533
  msgstr ""
1534
 
1535
- #: admin.php:658
1536
  msgid "Processing..."
1537
  msgstr ""
1538
 
1539
- #: admin.php:656
1540
  msgid "For backups older than"
1541
  msgstr ""
1542
 
1543
- #: admin.php:655
1544
  msgid "week(s)"
1545
  msgstr ""
1546
 
1547
- #: admin.php:654
1548
  msgid "hour(s)"
1549
  msgstr ""
1550
 
1551
- #: admin.php:653
1552
  msgid "day(s)"
1553
  msgstr ""
1554
 
1555
- #: admin.php:652
1556
  msgid "in the month"
1557
  msgstr ""
1558
 
1559
- #: admin.php:651
1560
  msgid "day"
1561
  msgstr ""
1562
 
@@ -1576,31 +1636,31 @@ msgstr ""
1576
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1577
  msgstr ""
1578
 
1579
- #: methods/updraftvault.php:596
1580
  msgid "You do not currently have any UpdraftPlus Vault quota"
1581
  msgstr ""
1582
 
1583
- #: class-updraftplus.php:3999
1584
  msgid "You must upgrade MySQL to be able to use this database."
1585
  msgstr ""
1586
 
1587
- #: class-updraftplus.php:3999
1588
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1589
  msgstr ""
1590
 
1591
- #: admin.php:2081
1592
  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."
1593
  msgstr ""
1594
 
1595
- #: methods/updraftvault.php:324
1596
  msgid "Don't know your email address, or forgotten your password?"
1597
  msgstr ""
1598
 
1599
- #: methods/updraftvault.php:317
1600
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1601
  msgstr ""
1602
 
1603
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1604
  msgid "Read the FAQs here."
1605
  msgstr ""
1606
 
@@ -1612,155 +1672,155 @@ msgstr ""
1612
  msgid "Server-side encryption"
1613
  msgstr ""
1614
 
1615
- #: methods/updraftvault.php:605
1616
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1617
  msgstr ""
1618
 
1619
- #: admin.php:895
1620
  msgid "Go to the remote storage settings in order to connect."
1621
  msgstr ""
1622
 
1623
- #: admin.php:895
1624
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1625
  msgstr ""
1626
 
1627
- #: methods/updraftvault.php:306
1628
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1629
  msgstr ""
1630
 
1631
- #: admin.php:629
1632
  msgid "Update quota count"
1633
  msgstr ""
1634
 
1635
- #: admin.php:628
1636
  msgid "Counting..."
1637
  msgstr ""
1638
 
1639
- #: admin.php:627
1640
  msgid "Disconnecting..."
1641
  msgstr ""
1642
 
1643
- #: admin.php:625
1644
  msgid "Connecting..."
1645
  msgstr ""
1646
 
1647
- #: methods/updraftvault.php:380 methods/updraftvault.php:449
1648
  msgid "Refresh current status"
1649
  msgstr ""
1650
 
1651
- #: methods/updraftvault.php:378 methods/updraftvault.php:394
1652
- #: methods/updraftvault.php:396 methods/updraftvault.php:449
1653
  msgid "Get more quota"
1654
  msgstr ""
1655
 
1656
- #: methods/updraftvault.php:375 methods/updraftvault.php:391
1657
- #: methods/updraftvault.php:430
1658
  msgid "Current use:"
1659
  msgstr ""
1660
 
1661
- #: methods/updraftvault.php:370
1662
  msgid "You can get more quota here"
1663
  msgstr ""
1664
 
1665
- #: methods/updraftvault.php:370
1666
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1667
  msgstr ""
1668
 
1669
- #: admin.php:626 methods/updraftvault.php:362
1670
  msgid "Disconnect"
1671
  msgstr ""
1672
 
1673
- #: methods/updraftvault.php:354
1674
  msgid "Quota:"
1675
  msgstr ""
1676
 
1677
- #: methods/updraftvault.php:352
1678
  msgid "Vault owner"
1679
  msgstr ""
1680
 
1681
- #: methods/updraftvault.php:352
1682
  msgid "Well done - there's nothing more needed to set up."
1683
  msgstr ""
1684
 
1685
- #: methods/updraftvault.php:352
1686
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1687
  msgstr ""
1688
 
1689
- #: methods/updraftvault.php:348
1690
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1691
  msgstr ""
1692
 
1693
- #: methods/updraftvault.php:324
1694
  msgid "Go here for help"
1695
  msgstr ""
1696
 
1697
- #: methods/updraftvault.php:319
1698
  msgid "E-mail"
1699
  msgstr ""
1700
 
1701
- #: methods/updraftvault.php:312 methods/updraftvault.php:327
1702
  msgid "Back..."
1703
  msgstr ""
1704
 
1705
- #: methods/updraftvault.php:306
1706
  msgid "Subscriptions can be cancelled at any time."
1707
  msgstr ""
1708
 
1709
- #: methods/updraftvault.php:289 methods/updraftvault.php:295
1710
- #: methods/updraftvault.php:301
1711
  msgid "%s per quarter"
1712
  msgstr ""
1713
 
1714
- #: central/bootstrap.php:542 methods/updraftvault.php:279
1715
- #: methods/updraftvault.php:309
1716
  msgid "Read more about it here."
1717
  msgstr ""
1718
 
1719
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1720
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1721
  msgstr ""
1722
 
1723
- #: methods/updraftvault.php:275
1724
  msgid "Already purchased space?"
1725
  msgstr ""
1726
 
1727
- #: methods/updraftvault.php:272
1728
  msgid "Show the options"
1729
  msgstr ""
1730
 
1731
- #: methods/updraftvault.php:271
1732
  msgid "First time user?"
1733
  msgstr ""
1734
 
1735
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1736
  msgid "Press a button to get started."
1737
  msgstr ""
1738
 
1739
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1740
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1741
  msgstr ""
1742
 
1743
- #: methods/updraftvault.php:231
1744
  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."
1745
  msgstr ""
1746
 
1747
- #: methods/updraftvault.php:228
1748
  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!"
1749
  msgstr ""
1750
 
1751
- #: methods/updraftvault.php:225
1752
  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."
1753
  msgstr ""
1754
 
1755
- #: methods/updraftvault.php:48 methods/updraftvault.php:77
1756
  msgid "Updraft Vault"
1757
  msgstr ""
1758
 
1759
- #: addons/azure.php:366 addons/googlecloud.php:693 methods/s3.php:1040
1760
  msgid "Delete failed:"
1761
  msgstr ""
1762
 
1763
- #: backup.php:2994
1764
  msgid "The zip engine returned the message: %s."
1765
  msgstr ""
1766
 
@@ -1784,7 +1844,7 @@ msgstr ""
1784
  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."
1785
  msgstr ""
1786
 
1787
- #: addons/migrator.php:1742 admin.php:635
1788
  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."
1789
  msgstr ""
1790
 
@@ -1852,11 +1912,11 @@ msgstr ""
1852
  msgid "Backup made by %s"
1853
  msgstr ""
1854
 
1855
- #: methods/addon-base.php:177
1856
  msgid "This storage method does not allow downloading"
1857
  msgstr ""
1858
 
1859
- #: admin.php:3314
1860
  msgid "(backup set imported from remote location)"
1861
  msgstr ""
1862
 
@@ -1876,23 +1936,23 @@ msgstr ""
1876
  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."
1877
  msgstr ""
1878
 
1879
- #: addons/migrator.php:1770 admin.php:642
1880
  msgid "Testing connection..."
1881
  msgstr ""
1882
 
1883
- #: admin.php:639
1884
  msgid "Deleting..."
1885
  msgstr ""
1886
 
1887
- #: admin.php:638
1888
  msgid "key name"
1889
  msgstr ""
1890
 
1891
- #: admin.php:636
1892
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1893
  msgstr ""
1894
 
1895
- #: admin.php:633
1896
  msgid "Creating..."
1897
  msgstr ""
1898
 
@@ -1916,11 +1976,11 @@ msgstr ""
1916
  msgid "Or, send a backup to another site"
1917
  msgstr ""
1918
 
1919
- #: addons/migrator.php:1937 admin.php:643
1920
  msgid "Send"
1921
  msgstr ""
1922
 
1923
- #: addons/migrator.php:1931 admin.php:634
1924
  msgid "Send to site:"
1925
  msgstr ""
1926
 
@@ -1952,27 +2012,27 @@ msgstr ""
1952
  msgid "key"
1953
  msgstr ""
1954
 
1955
- #: methods/ftp.php:325
1956
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1957
  msgstr ""
1958
 
1959
- #: methods/ftp.php:323
1960
  msgid "Passive mode"
1961
  msgstr ""
1962
 
1963
- #: methods/ftp.php:319
1964
  msgid "Remote path"
1965
  msgstr ""
1966
 
1967
- #: methods/ftp.php:315
1968
  msgid "FTP password"
1969
  msgstr ""
1970
 
1971
- #: methods/ftp.php:311
1972
  msgid "FTP login"
1973
  msgstr ""
1974
 
1975
- #: methods/ftp.php:307
1976
  msgid "FTP server"
1977
  msgstr ""
1978
 
@@ -1984,15 +2044,15 @@ msgstr ""
1984
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1985
  msgstr ""
1986
 
1987
- #: addons/migrator.php:2180 admin.php:631
1988
  msgid "Add site"
1989
  msgstr ""
1990
 
1991
- #: admin.php:630
1992
  msgid "Adding..."
1993
  msgstr ""
1994
 
1995
- #: udaddons/options.php:338
1996
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1997
  msgstr ""
1998
 
@@ -2020,7 +2080,7 @@ msgstr ""
2020
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2021
  msgstr ""
2022
 
2023
- #: admin.php:622 admin.php:647 admin.php:648
2024
  msgid "You have made changes to your settings, and not saved."
2025
  msgstr ""
2026
 
@@ -2032,7 +2092,7 @@ msgstr ""
2032
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2033
  msgstr ""
2034
 
2035
- #: addons/azure.php:502 addons/migrator.php:1757 addons/onedrive.php:961
2036
  msgid "For longer help, including screenshots, follow this link."
2037
  msgstr ""
2038
 
@@ -2056,11 +2116,11 @@ msgstr ""
2056
  msgid "Please re-authorize the connection to your %s account."
2057
  msgstr ""
2058
 
2059
- #: methods/email.php:73
2060
  msgid "configure it here"
2061
  msgstr ""
2062
 
2063
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2064
  msgid "To remove the block, please go here."
2065
  msgstr ""
2066
 
@@ -2205,7 +2265,7 @@ msgstr ""
2205
  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)"
2206
  msgstr ""
2207
 
2208
- #: methods/s3.php:842
2209
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2210
  msgstr ""
2211
 
@@ -2221,17 +2281,17 @@ msgstr ""
2221
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2222
  msgstr ""
2223
 
2224
- #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:569
2225
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2226
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2227
  msgstr ""
2228
 
2229
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2230
  #: udaddons/updraftplus-addons.php:747
2231
  msgid "It appears that your web server's IP Address (%s) is blocked."
2232
  msgstr ""
2233
 
2234
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2235
  #: udaddons/updraftplus-addons.php:747
2236
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2237
  msgstr ""
@@ -2282,7 +2342,7 @@ msgstr ""
2282
  msgid "(at same time as files backup)"
2283
  msgstr ""
2284
 
2285
- #: admin.php:2840
2286
  msgid "No backup has been completed"
2287
  msgstr ""
2288
 
@@ -2330,12 +2390,12 @@ msgstr ""
2330
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2331
  msgstr ""
2332
 
2333
- #: methods/s3.php:136 methods/s3.php:137 methods/s3.php:138 methods/s3.php:146
2334
- #: methods/s3.php:147 methods/s3.php:148
2335
  msgid "%s Error: Failed to initialise"
2336
  msgstr ""
2337
 
2338
- #: templates/wp-admin/settings/form-contents.php:216
2339
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2340
  msgid "or"
2341
  msgstr ""
@@ -2345,38 +2405,38 @@ msgctxt "Uploader: Drop backup files here - or - Select Files"
2345
  msgid "or"
2346
  msgstr ""
2347
 
2348
- #: admin.php:616
2349
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2350
  msgstr ""
2351
 
2352
- #: addons/sftp.php:379
2353
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2354
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2355
  msgstr ""
2356
 
2357
- #: addons/sftp.php:342
2358
  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."
2359
  msgstr ""
2360
 
2361
- #: methods/openstack2.php:152
2362
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2363
  msgid "tenant"
2364
  msgstr ""
2365
 
2366
- #: methods/openstack2.php:102
2367
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2368
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2369
  msgstr ""
2370
 
2371
- #: templates/wp-admin/settings/form-contents.php:287
2372
  msgid "your site's admin address"
2373
  msgstr ""
2374
 
2375
- #: templates/wp-admin/settings/form-contents.php:287
2376
  msgid "Check this box to have a basic report sent to"
2377
  msgstr ""
2378
 
2379
- #: admin.php:2849
2380
  msgctxt "i.e. Non-automatic"
2381
  msgid "Manual"
2382
  msgstr ""
@@ -2390,11 +2450,11 @@ msgstr ""
2390
  msgid "Change Lock Settings"
2391
  msgstr ""
2392
 
2393
- #: addons/morefiles.php:185
2394
  msgid "Any other file/directory on your server that you wish to back up"
2395
  msgstr ""
2396
 
2397
- #: admin.php:2098
2398
  msgid "For even more features and personal support, check out "
2399
  msgstr ""
2400
 
@@ -2410,7 +2470,7 @@ msgstr ""
2410
  msgid "Database decryption phrase"
2411
  msgstr ""
2412
 
2413
- #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:621
2414
  msgid "Automatic backup before update"
2415
  msgstr ""
2416
 
@@ -2490,15 +2550,15 @@ msgstr ""
2490
  msgid "The admin password has now been removed."
2491
  msgstr ""
2492
 
2493
- #: addons/morefiles.php:74
2494
  msgid "(learn more about this significant option)"
2495
  msgstr ""
2496
 
2497
- #: udaddons/options.php:273
2498
  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."
2499
  msgstr ""
2500
 
2501
- #: admin.php:2431 admin.php:3337
2502
  msgid "View Log"
2503
  msgstr ""
2504
 
@@ -2515,7 +2575,7 @@ msgstr ""
2515
  msgid "and retain this many scheduled backups"
2516
  msgstr ""
2517
 
2518
- #: admin.php:2810
2519
  msgid "incremental backup; base backup: %s"
2520
  msgstr ""
2521
 
@@ -2527,28 +2587,28 @@ msgstr ""
2527
  msgid "Upload files into UpdraftPlus."
2528
  msgstr ""
2529
 
2530
- #: admin.php:846 includes/class-commands.php:363
2531
  #: templates/wp-admin/settings/tab-status.php:22
2532
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2533
  msgstr ""
2534
 
2535
- #: class-updraftplus.php:3949
2536
  msgid "Backup label:"
2537
  msgstr ""
2538
 
2539
- #: admin.php:1625
2540
  msgid "Error: unexpected file read fail"
2541
  msgstr ""
2542
 
2543
- #: backup.php:3000
2544
  msgid "check your log for more details."
2545
  msgstr ""
2546
 
2547
- #: backup.php:2998
2548
  msgid "your web hosting account appears to be full; please see: %s"
2549
  msgstr ""
2550
 
2551
- #: backup.php:2996
2552
  msgid "A zip error occurred"
2553
  msgstr ""
2554
 
@@ -2556,19 +2616,19 @@ msgstr ""
2556
  msgid "Your label for this backup (optional)"
2557
  msgstr ""
2558
 
2559
- #: addons/googlecloud.php:822 methods/googledrive.php:915
2560
  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."
2561
  msgstr ""
2562
 
2563
- #: methods/updraftvault.php:608 udaddons/updraftplus-addons.php:789
2564
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2565
  msgstr ""
2566
 
2567
- #: methods/updraftvault.php:605 udaddons/updraftplus-addons.php:785
2568
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2569
  msgstr ""
2570
 
2571
- #: methods/updraftvault.php:545 udaddons/updraftplus-addons.php:655
2572
  msgid "You need to supply both an email address and a password"
2573
  msgstr ""
2574
 
@@ -2576,11 +2636,11 @@ msgstr ""
2576
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2577
  msgstr ""
2578
 
2579
- #: class-updraftplus.php:3968
2580
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2581
  msgstr ""
2582
 
2583
- #: class-updraftplus.php:3968
2584
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2585
  msgstr ""
2586
 
@@ -2608,27 +2668,27 @@ msgstr ""
2608
  msgid "Rows per batch"
2609
  msgstr ""
2610
 
2611
- #: udaddons/options.php:102
2612
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2613
  msgstr ""
2614
 
2615
- #: udaddons/options.php:100 udaddons/options.php:102
2616
  msgid "You need to connect to receive future updates to UpdraftPlus."
2617
  msgstr ""
2618
 
2619
- #: class-updraftplus.php:3941
2620
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2621
  msgstr ""
2622
 
2623
- #: class-updraftplus.php:3941
2624
  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."
2625
  msgstr ""
2626
 
2627
- #: class-updraftplus.php:3941
2628
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2629
  msgstr ""
2630
 
2631
- #: class-updraftplus.php:3941
2632
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2633
  msgstr ""
2634
 
@@ -2653,7 +2713,7 @@ msgstr ""
2653
  msgid "UpdraftPlus is on social media - check us out!"
2654
  msgstr ""
2655
 
2656
- #: admin.php:3398
2657
  msgid "Why am I seeing this?"
2658
  msgstr "Per què estic veient això ?"
2659
 
@@ -2665,15 +2725,15 @@ msgstr "La ubicació d'aquest directori es troba en la configuració d'experts,
2665
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2666
  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)."
2667
 
2668
- #: admin.php:1573 admin.php:1585
2669
  msgid "Start backup"
2670
  msgstr "Iniciar còpia de seguretat"
2671
 
2672
- #: class-updraftplus.php:3913 restorer.php:996
2673
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2674
  msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
2675
 
2676
- #: admin.php:2754
2677
  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."
2678
  msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
2679
 
@@ -2681,11 +2741,11 @@ msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'es
2681
  msgid "Unless you have a problem, you can completely ignore everything here."
2682
  msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
2683
 
2684
- #: admin.php:1784
2685
  msgid "This file could not be uploaded"
2686
  msgstr "No s'ha pogut carregar aquest fitxer"
2687
 
2688
- #: admin.php:1749
2689
  msgid "You will find more information about this in the Settings section."
2690
  msgstr "Més informació sobre això en la secció Configuració."
2691
 
@@ -2705,7 +2765,7 @@ msgstr "Explica'm més coses sobre les còpies de seguretat incrementals."
2705
  msgid "Memory limit"
2706
  msgstr "Límit de memòria"
2707
 
2708
- #: class-updraftplus.php:4071 restorer.php:1441
2709
  msgid "restoration"
2710
  msgstr "Restauració"
2711
 
@@ -2713,11 +2773,11 @@ msgstr "Restauració"
2713
  msgid "Table to be implicitly dropped: %s"
2714
  msgstr "Taula d'elements exclosos implicitament: %s."
2715
 
2716
- #: backup.php:832
2717
  msgid "Incremental"
2718
  msgstr "Incremental"
2719
 
2720
- #: backup.php:832
2721
  msgid "Full backup"
2722
  msgstr "Còpia de seguretat completa"
2723
 
@@ -2733,7 +2793,7 @@ msgstr "(veure registre ...)"
2733
  msgid "Backup succeeded"
2734
  msgstr "Còpia de seguretat executada correctament"
2735
 
2736
- #: admin.php:2850 admin.php:2851 admin.php:2852 updraftplus.php:92
2737
  #: updraftplus.php:93
2738
  msgid "Every %s hours"
2739
  msgstr "Cada %s hores"
@@ -2776,23 +2836,23 @@ msgstr "terme de cerca"
2776
  msgid "Too many database errors have occurred - aborting"
2777
  msgstr "Hi han hagut masses errors amb la base de dades - abortant"
2778
 
2779
- #: backup.php:898
2780
  msgid "read more at %s"
2781
  msgstr "Llegir més a %s"
2782
 
2783
- #: backup.php:898
2784
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2785
  msgstr ""
2786
 
2787
- #: methods/googledrive.php:921
2788
  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."
2789
  msgstr ""
2790
 
2791
- #: admin.php:3166
2792
  msgid "You have not yet made any backups."
2793
  msgstr ""
2794
 
2795
- #: templates/wp-admin/settings/form-contents.php:179
2796
  msgid "Database Options"
2797
  msgstr ""
2798
 
@@ -2808,30 +2868,30 @@ msgstr ""
2808
  msgid "Free disk space in account:"
2809
  msgstr ""
2810
 
2811
- #: admin.php:3924 templates/wp-admin/settings/tab-status.php:27
2812
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2813
  msgstr ""
2814
 
2815
- #: admin.php:456 admin.php:590 admin.php:1438
2816
  #: includes/deprecated-actions.php:30
2817
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2818
  #: templates/wp-admin/settings/tab-bar.php:6
2819
  msgid "Existing Backups"
2820
  msgstr ""
2821
 
2822
- #: admin.php:448 templates/wp-admin/settings/tab-bar.php:5
2823
  msgid "Current Status"
2824
  msgstr ""
2825
 
2826
- #: admin.php:851
2827
  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."
2828
  msgstr ""
2829
 
2830
- #: admin.php:851
2831
  msgid "To make a backup, just press the Backup Now button."
2832
  msgstr ""
2833
 
2834
- #: admin.php:851
2835
  msgid "Welcome to UpdraftPlus!"
2836
  msgstr ""
2837
 
@@ -2903,48 +2963,48 @@ msgstr ""
2903
  msgid "user"
2904
  msgstr ""
2905
 
2906
- #: class-updraftplus.php:1481
2907
  msgid "External database (%s)"
2908
  msgstr ""
2909
 
2910
- #: methods/googledrive.php:921
2911
  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."
2912
  msgstr ""
2913
 
2914
- #: methods/googledrive.php:386
2915
  msgid "failed to access parent folder"
2916
  msgstr ""
2917
 
2918
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2919
- #: methods/googledrive.php:343
2920
  msgid "However, subsequent access attempts failed:"
2921
  msgstr ""
2922
 
2923
- #: admin.php:3191
2924
  msgid "External database"
2925
  msgstr ""
2926
 
2927
- #: templates/wp-admin/settings/form-contents.php:321
2928
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2929
  msgstr ""
2930
 
2931
- #: templates/wp-admin/settings/form-contents.php:261
2932
  msgid "Back up more databases"
2933
  msgstr ""
2934
 
2935
- #: templates/wp-admin/settings/form-contents.php:218
2936
  msgid "First, enter the decryption key"
2937
  msgstr ""
2938
 
2939
- #: templates/wp-admin/settings/form-contents.php:200
2940
  msgid "You can manually decrypt an encrypted database here."
2941
  msgstr ""
2942
 
2943
- #: templates/wp-admin/settings/form-contents.php:188
2944
  msgid "It can also backup external databases."
2945
  msgstr ""
2946
 
2947
- #: templates/wp-admin/settings/form-contents.php:188
2948
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2949
  msgstr ""
2950
 
@@ -2952,7 +3012,7 @@ msgstr ""
2952
  msgid "use UpdraftPlus Premium"
2953
  msgstr ""
2954
 
2955
- #: class-updraftplus.php:3831
2956
  msgid "Decryption failed. The database file is encrypted."
2957
  msgstr ""
2958
 
@@ -2964,11 +3024,11 @@ msgstr ""
2964
  msgid "An error occurred on the first %s command - aborting run"
2965
  msgstr ""
2966
 
2967
- #: addons/moredatabase.php:98 backup.php:1360
2968
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2969
  msgstr ""
2970
 
2971
- #: backup.php:1360
2972
  msgid "database connection attempt failed."
2973
  msgstr ""
2974
 
@@ -2976,162 +3036,162 @@ msgstr ""
2976
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2977
  msgstr ""
2978
 
2979
- #: addons/google-enhanced.php:75
2980
  msgid "In %s, path names are case sensitive."
2981
  msgstr ""
2982
 
2983
- #: addons/azure.php:524 addons/google-enhanced.php:73 addons/onedrive.php:989
2984
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2985
  msgstr ""
2986
 
2987
- #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2988
  #: addons/onedrive.php:989
2989
  msgid "e.g. %s"
2990
  msgstr ""
2991
 
2992
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2993
  msgid "If the folder does not already exist, then it will be created."
2994
  msgstr ""
2995
 
2996
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2997
  msgid "Enter the path of the %s folder you wish to use here."
2998
  msgstr ""
2999
 
3000
- #: addons/azure.php:517 methods/openstack2.php:133
3001
  msgid "Container"
3002
  msgstr ""
3003
 
3004
- #: methods/openstack2.php:116
3005
  msgid "Leave this blank, and a default will be chosen."
3006
  msgstr ""
3007
 
3008
- #: methods/openstack2.php:107
3009
  msgid "Tenant"
3010
  msgstr ""
3011
 
3012
- #: methods/openstack2.php:107
3013
  msgid "Follow this link for more information"
3014
  msgstr ""
3015
 
3016
- #: methods/openstack2.php:99 methods/openstack2.php:157
3017
  msgid "authentication URI"
3018
  msgstr ""
3019
 
3020
- #: methods/openstack2.php:94
3021
  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."
3022
  msgstr ""
3023
 
3024
- #: methods/addon-base.php:194 methods/addon-base.php:214
3025
  msgid "Failed to download %s"
3026
  msgstr ""
3027
 
3028
- #: methods/addon-base.php:208
3029
  msgid "Failed to download"
3030
  msgstr ""
3031
 
3032
- #: methods/addon-base.php:106
3033
  msgid "failed to list files"
3034
  msgstr ""
3035
 
3036
- #: methods/addon-base.php:75 methods/addon-base.php:80
3037
  msgid "Failed to upload %s"
3038
  msgstr ""
3039
 
3040
- #: methods/dropbox.php:612 methods/dropbox.php:614
3041
  msgid "Success:"
3042
  msgstr ""
3043
 
3044
- #: addons/onedrive.php:997 methods/dropbox.php:513
3045
  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."
3046
  msgstr ""
3047
 
3048
- #: addons/onedrive.php:995 methods/dropbox.php:510
3049
  msgid "(You appear to be already authenticated)."
3050
  msgstr ""
3051
 
3052
- #: methods/dropbox.php:505 methods/dropbox.php:511 methods/dropbox.php:513
3053
  msgid "Dropbox"
3054
  msgstr ""
3055
 
3056
- #: addons/onedrive.php:994 methods/dropbox.php:505
3057
  msgid "Authenticate with %s"
3058
  msgstr ""
3059
 
3060
- #: methods/cloudfiles.php:409
3061
  msgid "Error downloading remote file: Failed to download"
3062
  msgstr ""
3063
 
3064
- #: methods/openstack-base.php:472 methods/openstack-base.php:477
3065
  msgid "Region: %s"
3066
  msgstr ""
3067
 
3068
- #: methods/openstack-base.php:471
3069
  msgid "%s error - we accessed the container, but failed to create a file within it"
3070
  msgstr ""
3071
 
3072
- #: methods/openstack-base.php:389
3073
  msgid "The %s object was not found"
3074
  msgstr ""
3075
 
3076
- #: methods/openstack-base.php:48 methods/openstack-base.php:312
3077
- #: methods/openstack-base.php:381
3078
  msgid "Could not access %s container"
3079
  msgstr ""
3080
 
3081
- #: methods/openstack-base.php:40 methods/openstack-base.php:108
3082
- #: methods/openstack-base.php:115 methods/openstack-base.php:304
3083
- #: methods/openstack-base.php:369
3084
  msgid "%s error - failed to access the container"
3085
  msgstr ""
3086
 
3087
- #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:520
3088
- #: methods/googledrive.php:970
3089
  msgid "Account holder's name: %s."
3090
  msgstr ""
3091
 
3092
- #: methods/googledrive.php:959
3093
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3094
  msgstr ""
3095
 
3096
- #: methods/googledrive.php:950
3097
  msgid "It is an ID number internal to Google Drive"
3098
  msgstr ""
3099
 
3100
- #: methods/googledrive.php:950
3101
  msgid "<strong>This is NOT a folder name</strong>."
3102
  msgstr ""
3103
 
3104
- #: addons/google-enhanced.php:72 addons/onedrive.php:988
3105
- #: methods/googledrive.php:946 methods/googledrive.php:956
3106
  msgid "Folder"
3107
  msgstr ""
3108
 
3109
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3110
- #: methods/googledrive.php:878
3111
  msgid "%s download: failed: file not found"
3112
  msgstr ""
3113
 
3114
- #: addons/googlecloud.php:579 methods/googledrive.php:363
3115
  msgid "Name: %s."
3116
  msgstr ""
3117
 
3118
- #: methods/googledrive.php:157
3119
  msgid "Google Drive list files: failed to access parent folder"
3120
  msgstr ""
3121
 
3122
- #: methods/insufficient.php:65 methods/viaaddon-base.php:87
3123
  msgid "Your %s version: %s."
3124
  msgstr ""
3125
 
3126
- #: methods/insufficient.php:64 methods/viaaddon-base.php:86
3127
  msgid "You will need to ask your web hosting company to upgrade."
3128
  msgstr ""
3129
 
3130
- #: methods/insufficient.php:17 methods/viaaddon-base.php:16
3131
  msgid "This remote storage method (%s) requires PHP %s or later."
3132
  msgstr ""
3133
 
3134
- #: admin.php:3743
3135
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3136
  msgstr ""
3137
 
@@ -3145,7 +3205,7 @@ msgstr ""
3145
 
3146
  #: addons/migrator.php:375
3147
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3148
- #: templates/wp-admin/settings/form-contents.php:208
3149
  msgid "This feature requires %s version %s or later"
3150
  msgstr ""
3151
 
@@ -3161,7 +3221,7 @@ msgstr ""
3161
  msgid "Failed to unpack the archive"
3162
  msgstr ""
3163
 
3164
- #: class-updraftplus.php:1048
3165
  msgid "Error - failed to download the file"
3166
  msgstr ""
3167
 
@@ -3181,44 +3241,44 @@ msgstr ""
3181
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3182
  msgstr ""
3183
 
3184
- #: addons/sftp.php:425
3185
  msgid "password/key"
3186
  msgstr ""
3187
 
3188
- #: addons/azure.php:510 addons/migrator.php:2198 addons/sftp.php:376
3189
- #: admin.php:637
3190
  msgid "Key"
3191
  msgstr ""
3192
 
3193
- #: addons/sftp.php:371
3194
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3195
  msgstr ""
3196
 
3197
- #: addons/sftp.php:308
3198
  msgid "The key provided was not in a valid format, or was corrupt."
3199
  msgstr ""
3200
 
3201
- #: addons/sftp.php:47
3202
  msgid "SCP/SFTP password/key"
3203
  msgstr ""
3204
 
3205
- #: admin.php:3226
3206
  msgid "Files backup (created by %s)"
3207
  msgstr ""
3208
 
3209
- #: admin.php:3226
3210
  msgid "Files and database WordPress backup (created by %s)"
3211
  msgstr ""
3212
 
3213
- #: addons/importer.php:261 admin.php:3220 class-updraftplus.php:2514
3214
  msgid "Backup created by: %s."
3215
  msgstr ""
3216
 
3217
- #: admin.php:3189
3218
  msgid "Database (created by %s)"
3219
  msgstr ""
3220
 
3221
- #: admin.php:3183 admin.php:3222
3222
  msgid "unknown source"
3223
  msgstr ""
3224
 
@@ -3230,31 +3290,31 @@ msgstr ""
3230
  msgid "Upload backup files"
3231
  msgstr ""
3232
 
3233
- #: admin.php:1828
3234
  msgid "This backup was created by %s, and can be imported."
3235
  msgstr ""
3236
 
3237
- #: admin.php:880
3238
  msgid "Read this page for a guide to possible causes and how to fix it."
3239
  msgstr ""
3240
 
3241
- #: admin.php:880
3242
  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."
3243
  msgstr ""
3244
 
3245
- #: admin.php:602 class-updraftplus.php:2521
3246
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3247
  msgstr ""
3248
 
3249
- #: admin.php:601
3250
  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."
3251
  msgstr ""
3252
 
3253
- #: admin.php:601 admin.php:602 class-updraftplus.php:2521
3254
  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))."
3255
  msgstr ""
3256
 
3257
- #: admin.php:3223 includes/class-wpadmin-commands.php:143 restorer.php:1410
3258
  msgid "Backup created by unknown source (%s) - cannot be restored."
3259
  msgstr ""
3260
 
@@ -3266,24 +3326,24 @@ msgstr ""
3266
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3267
  msgstr ""
3268
 
3269
- #: methods/dropbox.php:300
3270
  msgid "%s returned an unexpected HTTP response: %s"
3271
  msgstr ""
3272
 
3273
- #: addons/sftp.php:885
3274
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3275
  msgstr ""
3276
 
3277
- #: methods/cloudfiles.php:234 methods/dropbox.php:281
3278
- #: methods/openstack-base.php:103
3279
  msgid "No settings were found"
3280
  msgstr ""
3281
 
3282
- #: class-updraftplus.php:2642
3283
  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."
3284
  msgstr ""
3285
 
3286
- #: admin.php:568
3287
  msgid "Rescanning remote and local storage for backup sets..."
3288
  msgstr ""
3289
 
@@ -3300,24 +3360,24 @@ msgstr ""
3300
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3301
  msgstr ""
3302
 
3303
- #: addons/morefiles.php:428
3304
  msgid "No backup of location: there was nothing found to back up"
3305
  msgstr ""
3306
 
3307
- #: addons/moredatabase.php:234 addons/morefiles.php:224
3308
- #: addons/morefiles.php:245
3309
  msgid "Remove"
3310
  msgstr ""
3311
 
3312
- #: methods/s3.php:814
3313
  msgid "Other %s FAQs."
3314
  msgstr ""
3315
 
3316
- #: templates/wp-admin/settings/form-contents.php:321
3317
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3318
  msgstr ""
3319
 
3320
- #: addons/morefiles.php:382 admin.php:2942
3321
  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."
3322
  msgstr ""
3323
 
@@ -3325,23 +3385,23 @@ msgstr ""
3325
  msgid "Custom content type manager plugin data detected: clearing option cache"
3326
  msgstr ""
3327
 
3328
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1441
3329
  msgid "Your hosting company must enable these functions before %s can work."
3330
  msgstr ""
3331
 
3332
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1440
3333
  msgid "Your web server's PHP installation has these functions disabled: %s."
3334
  msgstr ""
3335
 
3336
- #: methods/ftp.php:281
3337
  msgid "encrypted FTP (explicit encryption)"
3338
  msgstr ""
3339
 
3340
- #: methods/ftp.php:280
3341
  msgid "encrypted FTP (implicit encryption)"
3342
  msgstr ""
3343
 
3344
- #: methods/ftp.php:279
3345
  msgid "regular non-encrypted FTP"
3346
  msgstr ""
3347
 
@@ -3349,7 +3409,7 @@ msgstr ""
3349
  msgid "Backup created by:"
3350
  msgstr ""
3351
 
3352
- #: udaddons/options.php:482
3353
  msgid "Available to claim on this site"
3354
  msgstr ""
3355
 
@@ -3397,15 +3457,15 @@ msgstr ""
3397
  msgid "Dismiss from main dashboard (for %s weeks)"
3398
  msgstr ""
3399
 
3400
- #: class-updraftplus.php:4121
3401
  msgid "The attempt to undo the double-compression succeeded."
3402
  msgstr ""
3403
 
3404
- #: class-updraftplus.php:4098 class-updraftplus.php:4119
3405
  msgid "The attempt to undo the double-compression failed."
3406
  msgstr ""
3407
 
3408
- #: class-updraftplus.php:4091
3409
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3410
  msgstr ""
3411
 
@@ -3413,15 +3473,15 @@ msgstr ""
3413
  msgid "Constants"
3414
  msgstr ""
3415
 
3416
- #: backup.php:1595
3417
  msgid "Failed to open database file for reading:"
3418
  msgstr ""
3419
 
3420
- #: backup.php:1408
3421
  msgid "No database tables found"
3422
  msgstr ""
3423
 
3424
- #: backup.php:1406
3425
  msgid "please wait for the rescheduled attempt"
3426
  msgstr ""
3427
 
@@ -3449,11 +3509,11 @@ msgstr ""
3449
  msgid "Errors occurred:"
3450
  msgstr ""
3451
 
3452
- #: admin.php:3418
3453
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3454
  msgstr ""
3455
 
3456
- #: templates/wp-admin/settings/form-contents.php:365
3457
  msgid "See this FAQ also."
3458
  msgstr ""
3459
 
@@ -3473,7 +3533,7 @@ msgstr ""
3473
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3474
  msgstr ""
3475
 
3476
- #: admin.php:855 class-updraftplus.php:597
3477
  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)"
3478
  msgstr ""
3479
 
@@ -3489,20 +3549,20 @@ msgstr ""
3489
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3490
  msgstr ""
3491
 
3492
- #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
3493
  #: includes/ftp.class.php:47
3494
  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."
3495
  msgstr ""
3496
 
3497
- #: admin.php:3751
3498
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3499
  msgstr ""
3500
 
3501
- #: admin.php:2006 admin.php:2016
3502
  msgid "Restore failed..."
3503
  msgstr ""
3504
 
3505
- #: addons/moredatabase.php:130 admin.php:1227
3506
  msgid "Messages:"
3507
  msgstr ""
3508
 
@@ -3596,98 +3656,98 @@ msgstr ""
3596
  msgid "Rackspace Cloud Files, enhanced"
3597
  msgstr ""
3598
 
3599
- #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:142
3600
  msgid "Cloud Files Container"
3601
  msgstr ""
3602
 
3603
- #: methods/cloudfiles-new.php:137
3604
  msgid "Cloud Files API Key"
3605
  msgstr ""
3606
 
3607
- #: methods/cloudfiles-new.php:132
3608
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3609
  msgstr ""
3610
 
3611
- #: methods/cloudfiles-new.php:129
3612
  msgid "Cloud Files Username"
3613
  msgstr ""
3614
 
3615
- #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:115
3616
  msgid "London (LON)"
3617
  msgstr ""
3618
 
3619
- #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:114
3620
  msgid "Hong Kong (HKG)"
3621
  msgstr ""
3622
 
3623
- #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:113
3624
  msgid "Northern Virginia (IAD)"
3625
  msgstr ""
3626
 
3627
- #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:112
3628
  msgid "Chicago (ORD)"
3629
  msgstr ""
3630
 
3631
- #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:111
3632
  msgid "Sydney (SYD)"
3633
  msgstr ""
3634
 
3635
- #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:110
3636
  msgid "Dallas (DFW) (default)"
3637
  msgstr ""
3638
 
3639
- #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:105
3640
  msgid "Cloud Files Storage Region"
3641
  msgstr ""
3642
 
3643
- #: methods/cloudfiles-new.php:97
3644
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3645
  msgstr ""
3646
 
3647
- #: methods/cloudfiles-new.php:95
3648
  msgid "US or UK-based Rackspace Account"
3649
  msgstr ""
3650
 
3651
- #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:95
3652
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3653
  msgstr ""
3654
 
3655
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3656
- #: methods/cloudfiles-new.php:39 methods/openstack-base.php:431
3657
- #: methods/openstack-base.php:433 methods/openstack-base.php:453
3658
  #: methods/openstack2.php:25
3659
  msgid "Authorisation failed (check your credentials)"
3660
  msgstr ""
3661
 
3662
- #: methods/updraftvault.php:525 udaddons/options.php:265
3663
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3664
  msgstr ""
3665
 
3666
- #: admin.php:615 central/bootstrap.php:513
3667
  msgid "Create"
3668
  msgstr ""
3669
 
3670
- #: admin.php:577
3671
  msgid "Trying..."
3672
  msgstr ""
3673
 
3674
- #: admin.php:576
3675
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3676
  msgstr ""
3677
 
3678
- #: class-updraftplus.php:1493
3679
  msgid "(when decrypted)"
3680
  msgstr ""
3681
 
3682
- #: admin.php:587 admin.php:3693
3683
  msgid "Error data:"
3684
  msgstr ""
3685
 
3686
- #: admin.php:3369
3687
  msgid "Backup does not exist in the backup history"
3688
  msgstr ""
3689
 
3690
- #: admin.php:2375
3691
  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."
3692
  msgstr ""
3693
 
@@ -3739,11 +3799,11 @@ msgstr ""
3739
  msgid "Email reports"
3740
  msgstr ""
3741
 
3742
- #: class-updraftplus.php:1489 class-updraftplus.php:1494
3743
  msgid "%s checksum: %s"
3744
  msgstr ""
3745
 
3746
- #: class-updraftplus.php:1462 class-updraftplus.php:1464
3747
  msgid "files: %s"
3748
  msgstr ""
3749
 
@@ -3763,7 +3823,7 @@ msgstr ""
3763
  msgid "Debugging information"
3764
  msgstr ""
3765
 
3766
- #: addons/reporting.php:194 admin.php:3129
3767
  msgid "Uploaded to:"
3768
  msgstr ""
3769
 
@@ -3783,7 +3843,7 @@ msgstr ""
3783
  msgid "Errors / warnings:"
3784
  msgstr ""
3785
 
3786
- #: addons/morefiles.php:62 addons/morefiles.php:63 addons/reporting.php:155
3787
  msgid "Contains:"
3788
  msgstr ""
3789
 
@@ -3803,166 +3863,166 @@ msgstr ""
3803
  msgid "%d errors, %d warnings"
3804
  msgstr ""
3805
 
3806
- #: addons/onedrive.php:717 methods/dropbox.php:596
3807
  msgid "%s authentication"
3808
  msgstr ""
3809
 
3810
- #: addons/onedrive.php:717 class-updraftplus.php:302 methods/dropbox.php:569
3811
- #: methods/dropbox.php:596 methods/dropbox.php:609 methods/dropbox.php:740
3812
  msgid "%s error: %s"
3813
  msgstr ""
3814
 
3815
- #: addons/googlecloud.php:815 methods/dropbox.php:480
3816
  msgid "%s logo"
3817
  msgstr ""
3818
 
3819
- #: methods/dropbox.php:214
3820
  msgid "%s did not return the expected response - check your log file for more details"
3821
  msgstr ""
3822
 
3823
- #: methods/s3.php:279
3824
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3825
  msgstr ""
3826
 
3827
- #: methods/email.php:74
3828
  msgid "For more options, use the \"%s\" add-on."
3829
  msgstr ""
3830
 
3831
- #: methods/email.php:73
3832
  msgid "Your site's admin email address (%s) will be used."
3833
  msgstr ""
3834
 
3835
- #: admin.php:624 methods/updraftvault.php:276 methods/updraftvault.php:321
3836
- #: udaddons/options.php:244
3837
  msgid "Connect"
3838
  msgstr ""
3839
 
3840
- #: templates/wp-admin/settings/form-contents.php:289
3841
  msgid "For more reporting features, use the Reporting add-on."
3842
  msgstr ""
3843
 
3844
- #: class-updraftplus.php:3901
3845
  msgid "(version: %s)"
3846
  msgstr ""
3847
 
3848
- #: addons/reporting.php:438 admin.php:566
3849
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3850
  msgstr ""
3851
 
3852
- #: addons/reporting.php:438 admin.php:565
3853
  msgid "When the Email storage method is enabled, also send the entire backup"
3854
  msgstr ""
3855
 
3856
- #: addons/reporting.php:153 backup.php:933
3857
  msgid "Latest status:"
3858
  msgstr ""
3859
 
3860
- #: backup.php:932
3861
  msgid "Backup contains:"
3862
  msgstr ""
3863
 
3864
- #: backup.php:889
3865
  msgid "Backed up: %s"
3866
  msgstr ""
3867
 
3868
- #: addons/reporting.php:236 backup.php:883
3869
  msgid "The log file has been attached to this email."
3870
  msgstr ""
3871
 
3872
- #: backup.php:847
3873
  msgid "Unknown/unexpected error - please raise a support request"
3874
  msgstr ""
3875
 
3876
- #: backup.php:844
3877
  msgid "Database only (files were not part of this particular schedule)"
3878
  msgstr ""
3879
 
3880
- #: backup.php:844
3881
  msgid "Database (files backup has not completed)"
3882
  msgstr ""
3883
 
3884
- #: backup.php:841
3885
  msgid "Files only (database was not part of this particular schedule)"
3886
  msgstr ""
3887
 
3888
- #: backup.php:841
3889
  msgid "Files (database backup has not completed)"
3890
  msgstr ""
3891
 
3892
- #: admin.php:229 backup.php:839
3893
  msgid "Files and database"
3894
  msgstr ""
3895
 
3896
- #: options.php:186
3897
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3898
  msgstr ""
3899
 
3900
- #: options.php:186
3901
  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>."
3902
  msgstr ""
3903
 
3904
- #: options.php:186
3905
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3906
  msgstr ""
3907
 
3908
- #: options.php:186
3909
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3910
  msgstr ""
3911
 
3912
- #: options.php:186
3913
  msgid "UpdraftPlus warning:"
3914
  msgstr ""
3915
 
3916
- #: udaddons/options.php:488
3917
  msgid "(or connect using the form on this page if you have already purchased it)"
3918
  msgstr ""
3919
 
3920
- #: udaddons/options.php:474
3921
  msgid "please follow this link to update the plugin in order to activate it"
3922
  msgstr ""
3923
 
3924
- #: udaddons/options.php:471
3925
  msgid "please follow this link to update the plugin in order to get it"
3926
  msgstr ""
3927
 
3928
- #: udaddons/options.php:461 udaddons/options.php:463
3929
  msgid "latest"
3930
  msgstr ""
3931
 
3932
- #: udaddons/options.php:459
3933
  msgid "Your version: %s"
3934
  msgstr ""
3935
 
3936
- #: udaddons/options.php:457
3937
  msgid "You've got it"
3938
  msgstr ""
3939
 
3940
- #: udaddons/options.php:423
3941
  msgid "UpdraftPlus Support"
3942
  msgstr ""
3943
 
3944
- #: udaddons/options.php:381
3945
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3946
  msgstr ""
3947
 
3948
- #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3949
  msgid "UpdraftPlus Addons"
3950
  msgstr ""
3951
 
3952
- #: udaddons/options.php:94
3953
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
3954
  msgstr ""
3955
 
3956
- #: methods/updraftvault.php:598 methods/updraftvault.php:616
3957
  #: udaddons/updraftplus-addons.php:795
3958
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3959
  msgstr ""
3960
 
3961
- #: methods/updraftvault.php:612 udaddons/updraftplus-addons.php:792
3962
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3963
  msgstr ""
3964
 
3965
- #: methods/updraftvault.php:571 udaddons/updraftplus-addons.php:752
3966
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3967
  msgstr ""
3968
 
@@ -3974,16 +4034,16 @@ msgstr ""
3974
  msgid "We failed to successfully connect to UpdraftPlus.Com"
3975
  msgstr ""
3976
 
3977
- #: methods/email.php:74 templates/wp-admin/settings/form-contents.php:270
3978
  #: templates/wp-admin/settings/tab-addons.php:200
3979
  msgid "Reporting"
3980
  msgstr ""
3981
 
3982
- #: admin.php:4104
3983
  msgid "Options (raw)"
3984
  msgstr ""
3985
 
3986
- #: addons/reporting.php:436 admin.php:564
3987
  msgid "Send a report only when there are warnings/errors"
3988
  msgstr ""
3989
 
@@ -3995,147 +4055,147 @@ msgstr ""
3995
  msgid "You should check the file ownerships and permissions in your WordPress installation"
3996
  msgstr ""
3997
 
3998
- #: templates/wp-admin/settings/form-contents.php:174
3999
  msgid "See also the \"More Files\" add-on from our shop."
4000
  msgstr ""
4001
 
4002
- #: backup.php:2987 class-updraftplus.php:610
4003
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4004
  msgstr ""
4005
 
4006
- #: class-updraftplus.php:594
4007
  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)"
4008
  msgstr ""
4009
 
4010
- #: udaddons/options.php:547
4011
  msgid "Manage Addons"
4012
  msgstr ""
4013
 
4014
- #: udaddons/options.php:489
4015
  msgid "Buy It"
4016
  msgstr ""
4017
 
4018
- #: udaddons/options.php:488
4019
  msgid "Get it from the UpdraftPlus.Com Store"
4020
  msgstr ""
4021
 
4022
- #: udaddons/options.php:482 udaddons/options.php:484
4023
  msgid "activate it on this site"
4024
  msgstr ""
4025
 
4026
- #: udaddons/options.php:484
4027
  msgid "You have an inactive purchase"
4028
  msgstr ""
4029
 
4030
- #: udaddons/options.php:474
4031
  msgid "Assigned to this site"
4032
  msgstr ""
4033
 
4034
- #: udaddons/options.php:471
4035
  msgid "Available for this site (via your all-addons purchase)"
4036
  msgstr ""
4037
 
4038
- #: udaddons/options.php:465
4039
  msgid "(apparently a pre-release or withdrawn release)"
4040
  msgstr ""
4041
 
4042
- #: udaddons/options.php:425
4043
  msgid "Go here"
4044
  msgstr ""
4045
 
4046
- #: udaddons/options.php:425
4047
  msgid "Need to get support?"
4048
  msgstr ""
4049
 
4050
- #: udaddons/options.php:407
4051
  msgid "An error occurred when trying to retrieve your add-ons."
4052
  msgstr ""
4053
 
4054
- #: udaddons/options.php:340
4055
  msgid "An unknown response was received. Response was:"
4056
  msgstr ""
4057
 
4058
- #: udaddons/options.php:339
4059
  msgid "Claim not granted - your account login details were wrong"
4060
  msgstr ""
4061
 
4062
- #: udaddons/options.php:337
4063
  msgid "Please wait whilst we make the claim..."
4064
  msgstr ""
4065
 
4066
- #: udaddons/options.php:290
4067
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4068
  msgstr ""
4069
 
4070
- #: udaddons/options.php:281
4071
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4072
  msgstr ""
4073
 
4074
- #: udaddons/options.php:272
4075
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4076
  msgstr ""
4077
 
4078
- #: udaddons/options.php:271
4079
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4080
  msgstr ""
4081
 
4082
- #: udaddons/options.php:242
4083
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4084
  msgstr ""
4085
 
4086
- #: udaddons/options.php:183
4087
  msgid "Forgotten your details?"
4088
  msgstr ""
4089
 
4090
- #: udaddons/options.php:172
4091
  msgid "Not yet got an account (it's free)? Go get one!"
4092
  msgstr ""
4093
 
4094
- #: udaddons/options.php:141
4095
  msgid "Connect with your UpdraftPlus.Com account"
4096
  msgstr ""
4097
 
4098
- #: udaddons/options.php:120
4099
  msgid "Your web server's version of PHP is too old ("
4100
  msgstr ""
4101
 
4102
- #: udaddons/options.php:114
4103
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4104
  msgstr ""
4105
 
4106
- #: udaddons/options.php:113
4107
  msgid "Go here to begin installing it."
4108
  msgstr ""
4109
 
4110
- #: udaddons/options.php:113
4111
  msgid "UpdraftPlus is not yet installed."
4112
  msgstr ""
4113
 
4114
- #: udaddons/options.php:110
4115
  msgid "Go here to activate it."
4116
  msgstr ""
4117
 
4118
- #: udaddons/options.php:109
4119
  msgid "UpdraftPlus is not yet activated."
4120
  msgstr ""
4121
 
4122
- #: udaddons/options.php:100 udaddons/options.php:102
4123
  msgid "Go here to connect."
4124
  msgstr ""
4125
 
4126
- #: udaddons/options.php:100
4127
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4128
  msgstr ""
4129
 
4130
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4131
  msgid "Without it, encryption will be a lot slower."
4132
  msgstr ""
4133
 
4134
- #: addons/moredatabase.php:299 addons/moredatabase.php:383
4135
  msgid "Your web-server does not have the %s module installed."
4136
  msgstr ""
4137
 
4138
- #: addons/googlecloud.php:898 methods/googledrive.php:966
4139
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4140
  msgstr ""
4141
 
@@ -4143,15 +4203,15 @@ msgstr ""
4143
  msgid "Drop backup files here"
4144
  msgstr ""
4145
 
4146
- #: admin.php:575
4147
  msgid "The web server returned an error code (try again, or check your web server logs)"
4148
  msgstr ""
4149
 
4150
- #: admin.php:573
4151
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4152
  msgstr ""
4153
 
4154
- #: admin.php:570
4155
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4156
  msgstr ""
4157
 
@@ -4159,7 +4219,7 @@ msgstr ""
4159
  msgid "Site home:"
4160
  msgstr ""
4161
 
4162
- #: addons/morestorage.php:78
4163
  msgid "Remote Storage Options"
4164
  msgstr ""
4165
 
@@ -4171,7 +4231,7 @@ msgstr ""
4171
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4172
  msgstr ""
4173
 
4174
- #: addons/azure.php:351 methods/stream-base.php:125 methods/stream-base.php:130
4175
  msgid "Upload failed"
4176
  msgstr ""
4177
 
@@ -4179,11 +4239,11 @@ msgstr ""
4179
  msgid "You can send a backup to more than one destination with an add-on."
4180
  msgstr ""
4181
 
4182
- #: admin.php:2593
4183
  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."
4184
  msgstr ""
4185
 
4186
- #: admin.php:2491
4187
  msgid "(%s%%, file %s of %s)"
4188
  msgstr ""
4189
 
@@ -4192,124 +4252,124 @@ msgstr ""
4192
  msgid "Read more about how this works..."
4193
  msgstr ""
4194
 
4195
- #: addons/sftp.php:485
4196
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4197
  msgstr ""
4198
 
4199
- #: addons/sftp.php:483
4200
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4201
  msgstr ""
4202
 
4203
- #: addons/sftp.php:402
4204
  msgid "Use SCP instead of SFTP"
4205
  msgstr ""
4206
 
4207
- #: addons/sftp.php:46
4208
  msgid "SCP/SFTP user setting"
4209
  msgstr ""
4210
 
4211
- #: addons/sftp.php:45
4212
  msgid "SCP/SFTP host setting"
4213
  msgstr ""
4214
 
4215
- #: methods/email.php:58
4216
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4217
  msgstr ""
4218
 
4219
- #: methods/email.php:45
4220
  msgid "Backup is of: %s."
4221
  msgstr ""
4222
 
4223
- #: admin.php:662
4224
  msgid "%s settings test result:"
4225
  msgstr ""
4226
 
4227
- #: admin.php:3287 admin.php:3289
4228
  msgid "(Not finished)"
4229
  msgstr ""
4230
 
4231
- #: admin.php:3289
4232
  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."
4233
  msgstr ""
4234
 
4235
- #: templates/wp-admin/settings/form-contents.php:348
4236
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4237
  msgstr ""
4238
 
4239
- #: templates/wp-admin/settings/form-contents.php:348
4240
  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)."
4241
  msgstr ""
4242
 
4243
- #: admin.php:2588
4244
  msgid "Job ID: %s"
4245
  msgstr ""
4246
 
4247
- #: admin.php:2573
4248
  msgid "last activity: %ss ago"
4249
  msgstr ""
4250
 
4251
- #: admin.php:2572
4252
  msgid "next resumption: %d (after %ss)"
4253
  msgstr ""
4254
 
4255
- #: admin.php:2555 central/bootstrap.php:405 central/bootstrap.php:412
4256
- #: methods/updraftvault.php:356 methods/updraftvault.php:436
4257
  msgid "Unknown"
4258
  msgstr ""
4259
 
4260
- #: admin.php:2505
4261
  msgid "Backup finished"
4262
  msgstr ""
4263
 
4264
- #: admin.php:2500
4265
  msgid "Waiting until scheduled time to retry because of errors"
4266
  msgstr ""
4267
 
4268
- #: admin.php:2496
4269
  msgid "Pruning old backup sets"
4270
  msgstr ""
4271
 
4272
- #: admin.php:2484
4273
  msgid "Uploading files to remote storage"
4274
  msgstr ""
4275
 
4276
- #: admin.php:2553
4277
  msgid "Encrypted database"
4278
  msgstr ""
4279
 
4280
- #: admin.php:2545
4281
  msgid "Encrypting database"
4282
  msgstr ""
4283
 
4284
- #: admin.php:2519
4285
  msgid "Created database backup"
4286
  msgstr ""
4287
 
4288
- #: admin.php:2532
4289
  msgid "table: %s"
4290
  msgstr ""
4291
 
4292
- #: admin.php:2530
4293
  msgid "Creating database backup"
4294
  msgstr ""
4295
 
4296
- #: admin.php:2478
4297
  msgid "Created file backup zips"
4298
  msgstr ""
4299
 
4300
- #: admin.php:2465
4301
  msgid "Creating file backup zips"
4302
  msgstr ""
4303
 
4304
- #: admin.php:2460
4305
  msgid "Backup begun"
4306
  msgstr ""
4307
 
4308
- #: admin.php:2303
4309
  msgid "Backups in progress:"
4310
  msgstr ""
4311
 
4312
- #: admin.php:859
4313
  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."
4314
  msgstr ""
4315
 
@@ -4325,26 +4385,26 @@ msgstr ""
4325
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4326
  msgstr ""
4327
 
4328
- #: class-updraftplus.php:2739
4329
  msgid "The backup has not finished; a resumption is scheduled"
4330
  msgstr ""
4331
 
4332
- #: class-updraftplus.php:1734
4333
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4334
  msgstr ""
4335
 
4336
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4337
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4338
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4339
- #: methods/googledrive.php:244
4340
  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)."
4341
  msgstr ""
4342
 
4343
- #: admin.php:2126
4344
  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)."
4345
  msgstr ""
4346
 
4347
- #: addons/autobackup.php:1006 admin.php:617
4348
  msgid "Proceed with update"
4349
  msgstr ""
4350
 
@@ -4397,19 +4457,19 @@ msgstr ""
4397
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4398
  msgstr ""
4399
 
4400
- #: addons/morefiles.php:170 addons/morefiles.php:171
4401
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4402
  msgstr ""
4403
 
4404
- #: addons/morefiles.php:170 addons/morefiles.php:171
4405
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4406
  msgstr ""
4407
 
4408
- #: addons/morefiles.php:123
4409
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4410
  msgstr ""
4411
 
4412
- #: addons/morefiles.php:113
4413
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4414
  msgstr ""
4415
 
@@ -4422,31 +4482,31 @@ msgstr ""
4422
  msgid "Support"
4423
  msgstr ""
4424
 
4425
- #: class-updraftplus.php:4054
4426
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4427
  msgstr ""
4428
 
4429
- #: class-updraftplus.php:4046
4430
  msgid "This database backup is missing core WordPress tables: %s"
4431
  msgstr ""
4432
 
4433
- #: class-updraftplus.php:3934
4434
  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."
4435
  msgstr ""
4436
 
4437
- #: class-updraftplus.php:3850
4438
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4439
  msgstr ""
4440
 
4441
- #: addons/autobackup.php:556 admin.php:827
4442
  msgid "Update Theme"
4443
  msgstr ""
4444
 
4445
- #: addons/autobackup.php:505 admin.php:823
4446
  msgid "Update Plugin"
4447
  msgstr ""
4448
 
4449
- #: addons/autobackup.php:985 admin.php:696 includes/updraftplus-notices.php:171
4450
  msgid "Be safe with an automatic backup"
4451
  msgstr ""
4452
 
@@ -4454,71 +4514,71 @@ msgstr ""
4454
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4455
  msgstr ""
4456
 
4457
- #: admin.php:2078
4458
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4459
  msgstr ""
4460
 
4461
- #: admin.php:611
4462
  msgid "The file was uploaded."
4463
  msgstr ""
4464
 
4465
- #: admin.php:610
4466
  msgid "Unknown server response status:"
4467
  msgstr ""
4468
 
4469
- #: admin.php:609
4470
  msgid "Unknown server response:"
4471
  msgstr ""
4472
 
4473
- #: admin.php:608
4474
  msgid "This decryption key will be attempted:"
4475
  msgstr ""
4476
 
4477
- #: admin.php:607
4478
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4479
  msgstr ""
4480
 
4481
- #: admin.php:606
4482
  msgid "Upload error"
4483
  msgstr ""
4484
 
4485
- #: admin.php:605
4486
  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)."
4487
  msgstr ""
4488
 
4489
- #: admin.php:604
4490
  msgid "Upload error:"
4491
  msgstr ""
4492
 
4493
- #: admin.php:603
4494
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4495
  msgstr ""
4496
 
4497
- #: admin.php:594
4498
  msgid "Download to your computer"
4499
  msgstr ""
4500
 
4501
- #: admin.php:593
4502
  msgid "Delete from your web server"
4503
  msgstr ""
4504
 
4505
- #: methods/s3.php:774
4506
  msgid "Examples of S3-compatible storage providers:"
4507
  msgstr ""
4508
 
4509
- #: admin.php:3643
4510
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4511
  msgstr ""
4512
 
4513
- #: admin.php:3260
4514
  msgid "You appear to be missing one or more archives from this multi-archive set."
4515
  msgstr ""
4516
 
4517
- #: admin.php:3257
4518
  msgid "(%d archive(s) in set)."
4519
  msgstr ""
4520
 
4521
- #: templates/wp-admin/settings/form-contents.php:325
4522
  msgid "Split archives every:"
4523
  msgstr ""
4524
 
@@ -4526,15 +4586,15 @@ msgstr ""
4526
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4527
  msgstr ""
4528
 
4529
- #: admin.php:584
4530
  msgid "Warnings:"
4531
  msgstr ""
4532
 
4533
- #: admin.php:583
4534
  msgid "Error: the server sent an empty response."
4535
  msgstr ""
4536
 
4537
- #: admin.php:1839
4538
  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?"
4539
  msgstr ""
4540
 
@@ -4570,7 +4630,7 @@ msgstr ""
4570
  msgid "No such backup set exists"
4571
  msgstr ""
4572
 
4573
- #: admin.php:1115
4574
  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"
4575
  msgstr ""
4576
 
@@ -4586,19 +4646,19 @@ msgstr ""
4586
  msgid "Moving unpacked backup into place..."
4587
  msgstr ""
4588
 
4589
- #: backup.php:2691 backup.php:2947
4590
  msgid "Failed to open the zip file (%s) - %s"
4591
  msgstr ""
4592
 
4593
- #: addons/morefiles.php:101
4594
  msgid "WordPress root directory server path: %s"
4595
  msgstr ""
4596
 
4597
- #: methods/s3.php:819
4598
  msgid "%s end-point"
4599
  msgstr ""
4600
 
4601
- #: methods/s3.php:781
4602
  msgid "... and many more!"
4603
  msgstr ""
4604
 
@@ -4606,31 +4666,31 @@ msgstr ""
4606
  msgid "S3 (Compatible)"
4607
  msgstr ""
4608
 
4609
- #: admin.php:3564
4610
  msgid "File is not locally present - needs retrieving from remote storage"
4611
  msgstr ""
4612
 
4613
- #: admin.php:3551
4614
  msgid "Looking for %s archive: file name: %s"
4615
  msgstr ""
4616
 
4617
- #: admin.php:3512
4618
  msgid "Final checks"
4619
  msgstr ""
4620
 
4621
- #: templates/wp-admin/settings/form-contents.php:331
4622
  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)."
4623
  msgstr ""
4624
 
4625
- #: templates/wp-admin/settings/form-contents.php:215
4626
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4627
  msgstr ""
4628
 
4629
- #: admin.php:2931
4630
  msgid "Your wp-content directory server path: %s"
4631
  msgstr ""
4632
 
4633
- #: admin.php:600
4634
  msgid "Raw backup history"
4635
  msgstr ""
4636
 
@@ -4638,11 +4698,11 @@ msgstr ""
4638
  msgid "Show raw backup and file list"
4639
  msgstr ""
4640
 
4641
- #: admin.php:582
4642
  msgid "Processing files - please wait..."
4643
  msgstr ""
4644
 
4645
- #: admin.php:3695 templates/wp-admin/settings/downloading-and-restoring.php:29
4646
  msgid "Please consult this FAQ for help on what to do about it."
4647
  msgstr ""
4648
 
@@ -4650,11 +4710,11 @@ msgstr ""
4650
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4651
  msgstr ""
4652
 
4653
- #: class-updraftplus.php:3858
4654
  msgid "Failed to open database file."
4655
  msgstr ""
4656
 
4657
- #: admin.php:4074
4658
  msgid "Known backups (raw)"
4659
  msgstr ""
4660
 
@@ -4678,21 +4738,21 @@ msgstr ""
4678
  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."
4679
  msgstr ""
4680
 
4681
- #: admin.php:3584
4682
  msgid "file is size:"
4683
  msgstr ""
4684
 
4685
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4686
- #: addons/migrator.php:369 admin.php:859 admin.php:2083 backup.php:2994
4687
  #: updraftplus.php:147
4688
  msgid "Go here for more information."
4689
  msgstr ""
4690
 
4691
- #: admin.php:581
4692
  msgid "Some files are still downloading or being processed - please wait."
4693
  msgstr ""
4694
 
4695
- #: class-updraftplus.php:3906 class-updraftplus.php:3924
4696
  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."
4697
  msgstr ""
4698
 
@@ -4704,81 +4764,82 @@ msgstr ""
4704
  msgid "Enter in format HH:MM (e.g. 14:22)."
4705
  msgstr ""
4706
 
4707
- #: methods/ftp.php:111
4708
  msgid "%s upload failed"
4709
  msgstr ""
4710
 
4711
- #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4712
  msgid "%s login failure"
4713
  msgstr ""
4714
 
4715
- #: methods/dropbox.php:425
4716
  msgid "You do not appear to be authenticated with %s"
4717
  msgstr ""
4718
 
4719
- #: methods/dropbox.php:392
4720
  msgid "Failed to access %s when deleting (see log file for more)"
4721
  msgstr ""
4722
 
4723
- #: methods/dropbox.php:384
4724
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4725
  msgstr ""
4726
 
4727
- #: methods/dropbox.php:119
4728
  msgid "Dropbox error: %s (see log file for more)"
4729
  msgstr ""
4730
 
4731
- #: methods/cloudfiles.php:422
4732
  msgid "Error - failed to download the file from %s"
4733
  msgstr ""
4734
 
4735
- #: methods/cloudfiles.php:418
4736
  msgid "Error - no such file exists at %s"
4737
  msgstr ""
4738
 
4739
- #: addons/azure.php:217 methods/addon-base.php:208 methods/cloudfiles.php:392
4740
- #: methods/cloudfiles.php:409 methods/googledrive.php:838
4741
- #: methods/openstack-base.php:403 methods/stream-base.php:266
4742
- #: methods/stream-base.php:273 methods/stream-base.php:286
 
4743
  msgid "%s Error"
4744
  msgstr ""
4745
 
4746
- #: methods/cloudfiles.php:219 methods/openstack-base.php:78
4747
  msgid "%s error - failed to upload file"
4748
  msgstr ""
4749
 
4750
- #: class-updraftplus.php:940 methods/cloudfiles.php:211
4751
  msgid "%s error - failed to re-assemble chunks"
4752
  msgstr ""
4753
 
4754
- #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4755
- #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4756
- #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4757
- #: methods/openstack-base.php:36 methods/openstack-base.php:300
4758
- #: methods/openstack-base.php:365 methods/openstack-base.php:437
4759
- #: methods/openstack-base.php:440 methods/openstack-base.php:457
4760
- #: methods/openstack-base.php:462
4761
  msgid "%s authentication failed"
4762
  msgstr ""
4763
 
4764
- #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1784
4765
- #: admin.php:1831 admin.php:1839 class-updraftplus.php:725
4766
- #: class-updraftplus.php:731 class-updraftplus.php:3829
4767
- #: class-updraftplus.php:3831 class-updraftplus.php:3964
4768
- #: class-updraftplus.php:3999 methods/googledrive.php:304 restorer.php:944
4769
  msgid "Error: %s"
4770
  msgstr ""
4771
 
4772
- #: admin.php:2868
4773
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4774
  msgstr ""
4775
 
4776
- #: admin.php:2866
4777
  msgid "Backup directory specified does <b>not</b> exist."
4778
  msgstr ""
4779
 
4780
- #: admin.php:2600 admin.php:2822 class-updraftplus.php:3906
4781
- #: class-updraftplus.php:3924
4782
  msgid "Warning: %s"
4783
  msgstr ""
4784
 
@@ -4786,31 +4847,31 @@ msgstr ""
4786
  msgid "Last backup job run:"
4787
  msgstr ""
4788
 
4789
- #: backup.php:2713
4790
  msgid "A very large file was encountered: %s (size: %s Mb)"
4791
  msgstr ""
4792
 
4793
- #: backup.php:2087 backup.php:2119
4794
  msgid "%s: unreadable file - could not be backed up"
4795
  msgstr ""
4796
 
4797
- #: backup.php:1495
4798
  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"
4799
  msgstr ""
4800
 
4801
- #: backup.php:1614
4802
  msgid "An error occurred whilst closing the final database file"
4803
  msgstr ""
4804
 
4805
- #: backup.php:874
4806
  msgid "Warnings encountered:"
4807
  msgstr ""
4808
 
4809
- #: class-updraftplus.php:2727
4810
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4811
  msgstr ""
4812
 
4813
- #: class-updraftplus.php:623
4814
  msgid "Your free disk space is very low - only %s Mb remain"
4815
  msgstr ""
4816
 
@@ -4842,23 +4903,23 @@ msgstr ""
4842
  msgid "Processed plugin:"
4843
  msgstr ""
4844
 
4845
- #: addons/sftp.php:74
4846
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4847
  msgstr ""
4848
 
4849
- #: addons/sftp.php:38
4850
  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."
4851
  msgstr ""
4852
 
4853
- #: methods/s3.php:795
4854
  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."
4855
  msgstr ""
4856
 
4857
- #: methods/s3.php:1033
4858
  msgid "Please check your access credentials."
4859
  msgstr ""
4860
 
4861
- #: addons/s3-enhanced.php:172 methods/s3.php:1011
4862
  msgid "The error reported by %s was:"
4863
  msgstr ""
4864
 
@@ -4874,7 +4935,7 @@ msgstr ""
4874
  msgid "Cannot create new tables, so skipping this command (%s)"
4875
  msgstr ""
4876
 
4877
- #: class-updraftplus.php:3975 restorer.php:1648
4878
  msgid "Site information:"
4879
  msgstr ""
4880
 
@@ -4882,38 +4943,38 @@ msgstr ""
4882
  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."
4883
  msgstr ""
4884
 
4885
- #: addons/migrator.php:325 admin.php:2078 class-updraftplus.php:3968
4886
  #: restorer.php:1970
4887
  msgid "Warning:"
4888
  msgstr ""
4889
 
4890
- #: class-updraftplus.php:3960 restorer.php:162
4891
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4892
  msgstr ""
4893
 
4894
- #: admin.php:3539
4895
  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."
4896
  msgstr ""
4897
 
4898
- #: admin.php:2987 methods/updraftvault.php:260
4899
  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."
4900
  msgstr ""
4901
 
4902
- #: admin.php:618
4903
  msgid "Close"
4904
  msgstr ""
4905
 
4906
- #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:574
4907
- #: methods/remotesend.php:71 methods/remotesend.php:79
4908
- #: methods/remotesend.php:220 methods/remotesend.php:237
4909
  msgid "Unexpected response:"
4910
  msgstr ""
4911
 
4912
- #: addons/reporting.php:434 admin.php:569
4913
  msgid "To send to more than one address, separate each address with a comma."
4914
  msgstr ""
4915
 
4916
- #: admin.php:598
4917
  msgid "PHP information"
4918
  msgstr ""
4919
 
@@ -4949,7 +5010,7 @@ msgstr ""
4949
  msgid "Also delete from remote storage"
4950
  msgstr ""
4951
 
4952
- #: admin.php:2330
4953
  msgid "Latest UpdraftPlus.com news:"
4954
  msgstr ""
4955
 
@@ -4966,7 +5027,7 @@ msgstr ""
4966
  msgid "News"
4967
  msgstr ""
4968
 
4969
- #: admin.php:1269
4970
  msgid "Backup set not found"
4971
  msgstr ""
4972
 
@@ -4984,7 +5045,7 @@ msgstr ""
4984
  msgid "Blog link"
4985
  msgstr ""
4986
 
4987
- #: admin.php:661
4988
  msgid "Testing %s Settings..."
4989
  msgstr ""
4990
 
@@ -4992,27 +5053,27 @@ msgstr ""
4992
  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."
4993
  msgstr ""
4994
 
4995
- #: admin.php:875
4996
  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."
4997
  msgstr ""
4998
 
4999
- #: admin.php:875
5000
  msgid "Notice"
5001
  msgstr ""
5002
 
5003
- #: backup.php:856
5004
  msgid "Errors encountered:"
5005
  msgstr ""
5006
 
5007
- #: admin.php:567
5008
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5009
  msgstr ""
5010
 
5011
- #: admin.php:580
5012
  msgid "Begun looking for this entity"
5013
  msgstr ""
5014
 
5015
- #: addons/dropbox-folders.php:26
5016
  msgid "Store at"
5017
  msgstr ""
5018
 
@@ -5028,7 +5089,7 @@ msgstr ""
5028
  msgid "Time taken (seconds):"
5029
  msgstr ""
5030
 
5031
- #: addons/migrator.php:1113 admin.php:585
5032
  msgid "Errors:"
5033
  msgstr ""
5034
 
@@ -5097,23 +5158,23 @@ msgstr ""
5097
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5098
  msgstr ""
5099
 
5100
- #: addons/multisite.php:630
5101
  msgid "Blog uploads"
5102
  msgstr ""
5103
 
5104
- #: addons/migrator.php:369 addons/multisite.php:623
5105
  msgid "Must-use plugins"
5106
  msgstr ""
5107
 
5108
- #: addons/multisite.php:193
5109
  msgid "You do not have permission to access this page."
5110
  msgstr ""
5111
 
5112
- #: addons/multisite.php:179 udaddons/options.php:225
5113
  msgid "You do not have sufficient permissions to access this page."
5114
  msgstr ""
5115
 
5116
- #: addons/multisite.php:173
5117
  msgid "Multisite Install"
5118
  msgstr ""
5119
 
@@ -5121,103 +5182,104 @@ msgstr ""
5121
  msgid "starting from next time it is"
5122
  msgstr ""
5123
 
5124
- #: addons/sftp.php:430
5125
  msgid "Failure: Port must be an integer."
5126
  msgstr ""
5127
 
5128
- #: methods/ftp.php:359 methods/openstack2.php:147
5129
  msgid "password"
5130
  msgstr ""
5131
 
5132
- #: addons/sftp.php:421 methods/openstack2.php:142
5133
  msgid "username"
5134
  msgstr ""
5135
 
5136
- #: addons/sftp.php:417
5137
  msgid "host name"
5138
  msgstr ""
5139
 
5140
- #: addons/sftp.php:395
5141
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5142
  msgstr ""
5143
 
5144
- #: addons/sftp.php:393
5145
  msgid "Directory path"
5146
  msgstr ""
5147
 
5148
- #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:368
5149
- #: addons/webdav.php:69 methods/openstack2.php:127 methods/updraftvault.php:320
5150
- #: udaddons/options.php:145
5151
  msgid "Password"
5152
  msgstr ""
5153
 
5154
- #: addons/sftp.php:354 addons/webdav.php:83
5155
  msgid "Port"
5156
  msgstr ""
5157
 
5158
- #: addons/moredatabase.php:237 addons/sftp.php:347 addons/webdav.php:75
5159
  msgid "Host"
5160
  msgstr ""
5161
 
5162
- #: addons/sftp.php:280
5163
  msgid "%s Error: Failed to download"
5164
  msgstr ""
5165
 
5166
- #: addons/sftp.php:460
5167
  msgid "Check your file permissions: Could not successfully create and enter:"
5168
  msgstr ""
5169
 
5170
- #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
5171
  msgid "No %s found"
5172
  msgstr ""
5173
 
5174
- #: addons/sftp.php:38
5175
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5176
  msgstr ""
5177
 
5178
- #: addons/sftp.php:38
5179
  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."
5180
  msgstr ""
5181
 
5182
- #: addons/morefiles.php:562
5183
  msgid "No backup of %s directories: there was nothing found to back up"
5184
  msgstr ""
5185
 
5186
- #: addons/morefiles.php:209
5187
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5188
  msgstr ""
5189
 
5190
- #: addons/morefiles.php:207
5191
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5192
  msgstr ""
5193
 
5194
- #: addons/morefiles.php:186
5195
  msgid "More Files"
5196
  msgstr ""
5197
 
5198
- #: addons/morefiles.php:100
5199
  msgid "WordPress core (including any additions to your WordPress root directory)"
5200
  msgstr ""
5201
 
5202
- #: addons/morefiles.php:93
5203
  msgid "The above files comprise everything in a WordPress installation."
5204
  msgstr ""
5205
 
5206
- #: addons/morefiles.php:74
5207
  msgid "Over-write wp-config.php"
5208
  msgstr ""
5209
 
5210
- #: addons/morefiles.php:70 addons/morefiles.php:562
 
5211
  msgid "WordPress Core"
5212
  msgstr ""
5213
 
5214
- #: methods/addon-base.php:294 methods/stream-base.php:316
5215
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5216
  msgstr ""
5217
 
5218
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5219
- #: addons/googlecloud.php:666 addons/sftp.php:447 admin.php:2654 admin.php:2689
5220
- #: admin.php:2698 methods/addon-base.php:284 methods/stream-base.php:302
5221
  msgid "Failed"
5222
  msgstr ""
5223
 
@@ -5225,404 +5287,404 @@ msgstr ""
5225
  msgid "WebDAV URL"
5226
  msgstr ""
5227
 
5228
- #: methods/stream-base.php:286
5229
  msgid "Local write failed: Failed to download"
5230
  msgstr ""
5231
 
5232
- #: methods/stream-base.php:273
5233
  msgid "Error opening remote file: Failed to download"
5234
  msgstr ""
5235
 
5236
- #: methods/stream-base.php:107 methods/stream-base.php:111
5237
  msgid "Chunk %s: A %s error occurred"
5238
  msgstr ""
5239
 
5240
- #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
5241
- #: methods/addon-base.php:97 methods/addon-base.php:128
5242
- #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
5243
- #: methods/googledrive.php:146 methods/stream-base.php:31
5244
- #: methods/stream-base.php:145 methods/stream-base.php:151
5245
- #: methods/stream-base.php:185 methods/stream-base.php:250
5246
  msgid "No %s settings were found"
5247
  msgstr ""
5248
 
5249
- #: methods/ftp.php:381
5250
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5251
  msgstr ""
5252
 
5253
- #: methods/ftp.php:378
5254
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5255
  msgstr ""
5256
 
5257
- #: methods/ftp.php:369
5258
  msgid "Failure: we did not successfully log in with those credentials."
5259
  msgstr ""
5260
 
5261
- #: methods/ftp.php:351
5262
  msgid "Failure: No server details were given."
5263
  msgstr ""
5264
 
5265
- #: methods/ftp.php:320
5266
  msgid "Needs to already exist"
5267
  msgstr ""
5268
 
5269
- #: methods/ftp.php:303
5270
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5271
  msgstr ""
5272
 
5273
- #: methods/ftp.php:303
5274
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5275
  msgstr ""
5276
 
5277
- #: addons/onedrive.php:755 methods/dropbox.php:627
5278
  msgid "Your %s account name: %s"
5279
  msgstr ""
5280
 
5281
- #: methods/dropbox.php:617 methods/dropbox.php:644
5282
  msgid "though part of the returned information was not as expected - your mileage may vary"
5283
  msgstr ""
5284
 
5285
- #: methods/dropbox.php:612 methods/dropbox.php:614
5286
  msgid "you have authenticated your %s account"
5287
  msgstr ""
5288
 
5289
- #: methods/dropbox.php:499 methods/dropbox.php:501
5290
  msgid "there's an add-on for that."
5291
  msgstr ""
5292
 
5293
- #: methods/dropbox.php:499 methods/dropbox.php:501
5294
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5295
  msgstr ""
5296
 
5297
- #: methods/dropbox.php:499 methods/dropbox.php:501
5298
  msgid "Backups are saved in"
5299
  msgstr ""
5300
 
5301
- #: methods/dropbox.php:499 methods/dropbox.php:501
5302
  msgid "Need to use sub-folders?"
5303
  msgstr ""
5304
 
5305
- #: methods/dropbox.php:212 methods/dropbox.php:233 methods/dropbox.php:249
5306
  msgid "error: failed to upload file to %s (see log file for more)"
5307
  msgstr ""
5308
 
5309
- #: methods/dropbox.php:97 methods/dropbox.php:114
5310
  msgid "You do not appear to be authenticated with Dropbox"
5311
  msgstr ""
5312
 
5313
- #: methods/s3.php:1028
5314
  msgid "The communication with %s was not encrypted."
5315
  msgstr ""
5316
 
5317
- #: methods/s3.php:1026
5318
  msgid "The communication with %s was encrypted."
5319
  msgstr ""
5320
 
5321
- #: addons/googlecloud.php:689 methods/s3.php:1023
5322
  msgid "We accessed the bucket, and were able to create files within it."
5323
  msgstr ""
5324
 
5325
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5326
- #: methods/s3.php:1033
5327
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5328
  msgstr ""
5329
 
5330
- #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1021
5331
- #: methods/s3.php:1033
5332
  msgid "Failure"
5333
  msgstr ""
5334
 
5335
- #: methods/s3.php:1009
5336
  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)."
5337
  msgstr ""
5338
 
5339
- #: addons/s3-enhanced.php:145 methods/openstack2.php:113 methods/s3.php:1003
5340
  msgid "Region"
5341
  msgstr ""
5342
 
5343
- #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:985
5344
  msgid "Failure: No bucket details were given."
5345
  msgstr ""
5346
 
5347
- #: methods/s3.php:963
5348
  msgid "API secret"
5349
  msgstr ""
5350
 
5351
- #: methods/s3.php:856
5352
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5353
  msgstr ""
5354
 
5355
- #: methods/s3.php:855
5356
  msgid "%s location"
5357
  msgstr ""
5358
 
5359
- #: methods/s3.php:851
5360
  msgid "%s secret key"
5361
  msgstr ""
5362
 
5363
- #: methods/s3.php:847
5364
  msgid "%s access key"
5365
  msgstr ""
5366
 
5367
- #: methods/s3.php:812
5368
  msgid "If you see errors about SSL certificates, then please go here for help."
5369
  msgstr ""
5370
 
5371
- #: methods/s3.php:810
5372
  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."
5373
  msgstr ""
5374
 
5375
- #: methods/s3.php:444 methods/s3.php:618 methods/s3.php:720
5376
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5377
  msgstr ""
5378
 
5379
- #: methods/s3.php:703 methods/s3.php:749
5380
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5381
  msgstr ""
5382
 
5383
- #: methods/s3.php:422
5384
  msgid "%s re-assembly error (%s): (see log file for more)"
5385
  msgstr ""
5386
 
5387
- #: methods/s3.php:418
5388
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5389
  msgstr ""
5390
 
5391
- #: methods/s3.php:402
5392
  msgid "%s chunk %s: upload failed"
5393
  msgstr ""
5394
 
5395
- #: methods/s3.php:392
5396
  msgid "%s error: file %s was shortened unexpectedly"
5397
  msgstr ""
5398
 
5399
- #: methods/s3.php:369
5400
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5401
  msgstr ""
5402
 
5403
- #: methods/email.php:69
5404
  msgid "Note:"
5405
  msgstr ""
5406
 
5407
- #: methods/email.php:43
5408
  msgid "WordPress Backup"
5409
  msgstr ""
5410
 
5411
- #: methods/cloudfiles.php:560 methods/openstack-base.php:476
5412
  msgid "We accessed the container, and were able to create files within it."
5413
  msgstr ""
5414
 
5415
- #: methods/cloudfiles.php:556
5416
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5417
  msgstr ""
5418
 
5419
- #: methods/cloudfiles.php:529 methods/openstack-base.php:420
5420
  msgid "Failure: No container details were given."
5421
  msgstr ""
5422
 
5423
- #: addons/moredatabase.php:238 addons/sftp.php:361 addons/webdav.php:63
5424
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:509
5425
- #: methods/openstack2.php:121
5426
  msgid "Username"
5427
  msgstr ""
5428
 
5429
- #: methods/cloudfiles-new.php:152 methods/cloudfiles.php:504 methods/s3.php:959
5430
  msgid "API key"
5431
  msgstr ""
5432
 
5433
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5434
- #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:417
5435
- #: addons/sftp.php:421 addons/sftp.php:425 addons/webdav.php:103 admin.php:638
5436
- #: methods/addon-base.php:277 methods/cloudfiles-new.php:152
5437
- #: methods/cloudfiles-new.php:157 methods/cloudfiles.php:504
5438
- #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
5439
- #: methods/openstack2.php:142 methods/openstack2.php:147
5440
- #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:959
5441
- #: methods/s3.php:963
5442
  msgid "Failure: No %s was given."
5443
  msgstr ""
5444
 
5445
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5446
- #: methods/openstack-base.php:513 methods/s3.php:799
5447
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5448
  msgstr ""
5449
 
5450
- #: methods/cloudfiles.php:490
5451
  msgid "Cloud Files container"
5452
  msgstr ""
5453
 
5454
- #: methods/cloudfiles.php:486
5455
  msgid "Cloud Files API key"
5456
  msgstr ""
5457
 
5458
- #: methods/cloudfiles.php:482
5459
  msgid "Cloud Files username"
5460
  msgstr ""
5461
 
5462
- #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:99
5463
- #: methods/cloudfiles.php:466
5464
  msgid "UK"
5465
  msgstr ""
5466
 
5467
- #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:98
5468
- #: methods/cloudfiles.php:465
5469
  msgid "US (default)"
5470
  msgstr ""
5471
 
5472
- #: methods/cloudfiles.php:462
5473
  msgid "US or UK Cloud"
5474
  msgstr ""
5475
 
5476
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5477
- #: methods/openstack2.php:94
5478
  msgid "Also, you should read this important FAQ."
5479
  msgstr ""
5480
 
5481
- #: methods/cloudfiles-new.php:91 methods/cloudfiles.php:458
5482
  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."
5483
  msgstr ""
5484
 
5485
- #: addons/sftp.php:408 admin.php:660 methods/addon-base.php:242
5486
- #: methods/cloudfiles.php:496 methods/ftp.php:329
5487
- #: methods/openstack-base.php:524 methods/s3.php:861
5488
- #: methods/stream-base.php:224
5489
  msgid "Test %s Settings"
5490
  msgstr ""
5491
 
5492
- #: methods/openstack-base.php:403
5493
  msgid "Error downloading remote file: Failed to download ("
5494
  msgstr ""
5495
 
5496
- #: class-updraftplus.php:980 class-updraftplus.php:1024
5497
- #: methods/cloudfiles.php:392 methods/stream-base.php:266
5498
  msgid "Error opening local file: Failed to download"
5499
  msgstr ""
5500
 
5501
- #: methods/cloudfiles.php:218
5502
  msgid "Cloud Files error - failed to upload file"
5503
  msgstr ""
5504
 
5505
- #: addons/sftp.php:134 addons/sftp.php:146 methods/cloudfiles.php:147
5506
- #: methods/cloudfiles.php:189 methods/openstack-base.php:73
5507
- #: methods/openstack-base.php:262 methods/s3.php:337 methods/s3.php:349
5508
- #: methods/s3.php:350
5509
  msgid "%s Error: Failed to upload"
5510
  msgstr ""
5511
 
5512
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5513
- #: class-updraftplus.php:842 methods/cloudfiles.php:130
5514
- #: methods/googledrive.php:756 methods/googledrive.php:761
5515
  msgid "%s Error: Failed to open local file"
5516
  msgstr ""
5517
 
5518
- #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
5519
- #: methods/cloudfiles.php:363
5520
  msgid "Cloud Files error - failed to create and access the container"
5521
  msgstr ""
5522
 
5523
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5524
- #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:539
5525
- #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
5526
  msgid "Cloud Files authentication failed"
5527
  msgstr ""
5528
 
5529
- #: addons/googlecloud.php:907 methods/googledrive.php:976
5530
  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."
5531
  msgstr ""
5532
 
5533
- #: addons/googlecloud.php:896 methods/googledrive.php:965
5534
  msgid "Authenticate with Google"
5535
  msgstr ""
5536
 
5537
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5538
- #: methods/googledrive.php:935
5539
  msgid "Client Secret"
5540
  msgstr ""
5541
 
5542
- #: addons/googlecloud.php:842 methods/googledrive.php:932
5543
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5544
  msgstr ""
5545
 
5546
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5547
- #: methods/googledrive.php:931
5548
  msgid "Client ID"
5549
  msgstr ""
5550
 
5551
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5552
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5553
  msgstr ""
5554
 
5555
- #: addons/googlecloud.php:828 methods/googledrive.php:921
5556
  msgid "Select 'Web Application' as the application type."
5557
  msgstr ""
5558
 
5559
- #: addons/googlecloud.php:826 methods/googledrive.php:919
5560
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5561
  msgstr ""
5562
 
5563
- #: methods/addon-base.php:230 methods/cloudfiles.php:438
5564
- #: methods/dropbox.php:481 methods/ftp.php:298 methods/googledrive.php:904
5565
- #: methods/openstack-base.php:503 methods/s3.php:771
5566
- #: methods/stream-base.php:217
5567
  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."
5568
  msgstr ""
5569
 
5570
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5571
- #: addons/googlecloud.php:709 methods/googledrive.php:460
5572
- #: methods/googledrive.php:461
5573
  msgid "Account is not authorized."
5574
  msgstr ""
5575
 
5576
- #: methods/googledrive.php:386 methods/googledrive.php:432
5577
- #: methods/googledrive.php:438 methods/googledrive.php:440
5578
- #: methods/stream-base.php:201
5579
  msgid "Failed to upload to %s"
5580
  msgstr ""
5581
 
5582
- #: methods/googledrive.php:415
5583
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5584
  msgstr ""
5585
 
5586
- #: methods/googledrive.php:512
5587
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5588
  msgstr ""
5589
 
5590
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5591
- #: methods/googledrive.php:363
5592
  msgid "you have authenticated your %s account."
5593
  msgstr ""
5594
 
5595
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5596
- #: addons/onedrive.php:793 addons/sftp.php:480 methods/addon-base.php:291
5597
- #: methods/cloudfiles.php:560 methods/googledrive.php:363
5598
- #: methods/openstack-base.php:476 methods/s3.php:1023
5599
- #: methods/stream-base.php:313
5600
  msgid "Success"
5601
  msgstr ""
5602
 
5603
- #: addons/onedrive.php:747 methods/dropbox.php:655 methods/dropbox.php:664
5604
- #: methods/googledrive.php:337
5605
  msgid "Your %s quota usage: %s %% used, %s available"
5606
  msgstr ""
5607
 
5608
- #: addons/googlecloud.php:390 methods/googledrive.php:310
5609
  msgid "Authorization failed"
5610
  msgstr ""
5611
 
5612
- #: addons/googlecloud.php:382 methods/googledrive.php:302
5613
  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."
5614
  msgstr ""
5615
 
5616
- #: methods/viaaddon-base.php:72
5617
  msgid "follow this link to get it"
5618
  msgstr ""
5619
 
5620
- #: methods/viaaddon-base.php:72
5621
  msgid "%s support is available as an add-on"
5622
  msgstr ""
5623
 
5624
- #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5625
- #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5626
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5627
  msgstr ""
5628
 
@@ -5631,8 +5693,8 @@ msgstr ""
5631
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5632
  msgstr ""
5633
 
5634
- #: addons/migrator.php:1770 admin.php:2657 admin.php:2691 admin.php:2695
5635
- #: admin.php:3569 admin.php:3582 restorer.php:2203 restorer.php:2309
5636
  msgid "OK"
5637
  msgstr ""
5638
 
@@ -5656,8 +5718,8 @@ msgstr ""
5656
  msgid "Old table prefix:"
5657
  msgstr ""
5658
 
5659
- #: addons/reporting.php:65 addons/reporting.php:152 backup.php:930
5660
- #: class-updraftplus.php:3901
5661
  msgid "Backup of:"
5662
  msgstr ""
5663
 
@@ -5733,156 +5795,152 @@ msgstr ""
5733
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5734
  msgstr ""
5735
 
5736
- #: admin.php:3590 admin.php:3591
5737
  msgid "Could not find one of the files for restoration"
5738
  msgstr ""
5739
 
5740
- #: admin.php:3685
5741
  msgid "Error message"
5742
  msgstr ""
5743
 
5744
- #: admin.php:3587
5745
  msgid "The backup records do not contain information about the proper size of this file."
5746
  msgstr ""
5747
 
5748
- #: admin.php:3579
5749
  msgid "Archive is expected to be size:"
5750
  msgstr ""
5751
 
5752
- #: admin.php:3463
5753
  msgid "If making a request for support, please include this information:"
5754
  msgstr ""
5755
 
5756
- #: admin.php:3462
5757
  msgid "ABORT: Could not find the information on which entities to restore."
5758
  msgstr ""
5759
 
5760
- #: admin.php:3416
5761
  msgid "UpdraftPlus Restoration: Progress"
5762
  msgstr ""
5763
 
5764
- #: admin.php:3368
5765
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5766
  msgstr ""
5767
 
5768
- #: admin.php:3317
5769
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5770
  msgstr ""
5771
 
5772
- #: admin.php:3252
5773
- msgid "Press here to download"
5774
- msgstr ""
5775
-
5776
- #: admin.php:3326
5777
  msgid "Delete this backup set"
5778
  msgstr ""
5779
 
5780
- #: admin.php:2999
5781
  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."
5782
  msgstr ""
5783
 
5784
- #: admin.php:2996
5785
  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."
5786
  msgstr ""
5787
 
5788
- #: admin.php:2994
5789
  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)."
5790
  msgstr ""
5791
 
5792
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448
5793
- #: methods/openstack-base.php:513 methods/s3.php:799
5794
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5795
  msgstr ""
5796
 
5797
- #: templates/wp-admin/settings/form-contents.php:388
5798
  msgid "Save Changes"
5799
  msgstr ""
5800
 
5801
- #: templates/wp-admin/settings/form-contents.php:365
5802
  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."
5803
  msgstr ""
5804
 
5805
- #: templates/wp-admin/settings/form-contents.php:364
5806
  msgid "Disable SSL entirely where possible"
5807
  msgstr ""
5808
 
5809
- #: templates/wp-admin/settings/form-contents.php:360
5810
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5811
  msgstr ""
5812
 
5813
- #: templates/wp-admin/settings/form-contents.php:360
5814
  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."
5815
  msgstr ""
5816
 
5817
- #: templates/wp-admin/settings/form-contents.php:359
5818
  msgid "Do not verify SSL certificates"
5819
  msgstr ""
5820
 
5821
- #: templates/wp-admin/settings/form-contents.php:355
5822
  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."
5823
  msgstr ""
5824
 
5825
- #: templates/wp-admin/settings/form-contents.php:354
5826
  msgid "Use the server's SSL certificates"
5827
  msgstr ""
5828
 
5829
- #: admin.php:2870
5830
  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."
5831
  msgstr ""
5832
 
5833
- #: admin.php:2870
5834
  msgid "click here"
5835
  msgstr ""
5836
 
5837
- #: admin.php:2870
5838
  msgid "or, to reset this option"
5839
  msgstr ""
5840
 
5841
- #: admin.php:2870
5842
  msgid "Follow this link to attempt to create the directory and set the permissions"
5843
  msgstr ""
5844
 
5845
- #: admin.php:2862
5846
  msgid "Backup directory specified is writable, which is good."
5847
  msgstr ""
5848
 
5849
- #: templates/wp-admin/settings/form-contents.php:335
5850
  msgid "Backup directory"
5851
  msgstr ""
5852
 
5853
- #: templates/wp-admin/settings/form-contents.php:330
5854
  msgid "Delete local backup"
5855
  msgstr ""
5856
 
5857
- #: templates/wp-admin/settings/form-contents.php:310
5858
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5859
  msgstr ""
5860
 
5861
- #: templates/wp-admin/settings/form-contents.php:310
5862
  msgid "Show expert settings"
5863
  msgstr ""
5864
 
5865
- #: templates/wp-admin/settings/form-contents.php:309
5866
  msgid "Expert settings"
5867
  msgstr ""
5868
 
5869
- #: templates/wp-admin/settings/form-contents.php:320
5870
  msgid "Debug mode"
5871
  msgstr ""
5872
 
5873
- #: templates/wp-admin/settings/form-contents.php:305
5874
  msgid "Advanced / Debugging Settings"
5875
  msgstr ""
5876
 
5877
- #: admin.php:597
5878
  msgid "Requesting start of backup..."
5879
  msgstr ""
5880
 
5881
- #: addons/morefiles.php:234 admin.php:613
5882
  msgid "Cancel"
5883
  msgstr ""
5884
 
5885
- #: addons/reporting.php:216 admin.php:3141
5886
  msgid "None"
5887
  msgstr ""
5888
 
@@ -5890,31 +5948,31 @@ msgstr ""
5890
  msgid "Choose your remote storage"
5891
  msgstr ""
5892
 
5893
- #: templates/wp-admin/settings/form-contents.php:203
5894
  msgid "Manually decrypt a database backup file"
5895
  msgstr ""
5896
 
5897
- #: templates/wp-admin/settings/form-contents.php:184
5898
  msgid "Database encryption phrase"
5899
  msgstr ""
5900
 
5901
- #: templates/wp-admin/settings/form-contents.php:282 udaddons/options.php:143
5902
  msgid "Email"
5903
  msgstr ""
5904
 
5905
- #: templates/wp-admin/settings/form-contents.php:174
5906
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5907
  msgstr ""
5908
 
5909
- #: addons/morefiles.php:380 admin.php:2940
5910
  msgid "Exclude these:"
5911
  msgstr ""
5912
 
5913
- #: admin.php:2931
5914
  msgid "Any other directories found inside wp-content"
5915
  msgstr ""
5916
 
5917
- #: templates/wp-admin/settings/form-contents.php:171
5918
  msgid "Include in files backup"
5919
  msgstr ""
5920
 
@@ -5926,44 +5984,44 @@ msgstr ""
5926
  msgid "To fix the time at which a backup should take place,"
5927
  msgstr ""
5928
 
5929
- #: admin.php:2856
5930
  msgid "Monthly"
5931
  msgstr ""
5932
 
5933
- #: admin.php:2855
5934
  msgid "Fortnightly"
5935
  msgstr ""
5936
 
5937
- #: admin.php:2854
5938
  msgid "Weekly"
5939
  msgstr ""
5940
 
5941
- #: admin.php:2853
5942
  msgid "Daily"
5943
  msgstr ""
5944
 
5945
- #: admin.php:620 admin.php:2836
5946
  msgid "Download log file"
5947
  msgstr ""
5948
 
5949
- #: admin.php:2754
5950
  msgid "The folder exists, but your webserver does not have permission to write to it."
5951
  msgstr ""
5952
 
5953
- #: admin.php:2749
5954
  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"
5955
  msgstr ""
5956
 
5957
- #: admin.php:2735
5958
  msgid "The request to the filesystem to create the directory failed."
5959
  msgstr ""
5960
 
5961
- #: addons/migrator.php:2243 admin.php:614 admin.php:2651 admin.php:2684
5962
- #: admin.php:3326 templates/wp-admin/settings/delete-and-restore-modals.php:5
5963
  msgid "Delete"
5964
  msgstr ""
5965
 
5966
- #: admin.php:2591
5967
  msgid "show log"
5968
  msgstr ""
5969
 
@@ -6039,7 +6097,7 @@ msgstr ""
6039
  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"
6040
  msgstr ""
6041
 
6042
- #: addons/morefiles.php:70
6043
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6044
  msgid "%s restoration options:"
6045
  msgstr ""
@@ -6076,7 +6134,7 @@ msgstr ""
6076
  msgid "Delete backup set"
6077
  msgstr ""
6078
 
6079
- #: admin.php:596
6080
  msgid "Download error: the server sent us a response which we did not understand."
6081
  msgstr ""
6082
 
@@ -6086,17 +6144,21 @@ msgstr ""
6086
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6087
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6088
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6089
- #: addons/s3-enhanced.php:127 addons/sftp.php:736 addons/webdav.php:79
6090
- #: admin.php:82 admin.php:588 admin.php:3584 admin.php:3614
6091
- #: methods/remotesend.php:76 methods/remotesend.php:234
6092
- #: methods/updraftvault.php:434 restorer.php:1364
6093
  msgid "Error:"
6094
  msgstr ""
6095
 
6096
- #: admin.php:579 templates/wp-admin/settings/downloading-and-restoring.php:34
6097
  msgid "calculating..."
6098
  msgstr ""
6099
 
 
 
 
 
6100
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6101
  msgid "UpdraftPlus - Upload backup files"
6102
  msgstr ""
@@ -6109,14 +6171,14 @@ msgstr ""
6109
  msgid "Web-server disk space in use by UpdraftPlus"
6110
  msgstr ""
6111
 
6112
- #: addons/google-enhanced.php:72 methods/googledrive.php:146
6113
- #: methods/googledrive.php:363 methods/googledrive.php:386
6114
- #: methods/googledrive.php:415 methods/googledrive.php:422
6115
- #: methods/googledrive.php:432 methods/googledrive.php:438
6116
- #: methods/googledrive.php:440 methods/googledrive.php:903
6117
- #: methods/googledrive.php:915 methods/googledrive.php:931
6118
- #: methods/googledrive.php:935 methods/googledrive.php:946
6119
- #: methods/googledrive.php:956
6120
  msgid "Google Drive"
6121
  msgstr ""
6122
 
@@ -6132,37 +6194,38 @@ msgstr ""
6132
  msgid "More tasks:"
6133
  msgstr ""
6134
 
6135
- #: admin.php:2354
6136
  msgid "Download most recently modified log file"
6137
  msgstr ""
6138
 
6139
- #: admin.php:2313 admin.php:2319 central/bootstrap.php:161
6140
  msgid "(Nothing yet logged)"
6141
  msgstr ""
6142
 
6143
- #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2312
6144
- #: admin.php:2317
6145
  msgid "Last log message"
6146
  msgstr ""
6147
 
6148
- #: addons/migrator.php:218 admin.php:619 admin.php:3317
6149
  #: templates/wp-admin/settings/tab-status.php:30
6150
  msgid "Restore"
6151
  msgstr ""
6152
 
6153
- #: admin.php:448 admin.php:612 templates/wp-admin/settings/tab-status.php:27
6154
  msgid "Backup Now"
6155
  msgstr ""
6156
 
6157
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6158
- #: addons/reporting.php:231 admin.php:233 admin.php:3116 admin.php:3189
6159
- #: admin.php:3668 includes/class-wpadmin-commands.php:138
 
6160
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6161
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6162
  msgid "Database"
6163
  msgstr ""
6164
 
6165
- #: admin.php:229 admin.php:4080
6166
  msgid "Files"
6167
  msgstr ""
6168
 
@@ -6170,11 +6233,11 @@ msgstr ""
6170
  msgid "Next scheduled backups"
6171
  msgstr ""
6172
 
6173
- #: admin.php:209
6174
  msgid "At the same time as the files backup"
6175
  msgstr ""
6176
 
6177
- #: admin.php:199 admin.php:220 admin.php:227
6178
  msgid "Nothing currently scheduled"
6179
  msgstr ""
6180
 
@@ -6186,15 +6249,15 @@ msgstr ""
6186
  msgid "JavaScript warning"
6187
  msgstr ""
6188
 
6189
- #: admin.php:599 admin.php:2381
6190
  msgid "Delete Old Directories"
6191
  msgstr ""
6192
 
6193
- #: admin.php:2126
6194
  msgid "Current limit is:"
6195
  msgstr ""
6196
 
6197
- #: admin.php:2100
6198
  msgid "Your backup has been restored."
6199
  msgstr ""
6200
 
@@ -6206,127 +6269,127 @@ msgstr ""
6206
  msgid "Lead developer's homepage"
6207
  msgstr ""
6208
 
6209
- #: admin.php:4000
6210
  msgid "Your settings have been wiped."
6211
  msgstr ""
6212
 
6213
- #: admin.php:2060
6214
  msgid "Backup directory successfully created."
6215
  msgstr ""
6216
 
6217
- #: admin.php:2053
6218
  msgid "Backup directory could not be created"
6219
  msgstr ""
6220
 
6221
- #: admin.php:2623
6222
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6223
  msgstr ""
6224
 
6225
- #: admin.php:2621
6226
  msgid "Old directories successfully removed."
6227
  msgstr ""
6228
 
6229
- #: admin.php:2618
6230
  msgid "Remove old directories"
6231
  msgstr ""
6232
 
6233
- #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2002
6234
- #: admin.php:2011 admin.php:2020 admin.php:2062 admin.php:2625
6235
  msgid "Return to UpdraftPlus Configuration"
6236
  msgstr ""
6237
 
6238
- #: admin.php:592 admin.php:2002 admin.php:2011 admin.php:2020 admin.php:2062
6239
- #: admin.php:2625 templates/wp-admin/settings/existing-backups-table.php:14
6240
  msgid "Actions"
6241
  msgstr ""
6242
 
6243
- #: admin.php:1991
6244
  msgid "Restore successful!"
6245
  msgstr ""
6246
 
6247
- #: admin.php:1921
6248
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6249
  msgstr ""
6250
 
6251
- #: admin.php:1831
6252
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6253
  msgstr ""
6254
 
6255
- #: admin.php:1712
6256
  msgid "No local copy present."
6257
  msgstr ""
6258
 
6259
- #: admin.php:1709
6260
  msgid "Download in progress"
6261
  msgstr ""
6262
 
6263
- #: admin.php:591 admin.php:1697
6264
  msgid "File ready."
6265
  msgstr ""
6266
 
6267
- #: admin.php:1678
6268
  msgid "Download failed"
6269
  msgstr ""
6270
 
6271
- #: admin.php:589 admin.php:1469 admin.php:3567 class-updraftplus.php:980
6272
- #: class-updraftplus.php:1024 methods/addon-base.php:75
6273
- #: methods/addon-base.php:80 methods/addon-base.php:194
6274
- #: methods/addon-base.php:214 methods/stream-base.php:201 restorer.php:2199
6275
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6276
  msgid "Error"
6277
  msgstr ""
6278
 
6279
- #: admin.php:1497
6280
  msgid "Could not find that job - perhaps it has already finished?"
6281
  msgstr ""
6282
 
6283
- #: admin.php:1489
6284
  msgid "Job deleted"
6285
  msgstr ""
6286
 
6287
- #: admin.php:1573
6288
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6289
  msgstr ""
6290
 
6291
- #: admin.php:663
6292
  msgid "Nothing yet logged"
6293
  msgstr ""
6294
 
6295
- #: admin.php:871
6296
  msgid "Please consult this FAQ if you have problems backing up."
6297
  msgstr ""
6298
 
6299
- #: admin.php:871
6300
  msgid "Your website is hosted using the %s web server."
6301
  msgstr ""
6302
 
6303
- #: admin.php:867
6304
  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."
6305
  msgstr ""
6306
 
6307
- #: admin.php:863
6308
  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."
6309
  msgstr ""
6310
 
6311
- #: admin.php:855 admin.php:859 admin.php:863 admin.php:867 admin.php:871
6312
- #: admin.php:880 admin.php:2987 admin.php:2994 admin.php:2996
6313
- #: methods/cloudfiles-new.php:86 methods/cloudfiles.php:448 methods/ftp.php:284
6314
- #: methods/openstack-base.php:513 methods/s3.php:795 methods/s3.php:799
6315
- #: methods/updraftvault.php:260
6316
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6317
  #: udaddons/updraftplus-addons.php:208
6318
  msgid "Warning"
6319
  msgstr ""
6320
 
6321
- #: admin.php:804
6322
  msgid "Add-Ons / Pro Support"
6323
  msgstr ""
6324
 
6325
- #: admin.php:464 admin.php:800 templates/wp-admin/settings/tab-bar.php:7
6326
  msgid "Settings"
6327
  msgstr ""
6328
 
6329
- #: admin.php:773
6330
  msgid "Allowed Files"
6331
  msgstr ""
6332
 
@@ -6334,7 +6397,7 @@ msgstr ""
6334
  msgid "Could not create %s zip. Consult the log file for more information."
6335
  msgstr ""
6336
 
6337
- #: backup.php:1999
6338
  msgid "Infinite recursion: consult your log for more information"
6339
  msgstr ""
6340
 
@@ -6346,88 +6409,88 @@ msgstr ""
6346
  msgid "Like UpdraftPlus and can spare one minute?"
6347
  msgstr ""
6348
 
6349
- #: addons/azure.php:217 class-updraftplus.php:3660 methods/googledrive.php:838
6350
  msgid "File not found"
6351
  msgstr ""
6352
 
6353
- #: class-updraftplus.php:3571
6354
  msgid "The decryption key used:"
6355
  msgstr ""
6356
 
6357
- #: class-updraftplus.php:3571 class-updraftplus.php:3841 restorer.php:390
6358
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6359
  msgstr ""
6360
 
6361
- #: class-updraftplus.php:3552 class-updraftplus.php:3829 restorer.php:377
6362
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6363
  msgstr ""
6364
 
6365
- #: backup.php:1889
6366
  msgid "Could not open the backup file for writing"
6367
  msgstr ""
6368
 
6369
- #: class-updraftplus.php:3186
6370
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6371
  msgstr ""
6372
 
6373
- #: class-updraftplus.php:3163
6374
  msgid "Could not read the directory"
6375
  msgstr ""
6376
 
6377
- #: admin.php:1749 backup.php:1127 restorer.php:225
6378
  msgid "Backup directory (%s) is not writable, or does not exist."
6379
  msgstr ""
6380
 
6381
- #: backup.php:931
6382
  msgid "WordPress backup is complete"
6383
  msgstr ""
6384
 
6385
- #: class-updraftplus.php:2736
6386
  msgid "The backup attempt has finished, apparently unsuccessfully"
6387
  msgstr ""
6388
 
6389
- #: class-updraftplus.php:2721
6390
  msgid "The backup apparently succeeded and is now complete"
6391
  msgstr ""
6392
 
6393
- #: addons/moredatabase.php:368
6394
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6395
  msgstr ""
6396
 
6397
- #: class-updraftplus.php:2148
6398
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6399
  msgstr ""
6400
 
6401
- #: class-updraftplus.php:1540
6402
  msgid "Others"
6403
  msgstr ""
6404
 
6405
- #: addons/multisite.php:452 class-updraftplus.php:1525
6406
  msgid "Uploads"
6407
  msgstr ""
6408
 
6409
- #: class-updraftplus.php:1524
6410
  msgid "Themes"
6411
  msgstr ""
6412
 
6413
- #: class-updraftplus.php:1523
6414
  msgid "Plugins"
6415
  msgstr ""
6416
 
6417
- #: class-updraftplus.php:394
6418
  msgid "No log files were found."
6419
  msgstr ""
6420
 
6421
- #: admin.php:1632 admin.php:1636 class-updraftplus.php:389
6422
  msgid "The log file could not be read."
6423
  msgstr ""
6424
 
6425
- #: admin.php:887 admin.php:891 admin.php:895 admin.php:899 admin.php:903
6426
- #: class-updraftplus.php:354 class-updraftplus.php:389
6427
- #: class-updraftplus.php:394 class-updraftplus.php:399
6428
  msgid "UpdraftPlus notice:"
6429
  msgstr ""
6430
 
6431
- #: addons/multisite.php:63 addons/multisite.php:660 options.php:42
6432
  msgid "UpdraftPlus Backups"
6433
  msgstr ""
11
  "Language: ca\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: methods/updraftvault.php:49
15
+ msgid "UpdraftVault"
16
+ msgstr ""
17
+
18
+ #: includes/updraftplus-notices.php:260
19
+ msgid "get more info"
20
+ msgstr ""
21
+
22
+ #: includes/updraftplus-notices.php:260
23
+ msgid "install"
24
+ msgstr ""
25
+
26
+ #: includes/updraftplus-notices.php:260
27
+ msgid "Switch to UpdraftPlus's free alternative:"
28
+ msgstr ""
29
+
30
+ #: includes/updraftplus-notices.php:260
31
+ msgid "Clef confirms that they are closing down their two factor security plugin."
32
+ msgstr ""
33
+
34
+ #: includes/class-wpadmin-commands.php:467
35
+ msgid "archive"
36
+ msgstr ""
37
+
38
+ #: includes/class-wpadmin-commands.php:458
39
+ msgid "Extra database"
40
+ msgstr ""
41
+
42
+ #: admin.php:3302
43
+ msgid "Press here to download or browse"
44
+ msgstr ""
45
+
46
+ #: admin.php:1018 admin.php:1028
47
+ msgid "Error: invalid path"
48
+ msgstr ""
49
+
50
+ #: admin.php:876
51
+ msgid "An error occurred when fetching storage module options: "
52
+ msgstr ""
53
+
54
+ #: admin.php:705
55
+ msgid "Loading log file"
56
+ msgstr ""
57
+
58
+ #: admin.php:704
59
+ msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
60
+ msgstr ""
61
+
62
+ #: admin.php:703
63
+ msgid "Search"
64
+ msgstr ""
65
+
66
+ #: admin.php:702
67
+ msgid "Select a file to view information about it"
68
+ msgstr ""
69
+
70
+ #: admin.php:701
71
+ msgid "Browsing zip file"
72
+ msgstr ""
73
+
74
+ #: admin.php:671
75
+ msgid "With UpdraftPlus Premium, you can directly download individual files from here."
76
+ msgstr ""
77
+
78
+ #: admin.php:619
79
+ msgid "Browse contents"
80
+ msgstr ""
81
+
82
  #: restorer.php:1629
83
  msgid "Skipped tables:"
84
  msgstr ""
85
 
86
+ #: class-updraftplus.php:4173
87
  msgid "This database backup has the following WordPress tables excluded: %s"
88
  msgstr ""
89
 
90
+ #: admin.php:2319
91
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
92
  msgstr ""
93
 
94
+ #: admin.php:2319
95
  msgid "All WordPress tables will be backed up."
96
  msgstr ""
97
 
98
+ #: admin.php:700
99
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
100
  msgstr ""
101
 
102
+ #: admin.php:700
103
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
104
  msgstr ""
105
 
106
+ #: admin.php:700
107
  msgid "The available memory on the server."
108
  msgstr ""
109
 
110
+ #: admin.php:700
111
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
112
  msgstr ""
113
 
114
+ #: admin.php:700
115
  msgid "The file failed to upload. Please check the following:"
116
  msgstr ""
117
 
118
+ #: admin.php:699
119
  msgid "HTTP code:"
120
  msgstr ""
121
 
122
+ #: admin.php:596
123
  msgid "You have chosen to backup a database, but no tables have been selected"
124
  msgstr ""
125
 
126
+ #: addons/moredatabase.php:575
127
  msgid "tables"
128
  msgstr ""
129
 
130
+ #: addons/moredatabase.php:574
131
  msgid "WordPress database"
132
  msgstr ""
133
 
134
+ #: addons/moredatabase.php:567
135
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
136
  msgstr ""
137
 
282
  msgid "UpdraftPlus"
283
  msgstr ""
284
 
285
+ #: templates/wp-admin/settings/form-contents.php:274
286
  msgid "Recommended: optimize your database with WP-Optimize."
287
  msgstr ""
288
 
305
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
306
  msgstr ""
307
 
308
+ #: addons/morefiles.php:306
 
 
 
 
309
  msgid "Please choose a file or directory"
310
  msgstr ""
311
 
312
+ #: addons/morefiles.php:295
313
  msgid "Confirm"
314
  msgstr ""
315
 
316
+ #: addons/morefiles.php:298
317
  msgid "Go up a directory"
318
  msgstr ""
319
 
320
+ #: addons/morefiles.php:291
321
  msgid "Add directory..."
322
  msgstr ""
323
 
324
+ #: addons/morefiles.php:284 addons/morefiles.php:304
325
  msgid "Edit"
326
  msgstr ""
327
 
328
+ #: addons/morefiles.php:267
329
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
330
  msgstr ""
331
 
605
  msgid "Backup of: %s"
606
  msgstr ""
607
 
608
+ #: methods/googledrive.php:196
609
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
610
  msgstr ""
611
 
612
+ #: methods/dropbox.php:556
613
  msgid "%s de-authentication"
614
  msgstr ""
615
 
616
+ #: methods/dropbox.php:524
617
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
618
  msgstr ""
619
 
620
+ #: methods/dropbox.php:498
621
  msgid "Follow this link to deauthenticate with %s."
622
  msgstr ""
623
 
625
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
626
  msgstr ""
627
 
628
+ #: backup.php:1507
629
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
630
  msgstr ""
631
 
633
  msgid "You have selected a remote storage option which has an authorization step to complete:"
634
  msgstr ""
635
 
636
+ #: admin.php:1440
637
  msgid "Remote files deleted:"
638
  msgstr ""
639
 
640
+ #: admin.php:1439
641
  msgid "Local files deleted:"
642
  msgstr ""
643
 
644
+ #: admin.php:921 admin.php:925 admin.php:933 admin.php:937
645
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
646
  msgstr ""
647
 
648
+ #: admin.php:698
649
  msgid "remote files deleted"
650
  msgstr ""
651
 
652
+ #: admin.php:696
653
  msgid "Complete"
654
  msgstr ""
655
 
656
+ #: admin.php:695
657
  msgid "Do you want to carry out the import?"
658
  msgstr ""
659
 
660
+ #: admin.php:694
661
  msgid "Which was exported on:"
662
  msgstr ""
663
 
664
+ #: admin.php:693
665
  msgid "This will import data from:"
666
  msgstr ""
667
 
668
+ #: admin.php:692
669
  msgid "Importing..."
670
  msgstr ""
671
 
672
+ #: admin.php:689
673
  msgid "You have not yet selected a file to import."
674
  msgstr ""
675
 
676
+ #: admin.php:673
677
  msgid "Your export file will be of your displayed settings, not your saved ones."
678
  msgstr ""
679
 
718
  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"
719
  msgstr ""
720
 
721
+ #: admin.php:2144
722
  msgid "To fix this problem go here."
723
  msgstr ""
724
 
725
+ #: admin.php:2144
726
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
727
  msgstr ""
728
 
729
+ #: admin.php:657
730
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
731
  msgstr ""
732
 
758
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
759
  msgstr ""
760
 
761
+ #: methods/s3.php:1014
762
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
763
  msgstr ""
764
 
765
+ #: methods/s3.php:91
766
  msgid "No settings were found - please go to the Settings tab and check your settings"
767
  msgstr ""
768
 
830
  msgid "Public key was sent to:"
831
  msgstr ""
832
 
833
+ #: backup.php:2079
834
  msgid "Failed to open directory (check the file permissions and ownership): %s"
835
  msgstr ""
836
 
837
+ #: backup.php:2057
838
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
839
  msgstr ""
840
 
880
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
881
  msgstr ""
882
 
883
+ #: methods/googledrive.php:407
884
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
885
  msgstr ""
886
 
887
+ #: methods/ftp.php:390
888
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
889
  msgstr ""
890
 
891
+ #: methods/ftp.php:362
892
  msgid "login"
893
  msgstr ""
894
 
895
+ #: methods/email.php:79
896
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
897
  msgstr ""
898
 
899
+ #: methods/email.php:30
900
  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."
901
  msgstr ""
902
 
903
+ #: class-updraftplus.php:1557
904
  msgid "Size: %s MB"
905
  msgstr ""
906
 
912
  msgid "i.e. you have an account there"
913
  msgstr ""
914
 
915
+ #: templates/wp-admin/settings/form-contents.php:359
916
  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)."
917
  msgstr ""
918
 
920
  msgid "Now"
921
  msgstr ""
922
 
923
+ #: class-updraftplus.php:4037 restorer.php:996
924
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
925
  msgstr ""
926
 
928
  msgid "(tap on an icon to select or unselect)"
929
  msgstr ""
930
 
931
+ #: methods/updraftvault.php:289 methods/updraftvault.php:295
932
+ #: methods/updraftvault.php:301
933
  msgid "%s per year"
934
  msgstr ""
935
 
936
+ #: methods/updraftvault.php:288 methods/updraftvault.php:294
937
+ #: methods/updraftvault.php:300
938
  msgid "or (annual discount)"
939
  msgstr ""
940
 
941
+ #: methods/updraftvault.php:233
942
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
943
  msgstr ""
944
 
945
+ #: class-updraftplus.php:418 class-updraftplus.php:463
946
  msgid "The given file was not found, or could not be read."
947
  msgstr ""
948
 
1042
  msgid "UpdraftCentral Connection"
1043
  msgstr ""
1044
 
1045
+ #: backup.php:849 class-updraftplus.php:2813
1046
  msgid "The backup was aborted by the user"
1047
  msgstr ""
1048
 
1049
+ #: admin.php:4003
1050
  msgid "Your settings have been saved."
1051
  msgstr ""
1052
 
1053
+ #: admin.php:3196
1054
  msgid "Total backup size:"
1055
  msgstr ""
1056
 
1057
+ #: admin.php:2641
1058
  msgid "stop"
1059
  msgstr ""
1060
 
1061
+ #: admin.php:2479
1062
  msgid "The backup has finished running"
1063
  msgstr ""
1064
 
1084
  msgid "calculate"
1085
  msgstr ""
1086
 
1087
+ #: admin.php:672
1088
  msgid "You should save your changes to ensure that they are used for making your backup."
1089
  msgstr ""
1090
 
1091
+ #: admin.php:665
1092
  msgid "We requested to delete the file, but could not understand the server's response"
1093
  msgstr ""
1094
 
1095
+ #: admin.php:664
1096
  msgid "Please enter a valid URL"
1097
  msgstr ""
1098
 
1099
+ #: admin.php:647
1100
  msgid "Saving..."
1101
  msgstr ""
1102
 
1103
+ #: admin.php:610
1104
  msgid "Error: the server sent us a response which we did not understand."
1105
  msgstr ""
1106
 
1107
+ #: admin.php:602
1108
  msgid "Fetching..."
1109
  msgstr ""
1110
 
1112
  msgid "Asia Pacific (Seoul)"
1113
  msgstr ""
1114
 
 
 
 
 
1115
  #: restorer.php:1618
1116
  msgid "Uploads URL:"
1117
  msgstr ""
1118
 
1119
+ #: backup.php:400
1120
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1121
  msgstr ""
1122
 
1128
  msgid "Skipping table %s: this table will not be restored"
1129
  msgstr ""
1130
 
1131
+ #: class-updraftplus.php:4088 restorer.php:1642
1132
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1133
  msgstr ""
1134
 
1135
+ #: class-updraftplus.php:4084
1136
  msgid "Please read this link for important information on this process."
1137
  msgstr ""
1138
 
1139
+ #: class-updraftplus.php:4084
1140
  msgid "It will be imported as a new site."
1141
  msgstr ""
1142
 
1143
+ #: admin.php:2292 templates/wp-admin/notices/horizontal-notice.php:16
1144
  #: templates/wp-admin/notices/horizontal-notice.php:18
1145
  msgid "Dismiss"
1146
  msgstr ""
1147
 
1148
+ #: admin.php:684
1149
  msgid "Please fill in the required information."
1150
  msgstr ""
1151
 
1152
+ #: addons/multisite.php:550
1153
  msgid "Read more..."
1154
  msgstr ""
1155
 
1156
+ #: addons/multisite.php:550
1157
  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."
1158
  msgstr ""
1159
 
1160
+ #: addons/multisite.php:541
1161
  msgid "may include some site-wide data"
1162
  msgstr ""
1163
 
1164
+ #: addons/multisite.php:536
1165
  msgid "All sites"
1166
  msgstr ""
1167
 
1168
+ #: addons/multisite.php:532
1169
  msgid "Which site to restore"
1170
  msgstr ""
1171
 
1172
+ #: addons/multisite.php:368 addons/multisite.php:378
1173
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1174
  msgstr ""
1175
 
1217
  msgid "Call WordPress action:"
1218
  msgstr ""
1219
 
1220
+ #: admin.php:2327
1221
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1222
  msgstr ""
1223
 
1224
+ #: admin.php:3604
1225
  msgid "Skipping: this archive was already restored."
1226
  msgstr ""
1227
 
1228
+ #: templates/wp-admin/settings/form-contents.php:200
1229
  msgid "File Options"
1230
  msgstr ""
1231
 
1253
  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)."
1254
  msgstr ""
1255
 
1256
+ #: admin.php:3885
1257
  msgid "Send this backup to remote storage"
1258
  msgstr ""
1259
 
1260
+ #: admin.php:3883
1261
  msgid "Check out UpdraftPlus Vault."
1262
  msgstr ""
1263
 
1264
+ #: admin.php:3883
1265
  msgid "Not got any remote storage?"
1266
  msgstr ""
1267
 
1268
+ #: admin.php:3883
1269
  msgid "settings"
1270
  msgstr ""
1271
 
1272
+ #: admin.php:3883
1273
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1274
  msgstr ""
1275
 
1276
+ #: admin.php:2325
1277
  msgid "Include any files in the backup"
1278
  msgstr ""
1279
 
1280
+ #: admin.php:2311
1281
  msgid "Include the database in the backup"
1282
  msgstr ""
1283
 
1284
+ #: admin.php:2291
1285
  msgid "Continue restoration"
1286
  msgstr ""
1287
 
1288
+ #: admin.php:2286
1289
  msgid "You have an unfinished restoration operation, begun %s ago."
1290
  msgstr ""
1291
 
1292
+ #: admin.php:2285
1293
  msgid "Unfinished restoration"
1294
  msgstr ""
1295
 
1296
+ #: admin.php:2283
1297
  msgid "%s minutes, %s seconds"
1298
  msgstr ""
1299
 
1300
+ #: admin.php:2230
1301
  msgid "Backup Contents And Schedule"
1302
  msgstr ""
1303
 
1305
  msgid "Premium / Extensions"
1306
  msgstr ""
1307
 
1308
+ #: admin.php:2010 admin.php:2019
1309
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1310
  msgstr ""
1311
 
1312
+ #: addons/morefiles.php:53 admin.php:670
1313
  msgctxt "(verb)"
1314
  msgid "Download"
1315
  msgstr ""
1316
 
1317
+ #: admin.php:595
1318
  msgid "You have chosen to backup files, but no file entities have been selected"
1319
  msgstr ""
1320
 
1321
+ #: admin.php:504
1322
  msgid "Extensions"
1323
  msgstr ""
1324
 
1325
+ #: admin.php:496 templates/wp-admin/settings/tab-bar.php:8
1326
  msgid "Advanced Tools"
1327
  msgstr ""
1328
 
1403
  msgid "Standard"
1404
  msgstr ""
1405
 
1406
+ #: addons/azure.php:523
1407
  msgid "container"
1408
  msgstr ""
1409
 
1410
+ #: addons/azure.php:523
1411
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1412
  msgstr ""
1413
 
1414
+ #: addons/azure.php:522
1415
  msgid "optional"
1416
  msgstr ""
1417
 
1418
+ #: addons/azure.php:522
1419
  msgid "Prefix"
1420
  msgstr ""
1421
 
1422
+ #: addons/azure.php:517
1423
  msgid "See Microsoft's guidelines on container naming by following this link."
1424
  msgstr ""
1425
 
1426
+ #: addons/azure.php:517
1427
  msgid "If the %s does not already exist, then it will be created."
1428
  msgstr ""
1429
 
1430
+ #: addons/azure.php:517
1431
  msgid "Enter the path of the %s you wish to use here."
1432
  msgstr ""
1433
 
1434
+ #: addons/azure.php:506
1435
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1436
  msgstr ""
1437
 
1438
+ #: addons/azure.php:505
1439
  msgid "Account Name"
1440
  msgstr ""
1441
 
1442
+ #: addons/azure.php:505 addons/azure.php:509
1443
  msgid "Azure"
1444
  msgstr ""
1445
 
1446
+ #: addons/azure.php:501
1447
  msgid "Create Azure credentials in your Azure developer console."
1448
  msgstr ""
1449
 
1450
+ #: addons/azure.php:449
1451
  msgid "Could not create the container"
1452
  msgstr ""
1453
 
1454
+ #: addons/azure.php:343
1455
  msgid "Could not access container"
1456
  msgstr ""
1457
 
1458
+ #: class-updraftplus.php:2830
1459
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1460
  msgstr ""
1461
 
1462
+ #: backup.php:1559
1463
  msgid "the options table was not found"
1464
  msgstr ""
1465
 
1466
+ #: backup.php:1557
1467
  msgid "no options or sitemeta table was found"
1468
  msgstr ""
1469
 
1470
+ #: backup.php:1557 backup.php:1559
1471
  msgid "The database backup appears to have failed"
1472
  msgstr ""
1473
 
1474
+ #: backup.php:1431
1475
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1476
  msgstr ""
1477
 
1588
  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)."
1589
  msgstr ""
1590
 
1591
+ #: admin.php:1438
1592
  msgid "Backup sets removed:"
1593
  msgstr ""
1594
 
1595
+ #: admin.php:683
1596
  msgid "Processing..."
1597
  msgstr ""
1598
 
1599
+ #: admin.php:681
1600
  msgid "For backups older than"
1601
  msgstr ""
1602
 
1603
+ #: admin.php:680
1604
  msgid "week(s)"
1605
  msgstr ""
1606
 
1607
+ #: admin.php:679
1608
  msgid "hour(s)"
1609
  msgstr ""
1610
 
1611
+ #: admin.php:678
1612
  msgid "day(s)"
1613
  msgstr ""
1614
 
1615
+ #: admin.php:677
1616
  msgid "in the month"
1617
  msgstr ""
1618
 
1619
+ #: admin.php:676
1620
  msgid "day"
1621
  msgstr ""
1622
 
1636
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1637
  msgstr ""
1638
 
1639
+ #: methods/updraftvault.php:595
1640
  msgid "You do not currently have any UpdraftPlus Vault quota"
1641
  msgstr ""
1642
 
1643
+ #: class-updraftplus.php:4123
1644
  msgid "You must upgrade MySQL to be able to use this database."
1645
  msgstr ""
1646
 
1647
+ #: class-updraftplus.php:4123
1648
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1649
  msgstr ""
1650
 
1651
+ #: admin.php:2129
1652
  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."
1653
  msgstr ""
1654
 
1655
+ #: methods/updraftvault.php:322
1656
  msgid "Don't know your email address, or forgotten your password?"
1657
  msgstr ""
1658
 
1659
+ #: methods/updraftvault.php:315
1660
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1661
  msgstr ""
1662
 
1663
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1664
  msgid "Read the FAQs here."
1665
  msgstr ""
1666
 
1672
  msgid "Server-side encryption"
1673
  msgstr ""
1674
 
1675
+ #: methods/updraftvault.php:604
1676
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1677
  msgstr ""
1678
 
1679
+ #: admin.php:929
1680
  msgid "Go to the remote storage settings in order to connect."
1681
  msgstr ""
1682
 
1683
+ #: admin.php:929
1684
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1685
  msgstr ""
1686
 
1687
+ #: methods/updraftvault.php:304
1688
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1689
  msgstr ""
1690
 
1691
+ #: admin.php:653
1692
  msgid "Update quota count"
1693
  msgstr ""
1694
 
1695
+ #: admin.php:652
1696
  msgid "Counting..."
1697
  msgstr ""
1698
 
1699
+ #: admin.php:651
1700
  msgid "Disconnecting..."
1701
  msgstr ""
1702
 
1703
+ #: admin.php:649
1704
  msgid "Connecting..."
1705
  msgstr ""
1706
 
1707
+ #: methods/updraftvault.php:378 methods/updraftvault.php:447
1708
  msgid "Refresh current status"
1709
  msgstr ""
1710
 
1711
+ #: methods/updraftvault.php:376 methods/updraftvault.php:392
1712
+ #: methods/updraftvault.php:394 methods/updraftvault.php:447
1713
  msgid "Get more quota"
1714
  msgstr ""
1715
 
1716
+ #: methods/updraftvault.php:373 methods/updraftvault.php:389
1717
+ #: methods/updraftvault.php:428
1718
  msgid "Current use:"
1719
  msgstr ""
1720
 
1721
+ #: methods/updraftvault.php:368
1722
  msgid "You can get more quota here"
1723
  msgstr ""
1724
 
1725
+ #: methods/updraftvault.php:368
1726
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1727
  msgstr ""
1728
 
1729
+ #: admin.php:650 methods/updraftvault.php:360
1730
  msgid "Disconnect"
1731
  msgstr ""
1732
 
1733
+ #: methods/updraftvault.php:352
1734
  msgid "Quota:"
1735
  msgstr ""
1736
 
1737
+ #: methods/updraftvault.php:350
1738
  msgid "Vault owner"
1739
  msgstr ""
1740
 
1741
+ #: methods/updraftvault.php:350
1742
  msgid "Well done - there's nothing more needed to set up."
1743
  msgstr ""
1744
 
1745
+ #: methods/updraftvault.php:350
1746
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1747
  msgstr ""
1748
 
1749
+ #: methods/updraftvault.php:346
1750
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1751
  msgstr ""
1752
 
1753
+ #: methods/updraftvault.php:322
1754
  msgid "Go here for help"
1755
  msgstr ""
1756
 
1757
+ #: methods/updraftvault.php:317
1758
  msgid "E-mail"
1759
  msgstr ""
1760
 
1761
+ #: methods/updraftvault.php:310 methods/updraftvault.php:325
1762
  msgid "Back..."
1763
  msgstr ""
1764
 
1765
+ #: methods/updraftvault.php:304
1766
  msgid "Subscriptions can be cancelled at any time."
1767
  msgstr ""
1768
 
1769
+ #: methods/updraftvault.php:287 methods/updraftvault.php:293
1770
+ #: methods/updraftvault.php:299
1771
  msgid "%s per quarter"
1772
  msgstr ""
1773
 
1774
+ #: central/bootstrap.php:542 methods/updraftvault.php:277
1775
+ #: methods/updraftvault.php:307
1776
  msgid "Read more about it here."
1777
  msgstr ""
1778
 
1779
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1780
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1781
  msgstr ""
1782
 
1783
+ #: methods/updraftvault.php:273
1784
  msgid "Already purchased space?"
1785
  msgstr ""
1786
 
1787
+ #: methods/updraftvault.php:270
1788
  msgid "Show the options"
1789
  msgstr ""
1790
 
1791
+ #: methods/updraftvault.php:269
1792
  msgid "First time user?"
1793
  msgstr ""
1794
 
1795
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1796
  msgid "Press a button to get started."
1797
  msgstr ""
1798
 
1799
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1800
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1801
  msgstr ""
1802
 
1803
+ #: methods/updraftvault.php:229
1804
  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."
1805
  msgstr ""
1806
 
1807
+ #: methods/updraftvault.php:226
1808
  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!"
1809
  msgstr ""
1810
 
1811
+ #: methods/updraftvault.php:223
1812
  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."
1813
  msgstr ""
1814
 
1815
+ #: methods/updraftvault.php:77
1816
  msgid "Updraft Vault"
1817
  msgstr ""
1818
 
1819
+ #: addons/azure.php:365 addons/googlecloud.php:693 methods/s3.php:1042
1820
  msgid "Delete failed:"
1821
  msgstr ""
1822
 
1823
+ #: backup.php:3019
1824
  msgid "The zip engine returned the message: %s."
1825
  msgstr ""
1826
 
1844
  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."
1845
  msgstr ""
1846
 
1847
+ #: addons/migrator.php:1742 admin.php:659
1848
  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."
1849
  msgstr ""
1850
 
1912
  msgid "Backup made by %s"
1913
  msgstr ""
1914
 
1915
+ #: methods/addon-base-v2.php:187
1916
  msgid "This storage method does not allow downloading"
1917
  msgstr ""
1918
 
1919
+ #: admin.php:3364
1920
  msgid "(backup set imported from remote location)"
1921
  msgstr ""
1922
 
1936
  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."
1937
  msgstr ""
1938
 
1939
+ #: addons/migrator.php:1770 admin.php:666
1940
  msgid "Testing connection..."
1941
  msgstr ""
1942
 
1943
+ #: admin.php:663
1944
  msgid "Deleting..."
1945
  msgstr ""
1946
 
1947
+ #: admin.php:662
1948
  msgid "key name"
1949
  msgstr ""
1950
 
1951
+ #: admin.php:660
1952
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1953
  msgstr ""
1954
 
1955
+ #: admin.php:657
1956
  msgid "Creating..."
1957
  msgstr ""
1958
 
1976
  msgid "Or, send a backup to another site"
1977
  msgstr ""
1978
 
1979
+ #: addons/migrator.php:1937 admin.php:667
1980
  msgid "Send"
1981
  msgstr ""
1982
 
1983
+ #: addons/migrator.php:1931 admin.php:658
1984
  msgid "Send to site:"
1985
  msgstr ""
1986
 
2012
  msgid "key"
2013
  msgstr ""
2014
 
2015
+ #: methods/ftp.php:336
2016
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2017
  msgstr ""
2018
 
2019
+ #: methods/ftp.php:334
2020
  msgid "Passive mode"
2021
  msgstr ""
2022
 
2023
+ #: methods/ftp.php:329
2024
  msgid "Remote path"
2025
  msgstr ""
2026
 
2027
+ #: methods/ftp.php:324
2028
  msgid "FTP password"
2029
  msgstr ""
2030
 
2031
+ #: methods/ftp.php:319
2032
  msgid "FTP login"
2033
  msgstr ""
2034
 
2035
+ #: methods/ftp.php:314
2036
  msgid "FTP server"
2037
  msgstr ""
2038
 
2044
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2045
  msgstr ""
2046
 
2047
+ #: addons/migrator.php:2180 admin.php:655
2048
  msgid "Add site"
2049
  msgstr ""
2050
 
2051
+ #: admin.php:654
2052
  msgid "Adding..."
2053
  msgstr ""
2054
 
2055
+ #: udaddons/options.php:345
2056
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2057
  msgstr ""
2058
 
2080
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2081
  msgstr ""
2082
 
2083
+ #: admin.php:646 admin.php:672 admin.php:673
2084
  msgid "You have made changes to your settings, and not saved."
2085
  msgstr ""
2086
 
2092
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2093
  msgstr ""
2094
 
2095
+ #: addons/azure.php:501 addons/migrator.php:1757 addons/onedrive.php:961
2096
  msgid "For longer help, including screenshots, follow this link."
2097
  msgstr ""
2098
 
2116
  msgid "Please re-authorize the connection to your %s account."
2117
  msgstr ""
2118
 
2119
+ #: methods/email.php:75
2120
  msgid "configure it here"
2121
  msgstr ""
2122
 
2123
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2124
  msgid "To remove the block, please go here."
2125
  msgstr ""
2126
 
2265
  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)"
2266
  msgstr ""
2267
 
2268
+ #: methods/s3.php:844
2269
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2270
  msgstr ""
2271
 
2281
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2282
  msgstr ""
2283
 
2284
+ #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:568
2285
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2286
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2287
  msgstr ""
2288
 
2289
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2290
  #: udaddons/updraftplus-addons.php:747
2291
  msgid "It appears that your web server's IP Address (%s) is blocked."
2292
  msgstr ""
2293
 
2294
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2295
  #: udaddons/updraftplus-addons.php:747
2296
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2297
  msgstr ""
2342
  msgid "(at same time as files backup)"
2343
  msgstr ""
2344
 
2345
+ #: admin.php:2888
2346
  msgid "No backup has been completed"
2347
  msgstr ""
2348
 
2390
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2391
  msgstr ""
2392
 
2393
+ #: methods/s3.php:138 methods/s3.php:139 methods/s3.php:140 methods/s3.php:148
2394
+ #: methods/s3.php:149 methods/s3.php:150
2395
  msgid "%s Error: Failed to initialise"
2396
  msgstr ""
2397
 
2398
+ #: templates/wp-admin/settings/form-contents.php:249
2399
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2400
  msgid "or"
2401
  msgstr ""
2405
  msgid "or"
2406
  msgstr ""
2407
 
2408
+ #: admin.php:640
2409
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2410
  msgstr ""
2411
 
2412
+ #: addons/sftp.php:380
2413
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2414
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2415
  msgstr ""
2416
 
2417
+ #: addons/sftp.php:343
2418
  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."
2419
  msgstr ""
2420
 
2421
+ #: methods/openstack2.php:156
2422
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2423
  msgid "tenant"
2424
  msgstr ""
2425
 
2426
+ #: methods/openstack2.php:106
2427
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2428
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2429
  msgstr ""
2430
 
2431
+ #: templates/wp-admin/settings/form-contents.php:320
2432
  msgid "your site's admin address"
2433
  msgstr ""
2434
 
2435
+ #: templates/wp-admin/settings/form-contents.php:320
2436
  msgid "Check this box to have a basic report sent to"
2437
  msgstr ""
2438
 
2439
+ #: admin.php:2897
2440
  msgctxt "i.e. Non-automatic"
2441
  msgid "Manual"
2442
  msgstr ""
2450
  msgid "Change Lock Settings"
2451
  msgstr ""
2452
 
2453
+ #: addons/morefiles.php:245
2454
  msgid "Any other file/directory on your server that you wish to back up"
2455
  msgstr ""
2456
 
2457
+ #: admin.php:2146
2458
  msgid "For even more features and personal support, check out "
2459
  msgstr ""
2460
 
2470
  msgid "Database decryption phrase"
2471
  msgstr ""
2472
 
2473
+ #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:645
2474
  msgid "Automatic backup before update"
2475
  msgstr ""
2476
 
2550
  msgid "The admin password has now been removed."
2551
  msgstr ""
2552
 
2553
+ #: addons/morefiles.php:134
2554
  msgid "(learn more about this significant option)"
2555
  msgstr ""
2556
 
2557
+ #: udaddons/options.php:280
2558
  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."
2559
  msgstr ""
2560
 
2561
+ #: admin.php:2479 admin.php:3387
2562
  msgid "View Log"
2563
  msgstr ""
2564
 
2575
  msgid "and retain this many scheduled backups"
2576
  msgstr ""
2577
 
2578
+ #: admin.php:2858
2579
  msgid "incremental backup; base backup: %s"
2580
  msgstr ""
2581
 
2587
  msgid "Upload files into UpdraftPlus."
2588
  msgstr ""
2589
 
2590
+ #: admin.php:880 includes/class-commands.php:363
2591
  #: templates/wp-admin/settings/tab-status.php:22
2592
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2593
  msgstr ""
2594
 
2595
+ #: class-updraftplus.php:4073
2596
  msgid "Backup label:"
2597
  msgstr ""
2598
 
2599
+ #: admin.php:1674
2600
  msgid "Error: unexpected file read fail"
2601
  msgstr ""
2602
 
2603
+ #: backup.php:3025
2604
  msgid "check your log for more details."
2605
  msgstr ""
2606
 
2607
+ #: backup.php:3023
2608
  msgid "your web hosting account appears to be full; please see: %s"
2609
  msgstr ""
2610
 
2611
+ #: backup.php:3021
2612
  msgid "A zip error occurred"
2613
  msgstr ""
2614
 
2616
  msgid "Your label for this backup (optional)"
2617
  msgstr ""
2618
 
2619
+ #: addons/googlecloud.php:822 methods/googledrive.php:902
2620
  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."
2621
  msgstr ""
2622
 
2623
+ #: methods/updraftvault.php:607 udaddons/updraftplus-addons.php:789
2624
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2625
  msgstr ""
2626
 
2627
+ #: methods/updraftvault.php:604 udaddons/updraftplus-addons.php:785
2628
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2629
  msgstr ""
2630
 
2631
+ #: methods/updraftvault.php:544 udaddons/updraftplus-addons.php:655
2632
  msgid "You need to supply both an email address and a password"
2633
  msgstr ""
2634
 
2636
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2637
  msgstr ""
2638
 
2639
+ #: class-updraftplus.php:4092
2640
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2641
  msgstr ""
2642
 
2643
+ #: class-updraftplus.php:4092
2644
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2645
  msgstr ""
2646
 
2668
  msgid "Rows per batch"
2669
  msgstr ""
2670
 
2671
+ #: udaddons/options.php:109
2672
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2673
  msgstr ""
2674
 
2675
+ #: udaddons/options.php:107 udaddons/options.php:109
2676
  msgid "You need to connect to receive future updates to UpdraftPlus."
2677
  msgstr ""
2678
 
2679
+ #: class-updraftplus.php:4065
2680
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2681
  msgstr ""
2682
 
2683
+ #: class-updraftplus.php:4065
2684
  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."
2685
  msgstr ""
2686
 
2687
+ #: class-updraftplus.php:4065
2688
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2689
  msgstr ""
2690
 
2691
+ #: class-updraftplus.php:4065
2692
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2693
  msgstr ""
2694
 
2713
  msgid "UpdraftPlus is on social media - check us out!"
2714
  msgstr ""
2715
 
2716
+ #: admin.php:3448
2717
  msgid "Why am I seeing this?"
2718
  msgstr "Per què estic veient això ?"
2719
 
2725
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2726
  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)."
2727
 
2728
+ #: admin.php:1622 admin.php:1634
2729
  msgid "Start backup"
2730
  msgstr "Iniciar còpia de seguretat"
2731
 
2732
+ #: class-updraftplus.php:4037 restorer.php:996
2733
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2734
  msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
2735
 
2736
+ #: admin.php:2802
2737
  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."
2738
  msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
2739
 
2741
  msgid "Unless you have a problem, you can completely ignore everything here."
2742
  msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
2743
 
2744
+ #: admin.php:1832
2745
  msgid "This file could not be uploaded"
2746
  msgstr "No s'ha pogut carregar aquest fitxer"
2747
 
2748
+ #: admin.php:1797
2749
  msgid "You will find more information about this in the Settings section."
2750
  msgstr "Més informació sobre això en la secció Configuració."
2751
 
2765
  msgid "Memory limit"
2766
  msgstr "Límit de memòria"
2767
 
2768
+ #: class-updraftplus.php:4195 restorer.php:1441
2769
  msgid "restoration"
2770
  msgstr "Restauració"
2771
 
2773
  msgid "Table to be implicitly dropped: %s"
2774
  msgstr "Taula d'elements exclosos implicitament: %s."
2775
 
2776
+ #: backup.php:844
2777
  msgid "Incremental"
2778
  msgstr "Incremental"
2779
 
2780
+ #: backup.php:844
2781
  msgid "Full backup"
2782
  msgstr "Còpia de seguretat completa"
2783
 
2793
  msgid "Backup succeeded"
2794
  msgstr "Còpia de seguretat executada correctament"
2795
 
2796
+ #: admin.php:2898 admin.php:2899 admin.php:2900 updraftplus.php:92
2797
  #: updraftplus.php:93
2798
  msgid "Every %s hours"
2799
  msgstr "Cada %s hores"
2836
  msgid "Too many database errors have occurred - aborting"
2837
  msgstr "Hi han hagut masses errors amb la base de dades - abortant"
2838
 
2839
+ #: backup.php:910
2840
  msgid "read more at %s"
2841
  msgstr "Llegir més a %s"
2842
 
2843
+ #: backup.php:910
2844
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2845
  msgstr ""
2846
 
2847
+ #: methods/googledrive.php:908
2848
  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."
2849
  msgstr ""
2850
 
2851
+ #: admin.php:3216
2852
  msgid "You have not yet made any backups."
2853
  msgstr ""
2854
 
2855
+ #: templates/wp-admin/settings/form-contents.php:212
2856
  msgid "Database Options"
2857
  msgstr ""
2858
 
2868
  msgid "Free disk space in account:"
2869
  msgstr ""
2870
 
2871
+ #: admin.php:3974 templates/wp-admin/settings/tab-status.php:27
2872
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2873
  msgstr ""
2874
 
2875
+ #: admin.php:480 admin.php:614 admin.php:1487
2876
  #: includes/deprecated-actions.php:30
2877
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2878
  #: templates/wp-admin/settings/tab-bar.php:6
2879
  msgid "Existing Backups"
2880
  msgstr ""
2881
 
2882
+ #: admin.php:472 templates/wp-admin/settings/tab-bar.php:5
2883
  msgid "Current Status"
2884
  msgstr ""
2885
 
2886
+ #: admin.php:885
2887
  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."
2888
  msgstr ""
2889
 
2890
+ #: admin.php:885
2891
  msgid "To make a backup, just press the Backup Now button."
2892
  msgstr ""
2893
 
2894
+ #: admin.php:885
2895
  msgid "Welcome to UpdraftPlus!"
2896
  msgstr ""
2897
 
2963
  msgid "user"
2964
  msgstr ""
2965
 
2966
+ #: class-updraftplus.php:1554
2967
  msgid "External database (%s)"
2968
  msgstr ""
2969
 
2970
+ #: methods/googledrive.php:908
2971
  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."
2972
  msgstr ""
2973
 
2974
+ #: methods/googledrive.php:371
2975
  msgid "failed to access parent folder"
2976
  msgstr ""
2977
 
2978
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2979
+ #: methods/googledrive.php:328
2980
  msgid "However, subsequent access attempts failed:"
2981
  msgstr ""
2982
 
2983
+ #: admin.php:3241
2984
  msgid "External database"
2985
  msgstr ""
2986
 
2987
+ #: templates/wp-admin/settings/form-contents.php:354
2988
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2989
  msgstr ""
2990
 
2991
+ #: templates/wp-admin/settings/form-contents.php:294
2992
  msgid "Back up more databases"
2993
  msgstr ""
2994
 
2995
+ #: templates/wp-admin/settings/form-contents.php:251
2996
  msgid "First, enter the decryption key"
2997
  msgstr ""
2998
 
2999
+ #: templates/wp-admin/settings/form-contents.php:233
3000
  msgid "You can manually decrypt an encrypted database here."
3001
  msgstr ""
3002
 
3003
+ #: templates/wp-admin/settings/form-contents.php:221
3004
  msgid "It can also backup external databases."
3005
  msgstr ""
3006
 
3007
+ #: templates/wp-admin/settings/form-contents.php:221
3008
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3009
  msgstr ""
3010
 
3012
  msgid "use UpdraftPlus Premium"
3013
  msgstr ""
3014
 
3015
+ #: class-updraftplus.php:3955
3016
  msgid "Decryption failed. The database file is encrypted."
3017
  msgstr ""
3018
 
3024
  msgid "An error occurred on the first %s command - aborting run"
3025
  msgstr ""
3026
 
3027
+ #: addons/moredatabase.php:98 backup.php:1372
3028
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3029
  msgstr ""
3030
 
3031
+ #: backup.php:1372
3032
  msgid "database connection attempt failed."
3033
  msgstr ""
3034
 
3036
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3037
  msgstr ""
3038
 
3039
+ #: addons/google-enhanced.php:84
3040
  msgid "In %s, path names are case sensitive."
3041
  msgstr ""
3042
 
3043
+ #: addons/azure.php:523 addons/google-enhanced.php:82 addons/onedrive.php:989
3044
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3045
  msgstr ""
3046
 
3047
+ #: addons/google-enhanced.php:82 addons/googlecloud.php:860
3048
  #: addons/onedrive.php:989
3049
  msgid "e.g. %s"
3050
  msgstr ""
3051
 
3052
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3053
  msgid "If the folder does not already exist, then it will be created."
3054
  msgstr ""
3055
 
3056
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3057
  msgid "Enter the path of the %s folder you wish to use here."
3058
  msgstr ""
3059
 
3060
+ #: addons/azure.php:516 methods/openstack2.php:137
3061
  msgid "Container"
3062
  msgstr ""
3063
 
3064
+ #: methods/openstack2.php:120
3065
  msgid "Leave this blank, and a default will be chosen."
3066
  msgstr ""
3067
 
3068
+ #: methods/openstack2.php:111
3069
  msgid "Tenant"
3070
  msgstr ""
3071
 
3072
+ #: methods/openstack2.php:111
3073
  msgid "Follow this link for more information"
3074
  msgstr ""
3075
 
3076
+ #: methods/openstack2.php:103 methods/openstack2.php:161
3077
  msgid "authentication URI"
3078
  msgstr ""
3079
 
3080
+ #: methods/openstack2.php:98
3081
  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."
3082
  msgstr ""
3083
 
3084
+ #: methods/addon-base-v2.php:204 methods/addon-base-v2.php:224
3085
  msgid "Failed to download %s"
3086
  msgstr ""
3087
 
3088
+ #: methods/addon-base-v2.php:218
3089
  msgid "Failed to download"
3090
  msgstr ""
3091
 
3092
+ #: methods/addon-base-v2.php:116
3093
  msgid "failed to list files"
3094
  msgstr ""
3095
 
3096
+ #: methods/addon-base-v2.php:84 methods/addon-base-v2.php:89
3097
  msgid "Failed to upload %s"
3098
  msgstr ""
3099
 
3100
+ #: methods/dropbox.php:599 methods/dropbox.php:601
3101
  msgid "Success:"
3102
  msgstr ""
3103
 
3104
+ #: addons/onedrive.php:997 methods/dropbox.php:500
3105
  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."
3106
  msgstr ""
3107
 
3108
+ #: addons/onedrive.php:995 methods/dropbox.php:497
3109
  msgid "(You appear to be already authenticated)."
3110
  msgstr ""
3111
 
3112
+ #: methods/dropbox.php:492 methods/dropbox.php:498 methods/dropbox.php:500
3113
  msgid "Dropbox"
3114
  msgstr ""
3115
 
3116
+ #: addons/onedrive.php:994 methods/dropbox.php:492
3117
  msgid "Authenticate with %s"
3118
  msgstr ""
3119
 
3120
+ #: methods/cloudfiles.php:396
3121
  msgid "Error downloading remote file: Failed to download"
3122
  msgstr ""
3123
 
3124
+ #: methods/openstack-base.php:476 methods/openstack-base.php:481
3125
  msgid "Region: %s"
3126
  msgstr ""
3127
 
3128
+ #: methods/openstack-base.php:475
3129
  msgid "%s error - we accessed the container, but failed to create a file within it"
3130
  msgstr ""
3131
 
3132
+ #: methods/openstack-base.php:393
3133
  msgid "The %s object was not found"
3134
  msgstr ""
3135
 
3136
+ #: methods/openstack-base.php:52 methods/openstack-base.php:316
3137
+ #: methods/openstack-base.php:385
3138
  msgid "Could not access %s container"
3139
  msgstr ""
3140
 
3141
+ #: methods/openstack-base.php:44 methods/openstack-base.php:112
3142
+ #: methods/openstack-base.php:119 methods/openstack-base.php:308
3143
+ #: methods/openstack-base.php:373
3144
  msgid "%s error - failed to access the container"
3145
  msgstr ""
3146
 
3147
+ #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:507
3148
+ #: methods/googledrive.php:957
3149
  msgid "Account holder's name: %s."
3150
  msgstr ""
3151
 
3152
+ #: methods/googledrive.php:946
3153
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3154
  msgstr ""
3155
 
3156
+ #: methods/googledrive.php:937
3157
  msgid "It is an ID number internal to Google Drive"
3158
  msgstr ""
3159
 
3160
+ #: methods/googledrive.php:937
3161
  msgid "<strong>This is NOT a folder name</strong>."
3162
  msgstr ""
3163
 
3164
+ #: addons/google-enhanced.php:81 addons/onedrive.php:988
3165
+ #: methods/googledrive.php:933 methods/googledrive.php:943
3166
  msgid "Folder"
3167
  msgstr ""
3168
 
3169
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3170
+ #: methods/googledrive.php:863
3171
  msgid "%s download: failed: file not found"
3172
  msgstr ""
3173
 
3174
+ #: addons/googlecloud.php:579 methods/googledrive.php:348
3175
  msgid "Name: %s."
3176
  msgstr ""
3177
 
3178
+ #: methods/googledrive.php:141
3179
  msgid "Google Drive list files: failed to access parent folder"
3180
  msgstr ""
3181
 
3182
+ #: methods/addon-not-yet-present.php:77 methods/insufficient.php:67
3183
  msgid "Your %s version: %s."
3184
  msgstr ""
3185
 
3186
+ #: methods/addon-not-yet-present.php:76 methods/insufficient.php:66
3187
  msgid "You will need to ask your web hosting company to upgrade."
3188
  msgstr ""
3189
 
3190
+ #: methods/addon-not-yet-present.php:18 methods/insufficient.php:19
3191
  msgid "This remote storage method (%s) requires PHP %s or later."
3192
  msgstr ""
3193
 
3194
+ #: admin.php:3793
3195
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3196
  msgstr ""
3197
 
3205
 
3206
  #: addons/migrator.php:375
3207
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3208
+ #: templates/wp-admin/settings/form-contents.php:241
3209
  msgid "This feature requires %s version %s or later"
3210
  msgstr ""
3211
 
3221
  msgid "Failed to unpack the archive"
3222
  msgstr ""
3223
 
3224
+ #: class-updraftplus.php:1112
3225
  msgid "Error - failed to download the file"
3226
  msgstr ""
3227
 
3241
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3242
  msgstr ""
3243
 
3244
+ #: addons/sftp.php:426
3245
  msgid "password/key"
3246
  msgstr ""
3247
 
3248
+ #: addons/azure.php:509 addons/migrator.php:2198 addons/sftp.php:377
3249
+ #: admin.php:661
3250
  msgid "Key"
3251
  msgstr ""
3252
 
3253
+ #: addons/sftp.php:372
3254
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3255
  msgstr ""
3256
 
3257
+ #: addons/sftp.php:309
3258
  msgid "The key provided was not in a valid format, or was corrupt."
3259
  msgstr ""
3260
 
3261
+ #: addons/sftp.php:48
3262
  msgid "SCP/SFTP password/key"
3263
  msgstr ""
3264
 
3265
+ #: admin.php:3276
3266
  msgid "Files backup (created by %s)"
3267
  msgstr ""
3268
 
3269
+ #: admin.php:3276
3270
  msgid "Files and database WordPress backup (created by %s)"
3271
  msgstr ""
3272
 
3273
+ #: addons/importer.php:261 admin.php:3270 class-updraftplus.php:2612
3274
  msgid "Backup created by: %s."
3275
  msgstr ""
3276
 
3277
+ #: admin.php:3239
3278
  msgid "Database (created by %s)"
3279
  msgstr ""
3280
 
3281
+ #: admin.php:3233 admin.php:3272
3282
  msgid "unknown source"
3283
  msgstr ""
3284
 
3290
  msgid "Upload backup files"
3291
  msgstr ""
3292
 
3293
+ #: admin.php:1876
3294
  msgid "This backup was created by %s, and can be imported."
3295
  msgstr ""
3296
 
3297
+ #: admin.php:914
3298
  msgid "Read this page for a guide to possible causes and how to fix it."
3299
  msgstr ""
3300
 
3301
+ #: admin.php:914
3302
  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."
3303
  msgstr ""
3304
 
3305
+ #: admin.php:626 class-updraftplus.php:2619
3306
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3307
  msgstr ""
3308
 
3309
+ #: admin.php:625
3310
  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."
3311
  msgstr ""
3312
 
3313
+ #: admin.php:625 admin.php:626 class-updraftplus.php:2619
3314
  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))."
3315
  msgstr ""
3316
 
3317
+ #: admin.php:3273 includes/class-wpadmin-commands.php:143 restorer.php:1410
3318
  msgid "Backup created by unknown source (%s) - cannot be restored."
3319
  msgstr ""
3320
 
3326
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3327
  msgstr ""
3328
 
3329
+ #: methods/dropbox.php:285
3330
  msgid "%s returned an unexpected HTTP response: %s"
3331
  msgstr ""
3332
 
3333
+ #: addons/sftp.php:886
3334
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3335
  msgstr ""
3336
 
3337
+ #: methods/cloudfiles.php:221 methods/dropbox.php:266
3338
+ #: methods/openstack-base.php:107
3339
  msgid "No settings were found"
3340
  msgstr ""
3341
 
3342
+ #: class-updraftplus.php:2740
3343
  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."
3344
  msgstr ""
3345
 
3346
+ #: admin.php:592
3347
  msgid "Rescanning remote and local storage for backup sets..."
3348
  msgstr ""
3349
 
3360
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3361
  msgstr ""
3362
 
3363
+ #: addons/morefiles.php:488
3364
  msgid "No backup of location: there was nothing found to back up"
3365
  msgstr ""
3366
 
3367
+ #: addons/moredatabase.php:234 addons/morefiles.php:284
3368
+ #: addons/morefiles.php:305
3369
  msgid "Remove"
3370
  msgstr ""
3371
 
3372
+ #: methods/s3.php:816
3373
  msgid "Other %s FAQs."
3374
  msgstr ""
3375
 
3376
+ #: templates/wp-admin/settings/form-contents.php:354
3377
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3378
  msgstr ""
3379
 
3380
+ #: addons/morefiles.php:442 admin.php:2990
3381
  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."
3382
  msgstr ""
3383
 
3385
  msgid "Custom content type manager plugin data detected: clearing option cache"
3386
  msgstr ""
3387
 
3388
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1441
3389
  msgid "Your hosting company must enable these functions before %s can work."
3390
  msgstr ""
3391
 
3392
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1440
3393
  msgid "Your web server's PHP installation has these functions disabled: %s."
3394
  msgstr ""
3395
 
3396
+ #: methods/ftp.php:288
3397
  msgid "encrypted FTP (explicit encryption)"
3398
  msgstr ""
3399
 
3400
+ #: methods/ftp.php:287
3401
  msgid "encrypted FTP (implicit encryption)"
3402
  msgstr ""
3403
 
3404
+ #: methods/ftp.php:286
3405
  msgid "regular non-encrypted FTP"
3406
  msgstr ""
3407
 
3409
  msgid "Backup created by:"
3410
  msgstr ""
3411
 
3412
+ #: udaddons/options.php:489
3413
  msgid "Available to claim on this site"
3414
  msgstr ""
3415
 
3457
  msgid "Dismiss from main dashboard (for %s weeks)"
3458
  msgstr ""
3459
 
3460
+ #: class-updraftplus.php:4245
3461
  msgid "The attempt to undo the double-compression succeeded."
3462
  msgstr ""
3463
 
3464
+ #: class-updraftplus.php:4222 class-updraftplus.php:4243
3465
  msgid "The attempt to undo the double-compression failed."
3466
  msgstr ""
3467
 
3468
+ #: class-updraftplus.php:4215
3469
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3470
  msgstr ""
3471
 
3473
  msgid "Constants"
3474
  msgstr ""
3475
 
3476
+ #: backup.php:1607
3477
  msgid "Failed to open database file for reading:"
3478
  msgstr ""
3479
 
3480
+ #: backup.php:1420
3481
  msgid "No database tables found"
3482
  msgstr ""
3483
 
3484
+ #: backup.php:1418
3485
  msgid "please wait for the rescheduled attempt"
3486
  msgstr ""
3487
 
3509
  msgid "Errors occurred:"
3510
  msgstr ""
3511
 
3512
+ #: admin.php:3468
3513
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3514
  msgstr ""
3515
 
3516
+ #: templates/wp-admin/settings/form-contents.php:398
3517
  msgid "See this FAQ also."
3518
  msgstr ""
3519
 
3533
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3534
  msgstr ""
3535
 
3536
+ #: admin.php:889 class-updraftplus.php:661
3537
  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)"
3538
  msgstr ""
3539
 
3549
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3550
  msgstr ""
3551
 
3552
+ #: addons/sftp.php:641 addons/sftp.php:644 includes/ftp.class.php:44
3553
  #: includes/ftp.class.php:47
3554
  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."
3555
  msgstr ""
3556
 
3557
+ #: admin.php:3801
3558
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3559
  msgstr ""
3560
 
3561
+ #: admin.php:2054 admin.php:2064
3562
  msgid "Restore failed..."
3563
  msgstr ""
3564
 
3565
+ #: addons/moredatabase.php:130 admin.php:1276
3566
  msgid "Messages:"
3567
  msgstr ""
3568
 
3656
  msgid "Rackspace Cloud Files, enhanced"
3657
  msgstr ""
3658
 
3659
+ #: addons/cloudfiles-enhanced.php:275 methods/cloudfiles-new.php:143
3660
  msgid "Cloud Files Container"
3661
  msgstr ""
3662
 
3663
+ #: methods/cloudfiles-new.php:138
3664
  msgid "Cloud Files API Key"
3665
  msgstr ""
3666
 
3667
+ #: methods/cloudfiles-new.php:133
3668
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3669
  msgstr ""
3670
 
3671
+ #: methods/cloudfiles-new.php:130
3672
  msgid "Cloud Files Username"
3673
  msgstr ""
3674
 
3675
+ #: addons/cloudfiles-enhanced.php:45 methods/cloudfiles-new.php:116
3676
  msgid "London (LON)"
3677
  msgstr ""
3678
 
3679
+ #: addons/cloudfiles-enhanced.php:44 methods/cloudfiles-new.php:115
3680
  msgid "Hong Kong (HKG)"
3681
  msgstr ""
3682
 
3683
+ #: addons/cloudfiles-enhanced.php:43 methods/cloudfiles-new.php:114
3684
  msgid "Northern Virginia (IAD)"
3685
  msgstr ""
3686
 
3687
+ #: addons/cloudfiles-enhanced.php:42 methods/cloudfiles-new.php:113
3688
  msgid "Chicago (ORD)"
3689
  msgstr ""
3690
 
3691
+ #: addons/cloudfiles-enhanced.php:41 methods/cloudfiles-new.php:112
3692
  msgid "Sydney (SYD)"
3693
  msgstr ""
3694
 
3695
+ #: addons/cloudfiles-enhanced.php:40 methods/cloudfiles-new.php:111
3696
  msgid "Dallas (DFW) (default)"
3697
  msgstr ""
3698
 
3699
+ #: addons/cloudfiles-enhanced.php:271 methods/cloudfiles-new.php:106
3700
  msgid "Cloud Files Storage Region"
3701
  msgstr ""
3702
 
3703
+ #: methods/cloudfiles-new.php:98
3704
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3705
  msgstr ""
3706
 
3707
+ #: methods/cloudfiles-new.php:96
3708
  msgid "US or UK-based Rackspace Account"
3709
  msgstr ""
3710
 
3711
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:96
3712
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3713
  msgstr ""
3714
 
3715
  #: addons/cloudfiles-enhanced.php:136 addons/s3-enhanced.php:197
3716
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:435
3717
+ #: methods/openstack-base.php:437 methods/openstack-base.php:457
3718
  #: methods/openstack2.php:25
3719
  msgid "Authorisation failed (check your credentials)"
3720
  msgstr ""
3721
 
3722
+ #: methods/updraftvault.php:524 udaddons/options.php:272
3723
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3724
  msgstr ""
3725
 
3726
+ #: admin.php:639 central/bootstrap.php:513
3727
  msgid "Create"
3728
  msgstr ""
3729
 
3730
+ #: admin.php:601
3731
  msgid "Trying..."
3732
  msgstr ""
3733
 
3734
+ #: admin.php:600
3735
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3736
  msgstr ""
3737
 
3738
+ #: class-updraftplus.php:1566
3739
  msgid "(when decrypted)"
3740
  msgstr ""
3741
 
3742
+ #: admin.php:611 admin.php:3743
3743
  msgid "Error data:"
3744
  msgstr ""
3745
 
3746
+ #: admin.php:3419
3747
  msgid "Backup does not exist in the backup history"
3748
  msgstr ""
3749
 
3750
+ #: admin.php:2423
3751
  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."
3752
  msgstr ""
3753
 
3799
  msgid "Email reports"
3800
  msgstr ""
3801
 
3802
+ #: class-updraftplus.php:1562 class-updraftplus.php:1567
3803
  msgid "%s checksum: %s"
3804
  msgstr ""
3805
 
3806
+ #: class-updraftplus.php:1535 class-updraftplus.php:1537
3807
  msgid "files: %s"
3808
  msgstr ""
3809
 
3823
  msgid "Debugging information"
3824
  msgstr ""
3825
 
3826
+ #: addons/reporting.php:194 admin.php:3179
3827
  msgid "Uploaded to:"
3828
  msgstr ""
3829
 
3843
  msgid "Errors / warnings:"
3844
  msgstr ""
3845
 
3846
+ #: addons/morefiles.php:122 addons/morefiles.php:123 addons/reporting.php:155
3847
  msgid "Contains:"
3848
  msgstr ""
3849
 
3863
  msgid "%d errors, %d warnings"
3864
  msgstr ""
3865
 
3866
+ #: addons/onedrive.php:717 methods/dropbox.php:583
3867
  msgid "%s authentication"
3868
  msgstr ""
3869
 
3870
+ #: addons/onedrive.php:717 class-updraftplus.php:366 methods/dropbox.php:556
3871
+ #: methods/dropbox.php:583 methods/dropbox.php:596 methods/dropbox.php:727
3872
  msgid "%s error: %s"
3873
  msgstr ""
3874
 
3875
+ #: addons/googlecloud.php:815 methods/dropbox.php:467
3876
  msgid "%s logo"
3877
  msgstr ""
3878
 
3879
+ #: methods/dropbox.php:199
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
+ #: methods/s3.php:281
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
3887
+ #: methods/email.php:76
3888
  msgid "For more options, use the \"%s\" add-on."
3889
  msgstr ""
3890
 
3891
+ #: methods/email.php:75
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr ""
3894
 
3895
+ #: admin.php:648 methods/updraftvault.php:274 methods/updraftvault.php:319
3896
+ #: udaddons/options.php:251
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3900
+ #: templates/wp-admin/settings/form-contents.php:322
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
+ #: class-updraftplus.php:4025
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3908
+ #: addons/reporting.php:438 admin.php:590
3909
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3910
  msgstr ""
3911
 
3912
+ #: addons/reporting.php:438 admin.php:589
3913
  msgid "When the Email storage method is enabled, also send the entire backup"
3914
  msgstr ""
3915
 
3916
+ #: addons/reporting.php:153 backup.php:945
3917
  msgid "Latest status:"
3918
  msgstr ""
3919
 
3920
+ #: backup.php:944
3921
  msgid "Backup contains:"
3922
  msgstr ""
3923
 
3924
+ #: backup.php:901
3925
  msgid "Backed up: %s"
3926
  msgstr ""
3927
 
3928
+ #: addons/reporting.php:236 backup.php:895
3929
  msgid "The log file has been attached to this email."
3930
  msgstr ""
3931
 
3932
+ #: backup.php:859
3933
  msgid "Unknown/unexpected error - please raise a support request"
3934
  msgstr ""
3935
 
3936
+ #: backup.php:856
3937
  msgid "Database only (files were not part of this particular schedule)"
3938
  msgstr ""
3939
 
3940
+ #: backup.php:856
3941
  msgid "Database (files backup has not completed)"
3942
  msgstr ""
3943
 
3944
+ #: backup.php:853
3945
  msgid "Files only (database was not part of this particular schedule)"
3946
  msgstr ""
3947
 
3948
+ #: backup.php:853
3949
  msgid "Files (database backup has not completed)"
3950
  msgstr ""
3951
 
3952
+ #: admin.php:253 backup.php:851
3953
  msgid "Files and database"
3954
  msgstr ""
3955
 
3956
+ #: options.php:184
3957
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3958
  msgstr ""
3959
 
3960
+ #: options.php:184
3961
  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>."
3962
  msgstr ""
3963
 
3964
+ #: options.php:184
3965
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3966
  msgstr ""
3967
 
3968
+ #: options.php:184
3969
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3970
  msgstr ""
3971
 
3972
+ #: options.php:184
3973
  msgid "UpdraftPlus warning:"
3974
  msgstr ""
3975
 
3976
+ #: udaddons/options.php:495
3977
  msgid "(or connect using the form on this page if you have already purchased it)"
3978
  msgstr ""
3979
 
3980
+ #: udaddons/options.php:481
3981
  msgid "please follow this link to update the plugin in order to activate it"
3982
  msgstr ""
3983
 
3984
+ #: udaddons/options.php:478
3985
  msgid "please follow this link to update the plugin in order to get it"
3986
  msgstr ""
3987
 
3988
+ #: udaddons/options.php:468 udaddons/options.php:470
3989
  msgid "latest"
3990
  msgstr ""
3991
 
3992
+ #: udaddons/options.php:466
3993
  msgid "Your version: %s"
3994
  msgstr ""
3995
 
3996
+ #: udaddons/options.php:464
3997
  msgid "You've got it"
3998
  msgstr ""
3999
 
4000
+ #: udaddons/options.php:430
4001
  msgid "UpdraftPlus Support"
4002
  msgstr ""
4003
 
4004
+ #: udaddons/options.php:388
4005
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4006
  msgstr ""
4007
 
4008
+ #: udaddons/options.php:377 udaddons/updraftplus-addons.php:256
4009
  msgid "UpdraftPlus Addons"
4010
  msgstr ""
4011
 
4012
+ #: udaddons/options.php:101
4013
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4014
  msgstr ""
4015
 
4016
+ #: methods/updraftvault.php:597 methods/updraftvault.php:615
4017
  #: udaddons/updraftplus-addons.php:795
4018
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4019
  msgstr ""
4020
 
4021
+ #: methods/updraftvault.php:611 udaddons/updraftplus-addons.php:792
4022
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4023
  msgstr ""
4024
 
4025
+ #: methods/updraftvault.php:570 udaddons/updraftplus-addons.php:752
4026
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4027
  msgstr ""
4028
 
4034
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4035
  msgstr ""
4036
 
4037
+ #: methods/email.php:76 templates/wp-admin/settings/form-contents.php:303
4038
  #: templates/wp-admin/settings/tab-addons.php:200
4039
  msgid "Reporting"
4040
  msgstr ""
4041
 
4042
+ #: admin.php:4154
4043
  msgid "Options (raw)"
4044
  msgstr ""
4045
 
4046
+ #: addons/reporting.php:436 admin.php:588
4047
  msgid "Send a report only when there are warnings/errors"
4048
  msgstr ""
4049
 
4055
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4056
  msgstr ""
4057
 
4058
+ #: templates/wp-admin/settings/form-contents.php:207
4059
  msgid "See also the \"More Files\" add-on from our shop."
4060
  msgstr ""
4061
 
4062
+ #: backup.php:3012 class-updraftplus.php:674
4063
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4064
  msgstr ""
4065
 
4066
+ #: class-updraftplus.php:658
4067
  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)"
4068
  msgstr ""
4069
 
4070
+ #: udaddons/options.php:554
4071
  msgid "Manage Addons"
4072
  msgstr ""
4073
 
4074
+ #: udaddons/options.php:496
4075
  msgid "Buy It"
4076
  msgstr ""
4077
 
4078
+ #: udaddons/options.php:495
4079
  msgid "Get it from the UpdraftPlus.Com Store"
4080
  msgstr ""
4081
 
4082
+ #: udaddons/options.php:489 udaddons/options.php:491
4083
  msgid "activate it on this site"
4084
  msgstr ""
4085
 
4086
+ #: udaddons/options.php:491
4087
  msgid "You have an inactive purchase"
4088
  msgstr ""
4089
 
4090
+ #: udaddons/options.php:481
4091
  msgid "Assigned to this site"
4092
  msgstr ""
4093
 
4094
+ #: udaddons/options.php:478
4095
  msgid "Available for this site (via your all-addons purchase)"
4096
  msgstr ""
4097
 
4098
+ #: udaddons/options.php:472
4099
  msgid "(apparently a pre-release or withdrawn release)"
4100
  msgstr ""
4101
 
4102
+ #: udaddons/options.php:432
4103
  msgid "Go here"
4104
  msgstr ""
4105
 
4106
+ #: udaddons/options.php:432
4107
  msgid "Need to get support?"
4108
  msgstr ""
4109
 
4110
+ #: udaddons/options.php:414
4111
  msgid "An error occurred when trying to retrieve your add-ons."
4112
  msgstr ""
4113
 
4114
+ #: udaddons/options.php:347
4115
  msgid "An unknown response was received. Response was:"
4116
  msgstr ""
4117
 
4118
+ #: udaddons/options.php:346
4119
  msgid "Claim not granted - your account login details were wrong"
4120
  msgstr ""
4121
 
4122
+ #: udaddons/options.php:344
4123
  msgid "Please wait whilst we make the claim..."
4124
  msgstr ""
4125
 
4126
+ #: udaddons/options.php:297
4127
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4128
  msgstr ""
4129
 
4130
+ #: udaddons/options.php:288
4131
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4132
  msgstr ""
4133
 
4134
+ #: udaddons/options.php:279
4135
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4136
  msgstr ""
4137
 
4138
+ #: udaddons/options.php:278
4139
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4140
  msgstr ""
4141
 
4142
+ #: udaddons/options.php:249
4143
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4144
  msgstr ""
4145
 
4146
+ #: udaddons/options.php:190
4147
  msgid "Forgotten your details?"
4148
  msgstr ""
4149
 
4150
+ #: udaddons/options.php:179
4151
  msgid "Not yet got an account (it's free)? Go get one!"
4152
  msgstr ""
4153
 
4154
+ #: udaddons/options.php:148
4155
  msgid "Connect with your UpdraftPlus.Com account"
4156
  msgstr ""
4157
 
4158
+ #: udaddons/options.php:127
4159
  msgid "Your web server's version of PHP is too old ("
4160
  msgstr ""
4161
 
4162
+ #: udaddons/options.php:121
4163
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
4164
  msgstr ""
4165
 
4166
+ #: udaddons/options.php:120
4167
  msgid "Go here to begin installing it."
4168
  msgstr ""
4169
 
4170
+ #: udaddons/options.php:120
4171
  msgid "UpdraftPlus is not yet installed."
4172
  msgstr ""
4173
 
4174
+ #: udaddons/options.php:117
4175
  msgid "Go here to activate it."
4176
  msgstr ""
4177
 
4178
+ #: udaddons/options.php:116
4179
  msgid "UpdraftPlus is not yet activated."
4180
  msgstr ""
4181
 
4182
+ #: udaddons/options.php:107 udaddons/options.php:109
4183
  msgid "Go here to connect."
4184
  msgstr ""
4185
 
4186
+ #: udaddons/options.php:107
4187
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
4188
  msgstr ""
4189
 
4190
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4191
  msgid "Without it, encryption will be a lot slower."
4192
  msgstr ""
4193
 
4194
+ #: addons/moredatabase.php:299 addons/moredatabase.php:388
4195
  msgid "Your web-server does not have the %s module installed."
4196
  msgstr ""
4197
 
4198
+ #: addons/googlecloud.php:898 methods/googledrive.php:953
4199
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4200
  msgstr ""
4201
 
4203
  msgid "Drop backup files here"
4204
  msgstr ""
4205
 
4206
+ #: admin.php:599
4207
  msgid "The web server returned an error code (try again, or check your web server logs)"
4208
  msgstr ""
4209
 
4210
+ #: admin.php:597
4211
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4212
  msgstr ""
4213
 
4214
+ #: admin.php:594
4215
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4216
  msgstr ""
4217
 
4219
  msgid "Site home:"
4220
  msgstr ""
4221
 
4222
+ #: addons/morestorage.php:79
4223
  msgid "Remote Storage Options"
4224
  msgstr ""
4225
 
4231
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4232
  msgstr ""
4233
 
4234
+ #: addons/azure.php:350 methods/stream-base.php:121 methods/stream-base.php:126
4235
  msgid "Upload failed"
4236
  msgstr ""
4237
 
4239
  msgid "You can send a backup to more than one destination with an add-on."
4240
  msgstr ""
4241
 
4242
+ #: admin.php:2641
4243
  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."
4244
  msgstr ""
4245
 
4246
+ #: admin.php:2539
4247
  msgid "(%s%%, file %s of %s)"
4248
  msgstr ""
4249
 
4252
  msgid "Read more about how this works..."
4253
  msgstr ""
4254
 
4255
+ #: addons/sftp.php:486
4256
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4257
  msgstr ""
4258
 
4259
+ #: addons/sftp.php:484
4260
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4261
  msgstr ""
4262
 
4263
+ #: addons/sftp.php:403
4264
  msgid "Use SCP instead of SFTP"
4265
  msgstr ""
4266
 
4267
+ #: addons/sftp.php:47
4268
  msgid "SCP/SFTP user setting"
4269
  msgstr ""
4270
 
4271
+ #: addons/sftp.php:46
4272
  msgid "SCP/SFTP host setting"
4273
  msgstr ""
4274
 
4275
+ #: methods/email.php:60
4276
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
4277
  msgstr ""
4278
 
4279
+ #: methods/email.php:47
4280
  msgid "Backup is of: %s."
4281
  msgstr ""
4282
 
4283
+ #: admin.php:687
4284
  msgid "%s settings test result:"
4285
  msgstr ""
4286
 
4287
+ #: admin.php:3337 admin.php:3339
4288
  msgid "(Not finished)"
4289
  msgstr ""
4290
 
4291
+ #: admin.php:3339
4292
  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."
4293
  msgstr ""
4294
 
4295
+ #: templates/wp-admin/settings/form-contents.php:381
4296
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4297
  msgstr ""
4298
 
4299
+ #: templates/wp-admin/settings/form-contents.php:381
4300
  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)."
4301
  msgstr ""
4302
 
4303
+ #: admin.php:2636
4304
  msgid "Job ID: %s"
4305
  msgstr ""
4306
 
4307
+ #: admin.php:2621
4308
  msgid "last activity: %ss ago"
4309
  msgstr ""
4310
 
4311
+ #: admin.php:2620
4312
  msgid "next resumption: %d (after %ss)"
4313
  msgstr ""
4314
 
4315
+ #: admin.php:2603 central/bootstrap.php:405 central/bootstrap.php:412
4316
+ #: methods/updraftvault.php:354 methods/updraftvault.php:434
4317
  msgid "Unknown"
4318
  msgstr ""
4319
 
4320
+ #: admin.php:2553
4321
  msgid "Backup finished"
4322
  msgstr ""
4323
 
4324
+ #: admin.php:2548
4325
  msgid "Waiting until scheduled time to retry because of errors"
4326
  msgstr ""
4327
 
4328
+ #: admin.php:2544
4329
  msgid "Pruning old backup sets"
4330
  msgstr ""
4331
 
4332
+ #: admin.php:2532
4333
  msgid "Uploading files to remote storage"
4334
  msgstr ""
4335
 
4336
+ #: admin.php:2601
4337
  msgid "Encrypted database"
4338
  msgstr ""
4339
 
4340
+ #: admin.php:2593
4341
  msgid "Encrypting database"
4342
  msgstr ""
4343
 
4344
+ #: admin.php:2567
4345
  msgid "Created database backup"
4346
  msgstr ""
4347
 
4348
+ #: admin.php:2580
4349
  msgid "table: %s"
4350
  msgstr ""
4351
 
4352
+ #: admin.php:2578
4353
  msgid "Creating database backup"
4354
  msgstr ""
4355
 
4356
+ #: admin.php:2526
4357
  msgid "Created file backup zips"
4358
  msgstr ""
4359
 
4360
+ #: admin.php:2513
4361
  msgid "Creating file backup zips"
4362
  msgstr ""
4363
 
4364
+ #: admin.php:2508
4365
  msgid "Backup begun"
4366
  msgstr ""
4367
 
4368
+ #: admin.php:2351
4369
  msgid "Backups in progress:"
4370
  msgstr ""
4371
 
4372
+ #: admin.php:893
4373
  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."
4374
  msgstr ""
4375
 
4385
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4386
  msgstr ""
4387
 
4388
+ #: class-updraftplus.php:2837
4389
  msgid "The backup has not finished; a resumption is scheduled"
4390
  msgstr ""
4391
 
4392
+ #: class-updraftplus.php:1807
4393
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4394
  msgstr ""
4395
 
4396
  #: addons/googlecloud.php:337 addons/onedrive.php:880
4397
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:115
4398
  #: includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4399
+ #: methods/googledrive.php:229
4400
  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)."
4401
  msgstr ""
4402
 
4403
+ #: admin.php:2174
4404
  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)."
4405
  msgstr ""
4406
 
4407
+ #: addons/autobackup.php:1006 admin.php:641
4408
  msgid "Proceed with update"
4409
  msgstr ""
4410
 
4457
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4458
  msgstr ""
4459
 
4460
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4461
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
4462
  msgstr ""
4463
 
4464
+ #: addons/morefiles.php:230 addons/morefiles.php:231
4465
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
4466
  msgstr ""
4467
 
4468
+ #: addons/morefiles.php:183
4469
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
4470
  msgstr ""
4471
 
4472
+ #: addons/morefiles.php:173
4473
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
4474
  msgstr ""
4475
 
4482
  msgid "Support"
4483
  msgstr ""
4484
 
4485
+ #: class-updraftplus.php:4178
4486
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4487
  msgstr ""
4488
 
4489
+ #: class-updraftplus.php:4170
4490
  msgid "This database backup is missing core WordPress tables: %s"
4491
  msgstr ""
4492
 
4493
+ #: class-updraftplus.php:4058
4494
  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."
4495
  msgstr ""
4496
 
4497
+ #: class-updraftplus.php:3974
4498
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4499
  msgstr ""
4500
 
4501
+ #: addons/autobackup.php:556 admin.php:857
4502
  msgid "Update Theme"
4503
  msgstr ""
4504
 
4505
+ #: addons/autobackup.php:505 admin.php:853
4506
  msgid "Update Plugin"
4507
  msgstr ""
4508
 
4509
+ #: addons/autobackup.php:985 admin.php:726 includes/updraftplus-notices.php:171
4510
  msgid "Be safe with an automatic backup"
4511
  msgstr ""
4512
 
4514
  msgid "Uploads path (%s) does not exist - resetting (%s)"
4515
  msgstr ""
4516
 
4517
+ #: admin.php:2126
4518
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4519
  msgstr ""
4520
 
4521
+ #: admin.php:635
4522
  msgid "The file was uploaded."
4523
  msgstr ""
4524
 
4525
+ #: admin.php:634
4526
  msgid "Unknown server response status:"
4527
  msgstr ""
4528
 
4529
+ #: admin.php:633
4530
  msgid "Unknown server response:"
4531
  msgstr ""
4532
 
4533
+ #: admin.php:632
4534
  msgid "This decryption key will be attempted:"
4535
  msgstr ""
4536
 
4537
+ #: admin.php:631
4538
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4539
  msgstr ""
4540
 
4541
+ #: admin.php:630
4542
  msgid "Upload error"
4543
  msgstr ""
4544
 
4545
+ #: admin.php:629
4546
  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)."
4547
  msgstr ""
4548
 
4549
+ #: admin.php:628
4550
  msgid "Upload error:"
4551
  msgstr ""
4552
 
4553
+ #: admin.php:627
4554
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4555
  msgstr ""
4556
 
4557
+ #: admin.php:618
4558
  msgid "Download to your computer"
4559
  msgstr ""
4560
 
4561
+ #: admin.php:617
4562
  msgid "Delete from your web server"
4563
  msgstr ""
4564
 
4565
+ #: methods/s3.php:776
4566
  msgid "Examples of S3-compatible storage providers:"
4567
  msgstr ""
4568
 
4569
+ #: admin.php:3693
4570
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
4571
  msgstr ""
4572
 
4573
+ #: admin.php:3310
4574
  msgid "You appear to be missing one or more archives from this multi-archive set."
4575
  msgstr ""
4576
 
4577
+ #: admin.php:3307
4578
  msgid "(%d archive(s) in set)."
4579
  msgstr ""
4580
 
4581
+ #: templates/wp-admin/settings/form-contents.php:358
4582
  msgid "Split archives every:"
4583
  msgstr ""
4584
 
4586
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4587
  msgstr ""
4588
 
4589
+ #: admin.php:608
4590
  msgid "Warnings:"
4591
  msgstr ""
4592
 
4593
+ #: admin.php:607
4594
  msgid "Error: the server sent an empty response."
4595
  msgstr ""
4596
 
4597
+ #: admin.php:1887
4598
  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?"
4599
  msgstr ""
4600
 
4630
  msgid "No such backup set exists"
4631
  msgstr ""
4632
 
4633
+ #: admin.php:1164
4634
  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"
4635
  msgstr ""
4636
 
4646
  msgid "Moving unpacked backup into place..."
4647
  msgstr ""
4648
 
4649
+ #: backup.php:2716 backup.php:2972
4650
  msgid "Failed to open the zip file (%s) - %s"
4651
  msgstr ""
4652
 
4653
+ #: addons/morefiles.php:161
4654
  msgid "WordPress root directory server path: %s"
4655
  msgstr ""
4656
 
4657
+ #: methods/s3.php:821
4658
  msgid "%s end-point"
4659
  msgstr ""
4660
 
4661
+ #: methods/s3.php:783
4662
  msgid "... and many more!"
4663
  msgstr ""
4664
 
4666
  msgid "S3 (Compatible)"
4667
  msgstr ""
4668
 
4669
+ #: admin.php:3614
4670
  msgid "File is not locally present - needs retrieving from remote storage"
4671
  msgstr ""
4672
 
4673
+ #: admin.php:3601
4674
  msgid "Looking for %s archive: file name: %s"
4675
  msgstr ""
4676
 
4677
+ #: admin.php:3562
4678
  msgid "Final checks"
4679
  msgstr ""
4680
 
4681
+ #: templates/wp-admin/settings/form-contents.php:364
4682
  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)."
4683
  msgstr ""
4684
 
4685
+ #: templates/wp-admin/settings/form-contents.php:248
4686
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4687
  msgstr ""
4688
 
4689
+ #: admin.php:2979
4690
  msgid "Your wp-content directory server path: %s"
4691
  msgstr ""
4692
 
4693
+ #: admin.php:624
4694
  msgid "Raw backup history"
4695
  msgstr ""
4696
 
4698
  msgid "Show raw backup and file list"
4699
  msgstr ""
4700
 
4701
+ #: admin.php:606
4702
  msgid "Processing files - please wait..."
4703
  msgstr ""
4704
 
4705
+ #: admin.php:3745 templates/wp-admin/settings/downloading-and-restoring.php:29
4706
  msgid "Please consult this FAQ for help on what to do about it."
4707
  msgstr ""
4708
 
4710
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4711
  msgstr ""
4712
 
4713
+ #: class-updraftplus.php:3982
4714
  msgid "Failed to open database file."
4715
  msgstr ""
4716
 
4717
+ #: admin.php:4124
4718
  msgid "Known backups (raw)"
4719
  msgstr ""
4720
 
4738
  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."
4739
  msgstr ""
4740
 
4741
+ #: admin.php:3634
4742
  msgid "file is size:"
4743
  msgstr ""
4744
 
4745
  #: addons/googlecloud.php:855 addons/migrator.php:363 addons/migrator.php:366
4746
+ #: addons/migrator.php:369 admin.php:893 admin.php:2131 backup.php:3019
4747
  #: updraftplus.php:147
4748
  msgid "Go here for more information."
4749
  msgstr ""
4750
 
4751
+ #: admin.php:605
4752
  msgid "Some files are still downloading or being processed - please wait."
4753
  msgstr ""
4754
 
4755
+ #: class-updraftplus.php:4030 class-updraftplus.php:4048
4756
  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."
4757
  msgstr ""
4758
 
4764
  msgid "Enter in format HH:MM (e.g. 14:22)."
4765
  msgstr ""
4766
 
4767
+ #: methods/ftp.php:116
4768
  msgid "%s upload failed"
4769
  msgstr ""
4770
 
4771
+ #: methods/ftp.php:89 methods/ftp.php:140 methods/ftp.php:244
4772
  msgid "%s login failure"
4773
  msgstr ""
4774
 
4775
+ #: methods/dropbox.php:410
4776
  msgid "You do not appear to be authenticated with %s"
4777
  msgstr ""
4778
 
4779
+ #: methods/dropbox.php:377
4780
  msgid "Failed to access %s when deleting (see log file for more)"
4781
  msgstr ""
4782
 
4783
+ #: methods/dropbox.php:369
4784
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4785
  msgstr ""
4786
 
4787
+ #: methods/dropbox.php:104
4788
  msgid "Dropbox error: %s (see log file for more)"
4789
  msgstr ""
4790
 
4791
+ #: methods/cloudfiles.php:409
4792
  msgid "Error - failed to download the file from %s"
4793
  msgstr ""
4794
 
4795
+ #: methods/cloudfiles.php:405
4796
  msgid "Error - no such file exists at %s"
4797
  msgstr ""
4798
 
4799
+ #: addons/azure.php:216 methods/addon-base-v2.php:218
4800
+ #: methods/cloudfiles.php:379 methods/cloudfiles.php:396
4801
+ #: methods/googledrive.php:823 methods/openstack-base.php:407
4802
+ #: methods/stream-base.php:262 methods/stream-base.php:269
4803
+ #: methods/stream-base.php:282
4804
  msgid "%s Error"
4805
  msgstr ""
4806
 
4807
+ #: methods/cloudfiles.php:206 methods/openstack-base.php:82
4808
  msgid "%s error - failed to upload file"
4809
  msgstr ""
4810
 
4811
+ #: class-updraftplus.php:1004 methods/cloudfiles.php:198
4812
  msgid "%s error - failed to re-assemble chunks"
4813
  msgstr ""
4814
 
4815
+ #: methods/cloudfiles.php:82 methods/cloudfiles.php:86
4816
+ #: methods/cloudfiles.php:227 methods/cloudfiles.php:272
4817
+ #: methods/cloudfiles.php:323 methods/cloudfiles.php:327
4818
+ #: methods/openstack-base.php:40 methods/openstack-base.php:304
4819
+ #: methods/openstack-base.php:369 methods/openstack-base.php:441
4820
+ #: methods/openstack-base.php:444 methods/openstack-base.php:461
4821
+ #: methods/openstack-base.php:466
4822
  msgid "%s authentication failed"
4823
  msgstr ""
4824
 
4825
+ #: addons/googlecloud.php:384 addons/migrator.php:462 admin.php:1832
4826
+ #: admin.php:1879 admin.php:1887 class-updraftplus.php:789
4827
+ #: class-updraftplus.php:795 class-updraftplus.php:3953
4828
+ #: class-updraftplus.php:3955 class-updraftplus.php:4088
4829
+ #: class-updraftplus.php:4123 methods/googledrive.php:289 restorer.php:944
4830
  msgid "Error: %s"
4831
  msgstr ""
4832
 
4833
+ #: admin.php:2916
4834
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4835
  msgstr ""
4836
 
4837
+ #: admin.php:2914
4838
  msgid "Backup directory specified does <b>not</b> exist."
4839
  msgstr ""
4840
 
4841
+ #: admin.php:2648 admin.php:2870 class-updraftplus.php:4030
4842
+ #: class-updraftplus.php:4048
4843
  msgid "Warning: %s"
4844
  msgstr ""
4845
 
4847
  msgid "Last backup job run:"
4848
  msgstr ""
4849
 
4850
+ #: backup.php:2738
4851
  msgid "A very large file was encountered: %s (size: %s Mb)"
4852
  msgstr ""
4853
 
4854
+ #: backup.php:2112 backup.php:2144
4855
  msgid "%s: unreadable file - could not be backed up"
4856
  msgstr ""
4857
 
4858
+ #: backup.php:1507
4859
  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"
4860
  msgstr ""
4861
 
4862
+ #: backup.php:1626
4863
  msgid "An error occurred whilst closing the final database file"
4864
  msgstr ""
4865
 
4866
+ #: backup.php:886
4867
  msgid "Warnings encountered:"
4868
  msgstr ""
4869
 
4870
+ #: class-updraftplus.php:2825
4871
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4872
  msgstr ""
4873
 
4874
+ #: class-updraftplus.php:687
4875
  msgid "Your free disk space is very low - only %s Mb remain"
4876
  msgstr ""
4877
 
4903
  msgid "Processed plugin:"
4904
  msgstr ""
4905
 
4906
+ #: addons/sftp.php:75
4907
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4908
  msgstr ""
4909
 
4910
+ #: addons/sftp.php:35
4911
  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."
4912
  msgstr ""
4913
 
4914
+ #: methods/s3.php:797
4915
  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."
4916
  msgstr ""
4917
 
4918
+ #: methods/s3.php:1035
4919
  msgid "Please check your access credentials."
4920
  msgstr ""
4921
 
4922
+ #: addons/s3-enhanced.php:172 methods/s3.php:1013
4923
  msgid "The error reported by %s was:"
4924
  msgstr ""
4925
 
4935
  msgid "Cannot create new tables, so skipping this command (%s)"
4936
  msgstr ""
4937
 
4938
+ #: class-updraftplus.php:4099 restorer.php:1648
4939
  msgid "Site information:"
4940
  msgstr ""
4941
 
4943
  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."
4944
  msgstr ""
4945
 
4946
+ #: addons/migrator.php:325 admin.php:2126 class-updraftplus.php:4092
4947
  #: restorer.php:1970
4948
  msgid "Warning:"
4949
  msgstr ""
4950
 
4951
+ #: class-updraftplus.php:4084 restorer.php:162
4952
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4953
  msgstr ""
4954
 
4955
+ #: admin.php:3589
4956
  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."
4957
  msgstr ""
4958
 
4959
+ #: admin.php:3035 methods/updraftvault.php:258
4960
  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."
4961
  msgstr ""
4962
 
4963
+ #: admin.php:642
4964
  msgid "Close"
4965
  msgstr ""
4966
 
4967
+ #: addons/autobackup.php:298 addons/autobackup.php:386 admin.php:598
4968
+ #: methods/remotesend.php:64 methods/remotesend.php:72
4969
+ #: methods/remotesend.php:213 methods/remotesend.php:230
4970
  msgid "Unexpected response:"
4971
  msgstr ""
4972
 
4973
+ #: addons/reporting.php:434 admin.php:593
4974
  msgid "To send to more than one address, separate each address with a comma."
4975
  msgstr ""
4976
 
4977
+ #: admin.php:622
4978
  msgid "PHP information"
4979
  msgstr ""
4980
 
5010
  msgid "Also delete from remote storage"
5011
  msgstr ""
5012
 
5013
+ #: admin.php:2378
5014
  msgid "Latest UpdraftPlus.com news:"
5015
  msgstr ""
5016
 
5027
  msgid "News"
5028
  msgstr ""
5029
 
5030
+ #: admin.php:1318 includes/class-wpadmin-commands.php:444
5031
  msgid "Backup set not found"
5032
  msgstr ""
5033
 
5045
  msgid "Blog link"
5046
  msgstr ""
5047
 
5048
+ #: admin.php:686
5049
  msgid "Testing %s Settings..."
5050
  msgstr ""
5051
 
5053
  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."
5054
  msgstr ""
5055
 
5056
+ #: admin.php:909
5057
  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."
5058
  msgstr ""
5059
 
5060
+ #: admin.php:909
5061
  msgid "Notice"
5062
  msgstr ""
5063
 
5064
+ #: backup.php:868
5065
  msgid "Errors encountered:"
5066
  msgstr ""
5067
 
5068
+ #: admin.php:591
5069
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5070
  msgstr ""
5071
 
5072
+ #: admin.php:604
5073
  msgid "Begun looking for this entity"
5074
  msgstr ""
5075
 
5076
+ #: addons/dropbox-folders.php:33
5077
  msgid "Store at"
5078
  msgstr ""
5079
 
5089
  msgid "Time taken (seconds):"
5090
  msgstr ""
5091
 
5092
+ #: addons/migrator.php:1113 admin.php:609
5093
  msgid "Errors:"
5094
  msgstr ""
5095
 
5158
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5159
  msgstr ""
5160
 
5161
+ #: addons/multisite.php:624
5162
  msgid "Blog uploads"
5163
  msgstr ""
5164
 
5165
+ #: addons/migrator.php:369 addons/multisite.php:617
5166
  msgid "Must-use plugins"
5167
  msgstr ""
5168
 
5169
+ #: addons/multisite.php:191
5170
  msgid "You do not have permission to access this page."
5171
  msgstr ""
5172
 
5173
+ #: addons/multisite.php:177 udaddons/options.php:232
5174
  msgid "You do not have sufficient permissions to access this page."
5175
  msgstr ""
5176
 
5177
+ #: addons/multisite.php:171
5178
  msgid "Multisite Install"
5179
  msgstr ""
5180
 
5182
  msgid "starting from next time it is"
5183
  msgstr ""
5184
 
5185
+ #: addons/sftp.php:431
5186
  msgid "Failure: Port must be an integer."
5187
  msgstr ""
5188
 
5189
+ #: methods/ftp.php:366 methods/openstack2.php:151
5190
  msgid "password"
5191
  msgstr ""
5192
 
5193
+ #: addons/sftp.php:422 methods/openstack2.php:146
5194
  msgid "username"
5195
  msgstr ""
5196
 
5197
+ #: addons/sftp.php:418
5198
  msgid "host name"
5199
  msgstr ""
5200
 
5201
+ #: addons/sftp.php:396
5202
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5203
  msgstr ""
5204
 
5205
+ #: addons/sftp.php:394
5206
  msgid "Directory path"
5207
  msgstr ""
5208
 
5209
+ #: addons/lockadmin.php:153 addons/moredatabase.php:239 addons/sftp.php:369
5210
+ #: addons/webdav.php:69 methods/openstack2.php:131 methods/updraftvault.php:318
5211
+ #: udaddons/options.php:152
5212
  msgid "Password"
5213
  msgstr ""
5214
 
5215
+ #: addons/sftp.php:355 addons/webdav.php:83
5216
  msgid "Port"
5217
  msgstr ""
5218
 
5219
+ #: addons/moredatabase.php:237 addons/sftp.php:348 addons/webdav.php:75
5220
  msgid "Host"
5221
  msgstr ""
5222
 
5223
+ #: addons/sftp.php:281
5224
  msgid "%s Error: Failed to download"
5225
  msgstr ""
5226
 
5227
+ #: addons/sftp.php:461
5228
  msgid "Check your file permissions: Could not successfully create and enter:"
5229
  msgstr ""
5230
 
5231
+ #: addons/sftp.php:46 addons/sftp.php:47 addons/sftp.php:48
5232
  msgid "No %s found"
5233
  msgstr ""
5234
 
5235
+ #: addons/sftp.php:35
5236
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
5237
  msgstr ""
5238
 
5239
+ #: addons/sftp.php:35
5240
  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."
5241
  msgstr ""
5242
 
5243
+ #: addons/morefiles.php:622
5244
  msgid "No backup of %s directories: there was nothing found to back up"
5245
  msgstr ""
5246
 
5247
+ #: addons/morefiles.php:269
5248
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5249
  msgstr ""
5250
 
5251
+ #: addons/morefiles.php:267
5252
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
5253
  msgstr ""
5254
 
5255
+ #: addons/morefiles.php:246
5256
  msgid "More Files"
5257
  msgstr ""
5258
 
5259
+ #: addons/morefiles.php:160
5260
  msgid "WordPress core (including any additions to your WordPress root directory)"
5261
  msgstr ""
5262
 
5263
+ #: addons/morefiles.php:153
5264
  msgid "The above files comprise everything in a WordPress installation."
5265
  msgstr ""
5266
 
5267
+ #: addons/morefiles.php:134
5268
  msgid "Over-write wp-config.php"
5269
  msgstr ""
5270
 
5271
+ #: addons/morefiles.php:130 addons/morefiles.php:622
5272
+ #: includes/class-wpadmin-commands.php:461
5273
  msgid "WordPress Core"
5274
  msgstr ""
5275
 
5276
+ #: methods/addon-base-v2.php:303 methods/stream-base.php:312
5277
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5278
  msgstr ""
5279
 
5280
  #: addons/googlecloud.php:626 addons/googlecloud.php:660
5281
+ #: addons/googlecloud.php:666 addons/sftp.php:448 admin.php:2702 admin.php:2737
5282
+ #: admin.php:2746 methods/addon-base-v2.php:293 methods/stream-base.php:298
5283
  msgid "Failed"
5284
  msgstr ""
5285
 
5287
  msgid "WebDAV URL"
5288
  msgstr ""
5289
 
5290
+ #: methods/stream-base.php:282
5291
  msgid "Local write failed: Failed to download"
5292
  msgstr ""
5293
 
5294
+ #: methods/stream-base.php:269
5295
  msgid "Error opening remote file: Failed to download"
5296
  msgstr ""
5297
 
5298
+ #: methods/stream-base.php:103 methods/stream-base.php:107
5299
  msgid "Chunk %s: A %s error occurred"
5300
  msgstr ""
5301
 
5302
+ #: addons/googlecloud.php:278 addons/sftp.php:44 methods/addon-base-v2.php:65
5303
+ #: methods/addon-base-v2.php:106 methods/addon-base-v2.php:138
5304
+ #: methods/addon-base-v2.php:194 methods/addon-base-v2.php:273
5305
+ #: methods/ftp.php:31 methods/googledrive.php:130 methods/stream-base.php:27
5306
+ #: methods/stream-base.php:141 methods/stream-base.php:147
5307
+ #: methods/stream-base.php:181 methods/stream-base.php:246
5308
  msgid "No %s settings were found"
5309
  msgstr ""
5310
 
5311
+ #: methods/ftp.php:388
5312
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5313
  msgstr ""
5314
 
5315
+ #: methods/ftp.php:385
5316
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5317
  msgstr ""
5318
 
5319
+ #: methods/ftp.php:376
5320
  msgid "Failure: we did not successfully log in with those credentials."
5321
  msgstr ""
5322
 
5323
+ #: methods/ftp.php:358
5324
  msgid "Failure: No server details were given."
5325
  msgstr ""
5326
 
5327
+ #: methods/ftp.php:330
5328
  msgid "Needs to already exist"
5329
  msgstr ""
5330
 
5331
+ #: methods/ftp.php:310
5332
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5333
  msgstr ""
5334
 
5335
+ #: methods/ftp.php:310
5336
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
5337
  msgstr ""
5338
 
5339
+ #: addons/onedrive.php:755 methods/dropbox.php:614
5340
  msgid "Your %s account name: %s"
5341
  msgstr ""
5342
 
5343
+ #: methods/dropbox.php:604 methods/dropbox.php:631
5344
  msgid "though part of the returned information was not as expected - your mileage may vary"
5345
  msgstr ""
5346
 
5347
+ #: methods/dropbox.php:599 methods/dropbox.php:601
5348
  msgid "you have authenticated your %s account"
5349
  msgstr ""
5350
 
5351
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5352
  msgid "there's an add-on for that."
5353
  msgstr ""
5354
 
5355
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5356
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5357
  msgstr ""
5358
 
5359
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5360
  msgid "Backups are saved in"
5361
  msgstr ""
5362
 
5363
+ #: methods/dropbox.php:486 methods/dropbox.php:488
5364
  msgid "Need to use sub-folders?"
5365
  msgstr ""
5366
 
5367
+ #: methods/dropbox.php:197 methods/dropbox.php:218 methods/dropbox.php:234
5368
  msgid "error: failed to upload file to %s (see log file for more)"
5369
  msgstr ""
5370
 
5371
+ #: methods/dropbox.php:82 methods/dropbox.php:99
5372
  msgid "You do not appear to be authenticated with Dropbox"
5373
  msgstr ""
5374
 
5375
+ #: methods/s3.php:1030
5376
  msgid "The communication with %s was not encrypted."
5377
  msgstr ""
5378
 
5379
+ #: methods/s3.php:1028
5380
  msgid "The communication with %s was encrypted."
5381
  msgstr ""
5382
 
5383
+ #: addons/googlecloud.php:689 methods/s3.php:1025
5384
  msgid "We accessed the bucket, and were able to create files within it."
5385
  msgstr ""
5386
 
5387
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5388
+ #: methods/s3.php:1035
5389
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5390
  msgstr ""
5391
 
5392
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:1023
5393
+ #: methods/s3.php:1035
5394
  msgid "Failure"
5395
  msgstr ""
5396
 
5397
+ #: methods/s3.php:1011
5398
  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)."
5399
  msgstr ""
5400
 
5401
+ #: addons/s3-enhanced.php:145 methods/openstack2.php:117 methods/s3.php:1005
5402
  msgid "Region"
5403
  msgstr ""
5404
 
5405
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:987
5406
  msgid "Failure: No bucket details were given."
5407
  msgstr ""
5408
 
5409
+ #: methods/s3.php:965
5410
  msgid "API secret"
5411
  msgstr ""
5412
 
5413
+ #: methods/s3.php:858
5414
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5415
  msgstr ""
5416
 
5417
+ #: methods/s3.php:857
5418
  msgid "%s location"
5419
  msgstr ""
5420
 
5421
+ #: methods/s3.php:853
5422
  msgid "%s secret key"
5423
  msgstr ""
5424
 
5425
+ #: methods/s3.php:849
5426
  msgid "%s access key"
5427
  msgstr ""
5428
 
5429
+ #: methods/s3.php:814
5430
  msgid "If you see errors about SSL certificates, then please go here for help."
5431
  msgstr ""
5432
 
5433
+ #: methods/s3.php:812
5434
  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."
5435
  msgstr ""
5436
 
5437
+ #: methods/s3.php:446 methods/s3.php:620 methods/s3.php:722
5438
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5439
  msgstr ""
5440
 
5441
+ #: methods/s3.php:705 methods/s3.php:751
5442
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5443
  msgstr ""
5444
 
5445
+ #: methods/s3.php:424
5446
  msgid "%s re-assembly error (%s): (see log file for more)"
5447
  msgstr ""
5448
 
5449
+ #: methods/s3.php:420
5450
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5451
  msgstr ""
5452
 
5453
+ #: methods/s3.php:404
5454
  msgid "%s chunk %s: upload failed"
5455
  msgstr ""
5456
 
5457
+ #: methods/s3.php:394
5458
  msgid "%s error: file %s was shortened unexpectedly"
5459
  msgstr ""
5460
 
5461
+ #: methods/s3.php:371
5462
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5463
  msgstr ""
5464
 
5465
+ #: methods/email.php:71
5466
  msgid "Note:"
5467
  msgstr ""
5468
 
5469
+ #: methods/email.php:45
5470
  msgid "WordPress Backup"
5471
  msgstr ""
5472
 
5473
+ #: methods/cloudfiles.php:547 methods/openstack-base.php:480
5474
  msgid "We accessed the container, and were able to create files within it."
5475
  msgstr ""
5476
 
5477
+ #: methods/cloudfiles.php:543
5478
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5479
  msgstr ""
5480
 
5481
+ #: methods/cloudfiles.php:516 methods/openstack-base.php:424
5482
  msgid "Failure: No container details were given."
5483
  msgstr ""
5484
 
5485
+ #: addons/moredatabase.php:238 addons/sftp.php:362 addons/webdav.php:63
5486
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:496
5487
+ #: methods/openstack2.php:125
5488
  msgid "Username"
5489
  msgstr ""
5490
 
5491
+ #: methods/cloudfiles-new.php:153 methods/cloudfiles.php:491 methods/s3.php:961
5492
  msgid "API key"
5493
  msgstr ""
5494
 
5495
  #: addons/migrator.php:278 addons/migrator.php:1871 addons/moredatabase.php:75
5496
+ #: addons/moredatabase.php:77 addons/moredatabase.php:79 addons/sftp.php:418
5497
+ #: addons/sftp.php:422 addons/sftp.php:426 addons/webdav.php:103 admin.php:662
5498
+ #: methods/addon-base-v2.php:286 methods/cloudfiles-new.php:153
5499
+ #: methods/cloudfiles-new.php:158 methods/cloudfiles.php:491
5500
+ #: methods/cloudfiles.php:496 methods/ftp.php:362 methods/ftp.php:366
5501
+ #: methods/openstack2.php:146 methods/openstack2.php:151
5502
+ #: methods/openstack2.php:156 methods/openstack2.php:161 methods/s3.php:961
5503
+ #: methods/s3.php:965
5504
  msgid "Failure: No %s was given."
5505
  msgstr ""
5506
 
5507
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5508
+ #: methods/openstack-base.php:517 methods/s3.php:801
5509
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5510
  msgstr ""
5511
 
5512
+ #: methods/cloudfiles.php:477
5513
  msgid "Cloud Files container"
5514
  msgstr ""
5515
 
5516
+ #: methods/cloudfiles.php:473
5517
  msgid "Cloud Files API key"
5518
  msgstr ""
5519
 
5520
+ #: methods/cloudfiles.php:469
5521
  msgid "Cloud Files username"
5522
  msgstr ""
5523
 
5524
+ #: addons/cloudfiles-enhanced.php:36 methods/cloudfiles-new.php:100
5525
+ #: methods/cloudfiles.php:453
5526
  msgid "UK"
5527
  msgstr ""
5528
 
5529
+ #: addons/cloudfiles-enhanced.php:35 methods/cloudfiles-new.php:99
5530
+ #: methods/cloudfiles.php:452
5531
  msgid "US (default)"
5532
  msgstr ""
5533
 
5534
+ #: methods/cloudfiles.php:449
5535
  msgid "US or UK Cloud"
5536
  msgstr ""
5537
 
5538
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5539
+ #: methods/openstack2.php:98
5540
  msgid "Also, you should read this important FAQ."
5541
  msgstr ""
5542
 
5543
+ #: methods/cloudfiles-new.php:92 methods/cloudfiles.php:445
5544
  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."
5545
  msgstr ""
5546
 
5547
+ #: addons/sftp.php:409 admin.php:685 methods/addon-base-v2.php:252
5548
+ #: methods/backup-module.php:186 methods/cloudfiles.php:483
5549
+ #: methods/openstack-base.php:528 methods/s3.php:863
5550
+ #: methods/stream-base.php:220
5551
  msgid "Test %s Settings"
5552
  msgstr ""
5553
 
5554
+ #: methods/openstack-base.php:407
5555
  msgid "Error downloading remote file: Failed to download ("
5556
  msgstr ""
5557
 
5558
+ #: class-updraftplus.php:1044 class-updraftplus.php:1088
5559
+ #: methods/cloudfiles.php:379 methods/stream-base.php:262
5560
  msgid "Error opening local file: Failed to download"
5561
  msgstr ""
5562
 
5563
+ #: methods/cloudfiles.php:205
5564
  msgid "Cloud Files error - failed to upload file"
5565
  msgstr ""
5566
 
5567
+ #: addons/sftp.php:135 addons/sftp.php:147 methods/cloudfiles.php:134
5568
+ #: methods/cloudfiles.php:176 methods/openstack-base.php:77
5569
+ #: methods/openstack-base.php:266 methods/s3.php:339 methods/s3.php:351
5570
+ #: methods/s3.php:352
5571
  msgid "%s Error: Failed to upload"
5572
  msgstr ""
5573
 
5574
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5575
+ #: class-updraftplus.php:906 methods/cloudfiles.php:117
5576
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5577
  msgid "%s Error: Failed to open local file"
5578
  msgstr ""
5579
 
5580
+ #: methods/cloudfiles.php:90 methods/cloudfiles.php:331
5581
+ #: methods/cloudfiles.php:350
5582
  msgid "Cloud Files error - failed to create and access the container"
5583
  msgstr ""
5584
 
5585
  #: addons/cloudfiles-enhanced.php:96 addons/cloudfiles-enhanced.php:109
5586
+ #: addons/cloudfiles-enhanced.php:113 methods/cloudfiles.php:526
5587
+ #: methods/cloudfiles.php:529 methods/cloudfiles.php:532
5588
  msgid "Cloud Files authentication failed"
5589
  msgstr ""
5590
 
5591
+ #: addons/googlecloud.php:907 methods/googledrive.php:963
5592
  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."
5593
  msgstr ""
5594
 
5595
+ #: addons/googlecloud.php:896 methods/googledrive.php:952
5596
  msgid "Authenticate with Google"
5597
  msgstr ""
5598
 
5599
  #: addons/googlecloud.php:847 addons/onedrive.php:980
5600
+ #: methods/googledrive.php:922
5601
  msgid "Client Secret"
5602
  msgstr ""
5603
 
5604
+ #: addons/googlecloud.php:842 methods/googledrive.php:919
5605
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5606
  msgstr ""
5607
 
5608
  #: addons/googlecloud.php:839 addons/onedrive.php:976
5609
+ #: methods/googledrive.php:918
5610
  msgid "Client ID"
5611
  msgstr ""
5612
 
5613
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5614
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5615
  msgstr ""
5616
 
5617
+ #: addons/googlecloud.php:828 methods/googledrive.php:908
5618
  msgid "Select 'Web Application' as the application type."
5619
  msgstr ""
5620
 
5621
+ #: addons/googlecloud.php:826 methods/googledrive.php:906
5622
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5623
  msgstr ""
5624
 
5625
+ #: methods/addon-base-v2.php:240 methods/cloudfiles.php:425
5626
+ #: methods/dropbox.php:468 methods/ftp.php:305 methods/googledrive.php:891
5627
+ #: methods/openstack-base.php:507 methods/s3.php:773
5628
+ #: methods/stream-base.php:213
5629
  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."
5630
  msgstr ""
5631
 
5632
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5633
+ #: addons/googlecloud.php:709 methods/googledrive.php:445
5634
+ #: methods/googledrive.php:446
5635
  msgid "Account is not authorized."
5636
  msgstr ""
5637
 
5638
+ #: methods/googledrive.php:371 methods/googledrive.php:417
5639
+ #: methods/googledrive.php:423 methods/googledrive.php:425
5640
+ #: methods/stream-base.php:197
5641
  msgid "Failed to upload to %s"
5642
  msgstr ""
5643
 
5644
+ #: methods/googledrive.php:400
5645
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5646
  msgstr ""
5647
 
5648
+ #: methods/googledrive.php:497
5649
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5650
  msgstr ""
5651
 
5652
  #: addons/googlecloud.php:579 addons/onedrive.php:793
5653
+ #: methods/googledrive.php:348
5654
  msgid "you have authenticated your %s account."
5655
  msgstr ""
5656
 
5657
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5658
+ #: addons/onedrive.php:793 addons/sftp.php:481 methods/addon-base-v2.php:300
5659
+ #: methods/cloudfiles.php:547 methods/googledrive.php:348
5660
+ #: methods/openstack-base.php:480 methods/s3.php:1025
5661
+ #: methods/stream-base.php:309
5662
  msgid "Success"
5663
  msgstr ""
5664
 
5665
+ #: addons/onedrive.php:747 methods/dropbox.php:642 methods/dropbox.php:651
5666
+ #: methods/googledrive.php:322
5667
  msgid "Your %s quota usage: %s %% used, %s available"
5668
  msgstr ""
5669
 
5670
+ #: addons/googlecloud.php:390 methods/googledrive.php:295
5671
  msgid "Authorization failed"
5672
  msgstr ""
5673
 
5674
+ #: addons/googlecloud.php:382 methods/googledrive.php:287
5675
  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."
5676
  msgstr ""
5677
 
5678
+ #: methods/addon-not-yet-present.php:62
5679
  msgid "follow this link to get it"
5680
  msgstr ""
5681
 
5682
+ #: methods/addon-not-yet-present.php:62
5683
  msgid "%s support is available as an add-on"
5684
  msgstr ""
5685
 
5686
+ #: methods/addon-not-yet-present.php:27 methods/addon-not-yet-present.php:39
5687
+ #: methods/addon-not-yet-present.php:46 methods/addon-not-yet-present.php:55
5688
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5689
  msgstr ""
5690
 
5693
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5694
  msgstr ""
5695
 
5696
+ #: addons/migrator.php:1770 admin.php:2705 admin.php:2739 admin.php:2743
5697
+ #: admin.php:3619 admin.php:3632 restorer.php:2203 restorer.php:2309
5698
  msgid "OK"
5699
  msgstr ""
5700
 
5718
  msgid "Old table prefix:"
5719
  msgstr ""
5720
 
5721
+ #: addons/reporting.php:65 addons/reporting.php:152 backup.php:942
5722
+ #: class-updraftplus.php:4025
5723
  msgid "Backup of:"
5724
  msgstr ""
5725
 
5795
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5796
  msgstr ""
5797
 
5798
+ #: admin.php:3640 admin.php:3641
5799
  msgid "Could not find one of the files for restoration"
5800
  msgstr ""
5801
 
5802
+ #: admin.php:3735
5803
  msgid "Error message"
5804
  msgstr ""
5805
 
5806
+ #: admin.php:3637
5807
  msgid "The backup records do not contain information about the proper size of this file."
5808
  msgstr ""
5809
 
5810
+ #: admin.php:3629
5811
  msgid "Archive is expected to be size:"
5812
  msgstr ""
5813
 
5814
+ #: admin.php:3513
5815
  msgid "If making a request for support, please include this information:"
5816
  msgstr ""
5817
 
5818
+ #: admin.php:3512
5819
  msgid "ABORT: Could not find the information on which entities to restore."
5820
  msgstr ""
5821
 
5822
+ #: admin.php:3466
5823
  msgid "UpdraftPlus Restoration: Progress"
5824
  msgstr ""
5825
 
5826
+ #: admin.php:3418
5827
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5828
  msgstr ""
5829
 
5830
+ #: admin.php:3367
5831
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5832
  msgstr ""
5833
 
5834
+ #: admin.php:3376
 
 
 
 
5835
  msgid "Delete this backup set"
5836
  msgstr ""
5837
 
5838
+ #: admin.php:3047
5839
  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."
5840
  msgstr ""
5841
 
5842
+ #: admin.php:3044
5843
  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."
5844
  msgstr ""
5845
 
5846
+ #: admin.php:3042
5847
  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)."
5848
  msgstr ""
5849
 
5850
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435
5851
+ #: methods/openstack-base.php:517 methods/s3.php:801
5852
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5853
  msgstr ""
5854
 
5855
+ #: templates/wp-admin/settings/form-contents.php:421
5856
  msgid "Save Changes"
5857
  msgstr ""
5858
 
5859
+ #: templates/wp-admin/settings/form-contents.php:398
5860
  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."
5861
  msgstr ""
5862
 
5863
+ #: templates/wp-admin/settings/form-contents.php:397
5864
  msgid "Disable SSL entirely where possible"
5865
  msgstr ""
5866
 
5867
+ #: templates/wp-admin/settings/form-contents.php:393
5868
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5869
  msgstr ""
5870
 
5871
+ #: templates/wp-admin/settings/form-contents.php:393
5872
  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."
5873
  msgstr ""
5874
 
5875
+ #: templates/wp-admin/settings/form-contents.php:392
5876
  msgid "Do not verify SSL certificates"
5877
  msgstr ""
5878
 
5879
+ #: templates/wp-admin/settings/form-contents.php:388
5880
  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."
5881
  msgstr ""
5882
 
5883
+ #: templates/wp-admin/settings/form-contents.php:387
5884
  msgid "Use the server's SSL certificates"
5885
  msgstr ""
5886
 
5887
+ #: admin.php:2918
5888
  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."
5889
  msgstr ""
5890
 
5891
+ #: admin.php:2918
5892
  msgid "click here"
5893
  msgstr ""
5894
 
5895
+ #: admin.php:2918
5896
  msgid "or, to reset this option"
5897
  msgstr ""
5898
 
5899
+ #: admin.php:2918
5900
  msgid "Follow this link to attempt to create the directory and set the permissions"
5901
  msgstr ""
5902
 
5903
+ #: admin.php:2910
5904
  msgid "Backup directory specified is writable, which is good."
5905
  msgstr ""
5906
 
5907
+ #: templates/wp-admin/settings/form-contents.php:368
5908
  msgid "Backup directory"
5909
  msgstr ""
5910
 
5911
+ #: templates/wp-admin/settings/form-contents.php:363
5912
  msgid "Delete local backup"
5913
  msgstr ""
5914
 
5915
+ #: templates/wp-admin/settings/form-contents.php:343
5916
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5917
  msgstr ""
5918
 
5919
+ #: templates/wp-admin/settings/form-contents.php:343
5920
  msgid "Show expert settings"
5921
  msgstr ""
5922
 
5923
+ #: templates/wp-admin/settings/form-contents.php:342
5924
  msgid "Expert settings"
5925
  msgstr ""
5926
 
5927
+ #: templates/wp-admin/settings/form-contents.php:353
5928
  msgid "Debug mode"
5929
  msgstr ""
5930
 
5931
+ #: templates/wp-admin/settings/form-contents.php:338
5932
  msgid "Advanced / Debugging Settings"
5933
  msgstr ""
5934
 
5935
+ #: admin.php:621
5936
  msgid "Requesting start of backup..."
5937
  msgstr ""
5938
 
5939
+ #: addons/morefiles.php:294 admin.php:637
5940
  msgid "Cancel"
5941
  msgstr ""
5942
 
5943
+ #: addons/reporting.php:216 admin.php:3191
5944
  msgid "None"
5945
  msgstr ""
5946
 
5948
  msgid "Choose your remote storage"
5949
  msgstr ""
5950
 
5951
+ #: templates/wp-admin/settings/form-contents.php:236
5952
  msgid "Manually decrypt a database backup file"
5953
  msgstr ""
5954
 
5955
+ #: templates/wp-admin/settings/form-contents.php:217
5956
  msgid "Database encryption phrase"
5957
  msgstr ""
5958
 
5959
+ #: templates/wp-admin/settings/form-contents.php:315 udaddons/options.php:150
5960
  msgid "Email"
5961
  msgstr ""
5962
 
5963
+ #: templates/wp-admin/settings/form-contents.php:207
5964
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5965
  msgstr ""
5966
 
5967
+ #: addons/morefiles.php:440 admin.php:2988
5968
  msgid "Exclude these:"
5969
  msgstr ""
5970
 
5971
+ #: admin.php:2979
5972
  msgid "Any other directories found inside wp-content"
5973
  msgstr ""
5974
 
5975
+ #: templates/wp-admin/settings/form-contents.php:204
5976
  msgid "Include in files backup"
5977
  msgstr ""
5978
 
5984
  msgid "To fix the time at which a backup should take place,"
5985
  msgstr ""
5986
 
5987
+ #: admin.php:2904
5988
  msgid "Monthly"
5989
  msgstr ""
5990
 
5991
+ #: admin.php:2903
5992
  msgid "Fortnightly"
5993
  msgstr ""
5994
 
5995
+ #: admin.php:2902
5996
  msgid "Weekly"
5997
  msgstr ""
5998
 
5999
+ #: admin.php:2901
6000
  msgid "Daily"
6001
  msgstr ""
6002
 
6003
+ #: admin.php:644 admin.php:2884
6004
  msgid "Download log file"
6005
  msgstr ""
6006
 
6007
+ #: admin.php:2802
6008
  msgid "The folder exists, but your webserver does not have permission to write to it."
6009
  msgstr ""
6010
 
6011
+ #: admin.php:2797
6012
  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"
6013
  msgstr ""
6014
 
6015
+ #: admin.php:2783
6016
  msgid "The request to the filesystem to create the directory failed."
6017
  msgstr ""
6018
 
6019
+ #: addons/migrator.php:2243 admin.php:638 admin.php:2699 admin.php:2732
6020
+ #: admin.php:3376 templates/wp-admin/settings/delete-and-restore-modals.php:5
6021
  msgid "Delete"
6022
  msgstr ""
6023
 
6024
+ #: admin.php:2639
6025
  msgid "show log"
6026
  msgstr ""
6027
 
6097
  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"
6098
  msgstr ""
6099
 
6100
+ #: addons/morefiles.php:130
6101
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6102
  msgid "%s restoration options:"
6103
  msgstr ""
6134
  msgid "Delete backup set"
6135
  msgstr ""
6136
 
6137
+ #: admin.php:620
6138
  msgid "Download error: the server sent us a response which we did not understand."
6139
  msgstr ""
6140
 
6144
  #: addons/migrator.php:1742 addons/migrator.php:1804 addons/migrator.php:1840
6145
  #: addons/migrator.php:1879 addons/migrator.php:1889 addons/migrator.php:1894
6146
  #: addons/s3-enhanced.php:120 addons/s3-enhanced.php:125
6147
+ #: addons/s3-enhanced.php:127 addons/sftp.php:737 addons/webdav.php:79
6148
+ #: admin.php:82 admin.php:612 admin.php:3634 admin.php:3664
6149
+ #: methods/remotesend.php:69 methods/remotesend.php:227
6150
+ #: methods/updraftvault.php:432 restorer.php:1364
6151
  msgid "Error:"
6152
  msgstr ""
6153
 
6154
+ #: admin.php:603 templates/wp-admin/settings/downloading-and-restoring.php:34
6155
  msgid "calculating..."
6156
  msgstr ""
6157
 
6158
+ #: includes/updraftplus-notices.php:260
6159
+ msgid "or"
6160
+ msgstr ""
6161
+
6162
  #: templates/wp-admin/settings/downloading-and-restoring.php:51
6163
  msgid "UpdraftPlus - Upload backup files"
6164
  msgstr ""
6171
  msgid "Web-server disk space in use by UpdraftPlus"
6172
  msgstr ""
6173
 
6174
+ #: addons/google-enhanced.php:81 methods/googledrive.php:130
6175
+ #: methods/googledrive.php:348 methods/googledrive.php:371
6176
+ #: methods/googledrive.php:400 methods/googledrive.php:407
6177
+ #: methods/googledrive.php:417 methods/googledrive.php:423
6178
+ #: methods/googledrive.php:425 methods/googledrive.php:890
6179
+ #: methods/googledrive.php:902 methods/googledrive.php:918
6180
+ #: methods/googledrive.php:922 methods/googledrive.php:933
6181
+ #: methods/googledrive.php:943
6182
  msgid "Google Drive"
6183
  msgstr ""
6184
 
6194
  msgid "More tasks:"
6195
  msgstr ""
6196
 
6197
+ #: admin.php:2402
6198
  msgid "Download most recently modified log file"
6199
  msgstr ""
6200
 
6201
+ #: admin.php:2361 admin.php:2367 central/bootstrap.php:161
6202
  msgid "(Nothing yet logged)"
6203
  msgstr ""
6204
 
6205
+ #: addons/autobackup.php:293 addons/autobackup.php:384 admin.php:2360
6206
+ #: admin.php:2365
6207
  msgid "Last log message"
6208
  msgstr ""
6209
 
6210
+ #: addons/migrator.php:218 admin.php:643 admin.php:3367
6211
  #: templates/wp-admin/settings/tab-status.php:30
6212
  msgid "Restore"
6213
  msgstr ""
6214
 
6215
+ #: admin.php:472 admin.php:636 templates/wp-admin/settings/tab-status.php:27
6216
  msgid "Backup Now"
6217
  msgstr ""
6218
 
6219
  #: addons/migrator.php:1774 addons/moredatabase.php:240
6220
+ #: addons/reporting.php:231 admin.php:257 admin.php:3166 admin.php:3239
6221
+ #: admin.php:3718 includes/class-wpadmin-commands.php:138
6222
+ #: includes/class-wpadmin-commands.php:459
6223
  #: templates/wp-admin/settings/delete-and-restore-modals.php:81
6224
  #: templates/wp-admin/settings/delete-and-restore-modals.php:83
6225
  msgid "Database"
6226
  msgstr ""
6227
 
6228
+ #: admin.php:253 admin.php:4130
6229
  msgid "Files"
6230
  msgstr ""
6231
 
6233
  msgid "Next scheduled backups"
6234
  msgstr ""
6235
 
6236
+ #: admin.php:233
6237
  msgid "At the same time as the files backup"
6238
  msgstr ""
6239
 
6240
+ #: admin.php:223 admin.php:244 admin.php:251
6241
  msgid "Nothing currently scheduled"
6242
  msgstr ""
6243
 
6249
  msgid "JavaScript warning"
6250
  msgstr ""
6251
 
6252
+ #: admin.php:623 admin.php:2429
6253
  msgid "Delete Old Directories"
6254
  msgstr ""
6255
 
6256
+ #: admin.php:2174
6257
  msgid "Current limit is:"
6258
  msgstr ""
6259
 
6260
+ #: admin.php:2148
6261
  msgid "Your backup has been restored."
6262
  msgstr ""
6263
 
6269
  msgid "Lead developer's homepage"
6270
  msgstr ""
6271
 
6272
+ #: admin.php:4050
6273
  msgid "Your settings have been wiped."
6274
  msgstr ""
6275
 
6276
+ #: admin.php:2108
6277
  msgid "Backup directory successfully created."
6278
  msgstr ""
6279
 
6280
+ #: admin.php:2101
6281
  msgid "Backup directory could not be created"
6282
  msgstr ""
6283
 
6284
+ #: admin.php:2671
6285
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6286
  msgstr ""
6287
 
6288
+ #: admin.php:2669
6289
  msgid "Old directories successfully removed."
6290
  msgstr ""
6291
 
6292
+ #: admin.php:2666
6293
  msgid "Remove old directories"
6294
  msgstr ""
6295
 
6296
+ #: addons/migrator.php:281 addons/migrator.php:296 admin.php:2050
6297
+ #: admin.php:2059 admin.php:2068 admin.php:2110 admin.php:2673
6298
  msgid "Return to UpdraftPlus Configuration"
6299
  msgstr ""
6300
 
6301
+ #: admin.php:616 admin.php:2050 admin.php:2059 admin.php:2068 admin.php:2110
6302
+ #: admin.php:2673 templates/wp-admin/settings/existing-backups-table.php:14
6303
  msgid "Actions"
6304
  msgstr ""
6305
 
6306
+ #: admin.php:2039
6307
  msgid "Restore successful!"
6308
  msgstr ""
6309
 
6310
+ #: admin.php:1969
6311
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6312
  msgstr ""
6313
 
6314
+ #: admin.php:1879
6315
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6316
  msgstr ""
6317
 
6318
+ #: admin.php:1760
6319
  msgid "No local copy present."
6320
  msgstr ""
6321
 
6322
+ #: admin.php:1757
6323
  msgid "Download in progress"
6324
  msgstr ""
6325
 
6326
+ #: admin.php:615 admin.php:1746
6327
  msgid "File ready."
6328
  msgstr ""
6329
 
6330
+ #: admin.php:1727
6331
  msgid "Download failed"
6332
  msgstr ""
6333
 
6334
+ #: admin.php:613 admin.php:1518 admin.php:3617 class-updraftplus.php:1044
6335
+ #: class-updraftplus.php:1088 methods/addon-base-v2.php:84
6336
+ #: methods/addon-base-v2.php:89 methods/addon-base-v2.php:204
6337
+ #: methods/addon-base-v2.php:224 methods/stream-base.php:197 restorer.php:2199
6338
  #: restorer.php:2224 restorer.php:2306 updraftplus.php:147
6339
  msgid "Error"
6340
  msgstr ""
6341
 
6342
+ #: admin.php:1546
6343
  msgid "Could not find that job - perhaps it has already finished?"
6344
  msgstr ""
6345
 
6346
+ #: admin.php:1538
6347
  msgid "Job deleted"
6348
  msgstr ""
6349
 
6350
+ #: admin.php:1622
6351
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6352
  msgstr ""
6353
 
6354
+ #: admin.php:688
6355
  msgid "Nothing yet logged"
6356
  msgstr ""
6357
 
6358
+ #: admin.php:905
6359
  msgid "Please consult this FAQ if you have problems backing up."
6360
  msgstr ""
6361
 
6362
+ #: admin.php:905
6363
  msgid "Your website is hosted using the %s web server."
6364
  msgstr ""
6365
 
6366
+ #: admin.php:901
6367
  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."
6368
  msgstr ""
6369
 
6370
+ #: admin.php:897
6371
  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."
6372
  msgstr ""
6373
 
6374
+ #: admin.php:889 admin.php:893 admin.php:897 admin.php:901 admin.php:905
6375
+ #: admin.php:914 admin.php:3035 admin.php:3042 admin.php:3044
6376
+ #: methods/cloudfiles-new.php:87 methods/cloudfiles.php:435 methods/ftp.php:291
6377
+ #: methods/openstack-base.php:517 methods/s3.php:797 methods/s3.php:801
6378
+ #: methods/updraftvault.php:258
6379
  #: templates/wp-admin/settings/downloading-and-restoring.php:29
6380
  #: udaddons/updraftplus-addons.php:208
6381
  msgid "Warning"
6382
  msgstr ""
6383
 
6384
+ #: admin.php:834
6385
  msgid "Add-Ons / Pro Support"
6386
  msgstr ""
6387
 
6388
+ #: admin.php:488 admin.php:830 templates/wp-admin/settings/tab-bar.php:7
6389
  msgid "Settings"
6390
  msgstr ""
6391
 
6392
+ #: admin.php:803
6393
  msgid "Allowed Files"
6394
  msgstr ""
6395
 
6397
  msgid "Could not create %s zip. Consult the log file for more information."
6398
  msgstr ""
6399
 
6400
+ #: backup.php:2024
6401
  msgid "Infinite recursion: consult your log for more information"
6402
  msgstr ""
6403
 
6409
  msgid "Like UpdraftPlus and can spare one minute?"
6410
  msgstr ""
6411
 
6412
+ #: addons/azure.php:216 class-updraftplus.php:3784 methods/googledrive.php:823
6413
  msgid "File not found"
6414
  msgstr ""
6415
 
6416
+ #: class-updraftplus.php:3695
6417
  msgid "The decryption key used:"
6418
  msgstr ""
6419
 
6420
+ #: class-updraftplus.php:3695 class-updraftplus.php:3965 restorer.php:390
6421
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6422
  msgstr ""
6423
 
6424
+ #: class-updraftplus.php:3676 class-updraftplus.php:3953 restorer.php:377
6425
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6426
  msgstr ""
6427
 
6428
+ #: backup.php:1914
6429
  msgid "Could not open the backup file for writing"
6430
  msgstr ""
6431
 
6432
+ #: class-updraftplus.php:3288
6433
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6434
  msgstr ""
6435
 
6436
+ #: class-updraftplus.php:3265
6437
  msgid "Could not read the directory"
6438
  msgstr ""
6439
 
6440
+ #: admin.php:1797 backup.php:1139 restorer.php:225
6441
  msgid "Backup directory (%s) is not writable, or does not exist."
6442
  msgstr ""
6443
 
6444
+ #: backup.php:943
6445
  msgid "WordPress backup is complete"
6446
  msgstr ""
6447
 
6448
+ #: class-updraftplus.php:2834
6449
  msgid "The backup attempt has finished, apparently unsuccessfully"
6450
  msgstr ""
6451
 
6452
+ #: class-updraftplus.php:2819
6453
  msgid "The backup apparently succeeded and is now complete"
6454
  msgstr ""
6455
 
6456
+ #: addons/moredatabase.php:373
6457
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6458
  msgstr ""
6459
 
6460
+ #: class-updraftplus.php:2246
6461
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6462
  msgstr ""
6463
 
6464
+ #: class-updraftplus.php:1613
6465
  msgid "Others"
6466
  msgstr ""
6467
 
6468
+ #: addons/multisite.php:446 class-updraftplus.php:1598
6469
  msgid "Uploads"
6470
  msgstr ""
6471
 
6472
+ #: class-updraftplus.php:1597
6473
  msgid "Themes"
6474
  msgstr ""
6475
 
6476
+ #: class-updraftplus.php:1596
6477
  msgid "Plugins"
6478
  msgstr ""
6479
 
6480
+ #: class-updraftplus.php:458
6481
  msgid "No log files were found."
6482
  msgstr ""
6483
 
6484
+ #: admin.php:1681 admin.php:1685 class-updraftplus.php:453
6485
  msgid "The log file could not be read."
6486
  msgstr ""
6487
 
6488
+ #: admin.php:921 admin.php:925 admin.php:929 admin.php:933 admin.php:937
6489
+ #: class-updraftplus.php:418 class-updraftplus.php:453
6490
+ #: class-updraftplus.php:458 class-updraftplus.php:463
6491
  msgid "UpdraftPlus notice:"
6492
  msgstr ""
6493
 
6494
+ #: addons/multisite.php:63 addons/multisite.php:654 options.php:42
6495
  msgid "UpdraftPlus Backups"
6496
  msgstr ""
languages/updraftplus-cs_CZ.mo CHANGED
Binary file
languages/updraftplus-cs_CZ.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-02-10 07:33:57+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,61 +11,129 @@ msgstr ""
11
  "Language: cs_CZ\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: restorer.php:1629
15
  msgid "Skipped tables:"
16
- msgstr ""
17
 
18
- #: class-updraftplus.php:4049
19
  msgid "This database backup has the following WordPress tables excluded: %s"
20
- msgstr ""
21
 
22
- #: admin.php:2271
23
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
24
- msgstr ""
25
 
26
- #: admin.php:2271
27
  msgid "All WordPress tables will be backed up."
28
- msgstr ""
29
 
30
- #: admin.php:675
31
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
32
- msgstr ""
33
 
34
- #: admin.php:675
35
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
36
- msgstr ""
37
 
38
- #: admin.php:675
39
  msgid "The available memory on the server."
40
- msgstr ""
41
 
42
- #: admin.php:675
43
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
44
- msgstr ""
45
 
46
- #: admin.php:675
47
  msgid "The file failed to upload. Please check the following:"
48
- msgstr ""
49
 
50
- #: admin.php:674
51
  msgid "HTTP code:"
52
- msgstr ""
53
 
54
- #: admin.php:572
55
  msgid "You have chosen to backup a database, but no tables have been selected"
56
- msgstr ""
57
 
58
- #: addons/moredatabase.php:484
59
  msgid "tables"
60
- msgstr ""
61
 
62
- #: addons/moredatabase.php:483
63
  msgid "WordPress database"
64
- msgstr ""
65
 
66
- #: addons/moredatabase.php:476
67
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
68
- msgstr ""
69
 
70
  #: templates/wp-admin/settings/tab-addons.php:300
71
  msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
@@ -214,7 +282,7 @@ msgstr "Zdarma"
214
  msgid "UpdraftPlus"
215
  msgstr "UpdraftPlus"
216
 
217
- #: templates/wp-admin/settings/form-contents.php:241
218
  msgid "Recommended: optimize your database with WP-Optimize."
219
  msgstr "Doporučení: optimalizujte databázi pomocí pluginu WP-Optimize."
220
 
@@ -237,31 +305,27 @@ msgstr "Více informací"
237
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
238
  msgstr "Po záloze databáze vám doporučujeme nainstalovat náš plugin WP-Optimize, pro vylepšení vlastností tohoto webu."
239
 
240
- #: admin.php:595
241
- msgid "Show contents"
242
- msgstr "Zobrazit obsah"
243
-
244
- #: addons/morefiles.php:246
245
  msgid "Please choose a file or directory"
246
  msgstr "Vyberte soubor nebo adresář"
247
 
248
- #: addons/morefiles.php:235
249
  msgid "Confirm"
250
  msgstr "Potvrdit"
251
 
252
- #: addons/morefiles.php:238
253
  msgid "Go up a directory"
254
  msgstr "Jít o úroveň výš"
255
 
256
- #: addons/morefiles.php:231
257
  msgid "Add directory..."
258
  msgstr "Přidat adresář..."
259
 
260
- #: addons/morefiles.php:224 addons/morefiles.php:244
261
  msgid "Edit"
262
  msgstr "Upravit"
263
 
264
- #: addons/morefiles.php:207
265
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
266
  msgstr "Je-li ji aktivní, níze vyberte cestu ze stromu adresáře a stiskněte „Potvrdit“."
267
 
@@ -541,19 +605,19 @@ msgstr "Zpracovává se tabulka (%s)"
541
  msgid "Backup of: %s"
542
  msgstr "Záloha: %s"
543
 
544
- #: methods/googledrive.php:212
545
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
546
  msgstr "Klient byl smazán z konzole Google Drive API. Vytvořte prosím nový projekt Google Drive a připojte se znovu s UpdraftPlus."
547
 
548
- #: methods/dropbox.php:569
549
  msgid "%s de-authentication"
550
  msgstr "%s de-autentizace"
551
 
552
- #: methods/dropbox.php:537
553
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
554
  msgstr "Ve vaši konzoli Dropboxu (v záložce „API Settings“) musíte při požádání vložit následující jako autorizované URI přesměrování"
555
 
556
- #: methods/dropbox.php:511
557
  msgid "Follow this link to deauthenticate with %s."
558
  msgstr "Klikněte na tento odkaz pro zrušení autentizace pomocí %s."
559
 
@@ -561,7 +625,7 @@ msgstr "Klikněte na tento odkaz pro zrušení autentizace pomocí %s."
561
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
562
  msgstr "UpdraftCentral vám umožní správu webu používajícího WordPress (společně se správou záloh a aktualizací) z centrální nástěnky."
563
 
564
- #: backup.php:1495
565
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
566
  msgstr "Pokud ne, pak budete muset buď vymazat data z této tabulky nebo budete muset kontaktovat poskytovatele webhostingu a požádat o větší zdroje."
567
 
@@ -569,47 +633,47 @@ msgstr "Pokud ne, pak budete muset buď vymazat data z této tabulky nebo budete
569
  msgid "You have selected a remote storage option which has an authorization step to complete:"
570
  msgstr "Vybrali jste si možnost vzdáleného úložiště, která vyžaduje následující autorizační kroky:"
571
 
572
- #: admin.php:1391
573
  msgid "Remote files deleted:"
574
  msgstr "Vzdálené soubory byly smazány:"
575
 
576
- #: admin.php:1390
577
  msgid "Local files deleted:"
578
  msgstr "Místní vymazané soubory:"
579
 
580
- #: admin.php:887 admin.php:891 admin.php:899 admin.php:903
581
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
582
  msgstr "Klikněte na tento odkaz pro potvrzení přístupu k vašemu %s účtu (bez tohoto nebudete moci zálohovat na %s)."
583
 
584
- #: admin.php:673
585
  msgid "remote files deleted"
586
  msgstr "vzdálené soubory byly smazány"
587
 
588
- #: admin.php:671
589
  msgid "Complete"
590
  msgstr "Dokončit"
591
 
592
- #: admin.php:670
593
  msgid "Do you want to carry out the import?"
594
  msgstr "Chcete provést import?"
595
 
596
- #: admin.php:669
597
  msgid "Which was exported on:"
598
  msgstr "Který byl exportován:"
599
 
600
- #: admin.php:668
601
  msgid "This will import data from:"
602
  msgstr "Toto provede import dat z:"
603
 
604
- #: admin.php:667
605
  msgid "Importing..."
606
  msgstr "Probíhá import..."
607
 
608
- #: admin.php:664
609
  msgid "You have not yet selected a file to import."
610
  msgstr "Zatím jste nevybrali soubor pro import."
611
 
612
- #: admin.php:648
613
  msgid "Your export file will be of your displayed settings, not your saved ones."
614
  msgstr "Soubor exportu bude obsahovat zobrazené nastavení, nikoliv uložené."
615
 
@@ -654,15 +718,15 @@ msgstr "nebo obnovte ručně"
654
  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"
655
  msgstr "Toto mnohem častěji způsobuje vypršení časového limitu. Důrazně vám doporučujeme vypnout safe_mode, nebo obnovit vždy jen jednu entitu"
656
 
657
- #: admin.php:2096
658
  msgid "To fix this problem go here."
659
  msgstr "Pro odstranění tohoto problému přejděte zde."
660
 
661
- #: admin.php:2096
662
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
663
  msgstr "OptimizePress 2.0 kóduje svůj obsah, proto hledat/nahradit nefunguje."
664
 
665
- #: admin.php:633
666
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
667
  msgstr "vaši PHP instalaci chybí modul openssl, akce se může protáhnout o několik minut; pokud se pak nic nestane, pak byste měli zkusit kratší klíč, nebo byste mohli požádat správce vašeho webhostingu o povolení tohoto modulu."
668
 
@@ -694,11 +758,11 @@ msgstr "Tato WebDAV URL je generována vyplněním níže uvedených možností.
694
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
695
  msgstr "Nebyla přijata žádná data odpovědi. Tento problém většinou signalizuje problém s připojením k síti (např. odchozí firewall nebo přetížená síť) mezi webem a UpdraftPlus.com."
696
 
697
- #: methods/s3.php:1012
698
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
699
  msgstr "Přístupový klíč k AWS je chybný (platný přístupový klíč %s začíná na „AK“)"
700
 
701
- #: methods/s3.php:89
702
  msgid "No settings were found - please go to the Settings tab and check your settings"
703
  msgstr "Nebylo nalezeno žádné nastavení - přejděte prosím do záložky „Nastavení“ a zkontrolujte příslušnou konfiguraci"
704
 
@@ -766,11 +830,11 @@ msgstr "Velikost klíče: %d bitů"
766
  msgid "Public key was sent to:"
767
  msgstr "Veřejný klíč byl odeslán:"
768
 
769
- #: backup.php:2054
770
  msgid "Failed to open directory (check the file permissions and ownership): %s"
771
  msgstr "Nelze otevřít složku (zkontrolujte oprávnění souboru a vlastnictví): %s"
772
 
773
- #: backup.php:2032
774
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
775
  msgstr "%s: nečitelný soubor - nemohl být zálohován (zkontrolujte oprávnění k souborům a vlastnictví)"
776
 
@@ -816,27 +880,27 @@ msgstr "Zadejte své zvolené jméno"
816
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
817
  msgstr "Vytvořte klíč: dejte tomuto klíči jedinečný název (např. web který jej použije), pak klikněte na „Vytvořit klíč“:"
818
 
819
- #: methods/googledrive.php:422
820
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
821
  msgstr "Nahrávání očekávalo neúspěch: limit %s velikosti jediného souboru je %s, ale tento soubor má %s GB (%d bajtů)"
822
 
823
- #: methods/ftp.php:383
824
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
825
  msgstr "Někdy je tohle způsobeno firewallem - v pokročilém nastavení zkuste vypnout SSL, pak spusťte znovu test."
826
 
827
- #: methods/ftp.php:355
828
  msgid "login"
829
  msgstr "přihlašovací jméno"
830
 
831
- #: methods/email.php:77
832
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
833
  msgstr "Uvědomte si, že poštovní servery mají tendenci mít omezení velikosti; typicky kolem %s MB; zálohy překračující omezení pravděpodobně nedorazí."
834
 
835
- #: methods/email.php:28
836
  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."
837
  msgstr "Tento archiv zálohy má %s MB - nejspíše se jej nepodaří odeslat (jen pár poštovních serverů umožňuje takhle velké přílohy). Pokud se vám to nepovede, přejděte na jiné zálohovací úložiště."
838
 
839
- #: class-updraftplus.php:1484
840
  msgid "Size: %s MB"
841
  msgstr "Velikost: %s MB"
842
 
@@ -848,7 +912,7 @@ msgstr "Jiné (prosím upřesněte - tj. web, kde jste nainstalovali UpdraftCent
848
  msgid "i.e. you have an account there"
849
  msgstr "tj. máte zde účet"
850
 
851
- #: templates/wp-admin/settings/form-contents.php:326
852
  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)."
853
  msgstr "UpdraftPlus rozdělí archivy záloh při překročení této velikosti. Výchozí hodnota je %s MB. Dejte si pozor, abyste si ponechali určitý prostor, pokud váš webový server má pevný limit velikosti (např. 2 GB / 2048 MB limit u některých 32 bitových serverů / souborových systémů)."
854
 
@@ -856,7 +920,7 @@ msgstr "UpdraftPlus rozdělí archivy záloh při překročení této velikosti.
856
  msgid "Now"
857
  msgstr "Nyní"
858
 
859
- #: class-updraftplus.php:3913 restorer.php:996
860
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
861
  msgstr "Měli byste povolit %s pro vytváření hezkých trvalých odkazů (např. %s)"
862
 
@@ -864,21 +928,21 @@ msgstr "Měli byste povolit %s pro vytváření hezkých trvalých odkazů (nap
864
  msgid "(tap on an icon to select or unselect)"
865
  msgstr "(klikněte na ikonu pro výběr nebo pro jeho zrušení)"
866
 
867
- #: methods/updraftvault.php:291 methods/updraftvault.php:297
868
- #: methods/updraftvault.php:303
869
  msgid "%s per year"
870
  msgstr "%s za rok"
871
 
872
- #: methods/updraftvault.php:290 methods/updraftvault.php:296
873
- #: methods/updraftvault.php:302
874
  msgid "or (annual discount)"
875
  msgstr "nebo (ročně zlevněné)"
876
 
877
- #: methods/updraftvault.php:235
878
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
879
  msgstr "Pro tento web nebylo nalezeno žádné spojení s Vaultem (nepřesunul se?); prosím odpojte jej a znovu připojte."
880
 
881
- #: class-updraftplus.php:354 class-updraftplus.php:399
882
  msgid "The given file was not found, or could not be read."
883
  msgstr "Soubor nebyl nalezen nebo jej nejde číst."
884
 
@@ -978,23 +1042,23 @@ msgstr "Bylo vytvořeno úspěšné připojení k UpdraftCentral."
978
  msgid "UpdraftCentral Connection"
979
  msgstr "UpdraftCentral spojení"
980
 
981
- #: backup.php:837 class-updraftplus.php:2715
982
  msgid "The backup was aborted by the user"
983
  msgstr "Záloha byla ukončena uživatelem"
984
 
985
- #: admin.php:3953
986
  msgid "Your settings have been saved."
987
  msgstr "Nastavení bylo uloženo."
988
 
989
- #: admin.php:3146
990
  msgid "Total backup size:"
991
  msgstr "Celková velikost zálohy:"
992
 
993
- #: admin.php:2593
994
  msgid "stop"
995
  msgstr "zastavit"
996
 
997
- #: admin.php:2431
998
  msgid "The backup has finished running"
999
  msgstr "Záloha byla dokončena"
1000
 
@@ -1020,27 +1084,27 @@ msgstr "tuto sadu zálohy"
1020
  msgid "calculate"
1021
  msgstr "vypočítat"
1022
 
1023
- #: admin.php:647
1024
  msgid "You should save your changes to ensure that they are used for making your backup."
1025
  msgstr "Měli byste uložit změny, aby bylo zajištěno, že budou použity pro vytvoření vaší zálohy."
1026
 
1027
- #: admin.php:641
1028
  msgid "We requested to delete the file, but could not understand the server's response"
1029
  msgstr "Požadovali jsme smazání souboru, ale nepochopili jsme odpověď serveru."
1030
 
1031
- #: admin.php:640
1032
  msgid "Please enter a valid URL"
1033
  msgstr "Zadejte prosím platnou URL"
1034
 
1035
- #: admin.php:623
1036
  msgid "Saving..."
1037
  msgstr "Ukládání..."
1038
 
1039
- #: admin.php:586
1040
  msgid "Error: the server sent us a response which we did not understand."
1041
  msgstr "Chyba: server nám zaslal odpověď, které nerozumíme."
1042
 
1043
- #: admin.php:578
1044
  msgid "Fetching..."
1045
  msgstr "načítání..."
1046
 
@@ -1048,15 +1112,11 @@ msgstr "načítání..."
1048
  msgid "Asia Pacific (Seoul)"
1049
  msgstr "Asie a Tichomoří (Soul)"
1050
 
1051
- #: addons/copycom.php:43 addons/copycom.php:81
1052
- msgid "Barracuda have closed down Copy.Com, as of May 1st, 2016. See:"
1053
- msgstr "Barracuda ukončila Copy.com, k 1. květnu 2016. Viz:"
1054
-
1055
  #: restorer.php:1618
1056
  msgid "Uploads URL:"
1057
  msgstr "URL pro nahrané soubory:"
1058
 
1059
- #: backup.php:388
1060
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1061
  msgstr "Neočekávaná chyba: nebyla nalezena třída '%s' (pravděpodobně byla poškozen vaše instalace pluginu UpdraftPlus - zkuste jej přeinstalovat)"
1062
 
@@ -1068,48 +1128,48 @@ msgstr "Požadovaný PHP modul %s není nainstalován - požádejte svého posky
1068
  msgid "Skipping table %s: this table will not be restored"
1069
  msgstr "Přeskakování tabulky %s: tato tabulka nebude obnovena"
1070
 
1071
- #: class-updraftplus.php:3964 restorer.php:1642
1072
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1073
  msgstr "Import běžného webu používající WordPress na multisite instalaci vyžaduje %s."
1074
 
1075
- #: class-updraftplus.php:3960
1076
  msgid "Please read this link for important information on this process."
1077
  msgstr "Přečtěte si prosím tento odkaz ohledně důležitých informací o tomto procesu."
1078
 
1079
- #: class-updraftplus.php:3960
1080
  msgid "It will be imported as a new site."
1081
  msgstr "Bude importován jako nový web."
1082
 
1083
- #: admin.php:2244 templates/wp-admin/notices/horizontal-notice.php:16
1084
  #: templates/wp-admin/notices/horizontal-notice.php:18
1085
  msgid "Dismiss"
1086
  msgstr "Skrýt"
1087
 
1088
- #: admin.php:659
1089
  msgid "Please fill in the required information."
1090
  msgstr "Vyplňte veškerá vyžadované informace."
1091
 
1092
- #: addons/multisite.php:556
1093
  msgid "Read more..."
1094
  msgstr "Více informací..."
1095
 
1096
- #: addons/multisite.php:556
1097
  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."
1098
  msgstr "Pozn. tato možnost ovlivňuje pouze obnovu databáze a uploads - další entity (jako pluginy) jsou ve WordPressu sdíleny napříč celou sítí webů."
1099
 
1100
- #: addons/multisite.php:547
1101
  msgid "may include some site-wide data"
1102
  msgstr "může obsahovat některá data z celého webu"
1103
 
1104
- #: addons/multisite.php:542
1105
  msgid "All sites"
1106
  msgstr "Veškeré weby"
1107
 
1108
- #: addons/multisite.php:538
1109
  msgid "Which site to restore"
1110
  msgstr "Který web obnovit"
1111
 
1112
- #: addons/multisite.php:374 addons/multisite.php:384
1113
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1114
  msgstr "Probíhá obnova pouze webu s id=%s: ostatní data (pokud nějaká jsou) z rozbalené databáze se mažou"
1115
 
@@ -1157,15 +1217,15 @@ msgstr "Do obnovy jste zahrnuli %s - tohle nemůže / by nemělo být prováděn
1157
  msgid "Call WordPress action:"
1158
  msgstr "Volat akci WordPressu:"
1159
 
1160
- #: admin.php:2279
1161
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1162
  msgstr "Vaše nastavení také ovlivní co se bude zálohovat - např. vyřazené soubory."
1163
 
1164
- #: admin.php:3554
1165
  msgid "Skipping: this archive was already restored."
1166
  msgstr "Přeskakuje se: tento archiv již byl obnoven."
1167
 
1168
- #: templates/wp-admin/settings/form-contents.php:167
1169
  msgid "File Options"
1170
  msgstr "Možnosti souboru"
1171
 
@@ -1193,51 +1253,51 @@ msgstr "Pak budete muset zadat znovu veškeré nastavení. Pokud chcete, můžet
1193
  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)."
1194
  msgstr "Toto tlačítko smaže veškeré UpdraftPlus nastavení a zprávy o průběhu právě běžících záloh (ale ne žádné existující zálohy na vašem cloudu)."
1195
 
1196
- #: admin.php:3835
1197
  msgid "Send this backup to remote storage"
1198
  msgstr "Odeslat tuto zálohu na vzdálené úložiště"
1199
 
1200
- #: admin.php:3833
1201
  msgid "Check out UpdraftPlus Vault."
1202
  msgstr "Vyzkoušejte UpdraftPlus Vault."
1203
 
1204
- #: admin.php:3833
1205
  msgid "Not got any remote storage?"
1206
  msgstr "Nemáte žádné vzdálené úložiště?"
1207
 
1208
- #: admin.php:3833
1209
  msgid "settings"
1210
  msgstr "nastavení"
1211
 
1212
- #: admin.php:3833
1213
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1214
  msgstr "Záloha nebude poslána na žádné vzdálené úložiště - žádné nebylo uloženo v %s"
1215
 
1216
- #: admin.php:2277
1217
  msgid "Include any files in the backup"
1218
  msgstr "Zahrnout do zálohy některé soubory"
1219
 
1220
- #: admin.php:2263
1221
  msgid "Include the database in the backup"
1222
  msgstr "Zahrnout do zálohy databázi"
1223
 
1224
- #: admin.php:2243
1225
  msgid "Continue restoration"
1226
  msgstr "Pokračovat v obnově"
1227
 
1228
- #: admin.php:2238
1229
  msgid "You have an unfinished restoration operation, begun %s ago."
1230
  msgstr "Máte nedokončenou obnovu, která začala před %s."
1231
 
1232
- #: admin.php:2237
1233
  msgid "Unfinished restoration"
1234
  msgstr "Nedokončená obnova"
1235
 
1236
- #: admin.php:2235
1237
  msgid "%s minutes, %s seconds"
1238
  msgstr "%s minut, %s sekund"
1239
 
1240
- #: admin.php:2182
1241
  msgid "Backup Contents And Schedule"
1242
  msgstr "Obsah zálohy a plány"
1243
 
@@ -1245,24 +1305,24 @@ msgstr "Obsah zálohy a plány"
1245
  msgid "Premium / Extensions"
1246
  msgstr "Premium / Rozšíření"
1247
 
1248
- #: admin.php:1962 admin.php:1971
1249
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1250
  msgstr "O právě běžící obnově nebyly nalezeny dostatečné informace."
1251
 
1252
- #: admin.php:646
1253
  msgctxt "(verb)"
1254
  msgid "Download"
1255
  msgstr "Stáhnout"
1256
 
1257
- #: admin.php:571
1258
  msgid "You have chosen to backup files, but no file entities have been selected"
1259
  msgstr "Vybrali jste zálohování souborů, ale nevybrali jste žádné souborové entity"
1260
 
1261
- #: admin.php:480
1262
  msgid "Extensions"
1263
  msgstr "Rozšíření"
1264
 
1265
- #: admin.php:472 templates/wp-admin/settings/tab-bar.php:8
1266
  msgid "Advanced Tools"
1267
  msgstr "Pokročilé nástroje"
1268
 
@@ -1343,75 +1403,75 @@ msgstr "Trvalé snížená dostupnost (DRA)"
1343
  msgid "Standard"
1344
  msgstr "Standard"
1345
 
1346
- #: addons/azure.php:524
1347
  msgid "container"
1348
  msgstr "kontejner"
1349
 
1350
- #: addons/azure.php:524
1351
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1352
  msgstr "Zde můžete použít adresu k jakékoliv %s virtuální složce, kterou chcete použít."
1353
 
1354
- #: addons/azure.php:523
1355
  msgid "optional"
1356
  msgstr "volitelné"
1357
 
1358
- #: addons/azure.php:523
1359
  msgid "Prefix"
1360
  msgstr "Prefix"
1361
 
1362
- #: addons/azure.php:518
1363
  msgid "See Microsoft's guidelines on container naming by following this link."
1364
  msgstr "Na této adrese se podívejte na návod pojmenovávání kontejnerů od Microsoftu."
1365
 
1366
- #: addons/azure.php:518
1367
  msgid "If the %s does not already exist, then it will be created."
1368
  msgstr "Pokud %s ještě neexistuje, bude vytvořen."
1369
 
1370
- #: addons/azure.php:518
1371
  msgid "Enter the path of the %s you wish to use here."
1372
  msgstr "Zadejte cestu %s, kterou si zde přejete použít."
1373
 
1374
- #: addons/azure.php:507
1375
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1376
  msgstr "Toto není vaše Azure přihlašovací jméno - pokud potřebujete poradit, podívejte se do návodu."
1377
 
1378
- #: addons/azure.php:506
1379
  msgid "Account Name"
1380
  msgstr "Jméno účtu"
1381
 
1382
- #: addons/azure.php:506 addons/azure.php:510
1383
  msgid "Azure"
1384
  msgstr "Azure"
1385
 
1386
- #: addons/azure.php:502
1387
  msgid "Create Azure credentials in your Azure developer console."
1388
  msgstr "Ve vývojářské konzoli Azure si vytvořte Azure přístupové údaje."
1389
 
1390
- #: addons/azure.php:450
1391
  msgid "Could not create the container"
1392
  msgstr "Nelze vytvořit kontejner"
1393
 
1394
- #: addons/azure.php:344
1395
  msgid "Could not access container"
1396
  msgstr "Nelze získat přístup ke kontejneru"
1397
 
1398
- #: class-updraftplus.php:2732
1399
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1400
  msgstr "Pro dokončení migrace/klonu, se teď přihlaste ke vzdálenému web a obnovte zálohu."
1401
 
1402
- #: backup.php:1547
1403
  msgid "the options table was not found"
1404
  msgstr "tabulka možností nebyla nalezena"
1405
 
1406
- #: backup.php:1545
1407
  msgid "no options or sitemeta table was found"
1408
  msgstr "žádné možnosti, ani sitemeta tabulka, nebyly nalezeny"
1409
 
1410
- #: backup.php:1545 backup.php:1547
1411
  msgid "The database backup appears to have failed"
1412
  msgstr "Zdá se, že se záloha databáze nepovedla"
1413
 
1414
- #: backup.php:1419
1415
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1416
  msgstr "Do složky pro zápis se nedá zapisovat (nebo je plná) - záloha databáze se zřejmě nepovede."
1417
 
@@ -1528,35 +1588,35 @@ msgstr "Akce s vybranými zálohami"
1528
  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)."
1529
  msgstr "Pro zobrazení metod vzdálených úložišť pro jakoukoliv existující zálohu (z jakéhokoliv webu, pokud jsou ve stejné složce) klikněte sem."
1530
 
1531
- #: admin.php:1389
1532
  msgid "Backup sets removed:"
1533
  msgstr "Odstraněny sady záloh:"
1534
 
1535
- #: admin.php:658
1536
  msgid "Processing..."
1537
  msgstr "Zpracovává se..."
1538
 
1539
- #: admin.php:656
1540
  msgid "For backups older than"
1541
  msgstr "Pro zálohy starší než"
1542
 
1543
- #: admin.php:655
1544
  msgid "week(s)"
1545
  msgstr "týdnů"
1546
 
1547
- #: admin.php:654
1548
  msgid "hour(s)"
1549
  msgstr "hodiny"
1550
 
1551
- #: admin.php:653
1552
  msgid "day(s)"
1553
  msgstr "dny"
1554
 
1555
- #: admin.php:652
1556
  msgid "in the month"
1557
  msgstr "v měsíci"
1558
 
1559
- #: admin.php:651
1560
  msgid "day"
1561
  msgstr "den"
1562
 
@@ -1576,31 +1636,31 @@ msgstr "Tato databáze musí být použita s MySQL verze %s, nebo novější."
1576
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1577
  msgstr "Tento problém je způsoben pokusem o obnovu databáze s velmi starou verzí MySQL, která je nekompatibilní se zdrojovou databází."
1578
 
1579
- #: methods/updraftvault.php:596
1580
  msgid "You do not currently have any UpdraftPlus Vault quota"
1581
  msgstr "V současnosti nemáte žádnou kvótu pro UpdraftPlus Vault"
1582
 
1583
- #: class-updraftplus.php:3999
1584
  msgid "You must upgrade MySQL to be able to use this database."
1585
  msgstr "K použití této zálohy databáze musíte aktualizovat svou verzi MySQL."
1586
 
1587
- #: class-updraftplus.php:3999
1588
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1589
  msgstr "Záloha databáze používá funkce MySQL, které nejsou dostupné ve staré verzi MySQL (%s), kterou používá tento web."
1590
 
1591
- #: admin.php:2081
1592
  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."
1593
  msgstr "Složka UpdraftPlus v umístění wp-content/plugins obsahuje netisknutelný znak; WordPress má s takovými názvy občas problém. Pro jistotu byste měli přejmenovat složku na wp-content/plugins/updraftplus."
1594
 
1595
- #: methods/updraftvault.php:324
1596
  msgid "Don't know your email address, or forgotten your password?"
1597
  msgstr "Nevíte svůj email, nebo jste zapomněli heslo?"
1598
 
1599
- #: methods/updraftvault.php:317
1600
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1601
  msgstr "Pro připojení zde zadejte svůj UpdraftPlus.com email / heslo:"
1602
 
1603
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1604
  msgid "Read the FAQs here."
1605
  msgstr "Zde si můžete přečíst nejčastější dotazy."
1606
 
@@ -1612,155 +1672,155 @@ msgstr "Zaškrtněte tuto možnost pro šifrování na straně Amazon serveru"
1612
  msgid "Server-side encryption"
1613
  msgstr "Šifrování na straně serveru"
1614
 
1615
- #: methods/updraftvault.php:605
1616
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1617
  msgstr "Pokud jste zapomněli heslo, pak pro změnu hesla na updraftplus.com klikněte zde."
1618
 
1619
- #: admin.php:895
1620
  msgid "Go to the remote storage settings in order to connect."
1621
  msgstr "Pro připojení jděte do nastavení vzdáleného úložiště."
1622
 
1623
- #: admin.php:895
1624
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1625
  msgstr "Pro vzdálené úložiště byl vybrán %s, ale v současnosti nejste připojeni."
1626
 
1627
- #: methods/updraftvault.php:306
1628
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1629
  msgstr "Platba může být provedena v amerických dolarech, eurech, nebo britských librách pomocí karty, nebo přes PayPal."
1630
 
1631
- #: admin.php:629
1632
  msgid "Update quota count"
1633
  msgstr "Aktualizovat kvótu."
1634
 
1635
- #: admin.php:628
1636
  msgid "Counting..."
1637
  msgstr "Počítání..."
1638
 
1639
- #: admin.php:627
1640
  msgid "Disconnecting..."
1641
  msgstr "Odpojování..."
1642
 
1643
- #: admin.php:625
1644
  msgid "Connecting..."
1645
  msgstr "Připojování..."
1646
 
1647
- #: methods/updraftvault.php:380 methods/updraftvault.php:449
1648
  msgid "Refresh current status"
1649
  msgstr "Obnovit současný stav"
1650
 
1651
- #: methods/updraftvault.php:378 methods/updraftvault.php:394
1652
- #: methods/updraftvault.php:396 methods/updraftvault.php:449
1653
  msgid "Get more quota"
1654
  msgstr "Získat větší kvótu"
1655
 
1656
- #: methods/updraftvault.php:375 methods/updraftvault.php:391
1657
- #: methods/updraftvault.php:430
1658
  msgid "Current use:"
1659
  msgstr "Současné využití:"
1660
 
1661
- #: methods/updraftvault.php:370
1662
  msgid "You can get more quota here"
1663
  msgstr "Větší kvótu můžete získat zde"
1664
 
1665
- #: methods/updraftvault.php:370
1666
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1667
  msgstr "Chyba %s: nemáte k dispozici dostatečnou kvótu (%s) k nahrání tohoto archivu (%s)."
1668
 
1669
- #: admin.php:626 methods/updraftvault.php:362
1670
  msgid "Disconnect"
1671
  msgstr "Odpojit"
1672
 
1673
- #: methods/updraftvault.php:354
1674
  msgid "Quota:"
1675
  msgstr "Kvóta:"
1676
 
1677
- #: methods/updraftvault.php:352
1678
  msgid "Vault owner"
1679
  msgstr "Majitel Vaultu"
1680
 
1681
- #: methods/updraftvault.php:352
1682
  msgid "Well done - there's nothing more needed to set up."
1683
  msgstr "Gratulujeme - nic dalšího není třeba nastavit."
1684
 
1685
- #: methods/updraftvault.php:352
1686
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1687
  msgstr "Tento web je <strong>připojen</strong> k UpdraftPlus Vault."
1688
 
1689
- #: methods/updraftvault.php:348
1690
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1691
  msgstr "<strong>Nejste</strong> připojeni k UpdraftPlus Vault."
1692
 
1693
- #: methods/updraftvault.php:324
1694
  msgid "Go here for help"
1695
  msgstr "Pro nápovědu klikněte zde"
1696
 
1697
- #: methods/updraftvault.php:319
1698
  msgid "E-mail"
1699
  msgstr "Email"
1700
 
1701
- #: methods/updraftvault.php:312 methods/updraftvault.php:327
1702
  msgid "Back..."
1703
  msgstr "Zpět..."
1704
 
1705
- #: methods/updraftvault.php:306
1706
  msgid "Subscriptions can be cancelled at any time."
1707
  msgstr "Předplatné může být kdykoliv zrušeno."
1708
 
1709
- #: methods/updraftvault.php:289 methods/updraftvault.php:295
1710
- #: methods/updraftvault.php:301
1711
  msgid "%s per quarter"
1712
  msgstr "%s za čtvrtletí"
1713
 
1714
- #: central/bootstrap.php:542 methods/updraftvault.php:279
1715
- #: methods/updraftvault.php:309
1716
  msgid "Read more about it here."
1717
  msgstr "Více informací najdete zde."
1718
 
1719
- #: methods/updraftvault.php:279 methods/updraftvault.php:309
1720
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1721
  msgstr "UpdraftPlus Vault pracuje na světově nejlepších datacentrech od Amazonu se zálohovanými úložišti tak, aby bylo dosaženo spolehlivosti 99.999999999%."
1722
 
1723
- #: methods/updraftvault.php:275
1724
  msgid "Already purchased space?"
1725
  msgstr "Máte již zakoupené místo?"
1726
 
1727
- #: methods/updraftvault.php:272
1728
  msgid "Show the options"
1729
  msgstr "Zobrazit možnosti"
1730
 
1731
- #: methods/updraftvault.php:271
1732
  msgid "First time user?"
1733
  msgstr "Jste tu poprvé?"
1734
 
1735
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1736
  msgid "Press a button to get started."
1737
  msgstr "Začněte kliknutím na jedno z tlačítek."
1738
 
1739
- #: methods/updraftvault.php:268 methods/updraftvault.php:285
1740
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1741
  msgstr "UpdraftPlus Vault představuje úložiště, které je <strong>spolehlivé, snadno použitelné, a je za skvělou cenu</strong>."
1742
 
1743
- #: methods/updraftvault.php:231
1744
  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."
1745
  msgstr "Vaše předplatné pro UpdraftPlus Vault vypršelo. Během několika dní budou vaše data trvale odstraněna. Pokud nechcete, aby se to stalo, měli byste si předplatné obnovit co nejdříve."
1746
 
1747
- #: methods/updraftvault.php:228
1748
  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!"
1749
  msgstr "Vaše platba za předplatné UpdraftPlus Vault má zpoždění. Nacházíte se v několikadenním období, po kterém bude Váš přístup ke službě zrušen a ztratíte veškerá uložená data v ní. Obnovte si prosím předplatné co nejdříve!"
1750
 
1751
- #: methods/updraftvault.php:225
1752
  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."
1753
  msgstr "Vaše licence UpdraftPlus Premium je již více, než rok stará. Měli byste si ji okamžitě obnovit, jinak ztratíte 12 měsíců úložiště zdarma, které jste získali díky tomu, že jste se stali uživateli UpdraftPlus Premium."
1754
 
1755
- #: methods/updraftvault.php:48 methods/updraftvault.php:77
1756
  msgid "Updraft Vault"
1757
  msgstr "Updraft Vault"
1758
 
1759
- #: addons/azure.php:366 addons/googlecloud.php:693 methods/s3.php:1040
1760
  msgid "Delete failed:"
1761
  msgstr "Mazání selhalo:"
1762
 
1763
- #: backup.php:2994
1764
  msgid "The zip engine returned the message: %s."
1765
  msgstr "Zip engine vrátilo zprávu: %s."
1766
 
@@ -1784,7 +1844,7 @@ msgstr "Povolit stahování"
1784
  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."
1785
  msgstr "Pokud nefunguje přímé posílání z webu na web, k dispozici jsou další tři způsoby - zkuste prosím místo toho některý z nich."
1786
 
1787
- #: addons/migrator.php:1742 admin.php:635
1788
  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."
1789
  msgstr "Měli byste zkontrolovat jestli, je vzdálený web online, není za firewallem, nemá bezpečnostní moduly, které by mohly bránit přístupu, má aktivní UpdraftPlus v. %s, nebo novější, a jestli byly správně vloženy klíče."
1790
 
@@ -1852,11 +1912,11 @@ msgstr "Tento web zatím nemá žádné zálohy k obnovení."
1852
  msgid "Backup made by %s"
1853
  msgstr "Záloha vytvořena uživatelem %s"
1854
 
1855
- #: methods/addon-base.php:177
1856
  msgid "This storage method does not allow downloading"
1857
  msgstr "Tato zálohovací metoda nedovoluje stahování"
1858
 
1859
- #: admin.php:3314
1860
  msgid "(backup set imported from remote location)"
1861
  msgstr "(záloha importována ze vzdáleného umístění)"
1862
 
@@ -1876,23 +1936,23 @@ msgstr "Než provedete obnovu, měli byste se ujistit, jestli je tato záloha op
1876
  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."
1877
  msgstr "U této zálohy se UpdraftPlus domnívá, že nebyla vytvořena současnou WordPress instalací, ale že byla buď nalezena na vzdáleném úložišti, nebo byla poslána ze vzdáleného webu."
1878
 
1879
- #: addons/migrator.php:1770 admin.php:642
1880
  msgid "Testing connection..."
1881
  msgstr "Testování spojení..."
1882
 
1883
- #: admin.php:639
1884
  msgid "Deleting..."
1885
  msgstr "Mazání..."
1886
 
1887
- #: admin.php:638
1888
  msgid "key name"
1889
  msgstr "jméno klíče"
1890
 
1891
- #: admin.php:636
1892
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1893
  msgstr "dejte tomuto klíči prosím jméno (např. indikující pro jaký je web):"
1894
 
1895
- #: admin.php:633
1896
  msgid "Creating..."
1897
  msgstr "Vytváření..."
1898
 
@@ -1916,11 +1976,11 @@ msgstr "K přidání webu jako cíle pro poslání zálohy vložte níže klíč
1916
  msgid "Or, send a backup to another site"
1917
  msgstr "Nebo pošlete zálohu na jiný web"
1918
 
1919
- #: addons/migrator.php:1937 admin.php:643
1920
  msgid "Send"
1921
  msgstr "Poslat"
1922
 
1923
- #: addons/migrator.php:1931 admin.php:634
1924
  msgid "Send to site:"
1925
  msgstr "Poslat na stránku:"
1926
 
@@ -1952,27 +2012,27 @@ msgstr "Vložený klíč má špatnou délku - zkuste to prosím znovu."
1952
  msgid "key"
1953
  msgstr "klíč"
1954
 
1955
- #: methods/ftp.php:325
1956
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1957
  msgstr "Téměř všechny FTP servery vyžadují pasivní mód, ale pokud potřebujete aktivní mód, pak tuto možnost zrušte."
1958
 
1959
- #: methods/ftp.php:323
1960
  msgid "Passive mode"
1961
  msgstr "Pasivní mód"
1962
 
1963
- #: methods/ftp.php:319
1964
  msgid "Remote path"
1965
  msgstr "Vzdálená cesta"
1966
 
1967
- #: methods/ftp.php:315
1968
  msgid "FTP password"
1969
  msgstr "FTP heslo"
1970
 
1971
- #: methods/ftp.php:311
1972
  msgid "FTP login"
1973
  msgstr "FTP přihlašovací jméno"
1974
 
1975
- #: methods/ftp.php:307
1976
  msgid "FTP server"
1977
  msgstr "FTP server"
1978
 
@@ -1984,15 +2044,15 @@ msgstr "UpdraftPlus Migrator patřičně upraví proces obnovy, aby obnovované
1984
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1985
  msgstr "„Migrace“ je totéž jako obnova, ale používá se při ní záloha vytvořená na jiném webu."
1986
 
1987
- #: addons/migrator.php:2180 admin.php:631
1988
  msgid "Add site"
1989
  msgstr "Přidat web"
1990
 
1991
- #: admin.php:630
1992
  msgid "Adding..."
1993
  msgstr "Přidává se..."
1994
 
1995
- #: udaddons/options.php:338
1996
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1997
  msgstr "Nárok nebyl udělen - možná jste tuto objednávku již použili někde jinde, nebo vaše předplatné pro stahování z updraftplus.com vypršelo?"
1998
 
@@ -2020,7 +2080,7 @@ msgstr "Po stisknutí tohoto tlačítka si budete moci zvolit, které komponenty
2020
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2021
  msgstr "K importování zálohy přejděte na záložku „Existující zálohy“"
2022
 
2023
- #: admin.php:622 admin.php:647 admin.php:648
2024
  msgid "You have made changes to your settings, and not saved."
2025
  msgstr "Provedli jste změny v nastavení, ale neuložili jste je."
2026
 
@@ -2032,7 +2092,7 @@ msgstr "Poznámka: %s není citlivý na velikost písmen."
2032
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2033
  msgstr "Pokud vám OneDrive později ukáže zprávu „unauthorized_client“, pak jste sem nevložili platné klientské ID."
2034
 
2035
- #: addons/azure.php:502 addons/migrator.php:1757 addons/onedrive.php:961
2036
  msgid "For longer help, including screenshots, follow this link."
2037
  msgstr "Pro podrobný návod, včetně snímků obrazovky, klikněte na tento odkaz."
2038
 
@@ -2056,11 +2116,11 @@ msgstr "OneDrive"
2056
  msgid "Please re-authorize the connection to your %s account."
2057
  msgstr "Autorizujte znovu připojení ke svému %s účtu."
2058
 
2059
- #: methods/email.php:73
2060
  msgid "configure it here"
2061
  msgstr "konfigurujte zde"
2062
 
2063
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2064
  msgid "To remove the block, please go here."
2065
  msgstr "K odstranění bloku jděte prosím zde."
2066
 
@@ -2205,7 +2265,7 @@ msgstr "Musíte vložit administrátorský přístupový klíč"
2205
  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)"
2206
  msgstr "Pokud máte administrátorský účet AWS, můžete použít tohoto průvodce k rychlému vytvoření nového AWS (IAM) uživatele s přístupem pouze k tomuto bucketu (spíše, než k vašemu celému účtu)"
2207
 
2208
- #: methods/s3.php:842
2209
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2210
  msgstr "Pro vytvoření nového IAM pod-uživatele a přístupového klíče, který bude mít přístup pouze k tomuto bucketu, použijte toto rozšíření."
2211
 
@@ -2221,17 +2281,17 @@ msgstr "UpdraftPlus novinky, vysoce kvalitní výukové materiály pro WordPress
2221
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2222
  msgstr "cesta nahrávání (%s) se během migrace změnila - probíhá reset (na: %s)"
2223
 
2224
- #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:569
2225
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2226
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2227
  msgstr "S největší pravděpodobností to znamená, že sdílíte webový server s napadeným webem, který byl použit při předchozích útocích."
2228
 
2229
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2230
  #: udaddons/updraftplus-addons.php:747
2231
  msgid "It appears that your web server's IP Address (%s) is blocked."
2232
  msgstr "Vypadá to, že IP adresa vašeho webového serveru (%s) je zablokovaná."
2233
 
2234
- #: addons/onedrive.php:619 methods/updraftvault.php:569
2235
  #: udaddons/updraftplus-addons.php:747
2236
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2237
  msgstr "UpdraftPlus.com vrátil odpověď „Přístup odepřen“."
@@ -2282,7 +2342,7 @@ msgstr "Skrýt (na %s měsíců)"
2282
  msgid "(at same time as files backup)"
2283
  msgstr "(ve stejný čas, jako záloha souborů)"
2284
 
2285
- #: admin.php:2840
2286
  msgid "No backup has been completed"
2287
  msgstr "Žádná záloha nebyla dokončena"
2288
 
@@ -2330,12 +2390,12 @@ msgstr "Aktuálně používáte bezplatnou verzi UpdraftPlus z WordPress.org."
2330
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2331
  msgstr "Před aktualizací zálohovat pomocí UpdraftPlus (když je opodstatnění) pluginy, šablony, a databázi WordPressu"
2332
 
2333
- #: methods/s3.php:136 methods/s3.php:137 methods/s3.php:138 methods/s3.php:146
2334
- #: methods/s3.php:147 methods/s3.php:148
2335
  msgid "%s Error: Failed to initialise"
2336
  msgstr "Chyba %s: Chyba inicializace"
2337
 
2338
- #: templates/wp-admin/settings/form-contents.php:216
2339
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2340
  msgid "or"
2341
  msgstr "nebo"
@@ -2345,38 +2405,38 @@ msgctxt "Uploader: Drop backup files here - or - Select Files"
2345
  msgid "or"
2346
  msgstr "nebo"
2347
 
2348
- #: admin.php:616
2349
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2350
  msgstr "Nevybrali jste nic k obnovení. Vyberte alespoň jednu věc a zkuste to znovu."
2351
 
2352
- #: addons/sftp.php:379
2353
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2354
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2355
  msgstr "Jsou akceptovány formáty klíčů PKCS1 (PEM hlavička: BEGIN RSA PRIVATE KEY), XML, a PuTTY."
2356
 
2357
- #: addons/sftp.php:342
2358
  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."
2359
  msgstr "Pokračování částečného nahrávání je podporování u SFTP, ale ne u SCP. Pokud tedy používáte SCP, je potřeba se ujistit, že váš webový server podporuje tak dlouhý běh PHP procesu, aby se nahrál i největší soubor zálohy."
2360
 
2361
- #: methods/openstack2.php:152
2362
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2363
  msgid "tenant"
2364
  msgstr "tenant"
2365
 
2366
- #: methods/openstack2.php:102
2367
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2368
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2369
  msgstr "Musí být v2 (Keystone) autentifikační URI; v1 (Swauth) není podporována."
2370
 
2371
- #: templates/wp-admin/settings/form-contents.php:287
2372
  msgid "your site's admin address"
2373
  msgstr "adresa administrátora vašeho webu"
2374
 
2375
- #: templates/wp-admin/settings/form-contents.php:287
2376
  msgid "Check this box to have a basic report sent to"
2377
  msgstr "Pokud chcete zaslat základní hlášení, zaškrtněte toto políčko"
2378
 
2379
- #: admin.php:2849
2380
  msgctxt "i.e. Non-automatic"
2381
  msgid "Manual"
2382
  msgstr "Ručně"
@@ -2390,11 +2450,11 @@ msgstr "Došlo k chybě (%s):"
2390
  msgid "Change Lock Settings"
2391
  msgstr "Změnit nastavení uzamčení"
2392
 
2393
- #: addons/morefiles.php:185
2394
  msgid "Any other file/directory on your server that you wish to back up"
2395
  msgstr "Jakýkoliv další soubor/složku na serveru, které si přejete zálohovat"
2396
 
2397
- #: admin.php:2098
2398
  msgid "For even more features and personal support, check out "
2399
  msgstr "Pro ještě více schopností a osobní podporu se podívejte na "
2400
 
@@ -2410,7 +2470,7 @@ msgstr "Mazání mezipaměti stránek (%s)..."
2410
  msgid "Database decryption phrase"
2411
  msgstr "Fráze pro dešifrování databáze"
2412
 
2413
- #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:621
2414
  msgid "Automatic backup before update"
2415
  msgstr "Automatická záloha před aktualizací"
2416
 
@@ -2490,15 +2550,15 @@ msgstr "Heslo administrátora bylo nastaveno."
2490
  msgid "The admin password has now been removed."
2491
  msgstr "Heslo administrátora bylo odstraněno."
2492
 
2493
- #: addons/morefiles.php:74
2494
  msgid "(learn more about this significant option)"
2495
  msgstr "(dozvědět se více o této významné možnosti)"
2496
 
2497
- #: udaddons/options.php:273
2498
  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."
2499
  msgstr "Po získání rozšíření můžete z nastavení níže odstranit své heslo (nikoliv email) bez toho, aniž byste ovlivnili přístup webu k aktualizacím."
2500
 
2501
- #: admin.php:2431 admin.php:3337
2502
  msgid "View Log"
2503
  msgstr "Zobrazit protokol"
2504
 
@@ -2515,7 +2575,7 @@ msgstr "Datum zálohy"
2515
  msgid "and retain this many scheduled backups"
2516
  msgstr "a uchovat tolik naplánovaných záloh"
2517
 
2518
- #: admin.php:2810
2519
  msgid "incremental backup; base backup: %s"
2520
  msgstr "kumulativní záloha; základní záloha: %s"
2521
 
@@ -2527,28 +2587,28 @@ msgstr "Pro možnost uzamčení nastavení UpdraftPlus heslem přejděte na Updr
2527
  msgid "Upload files into UpdraftPlus."
2528
  msgstr "Nahrajte soubory do UpdraftPlus."
2529
 
2530
- #: admin.php:846 includes/class-commands.php:363
2531
  #: templates/wp-admin/settings/tab-status.php:22
2532
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2533
  msgstr "Tlačítko „Zálohovat nyní“ není aktivní, protože do složky se zálohami nelze zapisovat (jděte do záložky „Nastavení“ a najděte odpovídající možnost)."
2534
 
2535
- #: class-updraftplus.php:3949
2536
  msgid "Backup label:"
2537
  msgstr "Štítek zálohy:"
2538
 
2539
- #: admin.php:1625
2540
  msgid "Error: unexpected file read fail"
2541
  msgstr "Chyba: čtení neočekávaného souboru selhalo"
2542
 
2543
- #: backup.php:3000
2544
  msgid "check your log for more details."
2545
  msgstr "více informací naleznete v protokolu."
2546
 
2547
- #: backup.php:2998
2548
  msgid "your web hosting account appears to be full; please see: %s"
2549
  msgstr "váš webhosting je nejspíš plný; prosím podívejte se: %s"
2550
 
2551
- #: backup.php:2996
2552
  msgid "A zip error occurred"
2553
  msgstr "Objevila se chyba zip"
2554
 
@@ -2556,19 +2616,19 @@ msgstr "Objevila se chyba zip"
2556
  msgid "Your label for this backup (optional)"
2557
  msgstr "Váš štítek pro tuto zálohu (nepovinné)"
2558
 
2559
- #: addons/googlecloud.php:822 methods/googledrive.php:915
2560
  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."
2561
  msgstr "%s nepovoluje autorizaci webů hostovaných na pevných IP adresách. Nejprve musíte změnit adresu webu (%s), abyste mohli pro ukládání použít %s."
2562
 
2563
- #: methods/updraftvault.php:608 udaddons/updraftplus-addons.php:789
2564
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2565
  msgstr "Vložili jste emailovou adresu, která nebyla serverem UpdraftPlus.com rozpoznána."
2566
 
2567
- #: methods/updraftvault.php:605 udaddons/updraftplus-addons.php:785
2568
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2569
  msgstr "Vaše emailová adresa byla správná, ale heslo nebylo serverem UpdraftPlus.com rozpoznáno."
2570
 
2571
- #: methods/updraftvault.php:545 udaddons/updraftplus-addons.php:655
2572
  msgid "You need to supply both an email address and a password"
2573
  msgstr "Musíte poskytnout email i heslo"
2574
 
@@ -2576,11 +2636,11 @@ msgstr "Musíte poskytnout email i heslo"
2576
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2577
  msgstr "Pro pokračování stiskněte „Zálohovat nyní“. Pak sledujte, zda se mění „Poslední zpráva protokolu“."
2578
 
2579
- #: class-updraftplus.php:3968
2580
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2581
  msgstr "Pokud chcete obnovit multisite zálohu, měli byste nejdřív nastavit svůj WordPress jako multisite."
2582
 
2583
- #: class-updraftplus.php:3968
2584
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2585
  msgstr "Vaše záloha je z instalace WordPress multisite, ale tento web nikoliv. K dispozici bude pouze první web."
2586
 
@@ -2608,27 +2668,27 @@ msgstr "Pouze tyto tabulky"
2608
  msgid "Rows per batch"
2609
  msgstr "Řádků na dávku"
2610
 
2611
- #: udaddons/options.php:102
2612
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2613
  msgstr "Zatím nejste spojeni se svým UpdraftPlus.com účtem."
2614
 
2615
- #: udaddons/options.php:100 udaddons/options.php:102
2616
  msgid "You need to connect to receive future updates to UpdraftPlus."
2617
  msgstr "Pro budoucí aktualizace se musíte spojit s UpdraftPlus."
2618
 
2619
- #: class-updraftplus.php:3941
2620
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2621
  msgstr "Jakákoliv žádost o podporu týkající se %s, by měla být řešena s vaším poskytovatelem hostingu."
2622
 
2623
- #: class-updraftplus.php:3941
2624
  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."
2625
  msgstr "Měli byste pokračovat pouze pokud neaktualizujete současný server a jste si jisti (nebo ochotni riskovat), že vaše pluginy / šablony / atd. jsou kompatibilní se starší verzí %s."
2626
 
2627
- #: class-updraftplus.php:3941
2628
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2629
  msgstr "Což je velký rozdíl oproti verzi, na kterou chcete zálohu obnovit (verze %s)."
2630
 
2631
- #: class-updraftplus.php:3941
2632
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2633
  msgstr "Web z této zálohy běžel na webovém serveru s verzí %s z %s. "
2634
 
@@ -2653,7 +2713,7 @@ msgstr "Twitter"
2653
  msgid "UpdraftPlus is on social media - check us out!"
2654
  msgstr "UpdraftPlus je na sociálních sítích - Podívejte se na nás!"
2655
 
2656
- #: admin.php:3398
2657
  msgid "Why am I seeing this?"
2658
  msgstr "Proč tohle vidím?"
2659
 
@@ -2665,15 +2725,15 @@ msgstr "Umístění složky je uloženo v pokročilém nastavení, v záložce
2665
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2666
  msgstr "Pro podívání se po nových zálohách, které jste nahráli do složky UpdraftPlus (na vašem hostingu) klikněte zde."
2667
 
2668
- #: admin.php:1573 admin.php:1585
2669
  msgid "Start backup"
2670
  msgstr "Zahájit zálohu"
2671
 
2672
- #: class-updraftplus.php:3913 restorer.php:996
2673
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2674
  msgstr "Používáte %s webový server, ale vypadá to, že nemáte načtený modul %s."
2675
 
2676
- #: admin.php:2754
2677
  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."
2678
  msgstr "Pro konzultaci, jak povolit WordPress pluginu zapisovat do složky, budete potřebovat kontaktovat svého poskytovatele."
2679
 
@@ -2681,11 +2741,11 @@ msgstr "Pro konzultaci, jak povolit WordPress pluginu zapisovat do složky, bude
2681
  msgid "Unless you have a problem, you can completely ignore everything here."
2682
  msgstr "Pokud nemáte žádný problém, můžete ignorovat vše co zde vidíte."
2683
 
2684
- #: admin.php:1784
2685
  msgid "This file could not be uploaded"
2686
  msgstr "Tento soubor nemůže být nahrán"
2687
 
2688
- #: admin.php:1749
2689
  msgid "You will find more information about this in the Settings section."
2690
  msgstr "Více informací o tom najdete v sekci „Nastavení“."
2691
 
@@ -2705,7 +2765,7 @@ msgstr "Zjistit více o přírůstkových zálohách"
2705
  msgid "Memory limit"
2706
  msgstr "Limit paměti"
2707
 
2708
- #: class-updraftplus.php:4071 restorer.php:1441
2709
  msgid "restoration"
2710
  msgstr "obnovení"
2711
 
@@ -2713,11 +2773,11 @@ msgstr "obnovení"
2713
  msgid "Table to be implicitly dropped: %s"
2714
  msgstr "Tabulka, která bude implicitně smazána: %s"
2715
 
2716
- #: backup.php:832
2717
  msgid "Incremental"
2718
  msgstr "Přírustková"
2719
 
2720
- #: backup.php:832
2721
  msgid "Full backup"
2722
  msgstr "Kompletní záloha"
2723
 
@@ -2733,7 +2793,7 @@ msgstr "(zobrazit protokol...)"
2733
  msgid "Backup succeeded"
2734
  msgstr "Zálohování bylo úspěšně dokončeno"
2735
 
2736
- #: admin.php:2850 admin.php:2851 admin.php:2852 updraftplus.php:92
2737
  #: updraftplus.php:93
2738
  msgid "Every %s hours"
2739
  msgstr "Každých %s hodin"
@@ -2756,7 +2816,7 @@ msgstr "Tohle může snadno rozbít váš web, používejte to opatrně!"
2756
 
2757
  #: addons/migrator.php:274 addons/migrator.php:312
2758
  msgid "Replace with"
2759
- msgstr "Nahradit:"
2760
 
2761
  #: addons/migrator.php:273 addons/migrator.php:311
2762
  msgid "Search for"
@@ -2776,23 +2836,23 @@ msgstr "hledaný výraz"
2776
  msgid "Too many database errors have occurred - aborting"
2777
  msgstr "Vyskytlo se příliš mnoho chyb databáze - proces se přerušuje"
2778
 
2779
- #: backup.php:898
2780
  msgid "read more at %s"
2781
  msgstr "čtete více na %s"
2782
 
2783
- #: backup.php:898
2784
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2785
  msgstr "Emailové hlášení vytvořené pomocí UpdraftPlus (verze zdarma) vám přináší novinky z UpdraftPlus.com"
2786
 
2787
- #: methods/googledrive.php:921
2788
  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."
2789
  msgstr "Poznámka: Pokud nainstalujete UpdraftPlus na několika webech používající WordPress, nemůžete použít jeden projekt pro všechny. Pro každou stránku musíte v Google API konzoli vytvořit nový."
2790
 
2791
- #: admin.php:3166
2792
  msgid "You have not yet made any backups."
2793
  msgstr "Zatím jste nevytvořili žádnou zálohu."
2794
 
2795
- #: templates/wp-admin/settings/form-contents.php:179
2796
  msgid "Database Options"
2797
  msgstr "Možnosti databáze"
2798
 
@@ -2808,30 +2868,30 @@ msgstr "%s (použito %s)"
2808
  msgid "Free disk space in account:"
2809
  msgstr "Volné místo na disku pro účet:"
2810
 
2811
- #: admin.php:3924 templates/wp-admin/settings/tab-status.php:27
2812
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2813
  msgstr "Toto tlačítko je zakázané, protože se do vaší složky pro zálohy nedá zapisovat (podívejte se do nastavení)."
2814
 
2815
- #: admin.php:456 admin.php:590 admin.php:1438
2816
  #: includes/deprecated-actions.php:30
2817
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2818
  #: templates/wp-admin/settings/tab-bar.php:6
2819
  msgid "Existing Backups"
2820
  msgstr "Existující zálohy"
2821
 
2822
- #: admin.php:448 templates/wp-admin/settings/tab-bar.php:5
2823
  msgid "Current Status"
2824
  msgstr "Současný stav"
2825
 
2826
- #: admin.php:851
2827
  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."
2828
  msgstr "Ke změně výchozího nastavení toho, co se zálohuje, k nastavení naplánovaných záloh, k odeslání záloh na vzdálené uložiště (doporučujeme) a mnoho dalšího, jděte na záložku nastavení."
2829
 
2830
- #: admin.php:851
2831
  msgid "To make a backup, just press the Backup Now button."
2832
  msgstr "K vytvoření zálohy stiskněte tlačítko „Zálohovat nyní“."
2833
 
2834
- #: admin.php:851
2835
  msgid "Welcome to UpdraftPlus!"
2836
  msgstr "Vítejte v UpdraftPlus!"
2837
 
@@ -2903,48 +2963,48 @@ msgstr "host"
2903
  msgid "user"
2904
  msgstr "uživatel"
2905
 
2906
- #: class-updraftplus.php:1481
2907
  msgid "External database (%s)"
2908
  msgstr "Externí databáze (%s)"
2909
 
2910
- #: methods/googledrive.php:921
2911
  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."
2912
  msgstr "Klikněte na tento odkaz přejděte do své Google API konzole, kde musíte aktivovat Drive API. Poté si vytvořte Client ID v sekci API Access."
2913
 
2914
- #: methods/googledrive.php:386
2915
  msgid "failed to access parent folder"
2916
  msgstr "nepodařilo se přistoupit k nadřazené složce"
2917
 
2918
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2919
- #: methods/googledrive.php:343
2920
  msgid "However, subsequent access attempts failed:"
2921
  msgstr "Nicméně následné pokusy o připojení selhaly:"
2922
 
2923
- #: admin.php:3191
2924
  msgid "External database"
2925
  msgstr "Externí databáze"
2926
 
2927
- #: templates/wp-admin/settings/form-contents.php:321
2928
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2929
  msgstr "Způsobí to, že se zde zobrazí i výstup ladění ostatních pluginů - nebuďte proto překvapeni, že tomu tak je."
2930
 
2931
- #: templates/wp-admin/settings/form-contents.php:261
2932
  msgid "Back up more databases"
2933
  msgstr "Zálohovat více databází"
2934
 
2935
- #: templates/wp-admin/settings/form-contents.php:218
2936
  msgid "First, enter the decryption key"
2937
  msgstr "Nejprve vložte dešifrovací klíč"
2938
 
2939
- #: templates/wp-admin/settings/form-contents.php:200
2940
  msgid "You can manually decrypt an encrypted database here."
2941
  msgstr "Zde můžete ručně dešifrovat šifrovanou databázi."
2942
 
2943
- #: templates/wp-admin/settings/form-contents.php:188
2944
  msgid "It can also backup external databases."
2945
  msgstr "Dokáže také zálohovat externí databáze."
2946
 
2947
- #: templates/wp-admin/settings/form-contents.php:188
2948
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2949
  msgstr "Nechcete být špehování? UpdraftPlus Premium dokáže zálohu databáze šifrovat."
2950
 
@@ -2952,7 +3012,7 @@ msgstr "Nechcete být špehování? UpdraftPlus Premium dokáže zálohu databá
2952
  msgid "use UpdraftPlus Premium"
2953
  msgstr "použijte UpdraftPlus Premium"
2954
 
2955
- #: class-updraftplus.php:3831
2956
  msgid "Decryption failed. The database file is encrypted."
2957
  msgstr "Dešifrování selhalo. Soubor databáze je šifrován."
2958
 
@@ -2964,11 +3024,11 @@ msgstr "Obnovena může být pouze WordPress databáze; s externí databází si
2964
  msgid "An error occurred on the first %s command - aborting run"
2965
  msgstr "Při prvním příkazu %s nastala chyba - ruší se běh"
2966
 
2967
- #: addons/moredatabase.php:98 backup.php:1360
2968
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2969
  msgstr "Připojení selhalo: zkontrolujte přístupové údaje, jestli server s databází běží a zda nebrání síťovému běhu firewall."
2970
 
2971
- #: backup.php:1360
2972
  msgid "database connection attempt failed."
2973
  msgstr "selhal pokus o připojení k databázi."
2974
 
@@ -2976,162 +3036,162 @@ msgstr "selhal pokus o připojení k databázi."
2976
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2977
  msgstr "Varování: domovská URL databáze (%s) je jiná, než se očekávalo (%s)"
2978
 
2979
- #: addons/google-enhanced.php:75
2980
  msgid "In %s, path names are case sensitive."
2981
  msgstr "U cesty v %s záleží na velikosti písmen."
2982
 
2983
- #: addons/azure.php:524 addons/google-enhanced.php:73 addons/onedrive.php:989
2984
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2985
  msgstr "Pokud ji necháte prázdnou, bude záloha uložena do kořene vaší %s"
2986
 
2987
- #: addons/google-enhanced.php:73 addons/googlecloud.php:860
2988
  #: addons/onedrive.php:989
2989
  msgid "e.g. %s"
2990
  msgstr "např. %s"
2991
 
2992
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2993
  msgid "If the folder does not already exist, then it will be created."
2994
  msgstr "Pokud složka neexistuje, bude vytvořena."
2995
 
2996
- #: addons/google-enhanced.php:73 addons/onedrive.php:989
2997
  msgid "Enter the path of the %s folder you wish to use here."
2998
  msgstr "Zadejte cestu složky %s, kterou si zde přejete použít."
2999
 
3000
- #: addons/azure.php:517 methods/openstack2.php:133
3001
  msgid "Container"
3002
  msgstr "Kontejner"
3003
 
3004
- #: methods/openstack2.php:116
3005
  msgid "Leave this blank, and a default will be chosen."
3006
  msgstr "Pro zvolení výchozího nechte prázdné."
3007
 
3008
- #: methods/openstack2.php:107
3009
  msgid "Tenant"
3010
  msgstr "Tenant"
3011
 
3012
- #: methods/openstack2.php:107
3013
  msgid "Follow this link for more information"
3014
  msgstr "Pro více informací klikněte na tento odkaz"
3015
 
3016
- #: methods/openstack2.php:99 methods/openstack2.php:157
3017
  msgid "authentication URI"
3018
  msgstr "ověřovací URI"
3019
 
3020
- #: methods/openstack2.php:94
3021
  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."
3022
  msgstr "Získejte přihlašovací údaje od svého poskytovatele OpenStack Swift a pak vyberte název kontejneru, který chcete použít jako uložiště. Pokud daný kontejner neexistuje, bude pro vás vytvořen."
3023
 
3024
- #: methods/addon-base.php:194 methods/addon-base.php:214
3025
  msgid "Failed to download %s"
3026
  msgstr "Stahování %s se nezdařilo"
3027
 
3028
- #: methods/addon-base.php:208
3029
  msgid "Failed to download"
3030
  msgstr "Stahování se nezdařilo"
3031
 
3032
- #: methods/addon-base.php:106
3033
  msgid "failed to list files"
3034
  msgstr "nepodařilo se získat seznam souborů"
3035
 
3036
- #: methods/addon-base.php:75 methods/addon-base.php:80
3037
  msgid "Failed to upload %s"
3038
  msgstr "Nahrání %s se nezdařilo"
3039
 
3040
- #: methods/dropbox.php:612 methods/dropbox.php:614
3041
  msgid "Success:"
3042
  msgstr "Úspěch:"
3043
 
3044
- #: addons/onedrive.php:997 methods/dropbox.php:513
3045
  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."
3046
  msgstr "<strong>Jakmile uložíte nastavení</strong> (kliknutím níže na „Uložit změny“), vraťte se sem a klikněte na tento odkaz pro dokončení ověření %s."
3047
 
3048
- #: addons/onedrive.php:995 methods/dropbox.php:510
3049
  msgid "(You appear to be already authenticated)."
3050
  msgstr "(Vypadá to, že již jste ověřeni)."
3051
 
3052
- #: methods/dropbox.php:505 methods/dropbox.php:511 methods/dropbox.php:513
3053
  msgid "Dropbox"
3054
  msgstr "Dropbox"
3055
 
3056
- #: addons/onedrive.php:994 methods/dropbox.php:505
3057
  msgid "Authenticate with %s"
3058
  msgstr "Ověřit pomocí %s"
3059
 
3060
- #: methods/cloudfiles.php:409
3061
  msgid "Error downloading remote file: Failed to download"
3062
  msgstr "Chyba při stahování vzdáleného souboru: Nepodařilo se jej stáhnout"
3063
 
3064
- #: methods/openstack-base.php:472 methods/openstack-base.php:477
3065
  msgid "Region: %s"
3066
  msgstr "Oblast: %s"
3067
 
3068
- #: methods/openstack-base.php:471
3069
  msgid "%s error - we accessed the container, but failed to create a file within it"
3070
  msgstr "Chyba %s - byl získán přístup ke kontejneru, ale nepodařilo se v něm vytvořit soubor"
3071
 
3072
- #: methods/openstack-base.php:389
3073
  msgid "The %s object was not found"
3074
  msgstr "Objekt %s nebyl nalezen"
3075
 
3076
- #: methods/openstack-base.php:48 methods/openstack-base.php:312
3077
- #: methods/openstack-base.php:381
3078
  msgid "Could not access %s container"
3079
  msgstr "Nepodařilo se přistoupit ke kontejneru %s"
3080
 
3081
- #: methods/openstack-base.php:40 methods/openstack-base.php:108
3082
- #: methods/openstack-base.php:115 methods/openstack-base.php:304
3083
- #: methods/openstack-base.php:369
3084
  msgid "%s error - failed to access the container"
3085
  msgstr "Chyba %s - nepodařilo se přistoupit ke kontejneru"
3086
 
3087
- #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:520
3088
- #: methods/googledrive.php:970
3089
  msgid "Account holder's name: %s."
3090
  msgstr "Jméno držitele účtu: %s."
3091
 
3092
- #: methods/googledrive.php:959
3093
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3094
  msgstr "Pokud si chcete nastavit vlastní název složky, použijte UpdraftPlus Premium."
3095
 
3096
- #: methods/googledrive.php:950
3097
  msgid "It is an ID number internal to Google Drive"
3098
  msgstr "Je to vnitřní ID Google Disku"
3099
 
3100
- #: methods/googledrive.php:950
3101
  msgid "<strong>This is NOT a folder name</strong>."
3102
  msgstr "<strong>Toto NENÍ název složky</strong>."
3103
 
3104
- #: addons/google-enhanced.php:72 addons/onedrive.php:988
3105
- #: methods/googledrive.php:946 methods/googledrive.php:956
3106
  msgid "Folder"
3107
  msgstr "Složka"
3108
 
3109
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3110
- #: methods/googledrive.php:878
3111
  msgid "%s download: failed: file not found"
3112
  msgstr "%s stahování: selhalo: soubor nenalezen"
3113
 
3114
- #: addons/googlecloud.php:579 methods/googledrive.php:363
3115
  msgid "Name: %s."
3116
  msgstr "Jméno: %s."
3117
 
3118
- #: methods/googledrive.php:157
3119
  msgid "Google Drive list files: failed to access parent folder"
3120
  msgstr "Seznam souborů Google Disku: nelze přistoupit k rodičovské složce"
3121
 
3122
- #: methods/insufficient.php:65 methods/viaaddon-base.php:87
3123
  msgid "Your %s version: %s."
3124
  msgstr "Vaše %s verze: %s."
3125
 
3126
- #: methods/insufficient.php:64 methods/viaaddon-base.php:86
3127
  msgid "You will need to ask your web hosting company to upgrade."
3128
  msgstr "Budete muset požádat svého poskytovatele o aktualizaci."
3129
 
3130
- #: methods/insufficient.php:17 methods/viaaddon-base.php:16
3131
  msgid "This remote storage method (%s) requires PHP %s or later."
3132
  msgstr "Toto vzdálené uložiště (%s) vyžaduje PHP %s, nebo novější."
3133
 
3134
- #: admin.php:3743
3135
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3136
  msgstr "Složka šablony (%s) nebyla nalezena, ale existuje její verze s malými písmeny; patřičně upravuji možnost databáze"
3137
 
@@ -3145,7 +3205,7 @@ msgstr "Načíst"
3145
 
3146
  #: addons/migrator.php:375
3147
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3148
- #: templates/wp-admin/settings/form-contents.php:208
3149
  msgid "This feature requires %s version %s or later"
3150
  msgstr "Tato vlastnost vyžaduje %s verze %s, nebo novější"
3151
 
@@ -3161,7 +3221,7 @@ msgstr "%s souborů bylo rozbaleno"
3161
  msgid "Failed to unpack the archive"
3162
  msgstr "Nepodařilo se rozbalit archiv"
3163
 
3164
- #: class-updraftplus.php:1048
3165
  msgid "Error - failed to download the file"
3166
  msgstr "Chyba - nepodařilo se stáhnout soubor"
3167
 
@@ -3181,44 +3241,44 @@ msgstr "Byla testována až do verze %s."
3181
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3182
  msgstr "Nainstalovaná verze UpdraftPlus Backup/Restore nebyla testována na vaší verzi WordPressu (%s)."
3183
 
3184
- #: addons/sftp.php:425
3185
  msgid "password/key"
3186
  msgstr "heslo/klíč"
3187
 
3188
- #: addons/azure.php:510 addons/migrator.php:2198 addons/sftp.php:376
3189
- #: admin.php:637
3190
  msgid "Key"
3191
  msgstr "Klíč"
3192
 
3193
- #: addons/sftp.php:371
3194
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3195
  msgstr "Vaše přihlášení může být založeno pouze na heslu, nebo klíči - vložte pouze jedno, ne oboje."
3196
 
3197
- #: addons/sftp.php:308
3198
  msgid "The key provided was not in a valid format, or was corrupt."
3199
  msgstr "Vložený klíč není ve správném formátu, nebo je poškozen."
3200
 
3201
- #: addons/sftp.php:47
3202
  msgid "SCP/SFTP password/key"
3203
  msgstr "SCP/SFTP heslo/klíč"
3204
 
3205
- #: admin.php:3226
3206
  msgid "Files backup (created by %s)"
3207
  msgstr "Záloha souborů (vytvořil uživatel %s)"
3208
 
3209
- #: admin.php:3226
3210
  msgid "Files and database WordPress backup (created by %s)"
3211
  msgstr "Záloha souborů a databáze WordPressu (vytvořil uživatel %s)"
3212
 
3213
- #: addons/importer.php:261 admin.php:3220 class-updraftplus.php:2514
3214
  msgid "Backup created by: %s."
3215
  msgstr "Zálohu vytvořil: %s."
3216
 
3217
- #: admin.php:3189
3218
  msgid "Database (created by %s)"
3219
  msgstr "Databáze (vytvořil uživatel %s)"
3220
 
3221
- #: admin.php:3183 admin.php:3222
3222
  msgid "unknown source"
3223
  msgstr "neznámý zdroj"
3224
 
@@ -3230,31 +3290,31 @@ msgstr "Znovu prohledat vzdálené uložiště"
3230
  msgid "Upload backup files"
3231
  msgstr "Nahrát soubory zálohy"
3232
 
3233
- #: admin.php:1828
3234
  msgid "This backup was created by %s, and can be imported."
3235
  msgstr "Tuto zálohu vytvořil %s a může být importována."
3236
 
3237
- #: admin.php:880
3238
  msgid "Read this page for a guide to possible causes and how to fix it."
3239
  msgstr "Na této stránce je návod s možnými příčinami a opravami."
3240
 
3241
- #: admin.php:880
3242
  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."
3243
  msgstr "WordPress má pár (%d) zpožděných naplánovaných úkolů. Pokud není tento web vývojářský, je pravděpodobné, že plánovač ve vašem WordPressu nefunguje."
3244
 
3245
- #: admin.php:602 class-updraftplus.php:2521
3246
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3247
  msgstr "Pokud je toto záloha vytvořená jiným pluginem pro zálohu, pak by vám mohl pomoci UpdraftPlus Premium."
3248
 
3249
- #: admin.php:601
3250
  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."
3251
  msgstr "Nicméně archivy UpdraftPlus jsou běžné zip/SQL soubory - takže pokud si jste jisti, že má váš soubor správný formát, můžete jej přejmenovat, aby odpovídal danému vzoru."
3252
 
3253
- #: admin.php:601 admin.php:602 class-updraftplus.php:2521
3254
  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))."
3255
  msgstr "Tento soubor nevypadá jako archiv se zálohou UpdraftPlus (takové soubory jsou .zip, nebo .gz soubory, které mají jméno ve tvaru: backup_(čas)_(název webu)_(kód)_(typ).(zip|gz))."
3256
 
3257
- #: admin.php:3223 includes/class-wpadmin-commands.php:143 restorer.php:1410
3258
  msgid "Backup created by unknown source (%s) - cannot be restored."
3259
  msgstr "Záloha vytvořena neznámým zdrojem (%s) - nemůže být obnovena."
3260
 
@@ -3266,24 +3326,24 @@ msgstr "Složka WordPressu s obsahem (wp-content) nebyla v tomto zip souboru nal
3266
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3267
  msgstr "Tato verze UpdraftPlus neví, jak zpracovat tento typ cizí zálohy"
3268
 
3269
- #: methods/dropbox.php:300
3270
  msgid "%s returned an unexpected HTTP response: %s"
3271
  msgstr "%s vrátil neočekávanou HTTP odpověď: %s"
3272
 
3273
- #: addons/sftp.php:885
3274
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3275
  msgstr "UpdraftPlus rozšíření pro tento typ přístupu k souborům (%s) nepodporuje výpis souborů"
3276
 
3277
- #: methods/cloudfiles.php:234 methods/dropbox.php:281
3278
- #: methods/openstack-base.php:103
3279
  msgid "No settings were found"
3280
  msgstr "Nebylo nalezeno žádné nastavení"
3281
 
3282
- #: class-updraftplus.php:2642
3283
  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."
3284
  msgstr "Jedna nebo více záloh byla přidána z prohledání vzdáleného uložiště; Upozorňujeme, že tyto zálohy nebudou automaticky smazány skrze „ponechat“ nastavení; Pokud je budete chtít smazat, musíte to udělat ručně."
3285
 
3286
- #: admin.php:568
3287
  msgid "Rescanning remote and local storage for backup sets..."
3288
  msgstr "Prohledávají se vzdálená a lokální uložiště kvůli zálohám..."
3289
 
@@ -3300,24 +3360,24 @@ msgstr "Nastavování WPMU cest"
3300
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3301
  msgstr "Zaznamenávat veškeré zprávy do systémového protokolu (nastavení pouze pro správce serveru)"
3302
 
3303
- #: addons/morefiles.php:428
3304
  msgid "No backup of location: there was nothing found to back up"
3305
  msgstr "Žádná záloha umístění: nebylo zde nalezeno nic k zálohování"
3306
 
3307
- #: addons/moredatabase.php:234 addons/morefiles.php:224
3308
- #: addons/morefiles.php:245
3309
  msgid "Remove"
3310
  msgstr "Odstranit"
3311
 
3312
- #: methods/s3.php:814
3313
  msgid "Other %s FAQs."
3314
  msgstr "Ostatní často kladené dotazy ohledně %s."
3315
 
3316
- #: templates/wp-admin/settings/form-contents.php:321
3317
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3318
  msgstr "Pokud chcete dostávat více informací a emailů o procesu zálohování zaškrtněte toto políčko - užitečné pokud se něco pokazí."
3319
 
3320
- #: addons/morefiles.php:382 admin.php:2942
3321
  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."
3322
  msgstr "Při vkládání více souborů/složek, je oddělujte čárkou. Pro objekty vrchní úrovně můžete na začátku, nebo na konci použít zástupný znak *."
3323
 
@@ -3325,23 +3385,23 @@ msgstr "Při vkládání více souborů/složek, je oddělujte čárkou. Pro obj
3325
  msgid "Custom content type manager plugin data detected: clearing option cache"
3326
  msgstr "Detekován plugin pro správu vlastního obsahu: maže se mezipaměť možnosti"
3327
 
3328
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1441
3329
  msgid "Your hosting company must enable these functions before %s can work."
3330
  msgstr "Dokud váš provozovatel hostingu nepovolí tyto funkce, %s nebude pracovat."
3331
 
3332
- #: class-updraftplus.php:4071 methods/ftp.php:284 restorer.php:1440
3333
  msgid "Your web server's PHP installation has these functions disabled: %s."
3334
  msgstr "Instalace PHP na serveru má zakázány následující funkce: %s."
3335
 
3336
- #: methods/ftp.php:281
3337
  msgid "encrypted FTP (explicit encryption)"
3338
  msgstr "šifrované FTP (explicitní šifrování)"
3339
 
3340
- #: methods/ftp.php:280
3341
  msgid "encrypted FTP (implicit encryption)"
3342
  msgstr "šifrované FTP (implicitní šifrování)"
3343
 
3344
- #: methods/ftp.php:279
3345
  msgid "regular non-encrypted FTP"
3346
  msgstr "běžné nešifrované FTP"
3347
 
@@ -3349,7 +3409,7 @@ msgstr "běžné nešifrované FTP"
3349
  msgid "Backup created by:"
3350
  msgstr "Zálohu vytvořil:"
3351
 
3352
- #: udaddons/options.php:482
3353
  msgid "Available to claim on this site"
3354
  msgstr "Dostupné pro tento web"
3355
 
@@ -3397,15 +3457,15 @@ msgstr "Placený přístup k UpdraftPlus aktualizacím pro tento web vypršel. N
3397
  msgid "Dismiss from main dashboard (for %s weeks)"
3398
  msgstr "Skrýt na hlavní nástěnce (na %s týdnů)"
3399
 
3400
- #: class-updraftplus.php:4121
3401
  msgid "The attempt to undo the double-compression succeeded."
3402
  msgstr "Pokus o dvojitou dekompresi byl úspěšný."
3403
 
3404
- #: class-updraftplus.php:4098 class-updraftplus.php:4119
3405
  msgid "The attempt to undo the double-compression failed."
3406
  msgstr "Pokus o dvojitou dekompresi selhal."
3407
 
3408
- #: class-updraftplus.php:4091
3409
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3410
  msgstr "Databázový soubor se zdá být dvakrát komprimovaný - web ze které jste ho stáhli měl pravděpodobně špatně nastavený webový server."
3411
 
@@ -3413,15 +3473,15 @@ msgstr "Databázový soubor se zdá být dvakrát komprimovaný - web ze které
3413
  msgid "Constants"
3414
  msgstr "Konstanty"
3415
 
3416
- #: backup.php:1595
3417
  msgid "Failed to open database file for reading:"
3418
  msgstr "Otevření souboru pro čtení selhalo:"
3419
 
3420
- #: backup.php:1408
3421
  msgid "No database tables found"
3422
  msgstr "V databázi nebyla nalezena žádná tabulka."
3423
 
3424
- #: backup.php:1406
3425
  msgid "please wait for the rescheduled attempt"
3426
  msgstr "počkejte prosím na přeložený pokus"
3427
 
@@ -3449,11 +3509,11 @@ msgstr "Plný účet: na Vašem %s účtu zbývá pouze %d bajtů prostoru, nahr
3449
  msgid "Errors occurred:"
3450
  msgstr "Objevily se chyby:"
3451
 
3452
- #: admin.php:3418
3453
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3454
  msgstr "Pro stažení souboru protokolu tohoto obnovení pokračujte zde (je třeba pro jakýkoliv požadavek podpory)."
3455
 
3456
- #: templates/wp-admin/settings/form-contents.php:365
3457
  msgid "See this FAQ also."
3458
  msgstr "Podívejte se i na tyto často kladené dotazy."
3459
 
@@ -3473,7 +3533,7 @@ msgstr "PHP nastavení na tomto webovém serveru umožňuje, aby PHP běželo po
3473
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3474
  msgstr "Existují nesmazané složky z předchozí obnovy (Než to zkusíte znovu, zmáčkněte prosím tlačítko „Smazat staré složky“): %s"
3475
 
3476
- #: admin.php:855 class-updraftplus.php:597
3477
  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)"
3478
  msgstr "Čas, po který mohou pluginy WordPressu běžet je velmi krátky (%s sekund) - měli byste zvýšit limit, abyste se vyhnuli chybám při zálohách způsobených nedostatkem času (pomoc konzultujte s vaším poskytovatelem hostingu - jde o nastavení PHP max_execution_time; doporučená hodnota je minimálně %s sekund)"
3479
 
@@ -3489,20 +3549,20 @@ msgstr "%s: Přeskakování soubor mezipaměti (již neexistuje)"
3489
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3490
  msgstr "Deaktivován plugin: %s: až budete připraveni, plugin opět ručně aktivujte."
3491
 
3492
- #: addons/sftp.php:640 addons/sftp.php:643 includes/ftp.class.php:44
3493
  #: includes/ftp.class.php:47
3494
  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."
3495
  msgstr "Vypršel časový limit pro %s připojení; pokud jste server zadali správně, pak je tato chyba běžně způsobena blokováním firewallu - doporučujeme konzultaci s poskytovatelem hostingu."
3496
 
3497
- #: admin.php:3751
3498
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3499
  msgstr "Aktuální šablona nebyla nalezena; aby
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-02-23 20:39:08+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: cs_CZ\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: methods/updraftvault.php:49
15
+ msgid "UpdraftVault"
16
+ msgstr ""
17
+
18
+ #: includes/updraftplus-notices.php:260
19
+ msgid "get more info"
20
+ msgstr ""
21
+
22
+ #: includes/updraftplus-notices.php:260
23
+ msgid "install"
24
+ msgstr ""
25
+
26
+ #: includes/updraftplus-notices.php:260
27
+ msgid "Switch to UpdraftPlus's free alternative:"
28
+ msgstr ""
29
+
30
+ #: includes/updraftplus-notices.php:260
31
+ msgid "Clef confirms that they are closing down their two factor security plugin."
32
+ msgstr ""
33
+
34
+ #: includes/class-wpadmin-commands.php:467
35
+ msgid "archive"
36
+ msgstr ""
37
+
38
+ #: includes/class-wpadmin-commands.php:458
39
+ msgid "Extra database"
40
+ msgstr ""
41
+
42
+ #: admin.php:3302
43
+ msgid "Press here to download or browse"
44
+ msgstr ""
45
+
46
+ #: admin.php:1018 admin.php:1028
47
+ msgid "Error: invalid path"
48
+ msgstr ""
49
+
50
+ #: admin.php:876
51
+ msgid "An error occurred when fetching storage module options: "
52
+ msgstr ""
53
+
54
+ #: admin.php:705
55
+ msgid "Loading log file"
56
+ msgstr ""
57
+
58
+ #: admin.php:704
59
+ msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
60
+ msgstr ""
61
+
62
+ #: admin.php:703
63
+ msgid "Search"
64
+ msgstr ""
65
+
66
+ #: admin.php:702
67
+ msgid "Select a file to view information about it"
68
+ msgstr ""
69
+
70
+ #: admin.php:701
71
+ msgid "Browsing zip file"
72
+ msgstr ""
73
+
74
+ #: admin.php:671
75
+ msgid "With UpdraftPlus Premium, you can directly download individual files from here."
76
+ msgstr ""
77
+
78
+ #: admin.php:619
79
+ msgid "Browse contents"
80
+ msgstr ""
81
+
82
  #: restorer.php:1629
83
  msgid "Skipped tables:"
84
+ msgstr "Přeskočené tabulky:"
85
 
86
+ #: class-updraftplus.php:4173
87
  msgid "This database backup has the following WordPress tables excluded: %s"
88
+ msgstr "Tato záloha databáze nezahrnuje následující tabulky WordPressu: %s"
89
 
90
+ #: admin.php:2319
91
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
92
+ msgstr "Pomoci UpdraftPlus Premium můžete zálohovat ne-WordPressové tabulky, vybrat zálohování jen některých tabulek, a také zálohování dalších databází."
93
 
94
+ #: admin.php:2319
95
  msgid "All WordPress tables will be backed up."
96
+ msgstr "Veškeré tabulky WordPressu budou zálohovány."
97
 
98
+ #: admin.php:700
99
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
100
+ msgstr "Další informace naleznete v JavaScriptové konzoli vašeho prohlížeče a v PHP error logu."
101
 
102
+ #: admin.php:700
103
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
104
+ msgstr "Jestli se pokoušíte nahrát soubor zip dříve vytvořený pluginem UpdraftPlus."
105
 
106
+ #: admin.php:700
107
  msgid "The available memory on the server."
108
+ msgstr "Dostupnou paměť na serveru."
109
 
110
+ #: admin.php:700
111
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
112
+ msgstr "Jakékoliv nastavení v souboru .htaccess nebo ve web.config, které ovlivňuje maximální velikost nahrávání nebo velikost post."
113
 
114
+ #: admin.php:700
115
  msgid "The file failed to upload. Please check the following:"
116
+ msgstr "Nahrávání souboru se nezdařilo. Zkontrolujte následující:"
117
 
118
+ #: admin.php:699
119
  msgid "HTTP code:"
120
+ msgstr "HTTP kód:"
121
 
122
+ #: admin.php:596
123
  msgid "You have chosen to backup a database, but no tables have been selected"
124
+ msgstr "Vybrali jste zálohování databáze, ale neoznačili jste žádné tabulky"
125
 
126
+ #: addons/moredatabase.php:575
127
  msgid "tables"
128
+ msgstr "tabulky"
129
 
130
+ #: addons/moredatabase.php:574
131
  msgid "WordPress database"
132
+ msgstr "Databáze WordPressu"
133
 
134
+ #: addons/moredatabase.php:567
135
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
136
+ msgstr "Pokud nejste specialista na databáze WordPressu, pak byste měli zálohovat veškeré tabulky."
137
 
138
  #: templates/wp-admin/settings/tab-addons.php:300
139
  msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
282
  msgid "UpdraftPlus"
283
  msgstr "UpdraftPlus"
284
 
285
+ #: templates/wp-admin/settings/form-contents.php:274
286
  msgid "Recommended: optimize your database with WP-Optimize."
287
  msgstr "Doporučení: optimalizujte databázi pomocí pluginu WP-Optimize."
288
 
305
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
306
  msgstr "Po záloze databáze vám doporučujeme nainstalovat náš plugin WP-Optimize, pro vylepšení vlastností tohoto webu."
307
 
308
+ #: addons/morefiles.php:306
 
 
 
 
309
  msgid "Please choose a file or directory"
310
  msgstr "Vyberte soubor nebo adresář"
311
 
312
+ #: addons/morefiles.php:295
313
  msgid "Confirm"
314
  msgstr "Potvrdit"
315
 
316
+ #: addons/morefiles.php:298
317
  msgid "Go up a directory"
318
  msgstr "Jít o úroveň výš"
319
 
320
+ #: addons/morefiles.php:291
321
  msgid "Add directory..."
322
  msgstr "Přidat adresář..."
323
 
324
+ #: addons/morefiles.php:284 addons/morefiles.php:304
325
  msgid "Edit"
326
  msgstr "Upravit"
327
 
328
+ #: addons/morefiles.php:267
329
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
330
  msgstr "Je-li ji aktivní, níze vyberte cestu ze stromu adresáře a stiskněte „Potvrdit“."
331
 
605
  msgid "Backup of: %s"
606
  msgstr "Záloha: %s"
607
 
608
+ #: methods/googledrive.php:196
609
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
610
  msgstr "Klient byl smazán z konzole Google Drive API. Vytvořte prosím nový projekt Google Drive a připojte se znovu s UpdraftPlus."
611
 
612
+ #: methods/dropbox.php:556
613
  msgid "%s de-authentication"
614
  msgstr "%s de-autentizace"
615
 
616
+ #: methods/dropbox.php:524
617
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
618
  msgstr "Ve vaši konzoli Dropboxu (v záložce „API Settings“) musíte při požádání vložit následující jako autorizované URI přesměrování"
619
 
620
+ #: methods/dropbox.php:498
621
  msgid "Follow this link to deauthenticate with %s."
622
  msgstr "Klikněte na tento odkaz pro zrušení autentizace pomocí %s."
623
 
625
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
626
  msgstr "UpdraftCentral vám umožní správu webu používajícího WordPress (společně se správou záloh a aktualizací) z centrální nástěnky."
627
 
628
+ #: backup.php:1507
629
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
630
  msgstr "Pokud ne, pak budete muset buď vymazat data z této tabulky nebo budete muset kontaktovat poskytovatele webhostingu a požádat o větší zdroje."
631
 
633
  msgid "You have selected a remote storage option which has an authorization step to complete:"
634
  msgstr "Vybrali jste si možnost vzdáleného úložiště, která vyžaduje následující autorizační kroky:"
635
 
636
+ #: admin.php:1440
637
  msgid "Remote files deleted:"
638
  msgstr "Vzdálené soubory byly smazány:"
639
 
640
+ #: admin.php:1439
641
  msgid "Local files deleted:"
642
  msgstr "Místní vymazané soubory:"
643
 
644
+ #: admin.php:921 admin.php:925 admin.php:933 admin.php:937
645
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
646
  msgstr "Klikněte na tento odkaz pro potvrzení přístupu k vašemu %s účtu (bez tohoto nebudete moci zálohovat na %s)."
647
 
648
+ #: admin.php:698
649
  msgid "remote files deleted"
650
  msgstr "vzdálené soubory byly smazány"
651
 
652
+ #: admin.php:696
653
  msgid "Complete"
654
  msgstr "Dokončit"
655
 
656
+ #: admin.php:695
657
  msgid "Do you want to carry out the import?"
658
  msgstr "Chcete provést import?"
659
 
660
+ #: admin.php:694
661
  msgid "Which was exported on:"
662
  msgstr "Který byl exportován:"
663
 
664
+ #: admin.php:693
665
  msgid "This will import data from:"
666
  msgstr "Toto provede import dat z:"
667
 
668
+ #: admin.php:692
669
  msgid "Importing..."
670
  msgstr "Probíhá import..."
671
 
672
+ #: admin.php:689
673
  msgid "You have not yet selected a file to import."
674
  msgstr "Zatím jste nevybrali soubor pro import."
675
 
676
+ #: admin.php:673
677
  msgid "Your export file will be of your displayed settings, not your saved ones."
678
  msgstr "Soubor exportu bude obsahovat zobrazené nastavení, nikoliv uložené."
679
 
718
  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"
719
  msgstr "Toto mnohem častěji způsobuje vypršení časového limitu. Důrazně vám doporučujeme vypnout safe_mode, nebo obnovit vždy jen jednu entitu"
720
 
721
+ #: admin.php:2144
722
  msgid "To fix this problem go here."
723
  msgstr "Pro odstranění tohoto problému přejděte zde."
724
 
725
+ #: admin.php:2144
726
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
727
  msgstr "OptimizePress 2.0 kóduje svůj obsah, proto hledat/nahradit nefunguje."
728
 
729
+ #: admin.php:657
730
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
731
  msgstr "vaši PHP instalaci chybí modul openssl, akce se může protáhnout o několik minut; pokud se pak nic nestane, pak byste měli zkusit kratší klíč, nebo byste mohli požádat správce vašeho webhostingu o povolení tohoto modulu."
732
 
758
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
759
  msgstr "Nebyla přijata žádná data odpovědi. Tento problém většinou signalizuje problém s připojením k síti (např. odchozí firewall nebo přetížená síť) mezi webem a UpdraftPlus.com."
760
 
761
+ #: methods/s3.php:1014
762
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
763
  msgstr "Přístupový klíč k AWS je chybný (platný přístupový klíč %s začíná na „AK“)"
764
 
765
+ #: methods/s3.php:91
766
  msgid "No settings were found - please go to the Settings tab and check your settings"
767
  msgstr "Nebylo nalezeno žádné nastavení - přejděte prosím do záložky „Nastavení“ a zkontrolujte příslušnou konfiguraci"
768
 
830
  msgid "Public key was sent to:"
831
  msgstr "Veřejný klíč byl odeslán:"
832
 
833
+ #: backup.php:2079
834
  msgid "Failed to open directory (check the file permissions and ownership): %s"
835
  msgstr "Nelze otevřít složku (zkontrolujte oprávnění souboru a vlastnictví): %s"
836
 
837
+ #: backup.php:2057
838
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
839
  msgstr "%s: nečitelný soubor - nemohl být zálohován (zkontrolujte oprávnění k souborům a vlastnictví)"
840
 
880
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
881
  msgstr "Vytvořte klíč: dejte tomuto klíči jedinečný název (např. web který jej použije), pak klikněte na „Vytvořit klíč“:"
882
 
883
+ #: methods/googledrive.php:407
884
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
885
  msgstr "Nahrávání očekávalo neúspěch: limit %s velikosti jediného souboru je %s, ale tento soubor má %s GB (%d bajtů)"
886
 
887
+ #: methods/ftp.php:390
888
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
889
  msgstr "Někdy je tohle způsobeno firewallem - v pokročilém nastavení zkuste vypnout SSL, pak spusťte znovu test."
890
 
891
+ #: methods/ftp.php:362
892
  msgid "login"
893
  msgstr "přihlašovací jméno"
894
 
895
+ #: methods/email.php:79
896
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
897
  msgstr "Uvědomte si, že poštovní servery mají tendenci mít omezení velikosti; typicky kolem %s MB; zálohy překračující omezení pravděpodobně nedorazí."
898
 
899
+ #: methods/email.php:30
900
  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."
901
  msgstr "Tento archiv zálohy má %s MB - nejspíše se jej nepodaří odeslat (jen pár poštovních serverů umožňuje takhle velké přílohy). Pokud se vám to nepovede, přejděte na jiné zálohovací úložiště."
902
 
903
+ #: class-updraftplus.php:1557
904
  msgid "Size: %s MB"
905
  msgstr "Velikost: %s MB"
906
 
912
  msgid "i.e. you have an account there"
913
  msgstr "tj. máte zde účet"
914
 
915
+ #: templates/wp-admin/settings/form-contents.php:359
916
  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)."
917
  msgstr "UpdraftPlus rozdělí archivy záloh při překročení této velikosti. Výchozí hodnota je %s MB. Dejte si pozor, abyste si ponechali určitý prostor, pokud váš webový server má pevný limit velikosti (např. 2 GB / 2048 MB limit u některých 32 bitových serverů / souborových systémů)."
918
 
920
  msgid "Now"
921
  msgstr "Nyní"
922
 
923
+ #: class-updraftplus.php:4037 restorer.php:996
924
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
925
  msgstr "Měli byste povolit %s pro vytváření hezkých trvalých odkazů (např. %s)"
926
 
928
  msgid "(tap on an icon to select or unselect)"
929
  msgstr "(klikněte na ikonu pro výběr nebo pro jeho zrušení)"
930
 
931
+ #: methods/updraftvault.php:289 methods/updraftvault.php:295
932
+ #: methods/updraftvault.php:301
933
  msgid "%s per year"
934
  msgstr "%s za rok"
935
 
936
+ #: methods/updraftvault.php:288 methods/updraftvault.php:294
937
+ #: methods/updraftvault.php:300
938
  msgid "or (annual discount)"
939
  msgstr "nebo (ročně zlevněné)"
940
 
941
+ #: methods/updraftvault.php:233
942
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
943
  msgstr "Pro tento web nebylo nalezeno žádné spojení s Vaultem (nepřesunul se?); prosím odpojte jej a znovu připojte."
944
 
945
+ #: class-updraftplus.php:418 class-updraftplus.php:463
946
  msgid "The given file was not found, or could not be read."
947
  msgstr "Soubor nebyl nalezen nebo jej nejde číst."
948
 
1042
  msgid "UpdraftCentral Connection"
1043
  msgstr "UpdraftCentral spojení"
1044
 
1045
+ #: backup.php:849 class-updraftplus.php:2813
1046
  msgid "The backup was aborted by the user"
1047
  msgstr "Záloha byla ukončena uživatelem"
1048
 
1049
+ #: admin.php:4003
1050
  msgid "Your settings have been saved."
1051
  msgstr "Nastavení bylo uloženo."
1052
 
1053
+ #: admin.php:3196
1054
  msgid "Total backup size:"
1055
  msgstr "Celková velikost zálohy:"
1056
 
1057
+ #: admin.php:2641
1058
  msgid "stop"
1059
  msgstr "zastavit"
1060
 
1061
+ #: admin.php:2479
1062
  msgid "The backup has finished running"
1063
  msgstr "Záloha byla dokončena"
1064
 
1084
  msgid "calculate"
1085
  msgstr "vypočítat"
1086
 
1087
+ #: admin.php:672
1088
  msgid "You should save your changes to ensure that they are used for making your backup."
1089
  msgstr "Měli byste uložit změny, aby bylo zajištěno, že budou použity pro vytvoření vaší zálohy."
1090
 
1091
+ #: admin.php:665
1092
  msgid "We requested to delete the file, but could not understand the server's response"
1093
  msgstr "Požadovali jsme smazání souboru, ale nepochopili jsme odpověď serveru."
1094
 
1095
+ #: admin.php:664
1096
  msgid "Please enter a valid URL"
1097
  msgstr "Zadejte prosím platnou URL"
1098
 
1099
+ #: admin.php:647
1100
  msgid "Saving..."
1101
  msgstr "Ukládání..."
1102
 
1103
+ #: admin.php:610
1104
  msgid "Error: the server sent us a response which we did not understand."
1105
  msgstr "Chyba: server nám zaslal odpověď, které nerozumíme."
1106
 
1107
+ #: admin.php:602
1108
  msgid "Fetching..."
1109
  msgstr "načítání..."
1110
 
1112
  msgid "Asia Pacific (Seoul)"
1113
  msgstr "Asie a Tichomoří (Soul)"
1114
 
 
 
 
 
1115
  #: restorer.php:1618
1116
  msgid "Uploads URL:"
1117
  msgstr "URL pro nahrané soubory:"
1118
 
1119
+ #: backup.php:400
1120
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
1121
  msgstr "Neočekávaná chyba: nebyla nalezena třída '%s' (pravděpodobně byla poškozen vaše instalace pluginu UpdraftPlus - zkuste jej přeinstalovat)"
1122
 
1128
  msgid "Skipping table %s: this table will not be restored"
1129
  msgstr "Přeskakování tabulky %s: tato tabulka nebude obnovena"
1130
 
1131
+ #: class-updraftplus.php:4088 restorer.php:1642
1132
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1133
  msgstr "Import běžného webu používající WordPress na multisite instalaci vyžaduje %s."
1134
 
1135
+ #: class-updraftplus.php:4084
1136
  msgid "Please read this link for important information on this process."
1137
  msgstr "Přečtěte si prosím tento odkaz ohledně důležitých informací o tomto procesu."
1138
 
1139
+ #: class-updraftplus.php:4084
1140
  msgid "It will be imported as a new site."
1141
  msgstr "Bude importován jako nový web."
1142
 
1143
+ #: admin.php:2292 templates/wp-admin/notices/horizontal-notice.php:16
1144
  #: templates/wp-admin/notices/horizontal-notice.php:18
1145
  msgid "Dismiss"
1146
  msgstr "Skrýt"
1147
 
1148
+ #: admin.php:684
1149
  msgid "Please fill in the required information."
1150
  msgstr "Vyplňte veškerá vyžadované informace."
1151
 
1152
+ #: addons/multisite.php:550
1153
  msgid "Read more..."
1154
  msgstr "Více informací..."
1155
 
1156
+ #: addons/multisite.php:550
1157
  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."
1158
  msgstr "Pozn. tato možnost ovlivňuje pouze obnovu databáze a uploads - další entity (jako pluginy) jsou ve WordPressu sdíleny napříč celou sítí webů."
1159
 
1160
+ #: addons/multisite.php:541
1161
  msgid "may include some site-wide data"
1162
  msgstr "může obsahovat některá data z celého webu"
1163
 
1164
+ #: addons/multisite.php:536
1165
  msgid "All sites"
1166
  msgstr "Veškeré weby"
1167
 
1168
+ #: addons/multisite.php:532
1169
  msgid "Which site to restore"
1170
  msgstr "Který web obnovit"
1171
 
1172
+ #: addons/multisite.php:368 addons/multisite.php:378
1173
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
1174
  msgstr "Probíhá obnova pouze webu s id=%s: ostatní data (pokud nějaká jsou) z rozbalené databáze se mažou"
1175
 
1217
  msgid "Call WordPress action:"
1218
  msgstr "Volat akci WordPressu:"
1219
 
1220
+ #: admin.php:2327
1221
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1222
  msgstr "Vaše nastavení také ovlivní co se bude zálohovat - např. vyřazené soubory."
1223
 
1224
+ #: admin.php:3604
1225
  msgid "Skipping: this archive was already restored."
1226
  msgstr "Přeskakuje se: tento archiv již byl obnoven."
1227
 
1228
+ #: templates/wp-admin/settings/form-contents.php:200
1229
  msgid "File Options"
1230
  msgstr "Možnosti souboru"
1231
 
1253
  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)."
1254
  msgstr "Toto tlačítko smaže veškeré UpdraftPlus nastavení a zprávy o průběhu právě běžících záloh (ale ne žádné existující zálohy na vašem cloudu)."
1255
 
1256
+ #: admin.php:3885
1257
  msgid "Send this backup to remote storage"
1258
  msgstr "Odeslat tuto zálohu na vzdálené úložiště"
1259
 
1260
+ #: admin.php:3883
1261
  msgid "Check out UpdraftPlus Vault."
1262
  msgstr "Vyzkoušejte UpdraftPlus Vault."
1263
 
1264
+ #: admin.php:3883
1265
  msgid "Not got any remote storage?"
1266
  msgstr "Nemáte žádné vzdálené úložiště?"
1267
 
1268
+ #: admin.php:3883
1269
  msgid "settings"
1270
  msgstr "nastavení"
1271
 
1272
+ #: admin.php:3883
1273
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1274
  msgstr "Záloha nebude poslána na žádné vzdálené úložiště - žádné nebylo uloženo v %s"
1275
 
1276
+ #: admin.php:2325
1277
  msgid "Include any files in the backup"
1278
  msgstr "Zahrnout do zálohy některé soubory"
1279
 
1280
+ #: admin.php:2311
1281
  msgid "Include the database in the backup"
1282
  msgstr "Zahrnout do zálohy databázi"
1283
 
1284
+ #: admin.php:2291
1285
  msgid "Continue restoration"
1286
  msgstr "Pokračovat v obnově"
1287
 
1288
+ #: admin.php:2286
1289
  msgid "You have an unfinished restoration operation, begun %s ago."
1290
  msgstr "Máte nedokončenou obnovu, která začala před %s."
1291
 
1292
+ #: admin.php:2285
1293
  msgid "Unfinished restoration"
1294
  msgstr "Nedokončená obnova"
1295
 
1296
+ #: admin.php:2283
1297
  msgid "%s minutes, %s seconds"
1298
  msgstr "%s minut, %s sekund"
1299
 
1300
+ #: admin.php:2230
1301
  msgid "Backup Contents And Schedule"
1302
  msgstr "Obsah zálohy a plány"
1303
 
1305
  msgid "Premium / Extensions"
1306
  msgstr "Premium / Rozšíření"
1307
 
1308
+ #: admin.php:2010 admin.php:2019
1309
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1310
  msgstr "O právě běžící obnově nebyly nalezeny dostatečné informace."
1311
 
1312
+ #: addons/morefiles.php:53 admin.php:670
1313
  msgctxt "(verb)"
1314
  msgid "Download"
1315
  msgstr "Stáhnout"
1316
 
1317
+ #: admin.php:595
1318
  msgid "You have chosen to backup files, but no file entities have been selected"
1319
  msgstr "Vybrali jste zálohování souborů, ale nevybrali jste žádné souborové entity"
1320
 
1321
+ #: admin.php:504
1322
  msgid "Extensions"
1323
  msgstr "Rozšíření"
1324
 
1325
+ #: admin.php:496 templates/wp-admin/settings/tab-bar.php:8
1326
  msgid "Advanced Tools"
1327
  msgstr "Pokročilé nástroje"
1328
 
1403
  msgid "Standard"
1404
  msgstr "Standard"
1405
 
1406
+ #: addons/azure.php:523
1407
  msgid "container"
1408
  msgstr "kontejner"
1409
 
1410
+ #: addons/azure.php:523
1411
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1412
  msgstr "Zde můžete použít adresu k jakékoliv %s virtuální složce, kterou chcete použít."
1413
 
1414
+ #: addons/azure.php:522
1415
  msgid "optional"
1416
  msgstr "volitelné"
1417
 
1418
+ #: addons/azure.php:522
1419
  msgid "Prefix"
1420
  msgstr "Prefix"
1421
 
1422
+ #: addons/azure.php:517
1423
  msgid "See Microsoft's guidelines on container naming by following this link."
1424
  msgstr "Na této adrese se podívejte na návod pojmenovávání kontejnerů od Microsoftu."
1425
 
1426
+ #: addons/azure.php:517
1427
  msgid "If the %s does not already exist, then it will be created."
1428
  msgstr "Pokud %s ještě neexistuje, bude vytvořen."
1429
 
1430
+ #: addons/azure.php:517
1431
  msgid "Enter the path of the %s you wish to use here."
1432
  msgstr "Zadejte cestu %s, kterou si zde přejete použít."
1433
 
1434
+ #: addons/azure.php:506
1435
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1436
  msgstr "Toto není vaše Azure přihlašovací jméno - pokud potřebujete poradit, podívejte se do návodu."
1437
 
1438
+ #: addons/azure.php:505
1439
  msgid "Account Name"
1440
  msgstr "Jméno účtu"
1441
 
1442
+ #: addons/azure.php:505 addons/azure.php:509
1443
  msgid "Azure"
1444
  msgstr "Azure"
1445
 
1446
+ #: addons/azure.php:501
1447
  msgid "Create Azure credentials in your Azure developer console."
1448
  msgstr "Ve vývojářské konzoli Azure si vytvořte Azure přístupové údaje."
1449
 
1450
+ #: addons/azure.php:449
1451
  msgid "Could not create the container"
1452
  msgstr "Nelze vytvořit kontejner"
1453
 
1454
+ #: addons/azure.php:343
1455
  msgid "Could not access container"
1456
  msgstr "Nelze získat přístup ke kontejneru"
1457
 
1458
+ #: class-updraftplus.php:2830
1459
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1460
  msgstr "Pro dokončení migrace/klonu, se teď přihlaste ke vzdálenému web a obnovte zálohu."
1461
 
1462
+ #: backup.php:1559
1463
  msgid "the options table was not found"
1464
  msgstr "tabulka možností nebyla nalezena"
1465
 
1466
+ #: backup.php:1557
1467
  msgid "no options or sitemeta table was found"
1468
  msgstr "žádné možnosti, ani sitemeta tabulka, nebyly nalezeny"
1469
 
1470
+ #: backup.php:1557 backup.php:1559
1471
  msgid "The database backup appears to have failed"
1472
  msgstr "Zdá se, že se záloha databáze nepovedla"
1473
 
1474
+ #: backup.php:1431
1475
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1476
  msgstr "Do složky pro zápis se nedá zapisovat (nebo je plná) - záloha databáze se zřejmě nepovede."
1477
 
1588
  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)."
1589
  msgstr "Pro zobrazení metod vzdálených úložišť pro jakoukoliv existující zálohu (z jakéhokoliv webu, pokud jsou ve stejné složce) klikněte sem."
1590
 
1591
+ #: admin.php:1438
1592
  msgid "Backup sets removed:"
1593
  msgstr "Odstraněny sady záloh:"
1594
 
1595
+ #: admin.php:683
1596
  msgid "Processing..."
1597
  msgstr "Zpracovává se..."
1598
 
1599
+ #: admin.php:681
1600
  msgid "For backups older than"
1601
  msgstr "Pro zálohy starší než"
1602
 
1603
+ #: admin.php:680
1604
  msgid "week(s)"
1605
  msgstr "týdnů"
1606
 
1607
+ #: admin.php:679
1608
  msgid "hour(s)"
1609
  msgstr "hodiny"
1610
 
1611
+ #: admin.php:678
1612
  msgid "day(s)"
1613
  msgstr "dny"
1614
 
1615
+ #: admin.php:677
1616
  msgid "in the month"
1617
  msgstr "v měsíci"
1618
 
1619
+ #: admin.php:676
1620
  msgid "day"
1621
  msgstr "den"
1622
 
1636
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1637
  msgstr "Tento problém je způsoben pokusem o obnovu databáze s velmi starou verzí MySQL, která je nekompatibilní se zdrojovou databází."
1638
 
1639
+ #: methods/updraftvault.php:595
1640
  msgid "You do not currently have any UpdraftPlus Vault quota"
1641
  msgstr "V současnosti nemáte žádnou kvótu pro UpdraftPlus Vault"
1642
 
1643
+ #: class-updraftplus.php:4123
1644
  msgid "You must upgrade MySQL to be able to use this database."
1645
  msgstr "K použití této zálohy databáze musíte aktualizovat svou verzi MySQL."
1646
 
1647
+ #: class-updraftplus.php:4123
1648
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1649
  msgstr "Záloha databáze používá funkce MySQL, které nejsou dostupné ve staré verzi MySQL (%s), kterou používá tento web."
1650
 
1651
+ #: admin.php:2129
1652
  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."
1653
  msgstr "Složka UpdraftPlus v umístění wp-content/plugins obsahuje netisknutelný znak; WordPress má s takovými názvy občas problém. Pro jistotu byste měli přejmenovat složku na wp-content/plugins/updraftplus."
1654
 
1655
+ #: methods/updraftvault.php:322
1656
  msgid "Don't know your email address, or forgotten your password?"
1657
  msgstr "Nevíte svůj email, nebo jste zapomněli heslo?"
1658
 
1659
+ #: methods/updraftvault.php:315
1660
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1661
  msgstr "Pro připojení zde zadejte svůj UpdraftPlus.com email / heslo:"
1662
 
1663
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1664
  msgid "Read the FAQs here."
1665
  msgstr "Zde si můžete přečíst nejčastější dotazy."
1666
 
1672
  msgid "Server-side encryption"
1673
  msgstr "Šifrování na straně serveru"
1674
 
1675
+ #: methods/updraftvault.php:604
1676
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1677
  msgstr "Pokud jste zapomněli heslo, pak pro změnu hesla na updraftplus.com klikněte zde."
1678
 
1679
+ #: admin.php:929
1680
  msgid "Go to the remote storage settings in order to connect."
1681
  msgstr "Pro připojení jděte do nastavení vzdáleného úložiště."
1682
 
1683
+ #: admin.php:929
1684
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1685
  msgstr "Pro vzdálené úložiště byl vybrán %s, ale v současnosti nejste připojeni."
1686
 
1687
+ #: methods/updraftvault.php:304
1688
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1689
  msgstr "Platba může být provedena v amerických dolarech, eurech, nebo britských librách pomocí karty, nebo přes PayPal."
1690
 
1691
+ #: admin.php:653
1692
  msgid "Update quota count"
1693
  msgstr "Aktualizovat kvótu."
1694
 
1695
+ #: admin.php:652
1696
  msgid "Counting..."
1697
  msgstr "Počítání..."
1698
 
1699
+ #: admin.php:651
1700
  msgid "Disconnecting..."
1701
  msgstr "Odpojování..."
1702
 
1703
+ #: admin.php:649
1704
  msgid "Connecting..."
1705
  msgstr "Připojování..."
1706
 
1707
+ #: methods/updraftvault.php:378 methods/updraftvault.php:447
1708
  msgid "Refresh current status"
1709
  msgstr "Obnovit současný stav"
1710
 
1711
+ #: methods/updraftvault.php:376 methods/updraftvault.php:392
1712
+ #: methods/updraftvault.php:394 methods/updraftvault.php:447
1713
  msgid "Get more quota"
1714
  msgstr "Získat větší kvótu"
1715
 
1716
+ #: methods/updraftvault.php:373 methods/updraftvault.php:389
1717
+ #: methods/updraftvault.php:428
1718
  msgid "Current use:"
1719
  msgstr "Současné využití:"
1720
 
1721
+ #: methods/updraftvault.php:368
1722
  msgid "You can get more quota here"
1723
  msgstr "Větší kvótu můžete získat zde"
1724
 
1725
+ #: methods/updraftvault.php:368
1726
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1727
  msgstr "Chyba %s: nemáte k dispozici dostatečnou kvótu (%s) k nahrání tohoto archivu (%s)."
1728
 
1729
+ #: admin.php:650 methods/updraftvault.php:360
1730
  msgid "Disconnect"
1731
  msgstr "Odpojit"
1732
 
1733
+ #: methods/updraftvault.php:352
1734
  msgid "Quota:"
1735
  msgstr "Kvóta:"
1736
 
1737
+ #: methods/updraftvault.php:350
1738
  msgid "Vault owner"
1739
  msgstr "Majitel Vaultu"
1740
 
1741
+ #: methods/updraftvault.php:350
1742
  msgid "Well done - there's nothing more needed to set up."
1743
  msgstr "Gratulujeme - nic dalšího není třeba nastavit."
1744
 
1745
+ #: methods/updraftvault.php:350
1746
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1747
  msgstr "Tento web je <strong>připojen</strong> k UpdraftPlus Vault."
1748
 
1749
+ #: methods/updraftvault.php:346
1750
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1751
  msgstr "<strong>Nejste</strong> připojeni k UpdraftPlus Vault."
1752
 
1753
+ #: methods/updraftvault.php:322
1754
  msgid "Go here for help"
1755
  msgstr "Pro nápovědu klikněte zde"
1756
 
1757
+ #: methods/updraftvault.php:317
1758
  msgid "E-mail"
1759
  msgstr "Email"
1760
 
1761
+ #: methods/updraftvault.php:310 methods/updraftvault.php:325
1762
  msgid "Back..."
1763
  msgstr "Zpět..."
1764
 
1765
+ #: methods/updraftvault.php:304
1766
  msgid "Subscriptions can be cancelled at any time."
1767
  msgstr "Předplatné může být kdykoliv zrušeno."
1768
 
1769
+ #: methods/updraftvault.php:287 methods/updraftvault.php:293
1770
+ #: methods/updraftvault.php:299
1771
  msgid "%s per quarter"
1772
  msgstr "%s za čtvrtletí"
1773
 
1774
+ #: central/bootstrap.php:542 methods/updraftvault.php:277
1775
+ #: methods/updraftvault.php:307
1776
  msgid "Read more about it here."
1777
  msgstr "Více informací najdete zde."
1778
 
1779
+ #: methods/updraftvault.php:277 methods/updraftvault.php:307
1780
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
1781
  msgstr "UpdraftPlus Vault pracuje na světově nejlepších datacentrech od Amazonu se zálohovanými úložišti tak, aby bylo dosaženo spolehlivosti 99.999999999%."
1782
 
1783
+ #: methods/updraftvault.php:273
1784
  msgid "Already purchased space?"
1785
  msgstr "Máte již zakoupené místo?"
1786
 
1787
+ #: methods/updraftvault.php:270
1788
  msgid "Show the options"
1789
  msgstr "Zobrazit možnosti"
1790
 
1791
+ #: methods/updraftvault.php:269
1792
  msgid "First time user?"
1793
  msgstr "Jste tu poprvé?"
1794
 
1795
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1796
  msgid "Press a button to get started."
1797
  msgstr "Začněte kliknutím na jedno z tlačítek."
1798
 
1799
+ #: methods/updraftvault.php:266 methods/updraftvault.php:283
1800
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
1801
  msgstr "UpdraftPlus Vault představuje úložiště, které je <strong>spolehlivé, snadno použitelné, a je za skvělou cenu</strong>."
1802
 
1803
+ #: methods/updraftvault.php:229
1804
  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."
1805
  msgstr "Vaše předplatné pro UpdraftPlus Vault vypršelo. Během několika dní budou vaše data trvale odstraněna. Pokud nechcete, aby se to stalo, měli byste si předplatné obnovit co nejdříve."
1806
 
1807
+ #: methods/updraftvault.php:226
1808
  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!"
1809
  msgstr "Vaše platba za předplatné UpdraftPlus Vault má zpoždění. Nacházíte se v několikadenním období, po kterém bude Váš přístup ke službě zrušen a ztratíte veškerá uložená data v ní. Obnovte si prosím předplatné co nejdříve!"
1810
 
1811
+ #: methods/updraftvault.php:223
1812
  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."
1813
  msgstr "Vaše licence UpdraftPlus Premium je již více, než rok stará. Měli byste si ji okamžitě obnovit, jinak ztratíte 12 měsíců úložiště zdarma, které jste získali díky tomu, že jste se stali uživateli UpdraftPlus Premium."
1814
 
1815
+ #: methods/updraftvault.php:77
1816
  msgid "Updraft Vault"
1817
  msgstr "Updraft Vault"
1818
 
1819
+ #: addons/azure.php:365 addons/googlecloud.php:693 methods/s3.php:1042
1820
  msgid "Delete failed:"
1821
  msgstr "Mazání selhalo:"
1822
 
1823
+ #: backup.php:3019
1824
  msgid "The zip engine returned the message: %s."
1825
  msgstr "Zip engine vrátilo zprávu: %s."
1826
 
1844
  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."
1845
  msgstr "Pokud nefunguje přímé posílání z webu na web, k dispozici jsou další tři způsoby - zkuste prosím místo toho některý z nich."
1846
 
1847
+ #: addons/migrator.php:1742 admin.php:659
1848
  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."
1849
  msgstr "Měli byste zkontrolovat jestli, je vzdálený web online, není za firewallem, nemá bezpečnostní moduly, které by mohly bránit přístupu, má aktivní UpdraftPlus v. %s, nebo novější, a jestli byly správně vloženy klíče."
1850
 
1912
  msgid "Backup made by %s"
1913
  msgstr "Záloha vytvořena uživatelem %s"
1914
 
1915
+ #: methods/addon-base-v2.php:187
1916
  msgid "This storage method does not allow downloading"
1917
  msgstr "Tato zálohovací metoda nedovoluje stahování"
1918
 
1919
+ #: admin.php:3364
1920
  msgid "(backup set imported from remote location)"
1921
  msgstr "(záloha importována ze vzdáleného umístění)"
1922
 
1936
  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."
1937
  msgstr "U této zálohy se UpdraftPlus domnívá, že nebyla vytvořena současnou WordPress instalací, ale že byla buď nalezena na vzdáleném úložišti, nebo byla poslána ze vzdáleného webu."
1938
 
1939
+ #: addons/migrator.php:1770 admin.php:666
1940
  msgid "Testing connection..."
1941
  msgstr "Testování spojení..."
1942
 
1943
+ #: admin.php:663
1944
  msgid "Deleting..."
1945
  msgstr "Mazání..."
1946
 
1947
+ #: admin.php:662
1948
  msgid "key name"
1949
  msgstr "jméno klíče"
1950
 
1951
+ #: admin.php:660
1952
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1953
  msgstr "dejte tomuto klíči prosím jméno (např. indikující pro jaký je web):"
1954
 
1955
+ #: admin.php:657
1956
  msgid "Creating..."
1957
  msgstr "Vytváření..."
1958
 
1976
  msgid "Or, send a backup to another site"
1977
  msgstr "Nebo pošlete zálohu na jiný web"
1978
 
1979
+ #: addons/migrator.php:1937 admin.php:667
1980
  msgid "Send"
1981
  msgstr "Poslat"
1982
 
1983
+ #: addons/migrator.php:1931 admin.php:658
1984
  msgid "Send to site:"
1985
  msgstr "Poslat na stránku:"
1986
 
2012
  msgid "key"
2013
  msgstr "klíč"
2014
 
2015
+ #: methods/ftp.php:336
2016
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2017
  msgstr "Téměř všechny FTP servery vyžadují pasivní mód, ale pokud potřebujete aktivní mód, pak tuto možnost zrušte."
2018
 
2019
+ #: methods/ftp.php:334
2020
  msgid "Passive mode"
2021
  msgstr "Pasivní mód"
2022
 
2023
+ #: methods/ftp.php:329
2024
  msgid "Remote path"
2025
  msgstr "Vzdálená cesta"
2026
 
2027
+ #: methods/ftp.php:324
2028
  msgid "FTP password"
2029
  msgstr "FTP heslo"
2030
 
2031
+ #: methods/ftp.php:319
2032
  msgid "FTP login"
2033
  msgstr "FTP přihlašovací jméno"
2034
 
2035
+ #: methods/ftp.php:314
2036
  msgid "FTP server"
2037
  msgstr "FTP server"
2038
 
2044
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2045
  msgstr "„Migrace“ je totéž jako obnova, ale používá se při ní záloha vytvořená na jiném webu."
2046
 
2047
+ #: addons/migrator.php:2180 admin.php:655
2048
  msgid "Add site"
2049
  msgstr "Přidat web"
2050
 
2051
+ #: admin.php:654
2052
  msgid "Adding..."
2053
  msgstr "Přidává se..."
2054
 
2055
+ #: udaddons/options.php:345
2056
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2057
  msgstr "Nárok nebyl udělen - možná jste tuto objednávku již použili někde jinde, nebo vaše předplatné pro stahování z updraftplus.com vypršelo?"
2058
 
2080
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2081
  msgstr "K importování zálohy přejděte na záložku „Existující zálohy“"
2082
 
2083
+ #: admin.php:646 admin.php:672 admin.php:673
2084
  msgid "You have made changes to your settings, and not saved."
2085
  msgstr "Provedli jste změny v nastavení, ale neuložili jste je."
2086
 
2092
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2093
  msgstr "Pokud vám OneDrive později ukáže zprávu „unauthorized_client“, pak jste sem nevložili platné klientské ID."
2094
 
2095
+ #: addons/azure.php:501 addons/migrator.php:1757 addons/onedrive.php:961
2096
  msgid "For longer help, including screenshots, follow this link."
2097
  msgstr "Pro podrobný návod, včetně snímků obrazovky, klikněte na tento odkaz."
2098
 
2116
  msgid "Please re-authorize the connection to your %s account."
2117
  msgstr "Autorizujte znovu připojení ke svému %s účtu."
2118
 
2119
+ #: methods/email.php:75
2120
  msgid "configure it here"
2121
  msgstr "konfigurujte zde"
2122
 
2123
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2124
  msgid "To remove the block, please go here."
2125
  msgstr "K odstranění bloku jděte prosím zde."
2126
 
2265
  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)"
2266
  msgstr "Pokud máte administrátorský účet AWS, můžete použít tohoto průvodce k rychlému vytvoření nového AWS (IAM) uživatele s přístupem pouze k tomuto bucketu (spíše, než k vašemu celému účtu)"
2267
 
2268
+ #: methods/s3.php:844
2269
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2270
  msgstr "Pro vytvoření nového IAM pod-uživatele a přístupového klíče, který bude mít přístup pouze k tomuto bucketu, použijte toto rozšíření."
2271
 
2281
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
2282
  msgstr "cesta nahrávání (%s) se během migrace změnila - probíhá reset (na: %s)"
2283
 
2284
+ #: addons/onedrive.php:596 addons/onedrive.php:619 methods/updraftvault.php:568
2285
  #: udaddons/updraftplus-addons.php:732 udaddons/updraftplus-addons.php:747
2286
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2287
  msgstr "S největší pravděpodobností to znamená, že sdílíte webový server s napadeným webem, který byl použit při předchozích útocích."
2288
 
2289
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2290
  #: udaddons/updraftplus-addons.php:747
2291
  msgid "It appears that your web server's IP Address (%s) is blocked."
2292
  msgstr "Vypadá to, že IP adresa vašeho webového serveru (%s) je zablokovaná."
2293
 
2294
+ #: addons/onedrive.php:619 methods/updraftvault.php:568
2295
  #: udaddons/updraftplus-addons.php:747
2296
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2297
  msgstr "UpdraftPlus.com vrátil odpověď „Přístup odepřen“."
2342
  msgid "(at same time as files backup)"
2343
  msgstr "(ve stejný čas, jako záloha souborů)"
2344
 
2345
+ #: admin.php:2888
2346
  msgid "No backup has been completed"
2347
  msgstr "Žádná záloha nebyla dokončena"
2348
 
2390
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2391
  msgstr "Před aktualizací zálohovat pomocí UpdraftPlus (když je opodstatnění) pluginy, šablony, a databázi WordPressu"
2392
 
2393
+ #: methods/s3.php:138 methods/s3.php:139 methods/s3.php:140 methods/s3.php:148
2394
+ #: methods/s3.php:149 methods/s3.php:150
2395
  msgid "%s Error: Failed to initialise"
2396
  msgstr "Chyba %s: Chyba inicializace"
2397
 
2398
+ #: templates/wp-admin/settings/form-contents.php:249
2399
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2400
  msgid "or"
2401
  msgstr "nebo"
2405
  msgid "or"
2406
  msgstr "nebo"
2407
 
2408
+ #: admin.php:640
2409
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2410
  msgstr "Nevybrali jste nic k obnovení. Vyberte alespoň jednu věc a zkuste to znovu."
2411
 
2412
+ #: addons/sftp.php:380
2413
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2414
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2415
  msgstr "Jsou akceptovány formáty klíčů PKCS1 (PEM hlavička: BEGIN RSA PRIVATE KEY), XML, a PuTTY."
2416
 
2417
+ #: addons/sftp.php:343
2418
  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."
2419
  msgstr "Pokračování částečného nahrávání je podporování u SFTP, ale ne u SCP. Pokud tedy používáte SCP, je potřeba se ujistit, že váš webový server podporuje tak dlouhý běh PHP procesu, aby se nahrál i největší soubor zálohy."
2420
 
2421
+ #: methods/openstack2.php:156
2422
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2423
  msgid "tenant"
2424
  msgstr "tenant"
2425
 
2426
+ #: methods/openstack2.php:106
2427
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2428
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2429
  msgstr "Musí být v2 (Keystone) autentifikační URI; v1 (Swauth) není podporována."
2430
 
2431
+ #: templates/wp-admin/settings/form-contents.php:320
2432
  msgid "your site's admin address"
2433
  msgstr "adresa administrátora vašeho webu"
2434
 
2435
+ #: templates/wp-admin/settings/form-contents.php:320
2436
  msgid "Check this box to have a basic report sent to"
2437
  msgstr "Pokud chcete zaslat základní hlášení, zaškrtněte toto políčko"
2438
 
2439
+ #: admin.php:2897
2440
  msgctxt "i.e. Non-automatic"
2441
  msgid "Manual"
2442
  msgstr "Ručně"
2450
  msgid "Change Lock Settings"
2451
  msgstr "Změnit nastavení uzamčení"
2452
 
2453
+ #: addons/morefiles.php:245
2454
  msgid "Any other file/directory on your server that you wish to back up"
2455
  msgstr "Jakýkoliv další soubor/složku na serveru, které si přejete zálohovat"
2456
 
2457
+ #: admin.php:2146
2458
  msgid "For even more features and personal support, check out "
2459
  msgstr "Pro ještě více schopností a osobní podporu se podívejte na "
2460
 
2470
  msgid "Database decryption phrase"
2471
  msgstr "Fráze pro dešifrování databáze"
2472
 
2473
+ #: addons/autobackup.php:131 addons/autobackup.php:966 admin.php:645
2474
  msgid "Automatic backup before update"
2475
  msgstr "Automatická záloha před aktualizací"
2476
 
2550
  msgid "The admin password has now been removed."
2551
  msgstr "Heslo administrátora bylo odstraněno."
2552
 
2553
+ #: addons/morefiles.php:134
2554
  msgid "(learn more about this significant option)"
2555
  msgstr "(dozvědět se více o této významné možnosti)"
2556
 
2557
+ #: udaddons/options.php:280
2558
  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."
2559
  msgstr "Po získání rozšíření můžete z nastavení níže odstranit své heslo (nikoliv email) bez toho, aniž byste ovlivnili přístup webu k aktualizacím."
2560
 
2561
+ #: admin.php:2479 admin.php:3387
2562
  msgid "View Log"
2563
  msgstr "Zobrazit protokol"
2564
 
2575
  msgid "and retain this many scheduled backups"
2576
  msgstr "a uchovat tolik naplánovaných záloh"
2577
 
2578
+ #: admin.php:2858
2579
  msgid "incremental backup; base backup: %s"
2580
  msgstr "kumulativní záloha; základní záloha: %s"
2581
 
2587
  msgid "Upload files into UpdraftPlus."
2588
  msgstr "Nahrajte soubory do UpdraftPlus."
2589
 
2590
+ #: admin.php:880 includes/class-commands.php:363
2591
  #: templates/wp-admin/settings/tab-status.php:22
2592
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2593
  msgstr "Tlačítko „Zálohovat nyní“ není aktivní, protože do složky se zálohami nelze zapisovat (jděte do záložky „Nastavení“ a najděte odpovídající možnost)."
2594
 
2595
+ #: class-updraftplus.php:4073
2596
  msgid "Backup label:"
2597
  msgstr "Štítek zálohy:"
2598
 
2599
+ #: admin.php:1674
2600
  msgid "Error: unexpected file read fail"
2601
  msgstr "Chyba: čtení neočekávaného souboru selhalo"
2602
 
2603
+ #: backup.php:3025
2604
  msgid "check your log for more details."
2605
  msgstr "více informací naleznete v protokolu."
2606
 
2607
+ #: backup.php:3023
2608
  msgid "your web hosting account appears to be full; please see: %s"
2609
  msgstr "váš webhosting je nejspíš plný; prosím podívejte se: %s"
2610
 
2611
+ #: backup.php:3021
2612
  msgid "A zip error occurred"
2613
  msgstr "Objevila se chyba zip"
2614
 
2616
  msgid "Your label for this backup (optional)"
2617
  msgstr "Váš štítek pro tuto zálohu (nepovinné)"
2618
 
2619
+ #: addons/googlecloud.php:822 methods/googledrive.php:902
2620
  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."
2621
  msgstr "%s nepovoluje autorizaci webů hostovaných na pevných IP adresách. Nejprve musíte změnit adresu webu (%s), abyste mohli pro ukládání použít %s."
2622
 
2623
+ #: methods/updraftvault.php:607 udaddons/updraftplus-addons.php:789
2624
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2625
  msgstr "Vložili jste emailovou adresu, která nebyla serverem UpdraftPlus.com rozpoznána."
2626
 
2627
+ #: methods/updraftvault.php:604 udaddons/updraftplus-addons.php:785
2628
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2629
  msgstr "Vaše emailová adresa byla správná, ale heslo nebylo serverem UpdraftPlus.com rozpoznáno."
2630
 
2631
+ #: methods/updraftvault.php:544 udaddons/updraftplus-addons.php:655
2632
  msgid "You need to supply both an email address and a password"
2633
  msgstr "Musíte poskytnout email i heslo"
2634
 
2636
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2637
  msgstr "Pro pokračování stiskněte „Zálohovat nyní“. Pak sledujte, zda se mění „Poslední zpráva protokolu“."
2638
 
2639
+ #: class-updraftplus.php:4092
2640
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2641
  msgstr "Pokud chcete obnovit multisite zálohu, měli byste nejdřív nastavit svůj WordPress jako multisite."
2642
 
2643
+ #: class-updraftplus.php:4092
2644
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2645
  msgstr "Vaše záloha je z instalace WordPress multisite, ale tento web nikoliv. K dispozici bude pouze první web."
2646
 
2668
  msgid "Rows per batch"
2669
  msgstr "Řádků na dávku"
2670
 
2671
+ #: udaddons/options.php:109
2672
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2673
  msgstr "Zatím nejste spojeni se svým UpdraftPlus.com účtem."
2674
 
2675
+ #: udaddons/options.php:107 udaddons/options.php:109
2676
  msgid "You need to connect to receive future updates to UpdraftPlus."
2677
  msgstr "Pro budoucí aktualizace se musíte spojit s UpdraftPlus."
2678
 
2679
+ #: class-updraftplus.php:4065
2680
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2681
  msgstr "Jakákoliv žádost o podporu týkající se %s, by měla být řešena s vaším poskytovatelem hostingu."
2682
 
2683
+ #: class-updraftplus.php:4065
2684
  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."
2685
  msgstr "Měli byste pokračovat pouze pokud neaktualizujete současný server a jste si jisti (nebo ochotni riskovat), že vaše pluginy / šablony / atd. jsou kompatibilní se starší verzí %s."
2686
 
2687
+ #: class-updraftplus.php:4065
2688
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2689
  msgstr "Což je velký rozdíl oproti verzi, na kterou chcete zálohu obnovit (verze %s)."
2690
 
2691
+ #: class-updraftplus.php:4065
2692
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2693
  msgstr "Web z této zálohy běžel na webovém serveru s verzí %s z %s. "
2694
 
2713
  msgid "UpdraftPlus is on social media - check us out!"
2714
  msgstr "UpdraftPlus je na sociálních sítích - Podívejte se na nás!"
2715
 
2716
+ #: admin.php:3448
2717
  msgid "Why am I seeing this?"
2718
  msgstr "Proč tohle vidím?"
2719
 
2725
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2726
  msgstr "Pro podívání se po nových zálohách, které jste nahráli do složky UpdraftPlus (na vašem hostingu) klikněte zde."
2727
 
2728
+ #: admin.php:1622 admin.php:1634
2729
  msgid "Start backup"
2730
  msgstr "Zahájit zálohu"
2731
 
2732
+ #: class-updraftplus.php:4037 restorer.php:996
2733
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2734
  msgstr "Používáte %s webový server, ale vypadá to, že nemáte načtený modul %s."
2735
 
2736
+ #: admin.php:2802
2737
  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."
2738
  msgstr "Pro konzultaci, jak povolit WordPress pluginu zapisovat do složky, budete potřebovat kontaktovat svého poskytovatele."
2739
 
2741
  msgid "Unless you have a problem, you can completely ignore everything here."
2742
  msgstr "Pokud nemáte žádný problém, můžete ignorovat vše co zde vidíte."
2743
 
2744
+ #: admin.php:1832
2745
  msgid "This file could not be uploaded"
2746
  msgstr "Tento soubor nemůže být nahrán"
2747
 
2748
+ #: admin.php:1797
2749
  msgid "You will find more information about this in the Settings section."
2750
  msgstr "Více informací o tom najdete v sekci „Nastavení“."
2751
 
2765
  msgid "Memory limit"
2766
  msgstr "Limit paměti"
2767
 
2768
+ #: class-updraftplus.php:4195 restorer.php:1441
2769
  msgid "restoration"
2770
  msgstr "obnovení"
2771
 
2773
  msgid "Table to be implicitly dropped: %s"
2774
  msgstr "Tabulka, která bude implicitně smazána: %s"
2775
 
2776
+ #: backup.php:844
2777
  msgid "Incremental"
2778
  msgstr "Přírustková"
2779
 
2780
+ #: backup.php:844
2781
  msgid "Full backup"
2782
  msgstr "Kompletní záloha"
2783
 
2793
  msgid "Backup succeeded"
2794
  msgstr "Zálohování bylo úspěšně dokončeno"
2795
 
2796
+ #: admin.php:2898 admin.php:2899 admin.php:2900 updraftplus.php:92
2797
  #: updraftplus.php:93
2798
  msgid "Every %s hours"
2799
  msgstr "Každých %s hodin"
2816
 
2817
  #: addons/migrator.php:274 addons/migrator.php:312
2818
  msgid "Replace with"
2819
+ msgstr "Nahradit"
2820
 
2821
  #: addons/migrator.php:273 addons/migrator.php:311
2822
  msgid "Search for"
2836
  msgid "Too many database errors have occurred - aborting"
2837
  msgstr "Vyskytlo se příliš mnoho chyb databáze - proces se přerušuje"
2838
 
2839
+ #: backup.php:910
2840
  msgid "read more at %s"
2841
  msgstr "čtete více na %s"
2842
 
2843
+ #: backup.php:910
2844
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2845
  msgstr "Emailové hlášení vytvořené pomocí UpdraftPlus (verze zdarma) vám přináší novinky z UpdraftPlus.com"
2846
 
2847
+ #: methods/googledrive.php:908
2848
  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."
2849
  msgstr "Poznámka: Pokud nainstalujete UpdraftPlus na několika webech používající WordPress, nemůžete použít jeden projekt pro všechny. Pro každou stránku musíte v Google API konzoli vytvořit nový."
2850
 
2851
+ #: admin.php:3216
2852
  msgid "You have not yet made any backups."
2853
  msgstr "Zatím jste nevytvořili žádnou zálohu."
2854
 
2855
+ #: templates/wp-admin/settings/form-contents.php:212
2856
  msgid "Database Options"
2857
  msgstr "Možnosti databáze"
2858
 
2868
  msgid "Free disk space in account:"
2869
  msgstr "Volné místo na disku pro účet:"
2870
 
2871
+ #: admin.php:3974 templates/wp-admin/settings/tab-status.php:27
2872
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2873
  msgstr "Toto tlačítko je zakázané, protože se do vaší složky pro zálohy nedá zapisovat (podívejte se do nastavení)."
2874
 
2875
+ #: admin.php:480 admin.php:614 admin.php:1487
2876
  #: includes/deprecated-actions.php:30
2877
  #: templates/wp-admin/settings/downloading-and-restoring.php:22
2878
  #: templates/wp-admin/settings/tab-bar.php:6
2879
  msgid "Existing Backups"
2880
  msgstr "Existující zálohy"
2881
 
2882
+ #: admin.php:472 templates/wp-admin/settings/tab-bar.php:5
2883
  msgid "Current Status"
2884
  msgstr "Současný stav"
2885
 
2886
+ #: admin.php:885
2887
  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."
2888
  msgstr "Ke změně výchozího nastavení toho, co se zálohuje, k nastavení naplánovaných záloh, k odeslání záloh na vzdálené uložiště (doporučujeme) a mnoho dalšího, jděte na záložku nastavení."
2889
 
2890
+ #: admin.php:885
2891
  msgid "To make a backup, just press the Backup Now button."
2892
  msgstr "K vytvoření zálohy stiskněte tlačítko „Zálohovat nyní“."
2893
 
2894
+ #: admin.php:885
2895
  msgid "Welcome to UpdraftPlus!"
2896
  msgstr "Vítejte v UpdraftPlus!"
2897
 
2963
  msgid "user"
2964
  msgstr "uživatel"
2965
 
2966
+ #: class-updraftplus.php:1554
2967
  msgid "External database (%s)"
2968
  msgstr "Externí databáze (%s)"
2969
 
2970
+ #: methods/googledrive.php:908
2971
  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."
2972
  msgstr "Klikněte na tento odkaz přejděte do své Google API konzole, kde musíte aktivovat Drive API. Poté si vytvořte Client ID v sekci API Access."
2973
 
2974
+ #: methods/googledrive.php:371
2975
  msgid "failed to access parent folder"
2976
  msgstr "nepodařilo se přistoupit k nadřazené složce"
2977
 
2978
  #: addons/googlecloud.php:559 addons/onedrive.php:761 addons/onedrive.php:772
2979
+ #: methods/googledrive.php:328
2980
  msgid "However, subsequent access attempts failed:"
2981
  msgstr "Nicméně následné pokusy o připojení selhaly:"
2982
 
2983
+ #: admin.php:3241
2984
  msgid "External database"
2985
  msgstr "Externí databáze"
2986
 
2987
+ #: templates/wp-admin/settings/form-contents.php:354
2988
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2989
  msgstr "Způsobí to, že se zde zobrazí i výstup ladění ostatních pluginů - nebuďte proto překvapeni, že tomu tak je."
2990
 
2991
+ #: templates/wp-admin/settings/form-contents.php:294
2992
  msgid "Back up more databases"
2993
  msgstr "Zálohovat více databází"
2994
 
2995
+ #: templates/wp-admin/settings/form-contents.php:251
2996
  msgid "First, enter the decryption key"
2997
  msgstr "Nejprve vložte dešifrovací klíč"
2998
 
2999
+ #: templates/wp-admin/settings/form-contents.php:233
3000
  msgid "You can manually decrypt an encrypted database here."
3001
  msgstr "Zde můžete ručně dešifrovat šifrovanou databázi."
3002
 
3003
+ #: templates/wp-admin/settings/form-contents.php:221
3004
  msgid "It can also backup external databases."
3005
  msgstr "Dokáže také zálohovat externí databáze."
3006
 
3007
+ #: templates/wp-admin/settings/form-contents.php:221
3008
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3009
  msgstr "Nechcete být špehování? UpdraftPlus Premium dokáže zálohu databáze šifrovat."
3010
 
3012
  msgid "use UpdraftPlus Premium"
3013
  msgstr "použijte UpdraftPlus Premium"
3014
 
3015
+ #: class-updraftplus.php:3955
3016
  msgid "Decryption failed. The database file is encrypted."
3017
  msgstr "Dešifrování selhalo. Soubor databáze je šifrován."
3018
 
3024
  msgid "An error occurred on the first %s command - aborting run"
3025
  msgstr "Při prvním příkazu %s nastala chyba - ruší se běh"
3026
 
3027
+ #: addons/moredatabase.php:98 backup.php:1372
3028
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3029
  msgstr "Připojení selhalo: zkontrolujte přístupové údaje, jestli server s databází běží a zda nebrání síťovému běhu firewall."
3030
 
3031
+ #: backup.php:1372
3032
  msgid "database connection attempt failed."
3033
  msgstr "selhal pokus o připojení k databázi."
3034
 
3036
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3037
  msgstr "Varování: domovská URL databáze (%s) je jiná, než se očekávalo (%s)"
3038
 
3039
+ #: addons/google-enhanced.php:84
3040
  msgid "In %s, path names are case sensitive."
3041
  msgstr "U cesty v %s záleží na velikosti písmen."
3042
 
3043
+ #: addons/azure.php:523 addons/google-enhanced.php:82 addons/onedrive.php:989
3044
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3045
  msgstr "Pokud ji necháte prázdnou, bude záloha uložena do kořene vaší %s"
3046
 
3047
+ #: addons/google-enhanced.php:82 addons/googlecloud.php:860
3048
  #: addons/onedrive.php:989
3049
  msgid "e.g. %s"
3050
  msgstr "např. %s"
3051
 
3052
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3053
  msgid "If the folder does not already exist, then it will be created."
3054
  msgstr "Pokud složka neexistuje, bude vytvořena."
3055
 
3056
+ #: addons/google-enhanced.php:82 addons/onedrive.php:989
3057
  msgid "Enter the path of the %s folder you wish to use here."
3058
  msgstr "Zadejte cestu složky %s, kterou si zde přejete použít."
3059
 
3060
+ #: addons/azure.php:516 methods/openstack2.php:137
3061
  msgid "Container"
3062
  msgstr "Kontejner"
3063
 
3064
+ #: methods/openstack2.php:120
3065
  msgid "Leave this blank, and a default will be chosen."
3066
  msgstr "Pro zvolení výchozího nechte prázdné."
3067
 
3068
+ #: methods/openstack2.php:111
3069
  msgid "Tenant"
3070
  msgstr "Tenant"
3071
 
3072
+ #: methods/openstack2.php:111
3073
  msgid "Follow this link for more information"
3074
  msgstr "Pro více informací klikněte na tento odkaz"
3075
 
3076
+ #: methods/openstack2.php:103 methods/openstack2.php:161
3077
  msgid "authentication URI"
3078
  msgstr "ověřovací URI"
3079
 
3080
+ #: methods/openstack2.php:98
3081
  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."
3082
  msgstr "Získejte přihlašovací údaje od svého poskytovatele OpenStack Swift a pak vyberte název kontejneru, který chcete použít jako uložiště. Pokud daný kontejner neexistuje, bude pro vás vytvořen."
3083
 
3084
+ #: methods/addon-base-v2.php:204 methods/addon-base-v2.php:224
3085
  msgid "Failed to download %s"
3086
  msgstr "Stahování %s se nezdařilo"
3087
 
3088
+ #: methods/addon-base-v2.php:218
3089
  msgid "Failed to download"
3090
  msgstr "Stahování se nezdařilo"
3091
 
3092
+ #: methods/addon-base-v2.php:116
3093
  msgid "failed to list files"
3094
  msgstr "nepodařilo se získat seznam souborů"
3095
 
3096
+ #: methods/addon-base-v2.php:84 methods/addon-base-v2.php:89
3097
  msgid "Failed to upload %s"
3098
  msgstr "Nahrání %s se nezdařilo"
3099
 
3100
+ #: methods/dropbox.php:599 methods/dropbox.php:601
3101
  msgid "Success:"
3102
  msgstr "Úspěch:"
3103
 
3104
+ #: addons/onedrive.php:997 methods/dropbox.php:500
3105
  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."
3106
  msgstr "<strong>Jakmile uložíte nastavení</strong> (kliknutím níže na „Uložit změny“), vraťte se sem a klikněte na tento odkaz pro dokončení ověření %s."
3107
 
3108
+ #: addons/onedrive.php:995 methods/dropbox.php:497
3109
  msgid "(You appear to be already authenticated)."
3110
  msgstr "(Vypadá to, že již jste ověřeni)."
3111
 
3112
+ #: methods/dropbox.php:492 methods/dropbox.php:498 methods/dropbox.php:500
3113
  msgid "Dropbox"
3114
  msgstr "Dropbox"
3115
 
3116
+ #: addons/onedrive.php:994 methods/dropbox.php:492
3117
  msgid "Authenticate with %s"
3118
  msgstr "Ověřit pomocí %s"
3119
 
3120
+ #: methods/cloudfiles.php:396
3121
  msgid "Error downloading remote file: Failed to download"
3122
  msgstr "Chyba při stahování vzdáleného souboru: Nepodařilo se jej stáhnout"
3123
 
3124
+ #: methods/openstack-base.php:476 methods/openstack-base.php:481
3125
  msgid "Region: %s"
3126
  msgstr "Oblast: %s"
3127
 
3128
+ #: methods/openstack-base.php:475
3129
  msgid "%s error - we accessed the container, but failed to create a file within it"
3130
  msgstr "Chyba %s - byl získán přístup ke kontejneru, ale nepodařilo se v něm vytvořit soubor"
3131
 
3132
+ #: methods/openstack-base.php:393
3133
  msgid "The %s object was not found"
3134
  msgstr "Objekt %s nebyl nalezen"
3135
 
3136
+ #: methods/openstack-base.php:52 methods/openstack-base.php:316
3137
+ #: methods/openstack-base.php:385
3138
  msgid "Could not access %s container"
3139
  msgstr "Nepodařilo se přistoupit ke kontejneru %s"
3140
 
3141
+ #: methods/openstack-base.php:44 methods/openstack-base.php:112
3142
+ #: methods/openstack-base.php:119 methods/openstack-base.php:308
3143
+ #: methods/openstack-base.php:373
3144
  msgid "%s error - failed to access the container"
3145
  msgstr "Chyba %s - nepodařilo se přistoupit ke kontejneru"
3146
 
3147
+ #: addons/googlecloud.php:902 addons/onedrive.php:996 methods/dropbox.php:507
3148
+ #: methods/googledrive.php:957
3149
  msgid "Account holder's name: %s."
3150
  msgstr "Jméno držitele účtu: %s."
3151
 
3152
+ #: methods/googledrive.php:946
3153
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3154
  msgstr "Pokud si chcete nastavit vlastní název složky, použijte UpdraftPlus Premium."
3155
 
3156
+ #: methods/googledrive.php:937
3157
  msgid "It is an ID number internal to Google Drive"
3158
  msgstr "Je to vnitřní ID Google Disku"
3159
 
3160
+ #: methods/googledrive.php:937
3161
  msgid "<strong>This is NOT a folder name</strong>."
3162
  msgstr "<strong>Toto NENÍ název složky</strong>."
3163
 
3164
+ #: addons/google-enhanced.php:81 addons/onedrive.php:988
3165
+ #: methods/googledrive.php:933 methods/googledrive.php:943
3166
  msgid "Folder"
3167
  msgstr "Složka"
3168
 
3169
  #: addons/googlecloud.php:254 addons/onedrive.php:373
3170
+ #: methods/googledrive.php:863
3171
  msgid "%s download: failed: file not found"
3172
  msgstr "%s stahování: selhalo: soubor nenalezen"
3173
 
3174
+ #: addons/googlecloud.php:579 methods/googledrive.php:348
3175
  msgid "Name: %s."
3176
  msgstr "Jméno: %s."
3177
 
3178
+ #: methods/googledrive.php:141
3179
  msgid "Google Drive list files: failed to access parent folder"
3180
  msgstr "Seznam souborů Google Disku: nelze přistoupit k rodičovské složce"
3181
 
3182
+ #: methods/addon-not-yet-present.php:77 methods/insufficient.php:67
3183
  msgid "Your %s version: %s."
3184
  msgstr "Vaše %s verze: %s."
3185
 
3186
+ #: methods/addon-not-yet-present.php:76 methods/insufficient.php:66
3187
  msgid "You will need to ask your web hosting company to upgrade."
3188
  msgstr "Budete muset požádat svého poskytovatele o aktualizaci."
3189
 
3190
+ #: methods/addon-not-yet-present.php:18 methods/insufficient.php:19
3191
  msgid "This remote storage method (%s) requires PHP %s or later."
3192
  msgstr "Toto vzdálené uložiště (%s) vyžaduje PHP %s, nebo novější."
3193
 
3194
+ #: admin.php:3793
3195
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
3196
  msgstr "Složka šablony (%s) nebyla nalezena, ale existuje její verze s malými písmeny; patřičně upravuji možnost databáze"
3197
 
3205
 
3206
  #: addons/migrator.php:375
3207
  #: templates/wp-admin/settings/downloading-and-restoring.php:56
3208
+ #: templates/wp-admin/settings/form-contents.php:241
3209
  msgid "This feature requires %s version %s or later"
3210
  msgstr "Tato vlastnost vyžaduje %s verze %s, nebo novější"
3211
 
3221
  msgid "Failed to unpack the archive"
3222
  msgstr "Nepodařilo se rozbalit archiv"
3223
 
3224
+ #: class-updraftplus.php:1112
3225
  msgid "Error - failed to download the file"
3226
  msgstr "Chyba - nepodařilo se stáhnout soubor"
3227
 
3241
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3242
  msgstr "Nainstalovaná verze UpdraftPlus Backup/Restore nebyla testována na vaší verzi WordPressu (%s)."
3243
 
3244
+ #: addons/sftp.php:426
3245
  msgid "password/key"
3246
  msgstr "heslo/klíč"
3247
 
3248
+ #: addons/azure.php:509 addons/migrator.php:2198 addons/sftp.php:377
3249
+ #: admin.php:661
3250
  msgid "Key"
3251
  msgstr "Klíč"
3252
 
3253
+ #: addons/sftp.php:372
3254
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3255
  msgstr "Vaše přihlášení může být založeno pouze na heslu, nebo klíči - vložte pouze jedno, ne oboje."
3256
 
3257
+ #: addons/sftp.php:309
3258
  msgid "The key provided was not in a valid format, or was corrupt."
3259
  msgstr "Vložený klíč není ve správném formátu, nebo je poškozen."
3260
 
3261
+ #: addons/sftp.php:48
3262
  msgid "SCP/SFTP password/key"
3263
  msgstr "SCP/SFTP heslo/klíč"
3264
 
3265
+ #: admin.php:3276
3266
  msgid "Files backup (created by %s)"
3267
  msgstr "Záloha souborů (vytvořil uživatel %s)"
3268
 
3269
+ #: admin.php:3276
3270
  msgid "Files and database WordPress backup (created by %s)"
3271
  msgstr "Záloha souborů a databáze WordPressu (vytvořil uživatel %s)"
3272
 
3273
+ #: addons/importer.php:261 admin.php:3270 class-updraftplus.php:2612
3274
  msgid "Backup created by: %s."
3275
  msgstr "Zálohu vytvořil: %s."
3276
 
3277
+ #: admin.php:3239
3278
  msgid "Database (created by %s)"
3279
  msgstr "Databáze (vytvořil uživatel %s)"
3280
 
3281
+ #: admin.php:3233 admin.php:3272
3282
  msgid "unknown source"
3283
  msgstr "neznámý zdroj"
3284
 
3290
  msgid "Upload backup files"
3291
  msgstr "Nahrát soubory zálohy"
3292
 
3293
+ #: admin.php:1876
3294
  msgid "This backup was created by %s, and can be imported."
3295
  msgstr "Tuto zálohu vytvořil %s a může být importována."
3296
 
3297
+ #: admin.php:914
3298
  msgid "Read this page for a guide to possible causes and how to fix it."
3299
  msgstr "Na této stránce je návod s možnými příčinami a opravami."
3300
 
3301
+ #: admin.php:914
3302
  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."
3303
  msgstr "WordPress má pár (%d) zpožděných naplánovaných úkolů. Pokud není tento web vývojářský, je pravděpodobné, že plánovač ve vašem WordPressu nefunguje."
3304
 
3305
+ #: admin.php:626 class-updraftplus.php:2619
3306
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3307
  msgstr "Pokud je toto záloha vytvořená jiným pluginem pro zálohu, pak by vám mohl pomoci UpdraftPlus Premium."
3308
 
3309
+ #: admin.php:625
3310
  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."
3311
  msgstr "Nicméně archivy UpdraftPlus jsou běžné zip/SQL soubory - takže pokud si jste jisti, že má váš soubor správný formát, můžete jej přejmenovat, aby odpovídal danému vzoru."
3312
 
3313
+ #: admin.php:625 admin.php:626 class-updraftplus.php:2619
3314
  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))."
3315
  msgstr "Tento soubor nevypadá jako archiv se zálohou UpdraftPlus (takové soubory jsou .zip, nebo .gz soubory, které mají jméno ve tvaru: backup_(čas)_(název webu)_(kód)_(typ).(zip|gz))."
3316
 
3317
+ #: admin.php:3273 includes/class-wpadmin-commands.php:143 restorer.php:1410
3318
  msgid "Backup created by unknown source (%s) - cannot be restored."
3319
  msgstr "Záloha vytvořena neznámým zdrojem (%s) - nemůže být obnovena."
3320
 
3326
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3327
  msgstr "Tato verze UpdraftPlus neví, jak zpracovat tento typ cizí zálohy"
3328
 
3329
+ #: methods/dropbox.php:285
3330
  msgid "%s returned an unexpected HTTP response: %s"
3331
  msgstr "%s vrátil neočekávanou HTTP odpověď: %s"
3332
 
3333
+ #: addons/sftp.php:886
3334
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3335
  msgstr "UpdraftPlus rozšíření pro tento typ přístupu k souborům (%s) nepodporuje výpis souborů"
3336
 
3337
+ #: methods/cloudfiles.php:221 methods/dropbox.php:266
3338
+ #: methods/openstack-base.php:107
3339
  msgid "No settings were found"
3340
  msgstr "Nebylo nalezeno žádné nastavení"
3341
 
3342
+ #: class-updraftplus.php:2740
3343
  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."
3344
  msgstr "Jedna nebo více záloh byla přidána z prohledání vzdáleného uložiště; Upozorňujeme, že tyto zálohy nebudou automaticky smazány skrze „ponechat“ nastavení; Pokud je budete chtít smazat, musíte to udělat ručně."
3345
 
3346
+ #: admin.php:592
3347
  msgid "Rescanning remote and local storage for backup sets..."
3348
  msgstr "Prohledávají se vzdálená a lokální uložiště kvůli zálohám..."
3349
 
3360
  msgid "Log all messages to syslog (only server admins are likely to want this)"
3361
  msgstr "Zaznamenávat veškeré zprávy do systémového protokolu (nastavení pouze pro správce serveru)"
3362
 
3363
+ #: addons/morefiles.php:488
3364
  msgid "No backup of location: there was nothing found to back up"
3365
  msgstr "Žádná záloha umístění: nebylo zde nalezeno nic k zálohování"
3366
 
3367
+ #: addons/moredatabase.php:234 addons/morefiles.php:284
3368
+ #: addons/morefiles.php:305
3369
  msgid "Remove"
3370
  msgstr "Odstranit"
3371
 
3372
+ #: methods/s3.php:816
3373
  msgid "Other %s FAQs."
3374
  msgstr "Ostatní často kladené dotazy ohledně %s."
3375
 
3376
+ #: templates/wp-admin/settings/form-contents.php:354
3377
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3378
  msgstr "Pokud chcete dostávat více informací a emailů o procesu zálohování zaškrtněte toto políčko - užitečné pokud se něco pokazí."
3379
 
3380
+ #: addons/morefiles.php:442 admin.php:2990
3381
  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."
3382
  msgstr "Při vkládání více souborů/složek, je oddělujte čárkou. Pro objekty vrchní úrovně můžete na začátku, nebo na konci použít zástupný znak *."
3383
 
3385
  msgid "Custom content type manager plugin data detected: clearing option cache"
3386
  msgstr "Detekován plugin pro správu vlastního obsahu: maže se mezipaměť možnosti"
3387
 
3388
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1441
3389
  msgid "Your hosting company must enable these functions before %s can work."
3390
  msgstr "Dokud váš provozovatel hostingu nepovolí tyto funkce, %s nebude pracovat."
3391
 
3392
+ #: class-updraftplus.php:4195 methods/ftp.php:291 restorer.php:1440
3393
  msgid "Your web server's PHP installation has these functions disabled: %s."
3394
  msgstr "Instalace PHP na serveru má zakázány následující funkce: %s."
3395
 
3396
+ #: methods/ftp.php:288
3397
  msgid "encrypted FTP (explicit encryption)"
3398
  msgstr "šifrované FTP (explicitní šifrování)"
3399
 
3400
+ #: methods/ftp.php:287
3401
  msgid "encrypted FTP (implicit encryption)"
3402
  msgstr "šifrované FTP (implicitní šifrování)"
3403
 
3404
+ #: methods/ftp.php:286
3405
  msgid "regular non-encrypted FTP"
3406
  msgstr "běžné nešifrované FTP"
3407
 
3409
  msgid "Backup created by:"
3410
  msgstr "Zálohu vytvořil:"
3411
 
3412
+ #: udaddons/options.php:489
3413
  msgid "Available to claim on this site"
3414
  msgstr "Dostupné pro tento web"
3415
 
3457
  msgid "Dismiss from main dashboard (for %s weeks)"
3458
  msgstr "Skrýt na hlavní nástěnce (na %s týdnů)"
3459
 
3460
+ #: class-updraftplus.php:4245
3461
  msgid "The attempt to undo the double-compression succeeded."
3462
  msgstr "Pokus o dvojitou dekompresi byl úspěšný."
3463
 
3464
+ #: class-updraftplus.php:4222 class-updraftplus.php:4243
3465
  msgid "The attempt to undo the double-compression failed."
3466
  msgstr "Pokus o dvojitou dekompresi selhal."
3467
 
3468
+ #: class-updraftplus.php:4215
3469
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3470
  msgstr "Databázový soubor se zdá být dvakrát komprimovaný - web ze které jste ho stáhli měl pravděpodobně špatně nastavený webový server."
3471
 
3473
  msgid "Constants"
3474
  msgstr "Konstanty"
3475
 
3476
+ #: backup.php:1607
3477
  msgid "Failed to open database file for reading:"
3478
  msgstr "Otevření souboru pro čtení selhalo:"
3479
 
3480
+ #: backup.php:1420
3481
  msgid "No database tables found"
3482
  msgstr "V databázi nebyla nalezena žádná tabulka."
3483
 
3484
+ #: backup.php:1418
3485
  msgid "please wait for the rescheduled attempt"
3486
  msgstr "počkejte prosím na přeložený pokus"
3487
 
3509
  msgid "Errors occurred:"
3510
  msgstr "Objevily se chyby:"
3511
 
3512
+ #: admin.php:3468
3513
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3514
  msgstr "Pro stažení souboru protokolu tohoto obnovení pokračujte zde (je třeba pro jakýkoliv požadavek podpory)."
3515
 
3516
+ #: templates/wp-admin/settings/form-contents.php:398
3517
  msgid "See this FAQ also."
3518
  msgstr "Podívejte se i na tyto často kladené dotazy."
3519
 
3533
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3534
  msgstr "Existují nesmazané složky z předchozí obnovy (Než to zkusíte znovu, zmáčkněte prosím tlačítko „Smazat staré složky“): %s"
3535
 
3536
+ #: admin.php:889 class-updraftplus.php:661
3537
  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)"
3538
  msgstr "Čas, po který mohou pluginy WordPressu běžet je velmi krátky (%s sekund) - měli byste zvýšit limit, abyste se vyhnuli chybám při zálohách způsobených nedostatkem času (pomoc konzultujte s vaším poskytovatelem hostingu - jde o nastavení PHP max_execution_time; doporučená hodnota je minimálně %s sekund)"
3539
 
3549
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3550
  msgstr "Deaktivován plugin: %s: až budete připraveni, plugin opět ručně aktivujte."
3551
 
3552
+ #: addons/sftp.php:641 addons/sftp.php:644 includes/ftp.class.php:44
3553
  #: includes/ftp.class.php:47
3554
  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."
3555
  msgstr "Vypršel časový limit pro %s připojení; pokud jste server zadali správně, pak je tato chyba běžně způsobena blokováním firewallu - doporučujeme konzultaci s poskytovatelem hostingu."
3556
 
3557
+ #: admin.php:3801
3558
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
3559
  msgstr "Aktuální šablona nebyla nalezena; aby