UpdraftPlus WordPress Backup Plugin - Version 1.13.11

Version Description

  • 27/Sep/2017 =

  • FIX: Fix a failure (regression in 1.13.8+) to download some backup sets which pre-date the existence of instances

  • FIX: Fix a failure to backup in the short-lived 1.13.10 (many apologies)

  • TWEAK: When logging an Exception or Error, include a backtrace (WP 3.4+)

  • TWEAK: Prevent a PHP warning during a save of the backup history

  • TWEAK: Added a MetaSlider notice in the notices collection

  • TWEAK: Put a try/catch block that will catch PHP exceptions/fatals (PHP 7.0+) during encryption phase, so that any issues can be logged

Download this release

Release Info

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

Code changes from version 1.13.9 to 1.13.11

admin.php CHANGED
@@ -1008,6 +1008,9 @@ class UpdraftPlus_Admin {
1008
  return $updraft_dir;
1009
  }
1010
 
 
 
 
1011
  public function updraft_download_backup() {
1012
 
1013
  if (empty($_REQUEST['_wpnonce']) || !wp_verify_nonce($_REQUEST['_wpnonce'], 'updraftplus_download')) die;
@@ -1027,7 +1030,18 @@ class UpdraftPlus_Admin {
1027
  die();
1028
  }
1029
 
1030
- // This function may die(), depending on the request being made in $stage
 
 
 
 
 
 
 
 
 
 
 
1031
  public function do_updraft_download_backup($findex, $type, $timestamp, $stage, $close_connection_callable = false, $file_path = '') {
1032
 
1033
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
@@ -1069,7 +1083,7 @@ class UpdraftPlus_Admin {
1069
  // Deal with multi-archive sets
1070
  if (is_array($file)) $file = $file[$findex];
1071
 
1072
- if (strpos($file_path, '..') !== false) {
1073
  error_log("UpdraftPlus_Admin::do_updraft_download_backup : invalid file_path: $file_path");
1074
  return array('result' => __('Error: invalid path', 'updraftplus'));
1075
  }
@@ -1214,13 +1228,13 @@ class UpdraftPlus_Admin {
1214
  $object = $storage_objects_and_ids[$service]['object'];
1215
 
1216
  if (!$object->supports_feature('multi_options')) {
1217
- error_log("UpdraftPlus_Admin::get_remote_file(): Multi options not supported by: ".$service);
1218
  continue;
1219
  }
1220
 
1221
  $instance_ids = $storage_objects_and_ids[$service]['instance_settings'];
1222
  $backups_instance_ids = isset($backup_history[$timestamp]['service_instance_ids'][$service]) ? $backup_history[$timestamp]['service_instance_ids'][$service] : array(false);
1223
-
1224
  foreach ($backups_instance_ids as $instance_id) {
1225
 
1226
  if (isset($instance_ids[$instance_id])) {
@@ -1280,15 +1294,19 @@ class UpdraftPlus_Admin {
1280
  return $object->download($file);
1281
  } catch (Exception $e) {
1282
  $log_message = 'Exception ('.get_class($e).') occurred during download: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
1283
- $updraftplus->log($log_message);
1284
  error_log($log_message);
 
 
 
1285
  $updraftplus->log(sprintf(__('A PHP exception (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
1286
  return false;
1287
  // @codingStandardsIgnoreLine
1288
  } catch (Error $e) {
1289
- $log_message = 'PHP Fatal error ('.get_class($e).') has occurred. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
1290
- $updraftplus->log($log_message);
1291
  error_log($log_message);
 
 
 
1292
  $updraftplus->log(sprintf(__('A PHP fatal error (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
1293
  return false;
1294
  }
@@ -3964,8 +3982,10 @@ ENDHERE;
3964
  $val = $updraftplus_restorer->restore_backup($file, $type, $info, $last_one);
3965
  } catch (Exception $e) {
3966
  $log_message = 'Exception ('.get_class($e).') occurred during restore: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
3967
- error_log($log_message);
3968
  $display_log_message = sprintf(__('A PHP exception (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage());
 
 
 
3969
  $updraftplus->log($log_message);
3970
  $updraftplus->log($display_log_message, 'notice-restore');
3971
  die();
@@ -3973,8 +3993,10 @@ ENDHERE;
3973
  } catch (Error $e) {
3974
  $log_message = 'PHP Fatal error ('.get_class($e).') has occurred. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
3975
  error_log($log_message);
3976
- $display_log_message = sprintf(__('A PHP fatal error (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage());
 
3977
  $updraftplus->log($log_message);
 
3978
  $updraftplus->log($display_log_message, 'notice-restore');
3979
  die();
3980
  }
1008
  return $updraft_dir;
1009
  }
1010
 
1011
+ /**
1012
+ * Start a download of a backup. This method is called via the AJAX action updraft_download_backup. May die instead of returning depending upon the mode in which it is called.
1013
+ */
1014
  public function updraft_download_backup() {
1015
 
1016
  if (empty($_REQUEST['_wpnonce']) || !wp_verify_nonce($_REQUEST['_wpnonce'], 'updraftplus_download')) die;
1030
  die();
1031
  }
1032
 
1033
+ /**
1034
+ * Ensure that a specified backup is present, downloading if necessary (or delete it, if the parameters so indicate). N.B. This function may die(), depending on the request being made in $stage
1035
+ *
1036
+ * @param Integer $findex - the index number of the backup archive requested
1037
+ * @param String $type - the entity type (e.g. 'plugins') being requested
1038
+ * @param Integer $timestamp - identifier for the backup being requested (UNIX epoch time)
1039
+ * @param Mixed $stage - the stage; valid values include (have not audited for other possibilities) at least 'delete' and 2.
1040
+ * @param Callable|Boolean $close_connection_callable - function used to close the connection to the caller; an array of data to return is passed. If false, then UpdraftPlus::close_browser_connection is called with a JSON version of the data.
1041
+ * @param String $file_path - an over-ride for where to download the file to (basename only)
1042
+ *
1043
+ * @return Array - sumary of the results. May also just die.
1044
+ */
1045
  public function do_updraft_download_backup($findex, $type, $timestamp, $stage, $close_connection_callable = false, $file_path = '') {
1046
 
1047
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
1083
  // Deal with multi-archive sets
1084
  if (is_array($file)) $file = $file[$findex];
1085
 
1086
+ if (false !== strpos($file_path, '..')) {
1087
  error_log("UpdraftPlus_Admin::do_updraft_download_backup : invalid file_path: $file_path");
1088
  return array('result' => __('Error: invalid path', 'updraftplus'));
1089
  }
1228
  $object = $storage_objects_and_ids[$service]['object'];
1229
 
1230
  if (!$object->supports_feature('multi_options')) {
1231
+ error_log("UpdraftPlus_Admin::get_remote_file(): Multi-options not supported by: ".$service);
1232
  continue;
1233
  }
1234
 
1235
  $instance_ids = $storage_objects_and_ids[$service]['instance_settings'];
1236
  $backups_instance_ids = isset($backup_history[$timestamp]['service_instance_ids'][$service]) ? $backup_history[$timestamp]['service_instance_ids'][$service] : array(false);
1237
+
1238
  foreach ($backups_instance_ids as $instance_id) {
1239
 
1240
  if (isset($instance_ids[$instance_id])) {
1294
  return $object->download($file);
1295
  } catch (Exception $e) {
1296
  $log_message = 'Exception ('.get_class($e).') occurred during download: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
 
1297
  error_log($log_message);
1298
+ // @codingStandardsIgnoreLine
1299
+ if (function_exists('wp_debug_backtrace_summary')) $log_message .= ' Backtrace: '.wp_debug_backtrace_summary();
1300
+ $updraftplus->log($log_message);
1301
  $updraftplus->log(sprintf(__('A PHP exception (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
1302
  return false;
1303
  // @codingStandardsIgnoreLine
1304
  } catch (Error $e) {
1305
+ $log_message = 'PHP Fatal error ('.get_class($e).') has occurred during download. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
 
1306
  error_log($log_message);
1307
+ // @codingStandardsIgnoreLine
1308
+ if (function_exists('wp_debug_backtrace_summary')) $log_message .= ' Backtrace: '.wp_debug_backtrace_summary();
1309
+ $updraftplus->log($log_message);
1310
  $updraftplus->log(sprintf(__('A PHP fatal error (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
1311
  return false;
1312
  }
3982
  $val = $updraftplus_restorer->restore_backup($file, $type, $info, $last_one);
3983
  } catch (Exception $e) {
3984
  $log_message = 'Exception ('.get_class($e).') occurred during restore: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
 
3985
  $display_log_message = sprintf(__('A PHP exception (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage());
3986
+ error_log($log_message);
3987
+ // @codingStandardsIgnoreLine
3988
+ if (function_exists('wp_debug_backtrace_summary')) $log_message .= ' Backtrace: '.wp_debug_backtrace_summary();
3989
  $updraftplus->log($log_message);
3990
  $updraftplus->log($display_log_message, 'notice-restore');
3991
  die();
3993
  } catch (Error $e) {
3994
  $log_message = 'PHP Fatal error ('.get_class($e).') has occurred. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
3995
  error_log($log_message);
3996
+ // @codingStandardsIgnoreLine
3997
+ if (function_exists('wp_debug_backtrace_summary')) $log_message .= ' Backtrace: '.wp_debug_backtrace_summary();
3998
  $updraftplus->log($log_message);
3999
+ $display_log_message = sprintf(__('A PHP fatal error (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage());
4000
  $updraftplus->log($display_log_message, 'notice-restore');
4001
  die();
4002
  }
backup.php CHANGED
@@ -1904,7 +1904,26 @@ class UpdraftPlus_Backup {
1904
  $encryption = UpdraftPlus_Options::get_updraft_option('updraft_encryptionphrase');
1905
  if (strlen($encryption) > 0) {
1906
  $updraftplus->log("Attempting to encrypt backup file");
1907
- $result = apply_filters('updraft_encrypt_file', null, $file, $encryption, $this->whichdb, $this->whichdb_suffix);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1908
  if (null === $result) {
1909
  // $updraftplus->log(sprintf(__("As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus", 'updraftplus'), 'https://updraftplus.com/next-updraftplus-release-ready-testing/ + https://updraftplus.com/shop/updraftplus-premium/'), 'warning', 'needpremiumforcrypt');
1910
  // UpdraftPlus_Options::update_updraft_option('updraft_encryptionphrase', '');
1904
  $encryption = UpdraftPlus_Options::get_updraft_option('updraft_encryptionphrase');
1905
  if (strlen($encryption) > 0) {
1906
  $updraftplus->log("Attempting to encrypt backup file");
1907
+ try {
1908
+ $result = apply_filters('updraft_encrypt_file', null, $file, $encryption, $this->whichdb, $this->whichdb_suffix);
1909
+ } catch (Exception $e) {
1910
+ $log_message = 'Exception ('.get_class($e).') occurred during encryption: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
1911
+ error_log($log_message);
1912
+ // @codingStandardsIgnoreLine
1913
+ if (function_exists('wp_debug_backtrace_summary')) $log_message .= ' Backtrace: '.wp_debug_backtrace_summary();
1914
+ $updraftplus->log($log_message);
1915
+ $updraftplus->log(sprintf(__('A PHP exception (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
1916
+ die();
1917
+ // @codingStandardsIgnoreLine
1918
+ } catch (Error $e) {
1919
+ $log_message = 'PHP Fatal error ('.get_class($e).') has occurred during encryption. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
1920
+ error_log($log_message);
1921
+ // @codingStandardsIgnoreLine
1922
+ if (function_exists('wp_debug_backtrace_summary')) $log_message .= ' Backtrace: '.wp_debug_backtrace_summary();
1923
+ $updraftplus->log($log_message);
1924
+ $updraftplus->log(sprintf(__('A PHP fatal error (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
1925
+ die();
1926
+ }
1927
  if (null === $result) {
1928
  // $updraftplus->log(sprintf(__("As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus", 'updraftplus'), 'https://updraftplus.com/next-updraftplus-release-ready-testing/ + https://updraftplus.com/shop/updraftplus-premium/'), 'warning', 'needpremiumforcrypt');
1929
  // UpdraftPlus_Options::update_updraft_option('updraft_encryptionphrase', '');
class-updraftplus.php CHANGED
@@ -2113,15 +2113,19 @@ class UpdraftPlus {
2113
  if (!is_array($our_files)) $our_files = array();
2114
  } catch (Exception $e) {
2115
  $log_message = 'Exception ('.get_class($e).') occurred during files backup: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
2116
- $this->log($log_message);
2117
  error_log($log_message);
 
 
 
2118
  $this->log(sprintf(__('A PHP exception (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
2119
  die();
2120
  // @codingStandardsIgnoreLine
2121
  } catch (Error $e) {
2122
  $log_message = 'PHP Fatal error ('.get_class($e).') has occurred. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
2123
- $this->log($log_message);
2124
  error_log($log_message);
 
 
 
2125
  $this->log(sprintf(__('A PHP fatal error (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
2126
  die();
2127
  }
@@ -3336,6 +3340,7 @@ class UpdraftPlus {
3336
 
3337
  // N.B. On PHP 5.5+, we'd use array_column()
3338
  foreach ($storage_objects_and_ids as $method => $method_information) {
 
3339
  $backup_array['service_instance_ids'][$method] = array_keys($method_information['instance_settings']);
3340
  }
3341
 
@@ -3774,7 +3779,7 @@ class UpdraftPlus {
3774
  if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3775
  foreach ($settings['settings'] as $instance_id => $instance_settings) {
3776
  if (!empty($instance_settings['host']) && preg_match('#ftp(es|s)?://(.*)#i', $instance_settings['host'], $matches)) {
3777
- $settings['settings'][$instance_id]['host'] = rtrim($matches[2], "/ \t\n\r\0x0B");
3778
  }
3779
  if (isset($instance_settings['pass'])) {
3780
  $settings['settings'][$instance_id]['pass'] = trim($instance_settings['pass'], "\n\r\0\x0B");
@@ -3795,7 +3800,7 @@ class UpdraftPlus {
3795
  if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3796
  foreach ($settings['settings'] as $instance_id => $instance_settings) {
3797
  if (!empty($instance_settings['backup_path'])) {
3798
- $settings['settings'][$instance_id]['backup_path'] = trim($instance_settings['backup_path'], "/ \t\n\r\0x0B");
3799
  }
3800
  }
3801
  }
@@ -3813,7 +3818,7 @@ class UpdraftPlus {
3813
  if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3814
  foreach ($settings['settings'] as $instance_id => $instance_settings) {
3815
  if (!empty($instance_settings['path'])) {
3816
- $settings['settings'][$instance_id]['path'] = trim($instance_settings['path'], "/ \t\n\r\0x0B");
3817
  }
3818
  }
3819
  }
2113
  if (!is_array($our_files)) $our_files = array();
2114
  } catch (Exception $e) {
2115
  $log_message = 'Exception ('.get_class($e).') occurred during files backup: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
 
2116
  error_log($log_message);
2117
+ // @codingStandardsIgnoreLine
2118
+ if (function_exists('wp_debug_backtrace_summary')) $log_message .= ' Backtrace: '.wp_debug_backtrace_summary();
2119
+ $this->log($log_message);
2120
  $this->log(sprintf(__('A PHP exception (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
2121
  die();
2122
  // @codingStandardsIgnoreLine
2123
  } catch (Error $e) {
2124
  $log_message = 'PHP Fatal error ('.get_class($e).') has occurred. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
 
2125
  error_log($log_message);
2126
+ // @codingStandardsIgnoreLine
2127
+ if (function_exists('wp_debug_backtrace_summary')) $log_message .= ' Backtrace: '.wp_debug_backtrace_summary();
2128
+ $this->log($log_message);
2129
  $this->log(sprintf(__('A PHP fatal error (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage()), 'error');
2130
  die();
2131
  }
3340
 
3341
  // N.B. On PHP 5.5+, we'd use array_column()
3342
  foreach ($storage_objects_and_ids as $method => $method_information) {
3343
+ if ('none' == $method || !$method || !$method_information['object']->supports_feature('multi_options')) continue;
3344
  $backup_array['service_instance_ids'][$method] = array_keys($method_information['instance_settings']);
3345
  }
3346
 
3779
  if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3780
  foreach ($settings['settings'] as $instance_id => $instance_settings) {
3781
  if (!empty($instance_settings['host']) && preg_match('#ftp(es|s)?://(.*)#i', $instance_settings['host'], $matches)) {
3782
+ $settings['settings'][$instance_id]['host'] = rtrim($matches[2], "/ \t\n\r\0\x0B");
3783
  }
3784
  if (isset($instance_settings['pass'])) {
3785
  $settings['settings'][$instance_id]['pass'] = trim($instance_settings['pass'], "\n\r\0\x0B");
3800
  if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3801
  foreach ($settings['settings'] as $instance_id => $instance_settings) {
3802
  if (!empty($instance_settings['backup_path'])) {
3803
+ $settings['settings'][$instance_id]['backup_path'] = trim($instance_settings['backup_path'], "/ \t\n\r\0\x0B");
3804
  }
3805
  }
3806
  }
3818
  if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3819
  foreach ($settings['settings'] as $instance_id => $instance_settings) {
3820
  if (!empty($instance_settings['path'])) {
3821
+ $settings['settings'][$instance_id]['path'] = trim($instance_settings['path'], "/ \t\n\r\0\x0B");
3822
  }
3823
  }
3824
  }
includes/updraftplus-notices.php CHANGED
@@ -196,6 +196,15 @@ class UpdraftPlus_Notices extends Updraft_Notices {
196
  'supported_positions' => $this->anywhere,
197
  'validity_function' => 'keyy_installed',
198
  ),
 
 
 
 
 
 
 
 
 
199
 
200
  // The sale adverts content starts here
201
  'blackfriday' => array(
@@ -313,6 +322,18 @@ class UpdraftPlus_Notices extends Updraft_Notices {
313
  return true;
314
  }
315
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  protected function clef_2fa_installed($plugin_base_dir = null, $product_name = null) {
317
 
318
  if (!function_exists('get_plugins')) include_once(ABSPATH.'wp-admin/includes/plugin.php');
196
  'supported_positions' => $this->anywhere,
197
  'validity_function' => 'keyy_installed',
198
  ),
199
+ 'metaslider' => array(
200
+ 'prefix' => '',
201
+ 'title' => 'MetaSlider: The #1 WordPress slider plugin',
202
+ 'text' => __("From the team behind UpdraftPlus.", "updraftplus") . ' ' . $this->url_start(true, 'metaslider.com') . __("Find out more.", 'updraftplus') . $this->url_end(true, 'metaslider.com'),
203
+ 'image' => 'notices/metaslider_logo.png',
204
+ 'dismiss_time' => 'dismiss_notice',
205
+ 'supported_positions' => $this->anywhere,
206
+ 'validity_function' => 'metaslider_installed',
207
+ ),
208
 
209
  // The sale adverts content starts here
210
  'blackfriday' => array(
322
  return true;
323
  }
324
 
325
+ protected function metaslider_installed($plugin_base_dir = null, $product_name = null) {
326
+ if (!function_exists('get_plugins')) include_once(ABSPATH.'wp-admin/includes/plugin.php');
327
+ $plugins = get_plugins();
328
+
329
+ foreach ($plugins as $key => $value) {
330
+ if ('ml-slider' == $value['TextDomain']) {
331
+ return false;
332
+ }
333
+ }
334
+ return true;
335
+ }
336
+
337
  protected function clef_2fa_installed($plugin_base_dir = null, $product_name = null) {
338
 
339
  if (!function_exists('get_plugins')) include_once(ABSPATH.'wp-admin/includes/plugin.php');
languages/updraftplus-af.po CHANGED
@@ -11,23 +11,145 @@ msgstr ""
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
- #: src/class-updraftplus.php:4741
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
16
  msgstr ""
17
 
18
- #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
  msgid "the migrator add-on"
20
  msgstr ""
21
 
22
- #: src/class-updraftplus.php:4739
23
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
  msgstr ""
25
 
26
- #: src/class-updraftplus.php:4737
27
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
28
  msgstr ""
29
 
30
- #: src/class-updraftplus.php:4734
31
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
32
  msgstr ""
33
 
@@ -43,17 +165,17 @@ msgstr ""
43
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr ""
45
 
46
- #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr ""
49
 
50
- #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
- #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr ""
54
 
55
- #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
- #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr ""
59
 
@@ -93,7 +215,7 @@ msgstr ""
93
  msgid "Remote storage"
94
  msgstr ""
95
 
96
- #: src/templates/wp-admin/settings/form-contents.php:221
97
  msgid "Select Files"
98
  msgstr ""
99
 
@@ -109,15 +231,15 @@ msgstr ""
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr ""
111
 
112
- #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr ""
115
 
116
- #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr ""
119
 
120
- #: src/admin.php:1540
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr ""
123
 
@@ -129,7 +251,7 @@ msgstr ""
129
  msgid "__Check this box to use Amazon's server-side encryption"
130
  msgstr ""
131
 
132
- #: src/addons/azure.php:535
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr ""
135
 
@@ -141,11 +263,11 @@ msgstr ""
141
  msgid "Cloud Files"
142
  msgstr ""
143
 
144
- #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr ""
147
 
148
- #: src/admin.php:4219
149
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
150
  msgstr ""
151
 
@@ -162,87 +284,87 @@ msgstr ""
162
  msgid "Extra database"
163
  msgstr ""
164
 
165
- #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr ""
168
 
169
- #: src/admin.php:1070, src/admin.php:1080
170
  msgid "Error: invalid path"
171
  msgstr ""
172
 
173
- #: src/admin.php:928
174
  msgid "An error occurred when fetching storage module options: "
175
  msgstr ""
176
 
177
- #: src/admin.php:756
178
  msgid "Loading log file"
179
  msgstr ""
180
 
181
- #: src/admin.php:755
182
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
183
  msgstr ""
184
 
185
- #: src/admin.php:754
186
  msgid "Search"
187
  msgstr ""
188
 
189
- #: src/admin.php:753
190
  msgid "Select a file to view information about it"
191
  msgstr ""
192
 
193
- #: src/admin.php:752
194
  msgid "Browsing zip file"
195
  msgstr ""
196
 
197
- #: src/admin.php:721
198
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
199
  msgstr ""
200
 
201
- #: src/admin.php:669
202
  msgid "Browse contents"
203
  msgstr ""
204
 
205
- #: src/restorer.php:1692
206
  msgid "Skipped tables:"
207
  msgstr ""
208
 
209
- #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr ""
212
 
213
- #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr ""
216
 
217
- #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr ""
220
 
221
- #: src/admin.php:751
222
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
223
  msgstr ""
224
 
225
- #: src/admin.php:751
226
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
227
  msgstr ""
228
 
229
- #: src/admin.php:751
230
  msgid "The available memory on the server."
231
  msgstr ""
232
 
233
- #: src/admin.php:751
234
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
235
  msgstr ""
236
 
237
- #: src/admin.php:751
238
  msgid "The file failed to upload. Please check the following:"
239
  msgstr ""
240
 
241
- #: src/admin.php:750
242
  msgid "HTTP code:"
243
  msgstr ""
244
 
245
- #: src/admin.php:646
246
  msgid "You have chosen to backup a database, but no tables have been selected"
247
  msgstr ""
248
 
@@ -411,7 +533,7 @@ msgstr ""
411
  msgid "UpdraftPlus"
412
  msgstr ""
413
 
414
- #: src/templates/wp-admin/settings/form-contents.php:245
415
  msgid "Recommended: optimize your database with WP-Optimize."
416
  msgstr ""
417
 
@@ -706,11 +828,11 @@ msgstr ""
706
  msgid "Export / import settings"
707
  msgstr ""
708
 
709
- #: src/restorer.php:1869
710
  msgid "Processing table (%s)"
711
  msgstr ""
712
 
713
- #: src/restorer.php:1658
714
  msgid "Backup of: %s"
715
  msgstr ""
716
 
@@ -730,11 +852,11 @@ msgstr ""
730
  msgid "Follow this link to deauthenticate with %s."
731
  msgstr ""
732
 
733
- #: src/central/bootstrap.php:549
734
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
735
  msgstr ""
736
 
737
- #: src/backup.php:1527
738
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
739
  msgstr ""
740
 
@@ -742,51 +864,51 @@ msgstr ""
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr ""
744
 
745
- #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr ""
748
 
749
- #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr ""
752
 
753
- #: src/admin.php:973, src/admin.php:977, src/admin.php:985, src/admin.php:989
754
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
755
  msgstr ""
756
 
757
- #: src/admin.php:749
758
  msgid "remote files deleted"
759
  msgstr ""
760
 
761
- #: src/admin.php:747
762
  msgid "Complete"
763
  msgstr ""
764
 
765
- #: src/admin.php:746
766
  msgid "Do you want to carry out the import?"
767
  msgstr ""
768
 
769
- #: src/admin.php:745
770
  msgid "Which was exported on:"
771
  msgstr ""
772
 
773
- #: src/admin.php:744
774
  msgid "This will import data from:"
775
  msgstr ""
776
 
777
- #: src/admin.php:743
778
  msgid "Importing..."
779
  msgstr ""
780
 
781
- #: src/admin.php:739
782
  msgid "You have not yet selected a file to import."
783
  msgstr ""
784
 
785
- #: src/admin.php:723
786
  msgid "Your export file will be of your displayed settings, not your saved ones."
787
  msgstr ""
788
 
789
- #: src/admin.php:82
790
  msgid "template not found"
791
  msgstr ""
792
 
@@ -827,15 +949,15 @@ msgstr ""
827
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
828
  msgstr ""
829
 
830
- #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr ""
833
 
834
- #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr ""
837
 
838
- #: src/admin.php:707
839
  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."
840
  msgstr ""
841
 
@@ -867,11 +989,11 @@ msgstr ""
867
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
868
  msgstr ""
869
 
870
- #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr ""
873
 
874
- #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr ""
877
 
@@ -891,31 +1013,27 @@ msgstr ""
891
  msgid "FAQs"
892
  msgstr ""
893
 
894
- #: src/central/bootstrap.php:496
895
  msgid "More information..."
896
  msgstr ""
897
 
898
- #: src/central/bootstrap.php:494
899
  msgid "Use the alternative method for making a connection with the dashboard."
900
  msgstr ""
901
 
902
- #: src/central/bootstrap.php:477
903
- msgid "Dashboard at"
904
- msgstr ""
905
-
906
- #: src/central/bootstrap.php:425
907
  msgid "Key size: %d bits"
908
  msgstr ""
909
 
910
- #: src/central/bootstrap.php:420
911
  msgid "Public key was sent to:"
912
  msgstr ""
913
 
914
- #: src/backup.php:2105
915
  msgid "Failed to open directory (check the file permissions and ownership): %s"
916
  msgstr ""
917
 
918
- #: src/backup.php:2083
919
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
920
  msgstr ""
921
 
@@ -923,33 +1041,33 @@ msgstr ""
923
  msgid "Create key"
924
  msgstr ""
925
 
926
- #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr ""
929
 
930
- #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr ""
933
 
934
- #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr ""
937
 
938
- #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr ""
941
 
942
- #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr ""
945
 
946
  #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
- #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
- #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr ""
951
 
952
- #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr ""
955
 
@@ -981,19 +1099,11 @@ msgstr ""
981
  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."
982
  msgstr ""
983
 
984
- #: src/class-updraftplus.php:1693
985
  msgid "Size: %s MB"
986
  msgstr ""
987
 
988
- #: src/central/bootstrap.php:486
989
- msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
990
- msgstr ""
991
-
992
- #: src/central/bootstrap.php:481
993
- msgid "i.e. you have an account there"
994
- msgstr ""
995
-
996
- #: src/templates/wp-admin/settings/form-contents.php:339
997
  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)."
998
  msgstr ""
999
 
@@ -1001,7 +1111,7 @@ msgstr ""
1001
  msgid "Now"
1002
  msgstr ""
1003
 
1004
- #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr ""
1007
 
@@ -1023,63 +1133,51 @@ msgstr ""
1023
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1024
  msgstr ""
1025
 
1026
- #: src/class-updraftplus.php:481, src/class-updraftplus.php:526
1027
  msgid "The given file was not found, or could not be read."
1028
  msgstr ""
1029
 
1030
- #: src/central/bootstrap.php:547
1031
  msgid "UpdraftCentral (Remote Control)"
1032
  msgstr ""
1033
 
1034
- #: src/central/bootstrap.php:535
1035
- msgid "fetch..."
1036
- msgstr ""
1037
-
1038
- #: src/central/bootstrap.php:534
1039
  msgid "View recent UpdraftCentral log events"
1040
  msgstr ""
1041
 
1042
- #: src/central/bootstrap.php:489
1043
  msgid "URL of mothership"
1044
  msgstr ""
1045
 
1046
- #: src/central/bootstrap.php:472
1047
  msgid "Enter any description"
1048
  msgstr ""
1049
 
1050
- #: src/central/bootstrap.php:469
1051
  msgid "Description"
1052
  msgstr ""
1053
 
1054
- #: src/central/bootstrap.php:463
1055
- msgid "Create new key"
1056
- msgstr ""
1057
-
1058
- #: src/central/bootstrap.php:430
1059
  msgid "Delete..."
1060
  msgstr ""
1061
 
1062
- #: src/central/bootstrap.php:423
1063
  msgid "Created:"
1064
  msgstr ""
1065
 
1066
- #: src/central/bootstrap.php:420
1067
  msgid "Access this site as user:"
1068
  msgstr ""
1069
 
1070
- #: src/central/bootstrap.php:388
1071
- msgid "No keys have yet been created."
1072
- msgstr ""
1073
-
1074
- #: src/central/bootstrap.php:442
1075
  msgid "Details"
1076
  msgstr ""
1077
 
1078
- #: src/central/bootstrap.php:441
1079
  msgid "Key description"
1080
  msgstr ""
1081
 
1082
- #: src/central/bootstrap.php:316, src/central/bootstrap.php:327
1083
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
1084
  msgstr ""
1085
 
@@ -1123,23 +1221,23 @@ msgstr ""
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr ""
1125
 
1126
- #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr ""
1129
 
1130
- #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr ""
1133
 
1134
- #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr ""
1137
 
1138
- #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr ""
1141
 
1142
- #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr ""
1145
 
@@ -1165,27 +1263,27 @@ msgstr ""
1165
  msgid "calculate"
1166
  msgstr ""
1167
 
1168
- #: src/admin.php:722
1169
  msgid "You should save your changes to ensure that they are used for making your backup."
1170
  msgstr ""
1171
 
1172
- #: src/admin.php:715
1173
  msgid "We requested to delete the file, but could not understand the server's response"
1174
  msgstr ""
1175
 
1176
- #: src/admin.php:714
1177
  msgid "Please enter a valid URL"
1178
  msgstr ""
1179
 
1180
- #: src/admin.php:697
1181
  msgid "Saving..."
1182
  msgstr ""
1183
 
1184
- #: src/admin.php:660
1185
  msgid "Error: the server sent us a response which we did not understand."
1186
  msgstr ""
1187
 
1188
- #: src/admin.php:652
1189
  msgid "Fetching..."
1190
  msgstr ""
1191
 
@@ -1193,7 +1291,7 @@ msgstr ""
1193
  msgid "Asia Pacific (Seoul)"
1194
  msgstr ""
1195
 
1196
- #: src/restorer.php:1681
1197
  msgid "Uploads URL:"
1198
  msgstr ""
1199
 
@@ -1205,40 +1303,40 @@ msgstr ""
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr ""
1207
 
1208
- #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr ""
1211
 
1212
- #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr ""
1215
 
1216
- #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr ""
1219
 
1220
- #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr ""
1224
 
1225
- #: src/admin.php:734
1226
  msgid "Please fill in the required information."
1227
  msgstr ""
1228
 
1229
- #: src/addons/multisite.php:576
1230
  msgid "Read more..."
1231
  msgstr ""
1232
 
1233
- #: src/addons/multisite.php:567
1234
  msgid "may include some site-wide data"
1235
  msgstr ""
1236
 
1237
- #: src/addons/multisite.php:562
1238
  msgid "All sites"
1239
  msgstr ""
1240
 
1241
- #: src/addons/multisite.php:558
1242
  msgid "Which site to restore"
1243
  msgstr ""
1244
 
@@ -1283,15 +1381,15 @@ msgstr ""
1283
  msgid "Call WordPress action:"
1284
  msgstr ""
1285
 
1286
- #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr ""
1289
 
1290
- #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr ""
1293
 
1294
- #: src/templates/wp-admin/settings/form-contents.php:169
1295
  msgid "File Options"
1296
  msgstr ""
1297
 
@@ -1319,51 +1417,51 @@ msgstr ""
1319
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1320
  msgstr ""
1321
 
1322
- #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr ""
1325
 
1326
- #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr ""
1329
 
1330
- #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr ""
1333
 
1334
- #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr ""
1337
 
1338
- #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr ""
1341
 
1342
- #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr ""
1345
 
1346
- #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr ""
1349
 
1350
- #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr ""
1353
 
1354
- #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr ""
1357
 
1358
- #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr ""
1361
 
1362
- #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr ""
1365
 
1366
- #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr ""
1369
 
@@ -1371,24 +1469,24 @@ msgstr ""
1371
  msgid "Premium / Extensions"
1372
  msgstr ""
1373
 
1374
- #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr ""
1377
 
1378
- #: src/addons/morefiles.php:55, src/admin.php:720
1379
  msgctxt "(verb)"
1380
  msgid "Download"
1381
  msgstr ""
1382
 
1383
- #: src/admin.php:645
1384
  msgid "You have chosen to backup files, but no file entities have been selected"
1385
  msgstr ""
1386
 
1387
- #: src/admin.php:546
1388
  msgid "Extensions"
1389
  msgstr ""
1390
 
1391
- #: src/admin.php:538, src/templates/wp-admin/settings/tab-bar.php:8
1392
  msgid "Advanced Tools"
1393
  msgstr ""
1394
 
@@ -1470,71 +1568,71 @@ msgstr ""
1470
  msgid "Standard"
1471
  msgstr ""
1472
 
1473
- #: src/addons/azure.php:563
1474
  msgid "container"
1475
  msgstr ""
1476
 
1477
- #: src/addons/azure.php:563
1478
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1479
  msgstr ""
1480
 
1481
- #: src/addons/azure.php:562
1482
  msgid "optional"
1483
  msgstr ""
1484
 
1485
- #: src/addons/azure.php:562
1486
  msgid "Prefix"
1487
  msgstr ""
1488
 
1489
- #: src/addons/azure.php:557
1490
  msgid "See Microsoft's guidelines on container naming by following this link."
1491
  msgstr ""
1492
 
1493
- #: src/addons/azure.php:557
1494
  msgid "Enter the path of the %s you wish to use here."
1495
  msgstr ""
1496
 
1497
- #: src/addons/azure.php:546
1498
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1499
  msgstr ""
1500
 
1501
- #: src/addons/azure.php:545
1502
  msgid "Account Name"
1503
  msgstr ""
1504
 
1505
- #: src/addons/azure.php:545, src/addons/azure.php:549
1506
  msgid "Azure"
1507
  msgstr ""
1508
 
1509
- #: src/addons/azure.php:541
1510
  msgid "Create Azure credentials in your Azure developer console."
1511
  msgstr ""
1512
 
1513
- #: src/addons/azure.php:489
1514
  msgid "Could not create the container"
1515
  msgstr ""
1516
 
1517
- #: src/addons/azure.php:352
1518
  msgid "Could not access container"
1519
  msgstr ""
1520
 
1521
- #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr ""
1524
 
1525
- #: src/backup.php:1579
1526
  msgid "the options table was not found"
1527
  msgstr ""
1528
 
1529
- #: src/backup.php:1577
1530
  msgid "no options or sitemeta table was found"
1531
  msgstr ""
1532
 
1533
- #: src/backup.php:1577, src/backup.php:1579
1534
  msgid "The database backup appears to have failed"
1535
  msgstr ""
1536
 
1537
- #: src/backup.php:1449
1538
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1539
  msgstr ""
1540
 
@@ -1647,35 +1745,35 @@ msgstr ""
1647
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1648
  msgstr ""
1649
 
1650
- #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr ""
1653
 
1654
- #: src/admin.php:733
1655
  msgid "Processing..."
1656
  msgstr ""
1657
 
1658
- #: src/admin.php:731
1659
  msgid "For backups older than"
1660
  msgstr ""
1661
 
1662
- #: src/admin.php:730
1663
  msgid "week(s)"
1664
  msgstr ""
1665
 
1666
- #: src/admin.php:729
1667
  msgid "hour(s)"
1668
  msgstr ""
1669
 
1670
- #: src/admin.php:728
1671
  msgid "day(s)"
1672
  msgstr ""
1673
 
1674
- #: src/admin.php:727
1675
  msgid "in the month"
1676
  msgstr ""
1677
 
1678
- #: src/admin.php:726
1679
  msgid "day"
1680
  msgstr ""
1681
 
@@ -1687,11 +1785,11 @@ msgstr ""
1687
  msgid "Add an additional retention rule..."
1688
  msgstr ""
1689
 
1690
- #: src/restorer.php:2191
1691
  msgid "This database needs to be deployed on MySQL version %s or later."
1692
  msgstr ""
1693
 
1694
- #: src/restorer.php:2191
1695
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1696
  msgstr ""
1697
 
@@ -1699,15 +1797,15 @@ msgstr ""
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr ""
1701
 
1702
- #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr ""
1705
 
1706
- #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr ""
1709
 
1710
- #: src/admin.php:2291
1711
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1712
  msgstr ""
1713
 
@@ -1735,11 +1833,11 @@ msgstr ""
1735
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1736
  msgstr ""
1737
 
1738
- #: src/admin.php:981
1739
  msgid "Go to the remote storage settings in order to connect."
1740
  msgstr ""
1741
 
1742
- #: src/admin.php:981
1743
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1744
  msgstr ""
1745
 
@@ -1747,19 +1845,19 @@ msgstr ""
1747
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1748
  msgstr ""
1749
 
1750
- #: src/admin.php:703
1751
  msgid "Update quota count"
1752
  msgstr ""
1753
 
1754
- #: src/admin.php:702
1755
  msgid "Counting..."
1756
  msgstr ""
1757
 
1758
- #: src/admin.php:701
1759
  msgid "Disconnecting..."
1760
  msgstr ""
1761
 
1762
- #: src/admin.php:699
1763
  msgid "Connecting..."
1764
  msgstr ""
1765
 
@@ -1785,7 +1883,7 @@ msgstr ""
1785
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1786
  msgstr ""
1787
 
1788
- #: src/admin.php:700, src/methods/updraftvault.php:388
1789
  msgid "Disconnect"
1790
  msgstr ""
1791
 
@@ -1817,7 +1915,8 @@ msgstr ""
1817
  msgid "E-mail"
1818
  msgstr ""
1819
 
1820
- #: src/methods/updraftvault.php:338, src/methods/updraftvault.php:353
 
1821
  msgid "Back..."
1822
  msgstr ""
1823
 
@@ -1830,7 +1929,7 @@ msgstr ""
1830
  msgid "%s per quarter"
1831
  msgstr ""
1832
 
1833
- #: src/central/bootstrap.php:549, src/methods/updraftvault.php:305,
1834
  #: src/methods/updraftvault.php:335
1835
  msgid "Read more about it here."
1836
  msgstr ""
@@ -1875,12 +1974,12 @@ msgstr ""
1875
  msgid "Updraft Vault"
1876
  msgstr ""
1877
 
1878
- #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
- #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr ""
1882
 
1883
- #: src/backup.php:3043
1884
  msgid "The zip engine returned the message: %s."
1885
  msgstr ""
1886
 
@@ -1904,7 +2003,7 @@ msgstr ""
1904
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1905
  msgstr ""
1906
 
1907
- #: src/addons/migrator.php:1747, src/admin.php:709
1908
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1909
  msgstr ""
1910
 
@@ -1932,11 +2031,11 @@ msgstr ""
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr ""
1934
 
1935
- #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr ""
1938
 
1939
- #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr ""
1942
 
@@ -1976,7 +2075,7 @@ msgstr ""
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr ""
1978
 
1979
- #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr ""
1982
 
@@ -1996,23 +2095,23 @@ msgstr ""
1996
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1997
  msgstr ""
1998
 
1999
- #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr ""
2002
 
2003
- #: src/admin.php:713
2004
  msgid "Deleting..."
2005
  msgstr ""
2006
 
2007
- #: src/admin.php:712
2008
  msgid "key name"
2009
  msgstr ""
2010
 
2011
- #: src/admin.php:710
2012
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2013
  msgstr ""
2014
 
2015
- #: src/admin.php:707
2016
  msgid "Creating..."
2017
  msgstr ""
2018
 
@@ -2036,11 +2135,11 @@ msgstr ""
2036
  msgid "Or, send a backup to another site"
2037
  msgstr ""
2038
 
2039
- #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr ""
2042
 
2043
- #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr ""
2046
 
@@ -2105,15 +2204,15 @@ msgstr ""
2105
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2106
  msgstr ""
2107
 
2108
- #: src/admin.php:706
2109
  msgid "Resetting..."
2110
  msgstr ""
2111
 
2112
- #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr ""
2115
 
2116
- #: src/admin.php:704
2117
  msgid "Adding..."
2118
  msgstr ""
2119
 
@@ -2121,7 +2220,7 @@ msgstr ""
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr ""
2123
 
2124
- #: src/restorer.php:2193
2125
  msgid "To use this backup, your database server needs to support the %s character set."
2126
  msgstr ""
2127
 
@@ -2149,7 +2248,7 @@ msgstr ""
2149
  msgid "To restore using any of the backup sets below, press the button."
2150
  msgstr ""
2151
 
2152
- #: src/admin.php:696, src/admin.php:722, src/admin.php:723
2153
  msgid "You have made changes to your settings, and not saved."
2154
  msgstr ""
2155
 
@@ -2161,7 +2260,7 @@ msgstr ""
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr ""
2163
 
2164
- #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr ""
@@ -2174,7 +2273,7 @@ msgstr ""
2174
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2175
  msgstr ""
2176
 
2177
- #: src/addons/azure.php:533
2178
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2179
  msgstr ""
2180
 
@@ -2340,7 +2439,7 @@ msgstr ""
2340
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2341
  msgstr ""
2342
 
2343
- #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr ""
2346
 
@@ -2415,7 +2514,7 @@ msgstr ""
2415
  msgid "(at same time as files backup)"
2416
  msgstr ""
2417
 
2418
- #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr ""
2421
 
@@ -2464,17 +2563,17 @@ msgstr ""
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr ""
2466
 
2467
- #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
- #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr ""
2471
 
2472
- #: src/templates/wp-admin/settings/form-contents.php:220
2473
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2474
  msgid "or"
2475
  msgstr ""
2476
 
2477
- #: src/admin.php:690
2478
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2479
  msgstr ""
2480
 
@@ -2497,20 +2596,20 @@ msgctxt "Keystone and swauth are technical terms which cannot be translated"
2497
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2498
  msgstr ""
2499
 
2500
- #: src/templates/wp-admin/settings/form-contents.php:290
2501
  msgid "your site's admin address"
2502
  msgstr ""
2503
 
2504
- #: src/templates/wp-admin/settings/form-contents.php:290
2505
  msgid "Check this box to have a basic report sent to"
2506
  msgstr ""
2507
 
2508
- #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr ""
2512
 
2513
- #: src/restorer.php:2170
2514
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
2515
  msgid "An error (%s) occurred:"
2516
  msgstr ""
@@ -2523,7 +2622,7 @@ msgstr ""
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr ""
2525
 
2526
- #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr ""
2529
 
@@ -2532,7 +2631,7 @@ msgid "Database decryption phrase"
2532
  msgstr ""
2533
 
2534
  #: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
2535
- #: src/admin.php:695
2536
  msgid "Automatic backup before update"
2537
  msgstr ""
2538
 
@@ -2617,7 +2716,7 @@ msgstr ""
2617
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2618
  msgstr ""
2619
 
2620
- #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr ""
2623
 
@@ -2634,7 +2733,7 @@ msgstr ""
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr ""
2636
 
2637
- #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr ""
2640
 
@@ -2646,28 +2745,28 @@ msgstr ""
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr ""
2648
 
2649
- #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr ""
2653
 
2654
- #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr ""
2657
 
2658
- #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr ""
2661
 
2662
- #: src/backup.php:3049
2663
  msgid "check your log for more details."
2664
  msgstr ""
2665
 
2666
- #: src/backup.php:3047
2667
  msgid "your web hosting account appears to be full; please see: %s"
2668
  msgstr ""
2669
 
2670
- #: src/backup.php:3045
2671
  msgid "A zip error occurred"
2672
  msgstr ""
2673
 
@@ -2695,11 +2794,11 @@ msgstr ""
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr ""
2697
 
2698
- #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr ""
2701
 
2702
- #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr ""
2705
 
@@ -2736,19 +2835,19 @@ msgstr ""
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr ""
2738
 
2739
- #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr ""
2742
 
2743
- #: src/class-updraftplus.php:4781
2744
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2745
  msgstr ""
2746
 
2747
- #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr ""
2750
 
2751
- #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr ""
2754
 
@@ -2777,7 +2876,7 @@ msgstr ""
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
- #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr ""
2783
 
@@ -2789,15 +2888,15 @@ msgstr ""
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr ""
2791
 
2792
- #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr ""
2795
 
2796
- #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr ""
2799
 
2800
- #: src/admin.php:2964
2801
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2802
  msgstr ""
2803
 
@@ -2805,11 +2904,11 @@ msgstr ""
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr ""
2807
 
2808
- #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr ""
2811
 
2812
- #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr ""
2815
 
@@ -2829,15 +2928,15 @@ msgstr ""
2829
  msgid "Memory limit"
2830
  msgstr ""
2831
 
2832
- #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr ""
2835
 
2836
- #: src/backup.php:862
2837
  msgid "Incremental"
2838
  msgstr ""
2839
 
2840
- #: src/backup.php:862
2841
  msgid "Full backup"
2842
  msgstr ""
2843
 
@@ -2853,7 +2952,7 @@ msgstr ""
2853
  msgid "Backup succeeded"
2854
  msgstr ""
2855
 
2856
- #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr ""
@@ -2892,15 +2991,15 @@ msgstr ""
2892
  msgid "search term"
2893
  msgstr ""
2894
 
2895
- #: src/restorer.php:2198
2896
  msgid "Too many database errors have occurred - aborting"
2897
  msgstr ""
2898
 
2899
- #: src/backup.php:928
2900
  msgid "read more at %s"
2901
  msgstr ""
2902
 
2903
- #: src/backup.php:928
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr ""
2906
 
@@ -2908,11 +3007,11 @@ msgstr ""
2908
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2909
  msgstr ""
2910
 
2911
- #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr ""
2914
 
2915
- #: src/templates/wp-admin/settings/form-contents.php:181
2916
  msgid "Database Options"
2917
  msgstr ""
2918
 
@@ -2928,30 +3027,30 @@ msgstr ""
2928
  msgid "Free disk space in account:"
2929
  msgstr ""
2930
 
2931
- #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr ""
2934
 
2935
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
  #: src/includes/deprecated-actions.php:29,
2937
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr ""
2941
 
2942
- #: src/admin.php:514, src/templates/wp-admin/settings/tab-bar.php:5
2943
  msgid "Current Status"
2944
  msgstr ""
2945
 
2946
- #: src/admin.php:937
2947
  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."
2948
  msgstr ""
2949
 
2950
- #: src/admin.php:937
2951
  msgid "To make a backup, just press the Backup Now button."
2952
  msgstr ""
2953
 
2954
- #: src/admin.php:937
2955
  msgid "Welcome to UpdraftPlus!"
2956
  msgstr ""
2957
 
@@ -3023,7 +3122,7 @@ msgstr ""
3023
  msgid "user"
3024
  msgstr ""
3025
 
3026
- #: src/class-updraftplus.php:1690
3027
  msgid "External database (%s)"
3028
  msgstr ""
3029
 
@@ -3040,31 +3139,31 @@ msgstr ""
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr ""
3042
 
3043
- #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr ""
3046
 
3047
- #: src/templates/wp-admin/settings/form-contents.php:334
3048
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
3049
  msgstr ""
3050
 
3051
- #: src/templates/wp-admin/settings/form-contents.php:263
3052
  msgid "Back up more databases"
3053
  msgstr ""
3054
 
3055
- #: src/templates/wp-admin/settings/form-contents.php:222
3056
  msgid "First, enter the decryption key"
3057
  msgstr ""
3058
 
3059
- #: src/templates/wp-admin/settings/form-contents.php:204
3060
  msgid "You can manually decrypt an encrypted database here."
3061
  msgstr ""
3062
 
3063
- #: src/templates/wp-admin/settings/form-contents.php:190
3064
  msgid "It can also backup external databases."
3065
  msgstr ""
3066
 
3067
- #: src/templates/wp-admin/settings/form-contents.php:190
3068
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3069
  msgstr ""
3070
 
@@ -3072,7 +3171,7 @@ msgstr ""
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr ""
3074
 
3075
- #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr ""
3078
 
@@ -3080,16 +3179,16 @@ msgstr ""
3080
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
3081
  msgstr ""
3082
 
3083
- #: src/restorer.php:1757, src/restorer.php:2139, src/restorer.php:2180,
3084
- #: src/restorer.php:2193
3085
  msgid "An error occurred on the first %s command - aborting run"
3086
  msgstr ""
3087
 
3088
- #: src/addons/moredatabase.php:105, src/backup.php:1390
3089
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3090
  msgstr ""
3091
 
3092
- #: src/backup.php:1390
3093
  msgid "database connection attempt failed."
3094
  msgstr ""
3095
 
@@ -3101,7 +3200,7 @@ msgstr ""
3101
  msgid "In %s, path names are case sensitive."
3102
  msgstr ""
3103
 
3104
- #: src/addons/azure.php:563, src/addons/google-enhanced.php:85,
3105
  #: src/addons/onedrive.php:983
3106
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3107
  msgstr ""
@@ -3115,7 +3214,7 @@ msgstr ""
3115
  msgid "Enter the path of the %s folder you wish to use here."
3116
  msgstr ""
3117
 
3118
- #: src/addons/azure.php:556, src/methods/openstack2.php:164
3119
  msgid "Container"
3120
  msgstr ""
3121
 
@@ -3176,30 +3275,30 @@ msgstr ""
3176
  msgid "Authenticate with %s"
3177
  msgstr ""
3178
 
3179
- #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr ""
3182
 
3183
- #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:496
3184
  msgid "Region: %s"
3185
  msgstr ""
3186
 
3187
- #: src/methods/openstack-base.php:490
3188
  msgid "%s error - we accessed the container, but failed to create a file within it"
3189
  msgstr ""
3190
 
3191
- #: src/methods/openstack-base.php:406
3192
  msgid "The %s object was not found"
3193
  msgstr ""
3194
 
3195
- #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:329,
3196
- #: src/methods/openstack-base.php:398
3197
  msgid "Could not access %s container"
3198
  msgstr ""
3199
 
3200
  #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:116,
3201
- #: src/methods/openstack-base.php:123, src/methods/openstack-base.php:321,
3202
- #: src/methods/openstack-base.php:386
3203
  msgid "%s error - failed to access the container"
3204
  msgstr ""
3205
 
@@ -3261,7 +3360,7 @@ msgstr ""
3261
 
3262
  #: src/addons/migrator.php:391,
3263
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
- #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr ""
3267
 
@@ -3269,7 +3368,7 @@ msgstr ""
3269
  msgid "Failed to unpack the archive"
3270
  msgstr ""
3271
 
3272
- #: src/class-updraftplus.php:1225
3273
  msgid "Error - failed to download the file"
3274
  msgstr ""
3275
 
@@ -3293,8 +3392,8 @@ msgstr ""
3293
  msgid "password/key"
3294
  msgstr ""
3295
 
3296
- #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr ""
3300
 
@@ -3310,24 +3409,24 @@ msgstr ""
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr ""
3312
 
3313
- #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr ""
3316
 
3317
- #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr ""
3320
 
3321
- #: src/addons/importer.php:276, src/admin.php:3470,
3322
- #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr ""
3325
 
3326
- #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr ""
3329
 
3330
- #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr ""
3333
 
@@ -3339,31 +3438,32 @@ msgstr ""
3339
  msgid "Upload backup files"
3340
  msgstr ""
3341
 
3342
- #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr ""
3345
 
3346
- #: src/admin.php:966
3347
  msgid "Read this page for a guide to possible causes and how to fix it."
3348
  msgstr ""
3349
 
3350
- #: src/admin.php:966
3351
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3352
  msgstr ""
3353
 
3354
- #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr ""
3357
 
3358
- #: src/admin.php:675
3359
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
3360
  msgstr ""
3361
 
3362
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
 
3363
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3364
  msgstr ""
3365
 
3366
- #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr ""
@@ -3384,16 +3484,16 @@ msgstr ""
3384
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3385
  msgstr ""
3386
 
3387
- #: src/methods/cloudfiles.php:246, src/methods/dropbox.php:294,
3388
- #: src/methods/openstack-base.php:111
3389
  msgid "No settings were found"
3390
  msgstr ""
3391
 
3392
- #: src/class-updraftplus.php:3100
3393
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
3394
  msgstr ""
3395
 
3396
- #: src/admin.php:642
3397
  msgid "Rescanning remote and local storage for backup sets..."
3398
  msgstr ""
3399
 
@@ -3415,24 +3515,24 @@ msgstr ""
3415
  msgid "Remove"
3416
  msgstr ""
3417
 
3418
- #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr ""
3421
 
3422
- #: src/templates/wp-admin/settings/form-contents.php:334
3423
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3424
  msgstr ""
3425
 
3426
- #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3428
  msgstr ""
3429
 
3430
- #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr ""
3434
 
3435
- #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr ""
3438
 
@@ -3448,7 +3548,7 @@ msgstr ""
3448
  msgid "regular non-encrypted FTP"
3449
  msgstr ""
3450
 
3451
- #: src/restorer.php:1665
3452
  msgid "Backup created by:"
3453
  msgstr ""
3454
 
@@ -3502,15 +3602,15 @@ msgstr ""
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr ""
3504
 
3505
- #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr ""
3508
 
3509
- #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr ""
3512
 
3513
- #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr ""
3516
 
@@ -3518,15 +3618,15 @@ msgstr ""
3518
  msgid "Constants"
3519
  msgstr ""
3520
 
3521
- #: src/backup.php:1627
3522
  msgid "Failed to open database file for reading:"
3523
  msgstr ""
3524
 
3525
- #: src/backup.php:1438
3526
  msgid "No database tables found"
3527
  msgstr ""
3528
 
3529
- #: src/backup.php:1436
3530
  msgid "please wait for the rescheduled attempt"
3531
  msgstr ""
3532
 
@@ -3543,15 +3643,15 @@ msgstr ""
3543
  msgid "Errors occurred:"
3544
  msgstr ""
3545
 
3546
- #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr ""
3549
 
3550
- #: src/templates/wp-admin/settings/form-contents.php:378
3551
  msgid "See this FAQ also."
3552
  msgstr ""
3553
 
3554
- #: src/templates/wp-admin/settings/form-contents.php:142
3555
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
3556
  msgstr ""
3557
 
@@ -3567,7 +3667,7 @@ msgstr ""
3567
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3568
  msgstr ""
3569
 
3570
- #: src/admin.php:941, src/class-updraftplus.php:744
3571
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3572
  msgstr ""
3573
 
@@ -3580,11 +3680,11 @@ msgstr ""
3580
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3581
  msgstr ""
3582
 
3583
- #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr ""
3586
 
3587
- #: src/restorer.php:2033
3588
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
3589
  msgstr ""
3590
 
@@ -3734,8 +3834,8 @@ msgid "Accounts created at rackspacecloud.com are US accounts; accounts created
3734
  msgstr ""
3735
 
3736
  #: src/addons/cloudfiles-enhanced.php:139, src/addons/s3-enhanced.php:204,
3737
- #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:449,
3738
- #: src/methods/openstack-base.php:451, src/methods/openstack-base.php:472,
3739
  #: src/methods/openstack2.php:33
3740
  msgid "Authorisation failed (check your credentials)"
3741
  msgstr ""
@@ -3744,35 +3844,35 @@ msgstr ""
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr ""
3746
 
3747
- #: src/admin.php:689, src/central/bootstrap.php:520
3748
  msgid "Create"
3749
  msgstr ""
3750
 
3751
- #: src/admin.php:651
3752
  msgid "Trying..."
3753
  msgstr ""
3754
 
3755
- #: src/admin.php:650
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr ""
3758
 
3759
- #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr ""
3762
 
3763
- #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr ""
3766
 
3767
- #: src/admin.php:2585
3768
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3769
  msgstr ""
3770
 
3771
- #: src/restorer.php:1732
3772
  msgid "Split line to avoid exceeding maximum packet size"
3773
  msgstr ""
3774
 
3775
- #: src/restorer.php:1612
3776
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
3777
  msgstr ""
3778
 
@@ -3804,11 +3904,11 @@ msgstr ""
3804
  msgid "Email reports"
3805
  msgstr ""
3806
 
3807
- #: src/class-updraftplus.php:1698, src/class-updraftplus.php:1703
3808
  msgid "%s checksum: %s"
3809
  msgstr ""
3810
 
3811
- #: src/class-updraftplus.php:1671, src/class-updraftplus.php:1673
3812
  msgid "files: %s"
3813
  msgstr ""
3814
 
@@ -3820,7 +3920,7 @@ msgstr ""
3820
  msgid "Debugging information"
3821
  msgstr ""
3822
 
3823
- #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr ""
3826
 
@@ -3865,7 +3965,7 @@ msgstr ""
3865
  msgid "%s authentication"
3866
  msgstr ""
3867
 
3868
- #: src/addons/onedrive.php:718, src/class-updraftplus.php:429,
3869
  #: src/methods/dropbox.php:176, src/methods/dropbox.php:598,
3870
  #: src/methods/dropbox.php:625, src/methods/dropbox.php:638,
3871
  #: src/methods/dropbox.php:784
@@ -3880,7 +3980,7 @@ msgstr ""
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
- #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
@@ -3892,85 +3992,85 @@ msgstr ""
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr ""
3894
 
3895
- #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
  #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3900
- #: src/templates/wp-admin/settings/form-contents.php:292
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
- #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3908
  #: src/addons/reporting.php:455, src/addons/reporting.php:455,
3909
- #: src/admin.php:640
3910
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3911
  msgstr ""
3912
 
3913
- #: src/addons/reporting.php:455, src/admin.php:639
3914
  msgid "When the Email storage method is enabled, also send the entire backup"
3915
  msgstr ""
3916
 
3917
- #: src/addons/reporting.php:170, src/backup.php:963
3918
  msgid "Latest status:"
3919
  msgstr ""
3920
 
3921
- #: src/backup.php:962
3922
  msgid "Backup contains:"
3923
  msgstr ""
3924
 
3925
- #: src/backup.php:919
3926
  msgid "Backed up: %s"
3927
  msgstr ""
3928
 
3929
- #: src/addons/reporting.php:253, src/backup.php:913
3930
  msgid "The log file has been attached to this email."
3931
  msgstr ""
3932
 
3933
- #: src/backup.php:877
3934
  msgid "Unknown/unexpected error - please raise a support request"
3935
  msgstr ""
3936
 
3937
- #: src/backup.php:874
3938
  msgid "Database only (files were not part of this particular schedule)"
3939
  msgstr ""
3940
 
3941
- #: src/backup.php:874
3942
  msgid "Database (files backup has not completed)"
3943
  msgstr ""
3944
 
3945
- #: src/backup.php:871
3946
  msgid "Files only (database was not part of this particular schedule)"
3947
  msgstr ""
3948
 
3949
- #: src/backup.php:871
3950
  msgid "Files (database backup has not completed)"
3951
  msgstr ""
3952
 
3953
- #: src/admin.php:295, src/backup.php:869
3954
  msgid "Files and database"
3955
  msgstr ""
3956
 
3957
- #: src/options.php:191
3958
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3959
  msgstr ""
3960
 
3961
- #: src/options.php:191
3962
  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>."
3963
  msgstr ""
3964
 
3965
- #: src/options.php:191
3966
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3967
  msgstr ""
3968
 
3969
- #: src/options.php:191
3970
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3971
  msgstr ""
3972
 
3973
- #: src/options.php:191
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr ""
3976
 
@@ -4036,21 +4136,21 @@ msgid "We failed to successfully connect to UpdraftPlus.Com"
4036
  msgstr ""
4037
 
4038
  #: src/methods/email.php:76,
4039
- #: src/templates/wp-admin/settings/form-contents.php:273,
4040
  #: src/templates/wp-admin/settings/tab-addons.php:199,
4041
  #: src/templates/wp-admin/settings/tab-addons.php:200
4042
  msgid "Reporting"
4043
  msgstr ""
4044
 
4045
- #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr ""
4048
 
4049
- #: src/addons/reporting.php:453, src/admin.php:638
4050
  msgid "Send a report only when there are warnings/errors"
4051
  msgstr ""
4052
 
4053
- #: src/restorer.php:1676
4054
  msgid "Content URL:"
4055
  msgstr ""
4056
 
@@ -4058,15 +4158,15 @@ msgstr ""
4058
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4059
  msgstr ""
4060
 
4061
- #: src/templates/wp-admin/settings/form-contents.php:176
4062
  msgid "See also the \"More Files\" add-on from our shop."
4063
  msgstr ""
4064
 
4065
- #: src/backup.php:3036, src/class-updraftplus.php:757
4066
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4067
  msgstr ""
4068
 
4069
- #: src/class-updraftplus.php:741
4070
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4071
  msgstr ""
4072
 
@@ -4202,23 +4302,23 @@ msgstr ""
4202
  msgid "Drop backup files here"
4203
  msgstr ""
4204
 
4205
- #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr ""
4208
 
4209
- #: src/admin.php:649
4210
  msgid "The web server returned an error code (try again, or check your web server logs)"
4211
  msgstr ""
4212
 
4213
- #: src/admin.php:647
4214
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4215
  msgstr ""
4216
 
4217
- #: src/admin.php:644
4218
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4219
  msgstr ""
4220
 
4221
- #: src/restorer.php:1670
4222
  msgid "Site home:"
4223
  msgstr ""
4224
 
@@ -4234,20 +4334,20 @@ msgstr ""
4234
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4235
  msgstr ""
4236
 
4237
- #: src/addons/azure.php:359, src/methods/stream-base.php:124,
4238
  #: src/methods/stream-base.php:129
4239
  msgid "Upload failed"
4240
  msgstr ""
4241
 
4242
- #: src/templates/wp-admin/settings/form-contents.php:133
4243
  msgid "You can send a backup to more than one destination with an add-on."
4244
  msgstr ""
4245
 
4246
- #: src/admin.php:2803
4247
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4248
  msgstr ""
4249
 
4250
- #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr ""
4253
 
@@ -4284,97 +4384,97 @@ msgstr ""
4284
  msgid "Backup is of: %s."
4285
  msgstr ""
4286
 
4287
- #: src/admin.php:737
4288
  msgid "%s settings test result:"
4289
  msgstr ""
4290
 
4291
- #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr ""
4294
 
4295
- #: src/admin.php:3542
4296
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4297
  msgstr ""
4298
 
4299
- #: src/templates/wp-admin/settings/form-contents.php:361
4300
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4301
  msgstr ""
4302
 
4303
- #: src/templates/wp-admin/settings/form-contents.php:361
4304
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4305
  msgstr ""
4306
 
4307
- #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr ""
4310
 
4311
- #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr ""
4314
 
4315
- #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr ""
4318
 
4319
- #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
- #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr ""
4324
 
4325
- #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr ""
4328
 
4329
- #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr ""
4332
 
4333
- #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr ""
4336
 
4337
- #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr ""
4340
 
4341
- #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr ""
4344
 
4345
- #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr ""
4348
 
4349
- #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr ""
4352
 
4353
- #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr ""
4356
 
4357
- #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr ""
4360
 
4361
- #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr ""
4364
 
4365
- #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr ""
4368
 
4369
- #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr ""
4372
 
4373
- #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr ""
4376
 
4377
- #: src/admin.php:945
4378
  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."
4379
  msgstr ""
4380
 
@@ -4390,11 +4490,11 @@ msgstr ""
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr ""
4392
 
4393
- #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr ""
4396
 
4397
- #: src/class-updraftplus.php:1988
4398
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4399
  msgstr ""
4400
 
@@ -4404,11 +4504,11 @@ msgstr ""
4404
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4405
  msgstr ""
4406
 
4407
- #: src/admin.php:2336
4408
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4409
  msgstr ""
4410
 
4411
- #: src/addons/autobackup.php:1085, src/admin.php:691
4412
  msgid "Proceed with update"
4413
  msgstr ""
4414
 
@@ -4483,88 +4583,88 @@ msgstr ""
4483
  msgid "Support"
4484
  msgstr ""
4485
 
4486
- #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr ""
4489
 
4490
- #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr ""
4493
 
4494
- #: src/class-updraftplus.php:4774
4495
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4496
  msgstr ""
4497
 
4498
- #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr ""
4501
 
4502
- #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr ""
4505
 
4506
- #: src/addons/autobackup.php:1053, src/admin.php:778,
4507
  #: src/includes/updraftplus-notices.php:171
4508
  msgid "Be safe with an automatic backup"
4509
  msgstr ""
4510
 
4511
- #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr ""
4514
 
4515
- #: src/admin.php:685
4516
  msgid "The file was uploaded."
4517
  msgstr ""
4518
 
4519
- #: src/admin.php:684
4520
  msgid "Unknown server response status:"
4521
  msgstr ""
4522
 
4523
- #: src/admin.php:683
4524
  msgid "Unknown server response:"
4525
  msgstr ""
4526
 
4527
- #: src/admin.php:682
4528
  msgid "This decryption key will be attempted:"
4529
  msgstr ""
4530
 
4531
- #: src/admin.php:681
4532
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4533
  msgstr ""
4534
 
4535
- #: src/admin.php:680
4536
  msgid "Upload error"
4537
  msgstr ""
4538
 
4539
- #: src/admin.php:679
4540
  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)."
4541
  msgstr ""
4542
 
4543
- #: src/admin.php:678
4544
  msgid "Upload error:"
4545
  msgstr ""
4546
 
4547
- #: src/admin.php:677
4548
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4549
  msgstr ""
4550
 
4551
- #: src/admin.php:668
4552
  msgid "Download to your computer"
4553
  msgstr ""
4554
 
4555
- #: src/admin.php:667
4556
  msgid "Delete from your web server"
4557
  msgstr ""
4558
 
4559
- #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr ""
4562
 
4563
- #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr ""
4566
 
4567
- #: src/templates/wp-admin/settings/form-contents.php:338
4568
  msgid "Split archives every:"
4569
  msgstr ""
4570
 
@@ -4572,15 +4672,15 @@ msgstr ""
4572
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4573
  msgstr ""
4574
 
4575
- #: src/admin.php:658
4576
  msgid "Warnings:"
4577
  msgstr ""
4578
 
4579
- #: src/admin.php:657
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr ""
4582
 
4583
- #: src/admin.php:2049
4584
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4585
  msgstr ""
4586
 
@@ -4616,7 +4716,7 @@ msgstr ""
4616
  msgid "No such backup set exists"
4617
  msgstr ""
4618
 
4619
- #: src/admin.php:1291
4620
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4621
  msgstr ""
4622
 
@@ -4624,7 +4724,7 @@ msgstr ""
4624
  msgid "Moving unpacked backup into place..."
4625
  msgstr ""
4626
 
4627
- #: src/backup.php:2742, src/backup.php:2996
4628
  msgid "Failed to open the zip file (%s) - %s"
4629
  msgstr ""
4630
 
@@ -4632,43 +4732,43 @@ msgstr ""
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr ""
4634
 
4635
- #: src/methods/s3.php:851
4636
  msgid "%s end-point"
4637
  msgstr ""
4638
 
4639
- #: src/methods/s3.php:813
4640
  msgid "... and many more!"
4641
  msgstr ""
4642
 
4643
- #: src/methods/s3generic.php:52, src/methods/s3generic.php:61
4644
  msgid "S3 (Compatible)"
4645
  msgstr ""
4646
 
4647
- #: src/admin.php:1205
4648
  msgid "File is not locally present - needs retrieving from remote storage"
4649
  msgstr ""
4650
 
4651
- #: src/admin.php:3810
4652
  msgid "Looking for %s archive: file name: %s"
4653
  msgstr ""
4654
 
4655
- #: src/admin.php:3771
4656
  msgid "Final checks"
4657
  msgstr ""
4658
 
4659
- #: src/templates/wp-admin/settings/form-contents.php:344
4660
  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)."
4661
  msgstr ""
4662
 
4663
- #: src/templates/wp-admin/settings/form-contents.php:219
4664
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4665
  msgstr ""
4666
 
4667
- #: src/admin.php:3162
4668
  msgid "Your wp-content directory server path: %s"
4669
  msgstr ""
4670
 
4671
- #: src/admin.php:674
4672
  msgid "Raw backup history"
4673
  msgstr ""
4674
 
@@ -4676,11 +4776,11 @@ msgstr ""
4676
  msgid "Show raw backup and file list"
4677
  msgstr ""
4678
 
4679
- #: src/admin.php:656
4680
  msgid "Processing files - please wait..."
4681
  msgstr ""
4682
 
4683
- #: src/admin.php:3956,
4684
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4685
  msgid "Please consult this FAQ for help on what to do about it."
4686
  msgstr ""
@@ -4689,11 +4789,11 @@ msgstr ""
4689
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4690
  msgstr ""
4691
 
4692
- #: src/class-updraftplus.php:4682
4693
  msgid "Failed to open database file."
4694
  msgstr ""
4695
 
4696
- #: src/admin.php:4382
4697
  msgid "Known backups (raw)"
4698
  msgstr ""
4699
 
@@ -4709,21 +4809,22 @@ msgstr ""
4709
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4710
  msgstr ""
4711
 
4712
- #: src/admin.php:3830
4713
  msgid "file is size:"
4714
  msgstr ""
4715
 
4716
  #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4717
- #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:945,
4718
- #: src/admin.php:2293, src/backup.php:3043, src/updraftplus.php:156
 
4719
  msgid "Go here for more information."
4720
  msgstr ""
4721
 
4722
- #: src/admin.php:655
4723
  msgid "Some files are still downloading or being processed - please wait."
4724
  msgstr ""
4725
 
4726
- #: src/class-updraftplus.php:4746, src/class-updraftplus.php:4764
4727
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4728
  msgstr ""
4729
 
@@ -4767,9 +4868,9 @@ msgstr ""
4767
  msgid "Error - no such file exists at %s"
4768
  msgstr ""
4769
 
4770
- #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4771
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4772
- #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:420,
4773
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4774
  #: src/methods/stream-base.php:285
4775
  msgid "%s Error"
@@ -4779,39 +4880,39 @@ msgstr ""
4779
  msgid "%s error - failed to upload file"
4780
  msgstr ""
4781
 
4782
- #: src/class-updraftplus.php:1117, src/methods/cloudfiles.php:223
4783
  msgid "%s error - failed to re-assemble chunks"
4784
  msgstr ""
4785
 
4786
  #: src/methods/cloudfiles.php:107, src/methods/cloudfiles.php:111,
4787
  #: src/methods/cloudfiles.php:252, src/methods/cloudfiles.php:298,
4788
  #: src/methods/cloudfiles.php:349, src/methods/cloudfiles.php:353,
4789
- #: src/methods/openstack-base.php:44, src/methods/openstack-base.php:317,
4790
- #: src/methods/openstack-base.php:382, src/methods/openstack-base.php:455,
4791
- #: src/methods/openstack-base.php:458, src/methods/openstack-base.php:476,
4792
- #: src/methods/openstack-base.php:481
4793
  msgid "%s authentication failed"
4794
  msgstr ""
4795
 
4796
  #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4797
- #: src/admin.php:1994, src/admin.php:2041, src/admin.php:2049,
4798
- #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4799
- #: src/class-updraftplus.php:4653, src/class-updraftplus.php:4655,
4800
- #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4804,
4801
- #: src/class-updraftplus.php:4839, src/methods/googledrive.php:369,
4802
- #: src/methods/s3.php:321
4803
  msgid "Error: %s"
4804
  msgstr ""
4805
 
4806
- #: src/admin.php:3099
4807
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4808
  msgstr ""
4809
 
4810
- #: src/admin.php:3097
4811
  msgid "Backup directory specified does <b>not</b> exist."
4812
  msgstr ""
4813
 
4814
- #: src/admin.php:2810, src/admin.php:3053
4815
  msgid "Warning: %s"
4816
  msgstr ""
4817
 
@@ -4819,31 +4920,31 @@ msgstr ""
4819
  msgid "Last backup job run:"
4820
  msgstr ""
4821
 
4822
- #: src/backup.php:2764
4823
  msgid "A very large file was encountered: %s (size: %s Mb)"
4824
  msgstr ""
4825
 
4826
- #: src/backup.php:2170
4827
  msgid "%s: unreadable file - could not be backed up"
4828
  msgstr ""
4829
 
4830
- #: src/backup.php:1527
4831
  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"
4832
  msgstr ""
4833
 
4834
- #: src/backup.php:1646
4835
  msgid "An error occurred whilst closing the final database file"
4836
  msgstr ""
4837
 
4838
- #: src/backup.php:904
4839
  msgid "Warnings encountered:"
4840
  msgstr ""
4841
 
4842
- #: src/class-updraftplus.php:3194
4843
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4844
  msgstr ""
4845
 
4846
- #: src/class-updraftplus.php:770
4847
  msgid "Your free disk space is very low - only %s Mb remain"
4848
  msgstr ""
4849
 
@@ -4879,15 +4980,15 @@ msgstr ""
4879
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4880
  msgstr ""
4881
 
4882
- #: src/methods/s3.php:827
4883
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
4884
  msgstr ""
4885
 
4886
- #: src/methods/s3.php:1082
4887
  msgid "Please check your access credentials."
4888
  msgstr ""
4889
 
4890
- #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1060
4891
  msgid "The error reported by %s was:"
4892
  msgstr ""
4893
 
@@ -4895,48 +4996,48 @@ msgstr ""
4895
  msgid "Please supply the requested information, and then continue."
4896
  msgstr ""
4897
 
4898
- #: src/class-updraftplus.php:4815, src/restorer.php:1706
4899
  msgid "Site information:"
4900
  msgstr ""
4901
 
4902
- #: src/restorer.php:1573
4903
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
4904
  msgstr ""
4905
 
4906
- #: src/addons/migrator.php:341, src/admin.php:2288,
4907
- #: src/class-updraftplus.php:4808, src/restorer.php:2033
4908
  msgid "Warning:"
4909
  msgstr ""
4910
 
4911
- #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4800,
4912
  #: src/restorer.php:154
4913
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4914
  msgstr ""
4915
 
4916
- #: src/admin.php:3798
4917
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
4918
  msgstr ""
4919
 
4920
- #: src/admin.php:3228, src/methods/updraftvault.php:286
4921
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
4922
  msgstr ""
4923
 
4924
- #: src/admin.php:692
4925
  msgid "Close"
4926
  msgstr ""
4927
 
4928
  #: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
4929
- #: src/admin.php:648, src/methods/remotesend.php:66,
4930
  #: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
4931
  #: src/methods/remotesend.php:242
4932
  msgid "Unexpected response:"
4933
  msgstr ""
4934
 
4935
- #: src/addons/reporting.php:451, src/admin.php:643
4936
  msgid "To send to more than one address, separate each address with a comma."
4937
  msgstr ""
4938
 
4939
- #: src/admin.php:672
4940
  msgid "PHP information"
4941
  msgstr ""
4942
 
@@ -4972,7 +5073,7 @@ msgstr ""
4972
  msgid "Also delete from remote storage"
4973
  msgstr ""
4974
 
4975
- #: src/admin.php:2540
4976
  msgid "Latest UpdraftPlus.com news:"
4977
  msgstr ""
4978
 
@@ -4989,7 +5090,7 @@ msgstr ""
4989
  msgid "News"
4990
  msgstr ""
4991
 
4992
- #: src/admin.php:1469, src/includes/class-wpadmin-commands.php:465
4993
  msgid "Backup set not found"
4994
  msgstr ""
4995
 
@@ -5011,7 +5112,7 @@ msgstr ""
5011
  msgid "Blog link"
5012
  msgstr ""
5013
 
5014
- #: src/admin.php:736
5015
  msgid "Testing %s Settings..."
5016
  msgstr ""
5017
 
@@ -5019,23 +5120,23 @@ msgstr ""
5019
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5020
  msgstr ""
5021
 
5022
- #: src/admin.php:961
5023
  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."
5024
  msgstr ""
5025
 
5026
- #: src/admin.php:961
5027
  msgid "Notice"
5028
  msgstr ""
5029
 
5030
- #: src/backup.php:886
5031
  msgid "Errors encountered:"
5032
  msgstr ""
5033
 
5034
- #: src/admin.php:641
5035
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5036
  msgstr ""
5037
 
5038
- #: src/admin.php:654
5039
  msgid "Begun looking for this entity"
5040
  msgstr ""
5041
 
@@ -5055,7 +5156,7 @@ msgstr ""
5055
  msgid "Time taken (seconds):"
5056
  msgstr ""
5057
 
5058
- #: src/addons/migrator.php:1141, src/admin.php:659
5059
  msgid "Errors:"
5060
  msgstr ""
5061
 
@@ -5117,15 +5218,15 @@ msgstr ""
5117
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5118
  msgstr ""
5119
 
5120
- #: src/addons/multisite.php:656
5121
  msgid "Blog uploads"
5122
  msgstr ""
5123
 
5124
- #: src/addons/migrator.php:385, src/addons/multisite.php:649
5125
  msgid "Must-use plugins"
5126
  msgstr ""
5127
 
5128
- #: src/addons/multisite.php:173
5129
  msgid "Multisite Install"
5130
  msgstr ""
5131
 
@@ -5221,13 +5322,13 @@ msgstr ""
5221
  msgid "WordPress Core"
5222
  msgstr ""
5223
 
5224
- #: src/methods/addon-base-v2.php:301, src/methods/stream-base.php:315
5225
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5226
  msgstr ""
5227
 
5228
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5229
- #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2864,
5230
- #: src/admin.php:2899, src/admin.php:2908, src/methods/addon-base-v2.php:289,
5231
  #: src/methods/stream-base.php:301
5232
  msgid "Failed"
5233
  msgstr ""
@@ -5320,96 +5421,96 @@ msgstr ""
5320
  msgid "You do not appear to be authenticated with Dropbox"
5321
  msgstr ""
5322
 
5323
- #: src/methods/s3.php:1077
5324
  msgid "The communication with %s was not encrypted."
5325
  msgstr ""
5326
 
5327
- #: src/methods/s3.php:1075
5328
  msgid "The communication with %s was encrypted."
5329
  msgstr ""
5330
 
5331
- #: src/addons/googlecloud.php:756, src/methods/s3.php:1072
5332
  msgid "We accessed the bucket, and were able to create files within it."
5333
  msgstr ""
5334
 
5335
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5336
- #: src/methods/s3.php:1070, src/methods/s3.php:1082
5337
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5338
  msgstr ""
5339
 
5340
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5341
- #: src/methods/s3.php:1070, src/methods/s3.php:1082
5342
  msgid "Failure"
5343
  msgstr ""
5344
 
5345
- #: src/methods/s3.php:1058
5346
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5347
  msgstr ""
5348
 
5349
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5350
- #: src/methods/s3.php:1052
5351
  msgid "Region"
5352
  msgstr ""
5353
 
5354
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5355
- #: src/methods/s3.php:1034
5356
  msgid "Failure: No bucket details were given."
5357
  msgstr ""
5358
 
5359
- #: src/methods/s3.php:1012
5360
  msgid "API secret"
5361
  msgstr ""
5362
 
5363
- #: src/methods/s3.php:888
5364
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5365
  msgstr ""
5366
 
5367
- #: src/methods/s3.php:887
5368
  msgid "%s location"
5369
  msgstr ""
5370
 
5371
- #: src/methods/s3.php:883
5372
  msgid "%s secret key"
5373
  msgstr ""
5374
 
5375
- #: src/methods/s3.php:879
5376
  msgid "%s access key"
5377
  msgstr ""
5378
 
5379
- #: src/methods/s3.php:844
5380
  msgid "If you see errors about SSL certificates, then please go here for help."
5381
  msgstr ""
5382
 
5383
- #: src/methods/s3.php:842
5384
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5385
  msgstr ""
5386
 
5387
- #: src/methods/s3.php:462, src/methods/s3.php:574, src/methods/s3.php:646,
5388
- #: src/methods/s3.php:749
5389
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5390
  msgstr ""
5391
 
5392
- #: src/methods/s3.php:732, src/methods/s3.php:742, src/methods/s3.php:778
5393
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5394
  msgstr ""
5395
 
5396
- #: src/methods/s3.php:440
5397
  msgid "%s re-assembly error (%s): (see log file for more)"
5398
  msgstr ""
5399
 
5400
- #: src/methods/s3.php:436
5401
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5402
  msgstr ""
5403
 
5404
- #: src/methods/s3.php:420
5405
  msgid "%s chunk %s: upload failed"
5406
  msgstr ""
5407
 
5408
- #: src/methods/s3.php:410
5409
  msgid "%s error: file %s was shortened unexpectedly"
5410
  msgstr ""
5411
 
5412
- #: src/methods/s3.php:388
5413
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5414
  msgstr ""
5415
 
@@ -5421,7 +5522,7 @@ msgstr ""
5421
  msgid "WordPress Backup"
5422
  msgstr ""
5423
 
5424
- #: src/methods/cloudfiles.php:582, src/methods/openstack-base.php:495
5425
  msgid "We accessed the container, and were able to create files within it."
5426
  msgstr ""
5427
 
@@ -5429,7 +5530,7 @@ msgstr ""
5429
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5430
  msgstr ""
5431
 
5432
- #: src/methods/cloudfiles.php:551, src/methods/openstack-base.php:437
5433
  msgid "Failure: No container details were given."
5434
  msgstr ""
5435
 
@@ -5440,7 +5541,7 @@ msgid "Username"
5440
  msgstr ""
5441
 
5442
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5443
- #: src/methods/s3.php:1008
5444
  msgid "API key"
5445
  msgstr ""
5446
 
@@ -5448,18 +5549,18 @@ msgstr ""
5448
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5449
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5450
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5451
- #: src/admin.php:712, src/methods/addon-base-v2.php:282,
5452
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles-new.php:178,
5453
  #: src/methods/cloudfiles.php:526, src/methods/cloudfiles.php:531,
5454
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5455
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5456
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5457
- #: src/methods/s3.php:1008, src/methods/s3.php:1012
5458
  msgid "Failure: No %s was given."
5459
  msgstr ""
5460
 
5461
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5462
- #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5463
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5464
  msgstr ""
5465
 
@@ -5498,11 +5599,11 @@ msgstr ""
5498
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5499
  msgstr ""
5500
 
5501
- #: src/admin.php:735, src/methods/backup-module.php:247
5502
  msgid "Test %s Settings"
5503
  msgstr ""
5504
 
5505
- #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
5506
  #: src/methods/cloudfiles.php:405, src/methods/stream-base.php:265
5507
  msgid "Error opening local file: Failed to download"
5508
  msgstr ""
@@ -5513,13 +5614,13 @@ msgstr ""
5513
 
5514
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5515
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5516
- #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5517
- #: src/methods/s3.php:356, src/methods/s3.php:368, src/methods/s3.php:369
5518
  msgid "%s Error: Failed to upload"
5519
  msgstr ""
5520
 
5521
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5522
- #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5523
  #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5524
  msgid "%s Error: Failed to open local file"
5525
  msgstr ""
@@ -5568,8 +5669,8 @@ msgstr ""
5568
 
5569
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5570
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5571
- #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:531,
5572
- #: src/methods/s3.php:802, src/methods/stream-base.php:218
5573
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5574
  msgstr ""
5575
 
@@ -5601,9 +5702,9 @@ msgstr ""
5601
 
5602
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5603
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5604
- #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5605
- #: src/methods/googledrive.php:428, src/methods/openstack-base.php:495,
5606
- #: src/methods/s3.php:1072, src/methods/stream-base.php:312
5607
  msgid "Success"
5608
  msgstr ""
5609
 
@@ -5642,31 +5743,31 @@ msgstr ""
5642
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5643
  msgstr ""
5644
 
5645
- #: src/addons/migrator.php:1775, src/admin.php:1233, src/admin.php:2867,
5646
- #: src/admin.php:2901, src/admin.php:2905, src/admin.php:3828,
5647
- #: src/restorer.php:2273, src/restorer.php:2378
5648
  msgid "OK"
5649
  msgstr ""
5650
 
5651
- #: src/restorer.php:2267, src/restorer.php:2342
5652
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5653
  msgstr ""
5654
 
5655
- #: src/addons/migrator.php:1154, src/restorer.php:2170
5656
  msgid "the database query being run was:"
5657
  msgstr ""
5658
 
5659
- #: src/restorer.php:1873
5660
  msgid "will restore as:"
5661
  msgstr ""
5662
 
5663
- #: src/class-updraftplus.php:4786, src/restorer.php:1688,
5664
- #: src/restorer.php:1777, src/restorer.php:1803
5665
  msgid "Old table prefix:"
5666
  msgstr ""
5667
 
5668
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5669
- #: src/backup.php:960, src/class-updraftplus.php:4725
5670
  msgid "Backup of:"
5671
  msgstr ""
5672
 
@@ -5738,152 +5839,152 @@ msgstr ""
5738
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5739
  msgstr ""
5740
 
5741
- #: src/admin.php:3836, src/admin.php:3837
5742
  msgid "Could not find one of the files for restoration"
5743
  msgstr ""
5744
 
5745
- #: src/admin.php:3946
5746
  msgid "Error message"
5747
  msgstr ""
5748
 
5749
- #: src/admin.php:3833
5750
  msgid "The backup records do not contain information about the proper size of this file."
5751
  msgstr ""
5752
 
5753
- #: src/admin.php:3825
5754
  msgid "Archive is expected to be size:"
5755
  msgstr ""
5756
 
5757
- #: src/admin.php:3722
5758
  msgid "If making a request for support, please include this information:"
5759
  msgstr ""
5760
 
5761
- #: src/admin.php:3721
5762
  msgid "ABORT: Could not find the information on which entities to restore."
5763
  msgstr ""
5764
 
5765
- #: src/admin.php:3676
5766
  msgid "UpdraftPlus Restoration: Progress"
5767
  msgstr ""
5768
 
5769
- #: src/admin.php:3628
5770
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5771
  msgstr ""
5772
 
5773
- #: src/admin.php:3570
5774
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5775
  msgstr ""
5776
 
5777
- #: src/admin.php:3579
5778
  msgid "Delete this backup set"
5779
  msgstr ""
5780
 
5781
- #: src/admin.php:3240
5782
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5783
  msgstr ""
5784
 
5785
- #: src/admin.php:3237
5786
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5787
  msgstr ""
5788
 
5789
- #: src/admin.php:3235
5790
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5791
  msgstr ""
5792
 
5793
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5794
- #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5795
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5796
  msgstr ""
5797
 
5798
- #: src/templates/wp-admin/settings/form-contents.php:401
5799
  msgid "Save Changes"
5800
  msgstr ""
5801
 
5802
- #: src/templates/wp-admin/settings/form-contents.php:378
5803
  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."
5804
  msgstr ""
5805
 
5806
- #: src/templates/wp-admin/settings/form-contents.php:377
5807
  msgid "Disable SSL entirely where possible"
5808
  msgstr ""
5809
 
5810
- #: src/templates/wp-admin/settings/form-contents.php:373
5811
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5812
  msgstr ""
5813
 
5814
- #: src/templates/wp-admin/settings/form-contents.php:373
5815
  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."
5816
  msgstr ""
5817
 
5818
- #: src/templates/wp-admin/settings/form-contents.php:372
5819
  msgid "Do not verify SSL certificates"
5820
  msgstr ""
5821
 
5822
- #: src/templates/wp-admin/settings/form-contents.php:368
5823
  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."
5824
  msgstr ""
5825
 
5826
- #: src/templates/wp-admin/settings/form-contents.php:367
5827
  msgid "Use the server's SSL certificates"
5828
  msgstr ""
5829
 
5830
- #: src/admin.php:3101
5831
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
5832
  msgstr ""
5833
 
5834
- #: src/admin.php:3101
5835
  msgid "click here"
5836
  msgstr ""
5837
 
5838
- #: src/admin.php:3101
5839
  msgid "or, to reset this option"
5840
  msgstr ""
5841
 
5842
- #: src/admin.php:3101
5843
  msgid "Follow this link to attempt to create the directory and set the permissions"
5844
  msgstr ""
5845
 
5846
- #: src/admin.php:3093
5847
  msgid "Backup directory specified is writable, which is good."
5848
  msgstr ""
5849
 
5850
- #: src/templates/wp-admin/settings/form-contents.php:348
5851
  msgid "Backup directory"
5852
  msgstr ""
5853
 
5854
- #: src/templates/wp-admin/settings/form-contents.php:343
5855
  msgid "Delete local backup"
5856
  msgstr ""
5857
 
5858
- #: src/templates/wp-admin/settings/form-contents.php:323
5859
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5860
  msgstr ""
5861
 
5862
- #: src/templates/wp-admin/settings/form-contents.php:323
5863
  msgid "Show expert settings"
5864
  msgstr ""
5865
 
5866
- #: src/templates/wp-admin/settings/form-contents.php:322
5867
  msgid "Expert settings"
5868
  msgstr ""
5869
 
5870
- #: src/templates/wp-admin/settings/form-contents.php:333
5871
  msgid "Debug mode"
5872
  msgstr ""
5873
 
5874
- #: src/templates/wp-admin/settings/form-contents.php:318
5875
  msgid "Advanced / Debugging Settings"
5876
  msgstr ""
5877
 
5878
- #: src/admin.php:671
5879
  msgid "Requesting start of backup..."
5880
  msgstr ""
5881
 
5882
- #: src/addons/morefiles.php:297, src/admin.php:687
5883
  msgid "Cancel"
5884
  msgstr ""
5885
 
5886
- #: src/addons/reporting.php:233, src/admin.php:3384
5887
  msgid "None"
5888
  msgstr ""
5889
 
@@ -5891,32 +5992,32 @@ msgstr ""
5891
  msgid "Choose your remote storage"
5892
  msgstr ""
5893
 
5894
- #: src/templates/wp-admin/settings/form-contents.php:207
5895
  msgid "Manually decrypt a database backup file"
5896
  msgstr ""
5897
 
5898
- #: src/templates/wp-admin/settings/form-contents.php:186
5899
  msgid "Database encryption phrase"
5900
  msgstr ""
5901
 
5902
- #: src/templates/wp-admin/settings/form-contents.php:285,
5903
  #: src/udaddons/options.php:133
5904
  msgid "Email"
5905
  msgstr ""
5906
 
5907
- #: src/templates/wp-admin/settings/form-contents.php:176
5908
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5909
  msgstr ""
5910
 
5911
- #: src/addons/morefiles.php:443, src/admin.php:3171
5912
  msgid "Exclude these:"
5913
  msgstr ""
5914
 
5915
- #: src/admin.php:3162
5916
  msgid "Any other directories found inside wp-content"
5917
  msgstr ""
5918
 
5919
- #: src/templates/wp-admin/settings/form-contents.php:173
5920
  msgid "Include in files backup"
5921
  msgstr ""
5922
 
@@ -5928,49 +6029,49 @@ msgstr ""
5928
  msgid "To fix the time at which a backup should take place,"
5929
  msgstr ""
5930
 
5931
- #: src/admin.php:3087
5932
  msgid "Monthly"
5933
  msgstr ""
5934
 
5935
- #: src/admin.php:3086
5936
  msgid "Fortnightly"
5937
  msgstr ""
5938
 
5939
- #: src/admin.php:3085
5940
  msgid "Weekly"
5941
  msgstr ""
5942
 
5943
- #: src/admin.php:3084
5944
  msgid "Daily"
5945
  msgstr ""
5946
 
5947
- #: src/admin.php:694, src/admin.php:3067
5948
  msgid "Download log file"
5949
  msgstr ""
5950
 
5951
- #: src/admin.php:2964
5952
  msgid "The folder exists, but your webserver does not have permission to write to it."
5953
  msgstr ""
5954
 
5955
- #: src/admin.php:2959
5956
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
5957
  msgstr ""
5958
 
5959
- #: src/admin.php:2945
5960
  msgid "The request to the filesystem to create the directory failed."
5961
  msgstr ""
5962
 
5963
- #: src/addons/migrator.php:2253, src/admin.php:688, src/admin.php:2861,
5964
- #: src/admin.php:2894, src/admin.php:3579,
5965
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5966
  msgid "Delete"
5967
  msgstr ""
5968
 
5969
- #: src/admin.php:2645
5970
  msgid "(None)"
5971
  msgstr ""
5972
 
5973
- #: src/admin.php:2801
5974
  msgid "show log"
5975
  msgstr ""
5976
 
@@ -6075,7 +6176,7 @@ msgstr ""
6075
  msgid "Multisite"
6076
  msgstr ""
6077
 
6078
- #: src/admin.php:2464
6079
  msgid "Go here for help."
6080
  msgstr ""
6081
 
@@ -6128,27 +6229,27 @@ msgstr ""
6128
  msgid "Delete backup set"
6129
  msgstr ""
6130
 
6131
- #: src/admin.php:670
6132
  msgid "Download error: the server sent us a response which we did not understand."
6133
  msgstr ""
6134
 
6135
- #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:780,
6136
- #: src/addons/migrator.php:1026, src/addons/migrator.php:1107,
6137
- #: src/addons/migrator.php:1154, src/addons/migrator.php:1388,
6138
- #: src/addons/migrator.php:1714, src/addons/migrator.php:1741,
6139
- #: src/addons/migrator.php:1747, src/addons/migrator.php:1809,
6140
- #: src/addons/migrator.php:1849, src/addons/migrator.php:1888,
6141
- #: src/addons/migrator.php:1898, src/addons/migrator.php:1903,
6142
- #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6143
- #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6144
- #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6145
- #: src/admin.php:3830, src/admin.php:3860, src/methods/remotesend.php:71,
6146
- #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6147
- #: src/restorer.php:1408
6148
  msgid "Error:"
6149
  msgstr ""
6150
 
6151
- #: src/admin.php:653,
6152
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6153
  msgid "calculating..."
6154
  msgstr ""
@@ -6193,32 +6294,32 @@ msgstr ""
6193
  msgid "More tasks:"
6194
  msgstr ""
6195
 
6196
- #: src/admin.php:2564
6197
  msgid "Download most recently modified log file"
6198
  msgstr ""
6199
 
6200
- #: src/admin.php:2523, src/admin.php:2529, src/central/bootstrap.php:169
6201
  msgid "(Nothing yet logged)"
6202
  msgstr ""
6203
 
6204
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6205
- #: src/admin.php:2522, src/admin.php:2527
6206
  msgid "Last log message"
6207
  msgstr ""
6208
 
6209
- #: src/addons/migrator.php:232, src/admin.php:693, src/admin.php:3570,
6210
  #: src/templates/wp-admin/settings/tab-status.php:30
6211
  msgid "Restore"
6212
  msgstr ""
6213
 
6214
- #: src/admin.php:514, src/admin.php:686,
6215
  #: src/templates/wp-admin/settings/tab-status.php:27
6216
  msgid "Backup Now"
6217
  msgstr ""
6218
 
6219
  #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6220
- #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3359,
6221
- #: src/admin.php:3439, src/admin.php:3914,
6222
  #: src/includes/class-wpadmin-commands.php:147,
6223
  #: src/includes/class-wpadmin-commands.php:480,
6224
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
@@ -6226,7 +6327,7 @@ msgstr ""
6226
  msgid "Database"
6227
  msgstr ""
6228
 
6229
- #: src/admin.php:295, src/admin.php:4388
6230
  msgid "Files"
6231
  msgstr ""
6232
 
@@ -6238,11 +6339,11 @@ msgstr ""
6238
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
6239
  msgstr ""
6240
 
6241
- #: src/admin.php:275
6242
  msgid "At the same time as the files backup"
6243
  msgstr ""
6244
 
6245
- #: src/admin.php:265, src/admin.php:286, src/admin.php:293
6246
  msgid "Nothing currently scheduled"
6247
  msgstr ""
6248
 
@@ -6254,15 +6355,15 @@ msgstr ""
6254
  msgid "JavaScript warning"
6255
  msgstr ""
6256
 
6257
- #: src/admin.php:673, src/admin.php:2591
6258
  msgid "Delete Old Directories"
6259
  msgstr ""
6260
 
6261
- #: src/admin.php:2336
6262
  msgid "Current limit is:"
6263
  msgstr ""
6264
 
6265
- #: src/admin.php:2310
6266
  msgid "Your backup has been restored."
6267
  msgstr ""
6268
 
@@ -6274,123 +6375,123 @@ msgstr ""
6274
  msgid "Lead developer's homepage"
6275
  msgstr ""
6276
 
6277
- #: src/admin.php:4308
6278
  msgid "Your settings have been wiped."
6279
  msgstr ""
6280
 
6281
- #: src/admin.php:2270
6282
  msgid "Backup directory successfully created."
6283
  msgstr ""
6284
 
6285
- #: src/admin.php:2263
6286
  msgid "Backup directory could not be created"
6287
  msgstr ""
6288
 
6289
- #: src/admin.php:2833
6290
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6291
  msgstr ""
6292
 
6293
- #: src/admin.php:2831
6294
  msgid "Old directories successfully removed."
6295
  msgstr ""
6296
 
6297
- #: src/admin.php:2828, src/admin.php:2828
6298
  msgid "Remove old directories"
6299
  msgstr ""
6300
 
6301
  #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6302
- #: src/admin.php:2212, src/admin.php:2221, src/admin.php:2230,
6303
- #: src/admin.php:2272, src/admin.php:2835
6304
  msgid "Return to UpdraftPlus Configuration"
6305
  msgstr ""
6306
 
6307
- #: src/admin.php:666, src/admin.php:2212, src/admin.php:2221,
6308
- #: src/admin.php:2230, src/admin.php:2272, src/admin.php:2835,
6309
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6310
  msgid "Actions"
6311
  msgstr ""
6312
 
6313
- #: src/admin.php:2131
6314
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6315
  msgstr ""
6316
 
6317
- #: src/admin.php:2041
6318
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6319
  msgstr ""
6320
 
6321
- #: src/admin.php:1922
6322
  msgid "No local copy present."
6323
  msgstr ""
6324
 
6325
- #: src/admin.php:1919
6326
  msgid "Download in progress"
6327
  msgstr ""
6328
 
6329
- #: src/admin.php:665, src/admin.php:1908
6330
  msgid "File ready."
6331
  msgstr ""
6332
 
6333
- #: src/admin.php:1889
6334
  msgid "Download failed"
6335
  msgstr ""
6336
 
6337
- #: src/admin.php:663, src/admin.php:1241, src/admin.php:1668,
6338
- #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6339
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6340
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6341
- #: src/methods/stream-base.php:200, src/restorer.php:2269,
6342
- #: src/restorer.php:2294, src/restorer.php:2375, src/updraftplus.php:156
6343
  msgid "Error"
6344
  msgstr ""
6345
 
6346
- #: src/admin.php:1696
6347
  msgid "Could not find that job - perhaps it has already finished?"
6348
  msgstr ""
6349
 
6350
- #: src/admin.php:1688
6351
  msgid "Job deleted"
6352
  msgstr ""
6353
 
6354
- #: src/admin.php:1772
6355
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6356
  msgstr ""
6357
 
6358
- #: src/admin.php:738
6359
  msgid "Nothing yet logged"
6360
  msgstr ""
6361
 
6362
- #: src/admin.php:957
6363
  msgid "Please consult this FAQ if you have problems backing up."
6364
  msgstr ""
6365
 
6366
- #: src/admin.php:957
6367
  msgid "Your website is hosted using the %s web server."
6368
  msgstr ""
6369
 
6370
- #: src/admin.php:953
6371
  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."
6372
  msgstr ""
6373
 
6374
- #: src/admin.php:949
6375
  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."
6376
  msgstr ""
6377
 
6378
- #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6379
- #: src/admin.php:957, src/admin.php:966, src/admin.php:3228,
6380
- #: src/admin.php:3235, src/admin.php:3237, src/methods/cloudfiles-new.php:107,
6381
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6382
- #: src/methods/openstack-base.php:541, src/methods/s3.php:827,
6383
- #: src/methods/s3.php:831, src/methods/updraftvault.php:286,
6384
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6385
  #: src/udaddons/updraftplus-addons.php:242
6386
  msgid "Warning"
6387
  msgstr ""
6388
 
6389
- #: src/admin.php:886
6390
  msgid "Add-Ons / Pro Support"
6391
  msgstr ""
6392
 
6393
- #: src/admin.php:530, src/admin.php:882,
6394
  #: src/templates/wp-admin/settings/tab-bar.php:7
6395
  msgid "Settings"
6396
  msgstr ""
@@ -6399,7 +6500,7 @@ msgstr ""
6399
  msgid "Could not create %s zip. Consult the log file for more information."
6400
  msgstr ""
6401
 
6402
- #: src/backup.php:2050
6403
  msgid "Infinite recursion: consult your log for more information"
6404
  msgstr ""
6405
 
@@ -6411,50 +6512,50 @@ msgstr ""
6411
  msgid "Like UpdraftPlus and can spare one minute?"
6412
  msgstr ""
6413
 
6414
- #: src/addons/azure.php:217, src/class-updraftplus.php:4449,
6415
- #: src/methods/googledrive.php:1006, src/methods/s3.php:321
6416
  msgid "File not found"
6417
  msgstr ""
6418
 
6419
- #: src/class-updraftplus.php:4356
6420
  msgid "The decryption key used:"
6421
  msgstr ""
6422
 
6423
- #: src/class-updraftplus.php:4356, src/class-updraftplus.php:4665,
6424
  #: src/restorer.php:389
6425
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6426
  msgstr ""
6427
 
6428
- #: src/class-updraftplus.php:4337, src/class-updraftplus.php:4653,
6429
  #: src/restorer.php:376
6430
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6431
  msgstr ""
6432
 
6433
- #: src/backup.php:1933
6434
  msgid "Could not open the backup file for writing"
6435
  msgstr ""
6436
 
6437
- #: src/class-updraftplus.php:3731
6438
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6439
  msgstr ""
6440
 
6441
- #: src/class-updraftplus.php:3691
6442
  msgid "Could not read the directory"
6443
  msgstr ""
6444
 
6445
- #: src/admin.php:1959, src/backup.php:1157
6446
  msgid "Backup directory (%s) is not writable, or does not exist."
6447
  msgstr ""
6448
 
6449
- #: src/backup.php:961
6450
  msgid "WordPress backup is complete"
6451
  msgstr ""
6452
 
6453
- #: src/class-updraftplus.php:3203
6454
  msgid "The backup attempt has finished, apparently unsuccessfully"
6455
  msgstr ""
6456
 
6457
- #: src/class-updraftplus.php:3188
6458
  msgid "The backup apparently succeeded and is now complete"
6459
  msgstr ""
6460
 
@@ -6462,42 +6563,42 @@ msgstr ""
6462
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6463
  msgstr ""
6464
 
6465
- #: src/class-updraftplus.php:2485
6466
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6467
  msgstr ""
6468
 
6469
- #: src/class-updraftplus.php:1755
6470
  msgid "Others"
6471
  msgstr ""
6472
 
6473
- #: src/addons/multisite.php:464, src/class-updraftplus.php:1740
6474
  msgid "Uploads"
6475
  msgstr ""
6476
 
6477
- #: src/class-updraftplus.php:1739
6478
  msgid "Themes"
6479
  msgstr ""
6480
 
6481
- #: src/class-updraftplus.php:1738
6482
  msgid "Plugins"
6483
  msgstr ""
6484
 
6485
- #: src/class-updraftplus.php:521
6486
  msgid "No log files were found."
6487
  msgstr ""
6488
 
6489
- #: src/admin.php:1841, src/admin.php:1845, src/class-updraftplus.php:516
6490
  msgid "The log file could not be read."
6491
  msgstr ""
6492
 
6493
- #: src/admin.php:973, src/admin.php:977, src/admin.php:981, src/admin.php:985,
6494
- #: src/admin.php:989, src/class-updraftplus.php:481,
6495
- #: src/class-updraftplus.php:516, src/class-updraftplus.php:521,
6496
- #: src/class-updraftplus.php:526
6497
  msgid "UpdraftPlus notice:"
6498
  msgstr ""
6499
 
6500
- #: src/addons/multisite.php:65, src/addons/multisite.php:686,
6501
  #: src/options.php:50
6502
  msgid "UpdraftPlus Backups"
6503
  msgstr ""
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/restorer.php:1872
15
+ msgid "Requested table character set (%s) is not present - changing to %s."
16
+ msgstr ""
17
+
18
+ #: src/class-updraftplus.php:4506
19
+ msgid "Your chosen character set to use instead:"
20
+ msgstr ""
21
+
22
+ #: src/class-updraftplus.php:4499
23
+ msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
24
+ msgstr ""
25
+
26
+ #: src/class-updraftplus.php:4499
27
+ msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
28
+ msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
29
+ msgstr[0] ""
30
+ msgstr[1] ""
31
+
32
+ #: src/central/bootstrap.php:572
33
+ msgid "Create another key"
34
+ msgstr ""
35
+
36
+ #: src/central/bootstrap.php:501
37
+ msgid "UpdraftCentral dashboard connection details"
38
+ msgstr ""
39
+
40
+ #: src/central/bootstrap.php:495
41
+ msgid "Next"
42
+ msgstr ""
43
+
44
+ #: src/central/bootstrap.php:490
45
+ msgid "the UpdraftCentral dashboard plugin"
46
+ msgstr ""
47
+
48
+ #: src/central/bootstrap.php:490
49
+ msgid "On my own website on which I have installed"
50
+ msgstr ""
51
+
52
+ #: src/central/bootstrap.php:485
53
+ msgid "an account"
54
+ msgstr ""
55
+
56
+ #: src/central/bootstrap.php:485
57
+ msgid "i.e. if you have %s there"
58
+ msgstr ""
59
+
60
+ #: src/central/bootstrap.php:477
61
+ msgid "Connect this site to an UpdraftCentral dashboard found at..."
62
+ msgstr ""
63
+
64
+ #: src/central/bootstrap.php:451
65
+ msgid "Manage existing keys (%d)..."
66
+ msgstr ""
67
+
68
+ #: src/central/bootstrap.php:401
69
+ msgid "There are no UpdraftCentral dashboards that can currently control this site."
70
+ msgstr ""
71
+
72
+ #: src/central/bootstrap.php:238
73
+ msgid "You can now control this site via your UpdraftCentral dashboard at %s."
74
+ msgstr ""
75
+
76
+ #: src/central/bootstrap.php:236
77
+ msgid "Detailed instructions for this can be found at %s"
78
+ msgstr ""
79
+
80
+ #: src/central/bootstrap.php:236
81
+ msgid "You now need to copy the key below and enter it at your %s."
82
+ msgstr ""
83
+
84
+ #: src/admin.php:761
85
+ msgid "Please enter a valid URL e.g http://example.com"
86
+ msgstr ""
87
+
88
+ #: src/addons/backblaze.php:576
89
+ msgid "your Backblaze console"
90
+ msgstr ""
91
+
92
+ #: src/addons/backblaze.php:576
93
+ msgid "There are limits upon which path-names are valid. Spaces are not allowed."
94
+ msgstr ""
95
+
96
+ #: src/addons/backblaze.php:576
97
+ msgid "N.B. You need to create the bucket in %s first."
98
+ msgstr ""
99
+
100
+ #: src/addons/backblaze.php:575
101
+ msgid "some/path"
102
+ msgstr ""
103
+
104
+ #: src/addons/backblaze.php:575
105
+ msgid "Bucket name"
106
+ msgstr ""
107
+
108
+ #: src/addons/backblaze.php:574
109
+ msgid "Backup path"
110
+ msgstr ""
111
+
112
+ #: src/addons/backblaze.php:569
113
+ msgid "Application key"
114
+ msgstr ""
115
+
116
+ #: src/addons/backblaze.php:564, src/addons/backblaze.php:564
117
+ msgid "here"
118
+ msgstr ""
119
+
120
+ #: src/addons/backblaze.php:564
121
+ msgid "Get these settings from %s, or sign up %s."
122
+ msgstr ""
123
+
124
+ #: src/addons/backblaze.php:434
125
+ msgid "Bucket not found"
126
+ msgstr ""
127
+
128
+ #: src/addons/backblaze.php:390
129
+ msgid "Account Key"
130
+ msgstr ""
131
+
132
+ #: src/addons/backblaze.php:389, src/addons/backblaze.php:562
133
+ msgid "Account ID"
134
+ msgstr ""
135
+
136
+ #: src/class-updraftplus.php:4377
137
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
138
  msgstr ""
139
 
140
+ #: src/class-updraftplus.php:4375, src/class-updraftplus.php:4377
141
  msgid "the migrator add-on"
142
  msgstr ""
143
 
144
+ #: src/class-updraftplus.php:4375
145
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
146
  msgstr ""
147
 
148
+ #: src/class-updraftplus.php:4373
149
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
150
  msgstr ""
151
 
152
+ #: src/class-updraftplus.php:4370
153
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
154
  msgstr ""
155
 
165
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
166
  msgstr ""
167
 
168
+ #: src/admin.php:742
169
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
170
  msgstr ""
171
 
172
+ #: src/admin.php:1292, src/admin.php:3976, src/class-updraftplus.php:2125,
173
+ #: src/class-updraftplus.php:2190, src/class-updraftplus.php:2324
174
  msgid "A PHP fatal error (%s) has occurred: %s"
175
  msgstr ""
176
 
177
+ #: src/admin.php:1285, src/admin.php:3968, src/class-updraftplus.php:2118,
178
+ #: src/class-updraftplus.php:2183, src/class-updraftplus.php:2317
179
  msgid "A PHP exception (%s) has occurred: %s"
180
  msgstr ""
181
 
215
  msgid "Remote storage"
216
  msgstr ""
217
 
218
+ #: src/templates/wp-admin/settings/form-contents.php:219
219
  msgid "Select Files"
220
  msgstr ""
221
 
231
  msgid "Instant and secure logon with a wave of your phone."
232
  msgstr ""
233
 
234
+ #: src/backup.php:1909
235
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
236
  msgstr ""
237
 
238
+ #: src/admin.php:4465
239
  msgid "Value"
240
  msgstr ""
241
 
242
+ #: src/admin.php:1557
243
  msgid "Did not know how to delete from this cloud service."
244
  msgstr ""
245
 
251
  msgid "__Check this box to use Amazon's server-side encryption"
252
  msgstr ""
253
 
254
+ #: src/addons/azure.php:549
255
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
256
  msgstr ""
257
 
263
  msgid "Cloud Files"
264
  msgstr ""
265
 
266
+ #: src/admin.php:4303
267
  msgid "Your settings failed to save. Please refresh the settings page and try again"
268
  msgstr ""
269
 
270
+ #: src/admin.php:4262
271
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
272
  msgstr ""
273
 
284
  msgid "Extra database"
285
  msgstr ""
286
 
287
+ #: src/admin.php:3545
288
  msgid "Press here to download or browse"
289
  msgstr ""
290
 
291
+ #: src/admin.php:1074, src/admin.php:1084
292
  msgid "Error: invalid path"
293
  msgstr ""
294
 
295
+ #: src/admin.php:932
296
  msgid "An error occurred when fetching storage module options: "
297
  msgstr ""
298
 
299
+ #: src/admin.php:758
300
  msgid "Loading log file"
301
  msgstr ""
302
 
303
+ #: src/admin.php:757
304
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
305
  msgstr ""
306
 
307
+ #: src/admin.php:756
308
  msgid "Search"
309
  msgstr ""
310
 
311
+ #: src/admin.php:755
312
  msgid "Select a file to view information about it"
313
  msgstr ""
314
 
315
+ #: src/admin.php:754
316
  msgid "Browsing zip file"
317
  msgstr ""
318
 
319
+ #: src/admin.php:723
320
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
321
  msgstr ""
322
 
323
+ #: src/admin.php:671
324
  msgid "Browse contents"
325
  msgstr ""
326
 
327
+ #: src/restorer.php:1693
328
  msgid "Skipped tables:"
329
  msgstr ""
330
 
331
+ #: src/class-updraftplus.php:4557
332
  msgid "This database backup has the following WordPress tables excluded: %s"
333
  msgstr ""
334
 
335
+ #: src/admin.php:2524
336
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
337
  msgstr ""
338
 
339
+ #: src/admin.php:2524
340
  msgid "All WordPress tables will be backed up."
341
  msgstr ""
342
 
343
+ #: src/admin.php:753
344
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
345
  msgstr ""
346
 
347
+ #: src/admin.php:753
348
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
349
  msgstr ""
350
 
351
+ #: src/admin.php:753
352
  msgid "The available memory on the server."
353
  msgstr ""
354
 
355
+ #: src/admin.php:753
356
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
357
  msgstr ""
358
 
359
+ #: src/admin.php:753
360
  msgid "The file failed to upload. Please check the following:"
361
  msgstr ""
362
 
363
+ #: src/admin.php:752
364
  msgid "HTTP code:"
365
  msgstr ""
366
 
367
+ #: src/admin.php:648
368
  msgid "You have chosen to backup a database, but no tables have been selected"
369
  msgstr ""
370
 
533
  msgid "UpdraftPlus"
534
  msgstr ""
535
 
536
+ #: src/templates/wp-admin/settings/form-contents.php:243
537
  msgid "Recommended: optimize your database with WP-Optimize."
538
  msgstr ""
539
 
828
  msgid "Export / import settings"
829
  msgstr ""
830
 
831
+ #: src/restorer.php:1881
832
  msgid "Processing table (%s)"
833
  msgstr ""
834
 
835
+ #: src/restorer.php:1659
836
  msgid "Backup of: %s"
837
  msgstr ""
838
 
852
  msgid "Follow this link to deauthenticate with %s."
853
  msgstr ""
854
 
855
+ #: src/central/bootstrap.php:567
856
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
857
  msgstr ""
858
 
859
+ #: src/backup.php:1529
860
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
861
  msgstr ""
862
 
864
  msgid "You have selected a remote storage option which has an authorization step to complete:"
865
  msgstr ""
866
 
867
+ #: src/admin.php:1633
868
  msgid "Remote files deleted:"
869
  msgstr ""
870
 
871
+ #: src/admin.php:1632
872
  msgid "Local files deleted:"
873
  msgstr ""
874
 
875
+ #: src/admin.php:977, src/admin.php:981, src/admin.php:989, src/admin.php:993
876
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
877
  msgstr ""
878
 
879
+ #: src/admin.php:751
880
  msgid "remote files deleted"
881
  msgstr ""
882
 
883
+ #: src/admin.php:749
884
  msgid "Complete"
885
  msgstr ""
886
 
887
+ #: src/admin.php:748
888
  msgid "Do you want to carry out the import?"
889
  msgstr ""
890
 
891
+ #: src/admin.php:747
892
  msgid "Which was exported on:"
893
  msgstr ""
894
 
895
+ #: src/admin.php:746
896
  msgid "This will import data from:"
897
  msgstr ""
898
 
899
+ #: src/admin.php:745
900
  msgid "Importing..."
901
  msgstr ""
902
 
903
+ #: src/admin.php:741
904
  msgid "You have not yet selected a file to import."
905
  msgstr ""
906
 
907
+ #: src/admin.php:725
908
  msgid "Your export file will be of your displayed settings, not your saved ones."
909
  msgstr ""
910
 
911
+ #: src/admin.php:84
912
  msgid "template not found"
913
  msgstr ""
914
 
949
  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"
950
  msgstr ""
951
 
952
+ #: src/admin.php:2348
953
  msgid "To fix this problem go here."
954
  msgstr ""
955
 
956
+ #: src/admin.php:2348
957
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
958
  msgstr ""
959
 
960
+ #: src/admin.php:709
961
  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."
962
  msgstr ""
963
 
989
  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."
990
  msgstr ""
991
 
992
+ #: src/methods/s3.php:1063
993
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
994
  msgstr ""
995
 
996
+ #: src/methods/s3.php:126
997
  msgid "No settings were found - please go to the Settings tab and check your settings"
998
  msgstr ""
999
 
1013
  msgid "FAQs"
1014
  msgstr ""
1015
 
1016
+ #: src/central/bootstrap.php:523
1017
  msgid "More information..."
1018
  msgstr ""
1019
 
1020
+ #: src/central/bootstrap.php:521
1021
  msgid "Use the alternative method for making a connection with the dashboard."
1022
  msgstr ""
1023
 
1024
+ #: src/central/bootstrap.php:438
 
 
 
 
1025
  msgid "Key size: %d bits"
1026
  msgstr ""
1027
 
1028
+ #: src/central/bootstrap.php:433
1029
  msgid "Public key was sent to:"
1030
  msgstr ""
1031
 
1032
+ #: src/backup.php:2107
1033
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1034
  msgstr ""
1035
 
1036
+ #: src/backup.php:2085
1037
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1038
  msgstr ""
1039
 
1041
  msgid "Create key"
1042
  msgstr ""
1043
 
1044
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:515
1045
  msgid "slower, strongest"
1046
  msgstr ""
1047
 
1048
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:514
1049
  msgid "recommended"
1050
  msgstr ""
1051
 
1052
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:514
1053
  msgid "%s bytes"
1054
  msgstr ""
1055
 
1056
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:513
1057
  msgid "faster (possibility for slow PHP installs)"
1058
  msgstr ""
1059
 
1060
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:512
1061
  msgid "easy to break, fastest"
1062
  msgstr ""
1063
 
1064
  #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
1065
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:512,
1066
+ #: src/central/bootstrap.php:513, src/central/bootstrap.php:515
1067
  msgid "%s bits"
1068
  msgstr ""
1069
 
1070
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:510
1071
  msgid "Encryption key size:"
1072
  msgstr ""
1073
 
1099
  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."
1100
  msgstr ""
1101
 
1102
+ #: src/class-updraftplus.php:1736
1103
  msgid "Size: %s MB"
1104
  msgstr ""
1105
 
1106
+ #: src/templates/wp-admin/settings/form-contents.php:337
 
 
 
 
 
 
 
 
1107
  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)."
1108
  msgstr ""
1109
 
1111
  msgid "Now"
1112
  msgstr ""
1113
 
1114
+ #: src/class-updraftplus.php:4389, src/restorer.php:1010
1115
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1116
  msgstr ""
1117
 
1133
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1134
  msgstr ""
1135
 
1136
+ #: src/class-updraftplus.php:520, src/class-updraftplus.php:565
1137
  msgid "The given file was not found, or could not be read."
1138
  msgstr ""
1139
 
1140
+ #: src/central/bootstrap.php:565
1141
  msgid "UpdraftCentral (Remote Control)"
1142
  msgstr ""
1143
 
1144
+ #: src/central/bootstrap.php:554
 
 
 
 
1145
  msgid "View recent UpdraftCentral log events"
1146
  msgstr ""
1147
 
1148
+ #: src/central/bootstrap.php:493
1149
  msgid "URL of mothership"
1150
  msgstr ""
1151
 
1152
+ #: src/central/bootstrap.php:504
1153
  msgid "Enter any description"
1154
  msgstr ""
1155
 
1156
+ #: src/central/bootstrap.php:503
1157
  msgid "Description"
1158
  msgstr ""
1159
 
1160
+ #: src/central/bootstrap.php:443
 
 
 
 
1161
  msgid "Delete..."
1162
  msgstr ""
1163
 
1164
+ #: src/central/bootstrap.php:436
1165
  msgid "Created:"
1166
  msgstr ""
1167
 
1168
+ #: src/central/bootstrap.php:433
1169
  msgid "Access this site as user:"
1170
  msgstr ""
1171
 
1172
+ #: src/central/bootstrap.php:457
 
 
 
 
1173
  msgid "Details"
1174
  msgstr ""
1175
 
1176
+ #: src/central/bootstrap.php:456
1177
  msgid "Key description"
1178
  msgstr ""
1179
 
1180
+ #: src/central/bootstrap.php:329, src/central/bootstrap.php:340
1181
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
1182
  msgstr ""
1183
 
1221
  msgid "UpdraftCentral Connection"
1222
  msgstr ""
1223
 
1224
+ #: src/backup.php:869, src/class-updraftplus.php:2806
1225
  msgid "The backup was aborted by the user"
1226
  msgstr ""
1227
 
1228
+ #: src/admin.php:4298
1229
  msgid "Your settings have been saved."
1230
  msgstr ""
1231
 
1232
+ #: src/admin.php:3432
1233
  msgid "Total backup size:"
1234
  msgstr ""
1235
 
1236
+ #: src/admin.php:2846
1237
  msgid "stop"
1238
  msgstr ""
1239
 
1240
+ #: src/admin.php:2684
1241
  msgid "The backup has finished running"
1242
  msgstr ""
1243
 
1263
  msgid "calculate"
1264
  msgstr ""
1265
 
1266
+ #: src/admin.php:724
1267
  msgid "You should save your changes to ensure that they are used for making your backup."
1268
  msgstr ""
1269
 
1270
+ #: src/admin.php:717
1271
  msgid "We requested to delete the file, but could not understand the server's response"
1272
  msgstr ""
1273
 
1274
+ #: src/admin.php:716
1275
  msgid "Please enter a valid URL"
1276
  msgstr ""
1277
 
1278
+ #: src/admin.php:699
1279
  msgid "Saving..."
1280
  msgstr ""
1281
 
1282
+ #: src/admin.php:662
1283
  msgid "Error: the server sent us a response which we did not understand."
1284
  msgstr ""
1285
 
1286
+ #: src/admin.php:654
1287
  msgid "Fetching..."
1288
  msgstr ""
1289
 
1291
  msgid "Asia Pacific (Seoul)"
1292
  msgstr ""
1293
 
1294
+ #: src/restorer.php:1682
1295
  msgid "Uploads URL:"
1296
  msgstr ""
1297
 
1303
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1304
  msgstr ""
1305
 
1306
+ #: src/class-updraftplus.php:4440, src/restorer.php:1701
1307
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1308
  msgstr ""
1309
 
1310
+ #: src/class-updraftplus.php:4436
1311
  msgid "Please read this link for important information on this process."
1312
  msgstr ""
1313
 
1314
+ #: src/class-updraftplus.php:4436
1315
  msgid "It will be imported as a new site."
1316
  msgstr ""
1317
 
1318
+ #: src/admin.php:2497, src/templates/wp-admin/notices/horizontal-notice.php:16,
1319
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1320
  msgid "Dismiss"
1321
  msgstr ""
1322
 
1323
+ #: src/admin.php:736
1324
  msgid "Please fill in the required information."
1325
  msgstr ""
1326
 
1327
+ #: src/addons/multisite.php:579
1328
  msgid "Read more..."
1329
  msgstr ""
1330
 
1331
+ #: src/addons/multisite.php:570
1332
  msgid "may include some site-wide data"
1333
  msgstr ""
1334
 
1335
+ #: src/addons/multisite.php:565
1336
  msgid "All sites"
1337
  msgstr ""
1338
 
1339
+ #: src/addons/multisite.php:561
1340
  msgid "Which site to restore"
1341
  msgstr ""
1342
 
1381
  msgid "Call WordPress action:"
1382
  msgstr ""
1383
 
1384
+ #: src/admin.php:2532
1385
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1386
  msgstr ""
1387
 
1388
+ #: src/admin.php:3856
1389
  msgid "Skipping: this archive was already restored."
1390
  msgstr ""
1391
 
1392
+ #: src/templates/wp-admin/settings/form-contents.php:167
1393
  msgid "File Options"
1394
  msgstr ""
1395
 
1417
  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)."
1418
  msgstr ""
1419
 
1420
+ #: src/admin.php:4175
1421
  msgid "Send this backup to remote storage"
1422
  msgstr ""
1423
 
1424
+ #: src/admin.php:4173
1425
  msgid "Check out UpdraftPlus Vault."
1426
  msgstr ""
1427
 
1428
+ #: src/admin.php:4173
1429
  msgid "Not got any remote storage?"
1430
  msgstr ""
1431
 
1432
+ #: src/admin.php:4173
1433
  msgid "settings"
1434
  msgstr ""
1435
 
1436
+ #: src/admin.php:4173
1437
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1438
  msgstr ""
1439
 
1440
+ #: src/admin.php:2530
1441
  msgid "Include any files in the backup"
1442
  msgstr ""
1443
 
1444
+ #: src/admin.php:2516
1445
  msgid "Include the database in the backup"
1446
  msgstr ""
1447
 
1448
+ #: src/admin.php:2496
1449
  msgid "Continue restoration"
1450
  msgstr ""
1451
 
1452
+ #: src/admin.php:2491
1453
  msgid "You have an unfinished restoration operation, begun %s ago."
1454
  msgstr ""
1455
 
1456
+ #: src/admin.php:2490
1457
  msgid "Unfinished restoration"
1458
  msgstr ""
1459
 
1460
+ #: src/admin.php:2488
1461
  msgid "%s minutes, %s seconds"
1462
  msgstr ""
1463
 
1464
+ #: src/admin.php:2435
1465
  msgid "Backup Contents And Schedule"
1466
  msgstr ""
1467
 
1469
  msgid "Premium / Extensions"
1470
  msgstr ""
1471
 
1472
+ #: src/admin.php:2214, src/admin.php:2223
1473
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1474
  msgstr ""
1475
 
1476
+ #: src/addons/morefiles.php:55, src/admin.php:722
1477
  msgctxt "(verb)"
1478
  msgid "Download"
1479
  msgstr ""
1480
 
1481
+ #: src/admin.php:647
1482
  msgid "You have chosen to backup files, but no file entities have been selected"
1483
  msgstr ""
1484
 
1485
+ #: src/admin.php:548
1486
  msgid "Extensions"
1487
  msgstr ""
1488
 
1489
+ #: src/admin.php:540, src/templates/wp-admin/settings/tab-bar.php:8
1490
  msgid "Advanced Tools"
1491
  msgstr ""
1492
 
1568
  msgid "Standard"
1569
  msgstr ""
1570
 
1571
+ #: src/addons/azure.php:577
1572
  msgid "container"
1573
  msgstr ""
1574
 
1575
+ #: src/addons/azure.php:577
1576
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1577
  msgstr ""
1578
 
1579
+ #: src/addons/azure.php:576
1580
  msgid "optional"
1581
  msgstr ""
1582
 
1583
+ #: src/addons/azure.php:576
1584
  msgid "Prefix"
1585
  msgstr ""
1586
 
1587
+ #: src/addons/azure.php:571
1588
  msgid "See Microsoft's guidelines on container naming by following this link."
1589
  msgstr ""
1590
 
1591
+ #: src/addons/azure.php:571
1592
  msgid "Enter the path of the %s you wish to use here."
1593
  msgstr ""
1594
 
1595
+ #: src/addons/azure.php:560
1596
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1597
  msgstr ""
1598
 
1599
+ #: src/addons/azure.php:559
1600
  msgid "Account Name"
1601
  msgstr ""
1602
 
1603
+ #: src/addons/azure.php:559, src/addons/azure.php:563
1604
  msgid "Azure"
1605
  msgstr ""
1606
 
1607
+ #: src/addons/azure.php:555
1608
  msgid "Create Azure credentials in your Azure developer console."
1609
  msgstr ""
1610
 
1611
+ #: src/addons/azure.php:503
1612
  msgid "Could not create the container"
1613
  msgstr ""
1614
 
1615
+ #: src/addons/azure.php:358
1616
  msgid "Could not access container"
1617
  msgstr ""
1618
 
1619
+ #: src/class-updraftplus.php:2823
1620
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1621
  msgstr ""
1622
 
1623
+ #: src/backup.php:1581
1624
  msgid "the options table was not found"
1625
  msgstr ""
1626
 
1627
+ #: src/backup.php:1579
1628
  msgid "no options or sitemeta table was found"
1629
  msgstr ""
1630
 
1631
+ #: src/backup.php:1579, src/backup.php:1581
1632
  msgid "The database backup appears to have failed"
1633
  msgstr ""
1634
 
1635
+ #: src/backup.php:1451
1636
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1637
  msgstr ""
1638
 
1745
  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)."
1746
  msgstr ""
1747
 
1748
+ #: src/admin.php:1631
1749
  msgid "Backup sets removed:"
1750
  msgstr ""
1751
 
1752
+ #: src/admin.php:735
1753
  msgid "Processing..."
1754
  msgstr ""
1755
 
1756
+ #: src/admin.php:733
1757
  msgid "For backups older than"
1758
  msgstr ""
1759
 
1760
+ #: src/admin.php:732
1761
  msgid "week(s)"
1762
  msgstr ""
1763
 
1764
+ #: src/admin.php:731
1765
  msgid "hour(s)"
1766
  msgstr ""
1767
 
1768
+ #: src/admin.php:730
1769
  msgid "day(s)"
1770
  msgstr ""
1771
 
1772
+ #: src/admin.php:729
1773
  msgid "in the month"
1774
  msgstr ""
1775
 
1776
+ #: src/admin.php:728
1777
  msgid "day"
1778
  msgstr ""
1779
 
1785
  msgid "Add an additional retention rule..."
1786
  msgstr ""
1787
 
1788
+ #: src/restorer.php:2204
1789
  msgid "This database needs to be deployed on MySQL version %s or later."
1790
  msgstr ""
1791
 
1792
+ #: src/restorer.php:2204
1793
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1794
  msgstr ""
1795
 
1797
  msgid "You do not currently have any UpdraftPlus Vault quota"
1798
  msgstr ""
1799
 
1800
+ #: src/class-updraftplus.php:4478
1801
  msgid "You must upgrade MySQL to be able to use this database."
1802
  msgstr ""
1803
 
1804
+ #: src/class-updraftplus.php:4478
1805
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1806
  msgstr ""
1807
 
1808
+ #: src/admin.php:2333
1809
  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."
1810
  msgstr ""
1811
 
1833
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1834
  msgstr ""
1835
 
1836
+ #: src/admin.php:985
1837
  msgid "Go to the remote storage settings in order to connect."
1838
  msgstr ""
1839
 
1840
+ #: src/admin.php:985
1841
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1842
  msgstr ""
1843
 
1845
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1846
  msgstr ""
1847
 
1848
+ #: src/admin.php:705
1849
  msgid "Update quota count"
1850
  msgstr ""
1851
 
1852
+ #: src/admin.php:704
1853
  msgid "Counting..."
1854
  msgstr ""
1855
 
1856
+ #: src/admin.php:703
1857
  msgid "Disconnecting..."
1858
  msgstr ""
1859
 
1860
+ #: src/admin.php:701
1861
  msgid "Connecting..."
1862
  msgstr ""
1863
 
1883
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1884
  msgstr ""
1885
 
1886
+ #: src/admin.php:702, src/methods/updraftvault.php:388
1887
  msgid "Disconnect"
1888
  msgstr ""
1889
 
1915
  msgid "E-mail"
1916
  msgstr ""
1917
 
1918
+ #: src/central/bootstrap.php:540, src/methods/updraftvault.php:338,
1919
+ #: src/methods/updraftvault.php:353
1920
  msgid "Back..."
1921
  msgstr ""
1922
 
1929
  msgid "%s per quarter"
1930
  msgstr ""
1931
 
1932
+ #: src/central/bootstrap.php:567, src/methods/updraftvault.php:305,
1933
  #: src/methods/updraftvault.php:335
1934
  msgid "Read more about it here."
1935
  msgstr ""
1974
  msgid "Updraft Vault"
1975
  msgstr ""
1976
 
1977
+ #: src/addons/azure.php:388, src/addons/backblaze.php:464,
1978
+ #: src/addons/googlecloud.php:760, src/methods/s3.php:1091
1979
  msgid "Delete failed:"
1980
  msgstr ""
1981
 
1982
+ #: src/backup.php:3045
1983
  msgid "The zip engine returned the message: %s."
1984
  msgstr ""
1985
 
2003
  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."
2004
  msgstr ""
2005
 
2006
+ #: src/addons/migrator.php:1747, src/admin.php:711
2007
  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."
2008
  msgstr ""
2009
 
2031
  msgid "Keys for this site are created in the section below the one you just pressed in."
2032
  msgstr ""
2033
 
2034
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:383
2035
  msgid "You must copy and paste this key now - it cannot be shown again."
2036
  msgstr ""
2037
 
2038
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:383
2039
  msgid "Key created successfully."
2040
  msgstr ""
2041
 
2075
  msgid "This storage method does not allow downloading"
2076
  msgstr ""
2077
 
2078
+ #: src/admin.php:3610
2079
  msgid "(backup set imported from remote location)"
2080
  msgstr ""
2081
 
2095
  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."
2096
  msgstr ""
2097
 
2098
+ #: src/addons/migrator.php:1775, src/admin.php:718
2099
  msgid "Testing connection..."
2100
  msgstr ""
2101
 
2102
+ #: src/admin.php:715
2103
  msgid "Deleting..."
2104
  msgstr ""
2105
 
2106
+ #: src/admin.php:714
2107
  msgid "key name"
2108
  msgstr ""
2109
 
2110
+ #: src/admin.php:712
2111
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2112
  msgstr ""
2113
 
2114
+ #: src/admin.php:709
2115
  msgid "Creating..."
2116
  msgstr ""
2117
 
2135
  msgid "Or, send a backup to another site"
2136
  msgstr ""
2137
 
2138
+ #: src/addons/migrator.php:1946, src/admin.php:719
2139
  msgid "Send"
2140
  msgstr ""
2141
 
2142
+ #: src/addons/migrator.php:1940, src/admin.php:710
2143
  msgid "Send to site:"
2144
  msgstr ""
2145
 
2204
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2205
  msgstr ""
2206
 
2207
+ #: src/admin.php:708
2208
  msgid "Resetting..."
2209
  msgstr ""
2210
 
2211
+ #: src/addons/migrator.php:2190, src/admin.php:707
2212
  msgid "Add site"
2213
  msgstr ""
2214
 
2215
+ #: src/admin.php:706
2216
  msgid "Adding..."
2217
  msgstr ""
2218
 
2220
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2221
  msgstr ""
2222
 
2223
+ #: src/restorer.php:2206
2224
  msgid "To use this backup, your database server needs to support the %s character set."
2225
  msgstr ""
2226
 
2248
  msgid "To restore using any of the backup sets below, press the button."
2249
  msgstr ""
2250
 
2251
+ #: src/admin.php:698, src/admin.php:724, src/admin.php:725
2252
  msgid "You have made changes to your settings, and not saved."
2253
  msgstr ""
2254
 
2260
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2261
  msgstr ""
2262
 
2263
+ #: src/addons/azure.php:555, src/addons/migrator.php:1762,
2264
  #: src/addons/onedrive.php:955
2265
  msgid "For longer help, including screenshots, follow this link."
2266
  msgstr ""
2273
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2274
  msgstr ""
2275
 
2276
+ #: src/addons/azure.php:547
2277
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2278
  msgstr ""
2279
 
2439
  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)"
2440
  msgstr ""
2441
 
2442
+ #: src/methods/s3.php:875
2443
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2444
  msgstr ""
2445
 
2514
  msgid "(at same time as files backup)"
2515
  msgstr ""
2516
 
2517
+ #: src/admin.php:3114
2518
  msgid "No backup has been completed"
2519
  msgstr ""
2520
 
2563
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2564
  msgstr ""
2565
 
2566
+ #: src/methods/s3.php:172, src/methods/s3.php:173, src/methods/s3.php:174,
2567
+ #: src/methods/s3.php:182, src/methods/s3.php:183, src/methods/s3.php:184
2568
  msgid "%s Error: Failed to initialise"
2569
  msgstr ""
2570
 
2571
+ #: src/templates/wp-admin/settings/form-contents.php:218
2572
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2573
  msgid "or"
2574
  msgstr ""
2575
 
2576
+ #: src/admin.php:692
2577
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2578
  msgstr ""
2579
 
2596
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2597
  msgstr ""
2598
 
2599
+ #: src/templates/wp-admin/settings/form-contents.php:288
2600
  msgid "your site's admin address"
2601
  msgstr ""
2602
 
2603
+ #: src/templates/wp-admin/settings/form-contents.php:288
2604
  msgid "Check this box to have a basic report sent to"
2605
  msgstr ""
2606
 
2607
+ #: src/admin.php:3123
2608
  msgctxt "i.e. Non-automatic"
2609
  msgid "Manual"
2610
  msgstr ""
2611
 
2612
+ #: src/restorer.php:2183
2613
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
2614
  msgid "An error (%s) occurred:"
2615
  msgstr ""
2622
  msgid "Any other file/directory on your server that you wish to back up"
2623
  msgstr ""
2624
 
2625
+ #: src/admin.php:2350
2626
  msgid "For even more features and personal support, check out "
2627
  msgstr ""
2628
 
2631
  msgstr ""
2632
 
2633
  #: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
2634
+ #: src/admin.php:697
2635
  msgid "Automatic backup before update"
2636
  msgstr ""
2637
 
2716
  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."
2717
  msgstr ""
2718
 
2719
+ #: src/admin.php:2684, src/admin.php:3632, src/admin.php:3633
2720
  msgid "View Log"
2721
  msgstr ""
2722
 
2733
  msgid "and retain this many scheduled backups"
2734
  msgstr ""
2735
 
2736
+ #: src/admin.php:3084
2737
  msgid "incremental backup; base backup: %s"
2738
  msgstr ""
2739
 
2745
  msgid "Upload files into UpdraftPlus."
2746
  msgstr ""
2747
 
2748
+ #: src/admin.php:936, src/includes/class-commands.php:376,
2749
  #: src/templates/wp-admin/settings/tab-status.php:22
2750
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2751
  msgstr ""
2752
 
2753
+ #: src/class-updraftplus.php:4425
2754
  msgid "Backup label:"
2755
  msgstr ""
2756
 
2757
+ #: src/addons/backblaze.php:189, src/admin.php:1875
2758
  msgid "Error: unexpected file read fail"
2759
  msgstr ""
2760
 
2761
+ #: src/backup.php:3051
2762
  msgid "check your log for more details."
2763
  msgstr ""
2764
 
2765
+ #: src/backup.php:3049
2766
  msgid "your web hosting account appears to be full; please see: %s"
2767
  msgstr ""
2768
 
2769
+ #: src/backup.php:3047
2770
  msgid "A zip error occurred"
2771
  msgstr ""
2772
 
2794
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2795
  msgstr ""
2796
 
2797
+ #: src/class-updraftplus.php:4444
2798
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2799
  msgstr ""
2800
 
2801
+ #: src/class-updraftplus.php:4444
2802
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2803
  msgstr ""
2804
 
2835
  msgid "You need to connect to receive future updates to UpdraftPlus."
2836
  msgstr ""
2837
 
2838
+ #: src/class-updraftplus.php:4417
2839
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2840
  msgstr ""
2841
 
2842
+ #: src/class-updraftplus.php:4417
2843
  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."
2844
  msgstr ""
2845
 
2846
+ #: src/class-updraftplus.php:4417
2847
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2848
  msgstr ""
2849
 
2850
+ #: src/class-updraftplus.php:4417
2851
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2852
  msgstr ""
2853
 
2876
  msgid "UpdraftPlus is on social media - check us out!"
2877
  msgstr ""
2878
 
2879
+ #: src/admin.php:3701
2880
  msgid "Why am I seeing this?"
2881
  msgstr ""
2882
 
2888
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2889
  msgstr ""
2890
 
2891
+ #: src/admin.php:1814, src/admin.php:1826
2892
  msgid "Start backup"
2893
  msgstr ""
2894
 
2895
+ #: src/class-updraftplus.php:4389, src/restorer.php:1010
2896
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2897
  msgstr ""
2898
 
2899
+ #: src/admin.php:3007
2900
  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."
2901
  msgstr ""
2902
 
2904
  msgid "Unless you have a problem, you can completely ignore everything here."
2905
  msgstr ""
2906
 
2907
+ #: src/admin.php:2036
2908
  msgid "This file could not be uploaded"
2909
  msgstr ""
2910
 
2911
+ #: src/admin.php:2001
2912
  msgid "You will find more information about this in the Settings section."
2913
  msgstr ""
2914
 
2928
  msgid "Memory limit"
2929
  msgstr ""
2930
 
2931
+ #: src/class-updraftplus.php:4621, src/restorer.php:1493
2932
  msgid "restoration"
2933
  msgstr ""
2934
 
2935
+ #: src/backup.php:864
2936
  msgid "Incremental"
2937
  msgstr ""
2938
 
2939
+ #: src/backup.php:864
2940
  msgid "Full backup"
2941
  msgstr ""
2942
 
2952
  msgid "Backup succeeded"
2953
  msgstr ""
2954
 
2955
+ #: src/admin.php:3124, src/admin.php:3125, src/admin.php:3126,
2956
  #: src/updraftplus.php:99, src/updraftplus.php:100
2957
  msgid "Every %s hours"
2958
  msgstr ""
2991
  msgid "search term"
2992
  msgstr ""
2993
 
2994
+ #: src/restorer.php:2211
2995
  msgid "Too many database errors have occurred - aborting"
2996
  msgstr ""
2997
 
2998
+ #: src/backup.php:930
2999
  msgid "read more at %s"
3000
  msgstr ""
3001
 
3002
+ #: src/backup.php:930
3003
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3004
  msgstr ""
3005
 
3007
  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."
3008
  msgstr ""
3009
 
3010
+ #: src/admin.php:3459
3011
  msgid "You have not yet made any backups."
3012
  msgstr ""
3013
 
3014
+ #: src/templates/wp-admin/settings/form-contents.php:179
3015
  msgid "Database Options"
3016
  msgstr ""
3017
 
3027
  msgid "Free disk space in account:"
3028
  msgstr ""
3029
 
3030
+ #: src/admin.php:4269, src/templates/wp-admin/settings/tab-status.php:27
3031
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3032
  msgstr ""
3033
 
3034
+ #: src/admin.php:524, src/admin.php:666, src/admin.php:1679,
3035
  #: src/includes/deprecated-actions.php:29,
3036
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3037
  #: src/templates/wp-admin/settings/tab-bar.php:6
3038
  msgid "Existing Backups"
3039
  msgstr ""
3040
 
3041
+ #: src/admin.php:516, src/templates/wp-admin/settings/tab-bar.php:5
3042
  msgid "Current Status"
3043
  msgstr ""
3044
 
3045
+ #: src/admin.php:941
3046
  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."
3047
  msgstr ""
3048
 
3049
+ #: src/admin.php:941
3050
  msgid "To make a backup, just press the Backup Now button."
3051
  msgstr ""
3052
 
3053
+ #: src/admin.php:941
3054
  msgid "Welcome to UpdraftPlus!"
3055
  msgstr ""
3056
 
3122
  msgid "user"
3123
  msgstr ""
3124
 
3125
+ #: src/class-updraftplus.php:1733
3126
  msgid "External database (%s)"
3127
  msgstr ""
3128
 
3139
  msgid "However, subsequent access attempts failed:"
3140
  msgstr ""
3141
 
3142
+ #: src/admin.php:3484
3143
  msgid "External database"
3144
  msgstr ""
3145
 
3146
+ #: src/templates/wp-admin/settings/form-contents.php:332
3147
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
3148
  msgstr ""
3149
 
3150
+ #: src/templates/wp-admin/settings/form-contents.php:261
3151
  msgid "Back up more databases"
3152
  msgstr ""
3153
 
3154
+ #: src/templates/wp-admin/settings/form-contents.php:220
3155
  msgid "First, enter the decryption key"
3156
  msgstr ""
3157
 
3158
+ #: src/templates/wp-admin/settings/form-contents.php:202
3159
  msgid "You can manually decrypt an encrypted database here."
3160
  msgstr ""
3161
 
3162
+ #: src/templates/wp-admin/settings/form-contents.php:188
3163
  msgid "It can also backup external databases."
3164
  msgstr ""
3165
 
3166
+ #: src/templates/wp-admin/settings/form-contents.php:188
3167
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3168
  msgstr ""
3169
 
3171
  msgid "use UpdraftPlus Premium"
3172
  msgstr ""
3173
 
3174
+ #: src/class-updraftplus.php:4286
3175
  msgid "Decryption failed. The database file is encrypted."
3176
  msgstr ""
3177
 
3179
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
3180
  msgstr ""
3181
 
3182
+ #: src/restorer.php:1758, src/restorer.php:2152, src/restorer.php:2193,
3183
+ #: src/restorer.php:2206
3184
  msgid "An error occurred on the first %s command - aborting run"
3185
  msgstr ""
3186
 
3187
+ #: src/addons/moredatabase.php:105, src/backup.php:1392
3188
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3189
  msgstr ""
3190
 
3191
+ #: src/backup.php:1392
3192
  msgid "database connection attempt failed."
3193
  msgstr ""
3194
 
3200
  msgid "In %s, path names are case sensitive."
3201
  msgstr ""
3202
 
3203
+ #: src/addons/azure.php:577, src/addons/google-enhanced.php:85,
3204
  #: src/addons/onedrive.php:983
3205
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3206
  msgstr ""
3214
  msgid "Enter the path of the %s folder you wish to use here."
3215
  msgstr ""
3216
 
3217
+ #: src/addons/azure.php:570, src/methods/openstack2.php:164
3218
  msgid "Container"
3219
  msgstr ""
3220
 
3275
  msgid "Authenticate with %s"
3276
  msgstr ""
3277
 
3278
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:428
3279
  msgid "Error downloading remote file: Failed to download"
3280
  msgstr ""
3281
 
3282
+ #: src/methods/openstack-base.php:499, src/methods/openstack-base.php:504
3283
  msgid "Region: %s"
3284
  msgstr ""
3285
 
3286
+ #: src/methods/openstack-base.php:498
3287
  msgid "%s error - we accessed the container, but failed to create a file within it"
3288
  msgstr ""
3289
 
3290
+ #: src/methods/openstack-base.php:414
3291
  msgid "The %s object was not found"
3292
  msgstr ""
3293
 
3294
+ #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:337,
3295
+ #: src/methods/openstack-base.php:406
3296
  msgid "Could not access %s container"
3297
  msgstr ""
3298
 
3299
  #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:116,
3300
+ #: src/methods/openstack-base.php:123, src/methods/openstack-base.php:329,
3301
+ #: src/methods/openstack-base.php:394
3302
  msgid "%s error - failed to access the container"
3303
  msgstr ""
3304
 
3360
 
3361
  #: src/addons/migrator.php:391,
3362
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3363
+ #: src/templates/wp-admin/settings/form-contents.php:210
3364
  msgid "This feature requires %s version %s or later"
3365
  msgstr ""
3366
 
3368
  msgid "Failed to unpack the archive"
3369
  msgstr ""
3370
 
3371
+ #: src/class-updraftplus.php:1265
3372
  msgid "Error - failed to download the file"
3373
  msgstr ""
3374
 
3392
  msgid "password/key"
3393
  msgstr ""
3394
 
3395
+ #: src/addons/azure.php:563, src/addons/migrator.php:2208,
3396
+ #: src/addons/sftp.php:439, src/admin.php:713, src/admin.php:4465
3397
  msgid "Key"
3398
  msgstr ""
3399
 
3409
  msgid "SCP/SFTP password/key"
3410
  msgstr ""
3411
 
3412
+ #: src/admin.php:3519
3413
  msgid "Files backup (created by %s)"
3414
  msgstr ""
3415
 
3416
+ #: src/admin.php:3519
3417
  msgid "Files and database WordPress backup (created by %s)"
3418
  msgstr ""
3419
 
3420
+ #: src/addons/importer.php:276, src/admin.php:3513,
3421
+ #: src/includes/class-backup-history.php:279
3422
  msgid "Backup created by: %s."
3423
  msgstr ""
3424
 
3425
+ #: src/admin.php:3482
3426
  msgid "Database (created by %s)"
3427
  msgstr ""
3428
 
3429
+ #: src/admin.php:3476, src/admin.php:3515
3430
  msgid "unknown source"
3431
  msgstr ""
3432
 
3438
  msgid "Upload backup files"
3439
  msgstr ""
3440
 
3441
+ #: src/admin.php:2080
3442
  msgid "This backup was created by %s, and can be imported."
3443
  msgstr ""
3444
 
3445
+ #: src/admin.php:970
3446
  msgid "Read this page for a guide to possible causes and how to fix it."
3447
  msgstr ""
3448
 
3449
+ #: src/admin.php:970
3450
  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."
3451
  msgstr ""
3452
 
3453
+ #: src/admin.php:678, src/includes/class-backup-history.php:286
3454
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3455
  msgstr ""
3456
 
3457
+ #: src/admin.php:677
3458
  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."
3459
  msgstr ""
3460
 
3461
+ #: src/admin.php:677, src/admin.php:678,
3462
+ #: src/includes/class-backup-history.php:286
3463
  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))."
3464
  msgstr ""
3465
 
3466
+ #: src/admin.php:3516, src/includes/class-wpadmin-commands.php:152,
3467
  #: src/restorer.php:1462
3468
  msgid "Backup created by unknown source (%s) - cannot be restored."
3469
  msgstr ""
3484
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3485
  msgstr ""
3486
 
3487
+ #: src/addons/backblaze.php:515, src/methods/cloudfiles.php:246,
3488
+ #: src/methods/dropbox.php:294, src/methods/openstack-base.php:111
3489
  msgid "No settings were found"
3490
  msgstr ""
3491
 
3492
+ #: src/includes/class-backup-history.php:454
3493
  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."
3494
  msgstr ""
3495
 
3496
+ #: src/admin.php:644
3497
  msgid "Rescanning remote and local storage for backup sets..."
3498
  msgstr ""
3499
 
3515
  msgid "Remove"
3516
  msgstr ""
3517
 
3518
+ #: src/methods/s3.php:847
3519
  msgid "Other %s FAQs."
3520
  msgstr ""
3521
 
3522
+ #: src/templates/wp-admin/settings/form-contents.php:332
3523
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3524
  msgstr ""
3525
 
3526
+ #: src/addons/morefiles.php:445, src/admin.php:3216
3527
  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."
3528
  msgstr ""
3529
 
3530
+ #: src/class-updraftplus.php:4621, src/methods/ftp.php:309,
3531
  #: src/restorer.php:1493
3532
  msgid "Your hosting company must enable these functions before %s can work."
3533
  msgstr ""
3534
 
3535
+ #: src/class-updraftplus.php:4621, src/methods/ftp.php:309
3536
  msgid "Your web server's PHP installation has these functions disabled: %s."
3537
  msgstr ""
3538
 
3548
  msgid "regular non-encrypted FTP"
3549
  msgstr ""
3550
 
3551
+ #: src/restorer.php:1666
3552
  msgid "Backup created by:"
3553
  msgstr ""
3554
 
3602
  msgid "Dismiss from main dashboard (for %s weeks)"
3603
  msgstr ""
3604
 
3605
+ #: src/class-updraftplus.php:4671
3606
  msgid "The attempt to undo the double-compression succeeded."
3607
  msgstr ""
3608
 
3609
+ #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4669
3610
  msgid "The attempt to undo the double-compression failed."
3611
  msgstr ""
3612
 
3613
+ #: src/class-updraftplus.php:4641
3614
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3615
  msgstr ""
3616
 
3618
  msgid "Constants"
3619
  msgstr ""
3620
 
3621
+ #: src/backup.php:1629
3622
  msgid "Failed to open database file for reading:"
3623
  msgstr ""
3624
 
3625
+ #: src/backup.php:1440
3626
  msgid "No database tables found"
3627
  msgstr ""
3628
 
3629
+ #: src/backup.php:1438
3630
  msgid "please wait for the rescheduled attempt"
3631
  msgstr ""
3632
 
3643
  msgid "Errors occurred:"
3644
  msgstr ""
3645
 
3646
+ #: src/admin.php:3721
3647
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3648
  msgstr ""
3649
 
3650
+ #: src/templates/wp-admin/settings/form-contents.php:376
3651
  msgid "See this FAQ also."
3652
  msgstr ""
3653
 
3654
+ #: src/templates/wp-admin/settings/form-contents.php:141
3655
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
3656
  msgstr ""
3657
 
3667
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3668
  msgstr ""
3669
 
3670
+ #: src/admin.php:945, src/class-updraftplus.php:783
3671
  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)"
3672
  msgstr ""
3673
 
3680
  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."
3681
  msgstr ""
3682
 
3683
+ #: src/addons/moredatabase.php:137, src/admin.php:1421
3684
  msgid "Messages:"
3685
  msgstr ""
3686
 
3687
+ #: src/restorer.php:2046
3688
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
3689
  msgstr ""
3690
 
3834
  msgstr ""
3835
 
3836
  #: src/addons/cloudfiles-enhanced.php:139, src/addons/s3-enhanced.php:204,
3837
+ #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:457,
3838
+ #: src/methods/openstack-base.php:459, src/methods/openstack-base.php:480,
3839
  #: src/methods/openstack2.php:33
3840
  msgid "Authorisation failed (check your credentials)"
3841
  msgstr ""
3844
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3845
  msgstr ""
3846
 
3847
+ #: src/admin.php:691, src/central/bootstrap.php:535
3848
  msgid "Create"
3849
  msgstr ""
3850
 
3851
+ #: src/admin.php:653
3852
  msgid "Trying..."
3853
  msgstr ""
3854
 
3855
+ #: src/admin.php:652
3856
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3857
  msgstr ""
3858
 
3859
+ #: src/admin.php:663, src/admin.php:3997
3860
  msgid "Error data:"
3861
  msgstr ""
3862
 
3863
+ #: src/admin.php:3672
3864
  msgid "Backup does not exist in the backup history"
3865
  msgstr ""
3866
 
3867
+ #: src/admin.php:2628
3868
  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."
3869
  msgstr ""
3870
 
3871
+ #: src/restorer.php:1733
3872
  msgid "Split line to avoid exceeding maximum packet size"
3873
  msgstr ""
3874
 
3875
+ #: src/restorer.php:1613
3876
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
3877
  msgstr ""
3878
 
3904
  msgid "Email reports"
3905
  msgstr ""
3906
 
3907
+ #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1746
3908
  msgid "%s checksum: %s"
3909
  msgstr ""
3910
 
3911
+ #: src/class-updraftplus.php:1714, src/class-updraftplus.php:1716
3912
  msgid "files: %s"
3913
  msgstr ""
3914
 
3920
  msgid "Debugging information"
3921
  msgstr ""
3922
 
3923
+ #: src/addons/reporting.php:211, src/admin.php:3415
3924
  msgid "Uploaded to:"
3925
  msgstr ""
3926
 
3965
  msgid "%s authentication"
3966
  msgstr ""
3967
 
3968
+ #: src/addons/onedrive.php:718, src/class-updraftplus.php:468,
3969
  #: src/methods/dropbox.php:176, src/methods/dropbox.php:598,
3970
  #: src/methods/dropbox.php:625, src/methods/dropbox.php:638,
3971
  #: src/methods/dropbox.php:784
3980
  msgid "%s did not return the expected response - check your log file for more details"
3981
  msgstr ""
3982
 
3983
+ #: src/methods/s3.php:293
3984
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3985
  msgstr ""
3986
 
3992
  msgid "Your site's admin email address (%s) will be used."
3993
  msgstr ""
3994
 
3995
+ #: src/admin.php:700, src/methods/updraftvault.php:302,
3996
  #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3997
  msgid "Connect"
3998
  msgstr ""
3999
 
4000
+ #: src/templates/wp-admin/settings/form-contents.php:290
4001
  msgid "For more reporting features, use the Reporting add-on."
4002
  msgstr ""
4003
 
4004
+ #: src/class-updraftplus.php:4361
4005
  msgid "(version: %s)"
4006
  msgstr ""
4007
 
4008
  #: src/addons/reporting.php:455, src/addons/reporting.php:455,
4009
+ #: src/admin.php:642
4010
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
4011
  msgstr ""
4012
 
4013
+ #: src/addons/reporting.php:455, src/admin.php:641
4014
  msgid "When the Email storage method is enabled, also send the entire backup"
4015
  msgstr ""
4016
 
4017
+ #: src/addons/reporting.php:170, src/backup.php:965
4018
  msgid "Latest status:"
4019
  msgstr ""
4020
 
4021
+ #: src/backup.php:964
4022
  msgid "Backup contains:"
4023
  msgstr ""
4024
 
4025
+ #: src/backup.php:921
4026
  msgid "Backed up: %s"
4027
  msgstr ""
4028
 
4029
+ #: src/addons/reporting.php:253, src/backup.php:915
4030
  msgid "The log file has been attached to this email."
4031
  msgstr ""
4032
 
4033
+ #: src/backup.php:879
4034
  msgid "Unknown/unexpected error - please raise a support request"
4035
  msgstr ""
4036
 
4037
+ #: src/backup.php:876
4038
  msgid "Database only (files were not part of this particular schedule)"
4039
  msgstr ""
4040
 
4041
+ #: src/backup.php:876
4042
  msgid "Database (files backup has not completed)"
4043
  msgstr ""
4044
 
4045
+ #: src/backup.php:873
4046
  msgid "Files only (database was not part of this particular schedule)"
4047
  msgstr ""
4048
 
4049
+ #: src/backup.php:873
4050
  msgid "Files (database backup has not completed)"
4051
  msgstr ""
4052
 
4053
+ #: src/admin.php:297, src/backup.php:871
4054
  msgid "Files and database"
4055
  msgstr ""
4056
 
4057
+ #: src/options.php:192
4058
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4059
  msgstr ""
4060
 
4061
+ #: src/options.php:192
4062
  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>."
4063
  msgstr ""
4064
 
4065
+ #: src/options.php:192
4066
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4067
  msgstr ""
4068
 
4069
+ #: src/options.php:192
4070
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4071
  msgstr ""
4072
 
4073
+ #: src/options.php:192
4074
  msgid "UpdraftPlus warning:"
4075
  msgstr ""
4076
 
4136
  msgstr ""
4137
 
4138
  #: src/methods/email.php:76,
4139
+ #: src/templates/wp-admin/settings/form-contents.php:271,
4140
  #: src/templates/wp-admin/settings/tab-addons.php:199,
4141
  #: src/templates/wp-admin/settings/tab-addons.php:200
4142
  msgid "Reporting"
4143
  msgstr ""
4144
 
4145
+ #: src/admin.php:4462
4146
  msgid "Options (raw)"
4147
  msgstr ""
4148
 
4149
+ #: src/addons/reporting.php:453, src/admin.php:640
4150
  msgid "Send a report only when there are warnings/errors"
4151
  msgstr ""
4152
 
4153
+ #: src/restorer.php:1677
4154
  msgid "Content URL:"
4155
  msgstr ""
4156
 
4158
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4159
  msgstr ""
4160
 
4161
+ #: src/templates/wp-admin/settings/form-contents.php:174
4162
  msgid "See also the \"More Files\" add-on from our shop."
4163
  msgstr ""
4164
 
4165
+ #: src/backup.php:3038, src/class-updraftplus.php:796
4166
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4167
  msgstr ""
4168
 
4169
+ #: src/class-updraftplus.php:780
4170
  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)"
4171
  msgstr ""
4172
 
4302
  msgid "Drop backup files here"
4303
  msgstr ""
4304
 
4305
+ #: src/admin.php:2507
4306
  msgid "Does nothing happen when you attempt backups?"
4307
  msgstr ""
4308
 
4309
+ #: src/admin.php:651
4310
  msgid "The web server returned an error code (try again, or check your web server logs)"
4311
  msgstr ""
4312
 
4313
+ #: src/admin.php:649
4314
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4315
  msgstr ""
4316
 
4317
+ #: src/admin.php:646
4318
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4319
  msgstr ""
4320
 
4321
+ #: src/restorer.php:1671
4322
  msgid "Site home:"
4323
  msgstr ""
4324
 
4334
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4335
  msgstr ""
4336
 
4337
+ #: src/addons/azure.php:365, src/methods/stream-base.php:124,
4338
  #: src/methods/stream-base.php:129
4339
  msgid "Upload failed"
4340
  msgstr ""
4341
 
4342
+ #: src/templates/wp-admin/settings/form-contents.php:132
4343
  msgid "You can send a backup to more than one destination with an add-on."
4344
  msgstr ""
4345
 
4346
+ #: src/admin.php:2846
4347
  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."
4348
  msgstr ""
4349
 
4350
+ #: src/admin.php:2744
4351
  msgid "(%s%%, file %s of %s)"
4352
  msgstr ""
4353
 
4384
  msgid "Backup is of: %s."
4385
  msgstr ""
4386
 
4387
+ #: src/admin.php:739
4388
  msgid "%s settings test result:"
4389
  msgstr ""
4390
 
4391
+ #: src/admin.php:3583, src/admin.php:3585
4392
  msgid "(Not finished)"
4393
  msgstr ""
4394
 
4395
+ #: src/admin.php:3585
4396
  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."
4397
  msgstr ""
4398
 
4399
+ #: src/templates/wp-admin/settings/form-contents.php:359
4400
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4401
  msgstr ""
4402
 
4403
+ #: src/templates/wp-admin/settings/form-contents.php:359
4404
  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)."
4405
  msgstr ""
4406
 
4407
+ #: src/admin.php:2841
4408
  msgid "Job ID: %s"
4409
  msgstr ""
4410
 
4411
+ #: src/admin.php:2826
4412
  msgid "last activity: %ss ago"
4413
  msgstr ""
4414
 
4415
+ #: src/admin.php:2825
4416
  msgid "next resumption: %d (after %ss)"
4417
  msgstr ""
4418
 
4419
+ #: src/admin.php:2808, src/central/bootstrap.php:424,
4420
+ #: src/central/bootstrap.php:431, src/methods/updraftvault.php:382,
4421
  #: src/methods/updraftvault.php:467
4422
  msgid "Unknown"
4423
  msgstr ""
4424
 
4425
+ #: src/admin.php:2758
4426
  msgid "Backup finished"
4427
  msgstr ""
4428
 
4429
+ #: src/admin.php:2753
4430
  msgid "Waiting until scheduled time to retry because of errors"
4431
  msgstr ""
4432
 
4433
+ #: src/admin.php:2749
4434
  msgid "Pruning old backup sets"
4435
  msgstr ""
4436
 
4437
+ #: src/admin.php:2737
4438
  msgid "Uploading files to remote storage"
4439
  msgstr ""
4440
 
4441
+ #: src/admin.php:2806
4442
  msgid "Encrypted database"
4443
  msgstr ""
4444
 
4445
+ #: src/admin.php:2798
4446
  msgid "Encrypting database"
4447
  msgstr ""
4448
 
4449
+ #: src/admin.php:2772
4450
  msgid "Created database backup"
4451
  msgstr ""
4452
 
4453
+ #: src/admin.php:2785
4454
  msgid "table: %s"
4455
  msgstr ""
4456
 
4457
+ #: src/admin.php:2783
4458
  msgid "Creating database backup"
4459
  msgstr ""
4460
 
4461
+ #: src/admin.php:2731
4462
  msgid "Created file backup zips"
4463
  msgstr ""
4464
 
4465
+ #: src/admin.php:2718
4466
  msgid "Creating file backup zips"
4467
  msgstr ""
4468
 
4469
+ #: src/admin.php:2713
4470
  msgid "Backup begun"
4471
  msgstr ""
4472
 
4473
+ #: src/admin.php:2556
4474
  msgid "Backups in progress:"
4475
  msgstr ""
4476
 
4477
+ #: src/admin.php:949
4478
  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."
4479
  msgstr ""
4480
 
4490
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4491
  msgstr ""
4492
 
4493
+ #: src/class-updraftplus.php:2830
4494
  msgid "The backup has not finished; a resumption is scheduled"
4495
  msgstr ""
4496
 
4497
+ #: src/class-updraftplus.php:2018
4498
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4499
  msgstr ""
4500
 
4504
  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)."
4505
  msgstr ""
4506
 
4507
+ #: src/admin.php:2378
4508
  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)."
4509
  msgstr ""
4510
 
4511
+ #: src/addons/autobackup.php:1085, src/admin.php:693
4512
  msgid "Proceed with update"
4513
  msgstr ""
4514
 
4583
  msgid "Support"
4584
  msgstr ""
4585
 
4586
+ #: src/class-updraftplus.php:4562
4587
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4588
  msgstr ""
4589
 
4590
+ #: src/class-updraftplus.php:4554
4591
  msgid "This database backup is missing core WordPress tables: %s"
4592
  msgstr ""
4593
 
4594
+ #: src/class-updraftplus.php:4410
4595
  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."
4596
  msgstr ""
4597
 
4598
+ #: src/class-updraftplus.php:4409, src/class-updraftplus.php:4416
4599
  msgid "%s version: %s"
4600
  msgstr ""
4601
 
4602
+ #: src/class-updraftplus.php:4303
4603
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4604
  msgstr ""
4605
 
4606
+ #: src/addons/autobackup.php:1053, src/admin.php:782,
4607
  #: src/includes/updraftplus-notices.php:171
4608
  msgid "Be safe with an automatic backup"
4609
  msgstr ""
4610
 
4611
+ #: src/admin.php:2330
4612
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4613
  msgstr ""
4614
 
4615
+ #: src/admin.php:687
4616
  msgid "The file was uploaded."
4617
  msgstr ""
4618
 
4619
+ #: src/admin.php:686
4620
  msgid "Unknown server response status:"
4621
  msgstr ""
4622
 
4623
+ #: src/admin.php:685
4624
  msgid "Unknown server response:"
4625
  msgstr ""
4626
 
4627
+ #: src/admin.php:684
4628
  msgid "This decryption key will be attempted:"
4629
  msgstr ""
4630
 
4631
+ #: src/admin.php:683
4632
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4633
  msgstr ""
4634
 
4635
+ #: src/admin.php:682
4636
  msgid "Upload error"
4637
  msgstr ""
4638
 
4639
+ #: src/admin.php:681
4640
  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)."
4641
  msgstr ""
4642
 
4643
+ #: src/admin.php:680
4644
  msgid "Upload error:"
4645
  msgstr ""
4646
 
4647
+ #: src/admin.php:679
4648
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4649
  msgstr ""
4650
 
4651
+ #: src/admin.php:670
4652
  msgid "Download to your computer"
4653
  msgstr ""
4654
 
4655
+ #: src/admin.php:669
4656
  msgid "Delete from your web server"
4657
  msgstr ""
4658
 
4659
+ #: src/admin.php:3553
4660
  msgid "You appear to be missing one or more archives from this multi-archive set."
4661
  msgstr ""
4662
 
4663
+ #: src/admin.php:3550
4664
  msgid "(%d archive(s) in set)."
4665
  msgstr ""
4666
 
4667
+ #: src/templates/wp-admin/settings/form-contents.php:336
4668
  msgid "Split archives every:"
4669
  msgstr ""
4670
 
4672
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4673
  msgstr ""
4674
 
4675
+ #: src/admin.php:660
4676
  msgid "Warnings:"
4677
  msgstr ""
4678
 
4679
+ #: src/admin.php:659
4680
  msgid "Error: the server sent an empty response."
4681
  msgstr ""
4682
 
4683
+ #: src/admin.php:2091
4684
  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?"
4685
  msgstr ""
4686
 
4716
  msgid "No such backup set exists"
4717
  msgstr ""
4718
 
4719
+ #: src/admin.php:1297
4720
  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"
4721
  msgstr ""
4722
 
4724
  msgid "Moving unpacked backup into place..."
4725
  msgstr ""
4726
 
4727
+ #: src/backup.php:2744, src/backup.php:2998
4728
  msgid "Failed to open the zip file (%s) - %s"
4729
  msgstr ""
4730
 
4732
  msgid "WordPress root directory server path: %s"
4733
  msgstr ""
4734
 
4735
+ #: src/methods/s3.php:852
4736
  msgid "%s end-point"
4737
  msgstr ""
4738
 
4739
+ #: src/methods/s3.php:814
4740
  msgid "... and many more!"
4741
  msgstr ""
4742
 
4743
+ #: src/methods/s3generic.php:59, src/methods/s3generic.php:68
4744
  msgid "S3 (Compatible)"
4745
  msgstr ""
4746
 
4747
+ #: src/admin.php:1211
4748
  msgid "File is not locally present - needs retrieving from remote storage"
4749
  msgstr ""
4750
 
4751
+ #: src/admin.php:3853
4752
  msgid "Looking for %s archive: file name: %s"
4753
  msgstr ""
4754
 
4755
+ #: src/admin.php:3814
4756
  msgid "Final checks"
4757
  msgstr ""
4758
 
4759
+ #: src/templates/wp-admin/settings/form-contents.php:342
4760
  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)."
4761
  msgstr ""
4762
 
4763
+ #: src/templates/wp-admin/settings/form-contents.php:217
4764
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4765
  msgstr ""
4766
 
4767
+ #: src/admin.php:3205
4768
  msgid "Your wp-content directory server path: %s"
4769
  msgstr ""
4770
 
4771
+ #: src/admin.php:676
4772
  msgid "Raw backup history"
4773
  msgstr ""
4774
 
4776
  msgid "Show raw backup and file list"
4777
  msgstr ""
4778
 
4779
+ #: src/admin.php:658
4780
  msgid "Processing files - please wait..."
4781
  msgstr ""
4782
 
4783
+ #: src/admin.php:3999,
4784
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4785
  msgid "Please consult this FAQ for help on what to do about it."
4786
  msgstr ""
4789
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4790
  msgstr ""
4791
 
4792
+ #: src/class-updraftplus.php:4311
4793
  msgid "Failed to open database file."
4794
  msgstr ""
4795
 
4796
+ #: src/admin.php:4431
4797
  msgid "Known backups (raw)"
4798
  msgstr ""
4799
 
4809
  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."
4810
  msgstr ""
4811
 
4812
+ #: src/admin.php:3873
4813
  msgid "file is size:"
4814
  msgstr ""
4815
 
4816
  #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4817
+ #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:949,
4818
+ #: src/admin.php:2335, src/backup.php:3045, src/class-updraftplus.php:4499,
4819
+ #: src/updraftplus.php:156
4820
  msgid "Go here for more information."
4821
  msgstr ""
4822
 
4823
+ #: src/admin.php:657
4824
  msgid "Some files are still downloading or being processed - please wait."
4825
  msgstr ""
4826
 
4827
+ #: src/class-updraftplus.php:4382, src/class-updraftplus.php:4400
4828
  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."
4829
  msgstr ""
4830
 
4868
  msgid "Error - no such file exists at %s"
4869
  msgstr ""
4870
 
4871
+ #: src/addons/azure.php:218, src/methods/addon-base-v2.php:219,
4872
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4873
+ #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:428,
4874
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4875
  #: src/methods/stream-base.php:285
4876
  msgid "%s Error"
4880
  msgid "%s error - failed to upload file"
4881
  msgstr ""
4882
 
4883
+ #: src/class-updraftplus.php:1157, src/methods/cloudfiles.php:223
4884
  msgid "%s error - failed to re-assemble chunks"
4885
  msgstr ""
4886
 
4887
  #: src/methods/cloudfiles.php:107, src/methods/cloudfiles.php:111,
4888
  #: src/methods/cloudfiles.php:252, src/methods/cloudfiles.php:298,
4889
  #: src/methods/cloudfiles.php:349, src/methods/cloudfiles.php:353,
4890
+ #: src/methods/openstack-base.php:44, src/methods/openstack-base.php:325,
4891
+ #: src/methods/openstack-base.php:390, src/methods/openstack-base.php:463,
4892
+ #: src/methods/openstack-base.php:466, src/methods/openstack-base.php:484,
4893
+ #: src/methods/openstack-base.php:489
4894
  msgid "%s authentication failed"
4895
  msgstr ""
4896
 
4897
  #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4898
+ #: src/admin.php:2036, src/admin.php:2083, src/admin.php:2091,
4899
+ #: src/class-updraftplus.php:925, src/class-updraftplus.php:931,
4900
+ #: src/class-updraftplus.php:4284, src/class-updraftplus.php:4286,
4901
+ #: src/class-updraftplus.php:4433, src/class-updraftplus.php:4440,
4902
+ #: src/class-updraftplus.php:4478, src/methods/googledrive.php:369,
4903
+ #: src/methods/s3.php:322
4904
  msgid "Error: %s"
4905
  msgstr ""
4906
 
4907
+ #: src/admin.php:3142
4908
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4909
  msgstr ""
4910
 
4911
+ #: src/admin.php:3140
4912
  msgid "Backup directory specified does <b>not</b> exist."
4913
  msgstr ""
4914
 
4915
+ #: src/admin.php:2853, src/admin.php:3096
4916
  msgid "Warning: %s"
4917
  msgstr ""
4918
 
4920
  msgid "Last backup job run:"
4921
  msgstr ""
4922
 
4923
+ #: src/backup.php:2766
4924
  msgid "A very large file was encountered: %s (size: %s Mb)"
4925
  msgstr ""
4926
 
4927
+ #: src/backup.php:2172
4928
  msgid "%s: unreadable file - could not be backed up"
4929
  msgstr ""
4930
 
4931
+ #: src/backup.php:1529
4932
  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"
4933
  msgstr ""
4934
 
4935
+ #: src/backup.php:1648
4936
  msgid "An error occurred whilst closing the final database file"
4937
  msgstr ""
4938
 
4939
+ #: src/backup.php:906
4940
  msgid "Warnings encountered:"
4941
  msgstr ""
4942
 
4943
+ #: src/class-updraftplus.php:2818
4944
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4945
  msgstr ""
4946
 
4947
+ #: src/class-updraftplus.php:809
4948
  msgid "Your free disk space is very low - only %s Mb remain"
4949
  msgstr ""
4950
 
4980
  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."
4981
  msgstr ""
4982
 
4983
+ #: src/methods/s3.php:828
4984
  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."
4985
  msgstr ""
4986
 
4987
+ #: src/methods/s3.php:1084
4988
  msgid "Please check your access credentials."
4989
  msgstr ""
4990
 
4991
+ #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1062
4992
  msgid "The error reported by %s was:"
4993
  msgstr ""
4994
 
4996
  msgid "Please supply the requested information, and then continue."
4997
  msgstr ""
4998
 
4999
+ #: src/class-updraftplus.php:4451, src/restorer.php:1707
5000
  msgid "Site information:"
5001
  msgstr ""
5002
 
5003
+ #: src/restorer.php:1574
5004
  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."
5005
  msgstr ""
5006
 
5007
+ #: src/addons/migrator.php:341, src/admin.php:2330,
5008
+ #: src/class-updraftplus.php:4444, src/restorer.php:2046
5009
  msgid "Warning:"
5010
  msgstr ""
5011
 
5012
+ #: src/class-updraftplus.php:4433, src/class-updraftplus.php:4436,
5013
  #: src/restorer.php:154
5014
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5015
  msgstr ""
5016
 
5017
+ #: src/admin.php:3841
5018
  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."
5019
  msgstr ""
5020
 
5021
+ #: src/admin.php:3271, src/methods/updraftvault.php:286
5022
  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."
5023
  msgstr ""
5024
 
5025
+ #: src/admin.php:694
5026
  msgid "Close"
5027
  msgstr ""
5028
 
5029
  #: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
5030
+ #: src/admin.php:650, src/methods/remotesend.php:66,
5031
  #: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
5032
  #: src/methods/remotesend.php:242
5033
  msgid "Unexpected response:"
5034
  msgstr ""
5035
 
5036
+ #: src/addons/reporting.php:451, src/admin.php:645
5037
  msgid "To send to more than one address, separate each address with a comma."
5038
  msgstr ""
5039
 
5040
+ #: src/admin.php:674
5041
  msgid "PHP information"
5042
  msgstr ""
5043
 
5073
  msgid "Also delete from remote storage"
5074
  msgstr ""
5075
 
5076
+ #: src/admin.php:2583
5077
  msgid "Latest UpdraftPlus.com news:"
5078
  msgstr ""
5079
 
5090
  msgid "News"
5091
  msgstr ""
5092
 
5093
+ #: src/admin.php:1475, src/includes/class-wpadmin-commands.php:465
5094
  msgid "Backup set not found"
5095
  msgstr ""
5096
 
5112
  msgid "Blog link"
5113
  msgstr ""
5114
 
5115
+ #: src/admin.php:738
5116
  msgid "Testing %s Settings..."
5117
  msgstr ""
5118
 
5120
  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."
5121
  msgstr ""
5122
 
5123
+ #: src/admin.php:965
5124
  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."
5125
  msgstr ""
5126
 
5127
+ #: src/admin.php:965
5128
  msgid "Notice"
5129
  msgstr ""
5130
 
5131
+ #: src/backup.php:888
5132
  msgid "Errors encountered:"
5133
  msgstr ""
5134
 
5135
+ #: src/admin.php:643
5136
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5137
  msgstr ""
5138
 
5139
+ #: src/admin.php:656
5140
  msgid "Begun looking for this entity"
5141
  msgstr ""
5142
 
5156
  msgid "Time taken (seconds):"
5157
  msgstr ""
5158
 
5159
+ #: src/addons/migrator.php:1141, src/admin.php:661
5160
  msgid "Errors:"
5161
  msgstr ""
5162
 
5218
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5219
  msgstr ""
5220
 
5221
+ #: src/addons/multisite.php:659
5222
  msgid "Blog uploads"
5223
  msgstr ""
5224
 
5225
+ #: src/addons/migrator.php:385, src/addons/multisite.php:652
5226
  msgid "Must-use plugins"
5227
  msgstr ""
5228
 
5229
+ #: src/addons/multisite.php:174
5230
  msgid "Multisite Install"
5231
  msgstr ""
5232
 
5322
  msgid "WordPress Core"
5323
  msgstr ""
5324
 
5325
+ #: src/methods/addon-base-v2.php:302, src/methods/stream-base.php:315
5326
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5327
  msgstr ""
5328
 
5329
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5330
+ #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2907,
5331
+ #: src/admin.php:2942, src/admin.php:2951, src/methods/addon-base-v2.php:290,
5332
  #: src/methods/stream-base.php:301
5333
  msgid "Failed"
5334
  msgstr ""
5421
  msgid "You do not appear to be authenticated with Dropbox"
5422
  msgstr ""
5423
 
5424
+ #: src/methods/s3.php:1079
5425
  msgid "The communication with %s was not encrypted."
5426
  msgstr ""
5427
 
5428
+ #: src/methods/s3.php:1077
5429
  msgid "The communication with %s was encrypted."
5430
  msgstr ""
5431
 
5432
+ #: src/addons/googlecloud.php:756, src/methods/s3.php:1074
5433
  msgid "We accessed the bucket, and were able to create files within it."
5434
  msgstr ""
5435
 
5436
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5437
+ #: src/methods/s3.php:1072, src/methods/s3.php:1084
5438
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5439
  msgstr ""
5440
 
5441
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5442
+ #: src/methods/s3.php:1072, src/methods/s3.php:1084
5443
  msgid "Failure"
5444
  msgstr ""
5445
 
5446
+ #: src/methods/s3.php:1060
5447
  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)."
5448
  msgstr ""
5449
 
5450
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5451
+ #: src/methods/s3.php:1054
5452
  msgid "Region"
5453
  msgstr ""
5454
 
5455
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5456
+ #: src/methods/s3.php:1036
5457
  msgid "Failure: No bucket details were given."
5458
  msgstr ""
5459
 
5460
+ #: src/methods/s3.php:1014
5461
  msgid "API secret"
5462
  msgstr ""
5463
 
5464
+ #: src/methods/s3.php:889
5465
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5466
  msgstr ""
5467
 
5468
+ #: src/methods/s3.php:888
5469
  msgid "%s location"
5470
  msgstr ""
5471
 
5472
+ #: src/methods/s3.php:884
5473
  msgid "%s secret key"
5474
  msgstr ""
5475
 
5476
+ #: src/methods/s3.php:880
5477
  msgid "%s access key"
5478
  msgstr ""
5479
 
5480
+ #: src/methods/s3.php:845
5481
  msgid "If you see errors about SSL certificates, then please go here for help."
5482
  msgstr ""
5483
 
5484
+ #: src/methods/s3.php:843
5485
  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."
5486
  msgstr ""
5487
 
5488
+ #: src/methods/s3.php:463, src/methods/s3.php:575, src/methods/s3.php:647,
5489
+ #: src/methods/s3.php:750
5490
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5491
  msgstr ""
5492
 
5493
+ #: src/methods/s3.php:733, src/methods/s3.php:743, src/methods/s3.php:779
5494
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5495
  msgstr ""
5496
 
5497
+ #: src/methods/s3.php:441
5498
  msgid "%s re-assembly error (%s): (see log file for more)"
5499
  msgstr ""
5500
 
5501
+ #: src/methods/s3.php:437
5502
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5503
  msgstr ""
5504
 
5505
+ #: src/methods/s3.php:421
5506
  msgid "%s chunk %s: upload failed"
5507
  msgstr ""
5508
 
5509
+ #: src/methods/s3.php:411
5510
  msgid "%s error: file %s was shortened unexpectedly"
5511
  msgstr ""
5512
 
5513
+ #: src/methods/s3.php:389
5514
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5515
  msgstr ""
5516
 
5522
  msgid "WordPress Backup"
5523
  msgstr ""
5524
 
5525
+ #: src/methods/cloudfiles.php:582, src/methods/openstack-base.php:503
5526
  msgid "We accessed the container, and were able to create files within it."
5527
  msgstr ""
5528
 
5530
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5531
  msgstr ""
5532
 
5533
+ #: src/methods/cloudfiles.php:551, src/methods/openstack-base.php:445
5534
  msgid "Failure: No container details were given."
5535
  msgstr ""
5536
 
5541
  msgstr ""
5542
 
5543
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5544
+ #: src/methods/s3.php:1010
5545
  msgid "API key"
5546
  msgstr ""
5547
 
5549
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5550
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5551
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5552
+ #: src/admin.php:714, src/methods/addon-base-v2.php:282,
5553
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles-new.php:178,
5554
  #: src/methods/cloudfiles.php:526, src/methods/cloudfiles.php:531,
5555
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5556
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5557
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5558
+ #: src/methods/s3.php:1010, src/methods/s3.php:1014
5559
  msgid "Failure: No %s was given."
5560
  msgstr ""
5561
 
5562
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5563
+ #: src/methods/openstack-base.php:549, src/methods/s3.php:832
5564
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5565
  msgstr ""
5566
 
5599
  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."
5600
  msgstr ""
5601
 
5602
+ #: src/admin.php:737, src/methods/backup-module.php:253
5603
  msgid "Test %s Settings"
5604
  msgstr ""
5605
 
5606
+ #: src/class-updraftplus.php:1197, src/class-updraftplus.php:1241,
5607
  #: src/methods/cloudfiles.php:405, src/methods/stream-base.php:265
5608
  msgid "Error opening local file: Failed to download"
5609
  msgstr ""
5614
 
5615
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5616
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5617
+ #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:288,
5618
+ #: src/methods/s3.php:357, src/methods/s3.php:369, src/methods/s3.php:370
5619
  msgid "%s Error: Failed to upload"
5620
  msgstr ""
5621
 
5622
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5623
+ #: src/class-updraftplus.php:1055, src/methods/cloudfiles.php:142,
5624
  #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5625
  msgid "%s Error: Failed to open local file"
5626
  msgstr ""
5669
 
5670
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5671
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5672
+ #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:539,
5673
+ #: src/methods/s3.php:803, src/methods/stream-base.php:218
5674
  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."
5675
  msgstr ""
5676
 
5702
 
5703
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5704
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5705
+ #: src/methods/addon-base-v2.php:299, src/methods/cloudfiles.php:582,
5706
+ #: src/methods/googledrive.php:428, src/methods/openstack-base.php:503,
5707
+ #: src/methods/s3.php:1074, src/methods/stream-base.php:312
5708
  msgid "Success"
5709
  msgstr ""
5710
 
5743
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5744
  msgstr ""
5745
 
5746
+ #: src/addons/migrator.php:1775, src/admin.php:1239, src/admin.php:2910,
5747
+ #: src/admin.php:2944, src/admin.php:2948, src/admin.php:3871,
5748
+ #: src/restorer.php:2286, src/restorer.php:2391
5749
  msgid "OK"
5750
  msgstr ""
5751
 
5752
+ #: src/restorer.php:2280, src/restorer.php:2355
5753
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5754
  msgstr ""
5755
 
5756
+ #: src/addons/migrator.php:1154, src/restorer.php:2183
5757
  msgid "the database query being run was:"
5758
  msgstr ""
5759
 
5760
+ #: src/restorer.php:1885
5761
  msgid "will restore as:"
5762
  msgstr ""
5763
 
5764
+ #: src/class-updraftplus.php:4422, src/restorer.php:1689,
5765
+ #: src/restorer.php:1778, src/restorer.php:1804
5766
  msgid "Old table prefix:"
5767
  msgstr ""
5768
 
5769
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5770
+ #: src/backup.php:962, src/class-updraftplus.php:4361
5771
  msgid "Backup of:"
5772
  msgstr ""
5773
 
5839
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5840
  msgstr ""
5841
 
5842
+ #: src/admin.php:3879, src/admin.php:3880
5843
  msgid "Could not find one of the files for restoration"
5844
  msgstr ""
5845
 
5846
+ #: src/admin.php:3989
5847
  msgid "Error message"
5848
  msgstr ""
5849
 
5850
+ #: src/admin.php:3876
5851
  msgid "The backup records do not contain information about the proper size of this file."
5852
  msgstr ""
5853
 
5854
+ #: src/admin.php:3868
5855
  msgid "Archive is expected to be size:"
5856
  msgstr ""
5857
 
5858
+ #: src/admin.php:3765
5859
  msgid "If making a request for support, please include this information:"
5860
  msgstr ""
5861
 
5862
+ #: src/admin.php:3764
5863
  msgid "ABORT: Could not find the information on which entities to restore."
5864
  msgstr ""
5865
 
5866
+ #: src/admin.php:3719
5867
  msgid "UpdraftPlus Restoration: Progress"
5868
  msgstr ""
5869
 
5870
+ #: src/admin.php:3671
5871
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5872
  msgstr ""
5873
 
5874
+ #: src/admin.php:3613
5875
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5876
  msgstr ""
5877
 
5878
+ #: src/admin.php:3622
5879
  msgid "Delete this backup set"
5880
  msgstr ""
5881
 
5882
+ #: src/admin.php:3283
5883
  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."
5884
  msgstr ""
5885
 
5886
+ #: src/admin.php:3280
5887
  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."
5888
  msgstr ""
5889
 
5890
+ #: src/admin.php:3278
5891
  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)."
5892
  msgstr ""
5893
 
5894
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5895
+ #: src/methods/openstack-base.php:549, src/methods/s3.php:832
5896
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5897
  msgstr ""
5898
 
5899
+ #: src/templates/wp-admin/settings/form-contents.php:399
5900
  msgid "Save Changes"
5901
  msgstr ""
5902
 
5903
+ #: src/templates/wp-admin/settings/form-contents.php:376
5904
  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."
5905
  msgstr ""
5906
 
5907
+ #: src/templates/wp-admin/settings/form-contents.php:375
5908
  msgid "Disable SSL entirely where possible"
5909
  msgstr ""
5910
 
5911
+ #: src/templates/wp-admin/settings/form-contents.php:371
5912
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5913
  msgstr ""
5914
 
5915
+ #: src/templates/wp-admin/settings/form-contents.php:371
5916
  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."
5917
  msgstr ""
5918
 
5919
+ #: src/templates/wp-admin/settings/form-contents.php:370
5920
  msgid "Do not verify SSL certificates"
5921
  msgstr ""
5922
 
5923
+ #: src/templates/wp-admin/settings/form-contents.php:366
5924
  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."
5925
  msgstr ""
5926
 
5927
+ #: src/templates/wp-admin/settings/form-contents.php:365
5928
  msgid "Use the server's SSL certificates"
5929
  msgstr ""
5930
 
5931
+ #: src/admin.php:3144
5932
  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."
5933
  msgstr ""
5934
 
5935
+ #: src/admin.php:3144
5936
  msgid "click here"
5937
  msgstr ""
5938
 
5939
+ #: src/admin.php:3144
5940
  msgid "or, to reset this option"
5941
  msgstr ""
5942
 
5943
+ #: src/admin.php:3144
5944
  msgid "Follow this link to attempt to create the directory and set the permissions"
5945
  msgstr ""
5946
 
5947
+ #: src/admin.php:3136
5948
  msgid "Backup directory specified is writable, which is good."
5949
  msgstr ""
5950
 
5951
+ #: src/templates/wp-admin/settings/form-contents.php:346
5952
  msgid "Backup directory"
5953
  msgstr ""
5954
 
5955
+ #: src/templates/wp-admin/settings/form-contents.php:341
5956
  msgid "Delete local backup"
5957
  msgstr ""
5958
 
5959
+ #: src/templates/wp-admin/settings/form-contents.php:321
5960
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5961
  msgstr ""
5962
 
5963
+ #: src/templates/wp-admin/settings/form-contents.php:321
5964
  msgid "Show expert settings"
5965
  msgstr ""
5966
 
5967
+ #: src/templates/wp-admin/settings/form-contents.php:320
5968
  msgid "Expert settings"
5969
  msgstr ""
5970
 
5971
+ #: src/templates/wp-admin/settings/form-contents.php:331
5972
  msgid "Debug mode"
5973
  msgstr ""
5974
 
5975
+ #: src/templates/wp-admin/settings/form-contents.php:316
5976
  msgid "Advanced / Debugging Settings"
5977
  msgstr ""
5978
 
5979
+ #: src/admin.php:673
5980
  msgid "Requesting start of backup..."
5981
  msgstr ""
5982
 
5983
+ #: src/addons/morefiles.php:297, src/admin.php:689
5984
  msgid "Cancel"
5985
  msgstr ""
5986
 
5987
+ #: src/addons/reporting.php:233, src/admin.php:3427
5988
  msgid "None"
5989
  msgstr ""
5990
 
5992
  msgid "Choose your remote storage"
5993
  msgstr ""
5994
 
5995
+ #: src/templates/wp-admin/settings/form-contents.php:205
5996
  msgid "Manually decrypt a database backup file"
5997
  msgstr ""
5998
 
5999
+ #: src/templates/wp-admin/settings/form-contents.php:184
6000
  msgid "Database encryption phrase"
6001
  msgstr ""
6002
 
6003
+ #: src/templates/wp-admin/settings/form-contents.php:283,
6004
  #: src/udaddons/options.php:133
6005
  msgid "Email"
6006
  msgstr ""
6007
 
6008
+ #: src/templates/wp-admin/settings/form-contents.php:174
6009
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6010
  msgstr ""
6011
 
6012
+ #: src/addons/morefiles.php:443, src/admin.php:3214
6013
  msgid "Exclude these:"
6014
  msgstr ""
6015
 
6016
+ #: src/admin.php:3205
6017
  msgid "Any other directories found inside wp-content"
6018
  msgstr ""
6019
 
6020
+ #: src/templates/wp-admin/settings/form-contents.php:171
6021
  msgid "Include in files backup"
6022
  msgstr ""
6023
 
6029
  msgid "To fix the time at which a backup should take place,"
6030
  msgstr ""
6031
 
6032
+ #: src/admin.php:3130
6033
  msgid "Monthly"
6034
  msgstr ""
6035
 
6036
+ #: src/admin.php:3129
6037
  msgid "Fortnightly"
6038
  msgstr ""
6039
 
6040
+ #: src/admin.php:3128
6041
  msgid "Weekly"
6042
  msgstr ""
6043
 
6044
+ #: src/admin.php:3127
6045
  msgid "Daily"
6046
  msgstr ""
6047
 
6048
+ #: src/admin.php:696, src/admin.php:3110
6049
  msgid "Download log file"
6050
  msgstr ""
6051
 
6052
+ #: src/admin.php:3007
6053
  msgid "The folder exists, but your webserver does not have permission to write to it."
6054
  msgstr ""
6055
 
6056
+ #: src/admin.php:3002
6057
  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"
6058
  msgstr ""
6059
 
6060
+ #: src/admin.php:2988
6061
  msgid "The request to the filesystem to create the directory failed."
6062
  msgstr ""
6063
 
6064
+ #: src/addons/migrator.php:2253, src/admin.php:690, src/admin.php:2904,
6065
+ #: src/admin.php:2937, src/admin.php:3622,
6066
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6067
  msgid "Delete"
6068
  msgstr ""
6069
 
6070
+ #: src/admin.php:2688
6071
  msgid "(None)"
6072
  msgstr ""
6073
 
6074
+ #: src/admin.php:2844
6075
  msgid "show log"
6076
  msgstr ""
6077
 
6176
  msgid "Multisite"
6177
  msgstr ""
6178
 
6179
+ #: src/admin.php:2507
6180
  msgid "Go here for help."
6181
  msgstr ""
6182
 
6229
  msgid "Delete backup set"
6230
  msgstr ""
6231
 
6232
+ #: src/admin.php:672
6233
  msgid "Download error: the server sent us a response which we did not understand."
6234
  msgstr ""
6235
 
6236
+ #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:102,
6237
+ #: src/addons/migrator.php:780, src/addons/migrator.php:1026,
6238
+ #: src/addons/migrator.php:1107, src/addons/migrator.php:1154,
6239
+ #: src/addons/migrator.php:1388, src/addons/migrator.php:1714,
6240
+ #: src/addons/migrator.php:1741, src/addons/migrator.php:1747,
6241
+ #: src/addons/migrator.php:1809, src/addons/migrator.php:1849,
6242
+ #: src/addons/migrator.php:1888, src/addons/migrator.php:1898,
6243
+ #: src/addons/migrator.php:1903, src/addons/s3-enhanced.php:127,
6244
+ #: src/addons/s3-enhanced.php:132, src/addons/s3-enhanced.php:134,
6245
+ #: src/addons/sftp.php:814, src/addons/webdav.php:119, src/admin.php:84,
6246
+ #: src/admin.php:664, src/admin.php:3873, src/admin.php:3903,
6247
+ #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6248
+ #: src/methods/updraftvault.php:465, src/restorer.php:1408
6249
  msgid "Error:"
6250
  msgstr ""
6251
 
6252
+ #: src/admin.php:655,
6253
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6254
  msgid "calculating..."
6255
  msgstr ""
6294
  msgid "More tasks:"
6295
  msgstr ""
6296
 
6297
+ #: src/admin.php:2607
6298
  msgid "Download most recently modified log file"
6299
  msgstr ""
6300
 
6301
+ #: src/admin.php:2566, src/admin.php:2572, src/central/bootstrap.php:169
6302
  msgid "(Nothing yet logged)"
6303
  msgstr ""
6304
 
6305
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6306
+ #: src/admin.php:2565, src/admin.php:2570
6307
  msgid "Last log message"
6308
  msgstr ""
6309
 
6310
+ #: src/addons/migrator.php:232, src/admin.php:695, src/admin.php:3613,
6311
  #: src/templates/wp-admin/settings/tab-status.php:30
6312
  msgid "Restore"
6313
  msgstr ""
6314
 
6315
+ #: src/admin.php:516, src/admin.php:688,
6316
  #: src/templates/wp-admin/settings/tab-status.php:27
6317
  msgid "Backup Now"
6318
  msgstr ""
6319
 
6320
  #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6321
+ #: src/addons/reporting.php:248, src/admin.php:301, src/admin.php:3402,
6322
+ #: src/admin.php:3482, src/admin.php:3957,
6323
  #: src/includes/class-wpadmin-commands.php:147,
6324
  #: src/includes/class-wpadmin-commands.php:480,
6325
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
6327
  msgid "Database"
6328
  msgstr ""
6329
 
6330
+ #: src/admin.php:297, src/admin.php:4438
6331
  msgid "Files"
6332
  msgstr ""
6333
 
6339
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
6340
  msgstr ""
6341
 
6342
+ #: src/admin.php:277
6343
  msgid "At the same time as the files backup"
6344
  msgstr ""
6345
 
6346
+ #: src/admin.php:267, src/admin.php:288, src/admin.php:295
6347
  msgid "Nothing currently scheduled"
6348
  msgstr ""
6349
 
6355
  msgid "JavaScript warning"
6356
  msgstr ""
6357
 
6358
+ #: src/admin.php:675, src/admin.php:2634
6359
  msgid "Delete Old Directories"
6360
  msgstr ""
6361
 
6362
+ #: src/admin.php:2378
6363
  msgid "Current limit is:"
6364
  msgstr ""
6365
 
6366
+ #: src/admin.php:2352
6367
  msgid "Your backup has been restored."
6368
  msgstr ""
6369
 
6375
  msgid "Lead developer's homepage"
6376
  msgstr ""
6377
 
6378
+ #: src/admin.php:4351
6379
  msgid "Your settings have been wiped."
6380
  msgstr ""
6381
 
6382
+ #: src/admin.php:2312
6383
  msgid "Backup directory successfully created."
6384
  msgstr ""
6385
 
6386
+ #: src/admin.php:2305
6387
  msgid "Backup directory could not be created"
6388
  msgstr ""
6389
 
6390
+ #: src/admin.php:2876
6391
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6392
  msgstr ""
6393
 
6394
+ #: src/admin.php:2874
6395
  msgid "Old directories successfully removed."
6396
  msgstr ""
6397
 
6398
+ #: src/admin.php:2871, src/admin.php:2871
6399
  msgid "Remove old directories"
6400
  msgstr ""
6401
 
6402
  #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6403
+ #: src/admin.php:2254, src/admin.php:2263, src/admin.php:2272,
6404
+ #: src/admin.php:2314, src/admin.php:2878
6405
  msgid "Return to UpdraftPlus Configuration"
6406
  msgstr ""
6407
 
6408
+ #: src/admin.php:668, src/admin.php:2254, src/admin.php:2263,
6409
+ #: src/admin.php:2272, src/admin.php:2314, src/admin.php:2878,
6410
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6411
  msgid "Actions"
6412
  msgstr ""
6413
 
6414
+ #: src/admin.php:2173
6415
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6416
  msgstr ""
6417
 
6418
+ #: src/admin.php:2083
6419
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6420
  msgstr ""
6421
 
6422
+ #: src/admin.php:1964
6423
  msgid "No local copy present."
6424
  msgstr ""
6425
 
6426
+ #: src/admin.php:1961
6427
  msgid "Download in progress"
6428
  msgstr ""
6429
 
6430
+ #: src/admin.php:667, src/admin.php:1950
6431
  msgid "File ready."
6432
  msgstr ""
6433
 
6434
+ #: src/admin.php:1931
6435
  msgid "Download failed"
6436
  msgstr ""
6437
 
6438
+ #: src/admin.php:665, src/admin.php:1247, src/admin.php:1710,
6439
+ #: src/class-updraftplus.php:1197, src/class-updraftplus.php:1241,
6440
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6441
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6442
+ #: src/methods/stream-base.php:200, src/restorer.php:2282,
6443
+ #: src/restorer.php:2307, src/restorer.php:2388, src/updraftplus.php:156
6444
  msgid "Error"
6445
  msgstr ""
6446
 
6447
+ #: src/admin.php:1738
6448
  msgid "Could not find that job - perhaps it has already finished?"
6449
  msgstr ""
6450
 
6451
+ #: src/admin.php:1730
6452
  msgid "Job deleted"
6453
  msgstr ""
6454
 
6455
+ #: src/admin.php:1814
6456
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6457
  msgstr ""
6458
 
6459
+ #: src/admin.php:740
6460
  msgid "Nothing yet logged"
6461
  msgstr ""
6462
 
6463
+ #: src/admin.php:961
6464
  msgid "Please consult this FAQ if you have problems backing up."
6465
  msgstr ""
6466
 
6467
+ #: src/admin.php:961
6468
  msgid "Your website is hosted using the %s web server."
6469
  msgstr ""
6470
 
6471
+ #: src/admin.php:957
6472
  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."
6473
  msgstr ""
6474
 
6475
+ #: src/admin.php:953
6476
  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."
6477
  msgstr ""
6478
 
6479
+ #: src/admin.php:945, src/admin.php:949, src/admin.php:953, src/admin.php:957,
6480
+ #: src/admin.php:961, src/admin.php:970, src/admin.php:3271,
6481
+ #: src/admin.php:3278, src/admin.php:3280, src/methods/cloudfiles-new.php:107,
6482
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6483
+ #: src/methods/openstack-base.php:549, src/methods/s3.php:828,
6484
+ #: src/methods/s3.php:832, src/methods/updraftvault.php:286,
6485
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6486
  #: src/udaddons/updraftplus-addons.php:242
6487
  msgid "Warning"
6488
  msgstr ""
6489
 
6490
+ #: src/admin.php:890
6491
  msgid "Add-Ons / Pro Support"
6492
  msgstr ""
6493
 
6494
+ #: src/admin.php:532, src/admin.php:886,
6495
  #: src/templates/wp-admin/settings/tab-bar.php:7
6496
  msgid "Settings"
6497
  msgstr ""
6500
  msgid "Could not create %s zip. Consult the log file for more information."
6501
  msgstr ""
6502
 
6503
+ #: src/backup.php:2052
6504
  msgid "Infinite recursion: consult your log for more information"
6505
  msgstr ""
6506
 
6512
  msgid "Like UpdraftPlus and can spare one minute?"
6513
  msgstr ""
6514
 
6515
+ #: src/addons/azure.php:218, src/class-updraftplus.php:4080,
6516
+ #: src/methods/googledrive.php:1006, src/methods/s3.php:322
6517
  msgid "File not found"
6518
  msgstr ""
6519
 
6520
+ #: src/class-updraftplus.php:3987
6521
  msgid "The decryption key used:"
6522
  msgstr ""
6523
 
6524
+ #: src/class-updraftplus.php:3987, src/class-updraftplus.php:4296,
6525
  #: src/restorer.php:389
6526
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6527
  msgstr ""
6528
 
6529
+ #: src/class-updraftplus.php:3968, src/class-updraftplus.php:4284,
6530
  #: src/restorer.php:376
6531
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6532
  msgstr ""
6533
 
6534
+ #: src/backup.php:1935
6535
  msgid "Could not open the backup file for writing"
6536
  msgstr ""
6537
 
6538
+ #: src/class-updraftplus.php:3354
6539
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6540
  msgstr ""
6541
 
6542
+ #: src/class-updraftplus.php:3315
6543
  msgid "Could not read the directory"
6544
  msgstr ""
6545
 
6546
+ #: src/admin.php:2001, src/backup.php:1159
6547
  msgid "Backup directory (%s) is not writable, or does not exist."
6548
  msgstr ""
6549
 
6550
+ #: src/backup.php:963
6551
  msgid "WordPress backup is complete"
6552
  msgstr ""
6553
 
6554
+ #: src/class-updraftplus.php:2827
6555
  msgid "The backup attempt has finished, apparently unsuccessfully"
6556
  msgstr ""
6557
 
6558
+ #: src/class-updraftplus.php:2812
6559
  msgid "The backup apparently succeeded and is now complete"
6560
  msgstr ""
6561
 
6563
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6564
  msgstr ""
6565
 
6566
+ #: src/class-updraftplus.php:2515
6567
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6568
  msgstr ""
6569
 
6570
+ #: src/class-updraftplus.php:1798
6571
  msgid "Others"
6572
  msgstr ""
6573
 
6574
+ #: src/addons/multisite.php:467, src/class-updraftplus.php:1783
6575
  msgid "Uploads"
6576
  msgstr ""
6577
 
6578
+ #: src/class-updraftplus.php:1782
6579
  msgid "Themes"
6580
  msgstr ""
6581
 
6582
+ #: src/class-updraftplus.php:1781
6583
  msgid "Plugins"
6584
  msgstr ""
6585
 
6586
+ #: src/class-updraftplus.php:560
6587
  msgid "No log files were found."
6588
  msgstr ""
6589
 
6590
+ #: src/admin.php:1883, src/admin.php:1887, src/class-updraftplus.php:555
6591
  msgid "The log file could not be read."
6592
  msgstr ""
6593
 
6594
+ #: src/admin.php:977, src/admin.php:981, src/admin.php:985, src/admin.php:989,
6595
+ #: src/admin.php:993, src/class-updraftplus.php:520,
6596
+ #: src/class-updraftplus.php:555, src/class-updraftplus.php:560,
6597
+ #: src/class-updraftplus.php:565
6598
  msgid "UpdraftPlus notice:"
6599
  msgstr ""
6600
 
6601
+ #: src/addons/multisite.php:65, src/addons/multisite.php:689,
6602
  #: src/options.php:50
6603
  msgid "UpdraftPlus Backups"
6604
  msgstr ""
languages/updraftplus-ar.po CHANGED
@@ -11,23 +11,149 @@ msgstr ""
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
- #: src/class-updraftplus.php:4741
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
16
  msgstr ""
17
 
18
- #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
  msgid "the migrator add-on"
20
  msgstr ""
21
 
22
- #: src/class-updraftplus.php:4739
23
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
  msgstr ""
25
 
26
- #: src/class-updraftplus.php:4737
27
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
28
  msgstr ""
29
 
30
- #: src/class-updraftplus.php:4734
31
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
32
  msgstr ""
33
 
@@ -43,17 +169,17 @@ msgstr ""
43
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr ""
45
 
46
- #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr ""
49
 
50
- #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
- #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr ""
54
 
55
- #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
- #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr ""
59
 
@@ -93,7 +219,7 @@ msgstr ""
93
  msgid "Remote storage"
94
  msgstr ""
95
 
96
- #: src/templates/wp-admin/settings/form-contents.php:221
97
  msgid "Select Files"
98
  msgstr ""
99
 
@@ -109,15 +235,15 @@ msgstr ""
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr ""
111
 
112
- #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr ""
115
 
116
- #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr ""
119
 
120
- #: src/admin.php:1540
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr ""
123
 
@@ -129,7 +255,7 @@ msgstr ""
129
  msgid "__Check this box to use Amazon's server-side encryption"
130
  msgstr ""
131
 
132
- #: src/addons/azure.php:535
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr ""
135
 
@@ -141,11 +267,11 @@ msgstr ""
141
  msgid "Cloud Files"
142
  msgstr ""
143
 
144
- #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr ""
147
 
148
- #: src/admin.php:4219
149
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
150
  msgstr ""
151
 
@@ -162,87 +288,87 @@ msgstr ""
162
  msgid "Extra database"
163
  msgstr ""
164
 
165
- #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr ""
168
 
169
- #: src/admin.php:1070, src/admin.php:1080
170
  msgid "Error: invalid path"
171
  msgstr ""
172
 
173
- #: src/admin.php:928
174
  msgid "An error occurred when fetching storage module options: "
175
  msgstr ""
176
 
177
- #: src/admin.php:756
178
  msgid "Loading log file"
179
  msgstr ""
180
 
181
- #: src/admin.php:755
182
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
183
  msgstr ""
184
 
185
- #: src/admin.php:754
186
  msgid "Search"
187
  msgstr ""
188
 
189
- #: src/admin.php:753
190
  msgid "Select a file to view information about it"
191
  msgstr ""
192
 
193
- #: src/admin.php:752
194
  msgid "Browsing zip file"
195
  msgstr ""
196
 
197
- #: src/admin.php:721
198
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
199
  msgstr ""
200
 
201
- #: src/admin.php:669
202
  msgid "Browse contents"
203
  msgstr ""
204
 
205
- #: src/restorer.php:1692
206
  msgid "Skipped tables:"
207
  msgstr ""
208
 
209
- #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr ""
212
 
213
- #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr ""
216
 
217
- #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr ""
220
 
221
- #: src/admin.php:751
222
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
223
  msgstr ""
224
 
225
- #: src/admin.php:751
226
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
227
  msgstr ""
228
 
229
- #: src/admin.php:751
230
  msgid "The available memory on the server."
231
  msgstr ""
232
 
233
- #: src/admin.php:751
234
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
235
  msgstr ""
236
 
237
- #: src/admin.php:751
238
  msgid "The file failed to upload. Please check the following:"
239
  msgstr ""
240
 
241
- #: src/admin.php:750
242
  msgid "HTTP code:"
243
  msgstr ""
244
 
245
- #: src/admin.php:646
246
  msgid "You have chosen to backup a database, but no tables have been selected"
247
  msgstr ""
248
 
@@ -411,7 +537,7 @@ msgstr ""
411
  msgid "UpdraftPlus"
412
  msgstr ""
413
 
414
- #: src/templates/wp-admin/settings/form-contents.php:245
415
  msgid "Recommended: optimize your database with WP-Optimize."
416
  msgstr ""
417
 
@@ -706,11 +832,11 @@ msgstr ""
706
  msgid "Export / import settings"
707
  msgstr ""
708
 
709
- #: src/restorer.php:1869
710
  msgid "Processing table (%s)"
711
  msgstr ""
712
 
713
- #: src/restorer.php:1658
714
  msgid "Backup of: %s"
715
  msgstr ""
716
 
@@ -730,11 +856,11 @@ msgstr ""
730
  msgid "Follow this link to deauthenticate with %s."
731
  msgstr ""
732
 
733
- #: src/central/bootstrap.php:549
734
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
735
  msgstr ""
736
 
737
- #: src/backup.php:1527
738
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
739
  msgstr ""
740
 
@@ -742,51 +868,51 @@ msgstr ""
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr ""
744
 
745
- #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr ""
748
 
749
- #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr ""
752
 
753
- #: src/admin.php:973, src/admin.php:977, src/admin.php:985, src/admin.php:989
754
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
755
  msgstr ""
756
 
757
- #: src/admin.php:749
758
  msgid "remote files deleted"
759
  msgstr ""
760
 
761
- #: src/admin.php:747
762
  msgid "Complete"
763
  msgstr ""
764
 
765
- #: src/admin.php:746
766
  msgid "Do you want to carry out the import?"
767
  msgstr ""
768
 
769
- #: src/admin.php:745
770
  msgid "Which was exported on:"
771
  msgstr ""
772
 
773
- #: src/admin.php:744
774
  msgid "This will import data from:"
775
  msgstr ""
776
 
777
- #: src/admin.php:743
778
  msgid "Importing..."
779
  msgstr ""
780
 
781
- #: src/admin.php:739
782
  msgid "You have not yet selected a file to import."
783
  msgstr ""
784
 
785
- #: src/admin.php:723
786
  msgid "Your export file will be of your displayed settings, not your saved ones."
787
  msgstr ""
788
 
789
- #: src/admin.php:82
790
  msgid "template not found"
791
  msgstr ""
792
 
@@ -827,15 +953,15 @@ msgstr ""
827
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
828
  msgstr ""
829
 
830
- #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr ""
833
 
834
- #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr ""
837
 
838
- #: src/admin.php:707
839
  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."
840
  msgstr ""
841
 
@@ -867,11 +993,11 @@ msgstr ""
867
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
868
  msgstr ""
869
 
870
- #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr ""
873
 
874
- #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr ""
877
 
@@ -891,31 +1017,27 @@ msgstr ""
891
  msgid "FAQs"
892
  msgstr ""
893
 
894
- #: src/central/bootstrap.php:496
895
  msgid "More information..."
896
  msgstr ""
897
 
898
- #: src/central/bootstrap.php:494
899
  msgid "Use the alternative method for making a connection with the dashboard."
900
  msgstr ""
901
 
902
- #: src/central/bootstrap.php:477
903
- msgid "Dashboard at"
904
- msgstr ""
905
-
906
- #: src/central/bootstrap.php:425
907
  msgid "Key size: %d bits"
908
  msgstr ""
909
 
910
- #: src/central/bootstrap.php:420
911
  msgid "Public key was sent to:"
912
  msgstr ""
913
 
914
- #: src/backup.php:2105
915
  msgid "Failed to open directory (check the file permissions and ownership): %s"
916
  msgstr ""
917
 
918
- #: src/backup.php:2083
919
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
920
  msgstr ""
921
 
@@ -923,33 +1045,33 @@ msgstr ""
923
  msgid "Create key"
924
  msgstr ""
925
 
926
- #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr ""
929
 
930
- #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr "موصى به"
933
 
934
- #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr ""
937
 
938
- #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr ""
941
 
942
- #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr ""
945
 
946
  #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
- #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
- #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr ""
951
 
952
- #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr ""
955
 
@@ -981,19 +1103,11 @@ msgstr ""
981
  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."
982
  msgstr ""
983
 
984
- #: src/class-updraftplus.php:1693
985
  msgid "Size: %s MB"
986
  msgstr ""
987
 
988
- #: src/central/bootstrap.php:486
989
- msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
990
- msgstr ""
991
-
992
- #: src/central/bootstrap.php:481
993
- msgid "i.e. you have an account there"
994
- msgstr ""
995
-
996
- #: src/templates/wp-admin/settings/form-contents.php:339
997
  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)."
998
  msgstr ""
999
 
@@ -1001,7 +1115,7 @@ msgstr ""
1001
  msgid "Now"
1002
  msgstr "الآن"
1003
 
1004
- #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr ""
1007
 
@@ -1023,63 +1137,51 @@ msgstr ""
1023
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1024
  msgstr ""
1025
 
1026
- #: src/class-updraftplus.php:481, src/class-updraftplus.php:526
1027
  msgid "The given file was not found, or could not be read."
1028
  msgstr ""
1029
 
1030
- #: src/central/bootstrap.php:547
1031
  msgid "UpdraftCentral (Remote Control)"
1032
  msgstr ""
1033
 
1034
- #: src/central/bootstrap.php:535
1035
- msgid "fetch..."
1036
- msgstr ""
1037
-
1038
- #: src/central/bootstrap.php:534
1039
  msgid "View recent UpdraftCentral log events"
1040
  msgstr ""
1041
 
1042
- #: src/central/bootstrap.php:489
1043
  msgid "URL of mothership"
1044
  msgstr ""
1045
 
1046
- #: src/central/bootstrap.php:472
1047
  msgid "Enter any description"
1048
  msgstr ""
1049
 
1050
- #: src/central/bootstrap.php:469
1051
  msgid "Description"
1052
  msgstr " الوصف"
1053
 
1054
- #: src/central/bootstrap.php:463
1055
- msgid "Create new key"
1056
- msgstr ""
1057
-
1058
- #: src/central/bootstrap.php:430
1059
  msgid "Delete..."
1060
  msgstr ""
1061
 
1062
- #: src/central/bootstrap.php:423
1063
  msgid "Created:"
1064
  msgstr ""
1065
 
1066
- #: src/central/bootstrap.php:420
1067
  msgid "Access this site as user:"
1068
  msgstr ""
1069
 
1070
- #: src/central/bootstrap.php:388
1071
- msgid "No keys have yet been created."
1072
- msgstr ""
1073
-
1074
- #: src/central/bootstrap.php:442
1075
  msgid "Details"
1076
  msgstr "تفاصيل عن المناسبة"
1077
 
1078
- #: src/central/bootstrap.php:441
1079
  msgid "Key description"
1080
  msgstr ""
1081
 
1082
- #: src/central/bootstrap.php:316, src/central/bootstrap.php:327
1083
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
1084
  msgstr ""
1085
 
@@ -1123,23 +1225,23 @@ msgstr ""
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr ""
1125
 
1126
- #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr ""
1129
 
1130
- #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr "تم حفظ إعداداتك."
1133
 
1134
- #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr ""
1137
 
1138
- #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr "توقف"
1141
 
1142
- #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr ""
1145
 
@@ -1165,27 +1267,27 @@ msgstr ""
1165
  msgid "calculate"
1166
  msgstr ""
1167
 
1168
- #: src/admin.php:722
1169
  msgid "You should save your changes to ensure that they are used for making your backup."
1170
  msgstr ""
1171
 
1172
- #: src/admin.php:715
1173
  msgid "We requested to delete the file, but could not understand the server's response"
1174
  msgstr ""
1175
 
1176
- #: src/admin.php:714
1177
  msgid "Please enter a valid URL"
1178
  msgstr ""
1179
 
1180
- #: src/admin.php:697
1181
  msgid "Saving..."
1182
  msgstr "جاري الحفظ..."
1183
 
1184
- #: src/admin.php:660
1185
  msgid "Error: the server sent us a response which we did not understand."
1186
  msgstr ""
1187
 
1188
- #: src/admin.php:652
1189
  msgid "Fetching..."
1190
  msgstr ""
1191
 
@@ -1193,7 +1295,7 @@ msgstr ""
1193
  msgid "Asia Pacific (Seoul)"
1194
  msgstr ""
1195
 
1196
- #: src/restorer.php:1681
1197
  msgid "Uploads URL:"
1198
  msgstr ""
1199
 
@@ -1205,40 +1307,40 @@ msgstr ""
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr ""
1207
 
1208
- #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr ""
1211
 
1212
- #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr ""
1215
 
1216
- #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr ""
1219
 
1220
- #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr "رفض"
1224
 
1225
- #: src/admin.php:734
1226
  msgid "Please fill in the required information."
1227
  msgstr ""
1228
 
1229
- #: src/addons/multisite.php:576
1230
  msgid "Read more..."
1231
  msgstr ""
1232
 
1233
- #: src/addons/multisite.php:567
1234
  msgid "may include some site-wide data"
1235
  msgstr ""
1236
 
1237
- #: src/addons/multisite.php:562
1238
  msgid "All sites"
1239
  msgstr ""
1240
 
1241
- #: src/addons/multisite.php:558
1242
  msgid "Which site to restore"
1243
  msgstr ""
1244
 
@@ -1283,15 +1385,15 @@ msgstr ""
1283
  msgid "Call WordPress action:"
1284
  msgstr ""
1285
 
1286
- #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr ""
1289
 
1290
- #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr ""
1293
 
1294
- #: src/templates/wp-admin/settings/form-contents.php:169
1295
  msgid "File Options"
1296
  msgstr ""
1297
 
@@ -1319,51 +1421,51 @@ msgstr ""
1319
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1320
  msgstr ""
1321
 
1322
- #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr ""
1325
 
1326
- #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr ""
1329
 
1330
- #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr ""
1333
 
1334
- #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr "إعدادات"
1337
 
1338
- #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr ""
1341
 
1342
- #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr ""
1345
 
1346
- #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr ""
1349
 
1350
- #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr ""
1353
 
1354
- #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr ""
1357
 
1358
- #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr ""
1361
 
1362
- #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr ""
1365
 
1366
- #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr ""
1369
 
@@ -1371,24 +1473,24 @@ msgstr ""
1371
  msgid "Premium / Extensions"
1372
  msgstr ""
1373
 
1374
- #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr ""
1377
 
1378
- #: src/addons/morefiles.php:55, src/admin.php:720
1379
  msgctxt "(verb)"
1380
  msgid "Download"
1381
  msgstr ""
1382
 
1383
- #: src/admin.php:645
1384
  msgid "You have chosen to backup files, but no file entities have been selected"
1385
  msgstr ""
1386
 
1387
- #: src/admin.php:546
1388
  msgid "Extensions"
1389
  msgstr "Extensions"
1390
 
1391
- #: src/admin.php:538, src/templates/wp-admin/settings/tab-bar.php:8
1392
  msgid "Advanced Tools"
1393
  msgstr ""
1394
 
@@ -1470,71 +1572,71 @@ msgstr ""
1470
  msgid "Standard"
1471
  msgstr ""
1472
 
1473
- #: src/addons/azure.php:563
1474
  msgid "container"
1475
  msgstr ""
1476
 
1477
- #: src/addons/azure.php:563
1478
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1479
  msgstr ""
1480
 
1481
- #: src/addons/azure.php:562
1482
  msgid "optional"
1483
  msgstr ""
1484
 
1485
- #: src/addons/azure.php:562
1486
  msgid "Prefix"
1487
  msgstr ""
1488
 
1489
- #: src/addons/azure.php:557
1490
  msgid "See Microsoft's guidelines on container naming by following this link."
1491
  msgstr ""
1492
 
1493
- #: src/addons/azure.php:557
1494
  msgid "Enter the path of the %s you wish to use here."
1495
  msgstr ""
1496
 
1497
- #: src/addons/azure.php:546
1498
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1499
  msgstr ""
1500
 
1501
- #: src/addons/azure.php:545
1502
  msgid "Account Name"
1503
  msgstr ""
1504
 
1505
- #: src/addons/azure.php:545, src/addons/azure.php:549
1506
  msgid "Azure"
1507
  msgstr ""
1508
 
1509
- #: src/addons/azure.php:541
1510
  msgid "Create Azure credentials in your Azure developer console."
1511
  msgstr ""
1512
 
1513
- #: src/addons/azure.php:489
1514
  msgid "Could not create the container"
1515
  msgstr ""
1516
 
1517
- #: src/addons/azure.php:352
1518
  msgid "Could not access container"
1519
  msgstr ""
1520
 
1521
- #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr ""
1524
 
1525
- #: src/backup.php:1579
1526
  msgid "the options table was not found"
1527
  msgstr ""
1528
 
1529
- #: src/backup.php:1577
1530
  msgid "no options or sitemeta table was found"
1531
  msgstr ""
1532
 
1533
- #: src/backup.php:1577, src/backup.php:1579
1534
  msgid "The database backup appears to have failed"
1535
  msgstr ""
1536
 
1537
- #: src/backup.php:1449
1538
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1539
  msgstr ""
1540
 
@@ -1647,35 +1749,35 @@ msgstr ""
1647
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1648
  msgstr ""
1649
 
1650
- #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr ""
1653
 
1654
- #: src/admin.php:733
1655
  msgid "Processing..."
1656
  msgstr ""
1657
 
1658
- #: src/admin.php:731
1659
  msgid "For backups older than"
1660
  msgstr ""
1661
 
1662
- #: src/admin.php:730
1663
  msgid "week(s)"
1664
  msgstr ""
1665
 
1666
- #: src/admin.php:729
1667
  msgid "hour(s)"
1668
  msgstr ""
1669
 
1670
- #: src/admin.php:728
1671
  msgid "day(s)"
1672
  msgstr ""
1673
 
1674
- #: src/admin.php:727
1675
  msgid "in the month"
1676
  msgstr ""
1677
 
1678
- #: src/admin.php:726
1679
  msgid "day"
1680
  msgstr ""
1681
 
@@ -1687,11 +1789,11 @@ msgstr ""
1687
  msgid "Add an additional retention rule..."
1688
  msgstr ""
1689
 
1690
- #: src/restorer.php:2191
1691
  msgid "This database needs to be deployed on MySQL version %s or later."
1692
  msgstr ""
1693
 
1694
- #: src/restorer.php:2191
1695
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1696
  msgstr ""
1697
 
@@ -1699,15 +1801,15 @@ msgstr ""
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr ""
1701
 
1702
- #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr ""
1705
 
1706
- #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr ""
1709
 
1710
- #: src/admin.php:2291
1711
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1712
  msgstr ""
1713
 
@@ -1735,11 +1837,11 @@ msgstr ""
1735
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1736
  msgstr ""
1737
 
1738
- #: src/admin.php:981
1739
  msgid "Go to the remote storage settings in order to connect."
1740
  msgstr ""
1741
 
1742
- #: src/admin.php:981
1743
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1744
  msgstr ""
1745
 
@@ -1747,19 +1849,19 @@ msgstr ""
1747
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1748
  msgstr ""
1749
 
1750
- #: src/admin.php:703
1751
  msgid "Update quota count"
1752
  msgstr ""
1753
 
1754
- #: src/admin.php:702
1755
  msgid "Counting..."
1756
  msgstr ""
1757
 
1758
- #: src/admin.php:701
1759
  msgid "Disconnecting..."
1760
  msgstr ""
1761
 
1762
- #: src/admin.php:699
1763
  msgid "Connecting..."
1764
  msgstr ""
1765
 
@@ -1785,7 +1887,7 @@ msgstr ""
1785
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1786
  msgstr ""
1787
 
1788
- #: src/admin.php:700, src/methods/updraftvault.php:388
1789
  msgid "Disconnect"
1790
  msgstr ""
1791
 
@@ -1817,7 +1919,8 @@ msgstr ""
1817
  msgid "E-mail"
1818
  msgstr ""
1819
 
1820
- #: src/methods/updraftvault.php:338, src/methods/updraftvault.php:353
 
1821
  msgid "Back..."
1822
  msgstr ""
1823
 
@@ -1830,7 +1933,7 @@ msgstr ""
1830
  msgid "%s per quarter"
1831
  msgstr ""
1832
 
1833
- #: src/central/bootstrap.php:549, src/methods/updraftvault.php:305,
1834
  #: src/methods/updraftvault.php:335
1835
  msgid "Read more about it here."
1836
  msgstr ""
@@ -1875,12 +1978,12 @@ msgstr ""
1875
  msgid "Updraft Vault"
1876
  msgstr ""
1877
 
1878
- #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
- #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr ""
1882
 
1883
- #: src/backup.php:3043
1884
  msgid "The zip engine returned the message: %s."
1885
  msgstr ""
1886
 
@@ -1904,7 +2007,7 @@ msgstr ""
1904
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1905
  msgstr ""
1906
 
1907
- #: src/addons/migrator.php:1747, src/admin.php:709
1908
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1909
  msgstr ""
1910
 
@@ -1932,11 +2035,11 @@ msgstr ""
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr ""
1934
 
1935
- #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr ""
1938
 
1939
- #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr ""
1942
 
@@ -1976,7 +2079,7 @@ msgstr ""
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr ""
1978
 
1979
- #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr ""
1982
 
@@ -1996,23 +2099,23 @@ msgstr ""
1996
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1997
  msgstr ""
1998
 
1999
- #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr ""
2002
 
2003
- #: src/admin.php:713
2004
  msgid "Deleting..."
2005
  msgstr ""
2006
 
2007
- #: src/admin.php:712
2008
  msgid "key name"
2009
  msgstr ""
2010
 
2011
- #: src/admin.php:710
2012
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2013
  msgstr ""
2014
 
2015
- #: src/admin.php:707
2016
  msgid "Creating..."
2017
  msgstr ""
2018
 
@@ -2036,11 +2139,11 @@ msgstr ""
2036
  msgid "Or, send a backup to another site"
2037
  msgstr ""
2038
 
2039
- #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr ""
2042
 
2043
- #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr ""
2046
 
@@ -2105,15 +2208,15 @@ msgstr ""
2105
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2106
  msgstr ""
2107
 
2108
- #: src/admin.php:706
2109
  msgid "Resetting..."
2110
  msgstr ""
2111
 
2112
- #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr ""
2115
 
2116
- #: src/admin.php:704
2117
  msgid "Adding..."
2118
  msgstr ""
2119
 
@@ -2121,7 +2224,7 @@ msgstr ""
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr ""
2123
 
2124
- #: src/restorer.php:2193
2125
  msgid "To use this backup, your database server needs to support the %s character set."
2126
  msgstr ""
2127
 
@@ -2149,7 +2252,7 @@ msgstr ""
2149
  msgid "To restore using any of the backup sets below, press the button."
2150
  msgstr ""
2151
 
2152
- #: src/admin.php:696, src/admin.php:722, src/admin.php:723
2153
  msgid "You have made changes to your settings, and not saved."
2154
  msgstr ""
2155
 
@@ -2161,7 +2264,7 @@ msgstr ""
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr ""
2163
 
2164
- #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr ""
@@ -2174,7 +2277,7 @@ msgstr ""
2174
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2175
  msgstr ""
2176
 
2177
- #: src/addons/azure.php:533
2178
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2179
  msgstr ""
2180
 
@@ -2340,7 +2443,7 @@ msgstr ""
2340
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2341
  msgstr ""
2342
 
2343
- #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr ""
2346
 
@@ -2415,7 +2518,7 @@ msgstr ""
2415
  msgid "(at same time as files backup)"
2416
  msgstr ""
2417
 
2418
- #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr ""
2421
 
@@ -2464,17 +2567,17 @@ msgstr ""
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr ""
2466
 
2467
- #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
- #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr ""
2471
 
2472
- #: src/templates/wp-admin/settings/form-contents.php:220
2473
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2474
  msgid "or"
2475
  msgstr ""
2476
 
2477
- #: src/admin.php:690
2478
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2479
  msgstr ""
2480
 
@@ -2497,20 +2600,20 @@ msgctxt "Keystone and swauth are technical terms which cannot be translated"
2497
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2498
  msgstr ""
2499
 
2500
- #: src/templates/wp-admin/settings/form-contents.php:290
2501
  msgid "your site's admin address"
2502
  msgstr ""
2503
 
2504
- #: src/templates/wp-admin/settings/form-contents.php:290
2505
  msgid "Check this box to have a basic report sent to"
2506
  msgstr ""
2507
 
2508
- #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr ""
2512
 
2513
- #: src/restorer.php:2170
2514
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
2515
  msgid "An error (%s) occurred:"
2516
  msgstr ""
@@ -2523,7 +2626,7 @@ msgstr ""
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr ""
2525
 
2526
- #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr ""
2529
 
@@ -2532,7 +2635,7 @@ msgid "Database decryption phrase"
2532
  msgstr ""
2533
 
2534
  #: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
2535
- #: src/admin.php:695
2536
  msgid "Automatic backup before update"
2537
  msgstr ""
2538
 
@@ -2617,7 +2720,7 @@ msgstr ""
2617
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2618
  msgstr ""
2619
 
2620
- #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr ""
2623
 
@@ -2634,7 +2737,7 @@ msgstr ""
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr ""
2636
 
2637
- #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr ""
2640
 
@@ -2646,28 +2749,28 @@ msgstr ""
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr ""
2648
 
2649
- #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr ""
2653
 
2654
- #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr ""
2657
 
2658
- #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr ""
2661
 
2662
- #: src/backup.php:3049
2663
  msgid "check your log for more details."
2664
  msgstr ""
2665
 
2666
- #: src/backup.php:3047
2667
  msgid "your web hosting account appears to be full; please see: %s"
2668
  msgstr ""
2669
 
2670
- #: src/backup.php:3045
2671
  msgid "A zip error occurred"
2672
  msgstr ""
2673
 
@@ -2695,11 +2798,11 @@ msgstr ""
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr ""
2697
 
2698
- #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr ""
2701
 
2702
- #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr ""
2705
 
@@ -2736,19 +2839,19 @@ msgstr ""
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr ""
2738
 
2739
- #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr ""
2742
 
2743
- #: src/class-updraftplus.php:4781
2744
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2745
  msgstr ""
2746
 
2747
- #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr ""
2750
 
2751
- #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr ""
2754
 
@@ -2777,7 +2880,7 @@ msgstr ""
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
- #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr ""
2783
 
@@ -2789,15 +2892,15 @@ msgstr ""
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr ""
2791
 
2792
- #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr ""
2795
 
2796
- #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr ""
2799
 
2800
- #: src/admin.php:2964
2801
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2802
  msgstr ""
2803
 
@@ -2805,11 +2908,11 @@ msgstr ""
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr ""
2807
 
2808
- #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr ""
2811
 
2812
- #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr ""
2815
 
@@ -2829,15 +2932,15 @@ msgstr ""
2829
  msgid "Memory limit"
2830
  msgstr ""
2831
 
2832
- #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr ""
2835
 
2836
- #: src/backup.php:862
2837
  msgid "Incremental"
2838
  msgstr ""
2839
 
2840
- #: src/backup.php:862
2841
  msgid "Full backup"
2842
  msgstr ""
2843
 
@@ -2853,7 +2956,7 @@ msgstr ""
2853
  msgid "Backup succeeded"
2854
  msgstr ""
2855
 
2856
- #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr ""
@@ -2892,15 +2995,15 @@ msgstr ""
2892
  msgid "search term"
2893
  msgstr ""
2894
 
2895
- #: src/restorer.php:2198
2896
  msgid "Too many database errors have occurred - aborting"
2897
  msgstr ""
2898
 
2899
- #: src/backup.php:928
2900
  msgid "read more at %s"
2901
  msgstr ""
2902
 
2903
- #: src/backup.php:928
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr ""
2906
 
@@ -2908,11 +3011,11 @@ msgstr ""
2908
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2909
  msgstr ""
2910
 
2911
- #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr ""
2914
 
2915
- #: src/templates/wp-admin/settings/form-contents.php:181
2916
  msgid "Database Options"
2917
  msgstr ""
2918
 
@@ -2928,30 +3031,30 @@ msgstr ""
2928
  msgid "Free disk space in account:"
2929
  msgstr ""
2930
 
2931
- #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr ""
2934
 
2935
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
  #: src/includes/deprecated-actions.php:29,
2937
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr ""
2941
 
2942
- #: src/admin.php:514, src/templates/wp-admin/settings/tab-bar.php:5
2943
  msgid "Current Status"
2944
  msgstr ""
2945
 
2946
- #: src/admin.php:937
2947
  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."
2948
  msgstr ""
2949
 
2950
- #: src/admin.php:937
2951
  msgid "To make a backup, just press the Backup Now button."
2952
  msgstr ""
2953
 
2954
- #: src/admin.php:937
2955
  msgid "Welcome to UpdraftPlus!"
2956
  msgstr ""
2957
 
@@ -3023,7 +3126,7 @@ msgstr ""
3023
  msgid "user"
3024
  msgstr ""
3025
 
3026
- #: src/class-updraftplus.php:1690
3027
  msgid "External database (%s)"
3028
  msgstr ""
3029
 
@@ -3040,31 +3143,31 @@ msgstr ""
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr ""
3042
 
3043
- #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr ""
3046
 
3047
- #: src/templates/wp-admin/settings/form-contents.php:334
3048
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
3049
  msgstr ""
3050
 
3051
- #: src/templates/wp-admin/settings/form-contents.php:263
3052
  msgid "Back up more databases"
3053
  msgstr ""
3054
 
3055
- #: src/templates/wp-admin/settings/form-contents.php:222
3056
  msgid "First, enter the decryption key"
3057
  msgstr ""
3058
 
3059
- #: src/templates/wp-admin/settings/form-contents.php:204
3060
  msgid "You can manually decrypt an encrypted database here."
3061
  msgstr ""
3062
 
3063
- #: src/templates/wp-admin/settings/form-contents.php:190
3064
  msgid "It can also backup external databases."
3065
  msgstr ""
3066
 
3067
- #: src/templates/wp-admin/settings/form-contents.php:190
3068
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3069
  msgstr ""
3070
 
@@ -3072,7 +3175,7 @@ msgstr ""
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr ""
3074
 
3075
- #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr ""
3078
 
@@ -3080,16 +3183,16 @@ msgstr ""
3080
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
3081
  msgstr ""
3082
 
3083
- #: src/restorer.php:1757, src/restorer.php:2139, src/restorer.php:2180,
3084
- #: src/restorer.php:2193
3085
  msgid "An error occurred on the first %s command - aborting run"
3086
  msgstr ""
3087
 
3088
- #: src/addons/moredatabase.php:105, src/backup.php:1390
3089
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3090
  msgstr ""
3091
 
3092
- #: src/backup.php:1390
3093
  msgid "database connection attempt failed."
3094
  msgstr ""
3095
 
@@ -3101,7 +3204,7 @@ msgstr ""
3101
  msgid "In %s, path names are case sensitive."
3102
  msgstr ""
3103
 
3104
- #: src/addons/azure.php:563, src/addons/google-enhanced.php:85,
3105
  #: src/addons/onedrive.php:983
3106
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3107
  msgstr ""
@@ -3115,7 +3218,7 @@ msgstr ""
3115
  msgid "Enter the path of the %s folder you wish to use here."
3116
  msgstr ""
3117
 
3118
- #: src/addons/azure.php:556, src/methods/openstack2.php:164
3119
  msgid "Container"
3120
  msgstr ""
3121
 
@@ -3176,30 +3279,30 @@ msgstr ""
3176
  msgid "Authenticate with %s"
3177
  msgstr ""
3178
 
3179
- #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr ""
3182
 
3183
- #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:496
3184
  msgid "Region: %s"
3185
  msgstr ""
3186
 
3187
- #: src/methods/openstack-base.php:490
3188
  msgid "%s error - we accessed the container, but failed to create a file within it"
3189
  msgstr ""
3190
 
3191
- #: src/methods/openstack-base.php:406
3192
  msgid "The %s object was not found"
3193
  msgstr ""
3194
 
3195
- #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:329,
3196
- #: src/methods/openstack-base.php:398
3197
  msgid "Could not access %s container"
3198
  msgstr ""
3199
 
3200
  #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:116,
3201
- #: src/methods/openstack-base.php:123, src/methods/openstack-base.php:321,
3202
- #: src/methods/openstack-base.php:386
3203
  msgid "%s error - failed to access the container"
3204
  msgstr ""
3205
 
@@ -3261,7 +3364,7 @@ msgstr ""
3261
 
3262
  #: src/addons/migrator.php:391,
3263
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
- #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr ""
3267
 
@@ -3269,7 +3372,7 @@ msgstr ""
3269
  msgid "Failed to unpack the archive"
3270
  msgstr ""
3271
 
3272
- #: src/class-updraftplus.php:1225
3273
  msgid "Error - failed to download the file"
3274
  msgstr ""
3275
 
@@ -3293,8 +3396,8 @@ msgstr ""
3293
  msgid "password/key"
3294
  msgstr " الرقم السري/المفتاح"
3295
 
3296
- #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr "مفتاح"
3300
 
@@ -3310,24 +3413,24 @@ msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فا
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
3312
 
3313
- #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
3316
 
3317
- #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
3320
 
3321
- #: src/addons/importer.php:276, src/admin.php:3470,
3322
- #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
3325
 
3326
- #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
3329
 
3330
- #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr "مصدر غير معروف"
3333
 
@@ -3339,31 +3442,32 @@ msgstr "إعادة فحص الإستضافة الإستضافة السحابية
3339
  msgid "Upload backup files"
3340
  msgstr "رفع ملفات النسخة الإحتياطية"
3341
 
3342
- #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
3345
 
3346
- #: src/admin.php:966
3347
  msgid "Read this page for a guide to possible causes and how to fix it."
3348
  msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
3349
 
3350
- #: src/admin.php:966
3351
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3352
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
3353
 
3354
- #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
3357
 
3358
- #: src/admin.php:675
3359
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
3360
  msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
3361
 
3362
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
 
3363
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3364
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3365
 
3366
- #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
@@ -3384,16 +3488,16 @@ msgstr "أبدى %s إجابة HTTP غير متوقعة: %s"
3384
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3385
  msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
3386
 
3387
- #: src/methods/cloudfiles.php:246, src/methods/dropbox.php:294,
3388
- #: src/methods/openstack-base.php:111
3389
  msgid "No settings were found"
3390
  msgstr "لم يتم العثور على الإعدادات"
3391
 
3392
- #: src/class-updraftplus.php:3100
3393
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
3394
  msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
3395
 
3396
- #: src/admin.php:642
3397
  msgid "Rescanning remote and local storage for backup sets..."
3398
  msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
3399
 
@@ -3415,24 +3519,24 @@ msgstr ""
3415
  msgid "Remove"
3416
  msgstr "حذف"
3417
 
3418
- #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr "الأسئلة الشائعة %s الأخرى."
3421
 
3422
- #: src/templates/wp-admin/settings/form-contents.php:334
3423
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3424
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
3425
 
3426
- #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3428
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
3429
 
3430
- #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
3434
 
3435
- #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
3438
 
@@ -3448,7 +3552,7 @@ msgstr "خادم FTP مشفر (تشفير غير واضح)"
3448
  msgid "regular non-encrypted FTP"
3449
  msgstr "خادم FTP غير مشفر اعتيادي"
3450
 
3451
- #: src/restorer.php:1665
3452
  msgid "Backup created by:"
3453
  msgstr "نسخة احتياطية أنشأها:"
3454
 
@@ -3502,15 +3606,15 @@ msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا المو
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
3504
 
3505
- #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr "نجاح محاولة التراجع من الضغط المزدوج"
3508
 
3509
- #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr "فشل محاولة التراجع من الضغط المزدوج"
3512
 
3513
- #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
3516
 
@@ -3518,15 +3622,15 @@ msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مر
3518
  msgid "Constants"
3519
  msgstr "ثوابت"
3520
 
3521
- #: src/backup.php:1627
3522
  msgid "Failed to open database file for reading:"
3523
  msgstr "فشل في فتح ملف قاعدة البيانات للقراءة:"
3524
 
3525
- #: src/backup.php:1438
3526
  msgid "No database tables found"
3527
  msgstr "لم نجد أي جداول لقاعدة البيانات"
3528
 
3529
- #: src/backup.php:1436
3530
  msgid "please wait for the rescheduled attempt"
3531
  msgstr "فضلا انتظر محاولة إعادة الجدولة"
3532
 
@@ -3543,15 +3647,15 @@ msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبق
3543
  msgid "Errors occurred:"
3544
  msgstr "أخطاء حدثت:"
3545
 
3546
- #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
3549
 
3550
- #: src/templates/wp-admin/settings/form-contents.php:378
3551
  msgid "See this FAQ also."
3552
  msgstr "تابع هذه التعليمات أيضا."
3553
 
3554
- #: src/templates/wp-admin/settings/form-contents.php:142
3555
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
3556
  msgstr "ان لم تختر أي خدمة للتخزين عن بعد، فكل ملفات النسخ الإحتياطية ستبقى مخزنة بسيرفرك. هذه العملية غير موصى بها (في حالة عدم تحميل هذه الملفات بجهازك الخاص)، لأنك بفقدان سيرفرك ستخسر معه ملفات النسخ الإحتياطية والموقع معا."
3557
 
@@ -3567,7 +3671,7 @@ msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %
3567
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3568
  msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
3569
 
3570
- #: src/admin.php:941, src/class-updraftplus.php:744
3571
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3572
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
3573
 
@@ -3580,11 +3684,11 @@ msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعي
3580
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3581
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
3582
 
3583
- #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr "رسائل:"
3586
 
3587
- #: src/restorer.php:2033
3588
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
3589
  msgstr "تم العثور على خط SQL أكبر من الحد الأقصى لحجم الحزمة ولا يمكن تقسيمها، هذا الخط لن نتمكن من معالجته، وسنقوم بإبعاده: %s"
3590
 
@@ -3734,8 +3838,8 @@ msgid "Accounts created at rackspacecloud.com are US accounts; accounts created
3734
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية "
3735
 
3736
  #: src/addons/cloudfiles-enhanced.php:139, src/addons/s3-enhanced.php:204,
3737
- #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:449,
3738
- #: src/methods/openstack-base.php:451, src/methods/openstack-base.php:472,
3739
  #: src/methods/openstack2.php:33
3740
  msgid "Authorisation failed (check your credentials)"
3741
  msgstr "فشل التفويض (راجع معلوماتك)"
@@ -3744,35 +3848,35 @@ msgstr "فشل التفويض (راجع معلوماتك)"
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
3746
 
3747
- #: src/admin.php:689, src/central/bootstrap.php:520
3748
  msgid "Create"
3749
  msgstr "خلق"
3750
 
3751
- #: src/admin.php:651
3752
  msgid "Trying..."
3753
  msgstr "اعادة المحاولة..."
3754
 
3755
- #: src/admin.php:650
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
3758
 
3759
- #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr "خطأ بالبيانات:"
3762
 
3763
- #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
3766
 
3767
- #: src/admin.php:2585
3768
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3769
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
3770
 
3771
- #: src/restorer.php:1732
3772
  msgid "Split line to avoid exceeding maximum packet size"
3773
  msgstr "تقسيم الخط لتفاذي الحجم الأقصى للحزم"
3774
 
3775
- #: src/restorer.php:1612
3776
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
3777
  msgstr "المستخدم لا يمتلك صلاحيات لتحريك الجداول. سنحاول الإستعادة عن طريق إفراغ الجداول، يمكن لهذه العملية النجاح طالما أننا نستعيد من نسخة ووردبريس مع نفس بنية قاعدة البيانات (%s)"
3778
 
@@ -3804,11 +3908,11 @@ msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تق
3804
  msgid "Email reports"
3805
  msgstr "تقارير البريد الإلكتروني"
3806
 
3807
- #: src/class-updraftplus.php:1698, src/class-updraftplus.php:1703
3808
  msgid "%s checksum: %s"
3809
  msgstr "%s الاختباري:%s"
3810
 
3811
- #: src/class-updraftplus.php:1671, src/class-updraftplus.php:1673
3812
  msgid "files: %s"
3813
  msgstr "ملفات:%s"
3814
 
@@ -3820,7 +3924,7 @@ msgstr "استخدام قسم \"التقارير\" لتكوين عناوين ا
3820
  msgid "Debugging information"
3821
  msgstr "معلومات التصحيح"
3822
 
3823
- #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr "تحميلها على:"
3826
 
@@ -3865,7 +3969,7 @@ msgstr "%d الأخطاء، %d تحذيرات"
3865
  msgid "%s authentication"
3866
  msgstr "%s مصادقة"
3867
 
3868
- #: src/addons/onedrive.php:718, src/class-updraftplus.php:429,
3869
  #: src/methods/dropbox.php:176, src/methods/dropbox.php:598,
3870
  #: src/methods/dropbox.php:625, src/methods/dropbox.php:638,
3871
  #: src/methods/dropbox.php:784
@@ -3880,7 +3984,7 @@ msgstr "%s الشعار"
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
3882
 
3883
- #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
3886
 
@@ -3892,85 +3996,85 @@ msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\".
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
3894
 
3895
- #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
  #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr "الإتصال"
3899
 
3900
- #: src/templates/wp-admin/settings/form-contents.php:292
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
3903
 
3904
- #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr "(الإصدار: %s)"
3907
 
3908
  #: src/addons/reporting.php:455, src/addons/reporting.php:455,
3909
- #: src/admin.php:640
3910
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3911
  msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
3912
 
3913
- #: src/addons/reporting.php:455, src/admin.php:639
3914
  msgid "When the Email storage method is enabled, also send the entire backup"
3915
  msgstr "عندما يتم تمكين طريقة تخزين البريد الإلكتروني، قم أيضا بإرسال النسخ الاحتياطي كاملة"
3916
 
3917
- #: src/addons/reporting.php:170, src/backup.php:963
3918
  msgid "Latest status:"
3919
  msgstr "آخر التحديثات:"
3920
 
3921
- #: src/backup.php:962
3922
  msgid "Backup contains:"
3923
  msgstr "تحتوي النسخة الإحتياطية على:"
3924
 
3925
- #: src/backup.php:919
3926
  msgid "Backed up: %s"
3927
  msgstr "نسخ احتياطي: %s"
3928
 
3929
- #: src/addons/reporting.php:253, src/backup.php:913
3930
  msgid "The log file has been attached to this email."
3931
  msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
3932
 
3933
- #: src/backup.php:877
3934
  msgid "Unknown/unexpected error - please raise a support request"
3935
  msgstr "خطأ غير معروف / غير متوقع - يرجى رفع طلب دعم"
3936
 
3937
- #: src/backup.php:874
3938
  msgid "Database only (files were not part of this particular schedule)"
3939
  msgstr " قاعدة البيانات فقط (لن يتم خلق نسخ احتياطية للملفات)"
3940
 
3941
- #: src/backup.php:874
3942
  msgid "Database (files backup has not completed)"
3943
  msgstr "قاعدة بيانات (لم يتم إكمال نسخ الملفات احتياطيا)"
3944
 
3945
- #: src/backup.php:871
3946
  msgid "Files only (database was not part of this particular schedule)"
3947
  msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقاعدة البيانات)"
3948
 
3949
- #: src/backup.php:871
3950
  msgid "Files (database backup has not completed)"
3951
  msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
3952
 
3953
- #: src/admin.php:295, src/backup.php:869
3954
  msgid "Files and database"
3955
  msgstr "ملفات وقواعد البيانات"
3956
 
3957
- #: src/options.php:191
3958
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3959
  msgstr "(هذا ينطبق على جميع الإضافات للنسخ الاحتياطي لووردبريس ما لم تكن برمجة من أجل التوافق مع تعدد المواقع)."
3960
 
3961
- #: src/options.php:191
3962
  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>."
3963
  msgstr "عند عدم الترقية، سيقوم UpdraftPlus بالسماح <strong>لكل</strong> مدير بالمدونة بالتعديل على خيارات الإضافة للخسن الإحتياطي (وبالتالي الوصول للبيانات، بما في ذلك كلمات السر) وإستعادة (مع امكانية التعديل، مثال: كلمات السر) <strong>الشبكة بالكامل</strong>."
3964
 
3965
- #: src/options.php:191
3966
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3967
  msgstr "دعم مواقع ووردبريس متعددة، مع امتيازات اضافية، على حساب UpdraftPlus المميز، أو بإضافة المواقع المتعددة."
3968
 
3969
- #: src/options.php:191
3970
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3971
  msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (شبكة a.k.a.)."
3972
 
3973
- #: src/options.php:191
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr "تحذير UpdraftPlus :"
3976
 
@@ -4036,21 +4140,21 @@ msgid "We failed to successfully connect to UpdraftPlus.Com"
4036
  msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
4037
 
4038
  #: src/methods/email.php:76,
4039
- #: src/templates/wp-admin/settings/form-contents.php:273,
4040
  #: src/templates/wp-admin/settings/tab-addons.php:199,
4041
  #: src/templates/wp-admin/settings/tab-addons.php:200
4042
  msgid "Reporting"
4043
  msgstr "التقارير"
4044
 
4045
- #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr "خيارات (الخام)"
4048
 
4049
- #: src/addons/reporting.php:453, src/admin.php:638
4050
  msgid "Send a report only when there are warnings/errors"
4051
  msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
4052
 
4053
- #: src/restorer.php:1676
4054
  msgid "Content URL:"
4055
  msgstr "رابط المحتوى:"
4056
 
@@ -4058,15 +4162,15 @@ msgstr "رابط المحتوى:"
4058
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4059
  msgstr ""
4060
 
4061
- #: src/templates/wp-admin/settings/form-contents.php:176
4062
  msgid "See also the \"More Files\" add-on from our shop."
4063
  msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
4064
 
4065
- #: src/backup.php:3036, src/class-updraftplus.php:757
4066
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4067
  msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
4068
 
4069
- #: src/class-updraftplus.php:741
4070
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4071
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
4072
 
@@ -4202,23 +4306,23 @@ msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong>
4202
  msgid "Drop backup files here"
4203
  msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
4204
 
4205
- #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr "هل لا شيء يحدث عند محاولة النسخ الاحتياطي؟"
4208
 
4209
- #: src/admin.php:649
4210
  msgid "The web server returned an error code (try again, or check your web server logs)"
4211
  msgstr "اعاد خادم الويب برمز خطأ (حاول مجددا, او قم بالتحقق من سجلات خادم الويب الخاص بك)"
4212
 
4213
- #: src/admin.php:647
4214
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4215
  msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إغلاق المتصفح حتى اعطائك التقرير بأنة تم انتهاء العملية."
4216
 
4217
- #: src/admin.php:644
4218
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4219
  msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
4220
 
4221
- #: src/restorer.php:1670
4222
  msgid "Site home:"
4223
  msgstr "الصفحة الرئيسية للموقع:"
4224
 
@@ -4234,20 +4338,20 @@ msgstr "(السجلات يمكن العثور عليها فى صفحة اعدا
4234
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4235
  msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
4236
 
4237
- #: src/addons/azure.php:359, src/methods/stream-base.php:124,
4238
  #: src/methods/stream-base.php:129
4239
  msgid "Upload failed"
4240
  msgstr "فشل التحميل"
4241
 
4242
- #: src/templates/wp-admin/settings/form-contents.php:133
4243
  msgid "You can send a backup to more than one destination with an add-on."
4244
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
4245
 
4246
- #: src/admin.php:2803
4247
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4248
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
4249
 
4250
- #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr "(%s%%, ملف %s من%s)"
4253
 
@@ -4284,97 +4388,97 @@ msgstr "محاولة ارسال النسخ الأحتياطى عن طريق ال
4284
  msgid "Backup is of: %s."
4285
  msgstr "النسخ الأحتياطى من: %s"
4286
 
4287
- #: src/admin.php:737
4288
  msgid "%s settings test result:"
4289
  msgstr "اعدادات نتيجة اختبار %s"
4290
 
4291
- #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr "(غير منتهي)"
4294
 
4295
- #: src/admin.php:3542
4296
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4297
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
4298
 
4299
- #: src/templates/wp-admin/settings/form-contents.php:361
4300
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4301
  msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل الإضافات، لأن ذلك سوف يسبب الإعادة (نسخة احتياطية من نسخة احتياطية من نسخة احتياطية من......)."
4302
 
4303
- #: src/templates/wp-admin/settings/form-contents.php:361
4304
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4305
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
4306
 
4307
- #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr "رقم الوظيفة: %s"
4310
 
4311
- #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr "آخر نشاط: منذ %ss"
4314
 
4315
- #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr "الاستئناف التالي: %d (بعد %ss)"
4318
 
4319
- #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
- #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr "غير معروف"
4324
 
4325
- #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr "الانتهاء من النسخ الاحتياطي"
4328
 
4329
- #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
4332
 
4333
- #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
4336
 
4337
- #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr "تحميل الملفات للمخزن البعيد"
4340
 
4341
- #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr "قاعدة بيانات مشفرة"
4344
 
4345
- #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr "تشفير قاعدة البيانات"
4348
 
4349
- #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
4352
 
4353
- #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr "الجدول: %s"
4356
 
4357
- #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
4360
 
4361
- #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
4364
 
4365
- #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr "انشاء ملف النسخ الاحتياطى zips"
4368
 
4369
- #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr "بدأ النسخ الاحتياطى"
4372
 
4373
- #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr "تقدم النسخ الأحتياطى:"
4376
 
4377
- #: src/admin.php:945
4378
  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."
4379
  msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
4380
 
@@ -4390,11 +4494,11 @@ msgstr "مجلد"
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
4392
 
4393
- #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
4396
 
4397
- #: src/class-updraftplus.php:1988
4398
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4399
  msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
4400
 
@@ -4404,11 +4508,11 @@ msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثي
4404
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4405
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
4406
 
4407
- #: src/admin.php:2336
4408
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4409
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
4410
 
4411
- #: src/addons/autobackup.php:1085, src/admin.php:691
4412
  msgid "Proceed with update"
4413
  msgstr "المضي قدما مع التحديث"
4414
 
@@ -4483,88 +4587,88 @@ msgstr "مزيد من الملحقات"
4483
  msgid "Support"
4484
  msgstr "الدعم"
4485
 
4486
- #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
4489
 
4490
- #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
4493
 
4494
- #: src/class-updraftplus.php:4774
4495
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4496
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
4497
 
4498
- #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr "%s النسخة: %s"
4501
 
4502
- #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
4505
 
4506
- #: src/addons/autobackup.php:1053, src/admin.php:778,
4507
  #: src/includes/updraftplus-notices.php:171
4508
  msgid "Be safe with an automatic backup"
4509
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
4510
 
4511
- #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
4514
 
4515
- #: src/admin.php:685
4516
  msgid "The file was uploaded."
4517
  msgstr "تم رفع الملف."
4518
 
4519
- #: src/admin.php:684
4520
  msgid "Unknown server response status:"
4521
  msgstr "استجابة الخادم غير معروفة:"
4522
 
4523
- #: src/admin.php:683
4524
  msgid "Unknown server response:"
4525
  msgstr "استجابة الملقم غير معروف:"
4526
 
4527
- #: src/admin.php:682
4528
  msgid "This decryption key will be attempted:"
4529
  msgstr "سيتم محاولة فتح مفتاح التشفير:"
4530
 
4531
- #: src/admin.php:681
4532
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4533
  msgstr "اتبع هذا الرابط لمحاولة فك التشفير وتحميل ملف قاعدة البيانات على جهازك."
4534
 
4535
- #: src/admin.php:680
4536
  msgid "Upload error"
4537
  msgstr "خطأ فى الرفع"
4538
 
4539
- #: src/admin.php:679
4540
  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)."
4541
  msgstr "هذا الملف لا يبدو انة ملف UpdraftPlus مضغوط مشفر لقاعدة البيانات (هذة الملفات .gz.crypt التى لديها اسم مثل: backup_(time)_(site name)_(code)_db.crypt.gz)."
4542
 
4543
- #: src/admin.php:678
4544
  msgid "Upload error:"
4545
  msgstr "خطأ التحميل:"
4546
 
4547
- #: src/admin.php:677
4548
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4549
  msgstr "(تأكد من انك كنت تحاول رفع ملف مضغوط تم إنشاؤه مسبقا من قبل UpdraftPlus)"
4550
 
4551
- #: src/admin.php:668
4552
  msgid "Download to your computer"
4553
  msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
4554
 
4555
- #: src/admin.php:667
4556
  msgid "Delete from your web server"
4557
  msgstr "حذف من خادم الويب الخاص بك"
4558
 
4559
- #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
4562
 
4563
- #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr "(%d الأرشيف(s) in set)."
4566
 
4567
- #: src/templates/wp-admin/settings/form-contents.php:338
4568
  msgid "Split archives every:"
4569
  msgstr "تقسيم كل ارشيف:"
4570
 
@@ -4572,15 +4676,15 @@ msgstr "تقسيم كل ارشيف:"
4572
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4573
  msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
4574
 
4575
- #: src/admin.php:658
4576
  msgid "Warnings:"
4577
  msgstr "تحذيرات:"
4578
 
4579
- #: src/admin.php:657
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
4582
 
4583
- #: src/admin.php:2049
4584
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4585
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
4586
 
@@ -4616,7 +4720,7 @@ msgstr "الملف غير موجود (تحتاج الى رفعة): %s"
4616
  msgid "No such backup set exists"
4617
  msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
4618
 
4619
- #: src/admin.php:1291
4620
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4621
  msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
4622
 
@@ -4624,7 +4728,7 @@ msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى
4624
  msgid "Moving unpacked backup into place..."
4625
  msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
4626
 
4627
- #: src/backup.php:2742, src/backup.php:2996
4628
  msgid "Failed to open the zip file (%s) - %s"
4629
  msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4630
 
@@ -4632,43 +4736,43 @@ msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr "مسار جذر الوردبريس فى الخادم: %s"
4634
 
4635
- #: src/methods/s3.php:851
4636
  msgid "%s end-point"
4637
  msgstr "نقطة النهاية %s "
4638
 
4639
- #: src/methods/s3.php:813
4640
  msgid "... and many more!"
4641
  msgstr "... وغيرها الكثير!"
4642
 
4643
- #: src/methods/s3generic.php:52, src/methods/s3generic.php:61
4644
  msgid "S3 (Compatible)"
4645
  msgstr "S3 (متوافق)"
4646
 
4647
- #: src/admin.php:1205
4648
  msgid "File is not locally present - needs retrieving from remote storage"
4649
  msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
4650
 
4651
- #: src/admin.php:3810
4652
  msgid "Looking for %s archive: file name: %s"
4653
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
4654
 
4655
- #: src/admin.php:3771
4656
  msgid "Final checks"
4657
  msgstr "الفحوصات النهائية"
4658
 
4659
- #: src/templates/wp-admin/settings/form-contents.php:344
4660
  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)."
4661
  msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأحتياطى الزائدة من السيرفر الخاص بك بعد انتهاء عملية النسخ الأحتياطى (أي بمعنى. اذا لم تقم بالتحديد, فأنة سوف تظل ايضا الملفات اللتى ارسللت عن بعد على السيرفر محلياً, وان الملفات اللتى يتم الأحتفاظ بها محليا لن تكون خاضعة لحدود الأبقاء)."
4662
 
4663
- #: src/templates/wp-admin/settings/form-contents.php:219
4664
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4665
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
4666
 
4667
- #: src/admin.php:3162
4668
  msgid "Your wp-content directory server path: %s"
4669
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
4670
 
4671
- #: src/admin.php:674
4672
  msgid "Raw backup history"
4673
  msgstr "تاريخ النسخ الاحتياطي الخام"
4674
 
@@ -4676,11 +4780,11 @@ msgstr "تاريخ النسخ الاحتياطي الخام"
4676
  msgid "Show raw backup and file list"
4677
  msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة الملفات"
4678
 
4679
- #: src/admin.php:656
4680
  msgid "Processing files - please wait..."
4681
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
4682
 
4683
- #: src/admin.php:3956,
4684
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4685
  msgid "Please consult this FAQ for help on what to do about it."
4686
  msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
@@ -4689,11 +4793,11 @@ msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول
4689
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4690
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
4691
 
4692
- #: src/class-updraftplus.php:4682
4693
  msgid "Failed to open database file."
4694
  msgstr "فشل فى فتح ملف قاعدة البيانات."
4695
 
4696
- #: src/admin.php:4382
4697
  msgid "Known backups (raw)"
4698
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
4699
 
@@ -4709,21 +4813,22 @@ msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيي
4709
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4710
  msgstr "هذة تبدو كأنها ترحيل (النسخة الأحتياطة من موقع عنوان الرابط الخاص بة مختلف), لكنك لم تقم بالأشارة على خيار البحث واستبدال قاعدة البيانات. عادة ما يكون خطأ."
4711
 
4712
- #: src/admin.php:3830
4713
  msgid "file is size:"
4714
  msgstr "حجم الملف:"
4715
 
4716
  #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4717
- #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:945,
4718
- #: src/admin.php:2293, src/backup.php:3043, src/updraftplus.php:156
 
4719
  msgid "Go here for more information."
4720
  msgstr "اذهب هنا لمزيد من المعلومات."
4721
 
4722
- #: src/admin.php:655
4723
  msgid "Some files are still downloading or being processed - please wait."
4724
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
4725
 
4726
- #: src/class-updraftplus.php:4746, src/class-updraftplus.php:4764
4727
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4728
  msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
4729
 
@@ -4767,9 +4872,9 @@ msgstr "خطأ - فشل فى تحميل الملف من %s"
4767
  msgid "Error - no such file exists at %s"
4768
  msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
4769
 
4770
- #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4771
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4772
- #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:420,
4773
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4774
  #: src/methods/stream-base.php:285
4775
  msgid "%s Error"
@@ -4779,39 +4884,39 @@ msgstr "خطأ %s"
4779
  msgid "%s error - failed to upload file"
4780
  msgstr "خطأ %s - فشل فى ارسال الملف"
4781
 
4782
- #: src/class-updraftplus.php:1117, src/methods/cloudfiles.php:223
4783
  msgid "%s error - failed to re-assemble chunks"
4784
  msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
4785
 
4786
  #: src/methods/cloudfiles.php:107, src/methods/cloudfiles.php:111,
4787
  #: src/methods/cloudfiles.php:252, src/methods/cloudfiles.php:298,
4788
  #: src/methods/cloudfiles.php:349, src/methods/cloudfiles.php:353,
4789
- #: src/methods/openstack-base.php:44, src/methods/openstack-base.php:317,
4790
- #: src/methods/openstack-base.php:382, src/methods/openstack-base.php:455,
4791
- #: src/methods/openstack-base.php:458, src/methods/openstack-base.php:476,
4792
- #: src/methods/openstack-base.php:481
4793
  msgid "%s authentication failed"
4794
  msgstr "المصادقة فشلت %s"
4795
 
4796
  #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4797
- #: src/admin.php:1994, src/admin.php:2041, src/admin.php:2049,
4798
- #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4799
- #: src/class-updraftplus.php:4653, src/class-updraftplus.php:4655,
4800
- #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4804,
4801
- #: src/class-updraftplus.php:4839, src/methods/googledrive.php:369,
4802
- #: src/methods/s3.php:321
4803
  msgid "Error: %s"
4804
  msgstr "خطأ: %s"
4805
 
4806
- #: src/admin.php:3099
4807
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4808
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
4809
 
4810
- #: src/admin.php:3097
4811
  msgid "Backup directory specified does <b>not</b> exist."
4812
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
4813
 
4814
- #: src/admin.php:2810, src/admin.php:3053
4815
  msgid "Warning: %s"
4816
  msgstr "تحذير: %s"
4817
 
@@ -4819,31 +4924,31 @@ msgstr "تحذير: %s"
4819
  msgid "Last backup job run:"
4820
  msgstr "اخر تشغيل لوظيفة النسخ الأحتياطى:"
4821
 
4822
- #: src/backup.php:2764
4823
  msgid "A very large file was encountered: %s (size: %s Mb)"
4824
  msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
4825
 
4826
- #: src/backup.php:2170
4827
  msgid "%s: unreadable file - could not be backed up"
4828
  msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
4829
 
4830
- #: src/backup.php:1527
4831
  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"
4832
  msgstr "الجدول %s بة عدد كبير من الصفوف (%s) - نأمل ان شركة الأستضافة الخاصة بك تعطيك ما يكفى من الموارد لتفريغ هذا الجدول من النسخة الأحتياطة."
4833
 
4834
- #: src/backup.php:1646
4835
  msgid "An error occurred whilst closing the final database file"
4836
  msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
4837
 
4838
- #: src/backup.php:904
4839
  msgid "Warnings encountered:"
4840
  msgstr "مصادفة تحذيرات:"
4841
 
4842
- #: src/class-updraftplus.php:3194
4843
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4844
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
4845
 
4846
- #: src/class-updraftplus.php:770
4847
  msgid "Your free disk space is very low - only %s Mb remain"
4848
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
4849
 
@@ -4879,15 +4984,15 @@ msgstr "تحقق من اذونات الملفات الخاصة بك: تعذر ا
4879
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4880
  msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
4881
 
4882
- #: src/methods/s3.php:827
4883
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
4884
  msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
4885
 
4886
- #: src/methods/s3.php:1082
4887
  msgid "Please check your access credentials."
4888
  msgstr "يرجى التحقق من وصول بيانات الأعتماد."
4889
 
4890
- #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1060
4891
  msgid "The error reported by %s was:"
4892
  msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
4893
 
@@ -4895,48 +5000,48 @@ msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
4895
  msgid "Please supply the requested information, and then continue."
4896
  msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
4897
 
4898
- #: src/class-updraftplus.php:4815, src/restorer.php:1706
4899
  msgid "Site information:"
4900
  msgstr "معلومات عن الموقع:"
4901
 
4902
- #: src/restorer.php:1573
4903
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
4904
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
4905
 
4906
- #: src/addons/migrator.php:341, src/admin.php:2288,
4907
- #: src/class-updraftplus.php:4808, src/restorer.php:2033
4908
  msgid "Warning:"
4909
  msgstr "تحذير:"
4910
 
4911
- #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4800,
4912
  #: src/restorer.php:154
4913
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4914
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
4915
 
4916
- #: src/admin.php:3798
4917
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
4918
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
4919
 
4920
- #: src/admin.php:3228, src/methods/updraftvault.php:286
4921
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
4922
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
4923
 
4924
- #: src/admin.php:692
4925
  msgid "Close"
4926
  msgstr "اغلق"
4927
 
4928
  #: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
4929
- #: src/admin.php:648, src/methods/remotesend.php:66,
4930
  #: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
4931
  #: src/methods/remotesend.php:242
4932
  msgid "Unexpected response:"
4933
  msgstr "استجابة غير متوقعة:"
4934
 
4935
- #: src/addons/reporting.php:451, src/admin.php:643
4936
  msgid "To send to more than one address, separate each address with a comma."
4937
  msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
4938
 
4939
- #: src/admin.php:672
4940
  msgid "PHP information"
4941
  msgstr "معلومات PHP"
4942
 
@@ -4972,7 +5077,7 @@ msgstr "جارى الحذف...يرجى اتاحة الوقت لأكمال الأ
4972
  msgid "Also delete from remote storage"
4973
  msgstr "حذف ايضاً من التخزين البعيد"
4974
 
4975
- #: src/admin.php:2540
4976
  msgid "Latest UpdraftPlus.com news:"
4977
  msgstr "اخر اخبار UpdraftPlus.com:"
4978
 
@@ -4989,7 +5094,7 @@ msgstr "مميز"
4989
  msgid "News"
4990
  msgstr "اخبار"
4991
 
4992
- #: src/admin.php:1469, src/includes/class-wpadmin-commands.php:465
4993
  msgid "Backup set not found"
4994
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
4995
 
@@ -5011,7 +5116,7 @@ msgstr "رابط RSS"
5011
  msgid "Blog link"
5012
  msgstr "رابط المدونة"
5013
 
5014
- #: src/admin.php:736
5015
  msgid "Testing %s Settings..."
5016
  msgstr "اختبار اعدادات %s ..."
5017
 
@@ -5019,23 +5124,23 @@ msgstr "اختبار اعدادات %s ..."
5019
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5020
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
5021
 
5022
- #: src/admin.php:961
5023
  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."
5024
  msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
5025
 
5026
- #: src/admin.php:961
5027
  msgid "Notice"
5028
  msgstr "لاحظ"
5029
 
5030
- #: src/backup.php:886
5031
  msgid "Errors encountered:"
5032
  msgstr "مصادفة اخطاء:"
5033
 
5034
- #: src/admin.php:641
5035
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5036
  msgstr "اعادة الفحص (يبحث عن النسخ الاحتياطية التي قمت برفعها يدويا في مسار النسخ الاحتياطي الداخلي)..."
5037
 
5038
- #: src/admin.php:654
5039
  msgid "Begun looking for this entity"
5040
  msgstr "بدأ البحث عن هذا الكيان"
5041
 
@@ -5055,7 +5160,7 @@ msgstr "الصفوف: %d"
5055
  msgid "Time taken (seconds):"
5056
  msgstr "الوقت المستغرق (ثانية):"
5057
 
5058
- #: src/addons/migrator.php:1141, src/admin.php:659
5059
  msgid "Errors:"
5060
  msgstr "الأخطاء:"
5061
 
@@ -5117,15 +5222,15 @@ msgstr "بحث واستبدال قاعدة البيانات فى الموقع (
5117
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5118
  msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
5119
 
5120
- #: src/addons/multisite.php:656
5121
  msgid "Blog uploads"
5122
  msgstr "مدونة الملفات المرفوعة"
5123
 
5124
- #: src/addons/migrator.php:385, src/addons/multisite.php:649
5125
  msgid "Must-use plugins"
5126
  msgstr "لابد من استخدام الأضافات"
5127
 
5128
- #: src/addons/multisite.php:173
5129
  msgid "Multisite Install"
5130
  msgstr "تثبيت الموقع المتعدد"
5131
 
@@ -5221,13 +5326,13 @@ msgstr "إعادة كتابة wp-config.php"
5221
  msgid "WordPress Core"
5222
  msgstr "لب الووردبريس"
5223
 
5224
- #: src/methods/addon-base-v2.php:301, src/methods/stream-base.php:315
5225
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5226
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
5227
 
5228
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5229
- #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2864,
5230
- #: src/admin.php:2899, src/admin.php:2908, src/methods/addon-base-v2.php:289,
5231
  #: src/methods/stream-base.php:301
5232
  msgid "Failed"
5233
  msgstr "فشل"
@@ -5320,96 +5425,96 @@ msgstr "خطأ: فشل فى رفع الملف الى %s (انظر السجل ل
5320
  msgid "You do not appear to be authenticated with Dropbox"
5321
  msgstr "لا يبدو ان المصادقة مع Dropbox"
5322
 
5323
- #: src/methods/s3.php:1077
5324
  msgid "The communication with %s was not encrypted."
5325
  msgstr "التواصل مع %s كان غير مشفر."
5326
 
5327
- #: src/methods/s3.php:1075
5328
  msgid "The communication with %s was encrypted."
5329
  msgstr "التواصل مع %s كان مشفر."
5330
 
5331
- #: src/addons/googlecloud.php:756, src/methods/s3.php:1072
5332
  msgid "We accessed the bucket, and were able to create files within it."
5333
  msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
5334
 
5335
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5336
- #: src/methods/s3.php:1070, src/methods/s3.php:1082
5337
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5338
  msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
5339
 
5340
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5341
- #: src/methods/s3.php:1070, src/methods/s3.php:1082
5342
  msgid "Failure"
5343
  msgstr "فشل"
5344
 
5345
- #: src/methods/s3.php:1058
5346
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5347
  msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
5348
 
5349
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5350
- #: src/methods/s3.php:1052
5351
  msgid "Region"
5352
  msgstr "المنطقة"
5353
 
5354
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5355
- #: src/methods/s3.php:1034
5356
  msgid "Failure: No bucket details were given."
5357
  msgstr "فشل: لم ترد تفاصيل الباكت."
5358
 
5359
- #: src/methods/s3.php:1012
5360
  msgid "API secret"
5361
  msgstr "API السرية"
5362
 
5363
- #: src/methods/s3.php:888
5364
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5365
  msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
5366
 
5367
- #: src/methods/s3.php:887
5368
  msgid "%s location"
5369
  msgstr "المكان %s"
5370
 
5371
- #: src/methods/s3.php:883
5372
  msgid "%s secret key"
5373
  msgstr "المفتاح السرى %s"
5374
 
5375
- #: src/methods/s3.php:879
5376
  msgid "%s access key"
5377
  msgstr "مفتاح الوصول %s"
5378
 
5379
- #: src/methods/s3.php:844
5380
  msgid "If you see errors about SSL certificates, then please go here for help."
5381
  msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
5382
 
5383
- #: src/methods/s3.php:842
5384
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5385
  msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
5386
 
5387
- #: src/methods/s3.php:462, src/methods/s3.php:574, src/methods/s3.php:646,
5388
- #: src/methods/s3.php:749
5389
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5390
  msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
5391
 
5392
- #: src/methods/s3.php:732, src/methods/s3.php:742, src/methods/s3.php:778
5393
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5394
  msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
5395
 
5396
- #: src/methods/s3.php:440
5397
  msgid "%s re-assembly error (%s): (see log file for more)"
5398
  msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
5399
 
5400
- #: src/methods/s3.php:436
5401
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5402
  msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
5403
 
5404
- #: src/methods/s3.php:420
5405
  msgid "%s chunk %s: upload failed"
5406
  msgstr "%s قطعة %s : فشل الرفع"
5407
 
5408
- #: src/methods/s3.php:410
5409
  msgid "%s error: file %s was shortened unexpectedly"
5410
  msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
5411
 
5412
- #: src/methods/s3.php:388
5413
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5414
  msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
5415
 
@@ -5421,7 +5526,7 @@ msgstr "ملاحظة:"
5421
  msgid "WordPress Backup"
5422
  msgstr "نسخ ووردريس احتياطيا"
5423
 
5424
- #: src/methods/cloudfiles.php:582, src/methods/openstack-base.php:495
5425
  msgid "We accessed the container, and were able to create files within it."
5426
  msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء ملف داخلها "
5427
 
@@ -5429,7 +5534,7 @@ msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء مل
5429
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5430
  msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاوية، لكننا فشلنا في إنشاء ملف داخلها"
5431
 
5432
- #: src/methods/cloudfiles.php:551, src/methods/openstack-base.php:437
5433
  msgid "Failure: No container details were given."
5434
  msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
5435
 
@@ -5440,7 +5545,7 @@ msgid "Username"
5440
  msgstr "اسم المستخدم"
5441
 
5442
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5443
- #: src/methods/s3.php:1008
5444
  msgid "API key"
5445
  msgstr "مفتاح API"
5446
 
@@ -5448,18 +5553,18 @@ msgstr "مفتاح API"
5448
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5449
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5450
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5451
- #: src/admin.php:712, src/methods/addon-base-v2.php:282,
5452
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles-new.php:178,
5453
  #: src/methods/cloudfiles.php:526, src/methods/cloudfiles.php:531,
5454
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5455
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5456
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5457
- #: src/methods/s3.php:1008, src/methods/s3.php:1012
5458
  msgid "Failure: No %s was given."
5459
  msgstr "فضل: لم تعطى أية %s."
5460
 
5461
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5462
- #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5463
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5464
  msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
5465
 
@@ -5498,11 +5603,11 @@ msgstr "أيضا، يجب عليك قراءة هذا التعليمات الها
5498
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5499
  msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\">من خدمة Rackspace Cloud </a> (يمكن قراءة التعليمات <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">هنا</a>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
5500
 
5501
- #: src/admin.php:735, src/methods/backup-module.php:247
5502
  msgid "Test %s Settings"
5503
  msgstr "اختبار %s الإعدادات"
5504
 
5505
- #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
5506
  #: src/methods/cloudfiles.php:405, src/methods/stream-base.php:265
5507
  msgid "Error opening local file: Failed to download"
5508
  msgstr "خطأ في فتح ملف محلي: فشل التحميل"
@@ -5513,13 +5618,13 @@ msgstr "خطأ بملفات سحابة - فشل في رفع الملف"
5513
 
5514
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5515
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5516
- #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5517
- #: src/methods/s3.php:356, src/methods/s3.php:368, src/methods/s3.php:369
5518
  msgid "%s Error: Failed to upload"
5519
  msgstr "%s خطأ: فشل في تحميل"
5520
 
5521
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5522
- #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5523
  #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5524
  msgid "%s Error: Failed to open local file"
5525
  msgstr "%s خطأ: فشل في فتح ملف محلي"
@@ -5568,8 +5673,8 @@ msgstr "للحصول على مساعدة لفترة أطول، بما في ذل
5568
 
5569
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5570
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5571
- #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:531,
5572
- #: src/methods/s3.php:802, src/methods/stream-base.php:218
5573
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5574
  msgstr "%s هو خيار صائب، لأن UpdraftPlus يدعم الرفع المقسم - لا يهمنا كم حجم موقعكم، لأن UpdraftPlus يستطيع تقسيم ورفع الأجزاء المقسمة، ولن يحبط من كثرة المهلات."
5575
 
@@ -5601,9 +5706,9 @@ msgstr "لديك حساب %s مصادق عليه."
5601
 
5602
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5603
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5604
- #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5605
- #: src/methods/googledrive.php:428, src/methods/openstack-base.php:495,
5606
- #: src/methods/s3.php:1072, src/methods/stream-base.php:312
5607
  msgid "Success"
5608
  msgstr "نجاح"
5609
 
@@ -5642,31 +5747,31 @@ msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها
5642
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5643
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
5644
 
5645
- #: src/addons/migrator.php:1775, src/admin.php:1233, src/admin.php:2867,
5646
- #: src/admin.php:2901, src/admin.php:2905, src/admin.php:3828,
5647
- #: src/restorer.php:2273, src/restorer.php:2378
5648
  msgid "OK"
5649
  msgstr "حسنا"
5650
 
5651
- #: src/restorer.php:2267, src/restorer.php:2342
5652
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5653
  msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
5654
 
5655
- #: src/addons/migrator.php:1154, src/restorer.php:2170
5656
  msgid "the database query being run was:"
5657
  msgstr "ادارة استعلام قاعدة البيانات كانت في:"
5658
 
5659
- #: src/restorer.php:1873
5660
  msgid "will restore as:"
5661
  msgstr "إستعادة على النحو التالي:"
5662
 
5663
- #: src/class-updraftplus.php:4786, src/restorer.php:1688,
5664
- #: src/restorer.php:1777, src/restorer.php:1803
5665
  msgid "Old table prefix:"
5666
  msgstr "بادئة الجدول القديمة:"
5667
 
5668
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5669
- #: src/backup.php:960, src/class-updraftplus.php:4725
5670
  msgid "Backup of:"
5671
  msgstr "نسخة احتياطية لـ:"
5672
 
@@ -5738,152 +5843,152 @@ msgstr "ملف النسخ الاحتياطي غير متوفر."
5738
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5739
  msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
5740
 
5741
- #: src/admin.php:3836, src/admin.php:3837
5742
  msgid "Could not find one of the files for restoration"
5743
  msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
5744
 
5745
- #: src/admin.php:3946
5746
  msgid "Error message"
5747
  msgstr "رسالة الخطأ"
5748
 
5749
- #: src/admin.php:3833
5750
  msgid "The backup records do not contain information about the proper size of this file."
5751
  msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
5752
 
5753
- #: src/admin.php:3825
5754
  msgid "Archive is expected to be size:"
5755
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
5756
 
5757
- #: src/admin.php:3722
5758
  msgid "If making a request for support, please include this information:"
5759
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
5760
 
5761
- #: src/admin.php:3721
5762
  msgid "ABORT: Could not find the information on which entities to restore."
5763
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
5764
 
5765
- #: src/admin.php:3676
5766
  msgid "UpdraftPlus Restoration: Progress"
5767
  msgstr "استرجاع UpdraftPlus: تقدم"
5768
 
5769
- #: src/admin.php:3628
5770
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5771
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
5772
 
5773
- #: src/admin.php:3570
5774
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5775
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
5776
 
5777
- #: src/admin.php:3579
5778
  msgid "Delete this backup set"
5779
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
5780
 
5781
- #: src/admin.php:3240
5782
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5783
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
5784
 
5785
- #: src/admin.php:3237
5786
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5787
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
5788
 
5789
- #: src/admin.php:3235
5790
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5791
  msgstr ""
5792
 
5793
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5794
- #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5795
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5796
  msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
5797
 
5798
- #: src/templates/wp-admin/settings/form-contents.php:401
5799
  msgid "Save Changes"
5800
  msgstr "حفظ التغييرات"
5801
 
5802
- #: src/templates/wp-admin/settings/form-contents.php:378
5803
  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."
5804
  msgstr "اختيار هذا الخيار قد يضعف من الآمان بإيقاف UpdraftPlus من استخدام SSL للمصادقة و تشفير العمليات، إن أمكن الأمر. لاحظ أن بعض الدمات السحابية لا تقبل هذه العملية (مثال: Dropbox)، مع هذا الخيار لن تتمكن من حفظ النسخ بهذه الخدمات."
5805
 
5806
- #: src/templates/wp-admin/settings/form-contents.php:377
5807
  msgid "Disable SSL entirely where possible"
5808
  msgstr "قم بتعطيل SSL تماما حيثما أمكن"
5809
 
5810
- #: src/templates/wp-admin/settings/form-contents.php:373
5811
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5812
  msgstr "لاحظ أنه ليست كل أساليب النسخ الإحتياطي بالسحابة بالضرورة تستخدم المصادقة عن طريق SSL."
5813
 
5814
- #: src/templates/wp-admin/settings/form-contents.php:373
5815
  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."
5816
  msgstr "اختيار هذا الخيار يمكن أن يضعف من حمايتك بمنع UpdraftPlus من التحقق من هوية المواقع التي يتصل بها ( مثال: Dropbox, Google Drive). هذا يعني أن UpdraftPlus سيستخدم SSL لتشفير حركة مرور البيانات، ولن يستخدم التقنية لتشفير المصادقة مع المواقع."
5817
 
5818
- #: src/templates/wp-admin/settings/form-contents.php:372
5819
  msgid "Do not verify SSL certificates"
5820
  msgstr "لا تحقق من شهادات SSL"
5821
 
5822
- #: src/templates/wp-admin/settings/form-contents.php:368
5823
  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."
5824
  msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من SSL للحقق من هوية المواقع (للتأكد من أن الموقع الآخر هو فعلا الموقع المقصود وليس موقع مقرصن). نقوم بتحديثها آليا. إن قابلك خطأ SSL، حينها قم باختيار هذا الخيار (الذي يفرض على UpdraftPlus استخدام ملفات SSL الخاصة بسيرفرك بدلا من الخاص به) يمكن أن يساعدك."
5825
 
5826
- #: src/templates/wp-admin/settings/form-contents.php:367
5827
  msgid "Use the server's SSL certificates"
5828
  msgstr "استخدام شهادات SSL للملقم"
5829
 
5830
- #: src/admin.php:3101
5831
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
5832
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
5833
 
5834
- #: src/admin.php:3101
5835
  msgid "click here"
5836
  msgstr "انقر هنا"
5837
 
5838
- #: src/admin.php:3101
5839
  msgid "or, to reset this option"
5840
  msgstr "أو، لإعادة هذا الخيار"
5841
 
5842
- #: src/admin.php:3101
5843
  msgid "Follow this link to attempt to create the directory and set the permissions"
5844
  msgstr ""
5845
 
5846
- #: src/admin.php:3093
5847
  msgid "Backup directory specified is writable, which is good."
5848
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
5849
 
5850
- #: src/templates/wp-admin/settings/form-contents.php:348
5851
  msgid "Backup directory"
5852
  msgstr "دليل النسخ الاحتياطي"
5853
 
5854
- #: src/templates/wp-admin/settings/form-contents.php:343
5855
  msgid "Delete local backup"
5856
  msgstr "حذف النسخة الاحتياطية المحلية"
5857
 
5858
- #: src/templates/wp-admin/settings/form-contents.php:323
5859
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5860
  msgstr "اضغط هنا لتتمكن من مشاهدة خيارات اضافية، لا ترعج نفسك بهذه الخيارات إلا إذا واجهت مشاكل."
5861
 
5862
- #: src/templates/wp-admin/settings/form-contents.php:323
5863
  msgid "Show expert settings"
5864
  msgstr "إظهار الإعدادات المتقدمة"
5865
 
5866
- #: src/templates/wp-admin/settings/form-contents.php:322
5867
  msgid "Expert settings"
5868
  msgstr "إعدادات متقدمة"
5869
 
5870
- #: src/templates/wp-admin/settings/form-contents.php:333
5871
  msgid "Debug mode"
5872
  msgstr "وضع التصحيح"
5873
 
5874
- #: src/templates/wp-admin/settings/form-contents.php:318
5875
  msgid "Advanced / Debugging Settings"
5876
  msgstr "متقدمة / تصحيح الإعدادات "
5877
 
5878
- #: src/admin.php:671
5879
  msgid "Requesting start of backup..."
5880
  msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
5881
 
5882
- #: src/addons/morefiles.php:297, src/admin.php:687
5883
  msgid "Cancel"
5884
  msgstr "إلغاء"
5885
 
5886
- #: src/addons/reporting.php:233, src/admin.php:3384
5887
  msgid "None"
5888
  msgstr "لا شيء"
5889
 
@@ -5891,32 +5996,32 @@ msgstr "لا شيء"
5891
  msgid "Choose your remote storage"
5892
  msgstr "اختر خدمت التخزين السحابي"
5893
 
5894
- #: src/templates/wp-admin/settings/form-contents.php:207
5895
  msgid "Manually decrypt a database backup file"
5896
  msgstr "فك تشفير ملف النسخ الاحتياطي لقاعدة البيانات يدويا"
5897
 
5898
- #: src/templates/wp-admin/settings/form-contents.php:186
5899
  msgid "Database encryption phrase"
5900
  msgstr "عبارة تشفير قاعدة البيانات"
5901
 
5902
- #: src/templates/wp-admin/settings/form-contents.php:285,
5903
  #: src/udaddons/options.php:133
5904
  msgid "Email"
5905
  msgstr "البريد الإلكتروني"
5906
 
5907
- #: src/templates/wp-admin/settings/form-contents.php:176
5908
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5909
  msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
5910
 
5911
- #: src/addons/morefiles.php:443, src/admin.php:3171
5912
  msgid "Exclude these:"
5913
  msgstr "استبعاد هذه:"
5914
 
5915
- #: src/admin.php:3162
5916
  msgid "Any other directories found inside wp-content"
5917
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
5918
 
5919
- #: src/templates/wp-admin/settings/form-contents.php:173
5920
  msgid "Include in files backup"
5921
  msgstr "متضمن في ملفات النسخ الاحتياطي"
5922
 
@@ -5928,49 +6033,49 @@ msgstr "على سبيل المثال إذا كان الملقم مشغول في
5928
  msgid "To fix the time at which a backup should take place,"
5929
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
5930
 
5931
- #: src/admin.php:3087
5932
  msgid "Monthly"
5933
  msgstr "شهريا"
5934
 
5935
- #: src/admin.php:3086
5936
  msgid "Fortnightly"
5937
  msgstr "نصف شهري"
5938
 
5939
- #: src/admin.php:3085
5940
  msgid "Weekly"
5941
  msgstr "أسبوعيا"
5942
 
5943
- #: src/admin.php:3084
5944
  msgid "Daily"
5945
  msgstr "يوميا"
5946
 
5947
- #: src/admin.php:694, src/admin.php:3067
5948
  msgid "Download log file"
5949
  msgstr "تحميل ملف السجل"
5950
 
5951
- #: src/admin.php:2964
5952
  msgid "The folder exists, but your webserver does not have permission to write to it."
5953
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
5954
 
5955
- #: src/admin.php:2959
5956
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
5957
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
5958
 
5959
- #: src/admin.php:2945
5960
  msgid "The request to the filesystem to create the directory failed."
5961
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
5962
 
5963
- #: src/addons/migrator.php:2253, src/admin.php:688, src/admin.php:2861,
5964
- #: src/admin.php:2894, src/admin.php:3579,
5965
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5966
  msgid "Delete"
5967
  msgstr "حذف"
5968
 
5969
- #: src/admin.php:2645
5970
  msgid "(None)"
5971
  msgstr ""
5972
 
5973
- #: src/admin.php:2801
5974
  msgid "show log"
5975
  msgstr "عرض السجل"
5976
 
@@ -6075,7 +6180,7 @@ msgstr "هل تحتاج إلى دعم ووردبريس متعدد المواقع
6075
  msgid "Multisite"
6076
  msgstr "مواقع متعددة"
6077
 
6078
- #: src/admin.php:2464
6079
  msgid "Go here for help."
6080
  msgstr "الدخول هنا للحصول على المساعدة."
6081
 
@@ -6128,27 +6233,27 @@ msgstr "استعادة النسخة الاحتياطية"
6128
  msgid "Delete backup set"
6129
  msgstr "حذف مجموعة النسخ الاحتياطية"
6130
 
6131
- #: src/admin.php:670
6132
  msgid "Download error: the server sent us a response which we did not understand."
6133
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
6134
 
6135
- #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:780,
6136
- #: src/addons/migrator.php:1026, src/addons/migrator.php:1107,
6137
- #: src/addons/migrator.php:1154, src/addons/migrator.php:1388,
6138
- #: src/addons/migrator.php:1714, src/addons/migrator.php:1741,
6139
- #: src/addons/migrator.php:1747, src/addons/migrator.php:1809,
6140
- #: src/addons/migrator.php:1849, src/addons/migrator.php:1888,
6141
- #: src/addons/migrator.php:1898, src/addons/migrator.php:1903,
6142
- #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6143
- #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6144
- #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6145
- #: src/admin.php:3830, src/admin.php:3860, src/methods/remotesend.php:71,
6146
- #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6147
- #: src/restorer.php:1408
6148
  msgid "Error:"
6149
  msgstr "خطأ:"
6150
 
6151
- #: src/admin.php:653,
6152
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6153
  msgid "calculating..."
6154
  msgstr "حساب ..."
@@ -6193,32 +6298,32 @@ msgstr "متصفح الويب أوبرا "
6193
  msgid "More tasks:"
6194
  msgstr "المزيد من المهام:"
6195
 
6196
- #: src/admin.php:2564
6197
  msgid "Download most recently modified log file"
6198
  msgstr "تحميل ملف السجل المعدل مؤخرا"
6199
 
6200
- #: src/admin.php:2523, src/admin.php:2529, src/central/bootstrap.php:169
6201
  msgid "(Nothing yet logged)"
6202
  msgstr "(لا شيء حتى الآن تم تسجيله)"
6203
 
6204
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6205
- #: src/admin.php:2522, src/admin.php:2527
6206
  msgid "Last log message"
6207
  msgstr "رسالة السجل الأخيرة"
6208
 
6209
- #: src/addons/migrator.php:232, src/admin.php:693, src/admin.php:3570,
6210
  #: src/templates/wp-admin/settings/tab-status.php:30
6211
  msgid "Restore"
6212
  msgstr "الإستعادة"
6213
 
6214
- #: src/admin.php:514, src/admin.php:686,
6215
  #: src/templates/wp-admin/settings/tab-status.php:27
6216
  msgid "Backup Now"
6217
  msgstr "النسخ الاحتياطي الآن"
6218
 
6219
  #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6220
- #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3359,
6221
- #: src/admin.php:3439, src/admin.php:3914,
6222
  #: src/includes/class-wpadmin-commands.php:147,
6223
  #: src/includes/class-wpadmin-commands.php:480,
6224
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
@@ -6226,7 +6331,7 @@ msgstr "النسخ الاحتياطي الآن"
6226
  msgid "Database"
6227
  msgstr "قاعدة بيانات"
6228
 
6229
- #: src/admin.php:295, src/admin.php:4388
6230
  msgid "Files"
6231
  msgstr "ملفات"
6232
 
@@ -6238,11 +6343,11 @@ msgstr "النسخ الاحتياطي المجدولة القادمة"
6238
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
6239
  msgstr "جميع الاوقات المعروضة في هذا القسم تستخدم التوقيت للمنطقة الزمنية الخاص بووردبريس، والتي يمكنك تعيينها في إعدادات -> العام"
6240
 
6241
- #: src/admin.php:275
6242
  msgid "At the same time as the files backup"
6243
  msgstr "في نفس الوقت الذي نقوم فيه بالنسخ الاحتياطي للملفات"
6244
 
6245
- #: src/admin.php:265, src/admin.php:286, src/admin.php:293
6246
  msgid "Nothing currently scheduled"
6247
  msgstr "لا شيء مقرر حاليا"
6248
 
@@ -6254,15 +6359,15 @@ msgstr "واجهة المشرف هذه تستخدم الجافا سكريبت ب
6254
  msgid "JavaScript warning"
6255
  msgstr "تحذير جافا سكريبت"
6256
 
6257
- #: src/admin.php:673, src/admin.php:2591
6258
  msgid "Delete Old Directories"
6259
  msgstr "حذف الدلائل القديمة"
6260
 
6261
- #: src/admin.php:2336
6262
  msgid "Current limit is:"
6263
  msgstr "الحد الحالي هو:"
6264
 
6265
- #: src/admin.php:2310
6266
  msgid "Your backup has been restored."
6267
  msgstr "تمت استعادة النسخ الاحتياطي."
6268
 
@@ -6274,123 +6379,123 @@ msgstr "الإصدار"
6274
  msgid "Lead developer's homepage"
6275
  msgstr "الولوج لموقع المطور"
6276
 
6277
- #: src/admin.php:4308
6278
  msgid "Your settings have been wiped."
6279
  msgstr "تم القضاء على الإعدادات الخاصة بك."
6280
 
6281
- #: src/admin.php:2270
6282
  msgid "Backup directory successfully created."
6283
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
6284
 
6285
- #: src/admin.php:2263
6286
  msgid "Backup directory could not be created"
6287
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
6288
 
6289
- #: src/admin.php:2833
6290
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6291
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
6292
 
6293
- #: src/admin.php:2831
6294
  msgid "Old directories successfully removed."
6295
  msgstr "تم إزالة الدلائل القديمة بنجاح."
6296
 
6297
- #: src/admin.php:2828, src/admin.php:2828
6298
  msgid "Remove old directories"
6299
  msgstr "إزالة الدلائل القديمة"
6300
 
6301
  #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6302
- #: src/admin.php:2212, src/admin.php:2221, src/admin.php:2230,
6303
- #: src/admin.php:2272, src/admin.php:2835
6304
  msgid "Return to UpdraftPlus Configuration"
6305
  msgstr "العودة إلى اعدادات UpdraftPlus"
6306
 
6307
- #: src/admin.php:666, src/admin.php:2212, src/admin.php:2221,
6308
- #: src/admin.php:2230, src/admin.php:2272, src/admin.php:2835,
6309
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6310
  msgid "Actions"
6311
  msgstr "الإجراءات"
6312
 
6313
- #: src/admin.php:2131
6314
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6315
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
6316
 
6317
- #: src/admin.php:2041
6318
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6319
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
6320
 
6321
- #: src/admin.php:1922
6322
  msgid "No local copy present."
6323
  msgstr "لا نسخة محلية متوفرة."
6324
 
6325
- #: src/admin.php:1919
6326
  msgid "Download in progress"
6327
  msgstr "التحميل في تقدم"
6328
 
6329
- #: src/admin.php:665, src/admin.php:1908
6330
  msgid "File ready."
6331
  msgstr "ملف جاهز."
6332
 
6333
- #: src/admin.php:1889
6334
  msgid "Download failed"
6335
  msgstr "فشل تحميل"
6336
 
6337
- #: src/admin.php:663, src/admin.php:1241, src/admin.php:1668,
6338
- #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6339
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6340
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6341
- #: src/methods/stream-base.php:200, src/restorer.php:2269,
6342
- #: src/restorer.php:2294, src/restorer.php:2375, src/updraftplus.php:156
6343
  msgid "Error"
6344
  msgstr "خطأ"
6345
 
6346
- #: src/admin.php:1696
6347
  msgid "Could not find that job - perhaps it has already finished?"
6348
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
6349
 
6350
- #: src/admin.php:1688
6351
  msgid "Job deleted"
6352
  msgstr "وظيفة حذفت"
6353
 
6354
- #: src/admin.php:1772
6355
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6356
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
6357
 
6358
- #: src/admin.php:738
6359
  msgid "Nothing yet logged"
6360
  msgstr "لا شيء حتى الآن تم تسجيله"
6361
 
6362
- #: src/admin.php:957
6363
  msgid "Please consult this FAQ if you have problems backing up."
6364
  msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
6365
 
6366
- #: src/admin.php:957
6367
  msgid "Your website is hosted using the %s web server."
6368
  msgstr "موقعك يستخدم %s من خادم الويب."
6369
 
6370
- #: src/admin.php:953
6371
  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."
6372
  msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
6373
 
6374
- #: src/admin.php:949
6375
  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."
6376
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
6377
 
6378
- #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6379
- #: src/admin.php:957, src/admin.php:966, src/admin.php:3228,
6380
- #: src/admin.php:3235, src/admin.php:3237, src/methods/cloudfiles-new.php:107,
6381
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6382
- #: src/methods/openstack-base.php:541, src/methods/s3.php:827,
6383
- #: src/methods/s3.php:831, src/methods/updraftvault.php:286,
6384
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6385
  #: src/udaddons/updraftplus-addons.php:242
6386
  msgid "Warning"
6387
  msgstr "تحذير"
6388
 
6389
- #: src/admin.php:886
6390
  msgid "Add-Ons / Pro Support"
6391
  msgstr "إضافات / الدعم المدفوع"
6392
 
6393
- #: src/admin.php:530, src/admin.php:882,
6394
  #: src/templates/wp-admin/settings/tab-bar.php:7
6395
  msgid "Settings"
6396
  msgstr "إعدادات"
@@ -6399,7 +6504,7 @@ msgstr "إعدادات"
6399
  msgid "Could not create %s zip. Consult the log file for more information."
6400
  msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
6401
 
6402
- #: src/backup.php:2050
6403
  msgid "Infinite recursion: consult your log for more information"
6404
  msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
6405
 
@@ -6411,50 +6516,50 @@ msgstr ""
6411
  msgid "Like UpdraftPlus and can spare one minute?"
6412
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
6413
 
6414
- #: src/addons/azure.php:217, src/class-updraftplus.php:4449,
6415
- #: src/methods/googledrive.php:1006, src/methods/s3.php:321
6416
  msgid "File not found"
6417
  msgstr "لم يتم العثور على ملف"
6418
 
6419
- #: src/class-updraftplus.php:4356
6420
  msgid "The decryption key used:"
6421
  msgstr "مفتاح فك التشفير المستخدم:"
6422
 
6423
- #: src/class-updraftplus.php:4356, src/class-updraftplus.php:4665,
6424
  #: src/restorer.php:389
6425
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6426
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
6427
 
6428
- #: src/class-updraftplus.php:4337, src/class-updraftplus.php:4653,
6429
  #: src/restorer.php:376
6430
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6431
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
6432
 
6433
- #: src/backup.php:1933
6434
  msgid "Could not open the backup file for writing"
6435
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
6436
 
6437
- #: src/class-updraftplus.php:3731
6438
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6439
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
6440
 
6441
- #: src/class-updraftplus.php:3691
6442
  msgid "Could not read the directory"
6443
  msgstr "لا يمكن قراءة الدليل"
6444
 
6445
- #: src/admin.php:1959, src/backup.php:1157
6446
  msgid "Backup directory (%s) is not writable, or does not exist."
6447
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
6448
 
6449
- #: src/backup.php:961
6450
  msgid "WordPress backup is complete"
6451
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
6452
 
6453
- #: src/class-updraftplus.php:3203
6454
  msgid "The backup attempt has finished, apparently unsuccessfully"
6455
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
6456
 
6457
- #: src/class-updraftplus.php:3188
6458
  msgid "The backup apparently succeeded and is now complete"
6459
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
6460
 
@@ -6462,42 +6567,42 @@ msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت و
6462
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6463
  msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
6464
 
6465
- #: src/class-updraftplus.php:2485
6466
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6467
  msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
6468
 
6469
- #: src/class-updraftplus.php:1755
6470
  msgid "Others"
6471
  msgstr "أخرى"
6472
 
6473
- #: src/addons/multisite.php:464, src/class-updraftplus.php:1740
6474
  msgid "Uploads"
6475
  msgstr "الملفات المرفوعة"
6476
 
6477
- #: src/class-updraftplus.php:1739
6478
  msgid "Themes"
6479
  msgstr "تصاميم"
6480
 
6481
- #: src/class-updraftplus.php:1738
6482
  msgid "Plugins"
6483
  msgstr "الإضافات"
6484
 
6485
- #: src/class-updraftplus.php:521
6486
  msgid "No log files were found."
6487
  msgstr "لا توجد ملفات السجل."
6488
 
6489
- #: src/admin.php:1841, src/admin.php:1845, src/class-updraftplus.php:516
6490
  msgid "The log file could not be read."
6491
  msgstr "لا يمكن قراءة ملف السجل."
6492
 
6493
- #: src/admin.php:973, src/admin.php:977, src/admin.php:981, src/admin.php:985,
6494
- #: src/admin.php:989, src/class-updraftplus.php:481,
6495
- #: src/class-updraftplus.php:516, src/class-updraftplus.php:521,
6496
- #: src/class-updraftplus.php:526
6497
  msgid "UpdraftPlus notice:"
6498
  msgstr "إشعار UpdraftPlus :"
6499
 
6500
- #: src/addons/multisite.php:65, src/addons/multisite.php:686,
6501
  #: src/options.php:50
6502
  msgid "UpdraftPlus Backups"
6503
  msgstr "نسخ الإحتياطية UpdraftPlus"
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/restorer.php:1872
15
+ msgid "Requested table character set (%s) is not present - changing to %s."
16
+ msgstr ""
17
+
18
+ #: src/class-updraftplus.php:4506
19
+ msgid "Your chosen character set to use instead:"
20
+ msgstr ""
21
+
22
+ #: src/class-updraftplus.php:4499
23
+ msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
24
+ msgstr ""
25
+
26
+ #: src/class-updraftplus.php:4499
27
+ msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
28
+ msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
29
+ msgstr[0] ""
30
+ msgstr[1] ""
31
+ msgstr[2] ""
32
+ msgstr[3] ""
33
+ msgstr[4] ""
34
+ msgstr[5] ""
35
+
36
+ #: src/central/bootstrap.php:572
37
+ msgid "Create another key"
38
+ msgstr ""
39
+
40
+ #: src/central/bootstrap.php:501
41
+ msgid "UpdraftCentral dashboard connection details"
42
+ msgstr ""
43
+
44
+ #: src/central/bootstrap.php:495
45
+ msgid "Next"
46
+ msgstr ""
47
+
48
+ #: src/central/bootstrap.php:490
49
+ msgid "the UpdraftCentral dashboard plugin"
50
+ msgstr ""
51
+
52
+ #: src/central/bootstrap.php:490
53
+ msgid "On my own website on which I have installed"
54
+ msgstr ""
55
+
56
+ #: src/central/bootstrap.php:485
57
+ msgid "an account"
58
+ msgstr ""
59
+
60
+ #: src/central/bootstrap.php:485
61
+ msgid "i.e. if you have %s there"
62
+ msgstr ""
63
+
64
+ #: src/central/bootstrap.php:477
65
+ msgid "Connect this site to an UpdraftCentral dashboard found at..."
66
+ msgstr ""
67
+
68
+ #: src/central/bootstrap.php:451
69
+ msgid "Manage existing keys (%d)..."
70
+ msgstr ""
71
+
72
+ #: src/central/bootstrap.php:401
73
+ msgid "There are no UpdraftCentral dashboards that can currently control this site."
74
+ msgstr ""
75
+
76
+ #: src/central/bootstrap.php:238
77
+ msgid "You can now control this site via your UpdraftCentral dashboard at %s."
78
+ msgstr ""
79
+
80
+ #: src/central/bootstrap.php:236
81
+ msgid "Detailed instructions for this can be found at %s"
82
+ msgstr ""
83
+
84
+ #: src/central/bootstrap.php:236
85
+ msgid "You now need to copy the key below and enter it at your %s."
86
+ msgstr ""
87
+
88
+ #: src/admin.php:761
89
+ msgid "Please enter a valid URL e.g http://example.com"
90
+ msgstr ""
91
+
92
+ #: src/addons/backblaze.php:576
93
+ msgid "your Backblaze console"
94
+ msgstr ""
95
+
96
+ #: src/addons/backblaze.php:576
97
+ msgid "There are limits upon which path-names are valid. Spaces are not allowed."
98
+ msgstr ""
99
+
100
+ #: src/addons/backblaze.php:576
101
+ msgid "N.B. You need to create the bucket in %s first."
102
+ msgstr ""
103
+
104
+ #: src/addons/backblaze.php:575
105
+ msgid "some/path"
106
+ msgstr ""
107
+
108
+ #: src/addons/backblaze.php:575
109
+ msgid "Bucket name"
110
+ msgstr ""
111
+
112
+ #: src/addons/backblaze.php:574
113
+ msgid "Backup path"
114
+ msgstr ""
115
+
116
+ #: src/addons/backblaze.php:569
117
+ msgid "Application key"
118
+ msgstr ""
119
+
120
+ #: src/addons/backblaze.php:564, src/addons/backblaze.php:564
121
+ msgid "here"
122
+ msgstr ""
123
+
124
+ #: src/addons/backblaze.php:564
125
+ msgid "Get these settings from %s, or sign up %s."
126
+ msgstr ""
127
+
128
+ #: src/addons/backblaze.php:434
129
+ msgid "Bucket not found"
130
+ msgstr ""
131
+
132
+ #: src/addons/backblaze.php:390
133
+ msgid "Account Key"
134
+ msgstr ""
135
+
136
+ #: src/addons/backblaze.php:389, src/addons/backblaze.php:562
137
+ msgid "Account ID"
138
+ msgstr ""
139
+
140
+ #: src/class-updraftplus.php:4377
141
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
142
  msgstr ""
143
 
144
+ #: src/class-updraftplus.php:4375, src/class-updraftplus.php:4377
145
  msgid "the migrator add-on"
146
  msgstr ""
147
 
148
+ #: src/class-updraftplus.php:4375
149
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
150
  msgstr ""
151
 
152
+ #: src/class-updraftplus.php:4373
153
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
154
  msgstr ""
155
 
156
+ #: src/class-updraftplus.php:4370
157
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
158
  msgstr ""
159
 
169
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
170
  msgstr ""
171
 
172
+ #: src/admin.php:742
173
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
174
  msgstr ""
175
 
176
+ #: src/admin.php:1292, src/admin.php:3976, src/class-updraftplus.php:2125,
177
+ #: src/class-updraftplus.php:2190, src/class-updraftplus.php:2324
178
  msgid "A PHP fatal error (%s) has occurred: %s"
179
  msgstr ""
180
 
181
+ #: src/admin.php:1285, src/admin.php:3968, src/class-updraftplus.php:2118,
182
+ #: src/class-updraftplus.php:2183, src/class-updraftplus.php:2317
183
  msgid "A PHP exception (%s) has occurred: %s"
184
  msgstr ""
185
 
219
  msgid "Remote storage"
220
  msgstr ""
221
 
222
+ #: src/templates/wp-admin/settings/form-contents.php:219
223
  msgid "Select Files"
224
  msgstr ""
225
 
235
  msgid "Instant and secure logon with a wave of your phone."
236
  msgstr ""
237
 
238
+ #: src/backup.php:1909
239
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
240
  msgstr ""
241
 
242
+ #: src/admin.php:4465
243
  msgid "Value"
244
  msgstr ""
245
 
246
+ #: src/admin.php:1557
247
  msgid "Did not know how to delete from this cloud service."
248
  msgstr ""
249
 
255
  msgid "__Check this box to use Amazon's server-side encryption"
256
  msgstr ""
257
 
258
+ #: src/addons/azure.php:549
259
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
260
  msgstr ""
261
 
267
  msgid "Cloud Files"
268
  msgstr ""
269
 
270
+ #: src/admin.php:4303
271
  msgid "Your settings failed to save. Please refresh the settings page and try again"
272
  msgstr ""
273
 
274
+ #: src/admin.php:4262
275
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
276
  msgstr ""
277
 
288
  msgid "Extra database"
289
  msgstr ""
290
 
291
+ #: src/admin.php:3545
292
  msgid "Press here to download or browse"
293
  msgstr ""
294
 
295
+ #: src/admin.php:1074, src/admin.php:1084
296
  msgid "Error: invalid path"
297
  msgstr ""
298
 
299
+ #: src/admin.php:932
300
  msgid "An error occurred when fetching storage module options: "
301
  msgstr ""
302
 
303
+ #: src/admin.php:758
304
  msgid "Loading log file"
305
  msgstr ""
306
 
307
+ #: src/admin.php:757
308
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
309
  msgstr ""
310
 
311
+ #: src/admin.php:756
312
  msgid "Search"
313
  msgstr ""
314
 
315
+ #: src/admin.php:755
316
  msgid "Select a file to view information about it"
317
  msgstr ""
318
 
319
+ #: src/admin.php:754
320
  msgid "Browsing zip file"
321
  msgstr ""
322
 
323
+ #: src/admin.php:723
324
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
325
  msgstr ""
326
 
327
+ #: src/admin.php:671
328
  msgid "Browse contents"
329
  msgstr ""
330
 
331
+ #: src/restorer.php:1693
332
  msgid "Skipped tables:"
333
  msgstr ""
334
 
335
+ #: src/class-updraftplus.php:4557
336
  msgid "This database backup has the following WordPress tables excluded: %s"
337
  msgstr ""
338
 
339
+ #: src/admin.php:2524
340
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
341
  msgstr ""
342
 
343
+ #: src/admin.php:2524
344
  msgid "All WordPress tables will be backed up."
345
  msgstr ""
346
 
347
+ #: src/admin.php:753
348
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
349
  msgstr ""
350
 
351
+ #: src/admin.php:753
352
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
353
  msgstr ""
354
 
355
+ #: src/admin.php:753
356
  msgid "The available memory on the server."
357
  msgstr ""
358
 
359
+ #: src/admin.php:753
360
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
361
  msgstr ""
362
 
363
+ #: src/admin.php:753
364
  msgid "The file failed to upload. Please check the following:"
365
  msgstr ""
366
 
367
+ #: src/admin.php:752
368
  msgid "HTTP code:"
369
  msgstr ""
370
 
371
+ #: src/admin.php:648
372
  msgid "You have chosen to backup a database, but no tables have been selected"
373
  msgstr ""
374
 
537
  msgid "UpdraftPlus"
538
  msgstr ""
539
 
540
+ #: src/templates/wp-admin/settings/form-contents.php:243
541
  msgid "Recommended: optimize your database with WP-Optimize."
542
  msgstr ""
543
 
832
  msgid "Export / import settings"
833
  msgstr ""
834
 
835
+ #: src/restorer.php:1881
836
  msgid "Processing table (%s)"
837
  msgstr ""
838
 
839
+ #: src/restorer.php:1659
840
  msgid "Backup of: %s"
841
  msgstr ""
842
 
856
  msgid "Follow this link to deauthenticate with %s."
857
  msgstr ""
858
 
859
+ #: src/central/bootstrap.php:567
860
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
861
  msgstr ""
862
 
863
+ #: src/backup.php:1529
864
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
865
  msgstr ""
866
 
868
  msgid "You have selected a remote storage option which has an authorization step to complete:"
869
  msgstr ""
870
 
871
+ #: src/admin.php:1633
872
  msgid "Remote files deleted:"
873
  msgstr ""
874
 
875
+ #: src/admin.php:1632
876
  msgid "Local files deleted:"
877
  msgstr ""
878
 
879
+ #: src/admin.php:977, src/admin.php:981, src/admin.php:989, src/admin.php:993
880
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
881
  msgstr ""
882
 
883
+ #: src/admin.php:751
884
  msgid "remote files deleted"
885
  msgstr ""
886
 
887
+ #: src/admin.php:749
888
  msgid "Complete"
889
  msgstr ""
890
 
891
+ #: src/admin.php:748
892
  msgid "Do you want to carry out the import?"
893
  msgstr ""
894
 
895
+ #: src/admin.php:747
896
  msgid "Which was exported on:"
897
  msgstr ""
898
 
899
+ #: src/admin.php:746
900
  msgid "This will import data from:"
901
  msgstr ""
902
 
903
+ #: src/admin.php:745
904
  msgid "Importing..."
905
  msgstr ""
906
 
907
+ #: src/admin.php:741
908
  msgid "You have not yet selected a file to import."
909
  msgstr ""
910
 
911
+ #: src/admin.php:725
912
  msgid "Your export file will be of your displayed settings, not your saved ones."
913
  msgstr ""
914
 
915
+ #: src/admin.php:84
916
  msgid "template not found"
917
  msgstr ""
918
 
953
  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"
954
  msgstr ""
955
 
956
+ #: src/admin.php:2348
957
  msgid "To fix this problem go here."
958
  msgstr ""
959
 
960
+ #: src/admin.php:2348
961
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
962
  msgstr ""
963
 
964
+ #: src/admin.php:709
965
  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."
966
  msgstr ""
967
 
993
  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."
994
  msgstr ""
995
 
996
+ #: src/methods/s3.php:1063
997
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
998
  msgstr ""
999
 
1000
+ #: src/methods/s3.php:126
1001
  msgid "No settings were found - please go to the Settings tab and check your settings"
1002
  msgstr ""
1003
 
1017
  msgid "FAQs"
1018
  msgstr ""
1019
 
1020
+ #: src/central/bootstrap.php:523
1021
  msgid "More information..."
1022
  msgstr ""
1023
 
1024
+ #: src/central/bootstrap.php:521
1025
  msgid "Use the alternative method for making a connection with the dashboard."
1026
  msgstr ""
1027
 
1028
+ #: src/central/bootstrap.php:438
 
 
 
 
1029
  msgid "Key size: %d bits"
1030
  msgstr ""
1031
 
1032
+ #: src/central/bootstrap.php:433
1033
  msgid "Public key was sent to:"
1034
  msgstr ""
1035
 
1036
+ #: src/backup.php:2107
1037
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1038
  msgstr ""
1039
 
1040
+ #: src/backup.php:2085
1041
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1042
  msgstr ""
1043
 
1045
  msgid "Create key"
1046
  msgstr ""
1047
 
1048
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:515
1049
  msgid "slower, strongest"
1050
  msgstr ""
1051
 
1052
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:514
1053
  msgid "recommended"
1054
  msgstr "موصى به"
1055
 
1056
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:514
1057
  msgid "%s bytes"
1058
  msgstr ""
1059
 
1060
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:513
1061
  msgid "faster (possibility for slow PHP installs)"
1062
  msgstr ""
1063
 
1064
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:512
1065
  msgid "easy to break, fastest"
1066
  msgstr ""
1067
 
1068
  #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
1069
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:512,
1070
+ #: src/central/bootstrap.php:513, src/central/bootstrap.php:515
1071
  msgid "%s bits"
1072
  msgstr ""
1073
 
1074
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:510
1075
  msgid "Encryption key size:"
1076
  msgstr ""
1077
 
1103
  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."
1104
  msgstr ""
1105
 
1106
+ #: src/class-updraftplus.php:1736
1107
  msgid "Size: %s MB"
1108
  msgstr ""
1109
 
1110
+ #: src/templates/wp-admin/settings/form-contents.php:337
 
 
 
 
 
 
 
 
1111
  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)."
1112
  msgstr ""
1113
 
1115
  msgid "Now"
1116
  msgstr "الآن"
1117
 
1118
+ #: src/class-updraftplus.php:4389, src/restorer.php:1010
1119
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1120
  msgstr ""
1121
 
1137
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1138
  msgstr ""
1139
 
1140
+ #: src/class-updraftplus.php:520, src/class-updraftplus.php:565
1141
  msgid "The given file was not found, or could not be read."
1142
  msgstr ""
1143
 
1144
+ #: src/central/bootstrap.php:565
1145
  msgid "UpdraftCentral (Remote Control)"
1146
  msgstr ""
1147
 
1148
+ #: src/central/bootstrap.php:554
 
 
 
 
1149
  msgid "View recent UpdraftCentral log events"
1150
  msgstr ""
1151
 
1152
+ #: src/central/bootstrap.php:493
1153
  msgid "URL of mothership"
1154
  msgstr ""
1155
 
1156
+ #: src/central/bootstrap.php:504
1157
  msgid "Enter any description"
1158
  msgstr ""
1159
 
1160
+ #: src/central/bootstrap.php:503
1161
  msgid "Description"
1162
  msgstr " الوصف"
1163
 
1164
+ #: src/central/bootstrap.php:443
 
 
 
 
1165
  msgid "Delete..."
1166
  msgstr ""
1167
 
1168
+ #: src/central/bootstrap.php:436
1169
  msgid "Created:"
1170
  msgstr ""
1171
 
1172
+ #: src/central/bootstrap.php:433
1173
  msgid "Access this site as user:"
1174
  msgstr ""
1175
 
1176
+ #: src/central/bootstrap.php:457
 
 
 
 
1177
  msgid "Details"
1178
  msgstr "تفاصيل عن المناسبة"
1179
 
1180
+ #: src/central/bootstrap.php:456
1181
  msgid "Key description"
1182
  msgstr ""
1183
 
1184
+ #: src/central/bootstrap.php:329, src/central/bootstrap.php:340
1185
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
1186
  msgstr ""
1187
 
1225
  msgid "UpdraftCentral Connection"
1226
  msgstr ""
1227
 
1228
+ #: src/backup.php:869, src/class-updraftplus.php:2806
1229
  msgid "The backup was aborted by the user"
1230
  msgstr ""
1231
 
1232
+ #: src/admin.php:4298
1233
  msgid "Your settings have been saved."
1234
  msgstr "تم حفظ إعداداتك."
1235
 
1236
+ #: src/admin.php:3432
1237
  msgid "Total backup size:"
1238
  msgstr ""
1239
 
1240
+ #: src/admin.php:2846
1241
  msgid "stop"
1242
  msgstr "توقف"
1243
 
1244
+ #: src/admin.php:2684
1245
  msgid "The backup has finished running"
1246
  msgstr ""
1247
 
1267
  msgid "calculate"
1268
  msgstr ""
1269
 
1270
+ #: src/admin.php:724
1271
  msgid "You should save your changes to ensure that they are used for making your backup."
1272
  msgstr ""
1273
 
1274
+ #: src/admin.php:717
1275
  msgid "We requested to delete the file, but could not understand the server's response"
1276
  msgstr ""
1277
 
1278
+ #: src/admin.php:716
1279
  msgid "Please enter a valid URL"
1280
  msgstr ""
1281
 
1282
+ #: src/admin.php:699
1283
  msgid "Saving..."
1284
  msgstr "جاري الحفظ..."
1285
 
1286
+ #: src/admin.php:662
1287
  msgid "Error: the server sent us a response which we did not understand."
1288
  msgstr ""
1289
 
1290
+ #: src/admin.php:654
1291
  msgid "Fetching..."
1292
  msgstr ""
1293
 
1295
  msgid "Asia Pacific (Seoul)"
1296
  msgstr ""
1297
 
1298
+ #: src/restorer.php:1682
1299
  msgid "Uploads URL:"
1300
  msgstr ""
1301
 
1307
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1308
  msgstr ""
1309
 
1310
+ #: src/class-updraftplus.php:4440, src/restorer.php:1701
1311
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1312
  msgstr ""
1313
 
1314
+ #: src/class-updraftplus.php:4436
1315
  msgid "Please read this link for important information on this process."
1316
  msgstr ""
1317
 
1318
+ #: src/class-updraftplus.php:4436
1319
  msgid "It will be imported as a new site."
1320
  msgstr ""
1321
 
1322
+ #: src/admin.php:2497, src/templates/wp-admin/notices/horizontal-notice.php:16,
1323
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1324
  msgid "Dismiss"
1325
  msgstr "رفض"
1326
 
1327
+ #: src/admin.php:736
1328
  msgid "Please fill in the required information."
1329
  msgstr ""
1330
 
1331
+ #: src/addons/multisite.php:579
1332
  msgid "Read more..."
1333
  msgstr ""
1334
 
1335
+ #: src/addons/multisite.php:570
1336
  msgid "may include some site-wide data"
1337
  msgstr ""
1338
 
1339
+ #: src/addons/multisite.php:565
1340
  msgid "All sites"
1341
  msgstr ""
1342
 
1343
+ #: src/addons/multisite.php:561
1344
  msgid "Which site to restore"
1345
  msgstr ""
1346
 
1385
  msgid "Call WordPress action:"
1386
  msgstr ""
1387
 
1388
+ #: src/admin.php:2532
1389
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1390
  msgstr ""
1391
 
1392
+ #: src/admin.php:3856
1393
  msgid "Skipping: this archive was already restored."
1394
  msgstr ""
1395
 
1396
+ #: src/templates/wp-admin/settings/form-contents.php:167
1397
  msgid "File Options"
1398
  msgstr ""
1399
 
1421
  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)."
1422
  msgstr ""
1423
 
1424
+ #: src/admin.php:4175
1425
  msgid "Send this backup to remote storage"
1426
  msgstr ""
1427
 
1428
+ #: src/admin.php:4173
1429
  msgid "Check out UpdraftPlus Vault."
1430
  msgstr ""
1431
 
1432
+ #: src/admin.php:4173
1433
  msgid "Not got any remote storage?"
1434
  msgstr ""
1435
 
1436
+ #: src/admin.php:4173
1437
  msgid "settings"
1438
  msgstr "إعدادات"
1439
 
1440
+ #: src/admin.php:4173
1441
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1442
  msgstr ""
1443
 
1444
+ #: src/admin.php:2530
1445
  msgid "Include any files in the backup"
1446
  msgstr ""
1447
 
1448
+ #: src/admin.php:2516
1449
  msgid "Include the database in the backup"
1450
  msgstr ""
1451
 
1452
+ #: src/admin.php:2496
1453
  msgid "Continue restoration"
1454
  msgstr ""
1455
 
1456
+ #: src/admin.php:2491
1457
  msgid "You have an unfinished restoration operation, begun %s ago."
1458
  msgstr ""
1459
 
1460
+ #: src/admin.php:2490
1461
  msgid "Unfinished restoration"
1462
  msgstr ""
1463
 
1464
+ #: src/admin.php:2488
1465
  msgid "%s minutes, %s seconds"
1466
  msgstr ""
1467
 
1468
+ #: src/admin.php:2435
1469
  msgid "Backup Contents And Schedule"
1470
  msgstr ""
1471
 
1473
  msgid "Premium / Extensions"
1474
  msgstr ""
1475
 
1476
+ #: src/admin.php:2214, src/admin.php:2223
1477
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1478
  msgstr ""
1479
 
1480
+ #: src/addons/morefiles.php:55, src/admin.php:722
1481
  msgctxt "(verb)"
1482
  msgid "Download"
1483
  msgstr ""
1484
 
1485
+ #: src/admin.php:647
1486
  msgid "You have chosen to backup files, but no file entities have been selected"
1487
  msgstr ""
1488
 
1489
+ #: src/admin.php:548
1490
  msgid "Extensions"
1491
  msgstr "Extensions"
1492
 
1493
+ #: src/admin.php:540, src/templates/wp-admin/settings/tab-bar.php:8
1494
  msgid "Advanced Tools"
1495
  msgstr ""
1496
 
1572
  msgid "Standard"
1573
  msgstr ""
1574
 
1575
+ #: src/addons/azure.php:577
1576
  msgid "container"
1577
  msgstr ""
1578
 
1579
+ #: src/addons/azure.php:577
1580
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1581
  msgstr ""
1582
 
1583
+ #: src/addons/azure.php:576
1584
  msgid "optional"
1585
  msgstr ""
1586
 
1587
+ #: src/addons/azure.php:576
1588
  msgid "Prefix"
1589
  msgstr ""
1590
 
1591
+ #: src/addons/azure.php:571
1592
  msgid "See Microsoft's guidelines on container naming by following this link."
1593
  msgstr ""
1594
 
1595
+ #: src/addons/azure.php:571
1596
  msgid "Enter the path of the %s you wish to use here."
1597
  msgstr ""
1598
 
1599
+ #: src/addons/azure.php:560
1600
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1601
  msgstr ""
1602
 
1603
+ #: src/addons/azure.php:559
1604
  msgid "Account Name"
1605
  msgstr ""
1606
 
1607
+ #: src/addons/azure.php:559, src/addons/azure.php:563
1608
  msgid "Azure"
1609
  msgstr ""
1610
 
1611
+ #: src/addons/azure.php:555
1612
  msgid "Create Azure credentials in your Azure developer console."
1613
  msgstr ""
1614
 
1615
+ #: src/addons/azure.php:503
1616
  msgid "Could not create the container"
1617
  msgstr ""
1618
 
1619
+ #: src/addons/azure.php:358
1620
  msgid "Could not access container"
1621
  msgstr ""
1622
 
1623
+ #: src/class-updraftplus.php:2823
1624
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1625
  msgstr ""
1626
 
1627
+ #: src/backup.php:1581
1628
  msgid "the options table was not found"
1629
  msgstr ""
1630
 
1631
+ #: src/backup.php:1579
1632
  msgid "no options or sitemeta table was found"
1633
  msgstr ""
1634
 
1635
+ #: src/backup.php:1579, src/backup.php:1581
1636
  msgid "The database backup appears to have failed"
1637
  msgstr ""
1638
 
1639
+ #: src/backup.php:1451
1640
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1641
  msgstr ""
1642
 
1749
  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)."
1750
  msgstr ""
1751
 
1752
+ #: src/admin.php:1631
1753
  msgid "Backup sets removed:"
1754
  msgstr ""
1755
 
1756
+ #: src/admin.php:735
1757
  msgid "Processing..."
1758
  msgstr ""
1759
 
1760
+ #: src/admin.php:733
1761
  msgid "For backups older than"
1762
  msgstr ""
1763
 
1764
+ #: src/admin.php:732
1765
  msgid "week(s)"
1766
  msgstr ""
1767
 
1768
+ #: src/admin.php:731
1769
  msgid "hour(s)"
1770
  msgstr ""
1771
 
1772
+ #: src/admin.php:730
1773
  msgid "day(s)"
1774
  msgstr ""
1775
 
1776
+ #: src/admin.php:729
1777
  msgid "in the month"
1778
  msgstr ""
1779
 
1780
+ #: src/admin.php:728
1781
  msgid "day"
1782
  msgstr ""
1783
 
1789
  msgid "Add an additional retention rule..."
1790
  msgstr ""
1791
 
1792
+ #: src/restorer.php:2204
1793
  msgid "This database needs to be deployed on MySQL version %s or later."
1794
  msgstr ""
1795
 
1796
+ #: src/restorer.php:2204
1797
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1798
  msgstr ""
1799
 
1801
  msgid "You do not currently have any UpdraftPlus Vault quota"
1802
  msgstr ""
1803
 
1804
+ #: src/class-updraftplus.php:4478
1805
  msgid "You must upgrade MySQL to be able to use this database."
1806
  msgstr ""
1807
 
1808
+ #: src/class-updraftplus.php:4478
1809
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1810
  msgstr ""
1811
 
1812
+ #: src/admin.php:2333
1813
  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."
1814
  msgstr ""
1815
 
1837
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1838
  msgstr ""
1839
 
1840
+ #: src/admin.php:985
1841
  msgid "Go to the remote storage settings in order to connect."
1842
  msgstr ""
1843
 
1844
+ #: src/admin.php:985
1845
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1846
  msgstr ""
1847
 
1849
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1850
  msgstr ""
1851
 
1852
+ #: src/admin.php:705
1853
  msgid "Update quota count"
1854
  msgstr ""
1855
 
1856
+ #: src/admin.php:704
1857
  msgid "Counting..."
1858
  msgstr ""
1859
 
1860
+ #: src/admin.php:703
1861
  msgid "Disconnecting..."
1862
  msgstr ""
1863
 
1864
+ #: src/admin.php:701
1865
  msgid "Connecting..."
1866
  msgstr ""
1867
 
1887
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1888
  msgstr ""
1889
 
1890
+ #: src/admin.php:702, src/methods/updraftvault.php:388
1891
  msgid "Disconnect"
1892
  msgstr ""
1893
 
1919
  msgid "E-mail"
1920
  msgstr ""
1921
 
1922
+ #: src/central/bootstrap.php:540, src/methods/updraftvault.php:338,
1923
+ #: src/methods/updraftvault.php:353
1924
  msgid "Back..."
1925
  msgstr ""
1926
 
1933
  msgid "%s per quarter"
1934
  msgstr ""
1935
 
1936
+ #: src/central/bootstrap.php:567, src/methods/updraftvault.php:305,
1937
  #: src/methods/updraftvault.php:335
1938
  msgid "Read more about it here."
1939
  msgstr ""
1978
  msgid "Updraft Vault"
1979
  msgstr ""
1980
 
1981
+ #: src/addons/azure.php:388, src/addons/backblaze.php:464,
1982
+ #: src/addons/googlecloud.php:760, src/methods/s3.php:1091
1983
  msgid "Delete failed:"
1984
  msgstr ""
1985
 
1986
+ #: src/backup.php:3045
1987
  msgid "The zip engine returned the message: %s."
1988
  msgstr ""
1989
 
2007
  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."
2008
  msgstr ""
2009
 
2010
+ #: src/addons/migrator.php:1747, src/admin.php:711
2011
  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."
2012
  msgstr ""
2013
 
2035
  msgid "Keys for this site are created in the section below the one you just pressed in."
2036
  msgstr ""
2037
 
2038
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:383
2039
  msgid "You must copy and paste this key now - it cannot be shown again."
2040
  msgstr ""
2041
 
2042
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:383
2043
  msgid "Key created successfully."
2044
  msgstr ""
2045
 
2079
  msgid "This storage method does not allow downloading"
2080
  msgstr ""
2081
 
2082
+ #: src/admin.php:3610
2083
  msgid "(backup set imported from remote location)"
2084
  msgstr ""
2085
 
2099
  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."
2100
  msgstr ""
2101
 
2102
+ #: src/addons/migrator.php:1775, src/admin.php:718
2103
  msgid "Testing connection..."
2104
  msgstr ""
2105
 
2106
+ #: src/admin.php:715
2107
  msgid "Deleting..."
2108
  msgstr ""
2109
 
2110
+ #: src/admin.php:714
2111
  msgid "key name"
2112
  msgstr ""
2113
 
2114
+ #: src/admin.php:712
2115
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2116
  msgstr ""
2117
 
2118
+ #: src/admin.php:709
2119
  msgid "Creating..."
2120
  msgstr ""
2121
 
2139
  msgid "Or, send a backup to another site"
2140
  msgstr ""
2141
 
2142
+ #: src/addons/migrator.php:1946, src/admin.php:719
2143
  msgid "Send"
2144
  msgstr ""
2145
 
2146
+ #: src/addons/migrator.php:1940, src/admin.php:710
2147
  msgid "Send to site:"
2148
  msgstr ""
2149
 
2208
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2209
  msgstr ""
2210
 
2211
+ #: src/admin.php:708
2212
  msgid "Resetting..."
2213
  msgstr ""
2214
 
2215
+ #: src/addons/migrator.php:2190, src/admin.php:707
2216
  msgid "Add site"
2217
  msgstr ""
2218
 
2219
+ #: src/admin.php:706
2220
  msgid "Adding..."
2221
  msgstr ""
2222
 
2224
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2225
  msgstr ""
2226
 
2227
+ #: src/restorer.php:2206
2228
  msgid "To use this backup, your database server needs to support the %s character set."
2229
  msgstr ""
2230
 
2252
  msgid "To restore using any of the backup sets below, press the button."
2253
  msgstr ""
2254
 
2255
+ #: src/admin.php:698, src/admin.php:724, src/admin.php:725
2256
  msgid "You have made changes to your settings, and not saved."
2257
  msgstr ""
2258
 
2264
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2265
  msgstr ""
2266
 
2267
+ #: src/addons/azure.php:555, src/addons/migrator.php:1762,
2268
  #: src/addons/onedrive.php:955
2269
  msgid "For longer help, including screenshots, follow this link."
2270
  msgstr ""
2277
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2278
  msgstr ""
2279
 
2280
+ #: src/addons/azure.php:547
2281
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2282
  msgstr ""
2283
 
2443
  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)"
2444
  msgstr ""
2445
 
2446
+ #: src/methods/s3.php:875
2447
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2448
  msgstr ""
2449
 
2518
  msgid "(at same time as files backup)"
2519
  msgstr ""
2520
 
2521
+ #: src/admin.php:3114
2522
  msgid "No backup has been completed"
2523
  msgstr ""
2524
 
2567
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2568
  msgstr ""
2569
 
2570
+ #: src/methods/s3.php:172, src/methods/s3.php:173, src/methods/s3.php:174,
2571
+ #: src/methods/s3.php:182, src/methods/s3.php:183, src/methods/s3.php:184
2572
  msgid "%s Error: Failed to initialise"
2573
  msgstr ""
2574
 
2575
+ #: src/templates/wp-admin/settings/form-contents.php:218
2576
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2577
  msgid "or"
2578
  msgstr ""
2579
 
2580
+ #: src/admin.php:692
2581
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2582
  msgstr ""
2583
 
2600
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2601
  msgstr ""
2602
 
2603
+ #: src/templates/wp-admin/settings/form-contents.php:288
2604
  msgid "your site's admin address"
2605
  msgstr ""
2606
 
2607
+ #: src/templates/wp-admin/settings/form-contents.php:288
2608
  msgid "Check this box to have a basic report sent to"
2609
  msgstr ""
2610
 
2611
+ #: src/admin.php:3123
2612
  msgctxt "i.e. Non-automatic"
2613
  msgid "Manual"
2614
  msgstr ""
2615
 
2616
+ #: src/restorer.php:2183
2617
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
2618
  msgid "An error (%s) occurred:"
2619
  msgstr ""
2626
  msgid "Any other file/directory on your server that you wish to back up"
2627
  msgstr ""
2628
 
2629
+ #: src/admin.php:2350
2630
  msgid "For even more features and personal support, check out "
2631
  msgstr ""
2632
 
2635
  msgstr ""
2636
 
2637
  #: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
2638
+ #: src/admin.php:697
2639
  msgid "Automatic backup before update"
2640
  msgstr ""
2641
 
2720
  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."
2721
  msgstr ""
2722
 
2723
+ #: src/admin.php:2684, src/admin.php:3632, src/admin.php:3633
2724
  msgid "View Log"
2725
  msgstr ""
2726
 
2737
  msgid "and retain this many scheduled backups"
2738
  msgstr ""
2739
 
2740
+ #: src/admin.php:3084
2741
  msgid "incremental backup; base backup: %s"
2742
  msgstr ""
2743
 
2749
  msgid "Upload files into UpdraftPlus."
2750
  msgstr ""
2751
 
2752
+ #: src/admin.php:936, src/includes/class-commands.php:376,
2753
  #: src/templates/wp-admin/settings/tab-status.php:22
2754
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2755
  msgstr ""
2756
 
2757
+ #: src/class-updraftplus.php:4425
2758
  msgid "Backup label:"
2759
  msgstr ""
2760
 
2761
+ #: src/addons/backblaze.php:189, src/admin.php:1875
2762
  msgid "Error: unexpected file read fail"
2763
  msgstr ""
2764
 
2765
+ #: src/backup.php:3051
2766
  msgid "check your log for more details."
2767
  msgstr ""
2768
 
2769
+ #: src/backup.php:3049
2770
  msgid "your web hosting account appears to be full; please see: %s"
2771
  msgstr ""
2772
 
2773
+ #: src/backup.php:3047
2774
  msgid "A zip error occurred"
2775
  msgstr ""
2776
 
2798
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2799
  msgstr ""
2800
 
2801
+ #: src/class-updraftplus.php:4444
2802
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2803
  msgstr ""
2804
 
2805
+ #: src/class-updraftplus.php:4444
2806
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2807
  msgstr ""
2808
 
2839
  msgid "You need to connect to receive future updates to UpdraftPlus."
2840
  msgstr ""
2841
 
2842
+ #: src/class-updraftplus.php:4417
2843
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2844
  msgstr ""
2845
 
2846
+ #: src/class-updraftplus.php:4417
2847
  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."
2848
  msgstr ""
2849
 
2850
+ #: src/class-updraftplus.php:4417
2851
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2852
  msgstr ""
2853
 
2854
+ #: src/class-updraftplus.php:4417
2855
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2856
  msgstr ""
2857
 
2880
  msgid "UpdraftPlus is on social media - check us out!"
2881
  msgstr ""
2882
 
2883
+ #: src/admin.php:3701
2884
  msgid "Why am I seeing this?"
2885
  msgstr ""
2886
 
2892
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2893
  msgstr ""
2894
 
2895
+ #: src/admin.php:1814, src/admin.php:1826
2896
  msgid "Start backup"
2897
  msgstr ""
2898
 
2899
+ #: src/class-updraftplus.php:4389, src/restorer.php:1010
2900
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2901
  msgstr ""
2902
 
2903
+ #: src/admin.php:3007
2904
  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."
2905
  msgstr ""
2906
 
2908
  msgid "Unless you have a problem, you can completely ignore everything here."
2909
  msgstr ""
2910
 
2911
+ #: src/admin.php:2036
2912
  msgid "This file could not be uploaded"
2913
  msgstr ""
2914
 
2915
+ #: src/admin.php:2001
2916
  msgid "You will find more information about this in the Settings section."
2917
  msgstr ""
2918
 
2932
  msgid "Memory limit"
2933
  msgstr ""
2934
 
2935
+ #: src/class-updraftplus.php:4621, src/restorer.php:1493
2936
  msgid "restoration"
2937
  msgstr ""
2938
 
2939
+ #: src/backup.php:864
2940
  msgid "Incremental"
2941
  msgstr ""
2942
 
2943
+ #: src/backup.php:864
2944
  msgid "Full backup"
2945
  msgstr ""
2946
 
2956
  msgid "Backup succeeded"
2957
  msgstr ""
2958
 
2959
+ #: src/admin.php:3124, src/admin.php:3125, src/admin.php:3126,
2960
  #: src/updraftplus.php:99, src/updraftplus.php:100
2961
  msgid "Every %s hours"
2962
  msgstr ""
2995
  msgid "search term"
2996
  msgstr ""
2997
 
2998
+ #: src/restorer.php:2211
2999
  msgid "Too many database errors have occurred - aborting"
3000
  msgstr ""
3001
 
3002
+ #: src/backup.php:930
3003
  msgid "read more at %s"
3004
  msgstr ""
3005
 
3006
+ #: src/backup.php:930
3007
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3008
  msgstr ""
3009
 
3011
  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."
3012
  msgstr ""
3013
 
3014
+ #: src/admin.php:3459
3015
  msgid "You have not yet made any backups."
3016
  msgstr ""
3017
 
3018
+ #: src/templates/wp-admin/settings/form-contents.php:179
3019
  msgid "Database Options"
3020
  msgstr ""
3021
 
3031
  msgid "Free disk space in account:"
3032
  msgstr ""
3033
 
3034
+ #: src/admin.php:4269, src/templates/wp-admin/settings/tab-status.php:27
3035
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3036
  msgstr ""
3037
 
3038
+ #: src/admin.php:524, src/admin.php:666, src/admin.php:1679,
3039
  #: src/includes/deprecated-actions.php:29,
3040
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3041
  #: src/templates/wp-admin/settings/tab-bar.php:6
3042
  msgid "Existing Backups"
3043
  msgstr ""
3044
 
3045
+ #: src/admin.php:516, src/templates/wp-admin/settings/tab-bar.php:5
3046
  msgid "Current Status"
3047
  msgstr ""
3048
 
3049
+ #: src/admin.php:941
3050
  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."
3051
  msgstr ""
3052
 
3053
+ #: src/admin.php:941
3054
  msgid "To make a backup, just press the Backup Now button."
3055
  msgstr ""
3056
 
3057
+ #: src/admin.php:941
3058
  msgid "Welcome to UpdraftPlus!"
3059
  msgstr ""
3060
 
3126
  msgid "user"
3127
  msgstr ""
3128
 
3129
+ #: src/class-updraftplus.php:1733
3130
  msgid "External database (%s)"
3131
  msgstr ""
3132
 
3143
  msgid "However, subsequent access attempts failed:"
3144
  msgstr ""
3145
 
3146
+ #: src/admin.php:3484
3147
  msgid "External database"
3148
  msgstr ""
3149
 
3150
+ #: src/templates/wp-admin/settings/form-contents.php:332
3151
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
3152
  msgstr ""
3153
 
3154
+ #: src/templates/wp-admin/settings/form-contents.php:261
3155
  msgid "Back up more databases"
3156
  msgstr ""
3157
 
3158
+ #: src/templates/wp-admin/settings/form-contents.php:220
3159
  msgid "First, enter the decryption key"
3160
  msgstr ""
3161
 
3162
+ #: src/templates/wp-admin/settings/form-contents.php:202
3163
  msgid "You can manually decrypt an encrypted database here."
3164
  msgstr ""
3165
 
3166
+ #: src/templates/wp-admin/settings/form-contents.php:188
3167
  msgid "It can also backup external databases."
3168
  msgstr ""
3169
 
3170
+ #: src/templates/wp-admin/settings/form-contents.php:188
3171
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3172
  msgstr ""
3173
 
3175
  msgid "use UpdraftPlus Premium"
3176
  msgstr ""
3177
 
3178
+ #: src/class-updraftplus.php:4286
3179
  msgid "Decryption failed. The database file is encrypted."
3180
  msgstr ""
3181
 
3183
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
3184
  msgstr ""
3185
 
3186
+ #: src/restorer.php:1758, src/restorer.php:2152, src/restorer.php:2193,
3187
+ #: src/restorer.php:2206
3188
  msgid "An error occurred on the first %s command - aborting run"
3189
  msgstr ""
3190
 
3191
+ #: src/addons/moredatabase.php:105, src/backup.php:1392
3192
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3193
  msgstr ""
3194
 
3195
+ #: src/backup.php:1392
3196
  msgid "database connection attempt failed."
3197
  msgstr ""
3198
 
3204
  msgid "In %s, path names are case sensitive."
3205
  msgstr ""
3206
 
3207
+ #: src/addons/azure.php:577, src/addons/google-enhanced.php:85,
3208
  #: src/addons/onedrive.php:983
3209
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3210
  msgstr ""
3218
  msgid "Enter the path of the %s folder you wish to use here."
3219
  msgstr ""
3220
 
3221
+ #: src/addons/azure.php:570, src/methods/openstack2.php:164
3222
  msgid "Container"
3223
  msgstr ""
3224
 
3279
  msgid "Authenticate with %s"
3280
  msgstr ""
3281
 
3282
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:428
3283
  msgid "Error downloading remote file: Failed to download"
3284
  msgstr ""
3285
 
3286
+ #: src/methods/openstack-base.php:499, src/methods/openstack-base.php:504
3287
  msgid "Region: %s"
3288
  msgstr ""
3289
 
3290
+ #: src/methods/openstack-base.php:498
3291
  msgid "%s error - we accessed the container, but failed to create a file within it"
3292
  msgstr ""
3293
 
3294
+ #: src/methods/openstack-base.php:414
3295
  msgid "The %s object was not found"
3296
  msgstr ""
3297
 
3298
+ #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:337,
3299
+ #: src/methods/openstack-base.php:406
3300
  msgid "Could not access %s container"
3301
  msgstr ""
3302
 
3303
  #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:116,
3304
+ #: src/methods/openstack-base.php:123, src/methods/openstack-base.php:329,
3305
+ #: src/methods/openstack-base.php:394
3306
  msgid "%s error - failed to access the container"
3307
  msgstr ""
3308
 
3364
 
3365
  #: src/addons/migrator.php:391,
3366
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3367
+ #: src/templates/wp-admin/settings/form-contents.php:210
3368
  msgid "This feature requires %s version %s or later"
3369
  msgstr ""
3370
 
3372
  msgid "Failed to unpack the archive"
3373
  msgstr ""
3374
 
3375
+ #: src/class-updraftplus.php:1265
3376
  msgid "Error - failed to download the file"
3377
  msgstr ""
3378
 
3396
  msgid "password/key"
3397
  msgstr " الرقم السري/المفتاح"
3398
 
3399
+ #: src/addons/azure.php:563, src/addons/migrator.php:2208,
3400
+ #: src/addons/sftp.php:439, src/admin.php:713, src/admin.php:4465
3401
  msgid "Key"
3402
  msgstr "مفتاح"
3403
 
3413
  msgid "SCP/SFTP password/key"
3414
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
3415
 
3416
+ #: src/admin.php:3519
3417
  msgid "Files backup (created by %s)"
3418
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
3419
 
3420
+ #: src/admin.php:3519
3421
  msgid "Files and database WordPress backup (created by %s)"
3422
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
3423
 
3424
+ #: src/addons/importer.php:276, src/admin.php:3513,
3425
+ #: src/includes/class-backup-history.php:279
3426
  msgid "Backup created by: %s."
3427
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
3428
 
3429
+ #: src/admin.php:3482
3430
  msgid "Database (created by %s)"
3431
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
3432
 
3433
+ #: src/admin.php:3476, src/admin.php:3515
3434
  msgid "unknown source"
3435
  msgstr "مصدر غير معروف"
3436
 
3442
  msgid "Upload backup files"
3443
  msgstr "رفع ملفات النسخة الإحتياطية"
3444
 
3445
+ #: src/admin.php:2080
3446
  msgid "This backup was created by %s, and can be imported."
3447
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
3448
 
3449
+ #: src/admin.php:970
3450
  msgid "Read this page for a guide to possible causes and how to fix it."
3451
  msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
3452
 
3453
+ #: src/admin.php:970
3454
  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."
3455
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
3456
 
3457
+ #: src/admin.php:678, src/includes/class-backup-history.php:286
3458
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3459
  msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
3460
 
3461
+ #: src/admin.php:677
3462
  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."
3463
  msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
3464
 
3465
+ #: src/admin.php:677, src/admin.php:678,
3466
+ #: src/includes/class-backup-history.php:286
3467
  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))."
3468
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3469
 
3470
+ #: src/admin.php:3516, src/includes/class-wpadmin-commands.php:152,
3471
  #: src/restorer.php:1462
3472
  msgid "Backup created by unknown source (%s) - cannot be restored."
3473
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
3488
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3489
  msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
3490
 
3491
+ #: src/addons/backblaze.php:515, src/methods/cloudfiles.php:246,
3492
+ #: src/methods/dropbox.php:294, src/methods/openstack-base.php:111
3493
  msgid "No settings were found"
3494
  msgstr "لم يتم العثور على الإعدادات"
3495
 
3496
+ #: src/includes/class-backup-history.php:454
3497
  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."
3498
  msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
3499
 
3500
+ #: src/admin.php:644
3501
  msgid "Rescanning remote and local storage for backup sets..."
3502
  msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
3503
 
3519
  msgid "Remove"
3520
  msgstr "حذف"
3521
 
3522
+ #: src/methods/s3.php:847
3523
  msgid "Other %s FAQs."
3524
  msgstr "الأسئلة الشائعة %s الأخرى."
3525
 
3526
+ #: src/templates/wp-admin/settings/form-contents.php:332
3527
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3528
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
3529
 
3530
+ #: src/addons/morefiles.php:445, src/admin.php:3216
3531
  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."
3532
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
3533
 
3534
+ #: src/class-updraftplus.php:4621, src/methods/ftp.php:309,
3535
  #: src/restorer.php:1493
3536
  msgid "Your hosting company must enable these functions before %s can work."
3537
  msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
3538
 
3539
+ #: src/class-updraftplus.php:4621, src/methods/ftp.php:309
3540
  msgid "Your web server's PHP installation has these functions disabled: %s."
3541
  msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
3542
 
3552
  msgid "regular non-encrypted FTP"
3553
  msgstr "خادم FTP غير مشفر اعتيادي"
3554
 
3555
+ #: src/restorer.php:1666
3556
  msgid "Backup created by:"
3557
  msgstr "نسخة احتياطية أنشأها:"
3558
 
3606
  msgid "Dismiss from main dashboard (for %s weeks)"
3607
  msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
3608
 
3609
+ #: src/class-updraftplus.php:4671
3610
  msgid "The attempt to undo the double-compression succeeded."
3611
  msgstr "نجاح محاولة التراجع من الضغط المزدوج"
3612
 
3613
+ #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4669
3614
  msgid "The attempt to undo the double-compression failed."
3615
  msgstr "فشل محاولة التراجع من الضغط المزدوج"
3616
 
3617
+ #: src/class-updraftplus.php:4641
3618
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3619
  msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
3620
 
3622
  msgid "Constants"
3623
  msgstr "ثوابت"
3624
 
3625
+ #: src/backup.php:1629
3626
  msgid "Failed to open database file for reading:"
3627
  msgstr "فشل في فتح ملف قاعدة البيانات للقراءة:"
3628
 
3629
+ #: src/backup.php:1440
3630
  msgid "No database tables found"
3631
  msgstr "لم نجد أي جداول لقاعدة البيانات"
3632
 
3633
+ #: src/backup.php:1438
3634
  msgid "please wait for the rescheduled attempt"
3635
  msgstr "فضلا انتظر محاولة إعادة الجدولة"
3636
 
3647
  msgid "Errors occurred:"
3648
  msgstr "أخطاء حدثت:"
3649
 
3650
+ #: src/admin.php:3721
3651
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3652
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
3653
 
3654
+ #: src/templates/wp-admin/settings/form-contents.php:376
3655
  msgid "See this FAQ also."
3656
  msgstr "تابع هذه التعليمات أيضا."
3657
 
3658
+ #: src/templates/wp-admin/settings/form-contents.php:141
3659
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
3660
  msgstr "ان لم تختر أي خدمة للتخزين عن بعد، فكل ملفات النسخ الإحتياطية ستبقى مخزنة بسيرفرك. هذه العملية غير موصى بها (في حالة عدم تحميل هذه الملفات بجهازك الخاص)، لأنك بفقدان سيرفرك ستخسر معه ملفات النسخ الإحتياطية والموقع معا."
3661
 
3671
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3672
  msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
3673
 
3674
+ #: src/admin.php:945, src/class-updraftplus.php:783
3675
  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)"
3676
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
3677
 
3684
  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."
3685
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
3686
 
3687
+ #: src/addons/moredatabase.php:137, src/admin.php:1421
3688
  msgid "Messages:"
3689
  msgstr "رسائل:"
3690
 
3691
+ #: src/restorer.php:2046
3692
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
3693
  msgstr "تم العثور على خط SQL أكبر من الحد الأقصى لحجم الحزمة ولا يمكن تقسيمها، هذا الخط لن نتمكن من معالجته، وسنقوم بإبعاده: %s"
3694
 
3838
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية "
3839
 
3840
  #: src/addons/cloudfiles-enhanced.php:139, src/addons/s3-enhanced.php:204,
3841
+ #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:457,
3842
+ #: src/methods/openstack-base.php:459, src/methods/openstack-base.php:480,
3843
  #: src/methods/openstack2.php:33
3844
  msgid "Authorisation failed (check your credentials)"
3845
  msgstr "فشل التفويض (راجع معلوماتك)"
3848
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3849
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
3850
 
3851
+ #: src/admin.php:691, src/central/bootstrap.php:535
3852
  msgid "Create"
3853
  msgstr "خلق"
3854
 
3855
+ #: src/admin.php:653
3856
  msgid "Trying..."
3857
  msgstr "اعادة المحاولة..."
3858
 
3859
+ #: src/admin.php:652
3860
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3861
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
3862
 
3863
+ #: src/admin.php:663, src/admin.php:3997
3864
  msgid "Error data:"
3865
  msgstr "خطأ بالبيانات:"
3866
 
3867
+ #: src/admin.php:3672
3868
  msgid "Backup does not exist in the backup history"
3869
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
3870
 
3871
+ #: src/admin.php:2628
3872
  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."
3873
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
3874
 
3875
+ #: src/restorer.php:1733
3876
  msgid "Split line to avoid exceeding maximum packet size"
3877
  msgstr "تقسيم الخط لتفاذي الحجم الأقصى للحزم"
3878
 
3879
+ #: src/restorer.php:1613
3880
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
3881
  msgstr "المستخدم لا يمتلك صلاحيات لتحريك الجداول. سنحاول الإستعادة عن طريق إفراغ الجداول، يمكن لهذه العملية النجاح طالما أننا نستعيد من نسخة ووردبريس مع نفس بنية قاعدة البيانات (%s)"
3882
 
3908
  msgid "Email reports"
3909
  msgstr "تقارير البريد الإلكتروني"
3910
 
3911
+ #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1746
3912
  msgid "%s checksum: %s"
3913
  msgstr "%s الاختباري:%s"
3914
 
3915
+ #: src/class-updraftplus.php:1714, src/class-updraftplus.php:1716
3916
  msgid "files: %s"
3917
  msgstr "ملفات:%s"
3918
 
3924
  msgid "Debugging information"
3925
  msgstr "معلومات التصحيح"
3926
 
3927
+ #: src/addons/reporting.php:211, src/admin.php:3415
3928
  msgid "Uploaded to:"
3929
  msgstr "تحميلها على:"
3930
 
3969
  msgid "%s authentication"
3970
  msgstr "%s مصادقة"
3971
 
3972
+ #: src/addons/onedrive.php:718, src/class-updraftplus.php:468,
3973
  #: src/methods/dropbox.php:176, src/methods/dropbox.php:598,
3974
  #: src/methods/dropbox.php:625, src/methods/dropbox.php:638,
3975
  #: src/methods/dropbox.php:784
3984
  msgid "%s did not return the expected response - check your log file for more details"
3985
  msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
3986
 
3987
+ #: src/methods/s3.php:293
3988
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3989
  msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
3990
 
3996
  msgid "Your site's admin email address (%s) will be used."
3997
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
3998
 
3999
+ #: src/admin.php:700, src/methods/updraftvault.php:302,
4000
  #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
4001
  msgid "Connect"
4002
  msgstr "الإتصال"
4003
 
4004
+ #: src/templates/wp-admin/settings/form-contents.php:290
4005
  msgid "For more reporting features, use the Reporting add-on."
4006
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
4007
 
4008
+ #: src/class-updraftplus.php:4361
4009
  msgid "(version: %s)"
4010
  msgstr "(الإصدار: %s)"
4011
 
4012
  #: src/addons/reporting.php:455, src/addons/reporting.php:455,
4013
+ #: src/admin.php:642
4014
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
4015
  msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
4016
 
4017
+ #: src/addons/reporting.php:455, src/admin.php:641
4018
  msgid "When the Email storage method is enabled, also send the entire backup"
4019
  msgstr "عندما يتم تمكين طريقة تخزين البريد الإلكتروني، قم أيضا بإرسال النسخ الاحتياطي كاملة"
4020
 
4021
+ #: src/addons/reporting.php:170, src/backup.php:965
4022
  msgid "Latest status:"
4023
  msgstr "آخر التحديثات:"
4024
 
4025
+ #: src/backup.php:964
4026
  msgid "Backup contains:"
4027
  msgstr "تحتوي النسخة الإحتياطية على:"
4028
 
4029
+ #: src/backup.php:921
4030
  msgid "Backed up: %s"
4031
  msgstr "نسخ احتياطي: %s"
4032
 
4033
+ #: src/addons/reporting.php:253, src/backup.php:915
4034
  msgid "The log file has been attached to this email."
4035
  msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
4036
 
4037
+ #: src/backup.php:879
4038
  msgid "Unknown/unexpected error - please raise a support request"
4039
  msgstr "خطأ غير معروف / غير متوقع - يرجى رفع طلب دعم"
4040
 
4041
+ #: src/backup.php:876
4042
  msgid "Database only (files were not part of this particular schedule)"
4043
  msgstr " قاعدة البيانات فقط (لن يتم خلق نسخ احتياطية للملفات)"
4044
 
4045
+ #: src/backup.php:876
4046
  msgid "Database (files backup has not completed)"
4047
  msgstr "قاعدة بيانات (لم يتم إكمال نسخ الملفات احتياطيا)"
4048
 
4049
+ #: src/backup.php:873
4050
  msgid "Files only (database was not part of this particular schedule)"
4051
  msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقاعدة البيانات)"
4052
 
4053
+ #: src/backup.php:873
4054
  msgid "Files (database backup has not completed)"
4055
  msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
4056
 
4057
+ #: src/admin.php:297, src/backup.php:871
4058
  msgid "Files and database"
4059
  msgstr "ملفات وقواعد البيانات"
4060
 
4061
+ #: src/options.php:192
4062
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4063
  msgstr "(هذا ينطبق على جميع الإضافات للنسخ الاحتياطي لووردبريس ما لم تكن برمجة من أجل التوافق مع تعدد المواقع)."
4064
 
4065
+ #: src/options.php:192
4066
  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>."
4067
  msgstr "عند عدم الترقية، سيقوم UpdraftPlus بالسماح <strong>لكل</strong> مدير بالمدونة بالتعديل على خيارات الإضافة للخسن الإحتياطي (وبالتالي الوصول للبيانات، بما في ذلك كلمات السر) وإستعادة (مع امكانية التعديل، مثال: كلمات السر) <strong>الشبكة بالكامل</strong>."
4068
 
4069
+ #: src/options.php:192
4070
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4071
  msgstr "دعم مواقع ووردبريس متعددة، مع امتيازات اضافية، على حساب UpdraftPlus المميز، أو بإضافة المواقع المتعددة."
4072
 
4073
+ #: src/options.php:192
4074
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4075
  msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (شبكة a.k.a.)."
4076
 
4077
+ #: src/options.php:192
4078
  msgid "UpdraftPlus warning:"
4079
  msgstr "تحذير UpdraftPlus :"
4080
 
4140
  msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
4141
 
4142
  #: src/methods/email.php:76,
4143
+ #: src/templates/wp-admin/settings/form-contents.php:271,
4144
  #: src/templates/wp-admin/settings/tab-addons.php:199,
4145
  #: src/templates/wp-admin/settings/tab-addons.php:200
4146
  msgid "Reporting"
4147
  msgstr "التقارير"
4148
 
4149
+ #: src/admin.php:4462
4150
  msgid "Options (raw)"
4151
  msgstr "خيارات (الخام)"
4152
 
4153
+ #: src/addons/reporting.php:453, src/admin.php:640
4154
  msgid "Send a report only when there are warnings/errors"
4155
  msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
4156
 
4157
+ #: src/restorer.php:1677
4158
  msgid "Content URL:"
4159
  msgstr "رابط المحتوى:"
4160
 
4162
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4163
  msgstr ""
4164
 
4165
+ #: src/templates/wp-admin/settings/form-contents.php:174
4166
  msgid "See also the \"More Files\" add-on from our shop."
4167
  msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
4168
 
4169
+ #: src/backup.php:3038, src/class-updraftplus.php:796
4170
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4171
  msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
4172
 
4173
+ #: src/class-updraftplus.php:780
4174
  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)"
4175
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
4176
 
4306
  msgid "Drop backup files here"
4307
  msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
4308
 
4309
+ #: src/admin.php:2507
4310
  msgid "Does nothing happen when you attempt backups?"
4311
  msgstr "هل لا شيء يحدث عند محاولة النسخ الاحتياطي؟"
4312
 
4313
+ #: src/admin.php:651
4314
  msgid "The web server returned an error code (try again, or check your web server logs)"
4315
  msgstr "اعاد خادم الويب برمز خطأ (حاول مجددا, او قم بالتحقق من سجلات خادم الويب الخاص بك)"
4316
 
4317
+ #: src/admin.php:649
4318
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4319
  msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إغلاق المتصفح حتى اعطائك التقرير بأنة تم انتهاء العملية."
4320
 
4321
+ #: src/admin.php:646
4322
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4323
  msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
4324
 
4325
+ #: src/restorer.php:1671
4326
  msgid "Site home:"
4327
  msgstr "الصفحة الرئيسية للموقع:"
4328
 
4338
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4339
  msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
4340
 
4341
+ #: src/addons/azure.php:365, src/methods/stream-base.php:124,
4342
  #: src/methods/stream-base.php:129
4343
  msgid "Upload failed"
4344
  msgstr "فشل التحميل"
4345
 
4346
+ #: src/templates/wp-admin/settings/form-contents.php:132
4347
  msgid "You can send a backup to more than one destination with an add-on."
4348
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
4349
 
4350
+ #: src/admin.php:2846
4351
  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."
4352
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
4353
 
4354
+ #: src/admin.php:2744
4355
  msgid "(%s%%, file %s of %s)"
4356
  msgstr "(%s%%, ملف %s من%s)"
4357
 
4388
  msgid "Backup is of: %s."
4389
  msgstr "النسخ الأحتياطى من: %s"
4390
 
4391
+ #: src/admin.php:739
4392
  msgid "%s settings test result:"
4393
  msgstr "اعدادات نتيجة اختبار %s"
4394
 
4395
+ #: src/admin.php:3583, src/admin.php:3585
4396
  msgid "(Not finished)"
4397
  msgstr "(غير منتهي)"
4398
 
4399
+ #: src/admin.php:3585
4400
  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."
4401
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
4402
 
4403
+ #: src/templates/wp-admin/settings/form-contents.php:359
4404
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4405
  msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل الإضافات، لأن ذلك سوف يسبب الإعادة (نسخة احتياطية من نسخة احتياطية من نسخة احتياطية من......)."
4406
 
4407
+ #: src/templates/wp-admin/settings/form-contents.php:359
4408
  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)."
4409
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
4410
 
4411
+ #: src/admin.php:2841
4412
  msgid "Job ID: %s"
4413
  msgstr "رقم الوظيفة: %s"
4414
 
4415
+ #: src/admin.php:2826
4416
  msgid "last activity: %ss ago"
4417
  msgstr "آخر نشاط: منذ %ss"
4418
 
4419
+ #: src/admin.php:2825
4420
  msgid "next resumption: %d (after %ss)"
4421
  msgstr "الاستئناف التالي: %d (بعد %ss)"
4422
 
4423
+ #: src/admin.php:2808, src/central/bootstrap.php:424,
4424
+ #: src/central/bootstrap.php:431, src/methods/updraftvault.php:382,
4425
  #: src/methods/updraftvault.php:467
4426
  msgid "Unknown"
4427
  msgstr "غير معروف"
4428
 
4429
+ #: src/admin.php:2758
4430
  msgid "Backup finished"
4431
  msgstr "الانتهاء من النسخ الاحتياطي"
4432
 
4433
+ #: src/admin.php:2753
4434
  msgid "Waiting until scheduled time to retry because of errors"
4435
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
4436
 
4437
+ #: src/admin.php:2749
4438
  msgid "Pruning old backup sets"
4439
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
4440
 
4441
+ #: src/admin.php:2737
4442
  msgid "Uploading files to remote storage"
4443
  msgstr "تحميل الملفات للمخزن البعيد"
4444
 
4445
+ #: src/admin.php:2806
4446
  msgid "Encrypted database"
4447
  msgstr "قاعدة بيانات مشفرة"
4448
 
4449
+ #: src/admin.php:2798
4450
  msgid "Encrypting database"
4451
  msgstr "تشفير قاعدة البيانات"
4452
 
4453
+ #: src/admin.php:2772
4454
  msgid "Created database backup"
4455
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
4456
 
4457
+ #: src/admin.php:2785
4458
  msgid "table: %s"
4459
  msgstr "الجدول: %s"
4460
 
4461
+ #: src/admin.php:2783
4462
  msgid "Creating database backup"
4463
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
4464
 
4465
+ #: src/admin.php:2731
4466
  msgid "Created file backup zips"
4467
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
4468
 
4469
+ #: src/admin.php:2718
4470
  msgid "Creating file backup zips"
4471
  msgstr "انشاء ملف النسخ الاحتياطى zips"
4472
 
4473
+ #: src/admin.php:2713
4474
  msgid "Backup begun"
4475
  msgstr "بدأ النسخ الاحتياطى"
4476
 
4477
+ #: src/admin.php:2556
4478
  msgid "Backups in progress:"
4479
  msgstr "تقدم النسخ الأحتياطى:"
4480
 
4481
+ #: src/admin.php:949
4482
  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."
4483
  msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
4484
 
4494
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4495
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
4496
 
4497
+ #: src/class-updraftplus.php:2830
4498
  msgid "The backup has not finished; a resumption is scheduled"
4499
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
4500
 
4501
+ #: src/class-updraftplus.php:2018
4502
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4503
  msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
4504
 
4508
  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)."
4509
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
4510
 
4511
+ #: src/admin.php:2378
4512
  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)."
4513
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
4514
 
4515
+ #: src/addons/autobackup.php:1085, src/admin.php:693
4516
  msgid "Proceed with update"
4517
  msgstr "المضي قدما مع التحديث"
4518
 
4587
  msgid "Support"
4588
  msgstr "الدعم"
4589
 
4590
+ #: src/class-updraftplus.php:4562
4591
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4592
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
4593
 
4594
+ #: src/class-updraftplus.php:4554
4595
  msgid "This database backup is missing core WordPress tables: %s"
4596
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
4597
 
4598
+ #: src/class-updraftplus.php:4410
4599
  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."
4600
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
4601
 
4602
+ #: src/class-updraftplus.php:4409, src/class-updraftplus.php:4416
4603
  msgid "%s version: %s"
4604
  msgstr "%s النسخة: %s"
4605
 
4606
+ #: src/class-updraftplus.php:4303
4607
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4608
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
4609
 
4610
+ #: src/addons/autobackup.php:1053, src/admin.php:782,
4611
  #: src/includes/updraftplus-notices.php:171
4612
  msgid "Be safe with an automatic backup"
4613
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
4614
 
4615
+ #: src/admin.php:2330
4616
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4617
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
4618
 
4619
+ #: src/admin.php:687
4620
  msgid "The file was uploaded."
4621
  msgstr "تم رفع الملف."
4622
 
4623
+ #: src/admin.php:686
4624
  msgid "Unknown server response status:"
4625
  msgstr "استجابة الخادم غير معروفة:"
4626
 
4627
+ #: src/admin.php:685
4628
  msgid "Unknown server response:"
4629
  msgstr "استجابة الملقم غير معروف:"
4630
 
4631
+ #: src/admin.php:684
4632
  msgid "This decryption key will be attempted:"
4633
  msgstr "سيتم محاولة فتح مفتاح التشفير:"
4634
 
4635
+ #: src/admin.php:683
4636
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4637
  msgstr "اتبع هذا الرابط لمحاولة فك التشفير وتحميل ملف قاعدة البيانات على جهازك."
4638
 
4639
+ #: src/admin.php:682
4640
  msgid "Upload error"
4641
  msgstr "خطأ فى الرفع"
4642
 
4643
+ #: src/admin.php:681
4644
  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)."
4645
  msgstr "هذا الملف لا يبدو انة ملف UpdraftPlus مضغوط مشفر لقاعدة البيانات (هذة الملفات .gz.crypt التى لديها اسم مثل: backup_(time)_(site name)_(code)_db.crypt.gz)."
4646
 
4647
+ #: src/admin.php:680
4648
  msgid "Upload error:"
4649
  msgstr "خطأ التحميل:"
4650
 
4651
+ #: src/admin.php:679
4652
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4653
  msgstr "(تأكد من انك كنت تحاول رفع ملف مضغوط تم إنشاؤه مسبقا من قبل UpdraftPlus)"
4654
 
4655
+ #: src/admin.php:670
4656
  msgid "Download to your computer"
4657
  msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
4658
 
4659
+ #: src/admin.php:669
4660
  msgid "Delete from your web server"
4661
  msgstr "حذف من خادم الويب الخاص بك"
4662
 
4663
+ #: src/admin.php:3553
4664
  msgid "You appear to be missing one or more archives from this multi-archive set."
4665
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
4666
 
4667
+ #: src/admin.php:3550
4668
  msgid "(%d archive(s) in set)."
4669
  msgstr "(%d الأرشيف(s) in set)."
4670
 
4671
+ #: src/templates/wp-admin/settings/form-contents.php:336
4672
  msgid "Split archives every:"
4673
  msgstr "تقسيم كل ارشيف:"
4674
 
4676
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4677
  msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
4678
 
4679
+ #: src/admin.php:660
4680
  msgid "Warnings:"
4681
  msgstr "تحذيرات:"
4682
 
4683
+ #: src/admin.php:659
4684
  msgid "Error: the server sent an empty response."
4685
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
4686
 
4687
+ #: src/admin.php:2091
4688
  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?"
4689
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
4690
 
4720
  msgid "No such backup set exists"
4721
  msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
4722
 
4723
+ #: src/admin.php:1297
4724
  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"
4725
  msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
4726
 
4728
  msgid "Moving unpacked backup into place..."
4729
  msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
4730
 
4731
+ #: src/backup.php:2744, src/backup.php:2998
4732
  msgid "Failed to open the zip file (%s) - %s"
4733
  msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4734
 
4736
  msgid "WordPress root directory server path: %s"
4737
  msgstr "مسار جذر الوردبريس فى الخادم: %s"
4738
 
4739
+ #: src/methods/s3.php:852
4740
  msgid "%s end-point"
4741
  msgstr "نقطة النهاية %s "
4742
 
4743
+ #: src/methods/s3.php:814
4744
  msgid "... and many more!"
4745
  msgstr "... وغيرها الكثير!"
4746
 
4747
+ #: src/methods/s3generic.php:59, src/methods/s3generic.php:68
4748
  msgid "S3 (Compatible)"
4749
  msgstr "S3 (متوافق)"
4750
 
4751
+ #: src/admin.php:1211
4752
  msgid "File is not locally present - needs retrieving from remote storage"
4753
  msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
4754
 
4755
+ #: src/admin.php:3853
4756
  msgid "Looking for %s archive: file name: %s"
4757
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
4758
 
4759
+ #: src/admin.php:3814
4760
  msgid "Final checks"
4761
  msgstr "الفحوصات النهائية"
4762
 
4763
+ #: src/templates/wp-admin/settings/form-contents.php:342
4764
  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)."
4765
  msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأحتياطى الزائدة من السيرفر الخاص بك بعد انتهاء عملية النسخ الأحتياطى (أي بمعنى. اذا لم تقم بالتحديد, فأنة سوف تظل ايضا الملفات اللتى ارسللت عن بعد على السيرفر محلياً, وان الملفات اللتى يتم الأحتفاظ بها محليا لن تكون خاضعة لحدود الأبقاء)."
4766
 
4767
+ #: src/templates/wp-admin/settings/form-contents.php:217
4768
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4769
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
4770
 
4771
+ #: src/admin.php:3205
4772
  msgid "Your wp-content directory server path: %s"
4773
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
4774
 
4775
+ #: src/admin.php:676
4776
  msgid "Raw backup history"
4777
  msgstr "تاريخ النسخ الاحتياطي الخام"
4778
 
4780
  msgid "Show raw backup and file list"
4781
  msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة الملفات"
4782
 
4783
+ #: src/admin.php:658
4784
  msgid "Processing files - please wait..."
4785
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
4786
 
4787
+ #: src/admin.php:3999,
4788
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4789
  msgid "Please consult this FAQ for help on what to do about it."
4790
  msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
4793
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4794
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
4795
 
4796
+ #: src/class-updraftplus.php:4311
4797
  msgid "Failed to open database file."
4798
  msgstr "فشل فى فتح ملف قاعدة البيانات."
4799
 
4800
+ #: src/admin.php:4431
4801
  msgid "Known backups (raw)"
4802
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
4803
 
4813
  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."
4814
  msgstr "هذة تبدو كأنها ترحيل (النسخة الأحتياطة من موقع عنوان الرابط الخاص بة مختلف), لكنك لم تقم بالأشارة على خيار البحث واستبدال قاعدة البيانات. عادة ما يكون خطأ."
4815
 
4816
+ #: src/admin.php:3873
4817
  msgid "file is size:"
4818
  msgstr "حجم الملف:"
4819
 
4820
  #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4821
+ #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:949,
4822
+ #: src/admin.php:2335, src/backup.php:3045, src/class-updraftplus.php:4499,
4823
+ #: src/updraftplus.php:156
4824
  msgid "Go here for more information."
4825
  msgstr "اذهب هنا لمزيد من المعلومات."
4826
 
4827
+ #: src/admin.php:657
4828
  msgid "Some files are still downloading or being processed - please wait."
4829
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
4830
 
4831
+ #: src/class-updraftplus.php:4382, src/class-updraftplus.php:4400
4832
  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."
4833
  msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
4834
 
4872
  msgid "Error - no such file exists at %s"
4873
  msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
4874
 
4875
+ #: src/addons/azure.php:218, src/methods/addon-base-v2.php:219,
4876
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4877
+ #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:428,
4878
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4879
  #: src/methods/stream-base.php:285
4880
  msgid "%s Error"
4884
  msgid "%s error - failed to upload file"
4885
  msgstr "خطأ %s - فشل فى ارسال الملف"
4886
 
4887
+ #: src/class-updraftplus.php:1157, src/methods/cloudfiles.php:223
4888
  msgid "%s error - failed to re-assemble chunks"
4889
  msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
4890
 
4891
  #: src/methods/cloudfiles.php:107, src/methods/cloudfiles.php:111,
4892
  #: src/methods/cloudfiles.php:252, src/methods/cloudfiles.php:298,
4893
  #: src/methods/cloudfiles.php:349, src/methods/cloudfiles.php:353,
4894
+ #: src/methods/openstack-base.php:44, src/methods/openstack-base.php:325,
4895
+ #: src/methods/openstack-base.php:390, src/methods/openstack-base.php:463,
4896
+ #: src/methods/openstack-base.php:466, src/methods/openstack-base.php:484,
4897
+ #: src/methods/openstack-base.php:489
4898
  msgid "%s authentication failed"
4899
  msgstr "المصادقة فشلت %s"
4900
 
4901
  #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4902
+ #: src/admin.php:2036, src/admin.php:2083, src/admin.php:2091,
4903
+ #: src/class-updraftplus.php:925, src/class-updraftplus.php:931,
4904
+ #: src/class-updraftplus.php:4284, src/class-updraftplus.php:4286,
4905
+ #: src/class-updraftplus.php:4433, src/class-updraftplus.php:4440,
4906
+ #: src/class-updraftplus.php:4478, src/methods/googledrive.php:369,
4907
+ #: src/methods/s3.php:322
4908
  msgid "Error: %s"
4909
  msgstr "خطأ: %s"
4910
 
4911
+ #: src/admin.php:3142
4912
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4913
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
4914
 
4915
+ #: src/admin.php:3140
4916
  msgid "Backup directory specified does <b>not</b> exist."
4917
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
4918
 
4919
+ #: src/admin.php:2853, src/admin.php:3096
4920
  msgid "Warning: %s"
4921
  msgstr "تحذير: %s"
4922
 
4924
  msgid "Last backup job run:"
4925
  msgstr "اخر تشغيل لوظيفة النسخ الأحتياطى:"
4926
 
4927
+ #: src/backup.php:2766
4928
  msgid "A very large file was encountered: %s (size: %s Mb)"
4929
  msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
4930
 
4931
+ #: src/backup.php:2172
4932
  msgid "%s: unreadable file - could not be backed up"
4933
  msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
4934
 
4935
+ #: src/backup.php:1529
4936
  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"
4937
  msgstr "الجدول %s بة عدد كبير من الصفوف (%s) - نأمل ان شركة الأستضافة الخاصة بك تعطيك ما يكفى من الموارد لتفريغ هذا الجدول من النسخة الأحتياطة."
4938
 
4939
+ #: src/backup.php:1648
4940
  msgid "An error occurred whilst closing the final database file"
4941
  msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
4942
 
4943
+ #: src/backup.php:906
4944
  msgid "Warnings encountered:"
4945
  msgstr "مصادفة تحذيرات:"
4946
 
4947
+ #: src/class-updraftplus.php:2818
4948
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4949
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
4950
 
4951
+ #: src/class-updraftplus.php:809
4952
  msgid "Your free disk space is very low - only %s Mb remain"
4953
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
4954
 
4984
  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."
4985
  msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
4986
 
4987
+ #: src/methods/s3.php:828
4988
  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."
4989
  msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
4990
 
4991
+ #: src/methods/s3.php:1084
4992
  msgid "Please check your access credentials."
4993
  msgstr "يرجى التحقق من وصول بيانات الأعتماد."
4994
 
4995
+ #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1062
4996
  msgid "The error reported by %s was:"
4997
  msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
4998
 
5000
  msgid "Please supply the requested information, and then continue."
5001
  msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
5002
 
5003
+ #: src/class-updraftplus.php:4451, src/restorer.php:1707
5004
  msgid "Site information:"
5005
  msgstr "معلومات عن الموقع:"
5006
 
5007
+ #: src/restorer.php:1574
5008
  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."
5009
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
5010
 
5011
+ #: src/addons/migrator.php:341, src/admin.php:2330,
5012
+ #: src/class-updraftplus.php:4444, src/restorer.php:2046
5013
  msgid "Warning:"
5014
  msgstr "تحذير:"
5015
 
5016
+ #: src/class-updraftplus.php:4433, src/class-updraftplus.php:4436,
5017
  #: src/restorer.php:154
5018
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5019
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
5020
 
5021
+ #: src/admin.php:3841
5022
  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."
5023
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
5024
 
5025
+ #: src/admin.php:3271, src/methods/updraftvault.php:286
5026
  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."
5027
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
5028
 
5029
+ #: src/admin.php:694
5030
  msgid "Close"
5031
  msgstr "اغلق"
5032
 
5033
  #: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
5034
+ #: src/admin.php:650, src/methods/remotesend.php:66,
5035
  #: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
5036
  #: src/methods/remotesend.php:242
5037
  msgid "Unexpected response:"
5038
  msgstr "استجابة غير متوقعة:"
5039
 
5040
+ #: src/addons/reporting.php:451, src/admin.php:645
5041
  msgid "To send to more than one address, separate each address with a comma."
5042
  msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
5043
 
5044
+ #: src/admin.php:674
5045
  msgid "PHP information"
5046
  msgstr "معلومات PHP"
5047
 
5077
  msgid "Also delete from remote storage"
5078
  msgstr "حذف ايضاً من التخزين البعيد"
5079
 
5080
+ #: src/admin.php:2583
5081
  msgid "Latest UpdraftPlus.com news:"
5082
  msgstr "اخر اخبار UpdraftPlus.com:"
5083
 
5094
  msgid "News"
5095
  msgstr "اخبار"
5096
 
5097
+ #: src/admin.php:1475, src/includes/class-wpadmin-commands.php:465
5098
  msgid "Backup set not found"
5099
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
5100
 
5116
  msgid "Blog link"
5117
  msgstr "رابط المدونة"
5118
 
5119
+ #: src/admin.php:738
5120
  msgid "Testing %s Settings..."
5121
  msgstr "اختبار اعدادات %s ..."
5122
 
5124
  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."
5125
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
5126
 
5127
+ #: src/admin.php:965
5128
  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."
5129
  msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
5130
 
5131
+ #: src/admin.php:965
5132
  msgid "Notice"
5133
  msgstr "لاحظ"
5134
 
5135
+ #: src/backup.php:888
5136
  msgid "Errors encountered:"
5137
  msgstr "مصادفة اخطاء:"
5138
 
5139
+ #: src/admin.php:643
5140
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5141
  msgstr "اعادة الفحص (يبحث عن النسخ الاحتياطية التي قمت برفعها يدويا في مسار النسخ الاحتياطي الداخلي)..."
5142
 
5143
+ #: src/admin.php:656
5144
  msgid "Begun looking for this entity"
5145
  msgstr "بدأ البحث عن هذا الكيان"
5146
 
5160
  msgid "Time taken (seconds):"
5161
  msgstr "الوقت المستغرق (ثانية):"
5162
 
5163
+ #: src/addons/migrator.php:1141, src/admin.php:661
5164
  msgid "Errors:"
5165
  msgstr "الأخطاء:"
5166
 
5222
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5223
  msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
5224
 
5225
+ #: src/addons/multisite.php:659
5226
  msgid "Blog uploads"
5227
  msgstr "مدونة الملفات المرفوعة"
5228
 
5229
+ #: src/addons/migrator.php:385, src/addons/multisite.php:652
5230
  msgid "Must-use plugins"
5231
  msgstr "لابد من استخدام الأضافات"
5232
 
5233
+ #: src/addons/multisite.php:174
5234
  msgid "Multisite Install"
5235
  msgstr "تثبيت الموقع المتعدد"
5236
 
5326
  msgid "WordPress Core"
5327
  msgstr "لب الووردبريس"
5328
 
5329
+ #: src/methods/addon-base-v2.php:302, src/methods/stream-base.php:315
5330
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5331
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
5332
 
5333
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5334
+ #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2907,
5335
+ #: src/admin.php:2942, src/admin.php:2951, src/methods/addon-base-v2.php:290,
5336
  #: src/methods/stream-base.php:301
5337
  msgid "Failed"
5338
  msgstr "فشل"
5425
  msgid "You do not appear to be authenticated with Dropbox"
5426
  msgstr "لا يبدو ان المصادقة مع Dropbox"
5427
 
5428
+ #: src/methods/s3.php:1079
5429
  msgid "The communication with %s was not encrypted."
5430
  msgstr "التواصل مع %s كان غير مشفر."
5431
 
5432
+ #: src/methods/s3.php:1077
5433
  msgid "The communication with %s was encrypted."
5434
  msgstr "التواصل مع %s كان مشفر."
5435
 
5436
+ #: src/addons/googlecloud.php:756, src/methods/s3.php:1074
5437
  msgid "We accessed the bucket, and were able to create files within it."
5438
  msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
5439
 
5440
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5441
+ #: src/methods/s3.php:1072, src/methods/s3.php:1084
5442
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5443
  msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
5444
 
5445
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5446
+ #: src/methods/s3.php:1072, src/methods/s3.php:1084
5447
  msgid "Failure"
5448
  msgstr "فشل"
5449
 
5450
+ #: src/methods/s3.php:1060
5451
  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)."
5452
  msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
5453
 
5454
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5455
+ #: src/methods/s3.php:1054
5456
  msgid "Region"
5457
  msgstr "المنطقة"
5458
 
5459
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5460
+ #: src/methods/s3.php:1036
5461
  msgid "Failure: No bucket details were given."
5462
  msgstr "فشل: لم ترد تفاصيل الباكت."
5463
 
5464
+ #: src/methods/s3.php:1014
5465
  msgid "API secret"
5466
  msgstr "API السرية"
5467
 
5468
+ #: src/methods/s3.php:889
5469
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5470
  msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
5471
 
5472
+ #: src/methods/s3.php:888
5473
  msgid "%s location"
5474
  msgstr "المكان %s"
5475
 
5476
+ #: src/methods/s3.php:884
5477
  msgid "%s secret key"
5478
  msgstr "المفتاح السرى %s"
5479
 
5480
+ #: src/methods/s3.php:880
5481
  msgid "%s access key"
5482
  msgstr "مفتاح الوصول %s"
5483
 
5484
+ #: src/methods/s3.php:845
5485
  msgid "If you see errors about SSL certificates, then please go here for help."
5486
  msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
5487
 
5488
+ #: src/methods/s3.php:843
5489
  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."
5490
  msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
5491
 
5492
+ #: src/methods/s3.php:463, src/methods/s3.php:575, src/methods/s3.php:647,
5493
+ #: src/methods/s3.php:750
5494
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5495
  msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
5496
 
5497
+ #: src/methods/s3.php:733, src/methods/s3.php:743, src/methods/s3.php:779
5498
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5499
  msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
5500
 
5501
+ #: src/methods/s3.php:441
5502
  msgid "%s re-assembly error (%s): (see log file for more)"
5503
  msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
5504
 
5505
+ #: src/methods/s3.php:437
5506
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5507
  msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
5508
 
5509
+ #: src/methods/s3.php:421
5510
  msgid "%s chunk %s: upload failed"
5511
  msgstr "%s قطعة %s : فشل الرفع"
5512
 
5513
+ #: src/methods/s3.php:411
5514
  msgid "%s error: file %s was shortened unexpectedly"
5515
  msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
5516
 
5517
+ #: src/methods/s3.php:389
5518
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5519
  msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
5520
 
5526
  msgid "WordPress Backup"
5527
  msgstr "نسخ ووردريس احتياطيا"
5528
 
5529
+ #: src/methods/cloudfiles.php:582, src/methods/openstack-base.php:503
5530
  msgid "We accessed the container, and were able to create files within it."
5531
  msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء ملف داخلها "
5532
 
5534
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5535
  msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاوية، لكننا فشلنا في إنشاء ملف داخلها"
5536
 
5537
+ #: src/methods/cloudfiles.php:551, src/methods/openstack-base.php:445
5538
  msgid "Failure: No container details were given."
5539
  msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
5540
 
5545
  msgstr "اسم المستخدم"
5546
 
5547
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5548
+ #: src/methods/s3.php:1010
5549
  msgid "API key"
5550
  msgstr "مفتاح API"
5551
 
5553
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5554
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5555
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5556
+ #: src/admin.php:714, src/methods/addon-base-v2.php:282,
5557
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles-new.php:178,
5558
  #: src/methods/cloudfiles.php:526, src/methods/cloudfiles.php:531,
5559
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5560
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5561
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5562
+ #: src/methods/s3.php:1010, src/methods/s3.php:1014
5563
  msgid "Failure: No %s was given."
5564
  msgstr "فضل: لم تعطى أية %s."
5565
 
5566
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5567
+ #: src/methods/openstack-base.php:549, src/methods/s3.php:832
5568
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5569
  msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
5570
 
5603
  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."
5604
  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>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
5605
 
5606
+ #: src/admin.php:737, src/methods/backup-module.php:253
5607
  msgid "Test %s Settings"
5608
  msgstr "اختبار %s الإعدادات"
5609
 
5610
+ #: src/class-updraftplus.php:1197, src/class-updraftplus.php:1241,
5611
  #: src/methods/cloudfiles.php:405, src/methods/stream-base.php:265
5612
  msgid "Error opening local file: Failed to download"
5613
  msgstr "خطأ في فتح ملف محلي: فشل التحميل"
5618
 
5619
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5620
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5621
+ #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:288,
5622
+ #: src/methods/s3.php:357, src/methods/s3.php:369, src/methods/s3.php:370
5623
  msgid "%s Error: Failed to upload"
5624
  msgstr "%s خطأ: فشل في تحميل"
5625
 
5626
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5627
+ #: src/class-updraftplus.php:1055, src/methods/cloudfiles.php:142,
5628
  #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5629
  msgid "%s Error: Failed to open local file"
5630
  msgstr "%s خطأ: فشل في فتح ملف محلي"
5673
 
5674
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5675
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5676
+ #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:539,
5677
+ #: src/methods/s3.php:803, src/methods/stream-base.php:218
5678
  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."
5679
  msgstr "%s هو خيار صائب، لأن UpdraftPlus يدعم الرفع المقسم - لا يهمنا كم حجم موقعكم، لأن UpdraftPlus يستطيع تقسيم ورفع الأجزاء المقسمة، ولن يحبط من كثرة المهلات."
5680
 
5706
 
5707
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5708
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5709
+ #: src/methods/addon-base-v2.php:299, src/methods/cloudfiles.php:582,
5710
+ #: src/methods/googledrive.php:428, src/methods/openstack-base.php:503,
5711
+ #: src/methods/s3.php:1074, src/methods/stream-base.php:312
5712
  msgid "Success"
5713
  msgstr "نجاح"
5714
 
5747
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5748
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
5749
 
5750
+ #: src/addons/migrator.php:1775, src/admin.php:1239, src/admin.php:2910,
5751
+ #: src/admin.php:2944, src/admin.php:2948, src/admin.php:3871,
5752
+ #: src/restorer.php:2286, src/restorer.php:2391
5753
  msgid "OK"
5754
  msgstr "حسنا"
5755
 
5756
+ #: src/restorer.php:2280, src/restorer.php:2355
5757
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5758
  msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
5759
 
5760
+ #: src/addons/migrator.php:1154, src/restorer.php:2183
5761
  msgid "the database query being run was:"
5762
  msgstr "ادارة استعلام قاعدة البيانات كانت في:"
5763
 
5764
+ #: src/restorer.php:1885
5765
  msgid "will restore as:"
5766
  msgstr "إستعادة على النحو التالي:"
5767
 
5768
+ #: src/class-updraftplus.php:4422, src/restorer.php:1689,
5769
+ #: src/restorer.php:1778, src/restorer.php:1804
5770
  msgid "Old table prefix:"
5771
  msgstr "بادئة الجدول القديمة:"
5772
 
5773
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5774
+ #: src/backup.php:962, src/class-updraftplus.php:4361
5775
  msgid "Backup of:"
5776
  msgstr "نسخة احتياطية لـ:"
5777
 
5843
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5844
  msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
5845
 
5846
+ #: src/admin.php:3879, src/admin.php:3880
5847
  msgid "Could not find one of the files for restoration"
5848
  msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
5849
 
5850
+ #: src/admin.php:3989
5851
  msgid "Error message"
5852
  msgstr "رسالة الخطأ"
5853
 
5854
+ #: src/admin.php:3876
5855
  msgid "The backup records do not contain information about the proper size of this file."
5856
  msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
5857
 
5858
+ #: src/admin.php:3868
5859
  msgid "Archive is expected to be size:"
5860
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
5861
 
5862
+ #: src/admin.php:3765
5863
  msgid "If making a request for support, please include this information:"
5864
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
5865
 
5866
+ #: src/admin.php:3764
5867
  msgid "ABORT: Could not find the information on which entities to restore."
5868
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
5869
 
5870
+ #: src/admin.php:3719
5871
  msgid "UpdraftPlus Restoration: Progress"
5872
  msgstr "استرجاع UpdraftPlus: تقدم"
5873
 
5874
+ #: src/admin.php:3671
5875
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5876
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
5877
 
5878
+ #: src/admin.php:3613
5879
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5880
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
5881
 
5882
+ #: src/admin.php:3622
5883
  msgid "Delete this backup set"
5884
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
5885
 
5886
+ #: src/admin.php:3283
5887
  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."
5888
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
5889
 
5890
+ #: src/admin.php:3280
5891
  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."
5892
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
5893
 
5894
+ #: src/admin.php:3278
5895
  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)."
5896
  msgstr ""
5897
 
5898
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5899
+ #: src/methods/openstack-base.php:549, src/methods/s3.php:832
5900
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5901
  msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
5902
 
5903
+ #: src/templates/wp-admin/settings/form-contents.php:399
5904
  msgid "Save Changes"
5905
  msgstr "حفظ التغييرات"
5906
 
5907
+ #: src/templates/wp-admin/settings/form-contents.php:376
5908
  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."
5909
  msgstr "اختيار هذا الخيار قد يضعف من الآمان بإيقاف UpdraftPlus من استخدام SSL للمصادقة و تشفير العمليات، إن أمكن الأمر. لاحظ أن بعض الدمات السحابية لا تقبل هذه العملية (مثال: Dropbox)، مع هذا الخيار لن تتمكن من حفظ النسخ بهذه الخدمات."
5910
 
5911
+ #: src/templates/wp-admin/settings/form-contents.php:375
5912
  msgid "Disable SSL entirely where possible"
5913
  msgstr "قم بتعطيل SSL تماما حيثما أمكن"
5914
 
5915
+ #: src/templates/wp-admin/settings/form-contents.php:371
5916
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5917
  msgstr "لاحظ أنه ليست كل أساليب النسخ الإحتياطي بالسحابة بالضرورة تستخدم المصادقة عن طريق SSL."
5918
 
5919
+ #: src/templates/wp-admin/settings/form-contents.php:371
5920
  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."
5921
  msgstr "اختيار هذا الخيار يمكن أن يضعف من حمايتك بمنع UpdraftPlus من التحقق من هوية المواقع التي يتصل بها ( مثال: Dropbox, Google Drive). هذا يعني أن UpdraftPlus سيستخدم SSL لتشفير حركة مرور البيانات، ولن يستخدم التقنية لتشفير المصادقة مع المواقع."
5922
 
5923
+ #: src/templates/wp-admin/settings/form-contents.php:370
5924
  msgid "Do not verify SSL certificates"
5925
  msgstr "لا تحقق من شهادات SSL"
5926
 
5927
+ #: src/templates/wp-admin/settings/form-contents.php:366
5928
  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."
5929
  msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من SSL للحقق من هوية المواقع (للتأكد من أن الموقع الآخر هو فعلا الموقع المقصود وليس موقع مقرصن). نقوم بتحديثها آليا. إن قابلك خطأ SSL، حينها قم باختيار هذا الخيار (الذي يفرض على UpdraftPlus استخدام ملفات SSL الخاصة بسيرفرك بدلا من الخاص به) يمكن أن يساعدك."
5930
 
5931
+ #: src/templates/wp-admin/settings/form-contents.php:365
5932
  msgid "Use the server's SSL certificates"
5933
  msgstr "استخدام شهادات SSL للملقم"
5934
 
5935
+ #: src/admin.php:3144
5936
  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."
5937
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
5938
 
5939
+ #: src/admin.php:3144
5940
  msgid "click here"
5941
  msgstr "انقر هنا"
5942
 
5943
+ #: src/admin.php:3144
5944
  msgid "or, to reset this option"
5945
  msgstr "أو، لإعادة هذا الخيار"
5946
 
5947
+ #: src/admin.php:3144
5948
  msgid "Follow this link to attempt to create the directory and set the permissions"
5949
  msgstr ""
5950
 
5951
+ #: src/admin.php:3136
5952
  msgid "Backup directory specified is writable, which is good."
5953
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
5954
 
5955
+ #: src/templates/wp-admin/settings/form-contents.php:346
5956
  msgid "Backup directory"
5957
  msgstr "دليل النسخ الاحتياطي"
5958
 
5959
+ #: src/templates/wp-admin/settings/form-contents.php:341
5960
  msgid "Delete local backup"
5961
  msgstr "حذف النسخة الاحتياطية المحلية"
5962
 
5963
+ #: src/templates/wp-admin/settings/form-contents.php:321
5964
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5965
  msgstr "اضغط هنا لتتمكن من مشاهدة خيارات اضافية، لا ترعج نفسك بهذه الخيارات إلا إذا واجهت مشاكل."
5966
 
5967
+ #: src/templates/wp-admin/settings/form-contents.php:321
5968
  msgid "Show expert settings"
5969
  msgstr "إظهار الإعدادات المتقدمة"
5970
 
5971
+ #: src/templates/wp-admin/settings/form-contents.php:320
5972
  msgid "Expert settings"
5973
  msgstr "إعدادات متقدمة"
5974
 
5975
+ #: src/templates/wp-admin/settings/form-contents.php:331
5976
  msgid "Debug mode"
5977
  msgstr "وضع التصحيح"
5978
 
5979
+ #: src/templates/wp-admin/settings/form-contents.php:316
5980
  msgid "Advanced / Debugging Settings"
5981
  msgstr "متقدمة / تصحيح الإعدادات "
5982
 
5983
+ #: src/admin.php:673
5984
  msgid "Requesting start of backup..."
5985
  msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
5986
 
5987
+ #: src/addons/morefiles.php:297, src/admin.php:689
5988
  msgid "Cancel"
5989
  msgstr "إلغاء"
5990
 
5991
+ #: src/addons/reporting.php:233, src/admin.php:3427
5992
  msgid "None"
5993
  msgstr "لا شيء"
5994
 
5996
  msgid "Choose your remote storage"
5997
  msgstr "اختر خدمت التخزين السحابي"
5998
 
5999
+ #: src/templates/wp-admin/settings/form-contents.php:205
6000
  msgid "Manually decrypt a database backup file"
6001
  msgstr "فك تشفير ملف النسخ الاحتياطي لقاعدة البيانات يدويا"
6002
 
6003
+ #: src/templates/wp-admin/settings/form-contents.php:184
6004
  msgid "Database encryption phrase"
6005
  msgstr "عبارة تشفير قاعدة البيانات"
6006
 
6007
+ #: src/templates/wp-admin/settings/form-contents.php:283,
6008
  #: src/udaddons/options.php:133
6009
  msgid "Email"
6010
  msgstr "البريد الإلكتروني"
6011
 
6012
+ #: src/templates/wp-admin/settings/form-contents.php:174
6013
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6014
  msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
6015
 
6016
+ #: src/addons/morefiles.php:443, src/admin.php:3214
6017
  msgid "Exclude these:"
6018
  msgstr "استبعاد هذه:"
6019
 
6020
+ #: src/admin.php:3205
6021
  msgid "Any other directories found inside wp-content"
6022
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
6023
 
6024
+ #: src/templates/wp-admin/settings/form-contents.php:171
6025
  msgid "Include in files backup"
6026
  msgstr "متضمن في ملفات النسخ الاحتياطي"
6027
 
6033
  msgid "To fix the time at which a backup should take place,"
6034
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
6035
 
6036
+ #: src/admin.php:3130
6037
  msgid "Monthly"
6038
  msgstr "شهريا"
6039
 
6040
+ #: src/admin.php:3129
6041
  msgid "Fortnightly"
6042
  msgstr "نصف شهري"
6043
 
6044
+ #: src/admin.php:3128
6045
  msgid "Weekly"
6046
  msgstr "أسبوعيا"
6047
 
6048
+ #: src/admin.php:3127
6049
  msgid "Daily"
6050
  msgstr "يوميا"
6051
 
6052
+ #: src/admin.php:696, src/admin.php:3110
6053
  msgid "Download log file"
6054
  msgstr "تحميل ملف السجل"
6055
 
6056
+ #: src/admin.php:3007
6057
  msgid "The folder exists, but your webserver does not have permission to write to it."
6058
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
6059
 
6060
+ #: src/admin.php:3002
6061
  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"
6062
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
6063
 
6064
+ #: src/admin.php:2988
6065
  msgid "The request to the filesystem to create the directory failed."
6066
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
6067
 
6068
+ #: src/addons/migrator.php:2253, src/admin.php:690, src/admin.php:2904,
6069
+ #: src/admin.php:2937, src/admin.php:3622,
6070
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6071
  msgid "Delete"
6072
  msgstr "حذف"
6073
 
6074
+ #: src/admin.php:2688
6075
  msgid "(None)"
6076
  msgstr ""
6077
 
6078
+ #: src/admin.php:2844
6079
  msgid "show log"
6080
  msgstr "عرض السجل"
6081
 
6180
  msgid "Multisite"
6181
  msgstr "مواقع متعددة"
6182
 
6183
+ #: src/admin.php:2507
6184
  msgid "Go here for help."
6185
  msgstr "الدخول هنا للحصول على المساعدة."
6186
 
6233
  msgid "Delete backup set"
6234
  msgstr "حذف مجموعة النسخ الاحتياطية"
6235
 
6236
+ #: src/admin.php:672
6237
  msgid "Download error: the server sent us a response which we did not understand."
6238
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
6239
 
6240
+ #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:102,
6241
+ #: src/addons/migrator.php:780, src/addons/migrator.php:1026,
6242
+ #: src/addons/migrator.php:1107, src/addons/migrator.php:1154,
6243
+ #: src/addons/migrator.php:1388, src/addons/migrator.php:1714,
6244
+ #: src/addons/migrator.php:1741, src/addons/migrator.php:1747,
6245
+ #: src/addons/migrator.php:1809, src/addons/migrator.php:1849,
6246
+ #: src/addons/migrator.php:1888, src/addons/migrator.php:1898,
6247
+ #: src/addons/migrator.php:1903, src/addons/s3-enhanced.php:127,
6248
+ #: src/addons/s3-enhanced.php:132, src/addons/s3-enhanced.php:134,
6249
+ #: src/addons/sftp.php:814, src/addons/webdav.php:119, src/admin.php:84,
6250
+ #: src/admin.php:664, src/admin.php:3873, src/admin.php:3903,
6251
+ #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6252
+ #: src/methods/updraftvault.php:465, src/restorer.php:1408
6253
  msgid "Error:"
6254
  msgstr "خطأ:"
6255
 
6256
+ #: src/admin.php:655,
6257
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6258
  msgid "calculating..."
6259
  msgstr "حساب ..."
6298
  msgid "More tasks:"
6299
  msgstr "المزيد من المهام:"
6300
 
6301
+ #: src/admin.php:2607
6302
  msgid "Download most recently modified log file"
6303
  msgstr "تحميل ملف السجل المعدل مؤخرا"
6304
 
6305
+ #: src/admin.php:2566, src/admin.php:2572, src/central/bootstrap.php:169
6306
  msgid "(Nothing yet logged)"
6307
  msgstr "(لا شيء حتى الآن تم تسجيله)"
6308
 
6309
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6310
+ #: src/admin.php:2565, src/admin.php:2570
6311
  msgid "Last log message"
6312
  msgstr "رسالة السجل الأخيرة"
6313
 
6314
+ #: src/addons/migrator.php:232, src/admin.php:695, src/admin.php:3613,
6315
  #: src/templates/wp-admin/settings/tab-status.php:30
6316
  msgid "Restore"
6317
  msgstr "الإستعادة"
6318
 
6319
+ #: src/admin.php:516, src/admin.php:688,
6320
  #: src/templates/wp-admin/settings/tab-status.php:27
6321
  msgid "Backup Now"
6322
  msgstr "النسخ الاحتياطي الآن"
6323
 
6324
  #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6325
+ #: src/addons/reporting.php:248, src/admin.php:301, src/admin.php:3402,
6326
+ #: src/admin.php:3482, src/admin.php:3957,
6327
  #: src/includes/class-wpadmin-commands.php:147,
6328
  #: src/includes/class-wpadmin-commands.php:480,
6329
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
6331
  msgid "Database"
6332
  msgstr "قاعدة بيانات"
6333
 
6334
+ #: src/admin.php:297, src/admin.php:4438
6335
  msgid "Files"
6336
  msgstr "ملفات"
6337
 
6343
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
6344
  msgstr "جميع الاوقات المعروضة في هذا القسم تستخدم التوقيت للمنطقة الزمنية الخاص بووردبريس، والتي يمكنك تعيينها في إعدادات -> العام"
6345
 
6346
+ #: src/admin.php:277
6347
  msgid "At the same time as the files backup"
6348
  msgstr "في نفس الوقت الذي نقوم فيه بالنسخ الاحتياطي للملفات"
6349
 
6350
+ #: src/admin.php:267, src/admin.php:288, src/admin.php:295
6351
  msgid "Nothing currently scheduled"
6352
  msgstr "لا شيء مقرر حاليا"
6353
 
6359
  msgid "JavaScript warning"
6360
  msgstr "تحذير جافا سكريبت"
6361
 
6362
+ #: src/admin.php:675, src/admin.php:2634
6363
  msgid "Delete Old Directories"
6364
  msgstr "حذف الدلائل القديمة"
6365
 
6366
+ #: src/admin.php:2378
6367
  msgid "Current limit is:"
6368
  msgstr "الحد الحالي هو:"
6369
 
6370
+ #: src/admin.php:2352
6371
  msgid "Your backup has been restored."
6372
  msgstr "تمت استعادة النسخ الاحتياطي."
6373
 
6379
  msgid "Lead developer's homepage"
6380
  msgstr "الولوج لموقع المطور"
6381
 
6382
+ #: src/admin.php:4351
6383
  msgid "Your settings have been wiped."
6384
  msgstr "تم القضاء على الإعدادات الخاصة بك."
6385
 
6386
+ #: src/admin.php:2312
6387
  msgid "Backup directory successfully created."
6388
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
6389
 
6390
+ #: src/admin.php:2305
6391
  msgid "Backup directory could not be created"
6392
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
6393
 
6394
+ #: src/admin.php:2876
6395
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6396
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
6397
 
6398
+ #: src/admin.php:2874
6399
  msgid "Old directories successfully removed."
6400
  msgstr "تم إزالة الدلائل القديمة بنجاح."
6401
 
6402
+ #: src/admin.php:2871, src/admin.php:2871
6403
  msgid "Remove old directories"
6404
  msgstr "إزالة الدلائل القديمة"
6405
 
6406
  #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6407
+ #: src/admin.php:2254, src/admin.php:2263, src/admin.php:2272,
6408
+ #: src/admin.php:2314, src/admin.php:2878
6409
  msgid "Return to UpdraftPlus Configuration"
6410
  msgstr "العودة إلى اعدادات UpdraftPlus"
6411
 
6412
+ #: src/admin.php:668, src/admin.php:2254, src/admin.php:2263,
6413
+ #: src/admin.php:2272, src/admin.php:2314, src/admin.php:2878,
6414
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6415
  msgid "Actions"
6416
  msgstr "الإجراءات"
6417
 
6418
+ #: src/admin.php:2173
6419
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6420
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
6421
 
6422
+ #: src/admin.php:2083
6423
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6424
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
6425
 
6426
+ #: src/admin.php:1964
6427
  msgid "No local copy present."
6428
  msgstr "لا نسخة محلية متوفرة."
6429
 
6430
+ #: src/admin.php:1961
6431
  msgid "Download in progress"
6432
  msgstr "التحميل في تقدم"
6433
 
6434
+ #: src/admin.php:667, src/admin.php:1950
6435
  msgid "File ready."
6436
  msgstr "ملف جاهز."
6437
 
6438
+ #: src/admin.php:1931
6439
  msgid "Download failed"
6440
  msgstr "فشل تحميل"
6441
 
6442
+ #: src/admin.php:665, src/admin.php:1247, src/admin.php:1710,
6443
+ #: src/class-updraftplus.php:1197, src/class-updraftplus.php:1241,
6444
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6445
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6446
+ #: src/methods/stream-base.php:200, src/restorer.php:2282,
6447
+ #: src/restorer.php:2307, src/restorer.php:2388, src/updraftplus.php:156
6448
  msgid "Error"
6449
  msgstr "خطأ"
6450
 
6451
+ #: src/admin.php:1738
6452
  msgid "Could not find that job - perhaps it has already finished?"
6453
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
6454
 
6455
+ #: src/admin.php:1730
6456
  msgid "Job deleted"
6457
  msgstr "وظيفة حذفت"
6458
 
6459
+ #: src/admin.php:1814
6460
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6461
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
6462
 
6463
+ #: src/admin.php:740
6464
  msgid "Nothing yet logged"
6465
  msgstr "لا شيء حتى الآن تم تسجيله"
6466
 
6467
+ #: src/admin.php:961
6468
  msgid "Please consult this FAQ if you have problems backing up."
6469
  msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
6470
 
6471
+ #: src/admin.php:961
6472
  msgid "Your website is hosted using the %s web server."
6473
  msgstr "موقعك يستخدم %s من خادم الويب."
6474
 
6475
+ #: src/admin.php:957
6476
  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."
6477
  msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
6478
 
6479
+ #: src/admin.php:953
6480
  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."
6481
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
6482
 
6483
+ #: src/admin.php:945, src/admin.php:949, src/admin.php:953, src/admin.php:957,
6484
+ #: src/admin.php:961, src/admin.php:970, src/admin.php:3271,
6485
+ #: src/admin.php:3278, src/admin.php:3280, src/methods/cloudfiles-new.php:107,
6486
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6487
+ #: src/methods/openstack-base.php:549, src/methods/s3.php:828,
6488
+ #: src/methods/s3.php:832, src/methods/updraftvault.php:286,
6489
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6490
  #: src/udaddons/updraftplus-addons.php:242
6491
  msgid "Warning"
6492
  msgstr "تحذير"
6493
 
6494
+ #: src/admin.php:890
6495
  msgid "Add-Ons / Pro Support"
6496
  msgstr "إضافات / الدعم المدفوع"
6497
 
6498
+ #: src/admin.php:532, src/admin.php:886,
6499
  #: src/templates/wp-admin/settings/tab-bar.php:7
6500
  msgid "Settings"
6501
  msgstr "إعدادات"
6504
  msgid "Could not create %s zip. Consult the log file for more information."
6505
  msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
6506
 
6507
+ #: src/backup.php:2052
6508
  msgid "Infinite recursion: consult your log for more information"
6509
  msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
6510
 
6516
  msgid "Like UpdraftPlus and can spare one minute?"
6517
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
6518
 
6519
+ #: src/addons/azure.php:218, src/class-updraftplus.php:4080,
6520
+ #: src/methods/googledrive.php:1006, src/methods/s3.php:322
6521
  msgid "File not found"
6522
  msgstr "لم يتم العثور على ملف"
6523
 
6524
+ #: src/class-updraftplus.php:3987
6525
  msgid "The decryption key used:"
6526
  msgstr "مفتاح فك التشفير المستخدم:"
6527
 
6528
+ #: src/class-updraftplus.php:3987, src/class-updraftplus.php:4296,
6529
  #: src/restorer.php:389
6530
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6531
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
6532
 
6533
+ #: src/class-updraftplus.php:3968, src/class-updraftplus.php:4284,
6534
  #: src/restorer.php:376
6535
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6536
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
6537
 
6538
+ #: src/backup.php:1935
6539
  msgid "Could not open the backup file for writing"
6540
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
6541
 
6542
+ #: src/class-updraftplus.php:3354
6543
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6544
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
6545
 
6546
+ #: src/class-updraftplus.php:3315
6547
  msgid "Could not read the directory"
6548
  msgstr "لا يمكن قراءة الدليل"
6549
 
6550
+ #: src/admin.php:2001, src/backup.php:1159
6551
  msgid "Backup directory (%s) is not writable, or does not exist."
6552
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
6553
 
6554
+ #: src/backup.php:963
6555
  msgid "WordPress backup is complete"
6556
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
6557
 
6558
+ #: src/class-updraftplus.php:2827
6559
  msgid "The backup attempt has finished, apparently unsuccessfully"
6560
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
6561
 
6562
+ #: src/class-updraftplus.php:2812
6563
  msgid "The backup apparently succeeded and is now complete"
6564
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
6565
 
6567
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6568
  msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
6569
 
6570
+ #: src/class-updraftplus.php:2515
6571
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6572
  msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
6573
 
6574
+ #: src/class-updraftplus.php:1798
6575
  msgid "Others"
6576
  msgstr "أخرى"
6577
 
6578
+ #: src/addons/multisite.php:467, src/class-updraftplus.php:1783
6579
  msgid "Uploads"
6580
  msgstr "الملفات المرفوعة"
6581
 
6582
+ #: src/class-updraftplus.php:1782
6583
  msgid "Themes"
6584
  msgstr "تصاميم"
6585
 
6586
+ #: src/class-updraftplus.php:1781
6587
  msgid "Plugins"
6588
  msgstr "الإضافات"
6589
 
6590
+ #: src/class-updraftplus.php:560
6591
  msgid "No log files were found."
6592
  msgstr "لا توجد ملفات السجل."
6593
 
6594
+ #: src/admin.php:1883, src/admin.php:1887, src/class-updraftplus.php:555
6595
  msgid "The log file could not be read."
6596
  msgstr "لا يمكن قراءة ملف السجل."
6597
 
6598
+ #: src/admin.php:977, src/admin.php:981, src/admin.php:985, src/admin.php:989,
6599
+ #: src/admin.php:993, src/class-updraftplus.php:520,
6600
+ #: src/class-updraftplus.php:555, src/class-updraftplus.php:560,
6601
+ #: src/class-updraftplus.php:565
6602
  msgid "UpdraftPlus notice:"
6603
  msgstr "إشعار UpdraftPlus :"
6604
 
6605
+ #: src/addons/multisite.php:65, src/addons/multisite.php:689,
6606
  #: src/options.php:50
6607
  msgid "UpdraftPlus Backups"
6608
  msgstr "نسخ الإحتياطية UpdraftPlus"
languages/updraftplus-bn_BD.mo CHANGED
Binary file
languages/updraftplus-bn_BD.po CHANGED
@@ -11,23 +11,145 @@ msgstr ""
11
  "Language: bn\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
- #: src/class-updraftplus.php:4741
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
16
  msgstr ""
17
 
18
- #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
  msgid "the migrator add-on"
20
  msgstr ""
21
 
22
- #: src/class-updraftplus.php:4739
23
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
  msgstr ""
25
 
26
- #: src/class-updraftplus.php:4737
27
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
28
  msgstr ""
29
 
30
- #: src/class-updraftplus.php:4734
31
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
32
  msgstr ""
33
 
@@ -43,17 +165,17 @@ msgstr ""
43
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr ""
45
 
46
- #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr ""
49
 
50
- #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
- #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr ""
54
 
55
- #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
- #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr ""
59
 
@@ -93,7 +215,7 @@ msgstr ""
93
  msgid "Remote storage"
94
  msgstr ""
95
 
96
- #: src/templates/wp-admin/settings/form-contents.php:221
97
  msgid "Select Files"
98
  msgstr ""
99
 
@@ -109,15 +231,15 @@ msgstr ""
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr ""
111
 
112
- #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr ""
115
 
116
- #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr ""
119
 
120
- #: src/admin.php:1540
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr ""
123
 
@@ -129,7 +251,7 @@ msgstr ""
129
  msgid "__Check this box to use Amazon's server-side encryption"
130
  msgstr ""
131
 
132
- #: src/addons/azure.php:535
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr ""
135
 
@@ -141,11 +263,11 @@ msgstr ""
141
  msgid "Cloud Files"
142
  msgstr ""
143
 
144
- #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr ""
147
 
148
- #: src/admin.php:4219
149
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
150
  msgstr ""
151
 
@@ -162,87 +284,87 @@ msgstr ""
162
  msgid "Extra database"
163
  msgstr ""
164
 
165
- #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr ""
168
 
169
- #: src/admin.php:1070, src/admin.php:1080
170
  msgid "Error: invalid path"
171
  msgstr ""
172
 
173
- #: src/admin.php:928
174
  msgid "An error occurred when fetching storage module options: "
175
  msgstr ""
176
 
177
- #: src/admin.php:756
178
  msgid "Loading log file"
179
  msgstr ""
180
 
181
- #: src/admin.php:755
182
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
183
  msgstr ""
184
 
185
- #: src/admin.php:754
186
  msgid "Search"
187
  msgstr ""
188
 
189
- #: src/admin.php:753
190
  msgid "Select a file to view information about it"
191
  msgstr ""
192
 
193
- #: src/admin.php:752
194
  msgid "Browsing zip file"
195
  msgstr ""
196
 
197
- #: src/admin.php:721
198
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
199
  msgstr ""
200
 
201
- #: src/admin.php:669
202
  msgid "Browse contents"
203
  msgstr ""
204
 
205
- #: src/restorer.php:1692
206
  msgid "Skipped tables:"
207
  msgstr ""
208
 
209
- #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr ""
212
 
213
- #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr ""
216
 
217
- #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr ""
220
 
221
- #: src/admin.php:751
222
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
223
  msgstr ""
224
 
225
- #: src/admin.php:751
226
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
227
  msgstr ""
228
 
229
- #: src/admin.php:751
230
  msgid "The available memory on the server."
231
  msgstr ""
232
 
233
- #: src/admin.php:751
234
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
235
  msgstr ""
236
 
237
- #: src/admin.php:751
238
  msgid "The file failed to upload. Please check the following:"
239
  msgstr ""
240
 
241
- #: src/admin.php:750
242
  msgid "HTTP code:"
243
  msgstr ""
244
 
245
- #: src/admin.php:646
246
  msgid "You have chosen to backup a database, but no tables have been selected"
247
  msgstr ""
248
 
@@ -411,7 +533,7 @@ msgstr ""
411
  msgid "UpdraftPlus"
412
  msgstr ""
413
 
414
- #: src/templates/wp-admin/settings/form-contents.php:245
415
  msgid "Recommended: optimize your database with WP-Optimize."
416
  msgstr ""
417
 
@@ -706,11 +828,11 @@ msgstr ""
706
  msgid "Export / import settings"
707
  msgstr ""
708
 
709
- #: src/restorer.php:1869
710
  msgid "Processing table (%s)"
711
  msgstr ""
712
 
713
- #: src/restorer.php:1658
714
  msgid "Backup of: %s"
715
  msgstr ""
716
 
@@ -730,11 +852,11 @@ msgstr ""
730
  msgid "Follow this link to deauthenticate with %s."
731
  msgstr ""
732
 
733
- #: src/central/bootstrap.php:549
734
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
735
  msgstr ""
736
 
737
- #: src/backup.php:1527
738
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
739
  msgstr ""
740
 
@@ -742,51 +864,51 @@ msgstr ""
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr ""
744
 
745
- #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr ""
748
 
749
- #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr ""
752
 
753
- #: src/admin.php:973, src/admin.php:977, src/admin.php:985, src/admin.php:989
754
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
755
  msgstr ""
756
 
757
- #: src/admin.php:749
758
  msgid "remote files deleted"
759
  msgstr ""
760
 
761
- #: src/admin.php:747
762
  msgid "Complete"
763
  msgstr ""
764
 
765
- #: src/admin.php:746
766
  msgid "Do you want to carry out the import?"
767
  msgstr ""
768
 
769
- #: src/admin.php:745
770
  msgid "Which was exported on:"
771
  msgstr ""
772
 
773
- #: src/admin.php:744
774
  msgid "This will import data from:"
775
  msgstr ""
776
 
777
- #: src/admin.php:743
778
  msgid "Importing..."
779
  msgstr ""
780
 
781
- #: src/admin.php:739
782
  msgid "You have not yet selected a file to import."
783
  msgstr ""
784
 
785
- #: src/admin.php:723
786
  msgid "Your export file will be of your displayed settings, not your saved ones."
787
  msgstr ""
788
 
789
- #: src/admin.php:82
790
  msgid "template not found"
791
  msgstr ""
792
 
@@ -827,15 +949,15 @@ msgstr "অথবা ম্যানুয়ালি পুনরুদ্ধা
827
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
828
  msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
829
 
830
- #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
833
 
834
- #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
837
 
838
- #: src/admin.php:707
839
  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."
840
  msgstr "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
841
 
@@ -867,11 +989,11 @@ msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ
867
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
868
  msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
869
 
870
- #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
873
 
874
- #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr "কোন সেটিং পাওয়া যায়নি - দয়া করে সেটিং ট্যাবে গিয়ে আপনার সেটিং যাচাই করুন।"
877
 
@@ -891,31 +1013,27 @@ msgstr "স্ট্যান্ডার্ড (কদাচিৎ অ্যা
891
  msgid "FAQs"
892
  msgstr "বার বার জিজ্ঞাসিত প্রশ্নসমূহ"
893
 
894
- #: src/central/bootstrap.php:496
895
  msgid "More information..."
896
  msgstr "আরও তথ্য..."
897
 
898
- #: src/central/bootstrap.php:494
899
  msgid "Use the alternative method for making a connection with the dashboard."
900
  msgstr "ড্যাশবোর্ডের সাথে যুক্ত হতে বিকল্প পদ্ধতিটি ব্যবহার করুন।"
901
 
902
- #: src/central/bootstrap.php:477
903
- msgid "Dashboard at"
904
- msgstr "ড্যাশবোর্ড টি এখানে"
905
-
906
- #: src/central/bootstrap.php:425
907
  msgid "Key size: %d bits"
908
  msgstr "কি সাইজ: %d বিটস"
909
 
910
- #: src/central/bootstrap.php:420
911
  msgid "Public key was sent to:"
912
  msgstr "পাবলিক কি টি পাঠানো হয়েছিল:"
913
 
914
- #: src/backup.php:2105
915
  msgid "Failed to open directory (check the file permissions and ownership): %s"
916
  msgstr "ডিরেক্টরি খুলতে ব্যর্থ (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন): %s"
917
 
918
- #: src/backup.php:2083
919
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
920
  msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
921
 
@@ -923,33 +1041,33 @@ msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ
923
  msgid "Create key"
924
  msgstr "পিন তৈরি করুন"
925
 
926
- #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr "ধীরতর, সবচেয়ে বেশি শক্তিশালী"
929
 
930
- #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr "নির্দেশিত"
933
 
934
- #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr "%s বাইটস"
937
 
938
- #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr "দ্রুততর (ধীর পি এইচ পি ইন্সটল এর ক্ষেত্রে)"
941
 
942
- #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr "ভাঙতে সহজ, দ্রুততম সময়ে"
945
 
946
  #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
- #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
- #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr "%s বিটস"
951
 
952
- #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr "এনক্রিপশন পিনের সাইজঃ"
955
 
@@ -981,19 +1099,11 @@ msgstr ""
981
  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."
982
  msgstr ""
983
 
984
- #: src/class-updraftplus.php:1693
985
  msgid "Size: %s MB"
986
  msgstr "সাইজঃ %s MB"
987
 
988
- #: src/central/bootstrap.php:486
989
- msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
990
- msgstr ""
991
-
992
- #: src/central/bootstrap.php:481
993
- msgid "i.e. you have an account there"
994
- msgstr "যদি আপনার সেখানে একটি একাউণ্ট (পরিচিতি) থাকে"
995
-
996
- #: src/templates/wp-admin/settings/form-contents.php:339
997
  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)."
998
  msgstr ""
999
 
@@ -1001,7 +1111,7 @@ msgstr ""
1001
  msgid "Now"
1002
  msgstr "এখন"
1003
 
1004
- #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr ""
1007
 
@@ -1023,63 +1133,51 @@ msgstr "অথবা (বাৎসরিক মূল্যছাড়)"
1023
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1024
  msgstr "এই সাইটের জন্য কোন ভল্ট কানেকশন পাওয়া যায়নি (এটা কি স্থানান্তর করা হয়েছে?), দয়া করে ডিসকানেক্ট করে আবার কানেক্ট করুন।"
1025
 
1026
- #: src/class-updraftplus.php:481, src/class-updraftplus.php:526
1027
  msgid "The given file was not found, or could not be read."
1028
  msgstr "প্রদত্ত ফাইল পাওয়া যায়নি অথবা পড়া সম্ভব হয়নি।"
1029
 
1030
- #: src/central/bootstrap.php:547
1031
  msgid "UpdraftCentral (Remote Control)"
1032
  msgstr "UpdraftCentral (দূরনিয়ন্ত্রণ)"
1033
 
1034
- #: src/central/bootstrap.php:535
1035
- msgid "fetch..."
1036
- msgstr "আনা..."
1037
-
1038
- #: src/central/bootstrap.php:534
1039
  msgid "View recent UpdraftCentral log events"
1040
  msgstr ""
1041
 
1042
- #: src/central/bootstrap.php:489
1043
  msgid "URL of mothership"
1044
  msgstr ""
1045
 
1046
- #: src/central/bootstrap.php:472
1047
  msgid "Enter any description"
1048
  msgstr ""
1049
 
1050
- #: src/central/bootstrap.php:469
1051
  msgid "Description"
1052
  msgstr "বর্ণনা"
1053
 
1054
- #: src/central/bootstrap.php:463
1055
- msgid "Create new key"
1056
- msgstr "নতুন চাবি (key) তৈরি করুন"
1057
-
1058
- #: src/central/bootstrap.php:430
1059
  msgid "Delete..."
1060
  msgstr "ডিলিট..."
1061
 
1062
- #: src/central/bootstrap.php:423
1063
  msgid "Created:"
1064
  msgstr "তৈরিকৃতঃ"
1065
 
1066
- #: src/central/bootstrap.php:420
1067
  msgid "Access this site as user:"
1068
  msgstr "এই ইউজার হিসেবে এই সাইট অ্যাকসেস করুনঃ"
1069
 
1070
- #: src/central/bootstrap.php:388
1071
- msgid "No keys have yet been created."
1072
- msgstr ""
1073
-
1074
- #: src/central/bootstrap.php:442
1075
  msgid "Details"
1076
  msgstr "বিস্তারিত"
1077
 
1078
- #: src/central/bootstrap.php:441
1079
  msgid "Key description"
1080
  msgstr ""
1081
 
1082
- #: src/central/bootstrap.php:316, src/central/bootstrap.php:327
1083
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
1084
  msgstr ""
1085
 
@@ -1123,23 +1221,23 @@ msgstr ""
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr ""
1125
 
1126
- #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr ""
1129
 
1130
- #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
1133
 
1134
- #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr ""
1137
 
1138
- #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr ""
1141
 
1142
- #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr ""
1145
 
@@ -1165,27 +1263,27 @@ msgstr "এই ব্যাকআপ সেট"
1165
  msgid "calculate"
1166
  msgstr "গণনা করুন"
1167
 
1168
- #: src/admin.php:722
1169
  msgid "You should save your changes to ensure that they are used for making your backup."
1170
  msgstr ""
1171
 
1172
- #: src/admin.php:715
1173
  msgid "We requested to delete the file, but could not understand the server's response"
1174
  msgstr ""
1175
 
1176
- #: src/admin.php:714
1177
  msgid "Please enter a valid URL"
1178
  msgstr "দয়া করে সঠিক URL প্রবেশ করান"
1179
 
1180
- #: src/admin.php:697
1181
  msgid "Saving..."
1182
  msgstr "সংরক্ষণ হচ্ছে..."
1183
 
1184
- #: src/admin.php:660
1185
  msgid "Error: the server sent us a response which we did not understand."
1186
  msgstr ""
1187
 
1188
- #: src/admin.php:652
1189
  msgid "Fetching..."
1190
  msgstr "আনা হচ্ছে..."
1191
 
@@ -1193,7 +1291,7 @@ msgstr "আনা হচ্ছে..."
1193
  msgid "Asia Pacific (Seoul)"
1194
  msgstr ""
1195
 
1196
- #: src/restorer.php:1681
1197
  msgid "Uploads URL:"
1198
  msgstr ""
1199
 
@@ -1205,40 +1303,40 @@ msgstr ""
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr ""
1207
 
1208
- #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr ""
1211
 
1212
- #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr ""
1215
 
1216
- #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr ""
1219
 
1220
- #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr "খারিজ"
1224
 
1225
- #: src/admin.php:734
1226
  msgid "Please fill in the required information."
1227
  msgstr ""
1228
 
1229
- #: src/addons/multisite.php:576
1230
  msgid "Read more..."
1231
  msgstr "আরও পড়ুন..."
1232
 
1233
- #: src/addons/multisite.php:567
1234
  msgid "may include some site-wide data"
1235
  msgstr ""
1236
 
1237
- #: src/addons/multisite.php:562
1238
  msgid "All sites"
1239
  msgstr ""
1240
 
1241
- #: src/addons/multisite.php:558
1242
  msgid "Which site to restore"
1243
  msgstr ""
1244
 
@@ -1283,15 +1381,15 @@ msgstr ""
1283
  msgid "Call WordPress action:"
1284
  msgstr ""
1285
 
1286
- #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr ""
1289
 
1290
- #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr ""
1293
 
1294
- #: src/templates/wp-admin/settings/form-contents.php:169
1295
  msgid "File Options"
1296
  msgstr ""
1297
 
@@ -1319,51 +1417,51 @@ msgstr ""
1319
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1320
  msgstr ""
1321
 
1322
- #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr ""
1325
 
1326
- #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr ""
1329
 
1330
- #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr ""
1333
 
1334
- #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr "সেটিংস"
1337
 
1338
- #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr ""
1341
 
1342
- #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr ""
1345
 
1346
- #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr ""
1349
 
1350
- #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr ""
1353
 
1354
- #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr ""
1357
 
1358
- #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr ""
1361
 
1362
- #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr ""
1365
 
1366
- #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr ""
1369
 
@@ -1371,24 +1469,24 @@ msgstr ""
1371
  msgid "Premium / Extensions"
1372
  msgstr ""
1373
 
1374
- #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr ""
1377
 
1378
- #: src/addons/morefiles.php:55, src/admin.php:720
1379
  msgctxt "(verb)"
1380
  msgid "Download"
1381
  msgstr ""
1382
 
1383
- #: src/admin.php:645
1384
  msgid "You have chosen to backup files, but no file entities have been selected"
1385
  msgstr ""
1386
 
1387
- #: src/admin.php:546
1388
  msgid "Extensions"
1389
  msgstr ""
1390
 
1391
- #: src/admin.php:538, src/templates/wp-admin/settings/tab-bar.php:8
1392
  msgid "Advanced Tools"
1393
  msgstr ""
1394
 
@@ -1470,71 +1568,71 @@ msgstr ""
1470
  msgid "Standard"
1471
  msgstr ""
1472
 
1473
- #: src/addons/azure.php:563
1474
  msgid "container"
1475
  msgstr ""
1476
 
1477
- #: src/addons/azure.php:563
1478
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1479
  msgstr ""
1480
 
1481
- #: src/addons/azure.php:562
1482
  msgid "optional"
1483
  msgstr ""
1484
 
1485
- #: src/addons/azure.php:562
1486
  msgid "Prefix"
1487
  msgstr ""
1488
 
1489
- #: src/addons/azure.php:557
1490
  msgid "See Microsoft's guidelines on container naming by following this link."
1491
  msgstr ""
1492
 
1493
- #: src/addons/azure.php:557
1494
  msgid "Enter the path of the %s you wish to use here."
1495
  msgstr ""
1496
 
1497
- #: src/addons/azure.php:546
1498
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1499
  msgstr ""
1500
 
1501
- #: src/addons/azure.php:545
1502
  msgid "Account Name"
1503
  msgstr ""
1504
 
1505
- #: src/addons/azure.php:545, src/addons/azure.php:549
1506
  msgid "Azure"
1507
  msgstr ""
1508
 
1509
- #: src/addons/azure.php:541
1510
  msgid "Create Azure credentials in your Azure developer console."
1511
  msgstr ""
1512
 
1513
- #: src/addons/azure.php:489
1514
  msgid "Could not create the container"
1515
  msgstr ""
1516
 
1517
- #: src/addons/azure.php:352
1518
  msgid "Could not access container"
1519
  msgstr ""
1520
 
1521
- #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr ""
1524
 
1525
- #: src/backup.php:1579
1526
  msgid "the options table was not found"
1527
  msgstr ""
1528
 
1529
- #: src/backup.php:1577
1530
  msgid "no options or sitemeta table was found"
1531
  msgstr ""
1532
 
1533
- #: src/backup.php:1577, src/backup.php:1579
1534
  msgid "The database backup appears to have failed"
1535
  msgstr ""
1536
 
1537
- #: src/backup.php:1449
1538
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1539
  msgstr ""
1540
 
@@ -1647,35 +1745,35 @@ msgstr ""
1647
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1648
  msgstr ""
1649
 
1650
- #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr ""
1653
 
1654
- #: src/admin.php:733
1655
  msgid "Processing..."
1656
  msgstr ""
1657
 
1658
- #: src/admin.php:731
1659
  msgid "For backups older than"
1660
  msgstr ""
1661
 
1662
- #: src/admin.php:730
1663
  msgid "week(s)"
1664
  msgstr ""
1665
 
1666
- #: src/admin.php:729
1667
  msgid "hour(s)"
1668
  msgstr ""
1669
 
1670
- #: src/admin.php:728
1671
  msgid "day(s)"
1672
  msgstr ""
1673
 
1674
- #: src/admin.php:727
1675
  msgid "in the month"
1676
  msgstr ""
1677
 
1678
- #: src/admin.php:726
1679
  msgid "day"
1680
  msgstr ""
1681
 
@@ -1687,11 +1785,11 @@ msgstr ""
1687
  msgid "Add an additional retention rule..."
1688
  msgstr ""
1689
 
1690
- #: src/restorer.php:2191
1691
  msgid "This database needs to be deployed on MySQL version %s or later."
1692
  msgstr ""
1693
 
1694
- #: src/restorer.php:2191
1695
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1696
  msgstr ""
1697
 
@@ -1699,15 +1797,15 @@ msgstr ""
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr ""
1701
 
1702
- #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr ""
1705
 
1706
- #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr ""
1709
 
1710
- #: src/admin.php:2291
1711
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1712
  msgstr ""
1713
 
@@ -1735,11 +1833,11 @@ msgstr "সার্ভার সাইড এনক্রিপশন"
1735
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1736
  msgstr ""
1737
 
1738
- #: src/admin.php:981
1739
  msgid "Go to the remote storage settings in order to connect."
1740
  msgstr ""
1741
 
1742
- #: src/admin.php:981
1743
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1744
  msgstr ""
1745
 
@@ -1747,19 +1845,19 @@ msgstr ""
1747
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1748
  msgstr "পেমেন্ট ইউএস ডলার, ইউরো বা GB pounds sterling এর মাধ্যমে কার্ড বা পেপ্যাল এর দ্বারা করতে হবে।"
1749
 
1750
- #: src/admin.php:703
1751
  msgid "Update quota count"
1752
  msgstr " প্রাপ্য সংখ্যা হালনাগাদ"
1753
 
1754
- #: src/admin.php:702
1755
  msgid "Counting..."
1756
  msgstr "গণনা করা হচ্ছে..."
1757
 
1758
- #: src/admin.php:701
1759
  msgid "Disconnecting..."
1760
  msgstr "সংযোগ বিচ্ছিন্ন করা হচ্ছে..."
1761
 
1762
- #: src/admin.php:699
1763
  msgid "Connecting..."
1764
  msgstr "সংযোগ করা হচ্ছে..."
1765
 
@@ -1785,7 +1883,7 @@ msgstr "আপনি এখান থেকে আরও প্রাপ্য
1785
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1786
  msgstr "%s ইরোর: আপনার যথেষ্ট প্রাপ্য(%s) নেই আর্কাইভটি(%s) আপলোড করার জন্য।"
1787
 
1788
- #: src/admin.php:700, src/methods/updraftvault.php:388
1789
  msgid "Disconnect"
1790
  msgstr "সংযোগ বিচ্ছিন্ন করুন"
1791
 
@@ -1817,7 +1915,8 @@ msgstr "সাহায্যের জন্য এখানে যান"
1817
  msgid "E-mail"
1818
  msgstr "ই-মেইল"
1819
 
1820
- #: src/methods/updraftvault.php:338, src/methods/updraftvault.php:353
 
1821
  msgid "Back..."
1822
  msgstr "ফিরে চলুন..."
1823
 
@@ -1830,7 +1929,7 @@ msgstr "সাবস্ক্রিপশন যেকোনো সময় বা
1830
  msgid "%s per quarter"
1831
  msgstr "%s প্রতি তিন মাসে"
1832
 
1833
- #: src/central/bootstrap.php:549, src/methods/updraftvault.php:305,
1834
  #: src/methods/updraftvault.php:335
1835
  msgid "Read more about it here."
1836
  msgstr "এইটি সম্পর্কে আরও পড়ুন এখানে।"
@@ -1875,12 +1974,12 @@ msgstr "আপনার UpdraftPlus Premium কেনার এক বছর অ
1875
  msgid "Updraft Vault"
1876
  msgstr "ভল্ট আপডেট করুন"
1877
 
1878
- #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
- #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr "ডিলিট ব্যর্থ:"
1882
 
1883
- #: src/backup.php:3043
1884
  msgid "The zip engine returned the message: %s."
1885
  msgstr "Zip engine টি এই বার্তা নিয়ে এসেছে: %s।"
1886
 
@@ -1904,7 +2003,7 @@ msgstr "ডাউনলোড এর অনুমতি দিন"
1904
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1905
  msgstr ""
1906
 
1907
- #: src/addons/migrator.php:1747, src/admin.php:709
1908
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1909
  msgstr ""
1910
 
@@ -1932,11 +2031,11 @@ msgstr ""
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr ""
1934
 
1935
- #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr ""
1938
 
1939
- #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr "চাবি সফলভাবে তৈরি করা হয়েছে।"
1942
 
@@ -1976,7 +2075,7 @@ msgstr "ব্যাকআপ তৈরি করেছেন %s"
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
1978
 
1979
- #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
1982
 
@@ -1996,23 +2095,23 @@ msgstr ""
1996
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1997
  msgstr ""
1998
 
1999
- #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
2002
 
2003
- #: src/admin.php:713
2004
  msgid "Deleting..."
2005
  msgstr "মুছে ফেলা হচ্ছে..."
2006
 
2007
- #: src/admin.php:712
2008
  msgid "key name"
2009
  msgstr "চাবির(কি) নাম"
2010
 
2011
- #: src/admin.php:710
2012
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2013
  msgstr "এই চাবিকাঠির একটি নাম দিন (e.g. indicate the site it is for):"
2014
 
2015
- #: src/admin.php:707
2016
  msgid "Creating..."
2017
  msgstr "তৈরি করা হচ্ছে..."
2018
 
@@ -2036,11 +2135,11 @@ msgstr ""
2036
  msgid "Or, send a backup to another site"
2037
  msgstr "অথবা, ব্যাকআপ অন্য একটি সাইটে পাঠান"
2038
 
2039
- #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr "পাঠান"
2042
 
2043
- #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr ""
2046
 
@@ -2105,15 +2204,15 @@ msgstr ""
2105
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2106
  msgstr ""
2107
 
2108
- #: src/admin.php:706
2109
  msgid "Resetting..."
2110
  msgstr ""
2111
 
2112
- #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr "সাইট যুক্ত করুন"
2115
 
2116
- #: src/admin.php:704
2117
  msgid "Adding..."
2118
  msgstr "যুক্ত করা হচ্ছে..."
2119
 
@@ -2121,7 +2220,7 @@ msgstr "যুক্ত করা হচ্ছে..."
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr ""
2123
 
2124
- #: src/restorer.php:2193
2125
  msgid "To use this backup, your database server needs to support the %s character set."
2126
  msgstr ""
2127
 
@@ -2149,7 +2248,7 @@ msgstr ""
2149
  msgid "To restore using any of the backup sets below, press the button."
2150
  msgstr ""
2151
 
2152
- #: src/admin.php:696, src/admin.php:722, src/admin.php:723
2153
  msgid "You have made changes to your settings, and not saved."
2154
  msgstr ""
2155
 
@@ -2161,7 +2260,7 @@ msgstr ""
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr ""
2163
 
2164
- #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr ""
@@ -2174,7 +2273,7 @@ msgstr ""
2174
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2175
  msgstr ""
2176
 
2177
- #: src/addons/azure.php:533
2178
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2179
  msgstr ""
2180
 
@@ -2340,7 +2439,7 @@ msgstr ""
2340
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2341
  msgstr ""
2342
 
2343
- #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr ""
2346
 
@@ -2415,7 +2514,7 @@ msgstr ""
2415
  msgid "(at same time as files backup)"
2416
  msgstr ""
2417
 
2418
- #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr ""
2421
 
@@ -2464,17 +2563,17 @@ msgstr "আপনি বর্তমানে wordpress.org থেকে প্
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr ""
2466
 
2467
- #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
- #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr "%s ত্রুটি: ইনিশিয়ালাইজ করতে ব্যর্থ"
2471
 
2472
- #: src/templates/wp-admin/settings/form-contents.php:220
2473
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2474
  msgid "or"
2475
  msgstr "অথবা"
2476
 
2477
- #: src/admin.php:690
2478
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2479
  msgstr ""
2480
 
@@ -2497,20 +2596,20 @@ msgctxt "Keystone and swauth are technical terms which cannot be translated"
2497
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2498
  msgstr ""
2499
 
2500
- #: src/templates/wp-admin/settings/form-contents.php:290
2501
  msgid "your site's admin address"
2502
  msgstr ""
2503
 
2504
- #: src/templates/wp-admin/settings/form-contents.php:290
2505
  msgid "Check this box to have a basic report sent to"
2506
  msgstr ""
2507
 
2508
- #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr ""
2512
 
2513
- #: src/restorer.php:2170
2514
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
2515
  msgid "An error (%s) occurred:"
2516
  msgstr ""
@@ -2523,7 +2622,7 @@ msgstr "লক সেটিং পরিবর্তন করুন"
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr ""
2525
 
2526
- #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr ""
2529
 
@@ -2532,7 +2631,7 @@ msgid "Database decryption phrase"
2532
  msgstr "ডাটাবেস ডিক্রিপশন শব্দগুচ্ছ"
2533
 
2534
  #: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
2535
- #: src/admin.php:695
2536
  msgid "Automatic backup before update"
2537
  msgstr "আপডেট করার আগে স্বয়ংক্রিয় ব্যাকআপ"
2538
 
@@ -2617,7 +2716,7 @@ msgstr ""
2617
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2618
  msgstr ""
2619
 
2620
- #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr ""
2623
 
@@ -2634,7 +2733,7 @@ msgstr ""
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr ""
2636
 
2637
- #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr ""
2640
 
@@ -2646,28 +2745,28 @@ msgstr ""
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr ""
2648
 
2649
- #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr ""
2653
 
2654
- #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr ""
2657
 
2658
- #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr ""
2661
 
2662
- #: src/backup.php:3049
2663
  msgid "check your log for more details."
2664
  msgstr ""
2665
 
2666
- #: src/backup.php:3047
2667
  msgid "your web hosting account appears to be full; please see: %s"
2668
  msgstr ""
2669
 
2670
- #: src/backup.php:3045
2671
  msgid "A zip error occurred"
2672
  msgstr ""
2673
 
@@ -2695,11 +2794,11 @@ msgstr ""
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr ""
2697
 
2698
- #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr ""
2701
 
2702
- #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr ""
2705
 
@@ -2736,19 +2835,19 @@ msgstr ""
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr ""
2738
 
2739
- #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr ""
2742
 
2743
- #: src/class-updraftplus.php:4781
2744
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2745
  msgstr ""
2746
 
2747
- #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr ""
2750
 
2751
- #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr ""
2754
 
@@ -2777,7 +2876,7 @@ msgstr ""
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
- #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr "আমি কেন এটি দেখছি?"
2783
 
@@ -2789,15 +2888,15 @@ msgstr ""
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr ""
2791
 
2792
- #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr "ব্যাকআপ শুরু করুন"
2795
 
2796
- #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr ""
2799
 
2800
- #: src/admin.php:2964
2801
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2802
  msgstr ""
2803
 
@@ -2805,11 +2904,11 @@ msgstr ""
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr ""
2807
 
2808
- #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
2811
 
2812
- #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr ""
2815
 
@@ -2829,15 +2928,15 @@ msgstr ""
2829
  msgid "Memory limit"
2830
  msgstr ""
2831
 
2832
- #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr ""
2835
 
2836
- #: src/backup.php:862
2837
  msgid "Incremental"
2838
  msgstr ""
2839
 
2840
- #: src/backup.php:862
2841
  msgid "Full backup"
2842
  msgstr ""
2843
 
@@ -2853,7 +2952,7 @@ msgstr ""
2853
  msgid "Backup succeeded"
2854
  msgstr ""
2855
 
2856
- #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr ""
@@ -2892,15 +2991,15 @@ msgstr ""
2892
  msgid "search term"
2893
  msgstr ""
2894
 
2895
- #: src/restorer.php:2198
2896
  msgid "Too many database errors have occurred - aborting"
2897
  msgstr ""
2898
 
2899
- #: src/backup.php:928
2900
  msgid "read more at %s"
2901
  msgstr ""
2902
 
2903
- #: src/backup.php:928
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr ""
2906
 
@@ -2908,11 +3007,11 @@ msgstr ""
2908
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2909
  msgstr ""
2910
 
2911
- #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr ""
2914
 
2915
- #: src/templates/wp-admin/settings/form-contents.php:181
2916
  msgid "Database Options"
2917
  msgstr ""
2918
 
@@ -2928,30 +3027,30 @@ msgstr ""
2928
  msgid "Free disk space in account:"
2929
  msgstr ""
2930
 
2931
- #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr ""
2934
 
2935
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
  #: src/includes/deprecated-actions.php:29,
2937
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr ""
2941
 
2942
- #: src/admin.php:514, src/templates/wp-admin/settings/tab-bar.php:5
2943
  msgid "Current Status"
2944
  msgstr ""
2945
 
2946
- #: src/admin.php:937
2947
  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."
2948
  msgstr ""
2949
 
2950
- #: src/admin.php:937
2951
  msgid "To make a backup, just press the Backup Now button."
2952
  msgstr ""
2953
 
2954
- #: src/admin.php:937
2955
  msgid "Welcome to UpdraftPlus!"
2956
  msgstr ""
2957
 
@@ -3023,7 +3122,7 @@ msgstr ""
3023
  msgid "user"
3024
  msgstr ""
3025
 
3026
- #: src/class-updraftplus.php:1690
3027
  msgid "External database (%s)"
3028
  msgstr ""
3029
 
@@ -3040,31 +3139,31 @@ msgstr ""
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr ""
3042
 
3043
- #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr ""
3046
 
3047
- #: src/templates/wp-admin/settings/form-contents.php:334
3048
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
3049
  msgstr ""
3050
 
3051
- #: src/templates/wp-admin/settings/form-contents.php:263
3052
  msgid "Back up more databases"
3053
  msgstr ""
3054
 
3055
- #: src/templates/wp-admin/settings/form-contents.php:222
3056
  msgid "First, enter the decryption key"
3057
  msgstr ""
3058
 
3059
- #: src/templates/wp-admin/settings/form-contents.php:204
3060
  msgid "You can manually decrypt an encrypted database here."
3061
  msgstr ""
3062
 
3063
- #: src/templates/wp-admin/settings/form-contents.php:190
3064
  msgid "It can also backup external databases."
3065
  msgstr ""
3066
 
3067
- #: src/templates/wp-admin/settings/form-contents.php:190
3068
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3069
  msgstr ""
3070
 
@@ -3072,7 +3171,7 @@ msgstr ""
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr ""
3074
 
3075
- #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr ""
3078
 
@@ -3080,16 +3179,16 @@ msgstr ""
3080
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
3081
  msgstr ""
3082
 
3083
- #: src/restorer.php:1757, src/restorer.php:2139, src/restorer.php:2180,
3084
- #: src/restorer.php:2193
3085
  msgid "An error occurred on the first %s command - aborting run"
3086
  msgstr ""
3087
 
3088
- #: src/addons/moredatabase.php:105, src/backup.php:1390
3089
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3090
  msgstr ""
3091
 
3092
- #: src/backup.php:1390
3093
  msgid "database connection attempt failed."
3094
  msgstr ""
3095
 
@@ -3101,7 +3200,7 @@ msgstr ""
3101
  msgid "In %s, path names are case sensitive."
3102
  msgstr ""
3103
 
3104
- #: src/addons/azure.php:563, src/addons/google-enhanced.php:85,
3105
  #: src/addons/onedrive.php:983
3106
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3107
  msgstr ""
@@ -3115,7 +3214,7 @@ msgstr ""
3115
  msgid "Enter the path of the %s folder you wish to use here."
3116
  msgstr ""
3117
 
3118
- #: src/addons/azure.php:556, src/methods/openstack2.php:164
3119
  msgid "Container"
3120
  msgstr ""
3121
 
@@ -3176,30 +3275,30 @@ msgstr ""
3176
  msgid "Authenticate with %s"
3177
  msgstr ""
3178
 
3179
- #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr ""
3182
 
3183
- #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:496
3184
  msgid "Region: %s"
3185
  msgstr ""
3186
 
3187
- #: src/methods/openstack-base.php:490
3188
  msgid "%s error - we accessed the container, but failed to create a file within it"
3189
  msgstr ""
3190
 
3191
- #: src/methods/openstack-base.php:406
3192
  msgid "The %s object was not found"
3193
  msgstr ""
3194
 
3195
- #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:329,
3196
- #: src/methods/openstack-base.php:398
3197
  msgid "Could not access %s container"
3198
  msgstr ""
3199
 
3200
  #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:116,
3201
- #: src/methods/openstack-base.php:123, src/methods/openstack-base.php:321,
3202
- #: src/methods/openstack-base.php:386
3203
  msgid "%s error - failed to access the container"
3204
  msgstr ""
3205
 
@@ -3261,7 +3360,7 @@ msgstr ""
3261
 
3262
  #: src/addons/migrator.php:391,
3263
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
- #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr ""
3267
 
@@ -3269,7 +3368,7 @@ msgstr ""
3269
  msgid "Failed to unpack the archive"
3270
  msgstr ""
3271
 
3272
- #: src/class-updraftplus.php:1225
3273
  msgid "Error - failed to download the file"
3274
  msgstr ""
3275
 
@@ -3293,8 +3392,8 @@ msgstr ""
3293
  msgid "password/key"
3294
  msgstr ""
3295
 
3296
- #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr ""
3300
 
@@ -3310,24 +3409,24 @@ msgstr ""
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr ""
3312
 
3313
- #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr ""
3316
 
3317
- #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr ""
3320
 
3321
- #: src/addons/importer.php:276, src/admin.php:3470,
3322
- #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr ""
3325
 
3326
- #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr ""
3329
 
3330
- #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr ""
3333
 
@@ -3339,31 +3438,32 @@ msgstr ""
3339
  msgid "Upload backup files"
3340
  msgstr ""
3341
 
3342
- #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr ""
3345
 
3346
- #: src/admin.php:966
3347
  msgid "Read this page for a guide to possible causes and how to fix it."
3348
  msgstr ""
3349
 
3350
- #: src/admin.php:966
3351
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3352
  msgstr ""
3353
 
3354
- #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr ""
3357
 
3358
- #: src/admin.php:675
3359
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
3360
  msgstr ""
3361
 
3362
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
 
3363
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3364
  msgstr ""
3365
 
3366
- #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr ""
@@ -3384,16 +3484,16 @@ msgstr ""
3384
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3385
  msgstr ""
3386
 
3387
- #: src/methods/cloudfiles.php:246, src/methods/dropbox.php:294,
3388
- #: src/methods/openstack-base.php:111
3389
  msgid "No settings were found"
3390
  msgstr ""
3391
 
3392
- #: src/class-updraftplus.php:3100
3393
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
3394
  msgstr ""
3395
 
3396
- #: src/admin.php:642
3397
  msgid "Rescanning remote and local storage for backup sets..."
3398
  msgstr ""
3399
 
@@ -3415,24 +3515,24 @@ msgstr ""
3415
  msgid "Remove"
3416
  msgstr ""
3417
 
3418
- #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr ""
3421
 
3422
- #: src/templates/wp-admin/settings/form-contents.php:334
3423
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3424
  msgstr ""
3425
 
3426
- #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3428
  msgstr ""
3429
 
3430
- #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr ""
3434
 
3435
- #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr ""
3438
 
@@ -3448,7 +3548,7 @@ msgstr ""
3448
  msgid "regular non-encrypted FTP"
3449
  msgstr ""
3450
 
3451
- #: src/restorer.php:1665
3452
  msgid "Backup created by:"
3453
  msgstr ""
3454
 
@@ -3502,15 +3602,15 @@ msgstr ""
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr ""
3504
 
3505
- #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr ""
3508
 
3509
- #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr ""
3512
 
3513
- #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr ""
3516
 
@@ -3518,15 +3618,15 @@ msgstr ""
3518
  msgid "Constants"
3519
  msgstr ""
3520
 
3521
- #: src/backup.php:1627
3522
  msgid "Failed to open database file for reading:"
3523
  msgstr ""
3524
 
3525
- #: src/backup.php:1438
3526
  msgid "No database tables found"
3527
  msgstr ""
3528
 
3529
- #: src/backup.php:1436
3530
  msgid "please wait for the rescheduled attempt"
3531
  msgstr ""
3532
 
@@ -3543,15 +3643,15 @@ msgstr ""
3543
  msgid "Errors occurred:"
3544
  msgstr ""
3545
 
3546
- #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr ""
3549
 
3550
- #: src/templates/wp-admin/settings/form-contents.php:378
3551
  msgid "See this FAQ also."
3552
  msgstr ""
3553
 
3554
- #: src/templates/wp-admin/settings/form-contents.php:142
3555
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
3556
  msgstr ""
3557
 
@@ -3567,7 +3667,7 @@ msgstr ""
3567
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3568
  msgstr ""
3569
 
3570
- #: src/admin.php:941, src/class-updraftplus.php:744
3571
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3572
  msgstr ""
3573
 
@@ -3580,11 +3680,11 @@ msgstr ""
3580
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3581
  msgstr ""
3582
 
3583
- #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr ""
3586
 
3587
- #: src/restorer.php:2033
3588
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
3589
  msgstr ""
3590
 
@@ -3734,8 +3834,8 @@ msgid "Accounts created at rackspacecloud.com are US accounts; accounts created
3734
  msgstr ""
3735
 
3736
  #: src/addons/cloudfiles-enhanced.php:139, src/addons/s3-enhanced.php:204,
3737
- #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:449,
3738
- #: src/methods/openstack-base.php:451, src/methods/openstack-base.php:472,
3739
  #: src/methods/openstack2.php:33
3740
  msgid "Authorisation failed (check your credentials)"
3741
  msgstr ""
@@ -3744,35 +3844,35 @@ msgstr ""
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr ""
3746
 
3747
- #: src/admin.php:689, src/central/bootstrap.php:520
3748
  msgid "Create"
3749
  msgstr ""
3750
 
3751
- #: src/admin.php:651
3752
  msgid "Trying..."
3753
  msgstr ""
3754
 
3755
- #: src/admin.php:650
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr ""
3758
 
3759
- #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr ""
3762
 
3763
- #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr ""
3766
 
3767
- #: src/admin.php:2585
3768
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3769
  msgstr ""
3770
 
3771
- #: src/restorer.php:1732
3772
  msgid "Split line to avoid exceeding maximum packet size"
3773
  msgstr ""
3774
 
3775
- #: src/restorer.php:1612
3776
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
3777
  msgstr ""
3778
 
@@ -3804,11 +3904,11 @@ msgstr ""
3804
  msgid "Email reports"
3805
  msgstr ""
3806
 
3807
- #: src/class-updraftplus.php:1698, src/class-updraftplus.php:1703
3808
  msgid "%s checksum: %s"
3809
  msgstr ""
3810
 
3811
- #: src/class-updraftplus.php:1671, src/class-updraftplus.php:1673
3812
  msgid "files: %s"
3813
  msgstr ""
3814
 
@@ -3820,7 +3920,7 @@ msgstr ""
3820
  msgid "Debugging information"
3821
  msgstr ""
3822
 
3823
- #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr ""
3826
 
@@ -3865,7 +3965,7 @@ msgstr ""
3865
  msgid "%s authentication"
3866
  msgstr ""
3867
 
3868
- #: src/addons/onedrive.php:718, src/class-updraftplus.php:429,
3869
  #: src/methods/dropbox.php:176, src/methods/dropbox.php:598,
3870
  #: src/methods/dropbox.php:625, src/methods/dropbox.php:638,
3871
  #: src/methods/dropbox.php:784
@@ -3880,7 +3980,7 @@ msgstr ""
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
- #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
@@ -3892,85 +3992,85 @@ msgstr ""
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr ""
3894
 
3895
- #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
  #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3900
- #: src/templates/wp-admin/settings/form-contents.php:292
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
- #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3908
  #: src/addons/reporting.php:455, src/addons/reporting.php:455,
3909
- #: src/admin.php:640
3910
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3911
  msgstr ""
3912
 
3913
- #: src/addons/reporting.php:455, src/admin.php:639
3914
  msgid "When the Email storage method is enabled, also send the entire backup"
3915
  msgstr ""
3916
 
3917
- #: src/addons/reporting.php:170, src/backup.php:963
3918
  msgid "Latest status:"
3919
  msgstr ""
3920
 
3921
- #: src/backup.php:962
3922
  msgid "Backup contains:"
3923
  msgstr ""
3924
 
3925
- #: src/backup.php:919
3926
  msgid "Backed up: %s"
3927
  msgstr ""
3928
 
3929
- #: src/addons/reporting.php:253, src/backup.php:913
3930
  msgid "The log file has been attached to this email."
3931
  msgstr ""
3932
 
3933
- #: src/backup.php:877
3934
  msgid "Unknown/unexpected error - please raise a support request"
3935
  msgstr ""
3936
 
3937
- #: src/backup.php:874
3938
  msgid "Database only (files were not part of this particular schedule)"
3939
  msgstr ""
3940
 
3941
- #: src/backup.php:874
3942
  msgid "Database (files backup has not completed)"
3943
  msgstr ""
3944
 
3945
- #: src/backup.php:871
3946
  msgid "Files only (database was not part of this particular schedule)"
3947
  msgstr ""
3948
 
3949
- #: src/backup.php:871
3950
  msgid "Files (database backup has not completed)"
3951
  msgstr ""
3952
 
3953
- #: src/admin.php:295, src/backup.php:869
3954
  msgid "Files and database"
3955
  msgstr ""
3956
 
3957
- #: src/options.php:191
3958
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3959
  msgstr ""
3960
 
3961
- #: src/options.php:191
3962
  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>."
3963
  msgstr ""
3964
 
3965
- #: src/options.php:191
3966
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3967
  msgstr ""
3968
 
3969
- #: src/options.php:191
3970
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3971
  msgstr ""
3972
 
3973
- #: src/options.php:191
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr ""
3976
 
@@ -4036,21 +4136,21 @@ msgid "We failed to successfully connect to UpdraftPlus.Com"
4036
  msgstr ""
4037
 
4038
  #: src/methods/email.php:76,
4039
- #: src/templates/wp-admin/settings/form-contents.php:273,
4040
  #: src/templates/wp-admin/settings/tab-addons.php:199,
4041
  #: src/templates/wp-admin/settings/tab-addons.php:200
4042
  msgid "Reporting"
4043
  msgstr ""
4044
 
4045
- #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr ""
4048
 
4049
- #: src/addons/reporting.php:453, src/admin.php:638
4050
  msgid "Send a report only when there are warnings/errors"
4051
  msgstr ""
4052
 
4053
- #: src/restorer.php:1676
4054
  msgid "Content URL:"
4055
  msgstr ""
4056
 
@@ -4058,15 +4158,15 @@ msgstr ""
4058
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4059
  msgstr ""
4060
 
4061
- #: src/templates/wp-admin/settings/form-contents.php:176
4062
  msgid "See also the \"More Files\" add-on from our shop."
4063
  msgstr ""
4064
 
4065
- #: src/backup.php:3036, src/class-updraftplus.php:757
4066
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4067
  msgstr ""
4068
 
4069
- #: src/class-updraftplus.php:741
4070
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4071
  msgstr ""
4072
 
@@ -4202,23 +4302,23 @@ msgstr ""
4202
  msgid "Drop backup files here"
4203
  msgstr ""
4204
 
4205
- #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr ""
4208
 
4209
- #: src/admin.php:649
4210
  msgid "The web server returned an error code (try again, or check your web server logs)"
4211
  msgstr ""
4212
 
4213
- #: src/admin.php:647
4214
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4215
  msgstr ""
4216
 
4217
- #: src/admin.php:644
4218
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4219
  msgstr ""
4220
 
4221
- #: src/restorer.php:1670
4222
  msgid "Site home:"
4223
  msgstr ""
4224
 
@@ -4234,20 +4334,20 @@ msgstr ""
4234
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4235
  msgstr ""
4236
 
4237
- #: src/addons/azure.php:359, src/methods/stream-base.php:124,
4238
  #: src/methods/stream-base.php:129
4239
  msgid "Upload failed"
4240
  msgstr ""
4241
 
4242
- #: src/templates/wp-admin/settings/form-contents.php:133
4243
  msgid "You can send a backup to more than one destination with an add-on."
4244
  msgstr ""
4245
 
4246
- #: src/admin.php:2803
4247
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4248
  msgstr ""
4249
 
4250
- #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr ""
4253
 
@@ -4284,97 +4384,97 @@ msgstr ""
4284
  msgid "Backup is of: %s."
4285
  msgstr ""
4286
 
4287
- #: src/admin.php:737
4288
  msgid "%s settings test result:"
4289
  msgstr ""
4290
 
4291
- #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr ""
4294
 
4295
- #: src/admin.php:3542
4296
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4297
  msgstr ""
4298
 
4299
- #: src/templates/wp-admin/settings/form-contents.php:361
4300
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4301
  msgstr ""
4302
 
4303
- #: src/templates/wp-admin/settings/form-contents.php:361
4304
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4305
  msgstr ""
4306
 
4307
- #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr ""
4310
 
4311
- #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr ""
4314
 
4315
- #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr ""
4318
 
4319
- #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
- #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr ""
4324
 
4325
- #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr ""
4328
 
4329
- #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr ""
4332
 
4333
- #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr ""
4336
 
4337
- #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr ""
4340
 
4341
- #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr ""
4344
 
4345
- #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr ""
4348
 
4349
- #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr ""
4352
 
4353
- #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr ""
4356
 
4357
- #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr ""
4360
 
4361
- #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr ""
4364
 
4365
- #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr ""
4368
 
4369
- #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr ""
4372
 
4373
- #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr ""
4376
 
4377
- #: src/admin.php:945
4378
  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."
4379
  msgstr ""
4380
 
@@ -4390,11 +4490,11 @@ msgstr ""
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr ""
4392
 
4393
- #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr ""
4396
 
4397
- #: src/class-updraftplus.php:1988
4398
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4399
  msgstr ""
4400
 
@@ -4404,11 +4504,11 @@ msgstr ""
4404
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4405
  msgstr ""
4406
 
4407
- #: src/admin.php:2336
4408
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4409
  msgstr ""
4410
 
4411
- #: src/addons/autobackup.php:1085, src/admin.php:691
4412
  msgid "Proceed with update"
4413
  msgstr ""
4414
 
@@ -4483,88 +4583,88 @@ msgstr ""
4483
  msgid "Support"
4484
  msgstr "সহায়তা"
4485
 
4486
- #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr ""
4489
 
4490
- #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr ""
4493
 
4494
- #: src/class-updraftplus.php:4774
4495
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4496
  msgstr ""
4497
 
4498
- #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr ""
4501
 
4502
- #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr ""
4505
 
4506
- #: src/addons/autobackup.php:1053, src/admin.php:778,
4507
  #: src/includes/updraftplus-notices.php:171
4508
  msgid "Be safe with an automatic backup"
4509
  msgstr ""
4510
 
4511
- #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr ""
4514
 
4515
- #: src/admin.php:685
4516
  msgid "The file was uploaded."
4517
  msgstr ""
4518
 
4519
- #: src/admin.php:684
4520
  msgid "Unknown server response status:"
4521
  msgstr ""
4522
 
4523
- #: src/admin.php:683
4524
  msgid "Unknown server response:"
4525
  msgstr ""
4526
 
4527
- #: src/admin.php:682
4528
  msgid "This decryption key will be attempted:"
4529
  msgstr ""
4530
 
4531
- #: src/admin.php:681
4532
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4533
  msgstr ""
4534
 
4535
- #: src/admin.php:680
4536
  msgid "Upload error"
4537
  msgstr ""
4538
 
4539
- #: src/admin.php:679
4540
  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)."
4541
  msgstr ""
4542
 
4543
- #: src/admin.php:678
4544
  msgid "Upload error:"
4545
  msgstr ""
4546
 
4547
- #: src/admin.php:677
4548
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4549
  msgstr ""
4550
 
4551
- #: src/admin.php:668
4552
  msgid "Download to your computer"
4553
  msgstr ""
4554
 
4555
- #: src/admin.php:667
4556
  msgid "Delete from your web server"
4557
  msgstr ""
4558
 
4559
- #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr ""
4562
 
4563
- #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr ""
4566
 
4567
- #: src/templates/wp-admin/settings/form-contents.php:338
4568
  msgid "Split archives every:"
4569
  msgstr ""
4570
 
@@ -4572,15 +4672,15 @@ msgstr ""
4572
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4573
  msgstr ""
4574
 
4575
- #: src/admin.php:658
4576
  msgid "Warnings:"
4577
  msgstr ""
4578
 
4579
- #: src/admin.php:657
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr ""
4582
 
4583
- #: src/admin.php:2049
4584
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4585
  msgstr ""
4586
 
@@ -4616,7 +4716,7 @@ msgstr ""
4616
  msgid "No such backup set exists"
4617
  msgstr ""
4618
 
4619
- #: src/admin.php:1291
4620
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4621
  msgstr ""
4622
 
@@ -4624,7 +4724,7 @@ msgstr ""
4624
  msgid "Moving unpacked backup into place..."
4625
  msgstr ""
4626
 
4627
- #: src/backup.php:2742, src/backup.php:2996
4628
  msgid "Failed to open the zip file (%s) - %s"
4629
  msgstr ""
4630
 
@@ -4632,43 +4732,43 @@ msgstr ""
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr ""
4634
 
4635
- #: src/methods/s3.php:851
4636
  msgid "%s end-point"
4637
  msgstr ""
4638
 
4639
- #: src/methods/s3.php:813
4640
  msgid "... and many more!"
4641
  msgstr ""
4642
 
4643
- #: src/methods/s3generic.php:52, src/methods/s3generic.php:61
4644
  msgid "S3 (Compatible)"
4645
  msgstr ""
4646
 
4647
- #: src/admin.php:1205
4648
  msgid "File is not locally present - needs retrieving from remote storage"
4649
  msgstr ""
4650
 
4651
- #: src/admin.php:3810
4652
  msgid "Looking for %s archive: file name: %s"
4653
  msgstr ""
4654
 
4655
- #: src/admin.php:3771
4656
  msgid "Final checks"
4657
  msgstr ""
4658
 
4659
- #: src/templates/wp-admin/settings/form-contents.php:344
4660
  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)."
4661
  msgstr ""
4662
 
4663
- #: src/templates/wp-admin/settings/form-contents.php:219
4664
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4665
  msgstr ""
4666
 
4667
- #: src/admin.php:3162
4668
  msgid "Your wp-content directory server path: %s"
4669
  msgstr ""
4670
 
4671
- #: src/admin.php:674
4672
  msgid "Raw backup history"
4673
  msgstr ""
4674
 
@@ -4676,11 +4776,11 @@ msgstr ""
4676
  msgid "Show raw backup and file list"
4677
  msgstr ""
4678
 
4679
- #: src/admin.php:656
4680
  msgid "Processing files - please wait..."
4681
  msgstr ""
4682
 
4683
- #: src/admin.php:3956,
4684
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4685
  msgid "Please consult this FAQ for help on what to do about it."
4686
  msgstr ""
@@ -4689,11 +4789,11 @@ msgstr ""
4689
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4690
  msgstr ""
4691
 
4692
- #: src/class-updraftplus.php:4682
4693
  msgid "Failed to open database file."
4694
  msgstr ""
4695
 
4696
- #: src/admin.php:4382
4697
  msgid "Known backups (raw)"
4698
  msgstr ""
4699
 
@@ -4709,21 +4809,22 @@ msgstr ""
4709
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4710
  msgstr ""
4711
 
4712
- #: src/admin.php:3830
4713
  msgid "file is size:"
4714
  msgstr ""
4715
 
4716
  #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4717
- #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:945,
4718
- #: src/admin.php:2293, src/backup.php:3043, src/updraftplus.php:156
 
4719
  msgid "Go here for more information."
4720
  msgstr ""
4721
 
4722
- #: src/admin.php:655
4723
  msgid "Some files are still downloading or being processed - please wait."
4724
  msgstr ""
4725
 
4726
- #: src/class-updraftplus.php:4746, src/class-updraftplus.php:4764
4727
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4728
  msgstr ""
4729
 
@@ -4767,9 +4868,9 @@ msgstr ""
4767
  msgid "Error - no such file exists at %s"
4768
  msgstr ""
4769
 
4770
- #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4771
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4772
- #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:420,
4773
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4774
  #: src/methods/stream-base.php:285
4775
  msgid "%s Error"
@@ -4779,39 +4880,39 @@ msgstr ""
4779
  msgid "%s error - failed to upload file"
4780
  msgstr ""
4781
 
4782
- #: src/class-updraftplus.php:1117, src/methods/cloudfiles.php:223
4783
  msgid "%s error - failed to re-assemble chunks"
4784
  msgstr ""
4785
 
4786
  #: src/methods/cloudfiles.php:107, src/methods/cloudfiles.php:111,
4787
  #: src/methods/cloudfiles.php:252, src/methods/cloudfiles.php:298,
4788
  #: src/methods/cloudfiles.php:349, src/methods/cloudfiles.php:353,
4789