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
- #: 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 "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার 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: bn\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 "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
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 "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
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 "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
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 "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
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 "কি সাইজ: %d বিটস"
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 "ডিরেক্টরি খুলতে ব্যর্থ (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন): %s"
1035
 
1036
+ #: src/backup.php:2085
1037
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1038
  msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
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 "%s বাইটস"
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 "%s বিটস"
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 "সাইজঃ %s MB"
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 "UpdraftCentral (দূরনিয়ন্ত্রণ)"
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 "দয়া করে সঠিক URL প্রবেশ করান"
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 "পেমেন্ট ইউএস ডলার, ইউরো বা GB pounds sterling এর মাধ্যমে কার্ড বা পেপ্যাল এর দ্বারা করতে হবে।"
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 "%s ইরোর: আপনার যথেষ্ট প্রাপ্য(%s) নেই আর্কাইভটি(%s) আপলোড করার জন্য।"
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 "%s প্রতি তিন মাসে"
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 "Zip engine টি এই বার্তা নিয়ে এসেছে: %s।"
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 "এই চাবিকাঠির একটি নাম দিন (e.g. indicate the site it is for):"
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 "%s ত্রুটি: ইনিশিয়ালাইজ করতে ব্যর্থ"
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 "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
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 "UpdraftPlus নোটিশ:"
6600
 
6601
+ #: src/addons/multisite.php:65, src/addons/multisite.php:689,
6602
  #: src/options.php:50
6603
  msgid "UpdraftPlus Backups"
6604
  msgstr "UpdraftPlus ব্যাকআপসমূহ"
languages/updraftplus-bs_BA.po CHANGED
@@ -11,23 +11,146 @@ msgstr ""
11
  "Language: bs_BA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
- #: src/class-updraftplus.php:4741
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
16
  msgstr ""
17
 
18
- #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
  msgid "the migrator add-on"
20
  msgstr ""
21
 
22
- #: src/class-updraftplus.php:4739
23
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
  msgstr ""
25
 
26
- #: src/class-updraftplus.php:4737
27
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
28
  msgstr ""
29
 
30
- #: src/class-updraftplus.php:4734
31
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
32
  msgstr ""
33
 
@@ -43,17 +166,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 +216,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 +232,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 +252,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 +264,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 +285,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 +534,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 +829,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 +853,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 +865,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 +950,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 +990,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 +1014,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 +1042,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 +1100,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 +1112,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 +1134,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 +1222,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 +1264,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 +1292,7 @@ msgstr ""
1193
  msgid "Asia Pacific (Seoul)"
1194
  msgstr ""
1195
 
1196
- #: src/restorer.php:1681
1197
  msgid "Uploads URL:"
1198
  msgstr ""
1199
 
@@ -1205,40 +1304,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 +1382,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 +1418,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 +1470,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 +1569,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 +1746,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 +1786,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 +1798,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 +1834,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 +1846,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 +1884,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 +1916,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 +1930,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 +1975,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 +2004,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 +2032,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 +2076,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 +2096,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 +2136,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 +2205,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 +2221,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 +2249,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 +2261,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 +2274,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 +2440,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 +2515,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 +2564,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 +2597,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 +2623,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 +2632,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 +2717,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 +2734,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 +2746,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 +2795,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 +2836,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 +2877,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 +2889,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 +2905,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 +2929,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 +2953,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 +2992,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 +3008,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 +3028,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 +3123,7 @@ msgstr ""
3023
  msgid "user"
3024
  msgstr ""
3025
 
3026
- #: src/class-updraftplus.php:1690
3027
  msgid "External database (%s)"
3028
  msgstr ""
3029
 
@@ -3040,31 +3140,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 +3172,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 +3180,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 +3201,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 +3215,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 +3276,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 +3361,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 +3369,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 +3393,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 +3410,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 +3439,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 +3485,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 +3516,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 +3549,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 +3603,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 +3619,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 +3644,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 +3668,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 +3681,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 +3835,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 +3845,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 +3905,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 +3921,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 +3966,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 +3981,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 +3993,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 +4137,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 +4159,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 +4303,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 +4335,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 +4385,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 +4491,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 +4505,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 +4584,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 +4673,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 +4717,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 +4725,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 +4733,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 +4777,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 +4790,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 +4810,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 +4869,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 +4881,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 +4921,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 +4981,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 +4997,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 +5074,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 +5091,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 +5113,7 @@ msgstr ""
5011
  msgid "Blog link"
5012
  msgstr ""
5013
 
5014
- #: src/admin.php:736
5015
  msgid "Testing %s Settings..."
5016
  msgstr ""
5017
 
@@ -5019,23 +5121,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 +5157,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 +5219,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 +5323,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 +5422,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 +5523,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 +5531,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 +5542,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 +5550,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 +5600,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 +5615,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 +5670,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 +5703,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 +5744,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 +5840,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 +5993,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 +6030,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 +6177,7 @@ msgstr ""
6075
  msgid "Multisite"
6076
  msgstr ""
6077
 
6078
- #: src/admin.php:2464
6079
  msgid "Go here for help."
6080
  msgstr ""
6081
 
@@ -6128,27 +6230,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 +6295,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 +6328,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 +6340,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 +6356,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 +6376,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 +6501,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 +6513,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 +6564,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: bs_BA\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
+
33
+ #: src/central/bootstrap.php:572
34
+ msgid "Create another key"
35
+ msgstr ""
36
+
37
+ #: src/central/bootstrap.php:501
38
+ msgid "UpdraftCentral dashboard connection details"
39
+ msgstr ""
40
+
41
+ #: src/central/bootstrap.php:495
42
+ msgid "Next"
43
+ msgstr ""
44
+
45
+ #: src/central/bootstrap.php:490
46
+ msgid "the UpdraftCentral dashboard plugin"
47
+ msgstr ""
48
+
49
+ #: src/central/bootstrap.php:490
50
+ msgid "On my own website on which I have installed"
51
+ msgstr ""
52
+
53
+ #: src/central/bootstrap.php:485
54
+ msgid "an account"
55
+ msgstr ""
56
+
57
+ #: src/central/bootstrap.php:485
58
+ msgid "i.e. if you have %s there"
59
+ msgstr ""
60
+
61
+ #: src/central/bootstrap.php:477
62
+ msgid "Connect this site to an UpdraftCentral dashboard found at..."
63
+ msgstr ""
64
+
65
+ #: src/central/bootstrap.php:451
66
+ msgid "Manage existing keys (%d)..."
67
+ msgstr ""
68
+
69
+ #: src/central/bootstrap.php:401
70
+ msgid "There are no UpdraftCentral dashboards that can currently control this site."
71
+ msgstr ""
72
+
73
+ #: src/central/bootstrap.php:238
74
+ msgid "You can now control this site via your UpdraftCentral dashboard at %s."
75
+ msgstr ""
76
+
77
+ #: src/central/bootstrap.php:236
78
+ msgid "Detailed instructions for this can be found at %s"
79
+ msgstr ""
80
+
81
+ #: src/central/bootstrap.php:236
82
+ msgid "You now need to copy the key below and enter it at your %s."
83
+ msgstr ""
84
+
85
+ #: src/admin.php:761
86
+ msgid "Please enter a valid URL e.g http://example.com"
87
+ msgstr ""
88
+
89
+ #: src/addons/backblaze.php:576
90
+ msgid "your Backblaze console"
91
+ msgstr ""
92
+
93
+ #: src/addons/backblaze.php:576
94
+ msgid "There are limits upon which path-names are valid. Spaces are not allowed."
95
+ msgstr ""
96
+
97
+ #: src/addons/backblaze.php:576
98
+ msgid "N.B. You need to create the bucket in %s first."
99
+ msgstr ""
100
+
101
+ #: src/addons/backblaze.php:575
102
+ msgid "some/path"
103
+ msgstr ""
104
+
105
+ #: src/addons/backblaze.php:575
106
+ msgid "Bucket name"
107
+ msgstr ""
108
+
109
+ #: src/addons/backblaze.php:574
110
+ msgid "Backup path"
111
+ msgstr ""
112
+
113
+ #: src/addons/backblaze.php:569
114
+ msgid "Application key"
115
+ msgstr ""
116
+
117
+ #: src/addons/backblaze.php:564, src/addons/backblaze.php:564
118
+ msgid "here"
119
+ msgstr ""
120
+
121
+ #: src/addons/backblaze.php:564
122
+ msgid "Get these settings from %s, or sign up %s."
123
+ msgstr ""
124
+
125
+ #: src/addons/backblaze.php:434
126
+ msgid "Bucket not found"
127
+ msgstr ""
128
+
129
+ #: src/addons/backblaze.php:390
130
+ msgid "Account Key"
131
+ msgstr ""
132
+
133
+ #: src/addons/backblaze.php:389, src/addons/backblaze.php:562
134
+ msgid "Account ID"
135
+ msgstr ""
136
+
137
+ #: src/class-updraftplus.php:4377
138
  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."
139
  msgstr ""
140
 
141
+ #: src/class-updraftplus.php:4375, src/class-updraftplus.php:4377
142
  msgid "the migrator add-on"
143
  msgstr ""
144
 
145
+ #: src/class-updraftplus.php:4375
146
  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."
147
  msgstr ""
148
 
149
+ #: src/class-updraftplus.php:4373
150
  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."
151
  msgstr ""
152
 
153
+ #: src/class-updraftplus.php:4370
154
  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."
155
  msgstr ""
156
 
166
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
167
  msgstr ""
168
 
169
+ #: src/admin.php:742
170
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
171
  msgstr ""
172
 
173
+ #: src/admin.php:1292, src/admin.php:3976, src/class-updraftplus.php:2125,
174
+ #: src/class-updraftplus.php:2190, src/class-updraftplus.php:2324
175
  msgid "A PHP fatal error (%s) has occurred: %s"
176
  msgstr ""
177
 
178
+ #: src/admin.php:1285, src/admin.php:3968, src/class-updraftplus.php:2118,
179
+ #: src/class-updraftplus.php:2183, src/class-updraftplus.php:2317
180
  msgid "A PHP exception (%s) has occurred: %s"
181
  msgstr ""
182
 
216
  msgid "Remote storage"
217
  msgstr ""
218
 
219
+ #: src/templates/wp-admin/settings/form-contents.php:219
220
  msgid "Select Files"
221
  msgstr ""
222
 
232
  msgid "Instant and secure logon with a wave of your phone."
233
  msgstr ""
234
 
235
+ #: src/backup.php:1909
236
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
237
  msgstr ""
238
 
239
+ #: src/admin.php:4465
240
  msgid "Value"
241
  msgstr ""
242
 
243
+ #: src/admin.php:1557
244
  msgid "Did not know how to delete from this cloud service."
245
  msgstr ""
246
 
252
  msgid "__Check this box to use Amazon's server-side encryption"
253
  msgstr ""
254
 
255
+ #: src/addons/azure.php:549
256
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
257
  msgstr ""
258
 
264
  msgid "Cloud Files"
265
  msgstr ""
266
 
267
+ #: src/admin.php:4303
268
  msgid "Your settings failed to save. Please refresh the settings page and try again"
269
  msgstr ""
270
 
271
+ #: src/admin.php:4262
272
  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."
273
  msgstr ""
274
 
285
  msgid "Extra database"
286
  msgstr ""
287
 
288
+ #: src/admin.php:3545
289
  msgid "Press here to download or browse"
290
  msgstr ""
291
 
292
+ #: src/admin.php:1074, src/admin.php:1084
293
  msgid "Error: invalid path"
294
  msgstr ""
295
 
296
+ #: src/admin.php:932
297
  msgid "An error occurred when fetching storage module options: "
298
  msgstr ""
299
 
300
+ #: src/admin.php:758
301
  msgid "Loading log file"
302
  msgstr ""
303
 
304
+ #: src/admin.php:757
305
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
306
  msgstr ""
307
 
308
+ #: src/admin.php:756
309
  msgid "Search"
310
  msgstr ""
311
 
312
+ #: src/admin.php:755
313
  msgid "Select a file to view information about it"
314
  msgstr ""
315
 
316
+ #: src/admin.php:754
317
  msgid "Browsing zip file"
318
  msgstr ""
319
 
320
+ #: src/admin.php:723
321
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
322
  msgstr ""
323
 
324
+ #: src/admin.php:671
325
  msgid "Browse contents"
326
  msgstr ""
327
 
328
+ #: src/restorer.php:1693
329
  msgid "Skipped tables:"
330
  msgstr ""
331
 
332
+ #: src/class-updraftplus.php:4557
333
  msgid "This database backup has the following WordPress tables excluded: %s"
334
  msgstr ""
335
 
336
+ #: src/admin.php:2524
337
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
338
  msgstr ""
339
 
340
+ #: src/admin.php:2524
341
  msgid "All WordPress tables will be backed up."
342
  msgstr ""
343
 
344
+ #: src/admin.php:753
345
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
346
  msgstr ""
347
 
348
+ #: src/admin.php:753
349
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
350
  msgstr ""
351
 
352
+ #: src/admin.php:753
353
  msgid "The available memory on the server."
354
  msgstr ""
355
 
356
+ #: src/admin.php:753
357
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
358
  msgstr ""
359
 
360
+ #: src/admin.php:753
361
  msgid "The file failed to upload. Please check the following:"
362
  msgstr ""
363
 
364
+ #: src/admin.php:752
365
  msgid "HTTP code:"
366
  msgstr ""
367
 
368
+ #: src/admin.php:648
369
  msgid "You have chosen to backup a database, but no tables have been selected"
370
  msgstr ""
371
 
534
  msgid "UpdraftPlus"
535
  msgstr ""
536
 
537
+ #: src/templates/wp-admin/settings/form-contents.php:243
538
  msgid "Recommended: optimize your database with WP-Optimize."
539
  msgstr ""
540
 
829
  msgid "Export / import settings"
830
  msgstr ""
831
 
832
+ #: src/restorer.php:1881
833
  msgid "Processing table (%s)"
834
  msgstr ""
835
 
836
+ #: src/restorer.php:1659
837
  msgid "Backup of: %s"
838
  msgstr ""
839
 
853
  msgid "Follow this link to deauthenticate with %s."
854
  msgstr ""
855
 
856
+ #: src/central/bootstrap.php:567
857
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
858
  msgstr ""
859
 
860
+ #: src/backup.php:1529
861
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
862
  msgstr ""
863
 
865
  msgid "You have selected a remote storage option which has an authorization step to complete:"
866
  msgstr ""
867
 
868
+ #: src/admin.php:1633
869
  msgid "Remote files deleted:"
870
  msgstr ""
871
 
872
+ #: src/admin.php:1632
873
  msgid "Local files deleted:"
874
  msgstr ""
875
 
876
+ #: src/admin.php:977, src/admin.php:981, src/admin.php:989, src/admin.php:993
877
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
878
  msgstr ""
879
 
880
+ #: src/admin.php:751
881
  msgid "remote files deleted"
882
  msgstr ""
883
 
884
+ #: src/admin.php:749
885
  msgid "Complete"
886
  msgstr ""
887
 
888
+ #: src/admin.php:748
889
  msgid "Do you want to carry out the import?"
890
  msgstr ""
891
 
892
+ #: src/admin.php:747
893
  msgid "Which was exported on:"
894
  msgstr ""
895
 
896
+ #: src/admin.php:746
897
  msgid "This will import data from:"
898
  msgstr ""
899
 
900
+ #: src/admin.php:745
901
  msgid "Importing..."
902
  msgstr ""
903
 
904
+ #: src/admin.php:741
905
  msgid "You have not yet selected a file to import."
906
  msgstr ""
907
 
908
+ #: src/admin.php:725
909
  msgid "Your export file will be of your displayed settings, not your saved ones."
910
  msgstr ""
911
 
912
+ #: src/admin.php:84
913
  msgid "template not found"
914
  msgstr ""
915
 
950
  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"
951
  msgstr ""
952
 
953
+ #: src/admin.php:2348
954
  msgid "To fix this problem go here."
955
  msgstr ""
956
 
957
+ #: src/admin.php:2348
958
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
959
  msgstr ""
960
 
961
+ #: src/admin.php:709
962
  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."
963
  msgstr ""
964
 
990
  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."
991
  msgstr ""
992
 
993
+ #: src/methods/s3.php:1063
994
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
995
  msgstr ""
996
 
997
+ #: src/methods/s3.php:126
998
  msgid "No settings were found - please go to the Settings tab and check your settings"
999
  msgstr ""
1000
 
1014
  msgid "FAQs"
1015
  msgstr ""
1016
 
1017
+ #: src/central/bootstrap.php:523
1018
  msgid "More information..."
1019
  msgstr ""
1020
 
1021
+ #: src/central/bootstrap.php:521
1022
  msgid "Use the alternative method for making a connection with the dashboard."
1023
  msgstr ""
1024
 
1025
+ #: src/central/bootstrap.php:438
 
 
 
 
1026
  msgid "Key size: %d bits"
1027
  msgstr ""
1028
 
1029
+ #: src/central/bootstrap.php:433
1030
  msgid "Public key was sent to:"
1031
  msgstr ""
1032
 
1033
+ #: src/backup.php:2107
1034
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1035
  msgstr ""
1036
 
1037
+ #: src/backup.php:2085
1038
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1039
  msgstr ""
1040
 
1042
  msgid "Create key"
1043
  msgstr ""
1044
 
1045
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:515
1046
  msgid "slower, strongest"
1047
  msgstr ""
1048
 
1049
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:514
1050
  msgid "recommended"
1051
  msgstr ""
1052
 
1053
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:514
1054
  msgid "%s bytes"
1055
  msgstr ""
1056
 
1057
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:513
1058
  msgid "faster (possibility for slow PHP installs)"
1059
  msgstr ""
1060
 
1061
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:512
1062
  msgid "easy to break, fastest"
1063
  msgstr ""
1064
 
1065
  #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
1066
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:512,
1067
+ #: src/central/bootstrap.php:513, src/central/bootstrap.php:515
1068
  msgid "%s bits"
1069
  msgstr ""
1070
 
1071
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:510
1072
  msgid "Encryption key size:"
1073
  msgstr ""
1074
 
1100
  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."
1101
  msgstr ""
1102
 
1103
+ #: src/class-updraftplus.php:1736
1104
  msgid "Size: %s MB"
1105
  msgstr ""
1106
 
1107
+ #: src/templates/wp-admin/settings/form-contents.php:337
 
 
 
 
 
 
 
 
1108
  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)."
1109
  msgstr ""
1110
 
1112
  msgid "Now"
1113
  msgstr ""
1114
 
1115
+ #: src/class-updraftplus.php:4389, src/restorer.php:1010
1116
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1117
  msgstr ""
1118
 
1134
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1135
  msgstr ""
1136
 
1137
+ #: src/class-updraftplus.php:520, src/class-updraftplus.php:565
1138
  msgid "The given file was not found, or could not be read."
1139
  msgstr ""
1140
 
1141
+ #: src/central/bootstrap.php:565
1142
  msgid "UpdraftCentral (Remote Control)"
1143
  msgstr ""
1144
 
1145
+ #: src/central/bootstrap.php:554
 
 
 
 
1146
  msgid "View recent UpdraftCentral log events"
1147
  msgstr ""
1148
 
1149
+ #: src/central/bootstrap.php:493
1150
  msgid "URL of mothership"
1151
  msgstr ""
1152
 
1153
+ #: src/central/bootstrap.php:504
1154
  msgid "Enter any description"
1155
  msgstr ""
1156
 
1157
+ #: src/central/bootstrap.php:503
1158
  msgid "Description"
1159
  msgstr ""
1160
 
1161
+ #: src/central/bootstrap.php:443
 
 
 
 
1162
  msgid "Delete..."
1163
  msgstr ""
1164
 
1165
+ #: src/central/bootstrap.php:436
1166
  msgid "Created:"
1167
  msgstr ""
1168
 
1169
+ #: src/central/bootstrap.php:433
1170
  msgid "Access this site as user:"
1171
  msgstr ""
1172
 
1173
+ #: src/central/bootstrap.php:457
 
 
 
 
1174
  msgid "Details"
1175
  msgstr ""
1176
 
1177
+ #: src/central/bootstrap.php:456
1178
  msgid "Key description"
1179
  msgstr ""
1180
 
1181
+ #: src/central/bootstrap.php:329, src/central/bootstrap.php:340
1182
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
1183
  msgstr ""
1184
 
1222
  msgid "UpdraftCentral Connection"
1223
  msgstr ""
1224
 
1225
+ #: src/backup.php:869, src/class-updraftplus.php:2806
1226
  msgid "The backup was aborted by the user"
1227
  msgstr ""
1228
 
1229
+ #: src/admin.php:4298
1230
  msgid "Your settings have been saved."
1231
  msgstr ""
1232
 
1233
+ #: src/admin.php:3432
1234
  msgid "Total backup size:"
1235
  msgstr ""
1236
 
1237
+ #: src/admin.php:2846
1238
  msgid "stop"
1239
  msgstr ""
1240
 
1241
+ #: src/admin.php:2684
1242
  msgid "The backup has finished running"
1243
  msgstr ""
1244
 
1264
  msgid "calculate"
1265
  msgstr ""
1266
 
1267
+ #: src/admin.php:724
1268
  msgid "You should save your changes to ensure that they are used for making your backup."
1269
  msgstr ""
1270
 
1271
+ #: src/admin.php:717
1272
  msgid "We requested to delete the file, but could not understand the server's response"
1273
  msgstr ""
1274
 
1275
+ #: src/admin.php:716
1276
  msgid "Please enter a valid URL"
1277
  msgstr ""
1278
 
1279
+ #: src/admin.php:699
1280
  msgid "Saving..."
1281
  msgstr ""
1282
 
1283
+ #: src/admin.php:662
1284
  msgid "Error: the server sent us a response which we did not understand."
1285
  msgstr ""
1286
 
1287
+ #: src/admin.php:654
1288
  msgid "Fetching..."
1289
  msgstr ""
1290
 
1292
  msgid "Asia Pacific (Seoul)"
1293
  msgstr ""
1294
 
1295
+ #: src/restorer.php:1682
1296
  msgid "Uploads URL:"
1297
  msgstr ""
1298
 
1304
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1305
  msgstr ""
1306
 
1307
+ #: src/class-updraftplus.php:4440, src/restorer.php:1701
1308
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1309
  msgstr ""
1310
 
1311
+ #: src/class-updraftplus.php:4436
1312
  msgid "Please read this link for important information on this process."
1313
  msgstr ""
1314
 
1315
+ #: src/class-updraftplus.php:4436
1316
  msgid "It will be imported as a new site."
1317
  msgstr ""
1318
 
1319
+ #: src/admin.php:2497, src/templates/wp-admin/notices/horizontal-notice.php:16,
1320
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1321
  msgid "Dismiss"
1322
  msgstr ""
1323
 
1324
+ #: src/admin.php:736
1325
  msgid "Please fill in the required information."
1326
  msgstr ""
1327
 
1328
+ #: src/addons/multisite.php:579
1329
  msgid "Read more..."
1330
  msgstr ""
1331
 
1332
+ #: src/addons/multisite.php:570
1333
  msgid "may include some site-wide data"
1334
  msgstr ""
1335
 
1336
+ #: src/addons/multisite.php:565
1337
  msgid "All sites"
1338
  msgstr ""
1339
 
1340
+ #: src/addons/multisite.php:561
1341
  msgid "Which site to restore"
1342
  msgstr ""
1343
 
1382
  msgid "Call WordPress action:"
1383
  msgstr ""
1384
 
1385
+ #: src/admin.php:2532
1386
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1387
  msgstr ""
1388
 
1389
+ #: src/admin.php:3856
1390
  msgid "Skipping: this archive was already restored."
1391
  msgstr ""
1392
 
1393
+ #: src/templates/wp-admin/settings/form-contents.php:167
1394
  msgid "File Options"
1395
  msgstr ""
1396
 
1418
  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)."
1419
  msgstr ""
1420
 
1421
+ #: src/admin.php:4175
1422
  msgid "Send this backup to remote storage"
1423
  msgstr ""
1424
 
1425
+ #: src/admin.php:4173
1426
  msgid "Check out UpdraftPlus Vault."
1427
  msgstr ""
1428
 
1429
+ #: src/admin.php:4173
1430
  msgid "Not got any remote storage?"
1431
  msgstr ""
1432
 
1433
+ #: src/admin.php:4173
1434
  msgid "settings"
1435
  msgstr ""
1436
 
1437
+ #: src/admin.php:4173
1438
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1439
  msgstr ""
1440
 
1441
+ #: src/admin.php:2530
1442
  msgid "Include any files in the backup"
1443
  msgstr ""
1444
 
1445
+ #: src/admin.php:2516
1446
  msgid "Include the database in the backup"
1447
  msgstr ""
1448
 
1449
+ #: src/admin.php:2496
1450
  msgid "Continue restoration"
1451
  msgstr ""
1452
 
1453
+ #: src/admin.php:2491
1454
  msgid "You have an unfinished restoration operation, begun %s ago."
1455
  msgstr ""
1456
 
1457
+ #: src/admin.php:2490
1458
  msgid "Unfinished restoration"
1459
  msgstr ""
1460
 
1461
+ #: src/admin.php:2488
1462
  msgid "%s minutes, %s seconds"
1463
  msgstr ""
1464
 
1465
+ #: src/admin.php:2435
1466
  msgid "Backup Contents And Schedule"
1467
  msgstr ""
1468
 
1470
  msgid "Premium / Extensions"
1471
  msgstr ""
1472
 
1473
+ #: src/admin.php:2214, src/admin.php:2223
1474
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1475
  msgstr ""
1476
 
1477
+ #: src/addons/morefiles.php:55, src/admin.php:722
1478
  msgctxt "(verb)"
1479
  msgid "Download"
1480
  msgstr ""
1481
 
1482
+ #: src/admin.php:647
1483
  msgid "You have chosen to backup files, but no file entities have been selected"
1484
  msgstr ""
1485
 
1486
+ #: src/admin.php:548
1487
  msgid "Extensions"
1488
  msgstr ""
1489
 
1490
+ #: src/admin.php:540, src/templates/wp-admin/settings/tab-bar.php:8
1491
  msgid "Advanced Tools"
1492
  msgstr ""
1493
 
1569
  msgid "Standard"
1570
  msgstr ""
1571
 
1572
+ #: src/addons/azure.php:577
1573
  msgid "container"
1574
  msgstr ""
1575
 
1576
+ #: src/addons/azure.php:577
1577
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1578
  msgstr ""
1579
 
1580
+ #: src/addons/azure.php:576
1581
  msgid "optional"
1582
  msgstr ""
1583
 
1584
+ #: src/addons/azure.php:576
1585
  msgid "Prefix"
1586
  msgstr ""
1587
 
1588
+ #: src/addons/azure.php:571
1589
  msgid "See Microsoft's guidelines on container naming by following this link."
1590
  msgstr ""
1591
 
1592
+ #: src/addons/azure.php:571
1593
  msgid "Enter the path of the %s you wish to use here."
1594
  msgstr ""
1595
 
1596
+ #: src/addons/azure.php:560
1597
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1598
  msgstr ""
1599
 
1600
+ #: src/addons/azure.php:559
1601
  msgid "Account Name"
1602
  msgstr ""
1603
 
1604
+ #: src/addons/azure.php:559, src/addons/azure.php:563
1605
  msgid "Azure"
1606
  msgstr ""
1607
 
1608
+ #: src/addons/azure.php:555
1609
  msgid "Create Azure credentials in your Azure developer console."
1610
  msgstr ""
1611
 
1612
+ #: src/addons/azure.php:503
1613
  msgid "Could not create the container"
1614
  msgstr ""
1615
 
1616
+ #: src/addons/azure.php:358
1617
  msgid "Could not access container"
1618
  msgstr ""
1619
 
1620
+ #: src/class-updraftplus.php:2823
1621
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1622
  msgstr ""
1623
 
1624
+ #: src/backup.php:1581
1625
  msgid "the options table was not found"
1626
  msgstr ""
1627
 
1628
+ #: src/backup.php:1579
1629
  msgid "no options or sitemeta table was found"
1630
  msgstr ""
1631
 
1632
+ #: src/backup.php:1579, src/backup.php:1581
1633
  msgid "The database backup appears to have failed"
1634
  msgstr ""
1635
 
1636
+ #: src/backup.php:1451
1637
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1638
  msgstr ""
1639
 
1746
  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)."
1747
  msgstr ""
1748
 
1749
+ #: src/admin.php:1631
1750
  msgid "Backup sets removed:"
1751
  msgstr ""
1752
 
1753
+ #: src/admin.php:735
1754
  msgid "Processing..."
1755
  msgstr ""
1756
 
1757
+ #: src/admin.php:733
1758
  msgid "For backups older than"
1759
  msgstr ""
1760
 
1761
+ #: src/admin.php:732
1762
  msgid "week(s)"
1763
  msgstr ""
1764
 
1765
+ #: src/admin.php:731
1766
  msgid "hour(s)"
1767
  msgstr ""
1768
 
1769
+ #: src/admin.php:730
1770
  msgid "day(s)"
1771
  msgstr ""
1772
 
1773
+ #: src/admin.php:729
1774
  msgid "in the month"
1775
  msgstr ""
1776
 
1777
+ #: src/admin.php:728
1778
  msgid "day"
1779
  msgstr ""
1780
 
1786
  msgid "Add an additional retention rule..."
1787
  msgstr ""
1788
 
1789
+ #: src/restorer.php:2204
1790
  msgid "This database needs to be deployed on MySQL version %s or later."
1791
  msgstr ""
1792
 
1793
+ #: src/restorer.php:2204
1794
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1795
  msgstr ""
1796
 
1798
  msgid "You do not currently have any UpdraftPlus Vault quota"
1799
  msgstr ""
1800
 
1801
+ #: src/class-updraftplus.php:4478
1802
  msgid "You must upgrade MySQL to be able to use this database."
1803
  msgstr ""
1804
 
1805
+ #: src/class-updraftplus.php:4478
1806
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1807
  msgstr ""
1808
 
1809
+ #: src/admin.php:2333
1810
  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."
1811
  msgstr ""
1812
 
1834
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1835
  msgstr ""
1836
 
1837
+ #: src/admin.php:985
1838
  msgid "Go to the remote storage settings in order to connect."
1839
  msgstr ""
1840
 
1841
+ #: src/admin.php:985
1842
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1843
  msgstr ""
1844
 
1846
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1847
  msgstr ""
1848
 
1849
+ #: src/admin.php:705
1850
  msgid "Update quota count"
1851
  msgstr ""
1852
 
1853
+ #: src/admin.php:704
1854
  msgid "Counting..."
1855
  msgstr ""
1856
 
1857
+ #: src/admin.php:703
1858
  msgid "Disconnecting..."
1859
  msgstr ""
1860
 
1861
+ #: src/admin.php:701
1862
  msgid "Connecting..."
1863
  msgstr ""
1864
 
1884
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1885
  msgstr ""
1886
 
1887
+ #: src/admin.php:702, src/methods/updraftvault.php:388
1888
  msgid "Disconnect"
1889
  msgstr ""
1890
 
1916
  msgid "E-mail"
1917
  msgstr ""
1918
 
1919
+ #: src/central/bootstrap.php:540, src/methods/updraftvault.php:338,
1920
+ #: src/methods/updraftvault.php:353
1921
  msgid "Back..."
1922
  msgstr ""
1923
 
1930
  msgid "%s per quarter"
1931
  msgstr ""
1932
 
1933
+ #: src/central/bootstrap.php:567, src/methods/updraftvault.php:305,
1934
  #: src/methods/updraftvault.php:335
1935
  msgid "Read more about it here."
1936
  msgstr ""
1975
  msgid "Updraft Vault"
1976
  msgstr ""
1977
 
1978
+ #: src/addons/azure.php:388, src/addons/backblaze.php:464,
1979
+ #: src/addons/googlecloud.php:760, src/methods/s3.php:1091
1980
  msgid "Delete failed:"
1981
  msgstr ""
1982
 
1983
+ #: src/backup.php:3045
1984
  msgid "The zip engine returned the message: %s."
1985
  msgstr ""
1986
 
2004
  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."
2005
  msgstr ""
2006
 
2007
+ #: src/addons/migrator.php:1747, src/admin.php:711
2008
  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."
2009
  msgstr ""
2010
 
2032
  msgid "Keys for this site are created in the section below the one you just pressed in."
2033
  msgstr ""
2034
 
2035
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:383
2036
  msgid "You must copy and paste this key now - it cannot be shown again."
2037
  msgstr ""
2038
 
2039
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:383
2040
  msgid "Key created successfully."
2041
  msgstr ""
2042
 
2076
  msgid "This storage method does not allow downloading"
2077
  msgstr ""
2078
 
2079
+ #: src/admin.php:3610
2080
  msgid "(backup set imported from remote location)"
2081
  msgstr ""
2082
 
2096
  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."
2097
  msgstr ""
2098
 
2099
+ #: src/addons/migrator.php:1775, src/admin.php:718
2100
  msgid "Testing connection..."
2101
  msgstr ""
2102
 
2103
+ #: src/admin.php:715
2104
  msgid "Deleting..."
2105
  msgstr ""
2106
 
2107
+ #: src/admin.php:714
2108
  msgid "key name"
2109
  msgstr ""
2110
 
2111
+ #: src/admin.php:712
2112
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2113
  msgstr ""
2114
 
2115
+ #: src/admin.php:709
2116
  msgid "Creating..."
2117
  msgstr ""
2118
 
2136
  msgid "Or, send a backup to another site"
2137
  msgstr ""
2138
 
2139
+ #: src/addons/migrator.php:1946, src/admin.php:719
2140
  msgid "Send"
2141
  msgstr ""
2142
 
2143
+ #: src/addons/migrator.php:1940, src/admin.php:710
2144
  msgid "Send to site:"
2145
  msgstr ""
2146
 
2205
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2206
  msgstr ""
2207
 
2208
+ #: src/admin.php:708
2209
  msgid "Resetting..."
2210
  msgstr ""
2211
 
2212
+ #: src/addons/migrator.php:2190, src/admin.php:707
2213
  msgid "Add site"
2214
  msgstr ""
2215
 
2216
+ #: src/admin.php:706
2217
  msgid "Adding..."
2218
  msgstr ""
2219
 
2221
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2222
  msgstr ""
2223
 
2224
+ #: src/restorer.php:2206
2225
  msgid "To use this backup, your database server needs to support the %s character set."
2226
  msgstr ""
2227
 
2249
  msgid "To restore using any of the backup sets below, press the button."
2250
  msgstr ""
2251
 
2252
+ #: src/admin.php:698, src/admin.php:724, src/admin.php:725
2253
  msgid "You have made changes to your settings, and not saved."
2254
  msgstr ""
2255
 
2261
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2262
  msgstr ""
2263
 
2264
+ #: src/addons/azure.php:555, src/addons/migrator.php:1762,
2265
  #: src/addons/onedrive.php:955
2266
  msgid "For longer help, including screenshots, follow this link."
2267
  msgstr ""
2274
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2275
  msgstr ""
2276
 
2277
+ #: src/addons/azure.php:547
2278
  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)."
2279
  msgstr ""
2280
 
2440
  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)"
2441
  msgstr ""
2442
 
2443
+ #: src/methods/s3.php:875
2444
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2445
  msgstr ""
2446
 
2515
  msgid "(at same time as files backup)"
2516
  msgstr ""
2517
 
2518
+ #: src/admin.php:3114
2519
  msgid "No backup has been completed"
2520
  msgstr ""
2521
 
2564
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2565
  msgstr ""
2566
 
2567
+ #: src/methods/s3.php:172, src/methods/s3.php:173, src/methods/s3.php:174,
2568
+ #: src/methods/s3.php:182, src/methods/s3.php:183, src/methods/s3.php:184
2569
  msgid "%s Error: Failed to initialise"
2570
  msgstr ""
2571
 
2572
+ #: src/templates/wp-admin/settings/form-contents.php:218
2573
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
2574
  msgid "or"
2575
  msgstr ""
2576
 
2577
+ #: src/admin.php:692
2578
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2579
  msgstr ""
2580
 
2597
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2598
  msgstr ""
2599
 
2600
+ #: src/templates/wp-admin/settings/form-contents.php:288
2601
  msgid "your site's admin address"
2602
  msgstr ""
2603
 
2604
+ #: src/templates/wp-admin/settings/form-contents.php:288
2605
  msgid "Check this box to have a basic report sent to"
2606
  msgstr ""
2607
 
2608
+ #: src/admin.php:3123
2609
  msgctxt "i.e. Non-automatic"
2610
  msgid "Manual"
2611
  msgstr ""
2612
 
2613
+ #: src/restorer.php:2183
2614
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
2615
  msgid "An error (%s) occurred:"
2616
  msgstr ""
2623
  msgid "Any other file/directory on your server that you wish to back up"
2624
  msgstr ""
2625
 
2626
+ #: src/admin.php:2350
2627
  msgid "For even more features and personal support, check out "
2628
  msgstr ""
2629
 
2632
  msgstr ""
2633
 
2634
  #: src/addons/autobackup.php:143, src/addons/autobackup.php:1007,
2635
+ #: src/admin.php:697
2636
  msgid "Automatic backup before update"
2637
  msgstr ""
2638
 
2717
  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."
2718
  msgstr ""
2719
 
2720
+ #: src/admin.php:2684, src/admin.php:3632, src/admin.php:3633
2721
  msgid "View Log"
2722
  msgstr ""
2723
 
2734
  msgid "and retain this many scheduled backups"
2735
  msgstr ""
2736
 
2737
+ #: src/admin.php:3084
2738
  msgid "incremental backup; base backup: %s"
2739
  msgstr ""
2740
 
2746
  msgid "Upload files into UpdraftPlus."
2747
  msgstr ""
2748
 
2749
+ #: src/admin.php:936, src/includes/class-commands.php:376,
2750
  #: src/templates/wp-admin/settings/tab-status.php:22
2751
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2752
  msgstr ""
2753
 
2754
+ #: src/class-updraftplus.php:4425
2755
  msgid "Backup label:"
2756
  msgstr ""
2757
 
2758
+ #: src/addons/backblaze.php:189, src/admin.php:1875
2759
  msgid "Error: unexpected file read fail"
2760
  msgstr ""
2761
 
2762
+ #: src/backup.php:3051
2763
  msgid "check your log for more details."
2764
  msgstr ""
2765
 
2766
+ #: src/backup.php:3049
2767
  msgid "your web hosting account appears to be full; please see: %s"
2768
  msgstr ""
2769
 
2770
+ #: src/backup.php:3047
2771
  msgid "A zip error occurred"
2772
  msgstr ""
2773
 
2795
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2796
  msgstr ""
2797
 
2798
+ #: src/class-updraftplus.php:4444
2799
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2800
  msgstr ""
2801
 
2802
+ #: src/class-updraftplus.php:4444
2803
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2804
  msgstr ""
2805
 
2836
  msgid "You need to connect to receive future updates to UpdraftPlus."
2837
  msgstr ""
2838
 
2839
+ #: src/class-updraftplus.php:4417
2840
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2841
  msgstr ""
2842
 
2843
+ #: src/class-updraftplus.php:4417
2844
  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."
2845
  msgstr ""
2846
 
2847
+ #: src/class-updraftplus.php:4417
2848
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2849
  msgstr ""
2850
 
2851
+ #: src/class-updraftplus.php:4417
2852
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2853
  msgstr ""
2854
 
2877
  msgid "UpdraftPlus is on social media - check us out!"
2878
  msgstr ""
2879
 
2880
+ #: src/admin.php:3701
2881
  msgid "Why am I seeing this?"
2882
  msgstr ""
2883
 
2889
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2890
  msgstr ""
2891
 
2892
+ #: src/admin.php:1814, src/admin.php:1826
2893
  msgid "Start backup"
2894
  msgstr ""
2895
 
2896
+ #: src/class-updraftplus.php:4389, src/restorer.php:1010
2897
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2898
  msgstr ""
2899
 
2900
+ #: src/admin.php:3007
2901
  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."
2902
  msgstr ""
2903
 
2905
  msgid "Unless you have a problem, you can completely ignore everything here."
2906
  msgstr ""
2907
 
2908
+ #: src/admin.php:2036
2909
  msgid "This file could not be uploaded"
2910
  msgstr ""
2911
 
2912
+ #: src/admin.php:2001
2913
  msgid "You will find more information about this in the Settings section."
2914
  msgstr ""
2915
 
2929
  msgid "Memory limit"
2930
  msgstr ""
2931
 
2932
+ #: src/class-updraftplus.php:4621, src/restorer.php:1493
2933
  msgid "restoration"
2934
  msgstr ""
2935
 
2936
+ #: src/backup.php:864
2937
  msgid "Incremental"
2938
  msgstr ""
2939
 
2940
+ #: src/backup.php:864
2941
  msgid "Full backup"
2942
  msgstr ""
2943
 
2953
  msgid "Backup succeeded"
2954
  msgstr ""
2955
 
2956
+ #: src/admin.php:3124, src/admin.php:3125, src/admin.php:3126,
2957
  #: src/updraftplus.php:99, src/updraftplus.php:100
2958
  msgid "Every %s hours"
2959
  msgstr ""
2992
  msgid "search term"
2993
  msgstr ""
2994
 
2995
+ #: src/restorer.php:2211
2996
  msgid "Too many database errors have occurred - aborting"
2997
  msgstr ""
2998
 
2999
+ #: src/backup.php:930
3000
  msgid "read more at %s"
3001
  msgstr ""
3002
 
3003
+ #: src/backup.php:930
3004
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3005
  msgstr ""
3006
 
3008
  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."
3009
  msgstr ""
3010
 
3011
+ #: src/admin.php:3459
3012
  msgid "You have not yet made any backups."
3013
  msgstr ""
3014
 
3015
+ #: src/templates/wp-admin/settings/form-contents.php:179
3016
  msgid "Database Options"
3017
  msgstr ""
3018
 
3028
  msgid "Free disk space in account:"
3029
  msgstr ""
3030
 
3031
+ #: src/admin.php:4269, src/templates/wp-admin/settings/tab-status.php:27
3032
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3033
  msgstr ""
3034
 
3035
+ #: src/admin.php:524, src/admin.php:666, src/admin.php:1679,
3036
  #: src/includes/deprecated-actions.php:29,
3037
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3038
  #: src/templates/wp-admin/settings/tab-bar.php:6
3039
  msgid "Existing Backups"
3040
  msgstr ""
3041
 
3042
+ #: src/admin.php:516, src/templates/wp-admin/settings/tab-bar.php:5
3043
  msgid "Current Status"
3044
  msgstr ""
3045
 
3046
+ #: src/admin.php:941
3047
  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."
3048
  msgstr ""
3049
 
3050
+ #: src/admin.php:941
3051
  msgid "To make a backup, just press the Backup Now button."
3052
  msgstr ""
3053
 
3054
+ #: src/admin.php:941
3055
  msgid "Welcome to UpdraftPlus!"
3056
  msgstr ""
3057
 
3123
  msgid "user"
3124
  msgstr ""
3125
 
3126
+ #: src/class-updraftplus.php:1733
3127
  msgid "External database (%s)"
3128
  msgstr ""
3129
 
3140
  msgid "However, subsequent access attempts failed:"
3141
  msgstr ""
3142
 
3143
+ #: src/admin.php:3484
3144
  msgid "External database"
3145
  msgstr ""
3146
 
3147
+ #: src/templates/wp-admin/settings/form-contents.php:332
3148
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
3149
  msgstr ""
3150
 
3151
+ #: src/templates/wp-admin/settings/form-contents.php:261
3152
  msgid "Back up more databases"
3153
  msgstr ""
3154
 
3155
+ #: src/templates/wp-admin/settings/form-contents.php:220
3156
  msgid "First, enter the decryption key"
3157
  msgstr ""
3158
 
3159
+ #: src/templates/wp-admin/settings/form-contents.php:202
3160
  msgid "You can manually decrypt an encrypted database here."
3161
  msgstr ""
3162
 
3163
+ #: src/templates/wp-admin/settings/form-contents.php:188
3164
  msgid "It can also backup external databases."
3165
  msgstr ""
3166
 
3167
+ #: src/templates/wp-admin/settings/form-contents.php:188
3168
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
3169
  msgstr ""
3170
 
3172
  msgid "use UpdraftPlus Premium"
3173
  msgstr ""
3174
 
3175
+ #: src/class-updraftplus.php:4286
3176
  msgid "Decryption failed. The database file is encrypted."
3177
  msgstr ""
3178
 
3180
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
3181
  msgstr ""
3182
 
3183
+ #: src/restorer.php:1758, src/restorer.php:2152, src/restorer.php:2193,
3184
+ #: src/restorer.php:2206
3185
  msgid "An error occurred on the first %s command - aborting run"
3186
  msgstr ""
3187
 
3188
+ #: src/addons/moredatabase.php:105, src/backup.php:1392
3189
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3190
  msgstr ""
3191
 
3192
+ #: src/backup.php:1392
3193
  msgid "database connection attempt failed."
3194
  msgstr ""
3195
 
3201
  msgid "In %s, path names are case sensitive."
3202
  msgstr ""
3203
 
3204
+ #: src/addons/azure.php:577, src/addons/google-enhanced.php:85,
3205
  #: src/addons/onedrive.php:983
3206
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3207
  msgstr ""
3215
  msgid "Enter the path of the %s folder you wish to use here."
3216
  msgstr ""
3217
 
3218
+ #: src/addons/azure.php:570, src/methods/openstack2.php:164
3219
  msgid "Container"
3220
  msgstr ""
3221
 
3276
  msgid "Authenticate with %s"
3277
  msgstr ""
3278
 
3279
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:428
3280
  msgid "Error downloading remote file: Failed to download"
3281
  msgstr ""
3282
 
3283
+ #: src/methods/openstack-base.php:499, src/methods/openstack-base.php:504
3284
  msgid "Region: %s"
3285
  msgstr ""
3286
 
3287
+ #: src/methods/openstack-base.php:498
3288
  msgid "%s error - we accessed the container, but failed to create a file within it"
3289
  msgstr ""
3290
 
3291
+ #: src/methods/openstack-base.php:414
3292
  msgid "The %s object was not found"
3293
  msgstr ""
3294
 
3295
+ #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:337,
3296
+ #: src/methods/openstack-base.php:406
3297
  msgid "Could not access %s container"
3298
  msgstr ""
3299
 
3300
  #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:116,
3301
+ #: src/methods/openstack-base.php:123, src/methods/openstack-base.php:329,
3302
+ #: src/methods/openstack-base.php:394
3303
  msgid "%s error - failed to access the container"
3304
  msgstr ""
3305
 
3361
 
3362
  #: src/addons/migrator.php:391,
3363
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3364
+ #: src/templates/wp-admin/settings/form-contents.php:210
3365
  msgid "This feature requires %s version %s or later"
3366
  msgstr ""
3367
 
3369
  msgid "Failed to unpack the archive"
3370
  msgstr ""
3371
 
3372
+ #: src/class-updraftplus.php:1265
3373
  msgid "Error - failed to download the file"
3374
  msgstr ""
3375
 
3393
  msgid "password/key"
3394
  msgstr ""
3395
 
3396
+ #: src/addons/azure.php:563, src/addons/migrator.php:2208,
3397
+ #: src/addons/sftp.php:439, src/admin.php:713, src/admin.php:4465
3398
  msgid "Key"
3399
  msgstr ""
3400
 
3410
  msgid "SCP/SFTP password/key"
3411
  msgstr ""
3412
 
3413
+ #: src/admin.php:3519
3414
  msgid "Files backup (created by %s)"
3415
  msgstr ""
3416
 
3417
+ #: src/admin.php:3519
3418
  msgid "Files and database WordPress backup (created by %s)"
3419
  msgstr ""
3420
 
3421
+ #: src/addons/importer.php:276, src/admin.php:3513,
3422
+ #: src/includes/class-backup-history.php:279
3423
  msgid "Backup created by: %s."
3424
  msgstr ""
3425
 
3426
+ #: src/admin.php:3482
3427
  msgid "Database (created by %s)"
3428
  msgstr ""
3429
 
3430
+ #: src/admin.php:3476, src/admin.php:3515
3431
  msgid "unknown source"
3432
  msgstr ""
3433
 
3439
  msgid "Upload backup files"
3440
  msgstr ""
3441
 
3442
+ #: src/admin.php:2080
3443
  msgid "This backup was created by %s, and can be imported."
3444
  msgstr ""
3445
 
3446
+ #: src/admin.php:970
3447
  msgid "Read this page for a guide to possible causes and how to fix it."
3448
  msgstr ""
3449
 
3450
+ #: src/admin.php:970
3451
  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."
3452
  msgstr ""
3453
 
3454
+ #: src/admin.php:678, src/includes/class-backup-history.php:286
3455
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3456
  msgstr ""
3457
 
3458
+ #: src/admin.php:677
3459
  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."
3460
  msgstr ""
3461
 
3462
+ #: src/admin.php:677, src/admin.php:678,
3463
+ #: src/includes/class-backup-history.php:286
3464
  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))."
3465
  msgstr ""
3466
 
3467
+ #: src/admin.php:3516, src/includes/class-wpadmin-commands.php:152,
3468
  #: src/restorer.php:1462
3469
  msgid "Backup created by unknown source (%s) - cannot be restored."
3470
  msgstr ""
3485
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3486
  msgstr ""
3487
 
3488
+ #: src/addons/backblaze.php:515, src/methods/cloudfiles.php:246,
3489
+ #: src/methods/dropbox.php:294, src/methods/openstack-base.php:111
3490
  msgid "No settings were found"
3491
  msgstr ""
3492
 
3493
+ #: src/includes/class-backup-history.php:454
3494
  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."
3495
  msgstr ""
3496
 
3497
+ #: src/admin.php:644
3498
  msgid "Rescanning remote and local storage for backup sets..."
3499
  msgstr ""
3500
 
3516
  msgid "Remove"
3517
  msgstr ""
3518
 
3519
+ #: src/methods/s3.php:847
3520
  msgid "Other %s FAQs."
3521
  msgstr ""
3522
 
3523
+ #: src/templates/wp-admin/settings/form-contents.php:332
3524
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3525
  msgstr ""
3526
 
3527
+ #: src/addons/morefiles.php:445, src/admin.php:3216
3528
  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."
3529
  msgstr ""
3530
 
3531
+ #: src/class-updraftplus.php:4621, src/methods/ftp.php:309,
3532
  #: src/restorer.php:1493
3533
  msgid "Your hosting company must enable these functions before %s can work."
3534
  msgstr ""
3535
 
3536
+ #: src/class-updraftplus.php:4621, src/methods/ftp.php:309
3537
  msgid "Your web server's PHP installation has these functions disabled: %s."
3538
  msgstr ""
3539
 
3549
  msgid "regular non-encrypted FTP"
3550
  msgstr ""
3551
 
3552
+ #: src/restorer.php:1666
3553
  msgid "Backup created by:"
3554
  msgstr ""
3555
 
3603
  msgid "Dismiss from main dashboard (for %s weeks)"
3604
  msgstr ""
3605
 
3606
+ #: src/class-updraftplus.php:4671
3607
  msgid "The attempt to undo the double-compression succeeded."
3608
  msgstr ""
3609
 
3610
+ #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4669
3611
  msgid "The attempt to undo the double-compression failed."
3612
  msgstr ""
3613
 
3614
+ #: src/class-updraftplus.php:4641
3615
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3616
  msgstr ""
3617
 
3619
  msgid "Constants"
3620
  msgstr ""
3621
 
3622
+ #: src/backup.php:1629
3623
  msgid "Failed to open database file for reading:"
3624
  msgstr ""
3625
 
3626
+ #: src/backup.php:1440
3627
  msgid "No database tables found"
3628
  msgstr ""
3629
 
3630
+ #: src/backup.php:1438
3631
  msgid "please wait for the rescheduled attempt"
3632
  msgstr ""
3633
 
3644
  msgid "Errors occurred:"
3645
  msgstr ""
3646
 
3647
+ #: src/admin.php:3721
3648
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3649
  msgstr ""
3650
 
3651
+ #: src/templates/wp-admin/settings/form-contents.php:376
3652
  msgid "See this FAQ also."
3653
  msgstr ""
3654
 
3655
+ #: src/templates/wp-admin/settings/form-contents.php:141
3656
  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."
3657
  msgstr ""
3658
 
3668
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3669
  msgstr ""
3670
 
3671
+ #: src/admin.php:945, src/class-updraftplus.php:783
3672
  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)"
3673
  msgstr ""
3674
 
3681
  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."
3682
  msgstr ""
3683
 
3684
+ #: src/addons/moredatabase.php:137, src/admin.php:1421
3685
  msgid "Messages:"
3686
  msgstr ""
3687
 
3688
+ #: src/restorer.php:2046
3689
  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"
3690
  msgstr ""
3691
 
3835
  msgstr ""
3836
 
3837
  #: src/addons/cloudfiles-enhanced.php:139, src/addons/s3-enhanced.php:204,
3838
+ #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:457,
3839
+ #: src/methods/openstack-base.php:459, src/methods/openstack-base.php:480,
3840
  #: src/methods/openstack2.php:33
3841
  msgid "Authorisation failed (check your credentials)"
3842
  msgstr ""
3845
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3846
  msgstr ""
3847
 
3848
+ #: src/admin.php:691, src/central/bootstrap.php:535
3849
  msgid "Create"
3850
  msgstr ""
3851
 
3852
+ #: src/admin.php:653
3853
  msgid "Trying..."
3854
  msgstr ""
3855
 
3856
+ #: src/admin.php:652
3857
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3858
  msgstr ""
3859
 
3860
+ #: src/admin.php:663, src/admin.php:3997
3861
  msgid "Error data:"
3862
  msgstr ""
3863
 
3864
+ #: src/admin.php:3672
3865
  msgid "Backup does not exist in the backup history"
3866
  msgstr ""
3867
 
3868
+ #: src/admin.php:2628
3869
  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."
3870
  msgstr ""
3871
 
3872
+ #: src/restorer.php:1733
3873
  msgid "Split line to avoid exceeding maximum packet size"
3874
  msgstr ""
3875
 
3876
+ #: src/restorer.php:1613
3877
  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)"
3878
  msgstr ""
3879
 
3905
  msgid "Email reports"
3906
  msgstr ""
3907
 
3908
+ #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1746
3909
  msgid "%s checksum: %s"
3910
  msgstr ""
3911
 
3912
+ #: src/class-updraftplus.php:1714, src/class-updraftplus.php:1716
3913
  msgid "files: %s"
3914
  msgstr ""
3915
 
3921
  msgid "Debugging information"
3922
  msgstr ""
3923
 
3924
+ #: src/addons/reporting.php:211, src/admin.php:3415
3925
  msgid "Uploaded to:"
3926
  msgstr ""
3927
 
3966
  msgid "%s authentication"
3967
  msgstr ""
3968
 
3969
+ #: src/addons/onedrive.php:718, src/class-updraftplus.php:468,
3970
  #: src/methods/dropbox.php:176, src/methods/dropbox.php:598,
3971
  #: src/methods/dropbox.php:625, src/methods/dropbox.php:638,
3972
  #: src/methods/dropbox.php:784
3981
  msgid "%s did not return the expected response - check your log file for more details"
3982
  msgstr ""
3983
 
3984
+ #: src/methods/s3.php:293
3985
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3986
  msgstr ""
3987
 
3993
  msgid "Your site's admin email address (%s) will be used."
3994
  msgstr ""
3995
 
3996
+ #: src/admin.php:700, src/methods/updraftvault.php:302,
3997
  #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3998
  msgid "Connect"
3999
  msgstr ""
4000
 
4001
+ #: src/templates/wp-admin/settings/form-contents.php:290
4002
  msgid "For more reporting features, use the Reporting add-on."
4003
  msgstr ""
4004
 
4005
+ #: src/class-updraftplus.php:4361
4006
  msgid "(version: %s)"
4007
  msgstr ""
4008
 
4009
  #: src/addons/reporting.php:455, src/addons/reporting.php:455,
4010
+ #: src/admin.php:642
4011
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
4012
  msgstr ""
4013
 
4014
+ #: src/addons/reporting.php:455, src/admin.php:641
4015
  msgid "When the Email storage method is enabled, also send the entire backup"
4016
  msgstr ""
4017
 
4018
+ #: src/addons/reporting.php:170, src/backup.php:965
4019
  msgid "Latest status:"
4020
  msgstr ""
4021
 
4022
+ #: src/backup.php:964
4023
  msgid "Backup contains:"
4024
  msgstr ""
4025
 
4026
+ #: src/backup.php:921
4027
  msgid "Backed up: %s"
4028
  msgstr ""
4029
 
4030
+ #: src/addons/reporting.php:253, src/backup.php:915
4031
  msgid "The log file has been attached to this email."
4032
  msgstr ""
4033
 
4034
+ #: src/backup.php:879
4035
  msgid "Unknown/unexpected error - please raise a support request"
4036
  msgstr ""
4037
 
4038
+ #: src/backup.php:876
4039
  msgid "Database only (files were not part of this particular schedule)"
4040
  msgstr ""
4041
 
4042
+ #: src/backup.php:876
4043
  msgid "Database (files backup has not completed)"
4044
  msgstr ""
4045
 
4046
+ #: src/backup.php:873
4047
  msgid "Files only (database was not part of this particular schedule)"
4048
  msgstr ""
4049
 
4050
+ #: src/backup.php:873
4051
  msgid "Files (database backup has not completed)"
4052
  msgstr ""
4053
 
4054
+ #: src/admin.php:297, src/backup.php:871
4055
  msgid "Files and database"
4056
  msgstr ""
4057
 
4058
+ #: src/options.php:192
4059
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4060
  msgstr ""
4061
 
4062
+ #: src/options.php:192
4063
  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>."
4064
  msgstr ""
4065
 
4066
+ #: src/options.php:192
4067
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4068
  msgstr ""
4069
 
4070
+ #: src/options.php:192
4071
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4072
  msgstr ""
4073
 
4074
+ #: src/options.php:192
4075
  msgid "UpdraftPlus warning:"
4076
  msgstr ""
4077
 
4137
  msgstr ""
4138
 
4139
  #: src/methods/email.php:76,
4140
+ #: src/templates/wp-admin/settings/form-contents.php:271,
4141
  #: src/templates/wp-admin/settings/tab-addons.php:199,
4142
  #: src/templates/wp-admin/settings/tab-addons.php:200
4143
  msgid "Reporting"
4144
  msgstr ""
4145
 
4146
+ #: src/admin.php:4462
4147
  msgid "Options (raw)"
4148
  msgstr ""
4149
 
4150
+ #: src/addons/reporting.php:453, src/admin.php:640
4151
  msgid "Send a report only when there are warnings/errors"
4152
  msgstr ""
4153
 
4154
+ #: src/restorer.php:1677
4155
  msgid "Content URL:"
4156
  msgstr ""
4157
 
4159
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4160
  msgstr ""
4161
 
4162
+ #: src/templates/wp-admin/settings/form-contents.php:174
4163
  msgid "See also the \"More Files\" add-on from our shop."
4164
  msgstr ""
4165
 
4166
+ #: src/backup.php:3038, src/class-updraftplus.php:796
4167
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4168
  msgstr ""
4169
 
4170
+ #: src/class-updraftplus.php:780
4171
  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)"
4172
  msgstr ""
4173
 
4303
  msgid "Drop backup files here"
4304
  msgstr ""
4305
 
4306
+ #: src/admin.php:2507
4307
  msgid "Does nothing happen when you attempt backups?"
4308
  msgstr ""
4309
 
4310
+ #: src/admin.php:651
4311
  msgid "The web server returned an error code (try again, or check your web server logs)"
4312
  msgstr ""
4313
 
4314
+ #: src/admin.php:649
4315
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
4316
  msgstr ""
4317
 
4318
+ #: src/admin.php:646
4319
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4320
  msgstr ""
4321
 
4322
+ #: src/restorer.php:1671
4323
  msgid "Site home:"
4324
  msgstr ""
4325
 
4335
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4336
  msgstr ""
4337
 
4338
+ #: src/addons/azure.php:365, src/methods/stream-base.php:124,
4339
  #: src/methods/stream-base.php:129
4340
  msgid "Upload failed"
4341
  msgstr ""
4342
 
4343
+ #: src/templates/wp-admin/settings/form-contents.php:132
4344
  msgid "You can send a backup to more than one destination with an add-on."
4345
  msgstr ""
4346
 
4347
+ #: src/admin.php:2846
4348
  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."
4349
  msgstr ""
4350
 
4351
+ #: src/admin.php:2744
4352
  msgid "(%s%%, file %s of %s)"
4353
  msgstr ""
4354
 
4385
  msgid "Backup is of: %s."
4386
  msgstr ""
4387
 
4388
+ #: src/admin.php:739
4389
  msgid "%s settings test result:"
4390
  msgstr ""
4391
 
4392
+ #: src/admin.php:3583, src/admin.php:3585
4393
  msgid "(Not finished)"
4394
  msgstr ""
4395
 
4396
+ #: src/admin.php:3585
4397
  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."
4398
  msgstr ""
4399
 
4400
+ #: src/templates/wp-admin/settings/form-contents.php:359
4401
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
4402
  msgstr ""
4403
 
4404
+ #: src/templates/wp-admin/settings/form-contents.php:359
4405
  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)."
4406
  msgstr ""
4407
 
4408
+ #: src/admin.php:2841
4409
  msgid "Job ID: %s"
4410
  msgstr ""
4411
 
4412
+ #: src/admin.php:2826
4413
  msgid "last activity: %ss ago"
4414
  msgstr ""
4415
 
4416
+ #: src/admin.php:2825
4417
  msgid "next resumption: %d (after %ss)"
4418
  msgstr ""
4419
 
4420
+ #: src/admin.php:2808, src/central/bootstrap.php:424,
4421
+ #: src/central/bootstrap.php:431, src/methods/updraftvault.php:382,
4422
  #: src/methods/updraftvault.php:467
4423
  msgid "Unknown"
4424
  msgstr ""
4425
 
4426
+ #: src/admin.php:2758
4427
  msgid "Backup finished"
4428
  msgstr ""
4429
 
4430
+ #: src/admin.php:2753
4431
  msgid "Waiting until scheduled time to retry because of errors"
4432
  msgstr ""
4433
 
4434
+ #: src/admin.php:2749
4435
  msgid "Pruning old backup sets"
4436
  msgstr ""
4437
 
4438
+ #: src/admin.php:2737
4439
  msgid "Uploading files to remote storage"
4440
  msgstr ""
4441
 
4442
+ #: src/admin.php:2806
4443
  msgid "Encrypted database"
4444
  msgstr ""
4445
 
4446
+ #: src/admin.php:2798
4447
  msgid "Encrypting database"
4448
  msgstr ""
4449
 
4450
+ #: src/admin.php:2772
4451
  msgid "Created database backup"
4452
  msgstr ""
4453
 
4454
+ #: src/admin.php:2785
4455
  msgid "table: %s"
4456
  msgstr ""
4457
 
4458
+ #: src/admin.php:2783
4459
  msgid "Creating database backup"
4460
  msgstr ""
4461
 
4462
+ #: src/admin.php:2731
4463
  msgid "Created file backup zips"
4464
  msgstr ""
4465
 
4466
+ #: src/admin.php:2718
4467
  msgid "Creating file backup zips"
4468
  msgstr ""
4469
 
4470
+ #: src/admin.php:2713
4471
  msgid "Backup begun"
4472
  msgstr ""
4473
 
4474
+ #: src/admin.php:2556
4475
  msgid "Backups in progress:"
4476
  msgstr ""
4477
 
4478
+ #: src/admin.php:949
4479
  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."
4480
  msgstr ""
4481
 
4491
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4492
  msgstr ""
4493
 
4494
+ #: src/class-updraftplus.php:2830
4495
  msgid "The backup has not finished; a resumption is scheduled"
4496
  msgstr ""
4497
 
4498
+ #: src/class-updraftplus.php:2018
4499
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4500
  msgstr ""
4501
 
4505
  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)."
4506
  msgstr ""
4507
 
4508
+ #: src/admin.php:2378
4509
  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)."
4510
  msgstr ""
4511
 
4512
+ #: src/addons/autobackup.php:1085, src/admin.php:693
4513
  msgid "Proceed with update"
4514
  msgstr ""
4515
 
4584
  msgid "Support"
4585
  msgstr ""
4586
 
4587
+ #: src/class-updraftplus.php:4562
4588
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4589
  msgstr ""
4590
 
4591
+ #: src/class-updraftplus.php:4554
4592
  msgid "This database backup is missing core WordPress tables: %s"
4593
  msgstr ""
4594
 
4595
+ #: src/class-updraftplus.php:4410
4596
  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."
4597
  msgstr ""
4598
 
4599
+ #: src/class-updraftplus.php:4409, src/class-updraftplus.php:4416
4600
  msgid "%s version: %s"
4601
  msgstr ""
4602
 
4603
+ #: src/class-updraftplus.php:4303
4604
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4605
  msgstr ""
4606
 
4607
+ #: src/addons/autobackup.php:1053, src/admin.php:782,
4608
  #: src/includes/updraftplus-notices.php:171
4609
  msgid "Be safe with an automatic backup"
4610
  msgstr ""
4611
 
4612
+ #: src/admin.php:2330
4613
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4614
  msgstr ""
4615
 
4616
+ #: src/admin.php:687
4617
  msgid "The file was uploaded."
4618
  msgstr ""
4619
 
4620
+ #: src/admin.php:686
4621
  msgid "Unknown server response status:"
4622
  msgstr ""
4623
 
4624
+ #: src/admin.php:685
4625
  msgid "Unknown server response:"
4626
  msgstr ""
4627
 
4628
+ #: src/admin.php:684
4629
  msgid "This decryption key will be attempted:"
4630
  msgstr ""
4631
 
4632
+ #: src/admin.php:683
4633
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4634
  msgstr ""
4635
 
4636
+ #: src/admin.php:682
4637
  msgid "Upload error"
4638
  msgstr ""
4639
 
4640
+ #: src/admin.php:681
4641
  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)."
4642
  msgstr ""
4643
 
4644
+ #: src/admin.php:680
4645
  msgid "Upload error:"
4646
  msgstr ""
4647
 
4648
+ #: src/admin.php:679
4649
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
4650
  msgstr ""
4651
 
4652
+ #: src/admin.php:670
4653
  msgid "Download to your computer"
4654
  msgstr ""
4655
 
4656
+ #: src/admin.php:669
4657
  msgid "Delete from your web server"
4658
  msgstr ""
4659
 
4660
+ #: src/admin.php:3553
4661
  msgid "You appear to be missing one or more archives from this multi-archive set."
4662
  msgstr ""
4663
 
4664
+ #: src/admin.php:3550
4665
  msgid "(%d archive(s) in set)."
4666
  msgstr ""
4667
 
4668
+ #: src/templates/wp-admin/settings/form-contents.php:336
4669
  msgid "Split archives every:"
4670
  msgstr ""
4671
 
4673
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4674
  msgstr ""
4675
 
4676
+ #: src/admin.php:660
4677
  msgid "Warnings:"
4678
  msgstr ""
4679
 
4680
+ #: src/admin.php:659
4681
  msgid "Error: the server sent an empty response."
4682
  msgstr ""
4683
 
4684
+ #: src/admin.php:2091
4685
  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?"
4686
  msgstr ""
4687
 
4717
  msgid "No such backup set exists"
4718
  msgstr ""
4719
 
4720
+ #: src/admin.php:1297
4721
  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"
4722
  msgstr ""
4723
 
4725
  msgid "Moving unpacked backup into place..."
4726
  msgstr ""
4727
 
4728
+ #: src/backup.php:2744, src/backup.php:2998
4729
  msgid "Failed to open the zip file (%s) - %s"
4730
  msgstr ""
4731
 
4733
  msgid "WordPress root directory server path: %s"
4734
  msgstr ""
4735
 
4736
+ #: src/methods/s3.php:852
4737
  msgid "%s end-point"
4738
  msgstr ""
4739
 
4740
+ #: src/methods/s3.php:814
4741
  msgid "... and many more!"
4742
  msgstr ""
4743
 
4744
+ #: src/methods/s3generic.php:59, src/methods/s3generic.php:68
4745
  msgid "S3 (Compatible)"
4746
  msgstr ""
4747
 
4748
+ #: src/admin.php:1211
4749
  msgid "File is not locally present - needs retrieving from remote storage"
4750
  msgstr ""
4751
 
4752
+ #: src/admin.php:3853
4753
  msgid "Looking for %s archive: file name: %s"
4754
  msgstr ""
4755
 
4756
+ #: src/admin.php:3814
4757
  msgid "Final checks"
4758
  msgstr ""
4759
 
4760
+ #: src/templates/wp-admin/settings/form-contents.php:342
4761
  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)."
4762
  msgstr ""
4763
 
4764
+ #: src/templates/wp-admin/settings/form-contents.php:217
4765
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4766
  msgstr ""
4767
 
4768
+ #: src/admin.php:3205
4769
  msgid "Your wp-content directory server path: %s"
4770
  msgstr ""
4771
 
4772
+ #: src/admin.php:676
4773
  msgid "Raw backup history"
4774
  msgstr ""
4775
 
4777
  msgid "Show raw backup and file list"
4778
  msgstr ""
4779
 
4780
+ #: src/admin.php:658
4781
  msgid "Processing files - please wait..."
4782
  msgstr ""
4783
 
4784
+ #: src/admin.php:3999,
4785
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4786
  msgid "Please consult this FAQ for help on what to do about it."
4787
  msgstr ""
4790
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4791
  msgstr ""
4792
 
4793
+ #: src/class-updraftplus.php:4311
4794
  msgid "Failed to open database file."
4795
  msgstr ""
4796
 
4797
+ #: src/admin.php:4431
4798
  msgid "Known backups (raw)"
4799
  msgstr ""
4800
 
4810
  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."
4811
  msgstr ""
4812
 
4813
+ #: src/admin.php:3873
4814
  msgid "file is size:"
4815
  msgstr ""
4816
 
4817
  #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4818
+ #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:949,
4819
+ #: src/admin.php:2335, src/backup.php:3045, src/class-updraftplus.php:4499,
4820
+ #: src/updraftplus.php:156
4821
  msgid "Go here for more information."
4822
  msgstr ""
4823
 
4824
+ #: src/admin.php:657
4825
  msgid "Some files are still downloading or being processed - please wait."
4826
  msgstr ""
4827
 
4828
+ #: src/class-updraftplus.php:4382, src/class-updraftplus.php:4400
4829
  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."
4830
  msgstr ""
4831
 
4869
  msgid "Error - no such file exists at %s"
4870
  msgstr ""
4871
 
4872
+ #: src/addons/azure.php:218, src/methods/addon-base-v2.php:219,
4873
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4874
+ #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:428,
4875
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4876
  #: src/methods/stream-base.php:285
4877
  msgid "%s Error"
4881
  msgid "%s error - failed to upload file"
4882
  msgstr ""
4883
 
4884
+ #: src/class-updraftplus.php:1157, src/methods/cloudfiles.php:223
4885
  msgid "%s error - failed to re-assemble chunks"
4886
  msgstr ""
4887
 
4888
  #: src/methods/cloudfiles.php:107, src/methods/cloudfiles.php:111,
4889
  #: src/methods/cloudfiles.php:252, src/methods/cloudfiles.php:298,
4890
  #: src/methods/cloudfiles.php:349, src/methods/cloudfiles.php:353,
4891
+ #: src/methods/openstack-base.php:44, src/methods/openstack-base.php:325,
4892
+ #: src/methods/openstack-base.php:390, src/methods/openstack-base.php:463,
4893
+ #: src/methods/openstack-base.php:466, src/methods/openstack-base.php:484,
4894
+ #: src/methods/openstack-base.php:489
4895
  msgid "%s authentication failed"
4896
  msgstr ""
4897
 
4898
  #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4899
+ #: src/admin.php:2036, src/admin.php:2083, src/admin.php:2091,
4900
+ #: src/class-updraftplus.php:925, src/class-updraftplus.php:931,
4901
+ #: src/class-updraftplus.php:4284, src/class-updraftplus.php:4286,
4902
+ #: src/class-updraftplus.php:4433, src/class-updraftplus.php:4440,
4903
+ #: src/class-updraftplus.php:4478, src/methods/googledrive.php:369,
4904
+ #: src/methods/s3.php:322
4905
  msgid "Error: %s"
4906
  msgstr ""
4907
 
4908
+ #: src/admin.php:3142
4909
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4910
  msgstr ""
4911
 
4912
+ #: src/admin.php:3140
4913
  msgid "Backup directory specified does <b>not</b> exist."
4914
  msgstr ""
4915
 
4916
+ #: src/admin.php:2853, src/admin.php:3096
4917
  msgid "Warning: %s"
4918
  msgstr ""
4919
 
4921
  msgid "Last backup job run:"
4922
  msgstr ""
4923
 
4924
+ #: src/backup.php:2766
4925
  msgid "A very large file was encountered: %s (size: %s Mb)"
4926
  msgstr ""
4927
 
4928
+ #: src/backup.php:2172
4929
  msgid "%s: unreadable file - could not be backed up"
4930
  msgstr ""
4931
 
4932
+ #: src/backup.php:1529
4933
  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"
4934
  msgstr ""
4935
 
4936
+ #: src/backup.php:1648
4937
  msgid "An error occurred whilst closing the final database file"
4938
  msgstr ""
4939
 
4940
+ #: src/backup.php:906
4941
  msgid "Warnings encountered:"
4942
  msgstr ""
4943
 
4944
+ #: src/class-updraftplus.php:2818
4945
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4946
  msgstr ""
4947
 
4948
+ #: src/class-updraftplus.php:809
4949
  msgid "Your free disk space is very low - only %s Mb remain"
4950
  msgstr ""
4951
 
4981
  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."
4982
  msgstr ""
4983
 
4984
+ #: src/methods/s3.php:828
4985
  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."
4986
  msgstr ""
4987
 
4988
+ #: src/methods/s3.php:1084
4989
  msgid "Please check your access credentials."
4990
  msgstr ""
4991
 
4992
+ #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1062
4993
  msgid "The error reported by %s was:"
4994
  msgstr ""
4995
 
4997
  msgid "Please supply the requested information, and then continue."
4998
  msgstr ""
4999
 
5000
+ #: src/class-updraftplus.php:4451, src/restorer.php:1707
5001
  msgid "Site information:"
5002
  msgstr ""
5003
 
5004
+ #: src/restorer.php:1574
5005
  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."
5006
  msgstr ""
5007
 
5008
+ #: src/addons/migrator.php:341, src/admin.php:2330,
5009
+ #: src/class-updraftplus.php:4444, src/restorer.php:2046
5010
  msgid "Warning:"
5011
  msgstr ""
5012
 
5013
+ #: src/class-updraftplus.php:4433, src/class-updraftplus.php:4436,
5014
  #: src/restorer.php:154
5015
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5016
  msgstr ""
5017
 
5018
+ #: src/admin.php:3841
5019
  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."
5020
  msgstr ""
5021
 
5022
+ #: src/admin.php:3271, src/methods/updraftvault.php:286
5023
  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."
5024
  msgstr ""
5025
 
5026
+ #: src/admin.php:694
5027
  msgid "Close"
5028
  msgstr ""
5029
 
5030
  #: src/addons/autobackup.php:330, src/addons/autobackup.php:422,
5031
+ #: src/admin.php:650, src/methods/remotesend.php:66,
5032
  #: src/methods/remotesend.php:74, src/methods/remotesend.php:225,
5033
  #: src/methods/remotesend.php:242
5034
  msgid "Unexpected response:"
5035
  msgstr ""
5036
 
5037
+ #: src/addons/reporting.php:451, src/admin.php:645
5038
  msgid "To send to more than one address, separate each address with a comma."
5039
  msgstr ""
5040
 
5041
+ #: src/admin.php:674
5042
  msgid "PHP information"
5043
  msgstr ""
5044
 
5074
  msgid "Also delete from remote storage"
5075
  msgstr ""
5076
 
5077
+ #: src/admin.php:2583
5078
  msgid "Latest UpdraftPlus.com news:"
5079
  msgstr ""
5080
 
5091
  msgid "News"
5092
  msgstr ""
5093
 
5094
+ #: src/admin.php:1475, src/includes/class-wpadmin-commands.php:465
5095
  msgid "Backup set not found"
5096
  msgstr ""
5097
 
5113
  msgid "Blog link"
5114
  msgstr ""
5115
 
5116
+ #: src/admin.php:738
5117
  msgid "Testing %s Settings..."
5118
  msgstr ""
5119
 
5121
  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."
5122
  msgstr ""
5123
 
5124
+ #: src/admin.php:965
5125
  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."
5126
  msgstr ""
5127
 
5128
+ #: src/admin.php:965
5129
  msgid "Notice"
5130
  msgstr ""
5131
 
5132
+ #: src/backup.php:888
5133
  msgid "Errors encountered:"
5134
  msgstr ""
5135
 
5136
+ #: src/admin.php:643
5137
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5138
  msgstr ""
5139
 
5140
+ #: src/admin.php:656
5141
  msgid "Begun looking for this entity"
5142
  msgstr ""
5143
 
5157
  msgid "Time taken (seconds):"
5158
  msgstr ""
5159
 
5160
+ #: src/addons/migrator.php:1141, src/admin.php:661
5161
  msgid "Errors:"
5162
  msgstr ""
5163
 
5219
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5220
  msgstr ""
5221
 
5222
+ #: src/addons/multisite.php:659
5223
  msgid "Blog uploads"
5224
  msgstr ""
5225
 
5226
+ #: src/addons/migrator.php:385, src/addons/multisite.php:652
5227
  msgid "Must-use plugins"
5228
  msgstr ""
5229
 
5230
+ #: src/addons/multisite.php:174
5231
  msgid "Multisite Install"
5232
  msgstr ""
5233
 
5323
  msgid "WordPress Core"
5324
  msgstr ""
5325
 
5326
+ #: src/methods/addon-base-v2.php:302, src/methods/stream-base.php:315
5327
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5328
  msgstr ""
5329
 
5330
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5331
+ #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2907,
5332
+ #: src/admin.php:2942, src/admin.php:2951, src/methods/addon-base-v2.php:290,
5333
  #: src/methods/stream-base.php:301
5334
  msgid "Failed"
5335
  msgstr ""
5422
  msgid "You do not appear to be authenticated with Dropbox"
5423
  msgstr ""
5424
 
5425
+ #: src/methods/s3.php:1079
5426
  msgid "The communication with %s was not encrypted."
5427
  msgstr ""
5428
 
5429
+ #: src/methods/s3.php:1077
5430
  msgid "The communication with %s was encrypted."
5431
  msgstr ""
5432
 
5433
+ #: src/addons/googlecloud.php:756, src/methods/s3.php:1074
5434
  msgid "We accessed the bucket, and were able to create files within it."
5435
  msgstr ""
5436
 
5437
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5438
+ #: src/methods/s3.php:1072, src/methods/s3.php:1084
5439
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5440
  msgstr ""
5441
 
5442
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5443
+ #: src/methods/s3.php:1072, src/methods/s3.php:1084
5444
  msgid "Failure"
5445
  msgstr ""
5446
 
5447
+ #: src/methods/s3.php:1060
5448
  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)."
5449
  msgstr ""
5450
 
5451
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5452
+ #: src/methods/s3.php:1054
5453
  msgid "Region"
5454
  msgstr ""
5455
 
5456
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5457
+ #: src/methods/s3.php:1036
5458
  msgid "Failure: No bucket details were given."
5459
  msgstr ""
5460
 
5461
+ #: src/methods/s3.php:1014
5462
  msgid "API secret"
5463
  msgstr ""
5464
 
5465
+ #: src/methods/s3.php:889
5466
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5467
  msgstr ""
5468
 
5469
+ #: src/methods/s3.php:888
5470
  msgid "%s location"
5471
  msgstr ""
5472
 
5473
+ #: src/methods/s3.php:884
5474
  msgid "%s secret key"
5475
  msgstr ""
5476
 
5477
+ #: src/methods/s3.php:880
5478
  msgid "%s access key"
5479
  msgstr ""
5480
 
5481
+ #: src/methods/s3.php:845
5482
  msgid "If you see errors about SSL certificates, then please go here for help."
5483
  msgstr ""
5484
 
5485
+ #: src/methods/s3.php:843
5486
  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."
5487
  msgstr ""
5488
 
5489
+ #: src/methods/s3.php:463, src/methods/s3.php:575, src/methods/s3.php:647,
5490
+ #: src/methods/s3.php:750
5491
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5492
  msgstr ""
5493
 
5494
+ #: src/methods/s3.php:733, src/methods/s3.php:743, src/methods/s3.php:779
5495
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5496
  msgstr ""
5497
 
5498
+ #: src/methods/s3.php:441
5499
  msgid "%s re-assembly error (%s): (see log file for more)"
5500
  msgstr ""
5501
 
5502
+ #: src/methods/s3.php:437
5503
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5504
  msgstr ""
5505
 
5506
+ #: src/methods/s3.php:421
5507
  msgid "%s chunk %s: upload failed"
5508
  msgstr ""
5509
 
5510
+ #: src/methods/s3.php:411
5511
  msgid "%s error: file %s was shortened unexpectedly"
5512
  msgstr ""
5513
 
5514
+ #: src/methods/s3.php:389
5515
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5516
  msgstr ""
5517
 
5523
  msgid "WordPress Backup"
5524
  msgstr ""
5525
 
5526
+ #: src/methods/cloudfiles.php:582, src/methods/openstack-base.php:503
5527
  msgid "We accessed the container, and were able to create files within it."
5528
  msgstr ""
5529
 
5531
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5532
  msgstr ""
5533
 
5534
+ #: src/methods/cloudfiles.php:551, src/methods/openstack-base.php:445
5535
  msgid "Failure: No container details were given."
5536
  msgstr ""
5537
 
5542
  msgstr ""
5543
 
5544
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5545
+ #: src/methods/s3.php:1010
5546
  msgid "API key"
5547
  msgstr ""
5548
 
5550
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5551
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5552
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5553
+ #: src/admin.php:714, src/methods/addon-base-v2.php:282,
5554
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles-new.php:178,
5555
  #: src/methods/cloudfiles.php:526, src/methods/cloudfiles.php:531,
5556
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5557
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5558
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5559
+ #: src/methods/s3.php:1010, src/methods/s3.php:1014
5560
  msgid "Failure: No %s was given."
5561
  msgstr ""
5562
 
5563
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5564
+ #: src/methods/openstack-base.php:549, src/methods/s3.php:832
5565
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5566
  msgstr ""
5567
 
5600
  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."
5601
  msgstr ""
5602
 
5603
+ #: src/admin.php:737, src/methods/backup-module.php:253
5604
  msgid "Test %s Settings"
5605
  msgstr ""
5606
 
5607
+ #: src/class-updraftplus.php:1197, src/class-updraftplus.php:1241,
5608
  #: src/methods/cloudfiles.php:405, src/methods/stream-base.php:265
5609
  msgid "Error opening local file: Failed to download"
5610
  msgstr ""
5615
 
5616
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5617
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5618
+ #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:288,
5619
+ #: src/methods/s3.php:357, src/methods/s3.php:369, src/methods/s3.php:370
5620
  msgid "%s Error: Failed to upload"
5621
  msgstr ""
5622
 
5623
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5624
+ #: src/class-updraftplus.php:1055, src/methods/cloudfiles.php:142,
5625
  #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5626
  msgid "%s Error: Failed to open local file"
5627
  msgstr ""
5670
 
5671
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5672
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5673
+ #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:539,
5674
+ #: src/methods/s3.php:803, src/methods/stream-base.php:218
5675
  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."
5676
  msgstr ""
5677
 
5703
 
5704
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5705
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5706
+ #: src/methods/addon-base-v2.php:299, src/methods/cloudfiles.php:582,
5707
+ #: src/methods/googledrive.php:428, src/methods/openstack-base.php:503,
5708
+ #: src/methods/s3.php:1074, src/methods/stream-base.php:312
5709
  msgid "Success"
5710
  msgstr ""
5711
 
5744
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5745
  msgstr ""
5746
 
5747
+ #: src/addons/migrator.php:1775, src/admin.php:1239, src/admin.php:2910,
5748
+ #: src/admin.php:2944, src/admin.php:2948, src/admin.php:3871,
5749
+ #: src/restorer.php:2286, src/restorer.php:2391
5750
  msgid "OK"
5751
  msgstr ""
5752
 
5753
+ #: src/restorer.php:2280, src/restorer.php:2355
5754
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5755
  msgstr ""
5756
 
5757
+ #: src/addons/migrator.php:1154, src/restorer.php:2183
5758
  msgid "the database query being run was:"
5759
  msgstr ""
5760
 
5761
+ #: src/restorer.php:1885
5762
  msgid "will restore as:"
5763
  msgstr ""
5764
 
5765
+ #: src/class-updraftplus.php:4422, src/restorer.php:1689,
5766
+ #: src/restorer.php:1778, src/restorer.php:1804
5767
  msgid "Old table prefix:"
5768
  msgstr ""
5769
 
5770
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5771
+ #: src/backup.php:962, src/class-updraftplus.php:4361
5772
  msgid "Backup of:"
5773
  msgstr ""
5774
 
5840
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5841
  msgstr ""
5842
 
5843
+ #: src/admin.php:3879, src/admin.php:3880
5844
  msgid "Could not find one of the files for restoration"
5845
  msgstr ""
5846
 
5847
+ #: src/admin.php:3989
5848
  msgid "Error message"
5849
  msgstr ""
5850
 
5851
+ #: src/admin.php:3876
5852
  msgid "The backup records do not contain information about the proper size of this file."
5853
  msgstr ""
5854
 
5855
+ #: src/admin.php:3868
5856
  msgid "Archive is expected to be size:"
5857
  msgstr ""
5858
 
5859
+ #: src/admin.php:3765
5860
  msgid "If making a request for support, please include this information:"
5861
  msgstr ""
5862
 
5863
+ #: src/admin.php:3764
5864
  msgid "ABORT: Could not find the information on which entities to restore."
5865
  msgstr ""
5866
 
5867
+ #: src/admin.php:3719
5868
  msgid "UpdraftPlus Restoration: Progress"
5869
  msgstr ""
5870
 
5871
+ #: src/admin.php:3671
5872
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5873
  msgstr ""
5874
 
5875
+ #: src/admin.php:3613
5876
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5877
  msgstr ""
5878
 
5879
+ #: src/admin.php:3622
5880
  msgid "Delete this backup set"
5881
  msgstr ""
5882
 
5883
+ #: src/admin.php:3283
5884
  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."
5885
  msgstr ""
5886
 
5887
+ #: src/admin.php:3280
5888
  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."
5889
  msgstr ""
5890
 
5891
+ #: src/admin.php:3278
5892
  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)."
5893
  msgstr ""
5894
 
5895
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5896
+ #: src/methods/openstack-base.php:549, src/methods/s3.php:832
5897
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5898
  msgstr ""
5899
 
5900
+ #: src/templates/wp-admin/settings/form-contents.php:399
5901
  msgid "Save Changes"
5902
  msgstr ""
5903
 
5904
+ #: src/templates/wp-admin/settings/form-contents.php:376
5905
  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."
5906
  msgstr ""
5907
 
5908
+ #: src/templates/wp-admin/settings/form-contents.php:375
5909
  msgid "Disable SSL entirely where possible"
5910
  msgstr ""
5911
 
5912
+ #: src/templates/wp-admin/settings/form-contents.php:371
5913
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5914
  msgstr ""
5915
 
5916
+ #: src/templates/wp-admin/settings/form-contents.php:371
5917
  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."
5918
  msgstr ""
5919
 
5920
+ #: src/templates/wp-admin/settings/form-contents.php:370
5921
  msgid "Do not verify SSL certificates"
5922
  msgstr ""
5923
 
5924
+ #: src/templates/wp-admin/settings/form-contents.php:366
5925
  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."
5926
  msgstr ""
5927
 
5928
+ #: src/templates/wp-admin/settings/form-contents.php:365
5929
  msgid "Use the server's SSL certificates"
5930
  msgstr ""
5931
 
5932
+ #: src/admin.php:3144
5933
  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."
5934
  msgstr ""
5935
 
5936
+ #: src/admin.php:3144
5937
  msgid "click here"
5938
  msgstr ""
5939
 
5940
+ #: src/admin.php:3144
5941
  msgid "or, to reset this option"
5942
  msgstr ""
5943
 
5944
+ #: src/admin.php:3144
5945
  msgid "Follow this link to attempt to create the directory and set the permissions"
5946
  msgstr ""
5947
 
5948
+ #: src/admin.php:3136
5949
  msgid "Backup directory specified is writable, which is good."
5950
  msgstr ""
5951
 
5952
+ #: src/templates/wp-admin/settings/form-contents.php:346
5953
  msgid "Backup directory"
5954
  msgstr ""
5955
 
5956
+ #: src/templates/wp-admin/settings/form-contents.php:341
5957
  msgid "Delete local backup"
5958
  msgstr ""
5959
 
5960
+ #: src/templates/wp-admin/settings/form-contents.php:321
5961
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5962
  msgstr ""
5963
 
5964
+ #: src/templates/wp-admin/settings/form-contents.php:321
5965
  msgid "Show expert settings"
5966
  msgstr ""
5967
 
5968
+ #: src/templates/wp-admin/settings/form-contents.php:320
5969
  msgid "Expert settings"
5970
  msgstr ""
5971
 
5972
+ #: src/templates/wp-admin/settings/form-contents.php:331
5973
  msgid "Debug mode"
5974
  msgstr ""
5975
 
5976
+ #: src/templates/wp-admin/settings/form-contents.php:316
5977
  msgid "Advanced / Debugging Settings"
5978
  msgstr ""
5979
 
5980
+ #: src/admin.php:673
5981
  msgid "Requesting start of backup..."
5982
  msgstr ""
5983
 
5984
+ #: src/addons/morefiles.php:297, src/admin.php:689
5985
  msgid "Cancel"
5986
  msgstr ""
5987
 
5988
+ #: src/addons/reporting.php:233, src/admin.php:3427
5989
  msgid "None"
5990
  msgstr ""
5991
 
5993
  msgid "Choose your remote storage"
5994
  msgstr ""
5995
 
5996
+ #: src/templates/wp-admin/settings/form-contents.php:205
5997
  msgid "Manually decrypt a database backup file"
5998
  msgstr ""
5999
 
6000
+ #: src/templates/wp-admin/settings/form-contents.php:184
6001
  msgid "Database encryption phrase"
6002
  msgstr ""
6003
 
6004
+ #: src/templates/wp-admin/settings/form-contents.php:283,
6005
  #: src/udaddons/options.php:133
6006
  msgid "Email"
6007
  msgstr ""
6008
 
6009
+ #: src/templates/wp-admin/settings/form-contents.php:174
6010
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6011
  msgstr ""
6012
 
6013
+ #: src/addons/morefiles.php:443, src/admin.php:3214
6014
  msgid "Exclude these:"
6015
  msgstr ""
6016
 
6017
+ #: src/admin.php:3205
6018
  msgid "Any other directories found inside wp-content"
6019
  msgstr ""
6020
 
6021
+ #: src/templates/wp-admin/settings/form-contents.php:171
6022
  msgid "Include in files backup"
6023
  msgstr ""
6024
 
6030
  msgid "To fix the time at which a backup should take place,"
6031
  msgstr ""
6032
 
6033
+ #: src/admin.php:3130
6034
  msgid "Monthly"
6035
  msgstr ""
6036
 
6037
+ #: src/admin.php:3129
6038
  msgid "Fortnightly"
6039
  msgstr ""
6040
 
6041
+ #: src/admin.php:3128
6042
  msgid "Weekly"
6043
  msgstr ""
6044
 
6045
+ #: src/admin.php:3127
6046
  msgid "Daily"
6047
  msgstr ""
6048
 
6049
+ #: src/admin.php:696, src/admin.php:3110
6050
  msgid "Download log file"
6051
  msgstr ""
6052
 
6053
+ #: src/admin.php:3007
6054
  msgid "The folder exists, but your webserver does not have permission to write to it."
6055
  msgstr ""
6056
 
6057
+ #: src/admin.php:3002
6058
  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"
6059
  msgstr ""
6060
 
6061
+ #: src/admin.php:2988
6062
  msgid "The request to the filesystem to create the directory failed."
6063
  msgstr ""
6064
 
6065
+ #: src/addons/migrator.php:2253, src/admin.php:690, src/admin.php:2904,
6066
+ #: src/admin.php:2937, src/admin.php:3622,
6067
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6068
  msgid "Delete"
6069
  msgstr ""
6070
 
6071
+ #: src/admin.php:2688
6072
  msgid "(None)"
6073
  msgstr ""
6074
 
6075
+ #: src/admin.php:2844
6076
  msgid "show log"
6077
  msgstr ""
6078
 
6177
  msgid "Multisite"
6178
  msgstr ""
6179
 
6180
+ #: src/admin.php:2507
6181
  msgid "Go here for help."
6182
  msgstr ""
6183
 
6230
  msgid "Delete backup set"
6231
  msgstr ""
6232
 
6233
+ #: src/admin.php:672
6234
  msgid "Download error: the server sent us a response which we did not understand."
6235
  msgstr ""
6236
 
6237
+ #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:102,
6238
+ #: src/addons/migrator.php:780, src/addons/migrator.php:1026,
6239
+ #: src/addons/migrator.php:1107, src/addons/migrator.php:1154,
6240
+ #: src/addons/migrator.php:1388, src/addons/migrator.php:1714,
6241
+ #: src/addons/migrator.php:1741, src/addons/migrator.php:1747,
6242
+ #: src/addons/migrator.php:1809, src/addons/migrator.php:1849,
6243
+ #: src/addons/migrator.php:1888, src/addons/migrator.php:1898,
6244
+ #: src/addons/migrator.php:1903, src/addons/s3-enhanced.php:127,
6245
+ #: src/addons/s3-enhanced.php:132, src/addons/s3-enhanced.php:134,
6246
+ #: src/addons/sftp.php:814, src/addons/webdav.php:119, src/admin.php:84,
6247
+ #: src/admin.php:664, src/admin.php:3873, src/admin.php:3903,
6248
+ #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6249
+ #: src/methods/updraftvault.php:465, src/restorer.php:1408
6250
  msgid "Error:"
6251
  msgstr ""
6252
 
6253
+ #: src/admin.php:655,
6254
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6255
  msgid "calculating..."
6256
  msgstr ""
6295
  msgid "More tasks:"
6296
  msgstr ""
6297
 
6298
+ #: src/admin.php:2607
6299
  msgid "Download most recently modified log file"
6300
  msgstr ""
6301
 
6302
+ #: src/admin.php:2566, src/admin.php:2572, src/central/bootstrap.php:169
6303
  msgid "(Nothing yet logged)"
6304
  msgstr ""
6305
 
6306
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6307
+ #: src/admin.php:2565, src/admin.php:2570
6308
  msgid "Last log message"
6309
  msgstr ""
6310
 
6311
+ #: src/addons/migrator.php:232, src/admin.php:695, src/admin.php:3613,
6312
  #: src/templates/wp-admin/settings/tab-status.php:30
6313
  msgid "Restore"
6314
  msgstr ""
6315
 
6316
+ #: src/admin.php:516, src/admin.php:688,
6317
  #: src/templates/wp-admin/settings/tab-status.php:27
6318
  msgid "Backup Now"
6319
  msgstr ""
6320
 
6321
  #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6322
+ #: src/addons/reporting.php:248, src/admin.php:301, src/admin.php:3402,
6323
+ #: src/admin.php:3482, src/admin.php:3957,
6324
  #: src/includes/class-wpadmin-commands.php:147,
6325
  #: src/includes/class-wpadmin-commands.php:480,
6326
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
6328
  msgid "Database"
6329
  msgstr ""
6330
 
6331
+ #: src/admin.php:297, src/admin.php:4438
6332
  msgid "Files"
6333
  msgstr ""
6334
 
6340
  msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
6341
  msgstr ""
6342
 
6343
+ #: src/admin.php:277
6344
  msgid "At the same time as the files backup"
6345
  msgstr ""
6346
 
6347
+ #: src/admin.php:267, src/admin.php:288, src/admin.php:295
6348
  msgid "Nothing currently scheduled"
6349
  msgstr ""
6350
 
6356
  msgid "JavaScript warning"
6357
  msgstr ""
6358
 
6359
+ #: src/admin.php:675, src/admin.php:2634
6360
  msgid "Delete Old Directories"
6361
  msgstr ""
6362
 
6363
+ #: src/admin.php:2378
6364
  msgid "Current limit is:"
6365
  msgstr ""
6366
 
6367
+ #: src/admin.php:2352
6368
  msgid "Your backup has been restored."
6369
  msgstr ""
6370
 
6376
  msgid "Lead developer's homepage"
6377
  msgstr ""
6378
 
6379
+ #: src/admin.php:4351
6380
  msgid "Your settings have been wiped."
6381
  msgstr ""
6382
 
6383
+ #: src/admin.php:2312
6384
  msgid "Backup directory successfully created."
6385
  msgstr ""
6386
 
6387
+ #: src/admin.php:2305
6388
  msgid "Backup directory could not be created"
6389
  msgstr ""
6390
 
6391
+ #: src/admin.php:2876
6392
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6393
  msgstr ""
6394
 
6395
+ #: src/admin.php:2874
6396
  msgid "Old directories successfully removed."
6397
  msgstr ""
6398
 
6399
+ #: src/admin.php:2871, src/admin.php:2871
6400
  msgid "Remove old directories"
6401
  msgstr ""
6402
 
6403
  #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6404
+ #: src/admin.php:2254, src/admin.php:2263, src/admin.php:2272,
6405
+ #: src/admin.php:2314, src/admin.php:2878
6406
  msgid "Return to UpdraftPlus Configuration"
6407
  msgstr ""
6408
 
6409
+ #: src/admin.php:668, src/admin.php:2254, src/admin.php:2263,
6410
+ #: src/admin.php:2272, src/admin.php:2314, src/admin.php:2878,
6411
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6412
  msgid "Actions"
6413
  msgstr ""
6414
 
6415
+ #: src/admin.php:2173
6416
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6417
  msgstr ""
6418
 
6419
+ #: src/admin.php:2083
6420
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6421
  msgstr ""
6422
 
6423
+ #: src/admin.php:1964
6424
  msgid "No local copy present."
6425
  msgstr ""
6426
 
6427
+ #: src/admin.php:1961
6428
  msgid "Download in progress"
6429
  msgstr ""
6430
 
6431
+ #: src/admin.php:667, src/admin.php:1950
6432
  msgid "File ready."
6433
  msgstr ""
6434
 
6435
+ #: src/admin.php:1931
6436
  msgid "Download failed"
6437
  msgstr ""
6438
 
6439
+ #: src/admin.php:665, src/admin.php:1247, src/admin.php:1710,
6440
+ #: src/class-updraftplus.php:1197, src/class-updraftplus.php:1241,
6441
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6442
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6443
+ #: src/methods/stream-base.php:200, src/restorer.php:2282,
6444
+ #: src/restorer.php:2307, src/restorer.php:2388, src/updraftplus.php:156
6445
  msgid "Error"
6446
  msgstr ""
6447
 
6448
+ #: src/admin.php:1738
6449
  msgid "Could not find that job - perhaps it has already finished?"
6450
  msgstr ""
6451
 
6452
+ #: src/admin.php:1730
6453
  msgid "Job deleted"
6454
  msgstr ""
6455
 
6456
+ #: src/admin.php:1814
6457
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6458
  msgstr ""
6459
 
6460
+ #: src/admin.php:740
6461
  msgid "Nothing yet logged"
6462
  msgstr ""
6463
 
6464
+ #: src/admin.php:961
6465
  msgid "Please consult this FAQ if you have problems backing up."
6466
  msgstr ""
6467
 
6468
+ #: src/admin.php:961
6469
  msgid "Your website is hosted using the %s web server."
6470
  msgstr ""
6471
 
6472
+ #: src/admin.php:957
6473
  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."
6474
  msgstr ""
6475
 
6476
+ #: src/admin.php:953
6477
  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."
6478
  msgstr ""
6479
 
6480
+ #: src/admin.php:945, src/admin.php:949, src/admin.php:953, src/admin.php:957,
6481
+ #: src/admin.php:961, src/admin.php:970, src/admin.php:3271,
6482
+ #: src/admin.php:3278, src/admin.php:3280, src/methods/cloudfiles-new.php:107,
6483
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6484
+ #: src/methods/openstack-base.php:549, src/methods/s3.php:828,
6485
+ #: src/methods/s3.php:832, src/methods/updraftvault.php:286,
6486
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6487
  #: src/udaddons/updraftplus-addons.php:242
6488
  msgid "Warning"
6489
  msgstr ""
6490
 
6491
+ #: src/admin.php:890
6492
  msgid "Add-Ons / Pro Support"
6493
  msgstr ""
6494
 
6495
+ #: src/admin.php:532, src/admin.php:886,
6496
  #: src/templates/wp-admin/settings/tab-bar.php:7
6497
  msgid "Settings"
6498
  msgstr ""
6501
  msgid "Could not create %s zip. Consult the log file for more information."
6502
  msgstr ""
6503
 
6504
+ #: src/backup.php:2052
6505
  msgid "Infinite recursion: consult your log for more information"
6506
  msgstr ""
6507
 
6513
  msgid "Like UpdraftPlus and can spare one minute?"
6514
  msgstr ""
6515
 
6516
+ #: src/addons/azure.php:218, src/class-updraftplus.php:4080,
6517
+ #: src/methods/googledrive.php:1006, src/methods/s3.php:322
6518
  msgid "File not found"
6519
  msgstr ""
6520
 
6521
+ #: src/class-updraftplus.php:3987
6522
  msgid "The decryption key used:"
6523
  msgstr ""
6524
 
6525
+ #: src/class-updraftplus.php:3987, src/class-updraftplus.php:4296,
6526
  #: src/restorer.php:389
6527
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6528
  msgstr ""
6529
 
6530
+ #: src/class-updraftplus.php:3968, src/class-updraftplus.php:4284,
6531
  #: src/restorer.php:376
6532
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6533
  msgstr ""
6534
 
6535
+ #: src/backup.php:1935
6536
  msgid "Could not open the backup file for writing"
6537
  msgstr ""
6538
 
6539
+ #: src/class-updraftplus.php:3354
6540
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6541
  msgstr ""
6542
 
6543
+ #: src/class-updraftplus.php:3315
6544
  msgid "Could not read the directory"
6545
  msgstr ""
6546
 
6547
+ #: src/admin.php:2001, src/backup.php:1159
6548
  msgid "Backup directory (%s) is not writable, or does not exist."
6549
  msgstr ""
6550
 
6551
+ #: src/backup.php:963
6552
  msgid "WordPress backup is complete"
6553
  msgstr ""
6554
 
6555
+ #: src/class-updraftplus.php:2827
6556
  msgid "The backup attempt has finished, apparently unsuccessfully"
6557
  msgstr ""
6558
 
6559
+ #: src/class-updraftplus.php:2812
6560
  msgid "The backup apparently succeeded and is now complete"
6561
  msgstr ""
6562
 
6564
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6565
  msgstr ""
6566
 
6567
+ #: src/class-updraftplus.php:2515
6568
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6569
  msgstr ""
6570
 
6571
+ #: src/class-updraftplus.php:1798
6572
  msgid "Others"
6573
  msgstr ""
6574
 
6575
+ #: src/addons/multisite.php:467, src/class-updraftplus.php:1783
6576
  msgid "Uploads"
6577
  msgstr ""
6578
 
6579
+ #: src/class-updraftplus.php:1782
6580
  msgid "Themes"
6581
  msgstr ""
6582
 
6583
+ #: src/class-updraftplus.php:1781
6584
  msgid "Plugins"
6585
  msgstr ""
6586
 
6587
+ #: src/class-updraftplus.php:560
6588
  msgid "No log files were found."
6589
  msgstr ""
6590
 
6591
+ #: src/admin.php:1883, src/admin.php:1887, src/class-updraftplus.php:555
6592
  msgid "The log file could not be read."
6593
  msgstr ""
6594
 
6595
+ #: src/admin.php:977, src/admin.php:981, src/admin.php:985, src/admin.php:989,
6596
+ #: src/admin.php:993, src/class-updraftplus.php:520,
6597
+ #: src/class-updraftplus.php:555, src/class-updraftplus.php:560,
6598
+ #: src/class-updraftplus.php:565
6599
  msgid "UpdraftPlus notice:"
6600
  msgstr ""
6601
 
6602
+ #: src/addons/multisite.php:65, src/addons/multisite.php:689,
6603
  #: src/options.php:50
6604
  msgid "UpdraftPlus Backups"
6605
  msgstr ""
languages/updraftplus-ca.po CHANGED
@@ -11,23 +11,145 @@ msgstr ""
11
  "Language: ca\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
- #: src/class-updraftplus.php:4741
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
16
  msgstr ""
17
 
18
- #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
  msgid "the migrator add-on"
20
  msgstr ""
21
 
22
- #: src/class-updraftplus.php:4739
23
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
  msgstr ""
25
 
26
- #: src/class-updraftplus.php:4737
27
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
28
  msgstr ""
29
 
30
- #: src/class-updraftplus.php:4734
31
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
32
  msgstr ""
33
 
@@ -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 "Per què estic veient això ?"
2783
 
@@ -2789,15 +2888,15 @@ msgstr "La ubicació d'aquest directori es troba en la configuració d'experts,
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr "Prem aquí per cercar nous conjunts de còpies de seguretat que s'han pujat al directori UpdraftPlus (dins l'espai del seu servidor web)."
2791
 
2792
- #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr "Iniciar còpia de seguretat"
2795
 
2796
- #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
2799
 
2800
- #: src/admin.php:2964
2801
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2802
  msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
2803
 
@@ -2805,11 +2904,11 @@ msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'es
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
2807
 
2808
- #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr "No s'ha pogut carregar aquest fitxer"
2811
 
2812
- #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr "Més informació sobre això en la secció Configuració."
2815
 
@@ -2829,15 +2928,15 @@ msgstr "Explica'm més coses sobre les còpies de seguretat incrementals."
2829
  msgid "Memory limit"
2830
  msgstr "Límit de memòria"
2831
 
2832
- #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr "Restauració"
2835
 
2836
- #: src/backup.php:862
2837
  msgid "Incremental"
2838
  msgstr "Incremental"
2839
 
2840
- #: src/backup.php:862
2841
  msgid "Full backup"
2842
  msgstr "Còpia de seguretat completa"
2843
 
@@ -2853,7 +2952,7 @@ msgstr "(veure registre ...)"
2853
  msgid "Backup succeeded"
2854
  msgstr "Còpia de seguretat executada correctament"
2855
 
2856
- #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr "Cada %s hores"
@@ -2892,15 +2991,15 @@ msgstr "Cercar / substituir base de dades"
2892
  msgid "search term"
2893
  msgstr "terme de cerca"
2894
 
2895
- #: src/restorer.php:2198
2896
  msgid "Too many database errors have occurred - aborting"
2897
  msgstr "Hi han hagut masses errors amb la base de dades - abortant"
2898
 
2899
- #: src/backup.php:928
2900
  msgid "read more at %s"
2901
  msgstr "Llegir més a %s"
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: ca\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 "Per què estic veient això ?"
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 "Prem aquí per cercar nous conjunts de còpies de seguretat que s'han pujat al directori UpdraftPlus (dins l'espai del seu servidor web)."
2890
 
2891
+ #: src/admin.php:1814, src/admin.php:1826
2892
  msgid "Start backup"
2893
  msgstr "Iniciar còpia de seguretat"
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 "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
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 "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
2902
 
2904
  msgid "Unless you have a problem, you can completely ignore everything here."
2905
  msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
2906
 
2907
+ #: src/admin.php:2036
2908
  msgid "This file could not be uploaded"
2909
  msgstr "No s'ha pogut carregar aquest fitxer"
2910
 
2911
+ #: src/admin.php:2001
2912
  msgid "You will find more information about this in the Settings section."
2913
  msgstr "Més informació sobre això en la secció Configuració."
2914
 
2928
  msgid "Memory limit"
2929
  msgstr "Límit de memòria"
2930
 
2931
+ #: src/class-updraftplus.php:4621, src/restorer.php:1493
2932
  msgid "restoration"
2933
  msgstr "Restauració"
2934
 
2935
+ #: src/backup.php:864
2936
  msgid "Incremental"
2937
  msgstr "Incremental"
2938
 
2939
+ #: src/backup.php:864
2940
  msgid "Full backup"
2941
  msgstr "Còpia de seguretat completa"
2942
 
2952
  msgid "Backup succeeded"
2953
  msgstr "Còpia de seguretat executada correctament"
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 "Cada %s hores"
2991
  msgid "search term"
2992
  msgstr "terme de cerca"
2993
 
2994
+ #: src/restorer.php:2211
2995
  msgid "Too many database errors have occurred - aborting"
2996
  msgstr "Hi han hagut masses errors amb la base de dades - abortant"
2997
 
2998
+ #: src/backup.php:930
2999
  msgid "read more at %s"
3000
  msgstr "Llegir més a %s"
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-da_DK.mo CHANGED
Binary file
languages/updraftplus-da_DK.po CHANGED
@@ -11,23 +11,145 @@ msgstr ""
11
  "Language: da_DK\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
- #: src/class-updraftplus.php:4741
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
16
  msgstr "Så længe din webhosting tillader http (dvs. ikke-SSL-adgang) eller vil sende forespørgsler til https (hvilket næsten altid er tilfældet), er dette ikke noget problem. Hvis det endnu ikke er oprettet, skal du sætte det op, eller bruge%s, sådan at ikke-https-links automatisk erstattes."
17
 
18
- #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
  msgid "the migrator add-on"
20
  msgstr "migrator tilføjelsen"
21
 
22
- #: src/class-updraftplus.php:4739
23
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
  msgstr "Denne opgradering vil fungere, hvis du har et aktivt SSL-certifikat (dvs. kan bruge https). Ellers vil du bruge %s til at søge/erstatte webstedets adresse, så webstedet kan besøges uden https."
25
 
26
- #: src/class-updraftplus.php:4737
27
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
28
  msgstr "Dette backup-sæt er slået fra på dette websted, men på tidspunktet for sikkerhedskopien brugte du %s, mens webstedet nu bruger %s."
29
 
30
- #: src/class-updraftplus.php:4734
31
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
32
  msgstr "Webstedets adresse i backup'en (%s) er lidt anderledes end det nuværende websted (%s). Dette forventes ikke at være et problem for genoprettelsen af webstedet, så længe besøg på den tidligere adresse stadig kommer til webstedet."
33
 
@@ -43,17 +165,17 @@ msgstr "Følg dette link for at fjerne dette websteds indstillinger for %s."
43
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr "UpdraftPlus debug mode er aktivt: Detaljerede debugging data følger."
45
 
46
- #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr "Fejl: Den valgte fil er beskadiget. Vælg venligst en gyldig UpdraftPlus eksportfil."
49
 
50
- #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
- #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr "En alvorlig PHP fejl (%s) er opstået: %s"
54
 
55
- #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
- #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr "Der er opstået en PHP-undtagelse (%s): %s"
59
 
@@ -93,7 +215,7 @@ msgstr "Ekstra opbevaring"
93
  msgid "Remote storage"
94
  msgstr "Fjernlager"
95
 
96
- #: src/templates/wp-admin/settings/form-contents.php:221
97
  msgid "Select Files"
98
  msgstr "Vælg filer"
99
 
@@ -109,15 +231,15 @@ msgstr "Få mere at vide om vores revolutionerende nye WordPress-plugin."
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr "Øjeblikkelig og sikker logon ved hjælp af din telefon."
111
 
112
- #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr "Som tidligere oplyst (se:%s), er kryptering ikke længere en mulighed i den gratis udgave af UpdraftPlus"
115
 
116
- #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr "Værdi"
119
 
120
- #: src/admin.php:1540
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr "Ved ikke, hvordan der slettes fra denne cloud service."
123
 
@@ -129,7 +251,7 @@ msgstr "Krypteret login mislykkedes. Forsøger nu en ikke-krypteret"
129
  msgid "__Check this box to use Amazon's server-side encryption"
130
  msgstr "__Afkryds denne boks for at bruge Amazons kryptering på server-siden"
131
 
132
- #: src/addons/azure.php:535
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr "Du skal tilføje følgende som autoriseret omdirigerings-URI i din Azure-konsol (under \"API-indstillinger\"), når du bliver spurgt"
135
 
@@ -141,11 +263,11 @@ msgstr "Lagret på: %s"
141
  msgid "Cloud Files"
142
  msgstr "Cloud filer"
143
 
144
- #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr "Dine indstillinger kunne ikke gemmes. Opdater siden for indstillingerne og prøv igen."
147
 
148
- #: src/admin.php:4219
149
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
150
  msgstr ""
151
 
@@ -162,87 +284,87 @@ msgstr "arkiv"
162
  msgid "Extra database"
163
  msgstr "Ekstra database"
164
 
165
- #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr "Klik her for at downloade eller gennemse"
168
 
169
- #: src/admin.php:1070, src/admin.php:1080
170
  msgid "Error: invalid path"
171
  msgstr "Fejl: Ugyldig sti"
172
 
173
- #: src/admin.php:928
174
  msgid "An error occurred when fetching storage module options: "
175
  msgstr "Der opstod en fejl ved hentning af lagermodulets indstillinger:"
176
 
177
- #: src/admin.php:756
178
  msgid "Loading log file"
179
  msgstr "Indlæser logfil"
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 "Kan ikke downloade filen. Dette kan skyldes en timeout. Det er bedst at downloade zip-filen til din computer."
184
 
185
- #: src/admin.php:754
186
  msgid "Search"
187
  msgstr "Søg"
188
 
189
- #: src/admin.php:753
190
  msgid "Select a file to view information about it"
191
  msgstr "Vælg en fil for at se oplysninger om den"
192
 
193
- #: src/admin.php:752
194
  msgid "Browsing zip file"
195
  msgstr "Gennemser zip-fil"
196
 
197
- #: src/admin.php:721
198
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
199
  msgstr "Med UpdraftPlus Premium kan du hente individuelle filer direkte herfra."
200
 
201
- #: src/admin.php:669
202
  msgid "Browse contents"
203
  msgstr "Gennemse indhold"
204
 
205
- #: src/restorer.php:1692
206
  msgid "Skipped tables:"
207
  msgstr "Kasserede tabeller:"
208
 
209
- #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr "Denne database backup har følgende WordPress udelukkede tabeller:%s"
212
 
213
- #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr "Med UpdraftPlus Premium kan du vælge at sikkerhedskopiere ikke-WordPress-tabeller, eller kun tage backup af udvalgte tabeller og endelig også at sikkerhedskopiere andre databaser."
216
 
217
- #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr "Alle WordPress tabeller vil blive sikkerhedskopieret."
220
 
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 "Yderligere informationer kan findes i browserens JavaScript-konsol og i serverens PHP fejllogs."
224
 
225
- #: src/admin.php:751
226
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
227
  msgstr "at du prøver at uploade en zip-fil, der tidligere er oprettet af UpdraftPlus."
228
 
229
- #: src/admin.php:751
230
  msgid "The available memory on the server."
231
  msgstr "Den tilgængelige hukommelse på serveren."
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 "Enhver indstilling i din .htaccess- eller web.config-fil, der påvirker maksimal upload eller poststørrelse."
236
 
237
- #: src/admin.php:751
238
  msgid "The file failed to upload. Please check the following:"
239
  msgstr "Filen kunne ikke uploades. Tjek venligst følgende:"
240
 
241
- #: src/admin.php:750
242
  msgid "HTTP code:"
243
  msgstr "HTTP kode:"
244
 
245
- #: src/admin.php:646
246
  msgid "You have chosen to backup a database, but no tables have been selected"
247
  msgstr "Du har valgt at sikkerhedskopiere en database, men ingen tabeller er blevet valgt"
248
 
@@ -411,7 +533,7 @@ msgstr "Gratis"
411
  msgid "UpdraftPlus"
412
  msgstr "UpdraftPlus"
413
 
414
- #: src/templates/wp-admin/settings/form-contents.php:245
415
  msgid "Recommended: optimize your database with WP-Optimize."
416
  msgstr "Anbefalet: Optimer din database med WP-Optimize."
417
 
@@ -706,11 +828,11 @@ msgstr "Her kan du eksportere dine UpdraftPlus indstillinger (%s), enten til bru
706
  msgid "Export / import settings"
707
  msgstr "Eksport / import indstillinger"
708
 
709
- #: src/restorer.php:1869
710
  msgid "Processing table (%s)"
711
  msgstr "Behandler tabel (%s)"
712
 
713
- #: src/restorer.php:1658
714
  msgid "Backup of: %s"
715
  msgstr "Backup af: %s"
716
 
@@ -730,11 +852,11 @@ msgstr "Du skal, når du bliver spurgt, tilføje følgende som den autoriserede
730
  msgid "Follow this link to deauthenticate with %s."
731
  msgstr "Følg dette link for at annullere godkendelse med %s"
732
 
733
- #: src/central/bootstrap.php:549
734
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
735
  msgstr "UpdraftCentral muliggør kontrol over dine WordPress sites (herunder styring af backup og opdateringer) fra et centralt dashboard."
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 "Hvis ikke, skal du enten fjerne data fra denne tabel, eller kontakte dit hostingselskab for at anmode om flere ressourcer."
740
 
@@ -742,51 +864,51 @@ msgstr "Hvis ikke, skal du enten fjerne data fra denne tabel, eller kontakte dit
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr "Du har valgt en ekstern lagerløsning, der har et tilladelses-step for at fuldføre:"
744
 
745
- #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr "Slettede eksterne filer:"
748
 
749
- #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr "Slettede lokale filer:"
752
 
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 "eller at gendanne manuelt"
827
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
828
  msgstr "Dette gør time-outs langt mere sandsynligt. Det anbefales at slå safe mode fra, eller kun at gendanne én enhed ad gangen"
829
 
830
- #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr "Løs dette problem her."
833
 
834
- #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr "OptimizePress 2.0 koder dens indhold, så søg/erstat virker ikke."
837
 
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 "din PHP installation mangler open-ssl modulet. Som et resultat, kan dette tage minutter. Hvis intet er sket inden da, så skal du enten prøve en mindre størrelse nøgle, eller spørge din webudbyder, hvordan du aktiverer dette PHP modul i din opsætning."
841
 
@@ -867,11 +989,11 @@ msgstr "Denne WebDAV URL genereres ved at udfylde nedenstående muligheder. Hvis
867
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
868
  msgstr "Ingen respons data blev modtaget. Dette indikerer normalt et netværksforbindelseproblem (fx en udgående firewall eller et overbelastet netværk) mellem dette websted og UpdraftPlus.com."
869
 
870
- #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr "AWS adgangskoden er tilsyneladende forkert (gyldige %s adgangskoder begynder med \"AK\")"
873
 
874
- #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr "Indstillinger blev ikke fundet - Gå venligst til Indstillinger knappen og kontroller dine indstillinger"
877
 
@@ -891,31 +1013,27 @@ msgstr "Standard (sjælden adgang)"
891
  msgid "FAQs"
892
  msgstr "FAQs"
893
 
894
- #: src/central/bootstrap.php:496
895
  msgid "More information..."
896
  msgstr "Mere information..."
897
 
898
- #: src/central/bootstrap.php:494
899
  msgid "Use the alternative method for making a connection with the dashboard."
900
  msgstr "Benyt den alternative måde for at skabe forbindelse med kontrolpanelet."
901
 
902
- #: src/central/bootstrap.php:477
903
- msgid "Dashboard at"
904
- msgstr "Kontrolpanelet på"
905
-
906
- #: src/central/bootstrap.php:425
907
  msgid "Key size: %d bits"
908
  msgstr "Størrelse på nøgle: %d bits"
909
 
910
- #: src/central/bootstrap.php:420
911
  msgid "Public key was sent to:"
912
  msgstr "Offentlig nøgle blev sendt til:"
913
 
914
- #: src/backup.php:2105
915
  msgid "Failed to open directory (check the file permissions and ownership): %s"
916
  msgstr "Kunne ikke åbne bibliotek (tjek fil-tilladelser og -ejerskab): %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: Ulæselig fil - kunne ikke sikkerhedskopieres (check fil-tilladelser og -ejerskab)"
921
 
@@ -923,33 +1041,33 @@ msgstr "%s: Ulæselig fil - kunne ikke sikkerhedskopieres (check fil-tilladelser
923
  msgid "Create key"
924
  msgstr "Opret nøgle"
925
 
926
- #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr "langsomere, stærkest"
929
 
930
- #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr "anbefalet"
933
 
934
- #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr "%s bytes"
937
 
938
- #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr "hurtigere (mulighed for langsomme PHP installationer)"
941
 
942
- #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr "let at bryde, hurtigst"
945
 
946
  #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
- #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
- #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr "%s bits"
951
 
952
- #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr "Krypterings-nøglens størrelse:"
955
 
@@ -981,19 +1099,11 @@ msgstr "Vær opmærksom på at mailservere ofte har størrelsesbegrænsninger; t
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 "Størrelsen på dette backup-arkiv er %s MB - forsøge på at sende det via e-mail er tilbøjelige til at mislykkes (få email-servere tillader vedhæftede filer af denne størrelse). Hvis det er tilfældet, bør du skifte til at bruge en anden fjernlager metode."
983
 
984
- #: src/class-updraftplus.php:1693
985
  msgid "Size: %s MB"
986
  msgstr "Størrelse: %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 "Andet (angiv det site, hvor du har installeret et updraft Central kontrolpanel)"
991
-
992
- #: src/central/bootstrap.php:481
993
- msgid "i.e. you have an account there"
994
- msgstr "det vil sige, at du har en konto dér"
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 "UpdraftPlus vil opdele backup arkiver, når de overskrider denne filstørrelse. Standardværdien er %s megabyte. Vær omhyggelig med at friholde lidt plads, hvis din web-server har en lidt vanskelig maksimal begrænsning (fx 2 GB / 2048 MB grænse på nogle 32-bit servere / filsystemer)."
999
 
@@ -1001,7 +1111,7 @@ msgstr "UpdraftPlus vil opdele backup arkiver, når de overskrider denne filstø
1001
  msgid "Now"
1002
  msgstr "Nu"
1003
 
1004
- #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr "Du bør frigøre %s for at pæne permalinks (f.eks. %s) kan virke"
1007
 
@@ -1023,63 +1133,51 @@ msgstr "eller (årlig rabat)"
1023
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1024
  msgstr "Ingen Vault forbindelse blev fundet for dette websted (er det flyttet?); venligst afbryd og tilslut igen."
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 "Den pågældende fil blev ikke fundet eller kunne ikke læses."
1029
 
1030
- #: src/central/bootstrap.php:547
1031
  msgid "UpdraftCentral (Remote Control)"
1032
  msgstr "UpdraftCentral (Fjernbetjent)"
1033
 
1034
- #: src/central/bootstrap.php:535
1035
- msgid "fetch..."
1036
- msgstr "hent..."
1037
-
1038
- #: src/central/bootstrap.php:534
1039
  msgid "View recent UpdraftCentral log events"
1040
  msgstr "Se de seneste updraftCentral log-hændelser"
1041
 
1042
- #: src/central/bootstrap.php:489
1043
  msgid "URL of mothership"
1044
  msgstr "Moderskibets URL"
1045
 
1046
- #: src/central/bootstrap.php:472
1047
  msgid "Enter any description"
1048
  msgstr "Angiv enhver beskrivelse"
1049
 
1050
- #: src/central/bootstrap.php:469
1051
  msgid "Description"
1052
  msgstr "Forklaring"
1053
 
1054
- #: src/central/bootstrap.php:463
1055
- msgid "Create new key"
1056
- msgstr "Opret ny nøgle"
1057
-
1058
- #: src/central/bootstrap.php:430
1059
  msgid "Delete..."
1060
  msgstr "Slet..."
1061
 
1062
- #: src/central/bootstrap.php:423
1063
  msgid "Created:"
1064
  msgstr "Oprettet:"
1065
 
1066
- #: src/central/bootstrap.php:420
1067
  msgid "Access this site as user:"
1068
  msgstr "Adgang til dette site som bruger:"
1069
 
1070
- #: src/central/bootstrap.php:388
1071
- msgid "No keys have yet been created."
1072
- msgstr "Der er endnu ikke oprettet en nøgle."
1073
-
1074
- #: src/central/bootstrap.php:442
1075
  msgid "Details"
1076
  msgstr "Detaljer"
1077
 
1078
- #: src/central/bootstrap.php:441
1079
  msgid "Key description"
1080
  msgstr "Nøgle-beskrivelse"
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 "En nøgle blev oprettet, men forsøget på at registrere den med %s mislykkedes - prøv igen senere."
1085
 
@@ -1123,23 +1221,23 @@ msgstr "En UpdraftCentral forbindelse blev oprettet med succes."
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr "UpdraftCentral Connection"
1125
 
1126
- #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr "Backup'en blev afbrudt af brugeren"
1129
 
1130
- #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr "Dine indstillinger er gemt"
1133
 
1134
- #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr "Total backup-størrelse:"
1137
 
1138
- #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr "stoppe"
1141
 
1142
- #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr "Denne backup er færdig"
1145
 
@@ -1165,27 +1263,27 @@ msgstr "dette backup sæt"
1165
  msgid "calculate"
1166
  msgstr "Beregn"
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 "Du bør gemme dine ændringer for at sikre, at de bliver anvendt til din backup."
1171
 
1172
- #: src/admin.php:715
1173
  msgid "We requested to delete the file, but could not understand the server's response"
1174
  msgstr "Vi anmodede om at slette filen, men kunne ikke forstå serverens svar"
1175
 
1176
- #: src/admin.php:714
1177
  msgid "Please enter a valid URL"
1178
  msgstr "Venligst indtast en gyldig URL"
1179
 
1180
- #: src/admin.php:697
1181
  msgid "Saving..."
1182
  msgstr "Gemmer..."
1183
 
1184
- #: src/admin.php:660
1185
  msgid "Error: the server sent us a response which we did not understand."
1186
  msgstr "Fejl: Serveren sendte et uforståeligt svar."
1187
 
1188
- #: src/admin.php:652
1189
  msgid "Fetching..."
1190
  msgstr "Henter..."
1191
 
@@ -1193,7 +1291,7 @@ msgstr "Henter..."
1193
  msgid "Asia Pacific (Seoul)"
1194
  msgstr "Asia Pacific (Seoul)"
1195
 
1196
- #: src/restorer.php:1681
1197
  msgid "Uploads URL:"
1198
  msgstr "Uploads URL:"
1199
 
@@ -1205,40 +1303,40 @@ msgstr "Uventet fejl: Ingen klasse '%s' blev fundet (der er sandsynligvis fejl p
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr "Det nødvendige %s PHP modul er ikke installeret - bed din webudbyder om at aktivere det."
1207
 
1208
- #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr "For at importere et almindeligt WordPress site til en multisite installation kræves %s."
1211
 
1212
- #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr "Venligst læs dette link for vigtig information om processen."
1215
 
1216
- #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr "Vil blive importeret som et nyt site."
1219
 
1220
- #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr "Luk"
1224
 
1225
- #: src/admin.php:734
1226
  msgid "Please fill in the required information."
1227
  msgstr "Venligst udfyld den nødvendige information."
1228
 
1229
- #: src/addons/multisite.php:576
1230
  msgid "Read more..."
1231
  msgstr "Læs mere..."
1232
 
1233
- #: src/addons/multisite.php:567
1234
  msgid "may include some site-wide data"
1235
  msgstr "kan indeholde nogle data for hele sitet"
1236
 
1237
- #: src/addons/multisite.php:562
1238
  msgid "All sites"
1239
  msgstr "Allle sider"
1240
 
1241
- #: src/addons/multisite.php:558
1242
  msgid "Which site to restore"
1243
  msgstr "Hvilket site at gendanne"
1244
 
@@ -1283,15 +1381,15 @@ msgstr "Du valgte at %s skal indgå i gendannelsen - det kan ikke / bør ikke sk
1283
  msgid "Call WordPress action:"
1284
  msgstr "Udfør WordPress handling:"
1285
 
1286
- #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr "Dine gemte indstillinger påvirker også, hvad der oprettes back up af - f.eks. udelukkes filer."
1289
 
1290
- #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr "Stopper: Dette arkiv er allerede genskabt."
1293
 
1294
- #: src/templates/wp-admin/settings/form-contents.php:169
1295
  msgid "File Options"
1296
  msgstr "Fil-muligheder"
1297
 
@@ -1319,51 +1417,51 @@ msgstr "Du skal derefter indtaste alle dine indstillinger igen. Du kan også gø
1319
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1320
  msgstr "Denne knap vil slette alle UpdraftPlus indstillinger og information om igangværende sikkerhedskopier (men ikke slette eksisterende sikkerhedskopier i din sky)."
1321
 
1322
- #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr "Send denne backup til fjernlager"
1325
 
1326
- #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr "Se UpdraftPlus Vault"
1329
 
1330
- #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr "Har du ikke et fjernlager?"
1333
 
1334
- #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr "Indstillinger"
1337
 
1338
- #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr "Backup vil ikke blive sendt til noget lager - Intet er blevet gemt i %s"
1341
 
1342
- #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr "Medtag alle filer i backup'en"
1345
 
1346
- #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr "Medtag databasen i backup'en"
1349
 
1350
- #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr "Fortsæt gendannelse"
1353
 
1354
- #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr "Du har en ufærdig gendannelses-operation, påbegyndt for %s siden."
1357
 
1358
- #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr "Ufærdig gendannelse"
1361
 
1362
- #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr "%s minutter, %s sekunder"
1365
 
1366
- #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr "Backup Indhold og Tidspland"
1369
 
@@ -1371,24 +1469,24 @@ msgstr "Backup Indhold og Tidspland"
1371
  msgid "Premium / Extensions"
1372
  msgstr "Premium / Udvidelser"
1373
 
1374
- #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr "Tilstrækkelige informationer om den igangværende genskabelse kunne ikke findes."
1377
 
1378
- #: src/addons/morefiles.php:55, src/admin.php:720
1379
  msgctxt "(verb)"
1380
  msgid "Download"
1381
  msgstr "Download"
1382
 
1383
- #: src/admin.php:645
1384
  msgid "You have chosen to backup files, but no file entities have been selected"
1385
  msgstr "Du har valgt at tage backup, men har ikke valgt nogle filer"
1386
 
1387
- #: src/admin.php:546
1388
  msgid "Extensions"
1389
  msgstr "Udviddelser"
1390
 
1391
- #: src/admin.php:538, src/templates/wp-admin/settings/tab-bar.php:8
1392
  msgid "Advanced Tools"
1393
  msgstr "Advancerede værktøjer"
1394
 
@@ -1470,71 +1568,71 @@ msgstr "Vedværende begrænset tilgængelighed"
1470
  msgid "Standard"
1471
  msgstr "Standard"
1472
 
1473
- #: src/addons/azure.php:563
1474
  msgid "container"
1475
  msgstr "mappe"
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 "Du kan indtaste stien til enhver %s virtuel mappe, du ønsker at bruge her."
1480
 
1481
- #: src/addons/azure.php:562
1482
  msgid "optional"
1483
  msgstr "valgfri"
1484
 
1485
- #: src/addons/azure.php:562
1486
  msgid "Prefix"
1487
  msgstr "Præfiks"
1488
 
1489
- #: src/addons/azure.php:557
1490
  msgid "See Microsoft's guidelines on container naming by following this link."
1491
  msgstr "Se Microsofts retningslinjer for mappe-navngivning ved at følge dette link."
1492
 
1493
- #: src/addons/azure.php:557
1494
  msgid "Enter the path of the %s you wish to use here."
1495
  msgstr "Indtast stien til den %s, du ønsker at bruge her."
1496
 
1497
- #: src/addons/azure.php:546
1498
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1499
  msgstr "Dette er ikke din Azure login - se anvisninger, hvis du har brug for mere vejledning."
1500
 
1501
- #: src/addons/azure.php:545
1502
  msgid "Account Name"
1503
  msgstr "Kontonavn"
1504
 
1505
- #: src/addons/azure.php:545, src/addons/azure.php:549
1506
  msgid "Azure"
1507
  msgstr "Azure"
1508
 
1509
- #: src/addons/azure.php:541
1510
  msgid "Create Azure credentials in your Azure developer console."
1511
  msgstr "Opret Azure legitimationsoplysninger i din Azure udviklerkonsol."
1512
 
1513
- #: src/addons/azure.php:489
1514
  msgid "Could not create the container"
1515
  msgstr "Kunne ikke oprette beholderen"
1516
 
1517
- #: src/addons/azure.php:352
1518
  msgid "Could not access container"
1519
  msgstr "Kunne ikke tilgå mappe"
1520
 
1521
- #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr "For at fuldføre din migrering/kloning, bør du nu logge ind på det eksterne site og genoprette backup sættet."
1524
 
1525
- #: src/backup.php:1579
1526
  msgid "the options table was not found"
1527
  msgstr "tabellen med muligheder blev ikke fundet"
1528
 
1529
- #: src/backup.php:1577
1530
  msgid "no options or sitemeta table was found"
1531
  msgstr "der blev ikke fundet hverken valgmuligheder eller site-meta"
1532
 
1533
- #: src/backup.php:1577, src/backup.php:1579
1534
  msgid "The database backup appears to have failed"
1535
  msgstr "Backup af databasen er tilsyneladende mislykkedes."
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 "Backup-mappen er ikke skrivbar (eller diskplads er fuld) - Database-backup'en forventes snart at mislykkes."
1540
 
@@ -1647,35 +1745,35 @@ msgstr "Handlinger for udvalgte backups"
1647
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1648
  msgstr "Tryk her for at se dit fjernlagers muligheder ved eventuelle eksisterende backup sæt (fra ethvert websted, hvis de opbevares i samme mappe)."
1649
 
1650
- #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr "Backup sæt fjernet:"
1653
 
1654
- #: src/admin.php:733
1655
  msgid "Processing..."
1656
  msgstr "Behandler..."
1657
 
1658
- #: src/admin.php:731
1659
  msgid "For backups older than"
1660
  msgstr "For backup ældre end"
1661
 
1662
- #: src/admin.php:730
1663
  msgid "week(s)"
1664
  msgstr "uge(r)"
1665
 
1666
- #: src/admin.php:729
1667
  msgid "hour(s)"
1668
  msgstr "time(r)"
1669
 
1670
- #: src/admin.php:728
1671
  msgid "day(s)"
1672
  msgstr "dag(e)"
1673
 
1674
- #: src/admin.php:727
1675
  msgid "in the month"
1676
  msgstr "i måneden"
1677
 
1678
- #: src/admin.php:726
1679
  msgid "day"
1680
  msgstr "dag"
1681
 
@@ -1687,11 +1785,11 @@ msgstr "(som mange af jer synes om)"
1687
  msgid "Add an additional retention rule..."
1688
  msgstr "Tilføj en ekstra tilføjelsesregel..."
1689
 
1690
- #: src/restorer.php:2191
1691
  msgid "This database needs to be deployed on MySQL version %s or later."
1692
  msgstr "Denne database skal indsættes på MySQL version %s eller nyere."
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 "Dette problem er forårsaget af forsøg på genskabelse af en database på en meget gammel MySQL version, der er uforenelig med kildedatabasen."
1697
 
@@ -1699,15 +1797,15 @@ msgstr "Dette problem er forårsaget af forsøg på genskabelse af en database p
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr "Du har ikke på nuværende tidspunkt nogen UpdraftPlus Vault kvote"
1701
 
1702
- #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr "Du skal opgradere MySQL for at kunne bruge denne database."
1705
 
1706
- #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr "Database-backup'en bruger MySQL funktioner, som ikke findes i den gamle MySQL version (%s), dette websted kører på."
1709
 
1710
- #: src/admin.php:2291
1711
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1712
  msgstr "UpdraftPlus-mappen i wp-content/plugins indeholder white-space (tom plads / mellemrum); WordPress kan ikke lide dette. Du bør omdøbe mappen til wp-content/plugins/updraftplus for at løse dette problem."
1713
 
@@ -1735,11 +1833,11 @@ msgstr "Server-side kryptering"
1735
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1736
  msgstr "Hvis du har glemt dit password, så klik her for at ændre det på udraftsplus.com "
1737
 
1738
- #: src/admin.php:981
1739
  msgid "Go to the remote storage settings in order to connect."
1740
  msgstr "Gå til fjernlager-indstillinger for at skabe forbindelse."
1741
 
1742
- #: src/admin.php:981
1743
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1744
  msgstr "%s er blevet valgt til fjernlager, men du er ikke tilsluttet i øjeblikket."
1745
 
@@ -1747,19 +1845,19 @@ msgstr "%s er blevet valgt til fjernlager, men du er ikke tilsluttet i øjeblikk
1747
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1748
  msgstr "Betaling kan foretages i amerikanske dollars, euro eller GB pounds sterling, via kort eller PayPal."
1749
 
1750
- #: src/admin.php:703
1751
  msgid "Update quota count"
1752
  msgstr "Opdatér kvotetæller"
1753
 
1754
- #: src/admin.php:702
1755
  msgid "Counting..."
1756
  msgstr "Tæller..."
1757
 
1758
- #: src/admin.php:701
1759
  msgid "Disconnecting..."
1760
  msgstr "Afbryder..."
1761
 
1762
- #: src/admin.php:699
1763
  msgid "Connecting..."
1764
  msgstr "Tilslutter..."
1765
 
@@ -1785,7 +1883,7 @@ msgstr "Du kan få større kvote her"
1785
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1786
  msgstr "%s Fejl: Du har utilstrækkelig lagerkvote tilgængelig (%s) til at kunne uploade dette arkiv (%s)."
1787
 
1788
- #: src/admin.php:700, src/methods/updraftvault.php:388
1789
  msgid "Disconnect"
1790
  msgstr "Afbrudt"
1791
 
@@ -1817,7 +1915,8 @@ msgstr "Klik her for hjælp"
1817
  msgid "E-mail"
1818
  msgstr "E-mail"
1819
 
1820
- #: src/methods/updraftvault.php:338, src/methods/updraftvault.php:353
 
1821
  msgid "Back..."
1822
  msgstr "Tilbage..."
1823
 
@@ -1830,7 +1929,7 @@ msgstr "Abonnement kan til enhver tid opsiges."
1830
  msgid "%s per quarter"
1831
  msgstr "%s per kvartal"
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 "Læs mere her."
@@ -1875,12 +1974,12 @@ msgstr "Din UpdraftPlus Premium er købt for over et år siden. Du bør forny st
1875
  msgid "Updraft Vault"
1876
  msgstr "Updraft Vault"
1877
 
1878
- #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
- #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr "Sletning mislykkedes:"
1882
 
1883
- #: src/backup.php:3043
1884
  msgid "The zip engine returned the message: %s."
1885
  msgstr "Zip returnerede denne besked: %s."
1886
 
@@ -1904,7 +2003,7 @@ msgstr "Tillad download"
1904
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
1905
  msgstr "Hvis muligheden for at sende direkte fra site til site ikke virker for dig, så er der tre andre metoder - prøv en af disse i stedet."
1906
 
1907
- #: src/addons/migrator.php:1747, src/admin.php:709
1908
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
1909
  msgstr "Du bør kontrollere, at den eksterne site er online, ikke er bag en firewall, ikke har sikkerhedsmoduler, der kan blokere adgangen, har UpdraftPlus version %s eller nyere aktiv, og at nøglerne er blevet indtastet korrekt."
1910
 
@@ -1932,11 +2031,11 @@ msgstr "Så for at få nøglen til det eksterne site, skal du åbne 'Overfør' v
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr "Nøgler til dette site er skabt i afsnittet nedenfor den, du netop har indtastet ind."
1934
 
1935
- #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr "Du skal kopiere og indsætte denne nøgle nu - den kan ikke vises igen."
1938
 
1939
- #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr "Nøgle blev skabt med succes."
1942
 
@@ -1976,7 +2075,7 @@ msgstr "Backup skabt af %s"
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr "Denne lagringsmetode tillader ikke download"
1978
 
1979
- #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr "(backup sæt importeret fra ekstern lokation)"
1982
 
@@ -1996,23 +2095,23 @@ msgstr "Du bør sørge for, at dette virkelig er et backup sæt beregnet til bru
1996
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1997
  msgstr "Dette backup sæt blev ikke genkendt af UpdraftPlus som værende skabt af den nuværende WordPress installation, men blev enten fundet i fjernlager, eller blev sendt fra et eksternt site."
1998
 
1999
- #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr "Tester forbindelse..."
2002
 
2003
- #: src/admin.php:713
2004
  msgid "Deleting..."
2005
  msgstr "Sletter..."
2006
 
2007
- #: src/admin.php:712
2008
  msgid "key name"
2009
  msgstr "nøgle navn"
2010
 
2011
- #: src/admin.php:710
2012
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2013
  msgstr "Giv denne nøgle et navn (angiv f.eks. sitet den er til):"
2014
 
2015
- #: src/admin.php:707
2016
  msgid "Creating..."
2017
  msgstr "Opretter..."
2018
 
@@ -2036,11 +2135,11 @@ msgstr "For at tilføje en hjemmeside som en destination til at sende til, skal
2036
  msgid "Or, send a backup to another site"
2037
  msgstr "Eller, send en backup til et andet site"
2038
 
2039
- #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr "Send"
2042
 
2043
- #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr "Send til site:"
2046
 
@@ -2105,15 +2204,15 @@ msgstr "UpdraftPlus Migrator modificerer restaurering processen korrekt, så det
2105
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2106
  msgstr "En \"flytning\" er i sidste ende det samme som en restaurering - men benytter backup arkiver, som du importerer fra et andet site."
2107
 
2108
- #: src/admin.php:706
2109
  msgid "Resetting..."
2110
  msgstr "Nulstiller..."
2111
 
2112
- #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr "Tilføj site"
2115
 
2116
- #: src/admin.php:704
2117
  msgid "Adding..."
2118
  msgstr "Tilføjer..."
2119
 
@@ -2121,7 +2220,7 @@ msgstr "Tilføjer..."
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr "Adgang nægtet - Måske har du allerede brugt dette køb et andet sted, eller din betalte periode til at downloade fra updraftplus.com er udløbet?"
2123
 
2124
- #: src/restorer.php:2193
2125
  msgid "To use this backup, your database server needs to support the %s character set."
2126
  msgstr "For at bruge denne backup, skal din database server understøtte %s tegnsæt."
2127
 
@@ -2149,7 +2248,7 @@ msgstr "Gå til \"Eksisterende backups\" for at importere et backup-sæt."
2149
  msgid "To restore using any of the backup sets below, press the button."
2150
  msgstr "Hvis du vil gendanne ved at bruge et af backup-sættene nedenfor, skal du trykke på knappen."
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 "Du har ændret dine indstillinger, men har ikke gemt."
2155
 
@@ -2161,7 +2260,7 @@ msgstr "N.B. %s skelner ikke mellem store og små bogstaver."
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr "Hvis OneDrive senere viser meddelelsen \"unauthorized_client\", så har du ikke indtastet en gyldig klient-id her."
2163
 
2164
- #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr "Følg dette link for mere uddybende hjælp, der blandt andet indkluderer skærmbilleder."
@@ -2174,7 +2273,7 @@ msgstr "Opret OneDrive legimitation i din OneDrive udviklerkonsol."
2174
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2175
  msgstr "Du skal tilføje følgende som den autoriserede redirect URI i din OneDrive konsol (under \"API Indstillinger\"), når du bliver spurgt"
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 "Du skal indtaste en admin adgangsnøgle"
2340
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2341
  msgstr "Hvis du har en AWS admin brugerkonto, kan du bruge denne guide til hurtigt at oprette en ny AWS (IAM) bruger med adgang til kun denne spand (i stedet for hele din konto)"
2342
 
2343
- #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr "Brug denne tilføjelse for at oprette en ny IAM sub-bruger og adgangsnøgle, der kun har adgang til denne spand."
2346
 
@@ -2415,7 +2514,7 @@ msgstr "Udskyd (i %s måneder)"
2415
  msgid "(at same time as files backup)"
2416
  msgstr "(samtidigt, som der tages backup af filerne)"
2417
 
2418
- #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr "Ingen backup er fuldført."
2421
 
@@ -2464,17 +2563,17 @@ msgstr "Du bruger i øjeblikket den gratis version af UpdraftPlus fra wordpress.
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr "Lav backup (hvis relevant) af plugins, temaer og WordPress database med UpdraftPlus før du opdaterer"
2466
 
2467
- #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
- #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr "%s Fejl: Kunne ikke initialiseres"
2471
 
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 "eller"
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 "Du valgte ikke nogen komponenter til genoprettelse. Vælg mindst én, og prøv derefter igen."
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 "Det skal være en v2 (Keystone) godkendelse URI; v1 (Swauth) understøttes ikke."
2499
 
2500
- #: src/templates/wp-admin/settings/form-contents.php:290
2501
  msgid "your site's admin address"
2502
  msgstr "dit websteds admin adresse"
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 "Markér dette felt for at få en grundlæggende rapport sendt til"
2507
 
2508
- #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr "Manual"
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 "En fejl (%s) opstod:"
@@ -2523,7 +2622,7 @@ msgstr "Skift låse-indstillinger"
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr "Enhver anden fil/mappe på din server, som du ønsker at sikkerhedskopiere"
2525
 
2526
- #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr "For endnu flere funktioner og personlig support, tjek"
2529
 
@@ -2532,7 +2631,7 @@ msgid "Database decryption phrase"
2532
  msgstr "Database dekryptering sætning"
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 "Automatisk backup inden opdatering"
2538
 
@@ -2617,7 +2716,7 @@ msgstr "(lær mere om denne betydelige mulighed)"
2617
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2618
  msgstr "Bemærk, at efter du har modtaget dine tilføjelser, kan du fjerne dit password (men ikke e-mail-adresse) fra indstillingerne nedenfor, uden at påvirke dette sites adgang til opdateringer."
2619
 
2620
- #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr "Se loggen"
2623
 
@@ -2634,7 +2733,7 @@ msgstr "Backup dato"
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr "og fastholde så mange planlagte backups"
2636
 
2637
- #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr "trinvis sikkerhedskopi; basis backup: %s"
2640
 
@@ -2646,28 +2745,28 @@ msgstr "For evnen til at låse adgangen til UpdraftPlus-indstillingerne med en a
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr "Upload filer til UpdraftPlus."
2648
 
2649
- #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr "\"Backup Nu\"-knappen er deaktiveret, da din backup mappe er ikke skrivbar (gå til fanen \"Indstillinger\", og find den relevante mulighed)."
2653
 
2654
- #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr "Backup etiket:"
2657
 
2658
- #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr "Fejl: Uventet fejl ved læsning af fil"
2661
 
2662
- #: src/backup.php:3049
2663
  msgid "check your log for more details."
2664
  msgstr "tjek din log for flere detaljer."
2665
 
2666
- #: src/backup.php:3047
2667
  msgid "your web hosting account appears to be full; please see: %s"
2668
  msgstr "din web-udbyder konto ser ud til at være fyldt; venligst se: %s"
2669
 
2670
- #: src/backup.php:3045
2671
  msgid "A zip error occurred"
2672
  msgstr "En zip fejl opstod"
2673
 
@@ -2695,11 +2794,11 @@ msgstr "Du er nødt til at bruge både en e-mail adresse og en adgangskode"
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr "For at fortsætte, så tryk på 'Backup Nu' og derefter se 'Sidste Log Besked' feltet for aktivitet."
2697
 
2698
- #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr "Hvis du ønsker at genskabe en multisite backup, så skal du først sætte din WordPress op som en multisite installation."
2701
 
2702
- #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr "Din backup er fra en WordPress multisite installation; men det er denne side ikke. Det er kun den første side som vil være tilgængelig."
2705
 
@@ -2736,19 +2835,19 @@ msgstr "Du har endnu ikke forbundet din UpdraftPlus.Com konto."
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr "Du er nødt til at modtage fremtidige opdateringer UpdraftPlus."
2738
 
2739
- #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr "Eventuelle support anmodninger som har med %s at gøre bør løses med dit web-hosting firma."
2742
 
2743
- #: src/class-updraftplus.php:4781
2744
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2745
  msgstr "Du bør kun fortsætte, hvis du ikke kan opdatere den aktuelle server og er overbeviste om (eller villig til at forsøge om), at dine plugins/temaer/osv. er kompatible med den ældre %s version."
2746
 
2747
- #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr "Denne er markant nyere end den serverversion, som du nu ønsker at gendanne på (version %s)."
2750
 
2751
- #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr "Siden i denne backup blev lavet på en webserver med version %s af %s."
2754
 
@@ -2777,7 +2876,7 @@ msgstr "Twitter"
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
- #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr "Hvorfor ser jeg dette?"
2783
 
@@ -2789,15 +2888,15 @@ msgstr "Placeringen af denne mappe er angivet i ekspertindstillingerne i fanen I
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr "Klik her for at se i din UpdraftPlus mappe (på dit webhotel) efter nye backups som du har uploadet."
2791
 
2792
- #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr "Start backup"
2795
 
2796
- #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr "Du bruger %s webserver, men den lader ikke til at have %s modulet indlæst."
2799
 
2800
- #: src/admin.php:2964
2801
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2802
  msgstr "Du er nødt til at kontakte din hostingudbyder for at finde ud af, hvordan du skal angive tilladelser for et WordPress plugin for at det kan skrive til mappen."
2803
 
@@ -2805,11 +2904,11 @@ msgstr "Du er nødt til at kontakte din hostingudbyder for at finde ud af, hvord
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr "Med mindre du har problemmer, kan du bare ignorere alt her."
2807
 
2808
- #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr "Denne fil kunne ikke blive uploadet"
2811
 
2812
- #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr "Du kan finde mere information om dette i afsnittet Indstillinger."
2815
 
@@ -2829,15 +2928,15 @@ msgstr "Fortæl mig mere om trinvis sikkerhedskopiering"
2829
  msgid "Memory limit"
2830
  msgstr "hukommelsesgrænse"
2831
 
2832
- #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr "genoprettelse"
2835
 
2836
- #: src/backup.php:862
2837
  msgid "Incremental"
2838
  msgstr "Trinvis"
2839
 
2840
- #: src/backup.php:862
2841
  msgid "Full backup"
2842
  msgstr "Fuld backup"
2843
 
@@ -2853,7 +2952,7 @@ msgstr "(se log...)"
2853
  msgid "Backup succeeded"
2854
  msgstr "Backup lykkedes"
2855
 
2856
- #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr "Hver %s time"
@@ -2892,15 +2991,15 @@ msgstr "Søg / erstat database"
2892
  msgid "search term"
2893
  msgstr "søgefrase"
2894
 
2895
- #: src/restorer.php:2198
2896
  msgid "Too many database errors have occurred - aborting"
2897
  msgstr "Der har været for mange database fejl - stopper"
2898
 
2899
- #: src/backup.php:928
2900
  msgid "read more at %s"
2901
  msgstr "læs mere på %s"
2902
 
2903
- #: src/backup.php:928
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr "E-mail rapporter skabt af UpdraftPlus (gratis) giver dig de seneste UpdraftPlus.com nyheder"
2906
 
@@ -2908,11 +3007,11 @@ msgstr "E-mail rapporter skabt af UpdraftPlus (gratis) giver dig de seneste Updr
2908
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2909
  msgstr "P.S. Hvis du installerer UpdraftPlus på flere WordPress-sider, kan du ikke genbruge dine projekter; du må oprette et ny ud fra din Google API konsol for hver side."
2910
 
2911
- #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr "Du har endnu ikke oprettet nogle backups."
2914
 
2915
- #: src/templates/wp-admin/settings/form-contents.php:181
2916
  msgid "Database Options"
2917
  msgstr "Database muligheder"
2918
 
@@ -2928,30 +3027,30 @@ msgstr "%s (%s brugt)"
2928
  msgid "Free disk space in account:"
2929
  msgstr "Ledig diskplads på konto:"
2930
 
2931
- #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr "Denne knap er deaktiveret fordi dit backup-arkiv ikke er skrivbart (se indstillingerne)."
2934
 
2935
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
  #: src/includes/deprecated-actions.php:29,
2937
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr "Eksisterende backups"
2941
 
2942
- #: src/admin.php:514, src/templates/wp-admin/settings/tab-bar.php:5
2943
  msgid "Current Status"
2944
  msgstr "Nuværende status"
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 "For at ændre standardinstillingerne for, hvad der skal tages backup af - for at indstille planlagte backups - for at sende dine backups til fjernlager (anbefales) - og mere - Gå til indstillingsfanen."
2949
 
2950
- #: src/admin.php:937
2951
  msgid "To make a backup, just press the Backup Now button."
2952
  msgstr "Klik på Backup Nu knappen for at skabe en backup."
2953
 
2954
- #: src/admin.php:937
2955
  msgid "Welcome to UpdraftPlus!"
2956
  msgstr "Velkommen til UpdraftPlus!"
2957
 
@@ -3023,7 +3122,7 @@ msgstr "vært"
3023
  msgid "user"
3024
  msgstr "bruger"
3025
 
3026
- #: src/class-updraftplus.php:1690
3027
  msgid "External database (%s)"
3028
  msgstr "Ekstern database (%s)"
3029
 
@@ -3040,31 +3139,31 @@ msgstr "adgang til den overliggende mappe mislykkedes"
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr "Dog mislykkede adgangsforsøget efterfølgende:"
3042
 
3043
- #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr "Ekstern database"
3046
 
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 "Dette vil også medføre fejlsøgningsudskrift fra alle plugins som vil blive vist på denne skærm - du skal ikke blive overrasket over at se disse."
3050
 
3051
- #: src/templates/wp-admin/settings/form-contents.php:263
3052
  msgid "Back up more databases"
3053
  msgstr "Backup flere databaser"
3054
 
3055
- #: src/templates/wp-admin/settings/form-contents.php:222
3056
  msgid "First, enter the decryption key"
3057
  msgstr "Indtast først dekrypteringsnøglen"
3058
 
3059
- #: src/templates/wp-admin/settings/form-contents.php:204
3060
  msgid "You can manually decrypt an encrypted database here."
3061
  msgstr "Du kan manuelt dekryptere en krypteret database her."
3062
 
3063
- #: src/templates/wp-admin/settings/form-contents.php:190
3064
  msgid "It can also backup external databases."
3065
  msgstr "Det kan også sikkerhedskopier eksterne databaser."
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 "Har du ikke lyst til at blive udspioneret? UpdraftPlus Premium kan krypterer din database backup."
3070
 
@@ -3072,7 +3171,7 @@ msgstr "Har du ikke lyst til at blive udspioneret? UpdraftPlus Premium kan krypt
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr "brug UpdraftPlus Premium"
3074
 
3075
- #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr "Dekryptering mislykkedes. Databasefilen er krypteret."
3078
 
@@ -3080,16 +3179,16 @@ msgstr "Dekryptering mislykkedes. Databasefilen er krypteret."
3080
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
3081
  msgstr "Kun WordPress databasen kan gendannes; du bliver nødt til at behandle den eksterne database manuelt."
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 "Der opstod en fejl med den første %s kommando - afbryder kørelse"
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 "Forbindelsesfejl: kontrollere dine adgangsoplysninger, at database serveren er oppe og at netværksforbindelsen ikke er bag en firewall."
3091
 
3092
- #: src/backup.php:1390
3093
  msgid "database connection attempt failed."
3094
  msgstr "database forbindelse mislykkedes."
3095
 
@@ -3101,7 +3200,7 @@ msgstr "Advarsel: Databasens URL (%s) er forskellig fra, hvad vi forventede (%s)
3101
  msgid "In %s, path names are case sensitive."
3102
  msgstr "Sti-navne i %s understøtter kun små bogstaver."
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 "Hvis feltet står tomt, vil backup'en placeres i roden af din %s"
@@ -3115,7 +3214,7 @@ msgstr "f.eks. %s"
3115
  msgid "Enter the path of the %s folder you wish to use here."
3116
  msgstr "Her angives stien til %s mappen du ønsker at bruge."
3117
 
3118
- #: src/addons/azure.php:556, src/methods/openstack2.php:164
3119
  msgid "Container"
3120
  msgstr "Container"
3121
 
@@ -3176,30 +3275,30 @@ msgstr "Dropbox"
3176
  msgid "Authenticate with %s"
3177
  msgstr "Godkend med %s"
3178
 
3179
- #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr "Fejl ved download af fil: Download mislykkedes"
3182
 
3183
- #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:496
3184
  msgid "Region: %s"
3185
  msgstr "Region: %s"
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 "%s fejl - Vi kunne tilgå containeren, men kunne ikke oprette en fil i den"
3190
 
3191
- #: src/methods/openstack-base.php:406
3192
  msgid "The %s object was not found"
3193
  msgstr "%s emnet blev ikke fundet"
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 "Kunne ikke tilgå %s container"
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 "%s fejl - Adgang til containeren mislykkedes"
3205
 
@@ -3261,7 +3360,7 @@ msgstr "Fetch"
3261
 
3262
  #: src/addons/migrator.php:391,
3263
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
- #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr "Denne funktion kræver %s version %s eller nyere"
3267
 
@@ -3269,7 +3368,7 @@ msgstr "Denne funktion kræver %s version %s eller nyere"
3269
  msgid "Failed to unpack the archive"
3270
  msgstr "Kunne ikke udpakke arkivet."
3271
 
3272
- #: src/class-updraftplus.php:1225
3273
  msgid "Error - failed to download the file"
3274
  msgstr "Fejl - Kunne ikke downloade filen"
3275
 
@@ -3293,8 +3392,8 @@ msgstr "Den indstallerede version af UpdraftPlus Backup/Restore er ikke blevet t
3293
  msgid "password/key"
3294
  msgstr "password/nøgle"
3295
 
3296
- #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr "Nøgle"
3300
 
@@ -3310,24 +3409,24 @@ msgstr "Nøglen var enten ikke i et godkendt format eller var ikke korrekt."
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr "SCP/SFTP password/nøgle"
3312
 
3313
- #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr "Fil-backup (lavet af %s)"
3316
 
3317
- #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr "Filer og database WordPress backup (lavet af %s)"
3320
 
3321
- #: src/addons/importer.php:276, src/admin.php:3470,
3322
- #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr "Backup lavet af: %s."
3325
 
3326
- #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr "Database (oprettet af %s)"
3329
 
3330
- #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr "ukendt kilde"
3333
 
@@ -3339,31 +3438,32 @@ msgstr "Gentag scanning af fjernlager"
3339
  msgid "Upload backup files"
3340
  msgstr "Upload backup filer"
3341
 
3342
- #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr "Denne backup blev lavet af %s og kan importeres."
3345
 
3346
- #: src/admin.php:966
3347
  msgid "Read this page for a guide to possible causes and how to fix it."
3348
  msgstr "Læs denne side for en guide til mulige årsager og løsningsforslag."
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 "WordPress har et antal (%d) planlagte opgaver, som skulle have være udført. Med mindre dette er et udviklingssite, tyder det på, at planlægningsdelen i din WordPress installation ikke fungerer korrekt."
3353
 
3354
- #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr "Hvis dette er en backup skabt af en anden backup plugin, kan UpdraftPlus Premium muligvis hjælpe dig."
3357
 
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 "Men, UpdraftPlus arkiver er standard zip/SQL filer - så hvis du er sikker på, at filen har det rette format, kan du omdøbe dem, så de matcher dette mønster."
3361
 
3362
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
 
3363
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3364
  msgstr "Denne fil er tilsyneladende ikke et UpdraftPlus backup arkiv (som skal være .zip eller .gz filer med et navn som: backup_(tidspunkt)_(site navn)_(kode)_(type).(zip/gz))."
3365
 
3366
- #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr "Backup skabt af ukendt kilde (%s) - Kan ikke genskabes."
@@ -3384,16 +3484,16 @@ msgstr "%s returnerede et uventet HTTP svar: %s"
3384
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3385
  msgstr "UpdraftPlus modulet til denne fil-adgangsmetode (%s) understøtter ikke lister af filer."
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 "Indstillinger blev ikke fundet"
3391
 
3392
- #: src/class-updraftplus.php:3100
3393
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
3394
  msgstr "Én eller flere backups er blevet tilføjet efter scanning af fjernlager; bemærk at disse backups ikke automatisk vil blive slettet gennem \"behold\"-instillingerne. Når/hvis du ønsker at slette dem, må dette gøres manuelt."
3395
 
3396
- #: src/admin.php:642
3397
  msgid "Rescanning remote and local storage for backup sets..."
3398
  msgstr "Scanner igen både fjern- og lokal-lager for backup-sæt..."
3399
 
@@ -3415,24 +3515,24 @@ msgstr "Ingen backup af lokation: Der blev ikke fundet noget at tage backup af"
3415
  msgid "Remove"
3416
  msgstr "Fjern"
3417
 
3418
- #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr "Andre %s FAQ's."
3421
 
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 "Se her for mere information og e-mails om backup-processen - Nyttigt, hvis noget går galt."
3425
 
3426
- #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3428
  msgstr "Ved angivelse af flere filer/arkiver skal de adskilles med kommaer. Ved enheder på top niveau kan du bruge et * før eller efter det indtastede. "
3429
 
3430
- #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr "Din hosting udbyder skal slå disse funktioner til inden %s kan virke."
3434
 
3435
- #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr "Din webservers PHP installation har slået disse funktioner fra: %s."
3438
 
@@ -3448,7 +3548,7 @@ msgstr "krypteret FTP (implicit kryptering)"
3448
  msgid "regular non-encrypted FTP"
3449
  msgstr "almindelig ikke-krypteret FTP"
3450
 
3451
- #: src/restorer.php:1665
3452
  msgid "Backup created by:"
3453
  msgstr "Backup udført af:"
3454
 
@@ -3502,15 +3602,15 @@ msgstr "Din betalte adgang til UpdraftPlus opdateringer til denne side er udløb
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr "Afvis fra hovedoversigten (i %s uger)"
3504
 
3505
- #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr "Forsøg på at rette dobbelt-kompresionen lykkedes."
3508
 
3509
- #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr "Forsøg på at rette dobbelt-kompresionen mislykkedes."
3512
 
3513
- #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr "Det ser ud til, at filerne i databasen er blevet komprimeret to gange - Måske har siden, du har downloaded dem fra, en forkert konfigureret webserver."
3516
 
@@ -3518,15 +3618,15 @@ msgstr "Det ser ud til, at filerne i databasen er blevet komprimeret to gange -
3518
  msgid "Constants"
3519
  msgstr "Kontinuerlige"
3520
 
3521
- #: src/backup.php:1627
3522
  msgid "Failed to open database file for reading:"
3523
  msgstr "Det mislykkedes af åbne og læse database-filen:"
3524
 
3525
- #: src/backup.php:1438
3526
  msgid "No database tables found"
3527
  msgstr "Ingen database-tabeller fundet"
3528
 
3529
- #: src/backup.php:1436
3530
  msgid "please wait for the rescheduled attempt"
3531
  msgstr "Venligst vent på det planlagte forsøg"
3532
 
@@ -3543,15 +3643,15 @@ msgstr "Kontoen er brugt op: Din %s konto har kun %d bytes tilbage, men filen, d
3543
  msgid "Errors occurred:"
3544
  msgstr "Fejl opstod:"
3545
 
3546
- #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr "Følg dette link for at downloade log-filen for denne genoprettelse (nødvendig for enhver henvendelse til support)."
3549
 
3550
- #: src/templates/wp-admin/settings/form-contents.php:378
3551
  msgid "See this FAQ also."
3552
  msgstr "Se også denne FAQ."
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 "Hvis du fravælger fjernlager, vil backup placeres på web-serveren. Dette kan ikke anbefales (med mindre du manuelt vil kopiere dem til din computer), da eventuelt tab af web-serveren vil medføre, at du mister både din hjemmeside og dine backup's."
3557
 
@@ -3567,7 +3667,7 @@ msgstr "Opsætningen af PHP på denne web-server tillader kun at PHP kører i %s
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 "Der findes ikke slettede mapper fra en tidligere genskabelse (venligst anvend \"Slet gamle arkiver\" knappen for at slette dem inden næste forsøg): %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 "Grænsen for kørsel af WordPress plugins er meget lav (%s sekunder) - Du bør hæve grænsen for at undgå backup-fejl på grund af time-outs (rådfør dig med din web-udbyder for mere hjælp angående max_execution_time PHP indstillingen. Den anbefalede værdig er %s sekunder eller mere)"
3573
 
@@ -3580,11 +3680,11 @@ msgstr "Dette plugin er disabled: %s genaktivér det manuelt, når du er klar."
3580
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3581
  msgstr "%s forbindelsen udløb. Hvis du angav serveren korrekt, skyldes dette normalt at en firewall blokerer forbindelsen. Du bør tjekke dette med din web-udbyder."
3582
 
3583
- #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr "Beskeder:"
3586
 
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 "En SQL linje, som er større end den maksimale pakkestørrelse og som ikke kan deles op, blev fundet. Denne linje vil ikke blive udført, men blive sprunget over: %s"
3590
 
@@ -3734,8 +3834,8 @@ msgid "Accounts created at rackspacecloud.com are US accounts; accounts created
3734
  msgstr "Konti oprettet på rackspacecloud.com er US konti; konti oprettet på rackspace.co.uk er UK konti."
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 "Autorisation mislykkedes (tjek dine personlige oplysninger)"
@@ -3744,35 +3844,35 @@ msgstr "Autorisation mislykkedes (tjek dine personlige oplysninger)"
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr "En ukendt fejl opstod ved forsøg på forbindelse til UpdraftPlus.com"
3746
 
3747
- #: src/admin.php:689, src/central/bootstrap.php:520
3748
  msgid "Create"
3749
  msgstr "Opret"
3750
 
3751
- #: src/admin.php:651
3752
  msgid "Trying..."
3753
  msgstr "Forsøger..."
3754
 
3755
- #: src/admin.php:650
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr "Den nye brugers RackSpace konsol password er (dette vil ikke blive vist igen):"
3758
 
3759
- #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr "Fejldata:"
3762
 
3763
- #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr "Backup eksisterer ikke i backup-historie"
3766
 
3767
- #: src/admin.php:2585
3768
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3769
  msgstr "Din WordPres installation har gamle arkiver fra tiden inden du genoprettede/flyttede (teknisk information: disse filer slutter med -old). Du bør klikke på denne knap, når du er sikker på at din tidligere handling virker."
3770
 
3771
- #: src/restorer.php:1732
3772
  msgid "Split line to avoid exceeding maximum packet size"
3773
  msgstr "Delt linje for at ungå overskridelse af maksimal pakkestørrelse"
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 "Din database-bruger har ikke tilladelse til at slette tabeller. Vi vil forsøge at genskabe ved blot at tømme tabellerne; dette burde virke så længe du genskaber fra en WordPress version med den samme database-struktur (%s)"
3778
 
@@ -3804,11 +3904,11 @@ msgstr "Indtast de ønskede adresser her, som skal modtage en rapport når backu
3804
  msgid "Email reports"
3805
  msgstr "E-mail rapporter"
3806
 
3807
- #: src/class-updraftplus.php:1698, src/class-updraftplus.php:1703
3808
  msgid "%s checksum: %s"
3809
  msgstr "%s checksum: %s"
3810
 
3811
- #: src/class-updraftplus.php:1671, src/class-updraftplus.php:1673
3812
  msgid "files: %s"
3813
  msgstr "filer: %s"
3814
 
@@ -3820,7 +3920,7 @@ msgstr "Brug \"Reporting\"-sektionen til at konfigurere den e-mail, du ønsker a
3820
  msgid "Debugging information"
3821
  msgstr "Information om rens af filer"
3822
 
3823
- #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr "Uploaded til:"
3826
 
@@ -3865,7 +3965,7 @@ msgstr "%d fejl, %d advarsler"
3865
  msgid "%s authentication"
3866
  msgstr "%s godkendelse"
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 "%s logo"
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr "%s returnerede ikke det forventede svar - tjek din logfil for flere detaljer"
3882
 
3883
- #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr "Det nødvendige %s PHP modul er ikke installeret - ret henvendelse til dit hostingfirma for at få dette aktiveret"
3886
 
@@ -3892,85 +3992,85 @@ msgstr "Brug \"%s\" add-on for flere muligheder. "
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr "Din sides admin e-mail adresse (%s) vil blive brugt."
3894
 
3895
- #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
  #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr "Tilslut"
3899
 
3900
- #: src/templates/wp-admin/settings/form-contents.php:292
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr "For udvidede muligheder for fejlrapportering, brug da Reporting add-on, "
3903
 
3904
- #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr "(version: %s)"
3907
 
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 "Vær opmærksom på at mailservere ofte har en størrelsesbegrænsning; typisk omkring %s Mb; backup større end disse grænser vil sandsynligvis ikke blive modtaget."
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 "Når backup via e-mail er tilføjet, send da også den samlede backup"
3916
 
3917
- #: src/addons/reporting.php:170, src/backup.php:963
3918
  msgid "Latest status:"
3919
  msgstr "Seneste status:"
3920
 
3921
- #: src/backup.php:962
3922
  msgid "Backup contains:"
3923
  msgstr "Backup indeholder:"
3924
 
3925
- #: src/backup.php:919
3926
  msgid "Backed up: %s"
3927
  msgstr "Backed up: %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 "Log-filen er vedhæftet denne e-mail. "
3932
 
3933
- #: src/backup.php:877
3934
  msgid "Unknown/unexpected error - please raise a support request"
3935
  msgstr "Ukendt/ uforventet fejl - Henvend dig venligst til supporten"
3936
 
3937
- #: src/backup.php:874
3938
  msgid "Database only (files were not part of this particular schedule)"
3939
  msgstr "Kun database (filer var ikke en del af denne planlagte kørsel)"
3940
 
3941
- #: src/backup.php:874
3942
  msgid "Database (files backup has not completed)"
3943
  msgstr "Database (backup af filer er ikke færdig)"
3944
 
3945
- #: src/backup.php:871
3946
  msgid "Files only (database was not part of this particular schedule)"
3947
  msgstr "Kun filer (databasen var ikke end del af denne planlagte kørsel)"
3948
 
3949
- #: src/backup.php:871
3950
  msgid "Files (database backup has not completed)"
3951
  msgstr "Arkiverer (backup af databasen er ikke færdig)"
3952
 
3953
- #: src/admin.php:295, src/backup.php:869
3954
  msgid "Files and database"
3955
  msgstr "Filer og database"
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 "(Dette gælder alle WordPress backup plugins, undtagen hvis de er specielt kodet til multisite mulighed)."
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 "Uden at opgradere tillader UpdraftPlus <strong>enhver</strong> blog administrator, som kan tilpasse plugin-indstillingerne (og dermed tilgå data, inklusiv passwords, fra) og genskabe (ud over tilpassede instillinger, f.eks. ændrede passwords) <strong>hele nætværket</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 "WordPress Multisite er understøtte med ekstra funktioner af UpdraftPlus Premium, eller Multisite tilføjelsen."
3968
 
3969
- #: src/options.php:191
3970
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3971
  msgstr "Dette er en WordPress multi-site (også kaldet netværk) installation."
3972
 
3973
- #: src/options.php:191
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr "UpdraftPlus advarsel:"
3976
 
@@ -4036,21 +4136,21 @@ msgid "We failed to successfully connect to UpdraftPlus.Com"
4036
  msgstr "Det lykkedes ikke at skabe forbindelse til 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 "Rapportering"
4044
 
4045
- #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr "Muligheder (raw)"
4048
 
4049
- #: src/addons/reporting.php:453, src/admin.php:638
4050
  msgid "Send a report only when there are warnings/errors"
4051
  msgstr "Send kun en rapport når der er advarsler/fejl"
4052
 
4053
- #: src/restorer.php:1676
4054
  msgid "Content URL:"
4055
  msgstr "Indholds-URL:"
4056
 
@@ -4058,15 +4158,15 @@ msgstr "Indholds-URL:"
4058
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4059
  msgstr "Du bedes tjekke filejerskab og -tilladelser i din WordPress installation"
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 "Se også \"Flere filer\"-tilføjelsen i vores shop."
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 "Din ledige plads på din hosting-konto er meget lille - kun %s Mb tilbage"
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 "Mængden af hukommelse (RAM) tilladt til PHP er meget lav (%s Mb) - Du bør udvide hukommelsen p.g.a. for lidt hukommelse (kontakt din webhosting-udbyder for mere hjælp)"
4072
 
@@ -4202,23 +4302,23 @@ msgstr "<strong>(Det ser ud til, at du allerede er godkendt,</strong>, men du ka
4202
  msgid "Drop backup files here"
4203
  msgstr "Drop backup-filer her"
4204
 
4205
- #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr "Sker der ingenting, når du forsøger at køre backup?"
4208
 
4209
- #: src/admin.php:649
4210
  msgid "The web server returned an error code (try again, or check your web server logs)"
4211
  msgstr "Web-serveren returnerede en fejlkode (prøv igen, eller tjek din web-servers logs)"
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 "Genskabelsen er startet. Tryk ikke på stop, og luk ikke browseren før der meldes om, at processen er færdig."
4216
 
4217
- #: src/admin.php:644
4218
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4219
  msgstr "Hvis du fravælger både databasen og filerne, har du fravalgt alt!"
4220
 
4221
- #: src/restorer.php:1670
4222
  msgid "Site home:"
4223
  msgstr "Sidens forside:"
4224
 
@@ -4234,20 +4334,20 @@ msgstr "(logs kan findes i UpdraftPlus indstillinger som normalt)..."
4234
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4235
  msgstr "Husk dette valg til næste gang (du vil stadig have mulighed for at ændre det)"
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 "Upload mislykkedes"
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 "Du kan sende en backup til mere end én destination ved hjælp af et tilføjelsesprogram."
4245
 
4246
- #: src/admin.php:2803
4247
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4248
  msgstr "Note: Tidslinjen nedenfor er baseret på stadier, IKKE tid. Stop ikke backup'en kun på grund af, at den tilsyneladende har stået på det samme sted i et stykke tid - dette er normalt."
4249
 
4250
- #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr "(%s%%, file %s of %s)"
4253
 
@@ -4284,97 +4384,97 @@ msgstr "Forsøget på at sende backup'en via e-mail mislykkedes (backup'en var m
4284
  msgid "Backup is of: %s."
4285
  msgstr "Backup er: %s."
4286
 
4287
- #: src/admin.php:737
4288
  msgid "%s settings test result:"
4289
  msgstr "%s indstillinger test resultat:"
4290
 
4291
- #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr "(Ikke færdig)"
4294
 
4295
- #: src/admin.php:3542
4296
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4297
  msgstr "Hvis du ser flere backup's, end du havde forventet, er det sikkert på grund af, at sletning af gamle backup sæt ikke sker, før en ny backup er færdig."
4298
 
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>Venligst ikke</b> plaver det i dine uploads eller plugins arkiv, da det vil skabe gentagelse på gentagelse (backup af backup af backup af...)."
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 "Dette er, hvor UpdraftPlus vil skrive zip-filerne indledningsvis. Dette arkiv må være skrivbare for din web-server. Dette relaterer til dit indholdsarkiv (der som standard kaldes wp-content)."
4306
 
4307
- #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr "Job ID: %s"
4310
 
4311
- #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr "Seneste aktivitet: for %ss siden"
4314
 
4315
- #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr "Gentages næste gang: %d (after %ss)"
4318
 
4319
- #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
- #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr "Ukendt"
4324
 
4325
- #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr "Backup er færdig"
4328
 
4329
- #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr "Afventer planlagt kørsel før næste forsøg pga. fejl"
4332
 
4333
- #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr "Nedbringer antal gamle backup-sæt"
4336
 
4337
- #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr "Uploader filer til fjernlager"
4340
 
4341
- #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr "Krypteret database"
4344
 
4345
- #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr "Krypterer database"
4348
 
4349
- #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr "Oprettet database backup"
4352
 
4353
- #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr "tabel: %s"
4356
 
4357
- #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr "Opretter database backup"
4360
 
4361
- #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr "Oprettede fil backup zips"
4364
 
4365
- #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr "Opretter fil backup zips"
4368
 
4369
- #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr "Backup er startet"
4372
 
4373
- #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr "Igangværende backups:"
4376
 
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 "Planlæggeren er disabled i dine WordPress indstillinger via DISABLE_WP_CRON. Ingen backup's kan køre (selv &quot;Backup Now&quot;), medmindre du manuelt har indstillet muligheden for at kontakte planlæggeren, eller indtil det er slået fra."
4380
 
@@ -4390,11 +4490,11 @@ msgstr "mappe"
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr "UpdraftPlus havde behov for at oprette en %s i dit indholdsarkiv, men mislykkedes - Venligst tjek dine rettigheder og giv adgang (%s)"
4392
 
4393
- #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr "Backup'en er ikke færdig; en genoptagelse er planlagt"
4396
 
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 "Dit website besøges kun sjældent og UpdraftPlus modtager ikke de forventede ressourcer. Læs venligst denne side:"
4400
 
@@ -4404,11 +4504,11 @@ msgstr "Dit website besøges kun sjældent og UpdraftPlus modtager ikke de forve
4404
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4405
  msgstr "%s godkendelsen kunne ikke fuldføres, fordi noget andet på dit site ødelægger den. Prøv at sætte plugins til passiv og skift til et standard tema. (Det, du leder efter, er de komponenter, der sender output (sandsynligvis PHP advarsler/fejl) inden siden starter op. At slå antivirus-indstillinger fra kan også hjælpe)."
4406
 
4407
- #: src/admin.php:2336
4408
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4409
  msgstr "Din PHP hukommelsesgrænse (bestemt af din web hosting udbyder) er meget lav. UpdraftPlus forsøgte uden held at øge denne grænse. Dette plugin har problemer med grænser mindre end 64 Mb - specielt hvis du har upload'et meget store filer (selv om mange sider vil fungere med en 32Mb grænse)."
4410
 
4411
- #: src/addons/autobackup.php:1085, src/admin.php:691
4412
  msgid "Proceed with update"
4413
  msgstr "Fortsæt med opdateringen"
4414
 
@@ -4483,88 +4583,88 @@ msgstr "Flere plugins"
4483
  msgid "Support"
4484
  msgstr "Support"
4485
 
4486
- #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr "UpdraftPlus kunne ikke finde indstillinger for tabeller ved scanning af database backup'en."
4489
 
4490
- #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr "Denne database backup mangler WordPress tabeller: %s"
4493
 
4494
- #: src/class-updraftplus.php:4774
4495
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4496
  msgstr "Du importerer fra en nyere version af WordPress (%s) til en ældre version (%s). Det kan ikke garanteres, at WordPress kan håndtere dette."
4497
 
4498
- #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr ""
4501
 
4502
- #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr "Databasen er for lille til at være en godkendt WordPress database (størrelse: %s Kb)."
4505
 
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 "Vær på den sikre side med en automatisk backup"
4510
 
4511
- #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr "Hvis du stadig kan læse denne tekst, efter siden er færdig med at loade, så er der et problem med JavaScrips eller jQuery på siden."
4514
 
4515
- #: src/admin.php:685
4516
  msgid "The file was uploaded."
4517
  msgstr "Filen blev uploaded."
4518
 
4519
- #: src/admin.php:684
4520
  msgid "Unknown server response status:"
4521
  msgstr "Ukendt server-svar status:"
4522
 
4523
- #: src/admin.php:683
4524
  msgid "Unknown server response:"
4525
  msgstr "Ukendt server-svar:"
4526
 
4527
- #: src/admin.php:682
4528
  msgid "This decryption key will be attempted:"
4529
  msgstr "Denne dekrypteringsnøgle vil forsøges anvendt:"
4530
 
4531
- #: src/admin.php:681
4532
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4533
  msgstr "Følg dette link for at forsøge dekryptering eller download database-filen til din computer."
4534
 
4535
- #: src/admin.php:680
4536
  msgid "Upload error"
4537
  msgstr "Fejl ved upload"
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 "Denne fil er tilsyneladende ikke et krypteret UpdraftPlus database arkiv (sådanne filer er .gz.crypt filer, der har et navn som: backup_(tid)_(sidenavn)_(kode)_db.crypt.gz)."
4542
 
4543
- #: src/admin.php:678
4544
  msgid "Upload error:"
4545
  msgstr "Upload fejl:"
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 "(vær sikker på, at du prøvede på at uploade en zip-fil, der tidligere er skabt af UpdraftPlus)"
4550
 
4551
- #: src/admin.php:668
4552
  msgid "Download to your computer"
4553
  msgstr "Download til din computer"
4554
 
4555
- #: src/admin.php:667
4556
  msgid "Delete from your web server"
4557
  msgstr "Slet fra din webserver"
4558
 
4559
- #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr "Du mangler tilsyneladende et eller flere arkiver fra dette multi-arkiv sæt."
4562
 
4563
- #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr "%d arkiv(er) i sæt)."
4566
 
4567
- #: src/templates/wp-admin/settings/form-contents.php:338
4568
  msgid "Split archives every:"
4569
  msgstr "Opdel arkiver hver:"
4570
 
@@ -4572,15 +4672,15 @@ msgstr "Opdel arkiver hver:"
4572
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4573
  msgstr "Fejl: Serveren sendte os et svar (JSON), som vi ikke forstod."
4574
 
4575
- #: src/admin.php:658
4576
  msgid "Warnings:"
4577
  msgstr "Advarsler:"
4578
 
4579
- #: src/admin.php:657
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr "Fejl: Serveren sendte et tomt svar. "
4582
 
4583
- #: src/admin.php:2049
4584
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4585
  msgstr "Dette ligner en fil skabt af UpdraftPlus, men denne installation kender ikke til denne type objekt: %s. Måske skal du installere en add-on?"
4586
 
@@ -4616,7 +4716,7 @@ msgstr "Filen blev ikke fundet (du skal uploade den): %s"
4616
  msgid "No such backup set exists"
4617
  msgstr "En sådan backup findes ikke"
4618
 
4619
- #: src/admin.php:1291
4620
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4621
  msgstr "Backup-arkivet for denne fil kunne ikke findes. Den anvendte fjernlagermetode (%s) tillader os ikke at hente filerne. For at genskabe via UpdraftPlus, må du hente en kopi af denne fil og placere den i UpdraftPlus's arbejdsmappe."
4622
 
@@ -4624,7 +4724,7 @@ msgstr "Backup-arkivet for denne fil kunne ikke findes. Den anvendte fjernlagerm
4624
  msgid "Moving unpacked backup into place..."
4625
  msgstr "Flytter upakket backup på plads..."
4626
 
4627
- #: src/backup.php:2742, src/backup.php:2996
4628
  msgid "Failed to open the zip file (%s) - %s"
4629
  msgstr "Kunne ikke åbne zip-filen (%s) - %s"
4630
 
@@ -4632,43 +4732,43 @@ msgstr "Kunne ikke åbne zip-filen (%s) - %s"
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr "Server-sti til WordPress rodmappen: %s"
4634
 
4635
- #: src/methods/s3.php:851
4636
  msgid "%s end-point"
4637
  msgstr "%s end-point"
4638
 
4639
- #: src/methods/s3.php:813
4640
  msgid "... and many more!"
4641
  msgstr "... og mange flere!"
4642
 
4643
- #: src/methods/s3generic.php:52, src/methods/s3generic.php:61
4644
  msgid "S3 (Compatible)"
4645
  msgstr "S3 (Kompatibel)"
4646
 
4647
- #: src/admin.php:1205
4648
  msgid "File is not locally present - needs retrieving from remote storage"
4649
  msgstr "Filen findes i øjeblikket ikke lokalt - Den skal hentes fra fjernlageret"
4650
 
4651
- #: src/admin.php:3810
4652
  msgid "Looking for %s archive: file name: %s"
4653
  msgstr "Leder efter %s arkiv: filnavn: %s"
4654
 
4655
- #: src/admin.php:3771
4656
  msgid "Final checks"
4657
  msgstr "Afsluttende kontrol"
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 "Vælg denne funktion for at slette enhver unødvendige backup-filer fra din server, efter backup-kørslen er færdiggjort. Hvis du fravælger funktionen, vil alle filer sendt til fjernlager også forblive på den lokale enhed)."
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 "Placér krypterede database-filer (db.gz.crypt filer) her for at uploade dem til afkryptering"
4666
 
4667
- #: src/admin.php:3162
4668
  msgid "Your wp-content directory server path: %s"
4669
  msgstr "Din wp-content arkivserver sti: %s"
4670
 
4671
- #: src/admin.php:674
4672
  msgid "Raw backup history"
4673
  msgstr "Komplet backup-historie"
4674
 
@@ -4676,11 +4776,11 @@ msgstr "Komplet backup-historie"
4676
  msgid "Show raw backup and file list"
4677
  msgstr "Vis komplet backup og fil-liste"
4678
 
4679
- #: src/admin.php:656
4680
  msgid "Processing files - please wait..."
4681
  msgstr "Behandler filer - vent venligst..."
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 "Venligst se denne FAQ for hjælp til en løsning."
@@ -4689,11 +4789,11 @@ msgstr "Venligst se denne FAQ for hjælp til en løsning."
4689
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4690
  msgstr "Din WordPress installation har et problem med at udlæse ekstra whitespace. Dette kan ødelægge backup's, som downloades herfra."
4691
 
4692
- #: src/class-updraftplus.php:4682
4693
  msgid "Failed to open database file."
4694
  msgstr "Kunne ikke åbne database filen."
4695
 
4696
- #: src/admin.php:4382
4697
  msgid "Known backups (raw)"
4698
  msgstr "Kendte backups (komplette)"
4699
 
@@ -4709,21 +4809,22 @@ msgstr "Den ønskede table engine (%s) er ikke tilgængelig - Skifter til MylSAM
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 "Dette ser ud til at være en flytning (backup'en er fra en side med en anden adresse/URL), men du valgte ikke muligheden for at søge-og-erstatte databasen. Dette er normalt en fejl."
4711
 
4712
- #: src/admin.php:3830
4713
  msgid "file is size:"
4714
  msgstr "Filstørrelse:"
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 "Find mere information her."
4721
 
4722
- #: src/admin.php:655
4723
  msgid "Some files are still downloading or being processed - please wait."
4724
  msgstr "Nogle filer er stadig ved at downloade eller blive bearbejdet - Vent venligst."
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 "Denne backup-pakke er fra en anden side - Dette er ikke en genskabelse, men en flytning. Du behøver Migrator add-on for at få dette til at fungere."
4729
 
@@ -4767,9 +4868,9 @@ msgstr "Fejl - Kunne ikke downloade filen fra %s"
4767
  msgid "Error - no such file exists at %s"
4768
  msgstr "Fejl - Denne fil eksisterer ikke på %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 +4880,39 @@ msgstr "%s Fejl"
4779
  msgid "%s error - failed to upload file"
4780
  msgstr "%s fejl - Kunne ikke uploade filen"
4781
 
4782
- #: src/class-updraftplus.php:1117, src/methods/cloudfiles.php:223
4783
  msgid "%s error - failed to re-assemble chunks"
4784
  msgstr "%s fejl - kunne ikke genskabe stykkerne"
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 tilladelse fejlede"
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 "Fejl: %s"
4805
 
4806
- #: src/admin.php:3099
4807
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4808
  msgstr "Dette backup-arkiv eksisterer, men er <b>ikke</b> skrivbart."
4809
 
4810
- #: src/admin.php:3097
4811
  msgid "Backup directory specified does <b>not</b> exist."
4812
  msgstr "Dette backup-arkiv eksisterer <b>ikke</b>."
4813
 
4814
- #: src/admin.php:2810, src/admin.php:3053
4815
  msgid "Warning: %s"
4816
  msgstr "Advarsel: %s"
4817
 
@@ -4819,31 +4920,31 @@ msgstr "Advarsel: %s"
4819
  msgid "Last backup job run:"
4820
  msgstr "Sidste backup-job kørsel:"
4821
 
4822
- #: src/backup.php:2764
4823
  msgid "A very large file was encountered: %s (size: %s Mb)"
4824
  msgstr "En meget stor fil blev fundet: %s (størrelse: %s Mb)"
4825
 
4826
- #: src/backup.php:2170
4827
  msgid "%s: unreadable file - could not be backed up"
4828
  msgstr "%s: Ikke læsbar fil - Kunne ikke blive backed up"
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 tabellen har et stort antal rækker (%s) - Vi håber at din web-hosting udbyder giver dig nok ressourcer til at inkludere denne tabel i backup'en"
4833
 
4834
- #: src/backup.php:1646
4835
  msgid "An error occurred whilst closing the final database file"
4836
  msgstr "En fejl opstod ved lukning af den sidste database-fil"
4837
 
4838
- #: src/backup.php:904
4839
  msgid "Warnings encountered:"
4840
  msgstr "Fundne advarsler:"
4841
 
4842
- #: src/class-updraftplus.php:3194
4843
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4844
  msgstr "Backup'en ser ud til at være succesfuld (med advarsler) og er nu færdig"
4845
 
4846
- #: src/class-updraftplus.php:770
4847
  msgid "Your free disk space is very low - only %s Mb remain"
4848
  msgstr "Din ledige diskplads er meget lille - Der er kun %s Mb tilbage"
4849
 
@@ -4879,15 +4980,15 @@ msgstr "Undersøg dine fil-tilladelser: Kunne ikke skabe og tilføje arkivet:"
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 "Nogle servere angiver at krypteret FTP er mulig, men går så i time-out (efter lang tid), når du forsøger at anvende det. Hvis du oplever dette, skal du gå til \"Ekspert Muligheder\" (nedenfor) og slå SSL fra."
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 "Din web-servers PHP installation indeholder ikke et nødvendigt modul (%s). Venligst kontakt din web hosting udbyders support og bed dem om at tilføje modulet."
4885
 
4886
- #: src/methods/s3.php:1082
4887
  msgid "Please check your access credentials."
4888
  msgstr "Venligst tjek dine adgangsindstillinger."
4889
 
4890
- #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1060
4891
  msgid "The error reported by %s was:"
4892
  msgstr "Fejlen meddelt af %s var:"
4893
 
@@ -4895,48 +4996,48 @@ msgstr "Fejlen meddelt af %s var:"
4895
  msgid "Please supply the requested information, and then continue."
4896
  msgstr "Venligst angiv den anmodede information og fortsæt derefter."
4897
 
4898
- #: src/class-updraftplus.php:4815, src/restorer.php:1706
4899
  msgid "Site information:"
4900
  msgstr "Site information:"
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 "Din database bruger har ikke tilladelse til at oprette tabeller. Vi vil forsøge at genskabe ved simpelthen af tømme tabellerne, hvilket skulle virke, hvis a) du genskaber fra en WordPress version med samme database struktur, og b) dine importerede databaser ikke indeholder tabeller, der ikke allerede findes på det importerede site."
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 "Advarsel:"
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 "Du arbejder via en WordPress multisite - men din backup er ikke af et multisite site."
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 "Springer genskabelse af WordPress kerneværdier over, når der importeres et single site til en multisite installation. Hvis du havde noget vigtigt i dit WordPress arkiv, må du tilføje det manuelt fra zip-filen."
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 "Din web-servers PHP installation inkluderede ikke en <strong>nødvendig</strong> (for %s) modul (%s). Venligst kontakt din webhosting-udbyders support og bed dem om at muliggøre dette."
4923
 
4924
- #: src/admin.php:692
4925
  msgid "Close"
4926
  msgstr "Luk"
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 "Uventet respons:"
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 "Adskil hver adresse med et komma, for at sende til flere adresser."
4938
 
4939
- #: src/admin.php:672
4940
  msgid "PHP information"
4941
  msgstr "PHP information"
4942
 
@@ -4972,7 +5073,7 @@ msgstr "Sletter... Vent venligst på, at kommunikationen med fjernlageret er ful
4972
  msgid "Also delete from remote storage"
4973
  msgstr "Slet også fra fjernlageret"
4974
 
4975
- #: src/admin.php:2540
4976
  msgid "Latest UpdraftPlus.com news:"
4977
  msgstr "Seneste UpdraftPlus.com nyheder:"
4978
 
@@ -4989,7 +5090,7 @@ msgstr "Premium"
4989
  msgid "News"
4990
  msgstr "Nyheder"
4991
 
4992
- #: src/admin.php:1469, src/includes/class-wpadmin-commands.php:465
4993
  msgid "Backup set not found"
4994
  msgstr "Bakup sæt ikke fundet"
4995
 
@@ -5011,7 +5112,7 @@ msgstr "RSS link"
5011
  msgid "Blog link"
5012
  msgstr "Blog link"
5013
 
5014
- #: src/admin.php:736
5015
  msgid "Testing %s Settings..."
5016
  msgstr "Tester %s indstillinger..."
5017
 
@@ -5019,23 +5120,23 @@ msgstr "Tester %s indstillinger..."
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 "Eller, du kan placere dem manuelt i dit UpdraftPlus arkiv (normalt wp-indhold/updraft), f.eks. via FTP, og benyt så \"rescan\"-linket ovenfor."
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's debug mode er slået til. Du vil muligvis få debugging beskeder på denne side, ikke kun fra UpdraftPlus, men fra alle andre plugins, der er installeret. Vær sikker på, at den viste besked er fra UpdraftPlus, inden du kontakter support."
5025
 
5026
- #: src/admin.php:961
5027
  msgid "Notice"
5028
  msgstr "Meddelelse"
5029
 
5030
- #: src/backup.php:886
5031
  msgid "Errors encountered:"
5032
  msgstr "Fundne fejl:"
5033
 
5034
- #: src/admin.php:641
5035
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5036
  msgstr "Scanner igen (søger efter backup's, du manuelt har uploaded til det interne backup lager)..."
5037
 
5038
- #: src/admin.php:654
5039
  msgid "Begun looking for this entity"
5040
  msgstr "Søgning efter denne enhed er startet"
5041
 
@@ -5055,7 +5156,7 @@ msgstr "rækker: %d"
5055
  msgid "Time taken (seconds):"
5056
  msgstr "Anvendt tid (sekunder):"
5057
 
5058
- #: src/addons/migrator.php:1141, src/admin.php:659
5059
  msgid "Errors:"
5060
  msgstr "Fejl:"
5061
 
@@ -5117,15 +5218,15 @@ msgstr "Søg og erstat site-placering i databasen (migrere)"
5117
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5118
  msgstr "Alle referenver til dette site lokation i databasen, vil blive erstattet med dit nuværende site-URL, som er: %s"
5119
 
5120
- #: src/addons/multisite.php:656
5121
  msgid "Blog uploads"
5122
  msgstr "Blog uploads"
5123
 
5124
- #: src/addons/migrator.php:385, src/addons/multisite.php:649
5125
  msgid "Must-use plugins"
5126
  msgstr "Must-use plugins"
5127
 
5128
- #: src/addons/multisite.php:173
5129
  msgid "Multisite Install"
5130
  msgstr "Multisite installation"
5131
 
@@ -5221,13 +5322,13 @@ msgstr "Overskriv wp-config.php"
5221
  msgid "WordPress Core"
5222
  msgstr "WordPress Core"
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 "Fejl: Vi kunne ikke indsætte en fil i denne mappe - Venligst tjek dine tilladelser."
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 "Mislykket"
@@ -5320,96 +5421,96 @@ msgstr "fejl: Kunne ikke oploade filer i %s (se log file for yderligere informat
5320
  msgid "You do not appear to be authenticated with Dropbox"
5321
  msgstr "Det lader ikke til, at du har adgang til Dropbox"
5322
 
5323
- #: src/methods/s3.php:1077
5324
  msgid "The communication with %s was not encrypted."
5325
  msgstr "Kommunikationen med %s var ikke krypteret."
5326
 
5327
- #: src/methods/s3.php:1075
5328
  msgid "The communication with %s was encrypted."
5329
  msgstr "Kommunikationen med %s var krypteret."
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 "Vi har fået adgang til gruppen, og vi kunne oprette filer i den."
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 "Vi har fået adgang til gruppen, men forsøget på at oprette en fil i den mislykkedes."
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 "Fejl"
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 "Fejl: Vi kunne ikke få adgang til eller oprette sådan en gruppe. Tjek venligst dine adgangsoplysninger, og hvis de er korrekt, så prøv et andet gruppenavn (da en anden %s bruger måske allerede har taget dit navn)."
5348
 
5349
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5350
- #: src/methods/s3.php:1052
5351
  msgid "Region"
5352
  msgstr "Region"
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 "Fejl: Ingen gruppedetaljer blev oplyst."
5358
 
5359
- #: src/methods/s3.php:1012
5360
  msgid "API secret"
5361
  msgstr "API hemmelighed"
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 "Indtast kun et gruppenavn eller en gruppe og sti. Eksempler: mingruppe, mingruppe/minsti"
5366
 
5367
- #: src/methods/s3.php:887
5368
  msgid "%s location"
5369
  msgstr "%s lokation"
5370
 
5371
- #: src/methods/s3.php:883
5372
  msgid "%s secret key"
5373
  msgstr "%s sikkerhedsnøgle"
5374
 
5375
- #: src/methods/s3.php:879
5376
  msgid "%s access key"
5377
  msgstr "%s adgangsnøgle"
5378
 
5379
- #: src/methods/s3.php:844
5380
  msgid "If you see errors about SSL certificates, then please go here for help."
5381
  msgstr "Hvis du ser fejl vedrørende SSL-certifikater, kan du få hjælp her."
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 "Få din adgangs- og sikkerhedsnøgle <a href=\"%s\"> fra din %s konsol</a>, og vælg derefter et (globalt unikt - alle %s brugere) gruppe navn (bogstaver og tal) (og eventuelt en sti ) til brug for opbevaring. Der vil blive oprettet denne samling for dig, hvis den ikke allerede findes."
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 Fejl: Kunne ikke få adgang til samling %s. Tjek dine tilladelser og legitimationsoplysninger."
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 Fejl: Kunne ikke downloade %s. Tjek dine tilladelser og person-oplysninger."
5395
 
5396
- #: src/methods/s3.php:440
5397
  msgid "%s re-assembly error (%s): (see log file for more)"
5398
  msgstr "%s genskabelses-fejl (%s): (Se logfilen for mere info)"
5399
 
5400
- #: src/methods/s3.php:436
5401
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5402
  msgstr "%s upload (%s): Genskabelse mislykkedes (se log for flere detaljer)."
5403
 
5404
- #: src/methods/s3.php:420
5405
  msgid "%s chunk %s: upload failed"
5406
  msgstr "%s del %s: Upload mislykkedes."
5407
 
5408
- #: src/methods/s3.php:410
5409
  msgid "%s error: file %s was shortened unexpectedly"
5410
  msgstr "%s fejl: Filen %s blev forkortet uventet."
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 upload: Det mislykkedes af få upload-ID til multi upload - Se logfilen for flere detaljer."
5415
 
@@ -5421,7 +5522,7 @@ msgstr "Note:"
5421
  msgid "WordPress Backup"
5422
  msgstr "WordPress Backup"
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 "Vi fik adgang til mappen, og var i stand til at oprette filer i den."
5427
 
@@ -5429,7 +5530,7 @@ msgstr "Vi fik adgang til mappen, og var i stand til at oprette filer i den."
5429
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5430
  msgstr "Cloud Files fejl - vi fik adgang til mappen, men undlod at oprette en fil i den."
5431
 
5432
- #: src/methods/cloudfiles.php:551, src/methods/openstack-base.php:437
5433
  msgid "Failure: No container details were given."
5434
  msgstr "Fejl: Der blev ikke oplyst detaljer om mappe."
5435
 
@@ -5440,7 +5541,7 @@ msgid "Username"
5440
  msgstr "Brugernavn"
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-nøgle"
5446
 
@@ -5448,18 +5549,18 @@ msgstr "API-nøgle"
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 "Fejl: Der blev ikke angivet et %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 %s modul <strong>kræver</strong> %s. Vær venlig ikke at kontakte support; der er intet alternativ."
5465
 
@@ -5498,11 +5599,11 @@ msgstr "Du bør også læse denne vigtige FAQ."
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 "Få din API nøgle <a href=\"https://mycloud.rackspace.com/\"> fra din Rackspace Cloud konsol</a>(læs vejledningen <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">her</a>), og vælg herefter et mappenavn til brug for opbevaring. Mappen vil blive oprettet for dig, hvis den ikke allerede findes."
5500
 
5501
- #: src/admin.php:735, src/methods/backup-module.php:247
5502
  msgid "Test %s Settings"
5503
  msgstr "Test %s indstillinger"
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 "Fejl ved åbning af lokal fil: Kunne ikke downloade."
@@ -5513,13 +5614,13 @@ msgstr "Cloud Files fejl - Upload af fil mislykkedes."
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 Fejl: Upload mislykkedes."
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 Fejl: Kunne ikke åbne den lokale fil."
@@ -5568,8 +5669,8 @@ msgstr "Ved yderligere hjælp, inklusiv skærmbilleder, kan du følge dette link
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 er et godt valg, fordi UpdraftPlus understøtter chunked uploads - Uanset hvor stor din hjemmeside er, kan UpdraftPlus uploade den lidt ad gangen uden at blive udsat for time-outs."
5575
 
@@ -5601,9 +5702,9 @@ msgstr "du har autentificeret din %s konto."
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 "Succes"
5609
 
@@ -5642,31 +5743,31 @@ msgstr "Du har ikke dette UpdraftPlus %s add-on installeret - Få det fra %s"
5642
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5643
  msgstr "Det er nødvendigt at re-autentificere med %s, da dine eksisterende legitimationsoplysninger ikke fungerer."
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 "OK"
5650
 
5651
- #: src/restorer.php:2267, src/restorer.php:2342
5652
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5653
  msgstr "Tabel præfiks har ændret sig: Skiftende %s tabel-felt(er) i overensstemmelse hermed:"
5654
 
5655
- #: src/addons/migrator.php:1154, src/restorer.php:2170
5656
  msgid "the database query being run was:"
5657
  msgstr "databaseforespørgslen der blev kørt var:"
5658
 
5659
- #: src/restorer.php:1873
5660
  msgid "will restore as:"
5661
  msgstr "vil genskabes som:"
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 "Gammel tabel præfiks:"
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 "Backup af:"
5672
 
@@ -5738,152 +5839,152 @@ msgstr "Backup-fil er ikke tilgængelig."
5738
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5739
  msgstr "UpdraftPlus er ikke i stand til direkte at genskabe denne type. Den skal genoprettes manuelt."
5740
 
5741
- #: src/admin.php:3836, src/admin.php:3837
5742
  msgid "Could not find one of the files for restoration"
5743
  msgstr "Kunne ikke finde en af filerne til genoprettelse"
5744
 
5745
- #: src/admin.php:3946
5746
  msgid "Error message"
5747
  msgstr "Fejlmeddelelse"
5748
 
5749
- #: src/admin.php:3833
5750
  msgid "The backup records do not contain information about the proper size of this file."
5751
  msgstr "Backup optegnelser indeholder ikke information om den korrekte størrelse af denne fil."
5752
 
5753
- #: src/admin.php:3825
5754
  msgid "Archive is expected to be size:"
5755
  msgstr "Arkivets forventede størrelse:"
5756
 
5757
- #: src/admin.php:3722
5758
  msgid "If making a request for support, please include this information:"
5759
  msgstr "Hvis du opretter en anmodning om support, skal du medtage denne information:"
5760
 
5761
- #: src/admin.php:3721
5762
  msgid "ABORT: Could not find the information on which entities to restore."
5763
  msgstr "AFBRUDT: Kunne ikke finde oplysninger om, hvilke enheder som skulle gendannes."
5764
 
5765
- #: src/admin.php:3676
5766
  msgid "UpdraftPlus Restoration: Progress"
5767
  msgstr "UpdraftPlus Genoprettelse: Status"
5768
 
5769
- #: src/admin.php:3628
5770
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5771
  msgstr "Denne backup findes ikke i backup historik - genopretningen afbrudt. Tidsstempel:"
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 "Når du har trykket på denne knap, vil du få mulighed for at vælge, hvilke komponenter du ønsker at gendanne"
5776
 
5777
- #: src/admin.php:3579
5778
  msgid "Delete this backup set"
5779
  msgstr "Slet dette backup sæt"
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 "Gode nyheder: Dit websteds kommunikation med %s kan krypteres. Hvis du ser nogen fejl som har med kryptering at gøre, så kig under \"Avancerede indstillinger\" for mere hjælp."
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 "Din webservers PHP/Curl-installation understøtter ikke HTTPS-adgang. Vi kan ikke få adgang til %s uden denne mulighed. Kontakt venligst din hosts support. %s <strong>kræver</strong> Curl + https. Undlad venligst at lave en supportadmodning til os; der er ikke noget alternativ."
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 "Dit websteds PHP-installation bruger ikke et nødvendigt modul (%s). Kontakt venligst din hostingudbyder's support."
5797
 
5798
- #: src/templates/wp-admin/settings/form-contents.php:401
5799
  msgid "Save Changes"
5800
  msgstr "Gem ændringer"
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 "Vælger du denne indstilling sænkes dit sikkerhedsniveau idet at UpdraftPlus stopper med at bruge SSL til autentificering og krypteret forbindelse, hvor det er muligt. Bemærk, at nogle cloud lagerplads udbydere ikke tillader dette (f.eks Dropbox), så ved disse udbydere har denne indstilling ikke nogen effekt."
5805
 
5806
- #: src/templates/wp-admin/settings/form-contents.php:377
5807
  msgid "Disable SSL entirely where possible"
5808
  msgstr "Deaktiver SSL helt, hvor det er muligt"
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 "Bemærk, at ikke alle cloud backup metoder nødvendigvis bruger SSL-godkendelse."
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 "Vælger du denne indstilling sænkes dit sikkerhedsniveau idet at UpdraftPlus stopper med at kontrollere identiteten af krypterede sider, som den forbinder til (f.eks Dropbox, Google Drev). Det betyder, at UpdraftPlus vil bruge SSL kun til kryptering af trafik, og ikke til godkendelse."
5817
 
5818
- #: src/templates/wp-admin/settings/form-contents.php:372
5819
  msgid "Do not verify SSL certificates"
5820
  msgstr "Undlad at validere SSL-certifikater"
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 "Som standard bruger UpdraftPlus sin egne SSL-certifikater til at kontrollere identiteten af andre tjenester (dvs. for at sikre, at det taler til den rigtige Dropbox, Amazon S3, etc., og ikke en hacker). Vi holder disse ajour. Men hvis du får en SSL fejl, så vælger denne indstilling (der forårsager at UpdraftPlus bruger din webservers SSL i stedet for), hvilket måske kan løse problemet."
5825
 
5826
- #: src/templates/wp-admin/settings/form-contents.php:367
5827
  msgid "Use the server's SSL certificates"
5828
  msgstr "Brug denne servers SSL-certifikater"
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 "Hvis dette mislykkes, så tjek tilladelserne på din server eller ændre den til en anden mappe, der er skrivbare for din webserver."
5833
 
5834
- #: src/admin.php:3101
5835
  msgid "click here"
5836
  msgstr "klik her"
5837
 
5838
- #: src/admin.php:3101
5839
  msgid "or, to reset this option"
5840
  msgstr "eller for at nulstille denne indstilling"
5841
 
5842
- #: src/admin.php:3101
5843
  msgid "Follow this link to attempt to create the directory and set the permissions"
5844
  msgstr "Klik her for at forsøge at oprette mappen og angive rettighederne til den."
5845
 
5846
- #: src/admin.php:3093
5847
  msgid "Backup directory specified is writable, which is good."
5848
  msgstr "Den definerede Backup mappe er skrivbar, hvilket er godt."
5849
 
5850
- #: src/templates/wp-admin/settings/form-contents.php:348
5851
  msgid "Backup directory"
5852
  msgstr "Backup mappe"
5853
 
5854
- #: src/templates/wp-admin/settings/form-contents.php:343
5855
  msgid "Delete local backup"
5856
  msgstr "Slet lokal backup"
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 "klik på denne for at vise nogle yderligere indstillinger; gør ikke dette, medmindre du har et problem eller er nysgerrig."
5861
 
5862
- #: src/templates/wp-admin/settings/form-contents.php:323
5863
  msgid "Show expert settings"
5864
  msgstr "Vis Ekspert indstillinger"
5865
 
5866
- #: src/templates/wp-admin/settings/form-contents.php:322
5867
  msgid "Expert settings"
5868
  msgstr "Ekspert indstillinger"
5869
 
5870
- #: src/templates/wp-admin/settings/form-contents.php:333
5871
  msgid "Debug mode"
5872
  msgstr "Fejlsøgningstilstand"
5873
 
5874
- #: src/templates/wp-admin/settings/form-contents.php:318
5875
  msgid "Advanced / Debugging Settings"
5876
  msgstr "Avancerede / Fejlsøgningsindstillinger"
5877
 
5878
- #: src/admin.php:671
5879
  msgid "Requesting start of backup..."
5880
  msgstr "Anmoder om start af backup..."
5881
 
5882
- #: src/addons/morefiles.php:297, src/admin.php:687
5883
  msgid "Cancel"
5884
  msgstr "Annuller"
5885
 
5886
- #: src/addons/reporting.php:233, src/admin.php:3384
5887
  msgid "None"
5888
  msgstr "Ingen"
5889
 
@@ -5891,32 +5992,32 @@ msgstr "Ingen"
5891
  msgid "Choose your remote storage"
5892
  msgstr "Vælg dit fjernlager"
5893
 
5894
- #: src/templates/wp-admin/settings/form-contents.php:207
5895
  msgid "Manually decrypt a database backup file"
5896
  msgstr "Manuel dekryptere en database backup fil"
5897
 
5898
- #: src/templates/wp-admin/settings/form-contents.php:186
5899
  msgid "Database encryption phrase"
5900
  msgstr "Databasekryptering sætning"
5901
 
5902
- #: src/templates/wp-admin/settings/form-contents.php:285,
5903
  #: src/udaddons/options.php:133
5904
  msgid "Email"
5905
  msgstr "Email"
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 "Ovenstående mapper er alting, undtagen selve WordPress kernen, som du kan downloade på ny fra WordPress.org."
5910
 
5911
- #: src/addons/morefiles.php:443, src/admin.php:3171
5912
  msgid "Exclude these:"
5913
  msgstr "Undlad disse:"
5914
 
5915
- #: src/admin.php:3162
5916
  msgid "Any other directories found inside wp-content"
5917
  msgstr "Alle andre mapper fundet inde i wp-content"
5918
 
5919
- #: src/templates/wp-admin/settings/form-contents.php:173
5920
  msgid "Include in files backup"
5921
  msgstr "Medtag i fil backup"
5922
 
@@ -5928,49 +6029,49 @@ msgstr "fx hvis din server er optaget om dagen, og du vil køre det om natten"
5928
  msgid "To fix the time at which a backup should take place,"
5929
  msgstr "For at rette det tidspunkt, hvor en backup bør finde sted,"
5930
 
5931
- #: src/admin.php:3087
5932
  msgid "Monthly"
5933
  msgstr "Månedlig"
5934
 
5935
- #: src/admin.php:3086
5936
  msgid "Fortnightly"
5937
  msgstr "Hver fjortende dag"
5938
 
5939
- #: src/admin.php:3085
5940
  msgid "Weekly"
5941
  msgstr "Ugentlig"
5942
 
5943
- #: src/admin.php:3084
5944
  msgid "Daily"
5945
  msgstr "Daglig"
5946
 
5947
- #: src/admin.php:694, src/admin.php:3067
5948
  msgid "Download log file"
5949
  msgstr "Download log fil"
5950
 
5951
- #: src/admin.php:2964
5952
  msgid "The folder exists, but your webserver does not have permission to write to it."
5953
  msgstr "Mappen eksisterer, men din webserver har ikke tilladelse til at skrive til den."
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 "Mappen blev oprettet, men vi var nødt til at ændre dens filrettigheder til 777 (skrivbare for alle) for at kunne skrive til den. Du bør tjekke med din udbyder at dette ikke vil medføre nogen problemer"
5958
 
5959
- #: src/admin.php:2945
5960
  msgid "The request to the filesystem to create the directory failed."
5961
  msgstr "Anmodningen til filsystemet om at oprette mappen mislykkedes."
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 "Slet"
5968
 
5969
- #: src/admin.php:2645
5970
  msgid "(None)"
5971
  msgstr ""
5972
 
5973
- #: src/admin.php:2801
5974
  msgid "show log"
5975
  msgstr "vis log"
5976
 
@@ -6075,7 +6176,7 @@ msgstr "Har du brug for WordPress Multisite support?"
6075
  msgid "Multisite"
6076
  msgstr "Multisite"
6077
 
6078
- #: src/admin.php:2464
6079
  msgid "Go here for help."
6080
  msgstr "Gå hertil for hjælp."
6081
 
@@ -6128,27 +6229,27 @@ msgstr "Genskab backup"
6128
  msgid "Delete backup set"
6129
  msgstr "Slet backup sæt"
6130
 
6131
- #: src/admin.php:670
6132
  msgid "Download error: the server sent us a response which we did not understand."
6133
  msgstr "Download fejl: serveren sendte os et svar, som vi ikke forstod."
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 "Fejl:"
6150
 
6151
- #: src/admin.php:653,
6152
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6153
  msgid "calculating..."
6154
  msgstr "beregner..."
@@ -6193,32 +6294,32 @@ msgstr "Opera web browser"
6193
  msgid "More tasks:"
6194
  msgstr "Flere opgaver:"
6195
 
6196
- #: src/admin.php:2564
6197
  msgid "Download most recently modified log file"
6198
  msgstr "Hent senest ændret logfil"
6199
 
6200
- #: src/admin.php:2523, src/admin.php:2529, src/central/bootstrap.php:169
6201
  msgid "(Nothing yet logged)"
6202
  msgstr "(Der er ikke logget noget endnu)"
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 "Sidste Log Besked"
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 "Gendan"
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 "Backup Nu"
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 "Backup Nu"
6226
  msgid "Database"
6227
  msgstr "Database"
6228
 
6229
- #: src/admin.php:295, src/admin.php:4388
6230
  msgid "Files"
6231
  msgstr "Filer"
6232
 
@@ -6238,11 +6339,11 @@ msgstr "Næste planlagte backup"
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 "Alle tider vist i denne sektion bruger WordPress' konfigureret tidszone, som du kan indstille i Indstillinger -> Generelt"
6240
 
6241
- #: src/admin.php:275
6242
  msgid "At the same time as the files backup"
6243
  msgstr "På samme tid som fil-backuppen "
6244
 
6245
- #: src/admin.php:265, src/admin.php:286, src/admin.php:293
6246
  msgid "Nothing currently scheduled"
6247
  msgstr "Intet planlagt i øjeblikket"
6248
 
@@ -6254,15 +6355,15 @@ msgstr "Dette admin interface bruger meget JavaScript. Du er nødt til at aktive
6254
  msgid "JavaScript warning"
6255
  msgstr "JavaScript advarsel"
6256
 
6257
- #: src/admin.php:673, src/admin.php:2591
6258
  msgid "Delete Old Directories"
6259
  msgstr "Slet gamle mapper"
6260
 
6261
- #: src/admin.php:2336
6262
  msgid "Current limit is:"
6263
  msgstr "Nuværende grænse er:"
6264
 
6265
- #: src/admin.php:2310
6266
  msgid "Your backup has been restored."
6267
  msgstr "Din backup er blevet gendannet."
6268
 
@@ -6274,123 +6375,123 @@ msgstr "Version"
6274
  msgid "Lead developer's homepage"
6275
  msgstr "Udviklerens egen hjemmeside"
6276
 
6277
- #: src/admin.php:4308
6278
  msgid "Your settings have been wiped."
6279
  msgstr "Dine indstillinger er blevet slettet."
6280
 
6281
- #: src/admin.php:2270
6282
  msgid "Backup directory successfully created."
6283
  msgstr "Backup mappe blev oprettet."
6284
 
6285
- #: src/admin.php:2263
6286
  msgid "Backup directory could not be created"
6287
  msgstr "Backup mappe kunne ikke oprettes"
6288
 
6289
- #: src/admin.php:2833
6290
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6291
  msgstr "Fjernelse af gamle mapper mislykkedes af en eller anden grund. Du kan være nødt til at gøre manuelt."
6292
 
6293
- #: src/admin.php:2831
6294
  msgid "Old directories successfully removed."
6295
  msgstr "Gamle mapper blev fjernet."
6296
 
6297
- #: src/admin.php:2828, src/admin.php:2828
6298
  msgid "Remove old directories"
6299
  msgstr "Fjern gamle mapper"
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 "Vend tilbage til konfiguration af 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 "Handlinger"
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 "Forkert filnavn format - det ligner ikke en krypteret database fil oprettet af UpdraftPlus"
6316
 
6317
- #: src/admin.php:2041
6318
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6319
  msgstr "Forkert filnavn format - det ligner ikke en fil oprettet af UpdraftPlus"
6320
 
6321
- #: src/admin.php:1922
6322
  msgid "No local copy present."
6323
  msgstr "Ingen lokal kopi"
6324
 
6325
- #: src/admin.php:1919
6326
  msgid "Download in progress"
6327
  msgstr "Downloading igang"
6328
 
6329
- #: src/admin.php:665, src/admin.php:1908
6330
  msgid "File ready."
6331
  msgstr "Fil klar."
6332
 
6333
- #: src/admin.php:1889
6334
  msgid "Download failed"
6335
  msgstr "Download mislykkede"
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 "Fejl"
6345
 
6346
- #: src/admin.php:1696
6347
  msgid "Could not find that job - perhaps it has already finished?"
6348
  msgstr "Kunne ikke finde det job - måske er det allerede færdig?"
6349
 
6350
- #: src/admin.php:1688
6351
  msgid "Job deleted"
6352
  msgstr "Job slettet"
6353
 
6354
- #: src/admin.php:1772
6355
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6356
  msgstr "OK. Du bør snart se aktivitet i \"Sidste Log Besked\" feltet nedenfor."
6357
 
6358
- #: src/admin.php:738
6359
  msgid "Nothing yet logged"
6360
  msgstr "Der er ikke logget noget endnu"
6361
 
6362
- #: src/admin.php:957
6363
  msgid "Please consult this FAQ if you have problems backing up."
6364
  msgstr "Se venligst denne FAQ, hvis du har problemer med sikkerhedskopiering."
6365
 
6366
- #: src/admin.php:957
6367
  msgid "Your website is hosted using the %s web server."
6368
  msgstr "Dit website er hostet ved hjælp af %s webserver."
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 understøtter ikke officielt versioner af WordPress før %s. Det kan virke for dig, men hvis det ikke gør, så skal du være opmærksom på, at der ikke er support, før du opgraderer WordPress."
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 "Du har mindre end %s ledig plads på disken, som UpdraftPlus er konfigureret til at bruge til at oprette backups på. UpdraftPlus kunne godt løbe tør for plads. Kontakt din udbyder af din server (f.eks din webudbyder) for at løse dette problem."
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 "Advarsel"
6388
 
6389
- #: src/admin.php:886
6390
  msgid "Add-Ons / Pro Support"
6391
  msgstr "Add-Ons / Pro Support"
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 "Indstillinger"
@@ -6399,7 +6500,7 @@ msgstr "Indstillinger"
6399
  msgid "Could not create %s zip. Consult the log file for more information."
6400
  msgstr "Kunne ikke oprette %s zip. se logfilen for mere information."
6401
 
6402
- #: src/backup.php:2050
6403
  msgid "Infinite recursion: consult your log for more information"
6404
  msgstr "Uendelig rekursion: se din log for mere information"
6405
 
@@ -6411,50 +6512,50 @@ msgstr ""
6411
  msgid "Like UpdraftPlus and can spare one minute?"
6412
  msgstr "Kan du lide UpdraftPlus og kan undvære et minut?"
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 "Fil ikke fundet"
6418
 
6419
- #: src/class-updraftplus.php:4356
6420
  msgid "The decryption key used:"
6421
  msgstr "Dekrypteringsnøglen som blev anvendt:"
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 "Dekryptering mislykkedes. Den mest sandsynlige årsag er, at du har brugt den forkerte nøgle."
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 "Dekryptering mislykkedes. Database-filen er krypteret, men du har ingen krypteringsnøgle indtastet."
6432
 
6433
- #: src/backup.php:1933
6434
  msgid "Could not open the backup file for writing"
6435
  msgstr "Kunne ikke åbne backup filen for skrivning"
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 "Kunne ikke gemme backup historikken, fordi vi ikke har nogen backup array. Sikkerhedskopiering mislykkedes sandsynligvis."
6440
 
6441
- #: src/class-updraftplus.php:3691
6442
  msgid "Could not read the directory"
6443
  msgstr "Kunne ikke læse mappen"
6444
 
6445
- #: src/admin.php:1959, src/backup.php:1157
6446
  msgid "Backup directory (%s) is not writable, or does not exist."
6447
  msgstr "Backup mappen (%s) er ikke skrivbar, eller findes ikke."
6448
 
6449
- #: src/backup.php:961
6450
  msgid "WordPress backup is complete"
6451
  msgstr "WordPress backup er fuldført"
6452
 
6453
- #: src/class-updraftplus.php:3203
6454
  msgid "The backup attempt has finished, apparently unsuccessfully"
6455
  msgstr "Sikkerhedskopieringen forsøgte at blive færdig, men uden held"
6456
 
6457
- #: src/class-updraftplus.php:3188
6458
  msgid "The backup apparently succeeded and is now complete"
6459
  msgstr "Sikkerhedskopieringen lykkedes og er nu færdig"
6460
 
@@ -6462,42 +6563,42 @@ msgstr "Sikkerhedskopieringen lykkedes og er nu færdig"
6462
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6463
  msgstr "Krypteringsfejl ved kryptering af databasen. Kryptering afbrudt."
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 "Kunne ikke oprette filer i backup mappen. Backup afbrudt - kontroller dine UpdraftPlus indstillinger."
6468
 
6469
- #: src/class-updraftplus.php:1755
6470
  msgid "Others"
6471
  msgstr "Andre"
6472
 
6473
- #: src/addons/multisite.php:464, src/class-updraftplus.php:1740
6474
  msgid "Uploads"
6475
  msgstr "Uploads"
6476
 
6477
- #: src/class-updraftplus.php:1739
6478
  msgid "Themes"
6479
  msgstr "Temaer"
6480
 
6481
- #: src/class-updraftplus.php:1738
6482
  msgid "Plugins"
6483
  msgstr "Plugins"
6484
 
6485
- #: src/class-updraftplus.php:521
6486
  msgid "No log files were found."
6487
  msgstr "Ingen logfiler blev fundet."
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 "Logfilen kunne ikke læses."
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 meddelelse:"
6499
 
6500
- #: src/addons/multisite.php:65, src/addons/multisite.php:686,
6501
  #: src/options.php:50
6502
  msgid "UpdraftPlus Backups"
6503
  msgstr "UpdraftPlus Backups"
11
  "Language: da_DK\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 "Så længe din webhosting tillader http (dvs. ikke-SSL-adgang) eller vil sende forespørgsler til https (hvilket næsten altid er tilfældet), er dette ikke noget problem. Hvis det endnu ikke er oprettet, skal du sætte det op, eller bruge%s, sådan at ikke-https-links automatisk erstattes."
139
 
140
+ #: src/class-updraftplus.php:4375, src/class-updraftplus.php:4377
141
  msgid "the migrator add-on"
142
  msgstr "migrator tilføjelsen"
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 "Denne opgradering vil fungere, hvis du har et aktivt SSL-certifikat (dvs. kan bruge https). Ellers vil du bruge %s til at søge/erstatte webstedets adresse, så webstedet kan besøges uden https."
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 "Dette backup-sæt er slået fra på dette websted, men på tidspunktet for sikkerhedskopien brugte du %s, mens webstedet nu bruger %s."
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 "Webstedets adresse i backup'en (%s) er lidt anderledes end det nuværende websted (%s). Dette forventes ikke at være et problem for genoprettelsen af webstedet, så længe besøg på den tidligere adresse stadig kommer til webstedet."
155
 
165
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
166
  msgstr "UpdraftPlus debug mode er aktivt: Detaljerede debugging data følger."
167
 
168
+ #: src/admin.php:742
169
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
170
  msgstr "Fejl: Den valgte fil er beskadiget. Vælg venligst en gyldig UpdraftPlus eksportfil."
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 "En alvorlig PHP fejl (%s) er opstået: %s"
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 "Der er opstået en PHP-undtagelse (%s): %s"
181
 
215
  msgid "Remote storage"
216
  msgstr "Fjernlager"
217
 
218
+ #: src/templates/wp-admin/settings/form-contents.php:219
219
  msgid "Select Files"
220
  msgstr "Vælg filer"
221
 
231
  msgid "Instant and secure logon with a wave of your phone."
232
  msgstr "Øjeblikkelig og sikker logon ved hjælp af din telefon."
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 "Som tidligere oplyst (se:%s), er kryptering ikke længere en mulighed i den gratis udgave af UpdraftPlus"
237
 
238
+ #: src/admin.php:4465
239
  msgid "Value"
240
  msgstr "Værdi"
241
 
242
+ #: src/admin.php:1557
243
  msgid "Did not know how to delete from this cloud service."
244
  msgstr "Ved ikke, hvordan der slettes fra denne cloud service."
245
 
251
  msgid "__Check this box to use Amazon's server-side encryption"
252
  msgstr "__Afkryds denne boks for at bruge Amazons kryptering på server-siden"
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 "Du skal tilføje følgende som autoriseret omdirigerings-URI i din Azure-konsol (under \"API-indstillinger\"), når du bliver spurgt"
257
 
263
  msgid "Cloud Files"
264
  msgstr "Cloud filer"
265
 
266
+ #: src/admin.php:4303
267
  msgid "Your settings failed to save. Please refresh the settings page and try again"
268
  msgstr "Dine indstillinger kunne ikke gemmes. Opdater siden for indstillingerne og prøv igen."
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 "Ekstra database"
286
 
287
+ #: src/admin.php:3545
288
  msgid "Press here to download or browse"
289
  msgstr "Klik her for at downloade eller gennemse"
290
 
291
+ #: src/admin.php:1074, src/admin.php:1084
292
  msgid "Error: invalid path"
293
  msgstr "Fejl: Ugyldig sti"
294
 
295
+ #: src/admin.php:932
296
  msgid "An error occurred when fetching storage module options: "
297
  msgstr "Der opstod en fejl ved hentning af lagermodulets indstillinger:"
298
 
299
+ #: src/admin.php:758
300
  msgid "Loading log file"
301
  msgstr "Indlæser logfil"
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 "Kan ikke downloade filen. Dette kan skyldes en timeout. Det er bedst at downloade zip-filen til din computer."
306
 
307
+ #: src/admin.php:756
308
  msgid "Search"
309
  msgstr "Søg"
310
 
311
+ #: src/admin.php:755
312
  msgid "Select a file to view information about it"
313
  msgstr "Vælg en fil for at se oplysninger om den"
314
 
315
+ #: src/admin.php:754
316
  msgid "Browsing zip file"
317
  msgstr "Gennemser zip-fil"
318
 
319
+ #: src/admin.php:723
320
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
321
  msgstr "Med UpdraftPlus Premium kan du hente individuelle filer direkte herfra."
322
 
323
+ #: src/admin.php:671
324
  msgid "Browse contents"
325
  msgstr "Gennemse indhold"
326
 
327
+ #: src/restorer.php:1693
328
  msgid "Skipped tables:"
329
  msgstr "Kasserede tabeller:"
330
 
331
+ #: src/class-updraftplus.php:4557
332
  msgid "This database backup has the following WordPress tables excluded: %s"
333
  msgstr "Denne database backup har følgende WordPress udelukkede tabeller:%s"
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 "Med UpdraftPlus Premium kan du vælge at sikkerhedskopiere ikke-WordPress-tabeller, eller kun tage backup af udvalgte tabeller og endelig også at sikkerhedskopiere andre databaser."
338
 
339
+ #: src/admin.php:2524
340
  msgid "All WordPress tables will be backed up."
341
  msgstr "Alle WordPress tabeller vil blive sikkerhedskopieret."
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 "Yderligere informationer kan findes i browserens JavaScript-konsol og i serverens PHP fejllogs."
346
 
347
+ #: src/admin.php:753
348
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
349
  msgstr "at du prøver at uploade en zip-fil, der tidligere er oprettet af UpdraftPlus."
350
 
351
+ #: src/admin.php:753
352
  msgid "The available memory on the server."
353
  msgstr "Den tilgængelige hukommelse på serveren."
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 "Enhver indstilling i din .htaccess- eller web.config-fil, der påvirker maksimal upload eller poststørrelse."
358
 
359
+ #: src/admin.php:753
360
  msgid "The file failed to upload. Please check the following:"
361
  msgstr "Filen kunne ikke uploades. Tjek venligst følgende:"
362
 
363
+ #: src/admin.php:752
364
  msgid "HTTP code:"
365
  msgstr "HTTP kode:"
366
 
367
+ #: src/admin.php:648
368
  msgid "You have chosen to backup a database, but no tables have been selected"
369
  msgstr "Du har valgt at sikkerhedskopiere en database, men ingen tabeller er blevet valgt"
370
 
533
  msgid "UpdraftPlus"
534
  msgstr "UpdraftPlus"
535
 
536
+ #: src/templates/wp-admin/settings/form-contents.php:243
537
  msgid "Recommended: optimize your database with WP-Optimize."
538
  msgstr "Anbefalet: Optimer din database med WP-Optimize."
539
 
828
  msgid "Export / import settings"
829
  msgstr "Eksport / import indstillinger"
830
 
831
+ #: src/restorer.php:1881
832
  msgid "Processing table (%s)"
833
  msgstr "Behandler tabel (%s)"
834
 
835
+ #: src/restorer.php:1659
836
  msgid "Backup of: %s"
837
  msgstr "Backup af: %s"
838
 
852
  msgid "Follow this link to deauthenticate with %s."
853
  msgstr "Følg dette link for at annullere godkendelse med %s"
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 "UpdraftCentral muliggør kontrol over dine WordPress sites (herunder styring af backup og opdateringer) fra et centralt dashboard."
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 "Hvis ikke, skal du enten fjerne data fra denne tabel, eller kontakte dit hostingselskab for at anmode om flere ressourcer."
862
 
864
  msgid "You have selected a remote storage option which has an authorization step to complete:"
865
  msgstr "Du har valgt en ekstern lagerløsning, der har et tilladelses-step for at fuldføre:"
866
 
867
+ #: src/admin.php:1633
868
  msgid "Remote files deleted:"
869
  msgstr "Slettede eksterne filer:"
870
 
871
+ #: src/admin.php:1632
872
  msgid "Local files deleted:"
873
  msgstr "Slettede lokale filer:"
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 "Dette gør time-outs langt mere sandsynligt. Det anbefales at slå safe mode fra, eller kun at gendanne én enhed ad gangen"
951
 
952
+ #: src/admin.php:2348
953
  msgid "To fix this problem go here."
954
  msgstr "Løs dette problem her."
955
 
956
+ #: src/admin.php:2348
957
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
958
  msgstr "OptimizePress 2.0 koder dens indhold, så søg/erstat virker ikke."
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 "din PHP installation mangler open-ssl modulet. Som et resultat, kan dette tage minutter. Hvis intet er sket inden da, så skal du enten prøve en mindre størrelse nøgle, eller spørge din webudbyder, hvordan du aktiverer dette PHP modul i din opsætning."
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 "Ingen respons data blev modtaget. Dette indikerer normalt et netværksforbindelseproblem (fx en udgående firewall eller et overbelastet netværk) mellem dette websted og UpdraftPlus.com."
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 "AWS adgangskoden er tilsyneladende forkert (gyldige %s adgangskoder begynder med \"AK\")"
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 "Indstillinger blev ikke fundet - Gå venligst til Indstillinger knappen og kontroller dine indstillinger"
999
 
1013
  msgid "FAQs"
1014
  msgstr "FAQs"
1015
 
1016
+ #: src/central/bootstrap.php:523
1017
  msgid "More information..."
1018
  msgstr "Mere information..."
1019
 
1020
+ #: src/central/bootstrap.php:521
1021
  msgid "Use the alternative method for making a connection with the dashboard."
1022
  msgstr "Benyt den alternative måde for at skabe forbindelse med kontrolpanelet."
1023
 
1024
+ #: src/central/bootstrap.php:438
 
 
 
 
1025
  msgid "Key size: %d bits"
1026
  msgstr "Størrelse på nøgle: %d bits"
1027
 
1028
+ #: src/central/bootstrap.php:433
1029
  msgid "Public key was sent to:"
1030
  msgstr "Offentlig nøgle blev sendt til:"
1031
 
1032
+ #: src/backup.php:2107
1033
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1034
  msgstr "Kunne ikke åbne bibliotek (tjek fil-tilladelser og -ejerskab): %s"
1035
 
1036
+ #: src/backup.php:2085
1037
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1038
  msgstr "%s: Ulæselig fil - kunne ikke sikkerhedskopieres (check fil-tilladelser og -ejerskab)"
1039
 
1041
  msgid "Create key"
1042
  msgstr "Opret nøgle"
1043
 
1044
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:515
1045
  msgid "slower, strongest"
1046
  msgstr "langsomere, stærkest"
1047
 
1048
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:514
1049
  msgid "recommended"
1050
  msgstr "anbefalet"
1051
 
1052
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:514
1053
  msgid "%s bytes"
1054
  msgstr "%s bytes"
1055
 
1056
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:513
1057
  msgid "faster (possibility for slow PHP installs)"
1058
  msgstr "hurtigere (mulighed for langsomme PHP installationer)"
1059
 
1060
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:512
1061
  msgid "easy to break, fastest"
1062
  msgstr "let at bryde, hurtigst"
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 "%s bits"
1069
 
1070
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:510
1071
  msgid "Encryption key size:"
1072
  msgstr "Krypterings-nøglens størrelse:"
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 "Størrelsen på dette backup-arkiv er %s MB - forsøge på at sende det via e-mail er tilbøjelige til at mislykkes (få email-servere tillader vedhæftede filer af denne størrelse). Hvis det er tilfældet, bør du skifte til at bruge en anden fjernlager metode."
1101
 
1102
+ #: src/class-updraftplus.php:1736
1103
  msgid "Size: %s MB"
1104
  msgstr "Størrelse: %s MB"
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 "UpdraftPlus vil opdele backup arkiver, når de overskrider denne filstørrelse. Standardværdien er %s megabyte. Vær omhyggelig med at friholde lidt plads, hvis din web-server har en lidt vanskelig maksimal begrænsning (fx 2 GB / 2048 MB grænse på nogle 32-bit servere / filsystemer)."
1109
 
1111
  msgid "Now"
1112
  msgstr "Nu"
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 "Du bør frigøre %s for at pæne permalinks (f.eks. %s) kan virke"
1117
 
1133
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1134
  msgstr "Ingen Vault forbindelse blev fundet for dette websted (er det flyttet?); venligst afbryd og tilslut igen."
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 "Den pågældende fil blev ikke fundet eller kunne ikke læses."
1139
 
1140
+ #: src/central/bootstrap.php:565
1141
  msgid "UpdraftCentral (Remote Control)"
1142
  msgstr "UpdraftCentral (Fjernbetjent)"
1143
 
1144
+ #: src/central/bootstrap.php:554
 
 
 
 
1145
  msgid "View recent UpdraftCentral log events"
1146
  msgstr "Se de seneste updraftCentral log-hændelser"
1147
 
1148
+ #: src/central/bootstrap.php:493
1149
  msgid "URL of mothership"
1150
  msgstr "Moderskibets URL"
1151
 
1152
+ #: src/central/bootstrap.php:504
1153
  msgid "Enter any description"
1154
  msgstr "Angiv enhver beskrivelse"
1155
 
1156
+ #: src/central/bootstrap.php:503
1157
  msgid "Description"
1158
  msgstr "Forklaring"
1159
 
1160
+ #: src/central/bootstrap.php:443
 
 
 
 
1161
  msgid "Delete..."
1162
  msgstr "Slet..."
1163
 
1164
+ #: src/central/bootstrap.php:436
1165
  msgid "Created:"
1166
  msgstr "Oprettet:"
1167
 
1168
+ #: src/central/bootstrap.php:433
1169
  msgid "Access this site as user:"
1170
  msgstr "Adgang til dette site som bruger:"
1171
 
1172
+ #: src/central/bootstrap.php:457
 
 
 
 
1173
  msgid "Details"
1174
  msgstr "Detaljer"
1175
 
1176
+ #: src/central/bootstrap.php:456
1177
  msgid "Key description"
1178
  msgstr "Nøgle-beskrivelse"
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 "En nøgle blev oprettet, men forsøget på at registrere den med %s mislykkedes - prøv igen senere."
1183
 
1221
  msgid "UpdraftCentral Connection"
1222
  msgstr "UpdraftCentral Connection"
1223
 
1224
+ #: src/backup.php:869, src/class-updraftplus.php:2806
1225
  msgid "The backup was aborted by the user"
1226
  msgstr "Backup'en blev afbrudt af brugeren"
1227
 
1228
+ #: src/admin.php:4298
1229
  msgid "Your settings have been saved."
1230
  msgstr "Dine indstillinger er gemt"
1231
 
1232
+ #: src/admin.php:3432
1233
  msgid "Total backup size:"
1234
  msgstr "Total backup-størrelse:"
1235
 
1236
+ #: src/admin.php:2846
1237
  msgid "stop"
1238
  msgstr "stoppe"
1239
 
1240
+ #: src/admin.php:2684
1241
  msgid "The backup has finished running"
1242
  msgstr "Denne backup er færdig"
1243
 
1263
  msgid "calculate"
1264
  msgstr "Beregn"
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 "Du bør gemme dine ændringer for at sikre, at de bliver anvendt til din backup."
1269
 
1270
+ #: src/admin.php:717
1271
  msgid "We requested to delete the file, but could not understand the server's response"
1272
  msgstr "Vi anmodede om at slette filen, men kunne ikke forstå serverens svar"
1273
 
1274
+ #: src/admin.php:716
1275
  msgid "Please enter a valid URL"
1276
  msgstr "Venligst indtast en gyldig URL"
1277
 
1278
+ #: src/admin.php:699
1279
  msgid "Saving..."
1280
  msgstr "Gemmer..."
1281
 
1282
+ #: src/admin.php:662
1283
  msgid "Error: the server sent us a response which we did not understand."
1284
  msgstr "Fejl: Serveren sendte et uforståeligt svar."
1285
 
1286
+ #: src/admin.php:654
1287
  msgid "Fetching..."
1288
  msgstr "Henter..."
1289
 
1291
  msgid "Asia Pacific (Seoul)"
1292
  msgstr "Asia Pacific (Seoul)"
1293
 
1294
+ #: src/restorer.php:1682
1295
  msgid "Uploads URL:"
1296
  msgstr "Uploads URL:"
1297
 
1303
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1304
  msgstr "Det nødvendige %s PHP modul er ikke installeret - bed din webudbyder om at aktivere det."
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 "For at importere et almindeligt WordPress site til en multisite installation kræves %s."
1309
 
1310
+ #: src/class-updraftplus.php:4436
1311
  msgid "Please read this link for important information on this process."
1312
  msgstr "Venligst læs dette link for vigtig information om processen."
1313
 
1314
+ #: src/class-updraftplus.php:4436
1315
  msgid "It will be imported as a new site."
1316
  msgstr "Vil blive importeret som et nyt site."
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 "Luk"
1322
 
1323
+ #: src/admin.php:736
1324
  msgid "Please fill in the required information."
1325
  msgstr "Venligst udfyld den nødvendige information."
1326
 
1327
+ #: src/addons/multisite.php:579
1328
  msgid "Read more..."
1329
  msgstr "Læs mere..."
1330
 
1331
+ #: src/addons/multisite.php:570
1332
  msgid "may include some site-wide data"
1333
  msgstr "kan indeholde nogle data for hele sitet"
1334
 
1335
+ #: src/addons/multisite.php:565
1336
  msgid "All sites"
1337
  msgstr "Allle sider"
1338
 
1339
+ #: src/addons/multisite.php:561
1340
  msgid "Which site to restore"
1341
  msgstr "Hvilket site at gendanne"
1342
 
1381
  msgid "Call WordPress action:"
1382
  msgstr "Udfør WordPress handling:"
1383
 
1384
+ #: src/admin.php:2532
1385
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1386
  msgstr "Dine gemte indstillinger påvirker også, hvad der oprettes back up af - f.eks. udelukkes filer."
1387
 
1388
+ #: src/admin.php:3856
1389
  msgid "Skipping: this archive was already restored."
1390
  msgstr "Stopper: Dette arkiv er allerede genskabt."
1391
 
1392
+ #: src/templates/wp-admin/settings/form-contents.php:167
1393
  msgid "File Options"
1394
  msgstr "Fil-muligheder"
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 "Denne knap vil slette alle UpdraftPlus indstillinger og information om igangværende sikkerhedskopier (men ikke slette eksisterende sikkerhedskopier i din sky)."
1419
 
1420
+ #: src/admin.php:4175
1421
  msgid "Send this backup to remote storage"
1422
  msgstr "Send denne backup til fjernlager"
1423
 
1424
+ #: src/admin.php:4173
1425
  msgid "Check out UpdraftPlus Vault."
1426
  msgstr "Se UpdraftPlus Vault"
1427
 
1428
+ #: src/admin.php:4173
1429
  msgid "Not got any remote storage?"
1430
  msgstr "Har du ikke et fjernlager?"
1431
 
1432
+ #: src/admin.php:4173
1433
  msgid "settings"
1434
  msgstr "Indstillinger"
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 "Backup vil ikke blive sendt til noget lager - Intet er blevet gemt i %s"
1439
 
1440
+ #: src/admin.php:2530
1441
  msgid "Include any files in the backup"
1442
  msgstr "Medtag alle filer i backup'en"
1443
 
1444
+ #: src/admin.php:2516
1445
  msgid "Include the database in the backup"
1446
  msgstr "Medtag databasen i backup'en"
1447
 
1448
+ #: src/admin.php:2496
1449
  msgid "Continue restoration"
1450
  msgstr "Fortsæt gendannelse"
1451
 
1452
+ #: src/admin.php:2491
1453
  msgid "You have an unfinished restoration operation, begun %s ago."
1454
  msgstr "Du har en ufærdig gendannelses-operation, påbegyndt for %s siden."
1455
 
1456
+ #: src/admin.php:2490
1457
  msgid "Unfinished restoration"
1458
  msgstr "Ufærdig gendannelse"
1459
 
1460
+ #: src/admin.php:2488
1461
  msgid "%s minutes, %s seconds"
1462
  msgstr "%s minutter, %s sekunder"
1463
 
1464
+ #: src/admin.php:2435
1465
  msgid "Backup Contents And Schedule"
1466
  msgstr "Backup Indhold og Tidspland"
1467
 
1469
  msgid "Premium / Extensions"
1470
  msgstr "Premium / Udvidelser"
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 "Tilstrækkelige informationer om den igangværende genskabelse kunne ikke findes."
1475
 
1476
+ #: src/addons/morefiles.php:55, src/admin.php:722
1477
  msgctxt "(verb)"
1478
  msgid "Download"
1479
  msgstr "Download"
1480
 
1481
+ #: src/admin.php:647
1482
  msgid "You have chosen to backup files, but no file entities have been selected"
1483
  msgstr "Du har valgt at tage backup, men har ikke valgt nogle filer"
1484
 
1485
+ #: src/admin.php:548
1486
  msgid "Extensions"
1487
  msgstr "Udviddelser"
1488
 
1489
+ #: src/admin.php:540, src/templates/wp-admin/settings/tab-bar.php:8
1490
  msgid "Advanced Tools"
1491
  msgstr "Advancerede værktøjer"
1492
 
1568
  msgid "Standard"
1569
  msgstr "Standard"
1570
 
1571
+ #: src/addons/azure.php:577
1572
  msgid "container"
1573
  msgstr "mappe"
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 "Du kan indtaste stien til enhver %s virtuel mappe, du ønsker at bruge her."
1578
 
1579
+ #: src/addons/azure.php:576
1580
  msgid "optional"
1581
  msgstr "valgfri"
1582
 
1583
+ #: src/addons/azure.php:576
1584
  msgid "Prefix"
1585
  msgstr "Præfiks"
1586
 
1587
+ #: src/addons/azure.php:571
1588
  msgid "See Microsoft's guidelines on container naming by following this link."
1589
  msgstr "Se Microsofts retningslinjer for mappe-navngivning ved at følge dette link."
1590
 
1591
+ #: src/addons/azure.php:571
1592
  msgid "Enter the path of the %s you wish to use here."
1593
  msgstr "Indtast stien til den %s, du ønsker at bruge her."
1594
 
1595
+ #: src/addons/azure.php:560
1596
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1597
  msgstr "Dette er ikke din Azure login - se anvisninger, hvis du har brug for mere vejledning."
1598
 
1599
+ #: src/addons/azure.php:559
1600
  msgid "Account Name"
1601
  msgstr "Kontonavn"
1602
 
1603
+ #: src/addons/azure.php:559, src/addons/azure.php:563
1604
  msgid "Azure"
1605
  msgstr "Azure"
1606
 
1607
+ #: src/addons/azure.php:555
1608
  msgid "Create Azure credentials in your Azure developer console."
1609
  msgstr "Opret Azure legitimationsoplysninger i din Azure udviklerkonsol."
1610
 
1611
+ #: src/addons/azure.php:503
1612
  msgid "Could not create the container"
1613
  msgstr "Kunne ikke oprette beholderen"
1614
 
1615
+ #: src/addons/azure.php:358
1616
  msgid "Could not access container"
1617
  msgstr "Kunne ikke tilgå mappe"
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 "For at fuldføre din migrering/kloning, bør du nu logge ind på det eksterne site og genoprette backup sættet."
1622
 
1623
+ #: src/backup.php:1581
1624
  msgid "the options table was not found"
1625
  msgstr "tabellen med muligheder blev ikke fundet"
1626
 
1627
+ #: src/backup.php:1579
1628
  msgid "no options or sitemeta table was found"
1629
  msgstr "der blev ikke fundet hverken valgmuligheder eller site-meta"
1630
 
1631
+ #: src/backup.php:1579, src/backup.php:1581
1632
  msgid "The database backup appears to have failed"
1633
  msgstr "Backup af databasen er tilsyneladende mislykkedes."
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 "Backup-mappen er ikke skrivbar (eller diskplads er fuld) - Database-backup'en forventes snart at mislykkes."
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 "Tryk her for at se dit fjernlagers muligheder ved eventuelle eksisterende backup sæt (fra ethvert websted, hvis de opbevares i samme mappe)."
1747
 
1748
+ #: src/admin.php:1631
1749
  msgid "Backup sets removed:"
1750
  msgstr "Backup sæt fjernet:"
1751
 
1752
+ #: src/admin.php:735
1753
  msgid "Processing..."
1754
  msgstr "Behandler..."
1755
 
1756
+ #: src/admin.php:733
1757
  msgid "For backups older than"
1758
  msgstr "For backup ældre end"
1759
 
1760
+ #: src/admin.php:732
1761
  msgid "week(s)"
1762
  msgstr "uge(r)"
1763
 
1764
+ #: src/admin.php:731
1765
  msgid "hour(s)"
1766
  msgstr "time(r)"
1767
 
1768
+ #: src/admin.php:730
1769
  msgid "day(s)"
1770
  msgstr "dag(e)"
1771
 
1772
+ #: src/admin.php:729
1773
  msgid "in the month"
1774
  msgstr "i måneden"
1775
 
1776
+ #: src/admin.php:728
1777
  msgid "day"
1778
  msgstr "dag"
1779
 
1785
  msgid "Add an additional retention rule..."
1786
  msgstr "Tilføj en ekstra tilføjelsesregel..."
1787
 
1788
+ #: src/restorer.php:2204
1789
  msgid "This database needs to be deployed on MySQL version %s or later."
1790
  msgstr "Denne database skal indsættes på MySQL version %s eller nyere."
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 "Dette problem er forårsaget af forsøg på genskabelse af en database på en meget gammel MySQL version, der er uforenelig med kildedatabasen."
1795
 
1797
  msgid "You do not currently have any UpdraftPlus Vault quota"
1798
  msgstr "Du har ikke på nuværende tidspunkt nogen UpdraftPlus Vault kvote"
1799
 
1800
+ #: src/class-updraftplus.php:4478
1801
  msgid "You must upgrade MySQL to be able to use this database."
1802
  msgstr "Du skal opgradere MySQL for at kunne bruge denne database."
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 "Database-backup'en bruger MySQL funktioner, som ikke findes i den gamle MySQL version (%s), dette websted kører på."
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 "UpdraftPlus-mappen i wp-content/plugins indeholder white-space (tom plads / mellemrum); WordPress kan ikke lide dette. Du bør omdøbe mappen til wp-content/plugins/updraftplus for at løse dette problem."
1811
 
1833
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1834
  msgstr "Hvis du har glemt dit password, så klik her for at ændre det på udraftsplus.com "
1835
 
1836
+ #: src/admin.php:985
1837
  msgid "Go to the remote storage settings in order to connect."
1838
  msgstr "Gå til fjernlager-indstillinger for at skabe forbindelse."
1839
 
1840
+ #: src/admin.php:985
1841
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1842
  msgstr "%s er blevet valgt til fjernlager, men du er ikke tilsluttet i øjeblikket."
1843
 
1845
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1846
  msgstr "Betaling kan foretages i amerikanske dollars, euro eller GB pounds sterling, via kort eller PayPal."
1847
 
1848
+ #: src/admin.php:705
1849
  msgid "Update quota count"
1850
  msgstr "Opdatér kvotetæller"
1851
 
1852
+ #: src/admin.php:704
1853
  msgid "Counting..."
1854
  msgstr "Tæller..."
1855
 
1856
+ #: src/admin.php:703
1857
  msgid "Disconnecting..."
1858
  msgstr "Afbryder..."
1859
 
1860
+ #: src/admin.php:701
1861
  msgid "Connecting..."
1862
  msgstr "Tilslutter..."
1863
 
1883
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1884
  msgstr "%s Fejl: Du har utilstrækkelig lagerkvote tilgængelig (%s) til at kunne uploade dette arkiv (%s)."
1885
 
1886
+ #: src/admin.php:702, src/methods/updraftvault.php:388
1887
  msgid "Disconnect"
1888
  msgstr "Afbrudt"
1889
 
1915
  msgid "E-mail"
1916
  msgstr "E-mail"
1917
 
1918
+ #: src/central/bootstrap.php:540, src/methods/updraftvault.php:338,
1919
+ #: src/methods/updraftvault.php:353
1920
  msgid "Back..."
1921
  msgstr "Tilbage..."
1922
 
1929
  msgid "%s per quarter"
1930
  msgstr "%s per kvartal"
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 "Læs mere her."
1974
  msgid "Updraft Vault"
1975
  msgstr "Updraft Vault"
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 "Sletning mislykkedes:"
1981
 
1982
+ #: src/backup.php:3045
1983
  msgid "The zip engine returned the message: %s."
1984
  msgstr "Zip returnerede denne besked: %s."
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 "Hvis muligheden for at sende direkte fra site til site ikke virker for dig, så er der tre andre metoder - prøv en af disse i stedet."
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 "Du bør kontrollere, at den eksterne site er online, ikke er bag en firewall, ikke har sikkerhedsmoduler, der kan blokere adgangen, har UpdraftPlus version %s eller nyere aktiv, og at nøglerne er blevet indtastet korrekt."
2009
 
2031
  msgid "Keys for this site are created in the section below the one you just pressed in."
2032
  msgstr "Nøgler til dette site er skabt i afsnittet nedenfor den, du netop har indtastet ind."
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 "Du skal kopiere og indsætte denne nøgle nu - den kan ikke vises igen."
2037
 
2038
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:383
2039
  msgid "Key created successfully."
2040
  msgstr "Nøgle blev skabt med succes."
2041
 
2075
  msgid "This storage method does not allow downloading"
2076
  msgstr "Denne lagringsmetode tillader ikke download"
2077
 
2078
+ #: src/admin.php:3610
2079
  msgid "(backup set imported from remote location)"
2080
  msgstr "(backup sæt importeret fra ekstern lokation)"
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 "Dette backup sæt blev ikke genkendt af UpdraftPlus som værende skabt af den nuværende WordPress installation, men blev enten fundet i fjernlager, eller blev sendt fra et eksternt site."
2097
 
2098
+ #: src/addons/migrator.php:1775, src/admin.php:718
2099
  msgid "Testing connection..."
2100
  msgstr "Tester forbindelse..."
2101
 
2102
+ #: src/admin.php:715
2103
  msgid "Deleting..."
2104
  msgstr "Sletter..."
2105
 
2106
+ #: src/admin.php:714
2107
  msgid "key name"
2108
  msgstr "nøgle navn"
2109
 
2110
+ #: src/admin.php:712
2111
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2112
  msgstr "Giv denne nøgle et navn (angiv f.eks. sitet den er til):"
2113
 
2114
+ #: src/admin.php:709
2115
  msgid "Creating..."
2116
  msgstr "Opretter..."
2117
 
2135
  msgid "Or, send a backup to another site"
2136
  msgstr "Eller, send en backup til et andet site"
2137
 
2138
+ #: src/addons/migrator.php:1946, src/admin.php:719
2139
  msgid "Send"
2140
  msgstr "Send"
2141
 
2142
+ #: src/addons/migrator.php:1940, src/admin.php:710
2143
  msgid "Send to site:"
2144
  msgstr "Send til site:"
2145
 
2204
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2205
  msgstr "En \"flytning\" er i sidste ende det samme som en restaurering - men benytter backup arkiver, som du importerer fra et andet site."
2206
 
2207
+ #: src/admin.php:708
2208
  msgid "Resetting..."
2209
  msgstr "Nulstiller..."
2210
 
2211
+ #: src/addons/migrator.php:2190, src/admin.php:707
2212
  msgid "Add site"
2213
  msgstr "Tilføj site"
2214
 
2215
+ #: src/admin.php:706
2216
  msgid "Adding..."
2217
  msgstr "Tilføjer..."
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 "Adgang nægtet - Måske har du allerede brugt dette køb et andet sted, eller din betalte periode til at downloade fra updraftplus.com er udløbet?"
2222
 
2223
+ #: src/restorer.php:2206
2224
  msgid "To use this backup, your database server needs to support the %s character set."
2225
  msgstr "For at bruge denne backup, skal din database server understøtte %s tegnsæt."
2226
 
2248
  msgid "To restore using any of the backup sets below, press the button."
2249
  msgstr "Hvis du vil gendanne ved at bruge et af backup-sættene nedenfor, skal du trykke på knappen."
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 "Du har ændret dine indstillinger, men har ikke gemt."
2254
 
2260
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2261
  msgstr "Hvis OneDrive senere viser meddelelsen \"unauthorized_client\", så har du ikke indtastet en gyldig klient-id her."
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 "Følg dette link for mere uddybende hjælp, der blandt andet indkluderer skærmbilleder."
2273
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2274
  msgstr "Du skal tilføje følgende som den autoriserede redirect URI i din OneDrive konsol (under \"API Indstillinger\"), når du bliver spurgt"
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 "Hvis du har en AWS admin brugerkonto, kan du bruge denne guide til hurtigt at oprette en ny AWS (IAM) bruger med adgang til kun denne spand (i stedet for hele din konto)"
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 "Brug denne tilføjelse for at oprette en ny IAM sub-bruger og adgangsnøgle, der kun har adgang til denne spand."
2445
 
2514
  msgid "(at same time as files backup)"
2515
  msgstr "(samtidigt, som der tages backup af filerne)"
2516
 
2517
+ #: src/admin.php:3114
2518
  msgid "No backup has been completed"
2519
  msgstr "Ingen backup er fuldført."
2520
 
2563
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2564
  msgstr "Lav backup (hvis relevant) af plugins, temaer og WordPress database med UpdraftPlus før du opdaterer"
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 "%s Fejl: Kunne ikke initialiseres"
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 "eller"
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 "Du valgte ikke nogen komponenter til genoprettelse. Vælg mindst én, og prøv derefter igen."
2579
 
2596
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2597
  msgstr "Det skal være en v2 (Keystone) godkendelse URI; v1 (Swauth) understøttes ikke."
2598
 
2599
+ #: src/templates/wp-admin/settings/form-contents.php:288
2600
  msgid "your site's admin address"
2601
  msgstr "dit websteds admin adresse"
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 "Markér dette felt for at få en grundlæggende rapport sendt til"
2606
 
2607
+ #: src/admin.php:3123
2608
  msgctxt "i.e. Non-automatic"
2609
  msgid "Manual"
2610
  msgstr "Manual"
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 "En fejl (%s) opstod:"
2622
  msgid "Any other file/directory on your server that you wish to back up"
2623
  msgstr "Enhver anden fil/mappe på din server, som du ønsker at sikkerhedskopiere"
2624
 
2625
+ #: src/admin.php:2350
2626
  msgid "For even more features and personal support, check out "
2627
  msgstr "For endnu flere funktioner og personlig support, tjek"
2628
 
2631
  msgstr "Database dekryptering sætning"
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 "Automatisk backup inden opdatering"
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 "Bemærk, at efter du har modtaget dine tilføjelser, kan du fjerne dit password (men ikke e-mail-adresse) fra indstillingerne nedenfor, uden at påvirke dette sites adgang til opdateringer."
2718
 
2719
+ #: src/admin.php:2684, src/admin.php:3632, src/admin.php:3633
2720
  msgid "View Log"
2721
  msgstr "Se loggen"
2722
 
2733
  msgid "and retain this many scheduled backups"
2734
  msgstr "og fastholde så mange planlagte backups"
2735
 
2736
+ #: src/admin.php:3084
2737
  msgid "incremental backup; base backup: %s"
2738
  msgstr "trinvis sikkerhedskopi; basis backup: %s"
2739
 
2745
  msgid "Upload files into UpdraftPlus."
2746
  msgstr "Upload filer til UpdraftPlus."
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 "\"Backup Nu\"-knappen er deaktiveret, da din backup mappe er ikke skrivbar (gå til fanen \"Indstillinger\", og find den relevante mulighed)."
2752
 
2753
+ #: src/class-updraftplus.php:4425
2754
  msgid "Backup label:"
2755
  msgstr "Backup etiket:"
2756
 
2757
+ #: src/addons/backblaze.php:189, src/admin.php:1875
2758
  msgid "Error: unexpected file read fail"
2759
  msgstr "Fejl: Uventet fejl ved læsning af fil"
2760
 
2761
+ #: src/backup.php:3051
2762
  msgid "check your log for more details."
2763
  msgstr "tjek din log for flere detaljer."
2764
 
2765
+ #: src/backup.php:3049
2766
  msgid "your web hosting account appears to be full; please see: %s"
2767
  msgstr "din web-udbyder konto ser ud til at være fyldt; venligst se: %s"
2768
 
2769
+ #: src/backup.php:3047
2770
  msgid "A zip error occurred"
2771
  msgstr "En zip fejl opstod"
2772
 
2794
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2795
  msgstr "For at fortsætte, så tryk på 'Backup Nu' og derefter se 'Sidste Log Besked' feltet for aktivitet."
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 "Hvis du ønsker at genskabe en multisite backup, så skal du først sætte din WordPress op som en multisite installation."
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 "Din backup er fra en WordPress multisite installation; men det er denne side ikke. Det er kun den første side som vil være tilgængelig."
2804
 
2835
  msgid "You need to connect to receive future updates to UpdraftPlus."
2836
  msgstr "Du er nødt til at modtage fremtidige opdateringer UpdraftPlus."
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 "Eventuelle support anmodninger som har med %s at gøre bør løses med dit web-hosting firma."
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 "Du bør kun fortsætte, hvis du ikke kan opdatere den aktuelle server og er overbeviste om (eller villig til at forsøge om), at dine plugins/temaer/osv. er kompatible med den ældre %s version."
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 "Denne er markant nyere end den serverversion, som du nu ønsker at gendanne på (version %s)."
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 "Siden i denne backup blev lavet på en webserver med version %s af %s."
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 "Hvorfor ser jeg dette?"
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 "Klik her for at se i din UpdraftPlus mappe (på dit webhotel) efter nye backups som du har uploadet."
2890
 
2891
+ #: src/admin.php:1814, src/admin.php:1826
2892
  msgid "Start backup"
2893
  msgstr "Start backup"
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 "Du bruger %s webserver, men den lader ikke til at have %s modulet indlæst."
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 "Du er nødt til at kontakte din hostingudbyder for at finde ud af, hvordan du skal angive tilladelser for et WordPress plugin for at det kan skrive til mappen."
2902
 
2904
  msgid "Unless you have a problem, you can completely ignore everything here."
2905
  msgstr "Med mindre du har problemmer, kan du bare ignorere alt her."
2906
 
2907
+ #: src/admin.php:2036
2908
  msgid "This file could not be uploaded"
2909
  msgstr "Denne fil kunne ikke blive uploadet"
2910
 
2911
+ #: src/admin.php:2001
2912
  msgid "You will find more information about this in the Settings section."
2913
  msgstr "Du kan finde mere information om dette i afsnittet Indstillinger."
2914
 
2928
  msgid "Memory limit"
2929
  msgstr "hukommelsesgrænse"
2930
 
2931
+ #: src/class-updraftplus.php:4621, src/restorer.php:1493
2932
  msgid "restoration"
2933
  msgstr "genoprettelse"
2934
 
2935
+ #: src/backup.php:864
2936
  msgid "Incremental"
2937
  msgstr "Trinvis"
2938
 
2939
+ #: src/backup.php:864
2940
  msgid "Full backup"
2941
  msgstr "Fuld backup"
2942
 
2952
  msgid "Backup succeeded"
2953
  msgstr "Backup lykkedes"
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 "Hver %s time"
2991
  msgid "search term"
2992
  msgstr "søgefrase"
2993
 
2994
+ #: src/restorer.php:2211
2995
  msgid "Too many database errors have occurred - aborting"
2996
  msgstr "Der har været for mange database fejl - stopper"
2997
 
2998
+ #: src/backup.php:930
2999
  msgid "read more at %s"
3000
  msgstr "læs mere på %s"
3001
 
3002
+ #: src/backup.php:930
3003
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3004
  msgstr "E-mail rapporter skabt af UpdraftPlus (gratis) giver dig de seneste UpdraftPlus.com nyheder"
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 "P.S. Hvis du installerer UpdraftPlus på flere WordPress-sider, kan du ikke genbruge dine projekter; du må oprette et ny ud fra din Google API konsol for hver side."
3009
 
3010
+ #: src/admin.php:3459
3011
  msgid "You have not yet made any backups."
3012
  msgstr "Du har endnu ikke oprettet nogle backups."
3013
 
3014
+ #: src/templates/wp-admin/settings/form-contents.php:179
3015
  msgid "Database Options"
3016
  msgstr "Database muligheder"
3017
 
3027
  msgid "Free disk space in account:"
3028
  msgstr "Ledig diskplads på konto:"
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 "Denne knap er deaktiveret fordi dit backup-arkiv ikke er skrivbart (se indstillingerne)."
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 "Eksisterende backups"
3040
 
3041
+ #: src/admin.php:516, src/templates/wp-admin/settings/tab-bar.php:5
3042
  msgid "Current Status"
3043
  msgstr "Nuværende status"
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 "For at ændre standardinstillingerne for, hvad der skal tages backup af - for at indstille planlagte backups - for at sende dine backups til fjernlager (anbefales) - og mere - Gå til indstillingsfanen."
3048
 
3049
+ #: src/admin.php:941
3050
  msgid "To make a backup, just press the Backup Now button."
3051
  msgstr "Klik på Backup Nu knappen for at skabe en backup."
3052
 
3053
+ #: src/admin.php:941
3054
  msgid "Welcome to UpdraftPlus!"
3055
  msgstr "Velkommen til UpdraftPlus!"
3056
 
3122
  msgid "user"
3123
  msgstr "bruger"
3124
 
3125
+ #: src/class-updraftplus.php:1733
3126
  msgid "External database (%s)"
3127
  msgstr "Ekstern database (%s)"
3128
 
3139
  msgid "However, subsequent access attempts failed:"
3140
  msgstr "Dog mislykkede adgangsforsøget efterfølgende:"
3141
 
3142
+ #: src/admin.php:3484
3143
  msgid "External database"
3144
  msgstr "Ekstern database"
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 "Dette vil også medføre fejlsøgningsudskrift fra alle plugins som vil blive vist på denne skærm - du skal ikke blive overrasket over at se disse."
3149
 
3150
+ #: src/templates/wp-admin/settings/form-contents.php:261
3151
  msgid "Back up more databases"
3152
  msgstr "Backup flere databaser"
3153
 
3154
+ #: src/templates/wp-admin/settings/form-contents.php:220
3155
  msgid "First, enter the decryption key"
3156
  msgstr "Indtast først dekrypteringsnøglen"
3157
 
3158
+ #: src/templates/wp-admin/settings/form-contents.php:202
3159
  msgid "You can manually decrypt an encrypted database here."
3160
  msgstr "Du kan manuelt dekryptere en krypteret database her."
3161
 
3162
+ #: src/templates/wp-admin/settings/form-contents.php:188
3163
  msgid "It can also backup external databases."
3164
  msgstr "Det kan også sikkerhedskopier eksterne databaser."
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 "Har du ikke lyst til at blive udspioneret? UpdraftPlus Premium kan krypterer din database backup."
3169
 
3171
  msgid "use UpdraftPlus Premium"
3172
  msgstr "brug UpdraftPlus Premium"
3173
 
3174
+ #: src/class-updraftplus.php:4286
3175
  msgid "Decryption failed. The database file is encrypted."
3176
  msgstr "Dekryptering mislykkedes. Databasefilen er krypteret."
3177
 
3179
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
3180
  msgstr "Kun WordPress databasen kan gendannes; du bliver nødt til at behandle den eksterne database manuelt."
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 "Der opstod en fejl med den første %s kommando - afbryder kørelse"
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 "Forbindelsesfejl: kontrollere dine adgangsoplysninger, at database serveren er oppe og at netværksforbindelsen ikke er bag en firewall."
3190
 
3191
+ #: src/backup.php:1392
3192
  msgid "database connection attempt failed."
3193
  msgstr "database forbindelse mislykkedes."
3194
 
3200
  msgid "In %s, path names are case sensitive."
3201
  msgstr "Sti-navne i %s understøtter kun små bogstaver."
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 "Hvis feltet står tomt, vil backup'en placeres i roden af din %s"
3214
  msgid "Enter the path of the %s folder you wish to use here."
3215
  msgstr "Her angives stien til %s mappen du ønsker at bruge."
3216
 
3217
+ #: src/addons/azure.php:570, src/methods/openstack2.php:164
3218
  msgid "Container"
3219
  msgstr "Container"
3220
 
3275
  msgid "Authenticate with %s"
3276
  msgstr "Godkend med %s"
3277
 
3278
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:428
3279
  msgid "Error downloading remote file: Failed to download"
3280
  msgstr "Fejl ved download af fil: Download mislykkedes"
3281
 
3282
+ #: src/methods/openstack-base.php:499, src/methods/openstack-base.php:504
3283
  msgid "Region: %s"
3284
  msgstr "Region: %s"
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 "%s fejl - Vi kunne tilgå containeren, men kunne ikke oprette en fil i den"
3289
 
3290
+ #: src/methods/openstack-base.php:414
3291
  msgid "The %s object was not found"
3292
  msgstr "%s emnet blev ikke fundet"
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 "Kunne ikke tilgå %s container"
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 "%s fejl - Adgang til containeren mislykkedes"
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 "Denne funktion kræver %s version %s eller nyere"
3366
 
3368
  msgid "Failed to unpack the archive"
3369
  msgstr "Kunne ikke udpakke arkivet."
3370
 
3371
+ #: src/class-updraftplus.php:1265
3372
  msgid "Error - failed to download the file"
3373
  msgstr "Fejl - Kunne ikke downloade filen"
3374
 
3392
  msgid "password/key"
3393
  msgstr "password/nøgle"
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 "Nøgle"
3399
 
3409
  msgid "SCP/SFTP password/key"
3410
  msgstr "SCP/SFTP password/nøgle"
3411
 
3412
+ #: src/admin.php:3519
3413
  msgid "Files backup (created by %s)"
3414
  msgstr "Fil-backup (lavet af %s)"
3415
 
3416
+ #: src/admin.php:3519
3417
  msgid "Files and database WordPress backup (created by %s)"
3418
  msgstr "Filer og database WordPress backup (lavet af %s)"
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 "Backup lavet af: %s."
3424
 
3425
+ #: src/admin.php:3482
3426
  msgid "Database (created by %s)"
3427
  msgstr "Database (oprettet af %s)"
3428
 
3429
+ #: src/admin.php:3476, src/admin.php:3515
3430
  msgid "unknown source"
3431
  msgstr "ukendt kilde"
3432
 
3438
  msgid "Upload backup files"
3439
  msgstr "Upload backup filer"
3440
 
3441
+ #: src/admin.php:2080
3442
  msgid "This backup was created by %s, and can be imported."
3443
  msgstr "Denne backup blev lavet af %s og kan importeres."
3444
 
3445
+ #: src/admin.php:970
3446
  msgid "Read this page for a guide to possible causes and how to fix it."
3447
  msgstr "Læs denne side for en guide til mulige årsager og løsningsforslag."
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 "WordPress har et antal (%d) planlagte opgaver, som skulle have være udført. Med mindre dette er et udviklingssite, tyder det på, at planlægningsdelen i din WordPress installation ikke fungerer korrekt."
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 "Hvis dette er en backup skabt af en anden backup plugin, kan UpdraftPlus Premium muligvis hjælpe dig."
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 "Men, UpdraftPlus arkiver er standard zip/SQL filer - så hvis du er sikker på, at filen har det rette format, kan du omdøbe dem, så de matcher dette mønster."
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 "Denne fil er tilsyneladende ikke et UpdraftPlus backup arkiv (som skal være .zip eller .gz filer med et navn som: backup_(tidspunkt)_(site navn)_(kode)_(type).(zip/gz))."
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 "Backup skabt af ukendt kilde (%s) - Kan ikke genskabes."
3484
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3485
  msgstr "UpdraftPlus modulet til denne fil-adgangsmetode (%s) understøtter ikke lister af filer."
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 "Indstillinger blev ikke fundet"
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 "Én eller flere backups er blevet tilføjet efter scanning af fjernlager; bemærk at disse backups ikke automatisk vil blive slettet gennem \"behold\"-instillingerne. Når/hvis du ønsker at slette dem, må dette gøres manuelt."
3495
 
3496
+ #: src/admin.php:644
3497
  msgid "Rescanning remote and local storage for backup sets..."
3498
  msgstr "Scanner igen både fjern- og lokal-lager for backup-sæt..."
3499
 
3515
  msgid "Remove"
3516
  msgstr "Fjern"
3517
 
3518
+ #: src/methods/s3.php:847
3519
  msgid "Other %s FAQs."
3520
  msgstr "Andre %s FAQ's."
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 "Se her for mere information og e-mails om backup-processen - Nyttigt, hvis noget går galt."
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 "Ved angivelse af flere filer/arkiver skal de adskilles med kommaer. Ved enheder på top niveau kan du bruge et * før eller efter det indtastede. "
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 "Din hosting udbyder skal slå disse funktioner til inden %s kan virke."
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 "Din webservers PHP installation har slået disse funktioner fra: %s."
3538
 
3548
  msgid "regular non-encrypted FTP"
3549
  msgstr "almindelig ikke-krypteret FTP"
3550
 
3551
+ #: src/restorer.php:1666
3552
  msgid "Backup created by:"
3553
  msgstr "Backup udført af:"
3554
 
3602
  msgid "Dismiss from main dashboard (for %s weeks)"
3603
  msgstr "Afvis fra hovedoversigten (i %s uger)"
3604
 
3605
+ #: src/class-updraftplus.php:4671
3606
  msgid "The attempt to undo the double-compression succeeded."
3607
  msgstr "Forsøg på at rette dobbelt-kompresionen lykkedes."
3608
 
3609
+ #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4669
3610
  msgid "The attempt to undo the double-compression failed."
3611
  msgstr "Forsøg på at rette dobbelt-kompresionen mislykkedes."
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 "Det ser ud til, at filerne i databasen er blevet komprimeret to gange - Måske har siden, du har downloaded dem fra, en forkert konfigureret webserver."
3616
 
3618
  msgid "Constants"
3619
  msgstr "Kontinuerlige"
3620
 
3621
+ #: src/backup.php:1629
3622
  msgid "Failed to open database file for reading:"
3623
  msgstr "Det mislykkedes af åbne og læse database-filen:"
3624
 
3625
+ #: src/backup.php:1440
3626
  msgid "No database tables found"
3627
  msgstr "Ingen database-tabeller fundet"
3628
 
3629
+ #: src/backup.php:1438
3630
  msgid "please wait for the rescheduled attempt"
3631
  msgstr "Venligst vent på det planlagte forsøg"
3632
 
3643
  msgid "Errors occurred:"
3644
  msgstr "Fejl opstod:"
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 "Følg dette link for at downloade log-filen for denne genoprettelse (nødvendig for enhver henvendelse til support)."
3649
 
3650
+ #: src/templates/wp-admin/settings/form-contents.php:376
3651
  msgid "See this FAQ also."
3652
  msgstr "Se også denne FAQ."
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 "Hvis du fravælger fjernlager, vil backup placeres på web-serveren. Dette kan ikke anbefales (med mindre du manuelt vil kopiere dem til din computer), da eventuelt tab af web-serveren vil medføre, at du mister både din hjemmeside og dine backup's."
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 "Der findes ikke slettede mapper fra en tidligere genskabelse (venligst anvend \"Slet gamle arkiver\" knappen for at slette dem inden næste forsøg): %s"
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 "Grænsen for kørsel af WordPress plugins er meget lav (%s sekunder) - Du bør hæve grænsen for at undgå backup-fejl på grund af time-outs (rådfør dig med din web-udbyder for mere hjælp angående max_execution_time PHP indstillingen. Den anbefalede værdig er %s sekunder eller mere)"
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 "%s forbindelsen udløb. Hvis du angav serveren korrekt, skyldes dette normalt at en firewall blokerer forbindelsen. Du bør tjekke dette med din web-udbyder."
3682
 
3683
+ #: src/addons/moredatabase.php:137, src/admin.php:1421
3684
  msgid "Messages:"
3685
  msgstr "Beskeder:"
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 "En SQL linje, som er større end den maksimale pakkestørrelse og som ikke kan deles op, blev fundet. Denne linje vil ikke blive udført, men blive sprunget over: %s"
3690
 
3834
  msgstr "Konti oprettet på rackspacecloud.com er US konti; konti oprettet på rackspace.co.uk er UK konti."
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 "Autorisation mislykkedes (tjek dine personlige oplysninger)"
3844
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3845
  msgstr "En ukendt fejl opstod ved forsøg på forbindelse til UpdraftPlus.com"
3846
 
3847
+ #: src/admin.php:691, src/central/bootstrap.php:535
3848
  msgid "Create"
3849
  msgstr "Opret"
3850
 
3851
+ #: src/admin.php:653
3852
  msgid "Trying..."
3853
  msgstr "Forsøger..."
3854
 
3855
+ #: src/admin.php:652
3856
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3857
  msgstr "Den nye brugers RackSpace konsol password er (dette vil ikke blive vist igen):"
3858
 
3859
+ #: src/admin.php:663, src/admin.php:3997
3860
  msgid "Error data:"
3861
  msgstr "Fejldata:"
3862
 
3863
+ #: src/admin.php:3672
3864
  msgid "Backup does not exist in the backup history"
3865
  msgstr "Backup eksisterer ikke i backup-historie"
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 "Din WordPres installation har gamle arkiver fra tiden inden du genoprettede/flyttede (teknisk information: disse filer slutter med -old). Du bør klikke på denne knap, når du er sikker på at din tidligere handling virker."
3870
 
3871
+ #: src/restorer.php:1733
3872
  msgid "Split line to avoid exceeding maximum packet size"
3873
  msgstr "Delt linje for at ungå overskridelse af maksimal pakkestørrelse"
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 "Din database-bruger har ikke tilladelse til at slette tabeller. Vi vil forsøge at genskabe ved blot at tømme tabellerne; dette burde virke så længe du genskaber fra en WordPress version med den samme database-struktur (%s)"
3878
 
3904
  msgid "Email reports"
3905
  msgstr "E-mail rapporter"
3906
 
3907
+ #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1746
3908
  msgid "%s checksum: %s"
3909
  msgstr "%s checksum: %s"
3910
 
3911
+ #: src/class-updraftplus.php:1714, src/class-updraftplus.php:1716
3912
  msgid "files: %s"
3913
  msgstr "filer: %s"
3914
 
3920
  msgid "Debugging information"
3921
  msgstr "Information om rens af filer"
3922
 
3923
+ #: src/addons/reporting.php:211, src/admin.php:3415
3924
  msgid "Uploaded to:"
3925
  msgstr "Uploaded til:"
3926
 
3965
  msgid "%s authentication"
3966
  msgstr "%s godkendelse"
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 "%s returnerede ikke det forventede svar - tjek din logfil for flere detaljer"
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 "Det nødvendige %s PHP modul er ikke installeret - ret henvendelse til dit hostingfirma for at få dette aktiveret"
3986
 
3992
  msgid "Your site's admin email address (%s) will be used."
3993
  msgstr "Din sides admin e-mail adresse (%s) vil blive brugt."
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 "Tilslut"
3999
 
4000
+ #: src/templates/wp-admin/settings/form-contents.php:290
4001
  msgid "For more reporting features, use the Reporting add-on."
4002
  msgstr "For udvidede muligheder for fejlrapportering, brug da Reporting add-on, "
4003
 
4004
+ #: src/class-updraftplus.php:4361
4005
  msgid "(version: %s)"
4006
  msgstr "(version: %s)"
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 "Vær opmærksom på at mailservere ofte har en størrelsesbegrænsning; typisk omkring %s Mb; backup større end disse grænser vil sandsynligvis ikke blive modtaget."
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 "Når backup via e-mail er tilføjet, send da også den samlede backup"
4016
 
4017
+ #: src/addons/reporting.php:170, src/backup.php:965
4018
  msgid "Latest status:"
4019
  msgstr "Seneste status:"
4020
 
4021
+ #: src/backup.php:964
4022
  msgid "Backup contains:"
4023
  msgstr "Backup indeholder:"
4024
 
4025
+ #: src/backup.php:921
4026
  msgid "Backed up: %s"
4027
  msgstr "Backed up: %s"
4028
 
4029
+ #: src/addons/reporting.php:253, src/backup.php:915
4030
  msgid "The log file has been attached to this email."
4031
  msgstr "Log-filen er vedhæftet denne e-mail. "
4032
 
4033
+ #: src/backup.php:879
4034
  msgid "Unknown/unexpected error - please raise a support request"
4035
  msgstr "Ukendt/ uforventet fejl - Henvend dig venligst til supporten"
4036
 
4037
+ #: src/backup.php:876
4038
  msgid "Database only (files were not part of this particular schedule)"
4039
  msgstr "Kun database (filer var ikke en del af denne planlagte kørsel)"
4040
 
4041
+ #: src/backup.php:876
4042
  msgid "Database (files backup has not completed)"
4043
  msgstr "Database (backup af filer er ikke færdig)"
4044
 
4045
+ #: src/backup.php:873
4046
  msgid "Files only (database was not part of this particular schedule)"
4047
  msgstr "Kun filer (databasen var ikke end del af denne planlagte kørsel)"
4048
 
4049
+ #: src/backup.php:873
4050
  msgid "Files (database backup has not completed)"
4051
  msgstr "Arkiverer (backup af databasen er ikke færdig)"
4052
 
4053
+ #: src/admin.php:297, src/backup.php:871
4054
  msgid "Files and database"
4055
  msgstr "Filer og database"
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 "(Dette gælder alle WordPress backup plugins, undtagen hvis de er specielt kodet til multisite mulighed)."
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 "Uden at opgradere tillader UpdraftPlus <strong>enhver</strong> blog administrator, som kan tilpasse plugin-indstillingerne (og dermed tilgå data, inklusiv passwords, fra) og genskabe (ud over tilpassede instillinger, f.eks. ændrede passwords) <strong>hele nætværket</strong>."
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 "WordPress Multisite er understøtte med ekstra funktioner af UpdraftPlus Premium, eller Multisite tilføjelsen."
4068
 
4069
+ #: src/options.php:192
4070
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4071
  msgstr "Dette er en WordPress multi-site (også kaldet netværk) installation."
4072
 
4073
+ #: src/options.php:192
4074
  msgid "UpdraftPlus warning:"
4075
  msgstr "UpdraftPlus advarsel:"
4076
 
4136
  msgstr "Det lykkedes ikke at skabe forbindelse til UpdraftPlus.Com"
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 "Rapportering"
4144
 
4145
+ #: src/admin.php:4462
4146
  msgid "Options (raw)"
4147
  msgstr "Muligheder (raw)"
4148
 
4149
+ #: src/addons/reporting.php:453, src/admin.php:640
4150
  msgid "Send a report only when there are warnings/errors"
4151
  msgstr "Send kun en rapport når der er advarsler/fejl"
4152
 
4153
+ #: src/restorer.php:1677
4154
  msgid "Content URL:"
4155
  msgstr "Indholds-URL:"
4156
 
4158
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4159
  msgstr "Du bedes tjekke filejerskab og -tilladelser i din WordPress installation"
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 "Se også \"Flere filer\"-tilføjelsen i vores shop."
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 "Din ledige plads på din hosting-konto er meget lille - kun %s Mb tilbage"
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 "Mængden af hukommelse (RAM) tilladt til PHP er meget lav (%s Mb) - Du bør udvide hukommelsen p.g.a. for lidt hukommelse (kontakt din webhosting-udbyder for mere hjælp)"
4172
 
4302
  msgid "Drop backup files here"
4303
  msgstr "Drop backup-filer her"
4304
 
4305
+ #: src/admin.php:2507
4306
  msgid "Does nothing happen when you attempt backups?"
4307
  msgstr "Sker der ingenting, når du forsøger at køre backup?"
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 "Web-serveren returnerede en fejlkode (prøv igen, eller tjek din web-servers logs)"
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 "Genskabelsen er startet. Tryk ikke på stop, og luk ikke browseren før der meldes om, at processen er færdig."
4316
 
4317
+ #: src/admin.php:646
4318
  msgid "If you exclude both the database and the files, then you have excluded everything!"
4319
  msgstr "Hvis du fravælger både databasen og filerne, har du fravalgt alt!"
4320
 
4321
+ #: src/restorer.php:1671
4322
  msgid "Site home:"
4323
  msgstr "Sidens forside:"
4324
 
4334
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4335
  msgstr "Husk dette valg til næste gang (du vil stadig have mulighed for at ændre det)"
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 "Upload mislykkedes"
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 "Du kan sende en backup til mere end én destination ved hjælp af et tilføjelsesprogram."
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 "Note: Tidslinjen nedenfor er baseret på stadier, IKKE tid. Stop ikke backup'en kun på grund af, at den tilsyneladende har stået på det samme sted i et stykke tid - dette er normalt."
4349
 
4350
+ #: src/admin.php:2744
4351
  msgid "(%s%%, file %s of %s)"
4352
  msgstr "(%s%%, file %s of %s)"
4353
 
4384
  msgid "Backup is of: %s."
4385
  msgstr "Backup er: %s."
4386
 
4387
+ #: src/admin.php:739
4388
  msgid "%s settings test result:"
4389
  msgstr "%s indstillinger test resultat:"
4390
 
4391
+ #: src/admin.php:3583, src/admin.php:3585
4392
  msgid "(Not finished)"
4393
  msgstr "(Ikke færdig)"
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 "Hvis du ser flere backup's, end du havde forventet, er det sikkert på grund af, at sletning af gamle backup sæt ikke sker, før en ny backup er færdig."
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 "<b>Venligst ikke</b> plaver det i dine uploads eller plugins arkiv, da det vil skabe gentagelse på gentagelse (backup af backup af backup af...)."
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 "Dette er, hvor UpdraftPlus vil skrive zip-filerne indledningsvis. Dette arkiv må være skrivbare for din web-server. Dette relaterer til dit indholdsarkiv (der som standard kaldes wp-content)."
4406
 
4407
+ #: src/admin.php:2841
4408
  msgid "Job ID: %s"
4409
  msgstr "Job ID: %s"
4410
 
4411
+ #: src/admin.php:2826
4412
  msgid "last activity: %ss ago"
4413
  msgstr "Seneste aktivitet: for %ss siden"
4414
 
4415
+ #: src/admin.php:2825
4416
  msgid "next resumption: %d (after %ss)"
4417
  msgstr "Gentages næste gang: %d (after %ss)"
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 "Ukendt"
4424
 
4425
+ #: src/admin.php:2758
4426
  msgid "Backup finished"
4427
  msgstr "Backup er færdig"
4428
 
4429
+ #: src/admin.php:2753
4430
  msgid "Waiting until scheduled time to retry because of errors"
4431
  msgstr "Afventer planlagt kørsel før næste forsøg pga. fejl"
4432
 
4433
+ #: src/admin.php:2749
4434
  msgid "Pruning old backup sets"
4435
  msgstr "Nedbringer antal gamle backup-sæt"
4436
 
4437
+ #: src/admin.php:2737
4438
  msgid "Uploading files to remote storage"
4439
  msgstr "Uploader filer til fjernlager"
4440
 
4441
+ #: src/admin.php:2806
4442
  msgid "Encrypted database"
4443
  msgstr "Krypteret database"
4444
 
4445
+ #: src/admin.php:2798
4446
  msgid "Encrypting database"
4447
  msgstr "Krypterer database"
4448
 
4449
+ #: src/admin.php:2772
4450
  msgid "Created database backup"
4451
  msgstr "Oprettet database backup"
4452
 
4453
+ #: src/admin.php:2785
4454
  msgid "table: %s"
4455
  msgstr "tabel: %s"
4456
 
4457
+ #: src/admin.php:2783
4458
  msgid "Creating database backup"
4459
  msgstr "Opretter database backup"
4460
 
4461
+ #: src/admin.php:2731
4462
  msgid "Created file backup zips"
4463
  msgstr "Oprettede fil backup zips"
4464
 
4465
+ #: src/admin.php:2718
4466
  msgid "Creating file backup zips"
4467
  msgstr "Opretter fil backup zips"
4468
 
4469
+ #: src/admin.php:2713
4470
  msgid "Backup begun"
4471
  msgstr "Backup er startet"
4472
 
4473
+ #: src/admin.php:2556
4474
  msgid "Backups in progress:"
4475
  msgstr "Igangværende backups:"
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 "Planlæggeren er disabled i dine WordPress indstillinger via DISABLE_WP_CRON. Ingen backup's kan køre (selv &quot;Backup Now&quot;), medmindre du manuelt har indstillet muligheden for at kontakte planlæggeren, eller indtil det er slået fra."
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 "UpdraftPlus havde behov for at oprette en %s i dit indholdsarkiv, men mislykkedes - Venligst tjek dine rettigheder og giv adgang (%s)"
4492
 
4493
+ #: src/class-updraftplus.php:2830
4494
  msgid "The backup has not finished; a resumption is scheduled"
4495
  msgstr "Backup'en er ikke færdig; en genoptagelse er planlagt"
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 "Dit website besøges kun sjældent og UpdraftPlus modtager ikke de forventede ressourcer. Læs venligst denne side:"
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 "%s godkendelsen kunne ikke fuldføres, fordi noget andet på dit site ødelægger den. Prøv at sætte plugins til passiv og skift til et standard tema. (Det, du leder efter, er de komponenter, der sender output (sandsynligvis PHP advarsler/fejl) inden siden starter op. At slå antivirus-indstillinger fra kan også hjælpe)."
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 "Din PHP hukommelsesgrænse (bestemt af din web hosting udbyder) er meget lav. UpdraftPlus forsøgte uden held at øge denne grænse. Dette plugin har problemer med grænser mindre end 64 Mb - specielt hvis du har upload'et meget store filer (selv om mange sider vil fungere med en 32Mb grænse)."
4510
 
4511
+ #: src/addons/autobackup.php:1085, src/admin.php:693
4512
  msgid "Proceed with update"
4513
  msgstr "Fortsæt med opdateringen"
4514
 
4583
  msgid "Support"
4584
  msgstr "Support"
4585
 
4586
+ #: src/class-updraftplus.php:4562
4587
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4588
  msgstr "UpdraftPlus kunne ikke finde indstillinger for tabeller ved scanning af database backup'en."
4589
 
4590
+ #: src/class-updraftplus.php:4554
4591
  msgid "This database backup is missing core WordPress tables: %s"
4592
  msgstr "Denne database backup mangler WordPress tabeller: %s"
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 "Du importerer fra en nyere version af WordPress (%s) til en ældre version (%s). Det kan ikke garanteres, at WordPress kan håndtere dette."
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 "Databasen er for lille til at være en godkendt WordPress database (størrelse: %s Kb)."
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 "Vær på den sikre side med en automatisk backup"
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 "Hvis du stadig kan læse denne tekst, efter siden er færdig med at loade, så er der et problem med JavaScrips eller jQuery på siden."
4614
 
4615
+ #: src/admin.php:687
4616
  msgid "The file was uploaded."
4617
  msgstr "Filen blev uploaded."
4618
 
4619
+ #: src/admin.php:686
4620
  msgid "Unknown server response status:"
4621
  msgstr "Ukendt server-svar status:"
4622
 
4623
+ #: src/admin.php:685
4624
  msgid "Unknown server response:"
4625
  msgstr "Ukendt server-svar:"
4626
 
4627
+ #: src/admin.php:684
4628
  msgid "This decryption key will be attempted:"
4629
  msgstr "Denne dekrypteringsnøgle vil forsøges anvendt:"
4630
 
4631
+ #: src/admin.php:683
4632
  msgid "Follow this link to attempt decryption and download the database file to your computer."
4633
  msgstr "Følg dette link for at forsøge dekryptering eller download database-filen til din computer."
4634
 
4635
+ #: src/admin.php:682
4636
  msgid "Upload error"
4637
  msgstr "Fejl ved upload"
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 "Denne fil er tilsyneladende ikke et krypteret UpdraftPlus database arkiv (sådanne filer er .gz.crypt filer, der har et navn som: backup_(tid)_(sidenavn)_(kode)_db.crypt.gz)."
4642
 
4643
+ #: src/admin.php:680
4644
  msgid "Upload error:"
4645
  msgstr "Upload fejl:"
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 "(vær sikker på, at du prøvede på at uploade en zip-fil, der tidligere er skabt af UpdraftPlus)"
4650
 
4651
+ #: src/admin.php:670
4652
  msgid "Download to your computer"
4653
  msgstr "Download til din computer"
4654
 
4655
+ #: src/admin.php:669
4656
  msgid "Delete from your web server"
4657
  msgstr "Slet fra din webserver"
4658
 
4659
+ #: src/admin.php:3553
4660
  msgid "You appear to be missing one or more archives from this multi-archive set."
4661
  msgstr "Du mangler tilsyneladende et eller flere arkiver fra dette multi-arkiv sæt."
4662
 
4663
+ #: src/admin.php:3550
4664
  msgid "(%d archive(s) in set)."
4665
  msgstr "%d arkiv(er) i sæt)."
4666
 
4667
+ #: src/templates/wp-admin/settings/form-contents.php:336
4668
  msgid "Split archives every:"
4669
  msgstr "Opdel arkiver hver:"
4670
 
4672
  msgid "Error: the server sent us a response (JSON) which we did not understand."
4673
  msgstr "Fejl: Serveren sendte os et svar (JSON), som vi ikke forstod."
4674
 
4675
+ #: src/admin.php:660
4676
  msgid "Warnings:"
4677
  msgstr "Advarsler:"
4678
 
4679
+ #: src/admin.php:659
4680
  msgid "Error: the server sent an empty response."
4681
  msgstr "Fejl: Serveren sendte et tomt svar. "
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 "Dette ligner en fil skabt af UpdraftPlus, men denne installation kender ikke til denne type objekt: %s. Måske skal du installere en add-on?"
4686
 
4716
  msgid "No such backup set exists"
4717
  msgstr "En sådan backup findes ikke"
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 "Backup-arkivet for denne fil kunne ikke findes. Den anvendte fjernlagermetode (%s) tillader os ikke at hente filerne. For at genskabe via UpdraftPlus, må du hente en kopi af denne fil og placere den i UpdraftPlus's arbejdsmappe."
4722
 
4724
  msgid "Moving unpacked backup into place..."
4725
  msgstr "Flytter upakket backup på plads..."
4726
 
4727
+ #: src/backup.php:2744, src/backup.php:2998
4728
  msgid "Failed to open the zip file (%s) - %s"
4729
  msgstr "Kunne ikke åbne zip-filen (%s) - %s"
4730
 
4732
  msgid "WordPress root directory server path: %s"
4733
  msgstr "Server-sti til WordPress rodmappen: %s"
4734
 
4735
+ #: src/methods/s3.php:852
4736
  msgid "%s end-point"
4737
  msgstr "%s end-point"
4738
 
4739
+ #: src/methods/s3.php:814
4740
  msgid "... and many more!"
4741
  msgstr "... og mange flere!"
4742
 
4743
+ #: src/methods/s3generic.php:59, src/methods/s3generic.php:68
4744
  msgid "S3 (Compatible)"
4745
  msgstr "S3 (Kompatibel)"
4746
 
4747
+ #: src/admin.php:1211
4748
  msgid "File is not locally present - needs retrieving from remote storage"
4749
  msgstr "Filen findes i øjeblikket ikke lokalt - Den skal hentes fra fjernlageret"
4750
 
4751
+ #: src/admin.php:3853
4752
  msgid "Looking for %s archive: file name: %s"
4753
  msgstr "Leder efter %s arkiv: filnavn: %s"
4754
 
4755
+ #: src/admin.php:3814
4756
  msgid "Final checks"
4757
  msgstr "Afsluttende kontrol"
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 "Vælg denne funktion for at slette enhver unødvendige backup-filer fra din server, efter backup-kørslen er færdiggjort. Hvis du fravælger funktionen, vil alle filer sendt til fjernlager også forblive på den lokale enhed)."
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 "Placér krypterede database-filer (db.gz.crypt filer) her for at uploade dem til afkryptering"
4766
 
4767
+ #: src/admin.php:3205
4768
  msgid "Your wp-content directory server path: %s"
4769
  msgstr "Din wp-content arkivserver sti: %s"
4770
 
4771
+ #: src/admin.php:676
4772
  msgid "Raw backup history"
4773
  msgstr "Komplet backup-historie"
4774
 
4776
  msgid "Show raw backup and file list"
4777
  msgstr "Vis komplet backup og fil-liste"
4778
 
4779
+ #: src/admin.php:658
4780
  msgid "Processing files - please wait..."
4781
  msgstr "Behandler filer - vent venligst..."
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 "Venligst se denne FAQ for hjælp til en løsning."
4789
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4790
  msgstr "Din WordPress installation har et problem med at udlæse ekstra whitespace. Dette kan ødelægge backup's, som downloades herfra."
4791
 
4792
+ #: src/class-updraftplus.php:4311
4793
  msgid "Failed to open database file."
4794
  msgstr "Kunne ikke åbne database filen."
4795
 
4796
+ #: src/admin.php:4431
4797
  msgid "Known backups (raw)"
4798
  msgstr "Kendte backups (komplette)"
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 "Dette ser ud til at være en flytning (backup'en er fra en side med en anden adresse/URL), men du valgte ikke muligheden for at søge-og-erstatte databasen. Dette er normalt en fejl."
4811
 
4812
+ #: src/admin.php:3873
4813
  msgid "file is size:"
4814
  msgstr "Filstørrelse:"
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 "Find mere information her."
4822
 
4823
+ #: src/admin.php:657
4824
  msgid "Some files are still downloading or being processed - please wait."
4825
  msgstr "Nogle filer er stadig ved at downloade eller blive bearbejdet - Vent venligst."
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 "Denne backup-pakke er fra en anden side - Dette er ikke en genskabelse, men en flytning. Du behøver Migrator add-on for at få dette til at fungere."
4830
 
4868
  msgid "Error - no such file exists at %s"
4869
  msgstr "Fejl - Denne fil eksisterer ikke på %s"
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 "%s fejl - Kunne ikke uploade filen"
4882
 
4883
+ #: src/class-updraftplus.php:1157, src/methods/cloudfiles.php:223
4884
  msgid "%s error - failed to re-assemble chunks"
4885
  msgstr "%s fejl - kunne ikke genskabe stykkerne"
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 "%s tilladelse fejlede"
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 "Fejl: %s"
4906
 
4907
+ #: src/admin.php:3142
4908
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4909
  msgstr "Dette backup-arkiv eksisterer, men er <b>ikke</b> skrivbart."
4910
 
4911
+ #: src/admin.php:3140
4912
  msgid "Backup directory specified does <b>not</b> exist."
4913
  msgstr "Dette backup-arkiv eksisterer <b>ikke</b>."
4914
 
4915
+ #: src/admin.php:2853, src/admin.php:3096
4916
  msgid "Warning: %s"
4917
  msgstr "Advarsel: %s"
4918
 
4920
  msgid "Last backup job run:"
4921
  msgstr "Sidste backup-job kørsel:"
4922
 
4923
+ #: src/backup.php:2766
4924
  msgid "A very large file was encountered: %s (size: %s Mb)"
4925
  msgstr "En meget stor fil blev fundet: %s (størrelse: %s Mb)"
4926
 
4927
+ #: src/backup.php:2172
4928
  msgid "%s: unreadable file - could not be backed up"
4929
  msgstr "%s: Ikke læsbar fil - Kunne ikke blive backed up"
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 "%s tabellen har et stort antal rækker (%s) - Vi håber at din web-hosting udbyder giver dig nok ressourcer til at inkludere denne tabel i backup'en"
4934
 
4935
+ #: src/backup.php:1648
4936
  msgid "An error occurred whilst closing the final database file"
4937
  msgstr "En fejl opstod ved lukning af den sidste database-fil"
4938
 
4939
+ #: src/backup.php:906
4940
  msgid "Warnings encountered:"
4941
  msgstr "Fundne advarsler:"
4942
 
4943
+ #: src/class-updraftplus.php:2818
4944
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4945
  msgstr "Backup'en ser ud til at være succesfuld (med advarsler) og er nu færdig"
4946
 
4947
+ #: src/class-updraftplus.php:809
4948
  msgid "Your free disk space is very low - only %s Mb remain"
4949
  msgstr "Din ledige diskplads er meget lille - Der er kun %s Mb tilbage"
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 "Nogle servere angiver at krypteret FTP er mulig, men går så i time-out (efter lang tid), når du forsøger at anvende det. Hvis du oplever dette, skal du gå til \"Ekspert Muligheder\" (nedenfor) og slå SSL fra."
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 "Din web-servers PHP installation indeholder ikke et nødvendigt modul (%s). Venligst kontakt din web hosting udbyders support og bed dem om at tilføje modulet."
4986
 
4987
+ #: src/methods/s3.php:1084
4988
  msgid "Please check your access credentials."
4989
  msgstr "Venligst tjek dine adgangsindstillinger."
4990
 
4991
+ #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1062
4992
  msgid "The error reported by %s was:"
4993
  msgstr "Fejlen meddelt af %s var:"
4994
 
4996
  msgid "Please supply the requested information, and then continue."
4997
  msgstr "Venligst angiv den anmodede information og fortsæt derefter."
4998
 
4999
+ #: src/class-updraftplus.php:4451, src/restorer.php:1707
5000
  msgid "Site information:"
5001
  msgstr "Site information:"
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 "Din database bruger har ikke tilladelse til at oprette tabeller. Vi vil forsøge at genskabe ved simpelthen af tømme tabellerne, hvilket skulle virke, hvis a) du genskaber fra en WordPress version med samme database struktur, og b) dine importerede databaser ikke indeholder tabeller, der ikke allerede findes på det importerede site."
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 "Advarsel:"
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 "Du arbejder via en WordPress multisite - men din backup er ikke af et multisite site."
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 "Springer genskabelse af WordPress kerneværdier over, når der importeres et single site til en multisite installation. Hvis du havde noget vigtigt i dit WordPress arkiv, må du tilføje det manuelt fra zip-filen."
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 "Din web-servers PHP installation inkluderede ikke en <strong>nødvendig</strong> (for %s) modul (%s). Venligst kontakt din webhosting-udbyders support og bed dem om at muliggøre dette."
5024
 
5025
+ #: src/admin.php:694
5026
  msgid "Close"
5027
  msgstr "Luk"
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 "Uventet respons:"
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 "Adskil hver adresse med et komma, for at sende til flere adresser."
5039
 
5040
+ #: src/admin.php:674
5041
  msgid "PHP information"
5042
  msgstr "PHP information"
5043
 
5073
  msgid "Also delete from remote storage"
5074
  msgstr "Slet også fra fjernlageret"
5075
 
5076
+ #: src/admin.php:2583
5077
  msgid "Latest UpdraftPlus.com news:"
5078
  msgstr "Seneste UpdraftPlus.com nyheder:"
5079
 
5090
  msgid "News"
5091
  msgstr "Nyheder"
5092
 
5093
+ #: src/admin.php:1475, src/includes/class-wpadmin-commands.php:465
5094
  msgid "Backup set not found"
5095
  msgstr "Bakup sæt ikke fundet"
5096
 
5112
  msgid "Blog link"
5113
  msgstr "Blog link"
5114
 
5115
+ #: src/admin.php:738
5116
  msgid "Testing %s Settings..."
5117
  msgstr "Tester %s indstillinger..."
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 "Eller, du kan placere dem manuelt i dit UpdraftPlus arkiv (normalt wp-indhold/updraft), f.eks. via FTP, og benyt så \"rescan\"-linket ovenfor."
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 "UpdraftPlus's debug mode er slået til. Du vil muligvis få debugging beskeder på denne side, ikke kun fra UpdraftPlus, men fra alle andre plugins, der er installeret. Vær sikker på, at den viste besked er fra UpdraftPlus, inden du kontakter support."
5126
 
5127
+ #: src/admin.php:965
5128
  msgid "Notice"
5129
  msgstr "Meddelelse"
5130
 
5131
+ #: src/backup.php:888
5132
  msgid "Errors encountered:"
5133
  msgstr "Fundne fejl:"
5134
 
5135
+ #: src/admin.php:643
5136
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
5137
  msgstr "Scanner igen (søger efter backup's, du manuelt har uploaded til det interne backup lager)..."
5138
 
5139
+ #: src/admin.php:656
5140
  msgid "Begun looking for this entity"
5141
  msgstr "Søgning efter denne enhed er startet"
5142
 
5156
  msgid "Time taken (seconds):"
5157
  msgstr "Anvendt tid (sekunder):"
5158
 
5159
+ #: src/addons/migrator.php:1141, src/admin.php:661
5160
  msgid "Errors:"
5161
  msgstr "Fejl:"
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 "Alle referenver til dette site lokation i databasen, vil blive erstattet med dit nuværende site-URL, som er: %s"
5220
 
5221
+ #: src/addons/multisite.php:659
5222
  msgid "Blog uploads"
5223
  msgstr "Blog uploads"
5224
 
5225
+ #: src/addons/migrator.php:385, src/addons/multisite.php:652
5226
  msgid "Must-use plugins"
5227
  msgstr "Must-use plugins"
5228
 
5229
+ #: src/addons/multisite.php:174
5230
  msgid "Multisite Install"
5231
  msgstr "Multisite installation"
5232
 
5322
  msgid "WordPress Core"
5323
  msgstr "WordPress Core"
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 "Fejl: Vi kunne ikke indsætte en fil i denne mappe - Venligst tjek dine tilladelser."
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 "Mislykket"
5421
  msgid "You do not appear to be authenticated with Dropbox"
5422
  msgstr "Det lader ikke til, at du har adgang til Dropbox"
5423
 
5424
+ #: src/methods/s3.php:1079
5425
  msgid "The communication with %s was not encrypted."
5426
  msgstr "Kommunikationen med %s var ikke krypteret."
5427
 
5428
+ #: src/methods/s3.php:1077
5429
  msgid "The communication with %s was encrypted."
5430
  msgstr "Kommunikationen med %s var krypteret."
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 "Vi har fået adgang til gruppen, og vi kunne oprette filer i den."
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 "Vi har fået adgang til gruppen, men forsøget på at oprette en fil i den mislykkedes."
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 "Fejl"
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 "Fejl: Vi kunne ikke få adgang til eller oprette sådan en gruppe. Tjek venligst dine adgangsoplysninger, og hvis de er korrekt, så prøv et andet gruppenavn (da en anden %s bruger måske allerede har taget dit navn)."
5449
 
5450
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5451
+ #: src/methods/s3.php:1054
5452
  msgid "Region"
5453
  msgstr "Region"
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 "Fejl: Ingen gruppedetaljer blev oplyst."
5459
 
5460
+ #: src/methods/s3.php:1014
5461
  msgid "API secret"
5462
  msgstr "API hemmelighed"
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 "Indtast kun et gruppenavn eller en gruppe og sti. Eksempler: mingruppe, mingruppe/minsti"
5467
 
5468
+ #: src/methods/s3.php:888
5469
  msgid "%s location"
5470
  msgstr "%s lokation"
5471
 
5472
+ #: src/methods/s3.php:884
5473
  msgid "%s secret key"
5474
  msgstr "%s sikkerhedsnøgle"
5475
 
5476
+ #: src/methods/s3.php:880
5477
  msgid "%s access key"
5478
  msgstr "%s adgangsnøgle"
5479
 
5480
+ #: src/methods/s3.php:845
5481
  msgid "If you see errors about SSL certificates, then please go here for help."
5482
  msgstr "Hvis du ser fejl vedrørende SSL-certifikater, kan du få hjælp her."
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 "Få din adgangs- og sikkerhedsnøgle <a href=\"%s\"> fra din %s konsol</a>, og vælg derefter et (globalt unikt - alle %s brugere) gruppe navn (bogstaver og tal) (og eventuelt en sti ) til brug for opbevaring. Der vil blive oprettet denne samling for dig, hvis den ikke allerede findes."
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 "%s Fejl: Kunne ikke få adgang til samling %s. Tjek dine tilladelser og legitimationsoplysninger."
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 "%s Fejl: Kunne ikke downloade %s. Tjek dine tilladelser og person-oplysninger."
5496
 
5497
+ #: src/methods/s3.php:441
5498
  msgid "%s re-assembly error (%s): (see log file for more)"
5499
  msgstr "%s genskabelses-fejl (%s): (Se logfilen for mere info)"
5500
 
5501
+ #: src/methods/s3.php:437
5502
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5503
  msgstr "%s upload (%s): Genskabelse mislykkedes (se log for flere detaljer)."
5504
 
5505
+ #: src/methods/s3.php:421
5506
  msgid "%s chunk %s: upload failed"
5507
  msgstr "%s del %s: Upload mislykkedes."
5508
 
5509
+ #: src/methods/s3.php:411
5510
  msgid "%s error: file %s was shortened unexpectedly"
5511
  msgstr "%s fejl: Filen %s blev forkortet uventet."
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 "%s upload: Det mislykkedes af få upload-ID til multi upload - Se logfilen for flere detaljer."
5516
 
5522
  msgid "WordPress Backup"
5523
  msgstr "WordPress Backup"
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 "Vi fik adgang til mappen, og var i stand til at oprette filer i den."
5528
 
5530
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5531
  msgstr "Cloud Files fejl - vi fik adgang til mappen, men undlod at oprette en fil i den."
5532
 
5533
+ #: src/methods/cloudfiles.php:551, src/methods/openstack-base.php:445
5534
  msgid "Failure: No container details were given."
5535
  msgstr "Fejl: Der blev ikke oplyst detaljer om mappe."
5536
 
5541
  msgstr "Brugernavn"
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 "API-nøgle"
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 "Fejl: Der blev ikke angivet et %s"
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 "UpdraftPlus's %s modul <strong>kræver</strong> %s. Vær venlig ikke at kontakte support; der er intet alternativ."
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 "Få din API nøgle <a href=\"https://mycloud.rackspace.com/\"> fra din Rackspace Cloud konsol</a>(læs vejledningen <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">her</a>), og vælg herefter et mappenavn til brug for opbevaring. Mappen vil blive oprettet for dig, hvis den ikke allerede findes."
5601
 
5602
+ #: src/admin.php:737, src/methods/backup-module.php:253
5603
  msgid "Test %s Settings"
5604
  msgstr "Test %s indstillinger"
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 "Fejl ved åbning af lokal fil: Kunne ikke downloade."
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 "%s Fejl: Upload mislykkedes."
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 "%s Fejl: Kunne ikke åbne den lokale fil."
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 "%s er et godt valg, fordi UpdraftPlus understøtter chunked uploads - Uanset hvor stor din hjemmeside er, kan UpdraftPlus uploade den lidt ad gangen uden at blive udsat for time-outs."
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 "Succes"
5710
 
5743
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5744
  msgstr "Det er nødvendigt at re-autentificere med %s, da dine eksisterende legitimationsoplysninger ikke fungerer."
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 "OK"
5751
 
5752
+ #: src/restorer.php:2280, src/restorer.php:2355
5753
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5754
  msgstr "Tabel præfiks har ændret sig: Skiftende %s tabel-felt(er) i overensstemmelse hermed:"
5755
 
5756
+ #: src/addons/migrator.php:1154, src/restorer.php:2183
5757
  msgid "the database query being run was:"
5758
  msgstr "databaseforespørgslen der blev kørt var:"
5759
 
5760
+ #: src/restorer.php:1885
5761
  msgid "will restore as:"
5762
  msgstr "vil genskabes som:"
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 "Gammel tabel præfiks:"
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 "Backup af:"
5773
 
5839
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5840
  msgstr "UpdraftPlus er ikke i stand til direkte at genskabe denne type. Den skal genoprettes manuelt."
5841
 
5842
+ #: src/admin.php:3879, src/admin.php:3880
5843
  msgid "Could not find one of the files for restoration"
5844
  msgstr "Kunne ikke finde en af filerne til genoprettelse"
5845
 
5846
+ #: src/admin.php:3989
5847
  msgid "Error message"
5848
  msgstr "Fejlmeddelelse"
5849
 
5850
+ #: src/admin.php:3876
5851
  msgid "The backup records do not contain information about the proper size of this file."
5852
  msgstr "Backup optegnelser indeholder ikke information om den korrekte størrelse af denne fil."
5853
 
5854
+ #: src/admin.php:3868
5855
  msgid "Archive is expected to be size:"
5856
  msgstr "Arkivets forventede størrelse:"
5857
 
5858
+ #: src/admin.php:3765
5859
  msgid "If making a request for support, please include this information:"
5860
  msgstr "Hvis du opretter en anmodning om support, skal du medtage denne information:"
5861
 
5862
+ #: src/admin.php:3764
5863
  msgid "ABORT: Could not find the information on which entities to restore."
5864
  msgstr "AFBRUDT: Kunne ikke finde oplysninger om, hvilke enheder som skulle gendannes."
5865
 
5866
+ #: src/admin.php:3719
5867
  msgid "UpdraftPlus Restoration: Progress"
5868
  msgstr "UpdraftPlus Genoprettelse: Status"
5869
 
5870
+ #: src/admin.php:3671
5871
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5872
  msgstr "Denne backup findes ikke i backup historik - genopretningen afbrudt. Tidsstempel:"
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 "Når du har trykket på denne knap, vil du få mulighed for at vælge, hvilke komponenter du ønsker at gendanne"
5877
 
5878
+ #: src/admin.php:3622
5879
  msgid "Delete this backup set"
5880
  msgstr "Slet dette backup sæt"
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 "Gode nyheder: Dit websteds kommunikation med %s kan krypteres. Hvis du ser nogen fejl som har med kryptering at gøre, så kig under \"Avancerede indstillinger\" for mere hjælp."
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 "Din webservers PHP/Curl-installation understøtter ikke HTTPS-adgang. Vi kan ikke få adgang til %s uden denne mulighed. Kontakt venligst din hosts support. %s <strong>kræver</strong> Curl + https. Undlad venligst at lave en supportadmodning til os; der er ikke noget alternativ."
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 "Dit websteds PHP-installation bruger ikke et nødvendigt modul (%s). Kontakt venligst din hostingudbyder's support."
5898
 
5899
+ #: src/templates/wp-admin/settings/form-contents.php:399
5900
  msgid "Save Changes"
5901
  msgstr "Gem ændringer"
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 "Vælger du denne indstilling sænkes dit sikkerhedsniveau idet at UpdraftPlus stopper med at bruge SSL til autentificering og krypteret forbindelse, hvor det er muligt. Bemærk, at nogle cloud lagerplads udbydere ikke tillader dette (f.eks Dropbox), så ved disse udbydere har denne indstilling ikke nogen effekt."
5906
 
5907
+ #: src/templates/wp-admin/settings/form-contents.php:375
5908
  msgid "Disable SSL entirely where possible"
5909
  msgstr "Deaktiver SSL helt, hvor det er muligt"
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 "Bemærk, at ikke alle cloud backup metoder nødvendigvis bruger SSL-godkendelse."
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 "Vælger du denne indstilling sænkes dit sikkerhedsniveau idet at UpdraftPlus stopper med at kontrollere identiteten af krypterede sider, som den forbinder til (f.eks Dropbox, Google Drev). Det betyder, at UpdraftPlus vil bruge SSL kun til kryptering af trafik, og ikke til godkendelse."
5918
 
5919
+ #: src/templates/wp-admin/settings/form-contents.php:370
5920
  msgid "Do not verify SSL certificates"
5921
  msgstr "Undlad at validere SSL-certifikater"
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 "Som standard bruger UpdraftPlus sin egne SSL-certifikater til at kontrollere identiteten af andre tjenester (dvs. for at sikre, at det taler til den rigtige Dropbox, Amazon S3, etc., og ikke en hacker). Vi holder disse ajour. Men hvis du får en SSL fejl, så vælger denne indstilling (der forårsager at UpdraftPlus bruger din webservers SSL i stedet for), hvilket måske kan løse problemet."
5926
 
5927
+ #: src/templates/wp-admin/settings/form-contents.php:365
5928
  msgid "Use the server's SSL certificates"
5929
  msgstr "Brug denne servers SSL-certifikater"
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 "Hvis dette mislykkes, så tjek tilladelserne på din server eller ændre den til en anden mappe, der er skrivbare for din webserver."
5934
 
5935
+ #: src/admin.php:3144
5936
  msgid "click here"
5937
  msgstr "klik her"
5938
 
5939
+ #: src/admin.php:3144
5940
  msgid "or, to reset this option"
5941
  msgstr "eller for at nulstille denne indstilling"
5942
 
5943
+ #: src/admin.php:3144
5944
  msgid "Follow this link to attempt to create the directory and set the permissions"
5945
  msgstr "Klik her for at forsøge at oprette mappen og angive rettighederne til den."
5946
 
5947
+ #: src/admin.php:3136
5948
  msgid "Backup directory specified is writable, which is good."
5949
  msgstr "Den definerede Backup mappe er skrivbar, hvilket er godt."
5950
 
5951
+ #: src/templates/wp-admin/settings/form-contents.php:346
5952
  msgid "Backup directory"
5953
  msgstr "Backup mappe"
5954
 
5955
+ #: src/templates/wp-admin/settings/form-contents.php:341
5956
  msgid "Delete local backup"
5957
  msgstr "Slet lokal backup"
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 "klik på denne for at vise nogle yderligere indstillinger; gør ikke dette, medmindre du har et problem eller er nysgerrig."
5962
 
5963
+ #: src/templates/wp-admin/settings/form-contents.php:321
5964
  msgid "Show expert settings"
5965
  msgstr "Vis Ekspert indstillinger"
5966
 
5967
+ #: src/templates/wp-admin/settings/form-contents.php:320
5968
  msgid "Expert settings"
5969
  msgstr "Ekspert indstillinger"
5970
 
5971
+ #: src/templates/wp-admin/settings/form-contents.php:331
5972
  msgid "Debug mode"
5973
  msgstr "Fejlsøgningstilstand"
5974
 
5975
+ #: src/templates/wp-admin/settings/form-contents.php:316
5976
  msgid "Advanced / Debugging Settings"
5977
  msgstr "Avancerede / Fejlsøgningsindstillinger"
5978
 
5979
+ #: src/admin.php:673
5980
  msgid "Requesting start of backup..."
5981
  msgstr "Anmoder om start af backup..."
5982
 
5983
+ #: src/addons/morefiles.php:297, src/admin.php:689
5984
  msgid "Cancel"
5985
  msgstr "Annuller"
5986
 
5987
+ #: src/addons/reporting.php:233, src/admin.php:3427
5988
  msgid "None"
5989
  msgstr "Ingen"
5990
 
5992
  msgid "Choose your remote storage"
5993
  msgstr "Vælg dit fjernlager"
5994
 
5995
+ #: src/templates/wp-admin/settings/form-contents.php:205
5996
  msgid "Manually decrypt a database backup file"
5997
  msgstr "Manuel dekryptere en database backup fil"
5998
 
5999
+ #: src/templates/wp-admin/settings/form-contents.php:184
6000
  msgid "Database encryption phrase"
6001
  msgstr "Databasekryptering sætning"
6002
 
6003
+ #: src/templates/wp-admin/settings/form-contents.php:283,
6004
  #: src/udaddons/options.php:133
6005
  msgid "Email"
6006
  msgstr "Email"
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 "Ovenstående mapper er alting, undtagen selve WordPress kernen, som du kan downloade på ny fra WordPress.org."
6011
 
6012
+ #: src/addons/morefiles.php:443, src/admin.php:3214
6013
  msgid "Exclude these:"
6014
  msgstr "Undlad disse:"
6015
 
6016
+ #: src/admin.php:3205
6017
  msgid "Any other directories found inside wp-content"
6018
  msgstr "Alle andre mapper fundet inde i wp-content"
6019
 
6020
+ #: src/templates/wp-admin/settings/form-contents.php:171
6021
  msgid "Include in files backup"
6022
  msgstr "Medtag i fil backup"
6023
 
6029
  msgid "To fix the time at which a backup should take place,"
6030
  msgstr "For at rette det tidspunkt, hvor en backup bør finde sted,"
6031
 
6032
+ #: src/admin.php:3130
6033
  msgid "Monthly"
6034
  msgstr "Månedlig"
6035
 
6036
+ #: src/admin.php:3129
6037
  msgid "Fortnightly"
6038
  msgstr "Hver fjortende dag"
6039
 
6040
+ #: src/admin.php:3128
6041
  msgid "Weekly"
6042
  msgstr "Ugentlig"
6043
 
6044
+ #: src/admin.php:3127
6045
  msgid "Daily"
6046
  msgstr "Daglig"
6047
 
6048
+ #: src/admin.php:696, src/admin.php:3110
6049
  msgid "Download log file"
6050
  msgstr "Download log fil"
6051
 
6052
+ #: src/admin.php:3007
6053
  msgid "The folder exists, but your webserver does not have permission to write to it."
6054
  msgstr "Mappen eksisterer, men din webserver har ikke tilladelse til at skrive til den."
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 "Mappen blev oprettet, men vi var nødt til at ændre dens filrettigheder til 777 (skrivbare for alle) for at kunne skrive til den. Du bør tjekke med din udbyder at dette ikke vil medføre nogen problemer"
6059
 
6060
+ #: src/admin.php:2988
6061
  msgid "The request to the filesystem to create the directory failed."
6062
  msgstr "Anmodningen til filsystemet om at oprette mappen mislykkedes."
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 "Slet"
6069
 
6070
+ #: src/admin.php:2688
6071
  msgid "(None)"
6072
  msgstr ""
6073
 
6074
+ #: src/admin.php:2844
6075
  msgid "show log"
6076
  msgstr "vis log"
6077
 
6176
  msgid "Multisite"
6177
  msgstr "Multisite"
6178
 
6179
+ #: src/admin.php:2507
6180
  msgid "Go here for help."
6181
  msgstr "Gå hertil for hjælp."
6182
 
6229
  msgid "Delete backup set"
6230
  msgstr "Slet backup sæt"
6231
 
6232
+ #: src/admin.php:672
6233
  msgid "Download error: the server sent us a response which we did not understand."
6234
  msgstr "Download fejl: serveren sendte os et svar, som vi ikke forstod."
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 "Fejl:"
6251
 
6252
+ #: src/admin.php:655,
6253
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6254
  msgid "calculating..."
6255
  msgstr "beregner..."
6294
  msgid "More tasks:"
6295
  msgstr "Flere opgaver:"
6296
 
6297
+ #: src/admin.php:2607
6298
  msgid "Download most recently modified log file"
6299
  msgstr "Hent senest ændret logfil"
6300
 
6301
+ #: src/admin.php:2566, src/admin.php:2572, src/central/bootstrap.php:169
6302
  msgid "(Nothing yet logged)"
6303
  msgstr "(Der er ikke logget noget endnu)"
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 "Sidste Log Besked"
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 "Gendan"
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 "Backup Nu"
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 "Database"
6329
 
6330
+ #: src/admin.php:297, src/admin.php:4438
6331
  msgid "Files"
6332
  msgstr "Filer"
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 "Alle tider vist i denne sektion bruger WordPress' konfigureret tidszone, som du kan indstille i Indstillinger -> Generelt"
6341
 
6342
+ #: src/admin.php:277
6343
  msgid "At the same time as the files backup"
6344
  msgstr "På samme tid som fil-backuppen "
6345
 
6346
+ #: src/admin.php:267, src/admin.php:288, src/admin.php:295
6347
  msgid "Nothing currently scheduled"
6348
  msgstr "Intet planlagt i øjeblikket"
6349
 
6355
  msgid "JavaScript warning"
6356
  msgstr "JavaScript advarsel"
6357
 
6358
+ #: src/admin.php:675, src/admin.php:2634
6359
  msgid "Delete Old Directories"
6360
  msgstr "Slet gamle mapper"
6361
 
6362
+ #: src/admin.php:2378
6363
  msgid "Current limit is:"
6364
  msgstr "Nuværende grænse er:"
6365
 
6366
+ #: src/admin.php:2352
6367
  msgid "Your backup has been restored."
6368
  msgstr "Din backup er blevet gendannet."
6369
 
6375
  msgid "Lead developer's homepage"
6376
  msgstr "Udviklerens egen hjemmeside"
6377
 
6378
+ #: src/admin.php:4351
6379
  msgid "Your settings have been wiped."
6380
  msgstr "Dine indstillinger er blevet slettet."
6381
 
6382
+ #: src/admin.php:2312
6383
  msgid "Backup directory successfully created."
6384
  msgstr "Backup mappe blev oprettet."
6385
 
6386
+ #: src/admin.php:2305
6387
  msgid "Backup directory could not be created"
6388
  msgstr "Backup mappe kunne ikke oprettes"
6389
 
6390
+ #: src/admin.php:2876
6391
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6392
  msgstr "Fjernelse af gamle mapper mislykkedes af en eller anden grund. Du kan være nødt til at gøre manuelt."
6393
 
6394
+ #: src/admin.php:2874
6395
  msgid "Old directories successfully removed."
6396
  msgstr "Gamle mapper blev fjernet."
6397
 
6398
+ #: src/admin.php:2871, src/admin.php:2871
6399
  msgid "Remove old directories"
6400
  msgstr "Fjern gamle mapper"
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 "Vend tilbage til konfiguration af UpdraftPlus"
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 "Handlinger"
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 "Forkert filnavn format - det ligner ikke en krypteret database fil oprettet af UpdraftPlus"
6417
 
6418
+ #: src/admin.php:2083
6419
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6420
  msgstr "Forkert filnavn format - det ligner ikke en fil oprettet af UpdraftPlus"
6421
 
6422
+ #: src/admin.php:1964
6423
  msgid "No local copy present."
6424
  msgstr "Ingen lokal kopi"
6425
 
6426
+ #: src/admin.php:1961
6427
  msgid "Download in progress"
6428
  msgstr "Downloading igang"
6429
 
6430
+ #: src/admin.php:667, src/admin.php:1950
6431
  msgid "File ready."
6432
  msgstr "Fil klar."
6433
 
6434
+ #: src/admin.php:1931
6435
  msgid "Download failed"
6436
  msgstr "Download mislykkede"
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 "Fejl"
6446
 
6447
+ #: src/admin.php:1738
6448
  msgid "Could not find that job - perhaps it has already finished?"
6449
  msgstr "Kunne ikke finde det job - måske er det allerede færdig?"
6450
 
6451
+ #: src/admin.php:1730
6452
  msgid "Job deleted"
6453
  msgstr "Job slettet"
6454
 
6455
+ #: src/admin.php:1814
6456
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6457
  msgstr "OK. Du bør snart se aktivitet i \"Sidste Log Besked\" feltet nedenfor."
6458
 
6459
+ #: src/admin.php:740
6460
  msgid "Nothing yet logged"
6461
  msgstr "Der er ikke logget noget endnu"
6462
 
6463
+ #: src/admin.php:961
6464
  msgid "Please consult this FAQ if you have problems backing up."
6465
  msgstr "Se venligst denne FAQ, hvis du har problemer med sikkerhedskopiering."
6466
 
6467
+ #: src/admin.php:961
6468
  msgid "Your website is hosted using the %s web server."
6469
  msgstr "Dit website er hostet ved hjælp af %s webserver."
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 "UpdraftPlus understøtter ikke officielt versioner af WordPress før %s. Det kan virke for dig, men hvis det ikke gør, så skal du være opmærksom på, at der ikke er support, før du opgraderer WordPress."
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 "Du har mindre end %s ledig plads på disken, som UpdraftPlus er konfigureret til at bruge til at oprette backups på. UpdraftPlus kunne godt løbe tør for plads. Kontakt din udbyder af din server (f.eks din webudbyder) for at løse dette problem."
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 "Advarsel"
6489
 
6490
+ #: src/admin.php:890
6491
  msgid "Add-Ons / Pro Support"
6492
  msgstr "Add-Ons / Pro Support"
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 "Indstillinger"
6500
  msgid "Could not create %s zip. Consult the log file for more information."
6501
  msgstr "Kunne ikke oprette %s zip. se logfilen for mere information."
6502
 
6503
+ #: src/backup.php:2052
6504
  msgid "Infinite recursion: consult your log for more information"
6505
  msgstr "Uendelig rekursion: se din log for mere information"
6506
 
6512
  msgid "Like UpdraftPlus and can spare one minute?"
6513
  msgstr "Kan du lide UpdraftPlus og kan undvære et minut?"
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 "Fil ikke fundet"
6519
 
6520
+ #: src/class-updraftplus.php:3987
6521
  msgid "The decryption key used:"
6522
  msgstr "Dekrypteringsnøglen som blev anvendt:"
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 "Dekryptering mislykkedes. Den mest sandsynlige årsag er, at du har brugt den forkerte nøgle."
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 "Dekryptering mislykkedes. Database-filen er krypteret, men du har ingen krypteringsnøgle indtastet."
6533
 
6534
+ #: src/backup.php:1935
6535
  msgid "Could not open the backup file for writing"
6536
  msgstr "Kunne ikke åbne backup filen for skrivning"
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 "Kunne ikke gemme backup historikken, fordi vi ikke har nogen backup array. Sikkerhedskopiering mislykkedes sandsynligvis."
6541
 
6542
+ #: src/class-updraftplus.php:3315
6543
  msgid "Could not read the directory"
6544
  msgstr "Kunne ikke læse mappen"
6545
 
6546
+ #: src/admin.php:2001, src/backup.php:1159
6547
  msgid "Backup directory (%s) is not writable, or does not exist."
6548
  msgstr "Backup mappen (%s) er ikke skrivbar, eller findes ikke."
6549
 
6550
+ #: src/backup.php:963
6551
  msgid "WordPress backup is complete"
6552
  msgstr "WordPress backup er fuldført"
6553
 
6554
+ #: src/class-updraftplus.php:2827
6555
  msgid "The backup attempt has finished, apparently unsuccessfully"
6556
  msgstr "Sikkerhedskopieringen forsøgte at blive færdig, men uden held"
6557
 
6558
+ #: src/class-updraftplus.php:2812
6559
  msgid "The backup apparently succeeded and is now complete"
6560
  msgstr "Sikkerhedskopieringen lykkedes og er nu færdig"
6561
 
6563
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6564
  msgstr "Krypteringsfejl ved kryptering af databasen. Kryptering afbrudt."
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 "Kunne ikke oprette filer i backup mappen. Backup afbrudt - kontroller dine UpdraftPlus indstillinger."
6569
 
6570
+ #: src/class-updraftplus.php:1798
6571
  msgid "Others"
6572
  msgstr "Andre"
6573
 
6574
+ #: src/addons/multisite.php:467, src/class-updraftplus.php:1783
6575
  msgid "Uploads"
6576
  msgstr "Uploads"
6577
 
6578
+ #: src/class-updraftplus.php:1782
6579
  msgid "Themes"
6580
  msgstr "Temaer"
6581
 
6582
+ #: src/class-updraftplus.php:1781
6583
  msgid "Plugins"
6584
  msgstr "Plugins"
6585
 
6586
+ #: src/class-updraftplus.php:560
6587
  msgid "No log files were found."
6588
  msgstr "Ingen logfiler blev fundet."
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 "Logfilen kunne ikke læses."
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 "UpdraftPlus meddelelse:"
6600
 
6601
+ #: src/addons/multisite.php:65, src/addons/multisite.php:689,
6602
  #: src/options.php:50
6603
  msgid "UpdraftPlus Backups"
6604
  msgstr "UpdraftPlus Backups"
languages/updraftplus-el.mo CHANGED
Binary file
languages/updraftplus-el.po CHANGED
@@ -11,23 +11,145 @@ msgstr ""
11
  "Language: el_GR\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 "Όσο η φιλοξενία σας στο διαδίκτυο επιτρέπει την πρόσβαση http (δηλαδή πρόσβαση χωρίς SSL) ή θα προωθεί τα αιτήματα σε https (κάτι που συμβαίνει σχεδόν πάντοτε), αυτό δεν αποτελεί πρόβλημα. Αν αυτό δεν το έχετε ρυθμίσει ακόμα, θα πρέπει να το ορίσετε ή να χρησιμοποιήσετε το %s έτσι ώστε οι σύνδεσμοι που δεν είναι https να αντικατασταθούν αυτόματα."
17
 
18
- #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
  msgid "the migrator add-on"
20
  msgstr "το πρόσθετο μετανάστευσης"
21
 
22
- #: src/class-updraftplus.php:4739
23
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
  msgstr "Αυτή η αποκατάσταση θα λειτουργήσει εάν εξακολουθείτε να έχετε ένα πιστοποιητικό SSL (δηλ. να μπορείτε να χρησιμοποιήσετε το https) για να αποκτήσετε πρόσβαση στον ιστότοπο. Διαφορετικά, θα πρέπει να χρησιμοποιήσετε το %s για να αναζητήσετε/αντικαταστήσετε τη διεύθυνση ιστότοπου έτσι ώστε να μπορέστε να επισκεφθείτε τον ιστότοπο χωρίς https."
25
 
26
- #: src/class-updraftplus.php:4737
27
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
28
  msgstr "Αυτό το σετ αντιγράφων ασφαλείας είναι αυτού του ιστότοπου, αλλά κατά τη στιγμή της δημιουργίας αντιγράφων ασφαλείας χρησιμοποιούσατε %s, ενώ ο ιστότοπος χρησιμοποιεί τώρα %s."
29
 
30
- #: src/class-updraftplus.php:4734
31
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
32
  msgstr "Η διεύθυνση ιστότοπου στο αντίγραφο ασφαλείας (%s) είναι ελαφρώς διαφορετική από αυτή του ιστότοπου τώρα (%s). Αυτό δεν αναμένεται να αποτελέσει κάποιο πρόβλημα για την αποκατάσταση του ιστότοπου, εφόσον οι επισκέψεις στην προηγούμενη διεύθυνση εξακολουθούν να φθάνουν στον ιστότοπο."
33
 
@@ -43,17 +165,17 @@ msgstr "Ακολουθήστε αυτόν τον σύνδεσμο για να κ
43
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr "Η λειτουργία αποσφαλμάτωσης του UpdraftPlus είναι ενεργοποιημένη: ακολουθούν λεπτομερή δεδομένα εντοπισμού σφαλμάτων."
45
 
46
- #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr "Σφάλμα: Το επιλεγμένο αρχείο είναι κατεστραμμένο. Επιλέξτε ένα έγκυρο αρχείο εξαγωγής του UpdraftPlus."
49
 
50
- #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
- #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr "Έχει συμβεί ένα καίριο σφάλμα (%s) στην PHP: %s"
54
 
55
- #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
- #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr "Έχει γίνει εξαίρεση (%s) στην PHP: %s"
59
 
@@ -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 "Όπως σας προειδοποιήσαμε προηγουμένως (δείτε:%s), η κρυπτογράφηση δεν αποτελεί πλέον χαρακτηριστικό της δωρεάν έκδοσης του UpdraftPlus"
115
 
116
- #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr "Αξία"
119
 
120
- #: src/admin.php:1540
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr "Δεν γνωρίζετε πώς να διαγράψετε από αυτήν την υπηρεσία στο σύννεφο."
123
 
@@ -129,7 +251,7 @@ msgstr "Η κρυπτογραφημένη σύνδεση απέτυχε, προ
129
  msgid "__Check this box to use Amazon's server-side encryption"
130
  msgstr "__Επιλέξτε αυτό το πλαίσιο για να χρησιμοποιήσετε την κρυπτογράφηση από την πλευρά του διακομιστή του Amazon"
131
 
132
- #: src/addons/azure.php:535
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr "Πρέπει να προσθέσετε τα ακόλουθα ως εξουσιοδοτημένο URI ανακατεύθυνσης στην κονσόλα Azure (κάτω από τις \"Ρυθμίσεις API\") όταν σας ζητηθεί"
135
 
@@ -141,11 +263,11 @@ msgstr "Αποθήκευση στο: %s"
141
  msgid "Cloud Files"
142
  msgstr "Αρχεία στο Σύννεφο"
143
 
144
- #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr "Οι ρυθμίσεις σας απέτυχαν να αποθηκευτούν. Ανανεώστε τη σελίδα ρυθμίσεων και δοκιμάστε ξανά"
147
 
148
- #: src/admin.php:4219
149
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
150
  msgstr "Το UpdraftPlus φαίνεται να έχει ενημερωθεί στην έκδοση (%s), η οποία είναι διαφορετική από την εκδοχή που εκτελείται κατά τη φόρτωση αυτής της σελίδας ρυθμίσεων. Παρακαλούμε επαναφορτώστε τη σελίδα ρυθμίσεων πριν επιχειρήσετε να αποθηκεύσετε τις ρυθμίσεις."
151
 
@@ -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 "Περιήγηση στο αρχείο zip"
196
 
197
- #: src/admin.php:721
198
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
199
  msgstr "Με το UpdraftPlus Premium, μπορείτε να κατεβάσετε άμεσα μεμονωμένα αρχεία από εδώ."
200
 
201
- #: src/admin.php:669
202
  msgid "Browse contents"
203
  msgstr "Περιήγηση περιεχομένων"
204
 
205
- #: src/restorer.php:1692
206
  msgid "Skipped tables:"
207
  msgstr "Πίνακες που έχουν παραλειφθεί:"
208
 
209
- #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr "Από αυτό το αντίγραφο ασφαλείας των βάσεων δεδομένων έχουν εξαιρέθει οι παρακάτω πίνακες της WordPress: %s"
212
 
213
- #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr "Με το UpdraftPlus Premium, μπορείτε να επιλέξετε να δημιουργήσετε αντίγραφα ασφαλείας για μη πίνακες της WordPress, να δημιουργήσετε αντίγραφα ασφαλείας μόνο για συγκεκριμένους πίνακες και να δημιουργήσετε αντίγραφα ασφαλείας και για άλλες βάσεις δεδομένων."
216
 
217
- #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr "Θα δημιουργηθούν αντίγραφα ασφαλείας για όλους τους πίνακες της WordPress."
220
 
221
- #: src/admin.php:751
222
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
223
  msgstr "Περισσότερες πληροφορίες μπορούν να βρεθούν στην κονσόλα JavaScript του προγράμματος περιήγησης και οι καταγραφές σφαλμάτων του διακομιστή PHP."
224
 
225
- #: src/admin.php:751
226
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
227
  msgstr "Ότι προσπαθείτε να ανεβάσετε ένα αρχείο zip που δημιουργήθηκε προηγουμένως από το UpdraftPlus."
228
 
229
- #: src/admin.php:751
230
  msgid "The available memory on the server."
231
  msgstr "Η διαθέσιμη μνήμη στο διακομιστή."
232
 
233
- #: src/admin.php:751
234
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
235
  msgstr "Οποιαδήποτε ρύθμιση στο αρχείο .htaccess ή web.config που επηρεάζει το μέγιστο μέγεθος μεταφόρτωσης ή αρθρου."
236
 
237
- #: src/admin.php:751
238
  msgid "The file failed to upload. Please check the following:"
239
  msgstr "Το αρχείο απέτυχε να ανέβει. Ελέγξτε τα εξής:"
240
 
241
- #: src/admin.php:750
242
  msgid "HTTP code:"
243
  msgstr "Κωδικός HTTP:"
244
 
245
- #: src/admin.php:646
246
  msgid "You have chosen to backup a database, but no tables have been selected"
247
  msgstr "Έχετε επιλέξει να δημιουργήσετε αντίγραφα ασφαλείας μιας βάσης δεδομένων, αλλά δεν έχετε επιλέξει πίνακες"
248
 
@@ -411,7 +533,7 @@ msgstr "Ελεύθερο"
411
  msgid "UpdraftPlus"
412
  msgstr "UpdraftPlus"
413
 
414
- #: src/templates/wp-admin/settings/form-contents.php:245
415
  msgid "Recommended: optimize your database with WP-Optimize."
416
  msgstr "Συνιστούμε: βελτιστοποιήστε τη βάση δεδομένων σας με το WP-Optimize."
417
 
@@ -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 "Επεξεργασία πίνακα (%s)"
712
 
713
- #: src/restorer.php:1658
714
  msgid "Backup of: %s"
715
  msgstr "Αντίγραφο ασφαλείας του: %s"
716
 
@@ -730,11 +852,11 @@ msgstr "Πρέπει να προσθέσετε τα παρακάτω ως εξο
730
  msgid "Follow this link to deauthenticate with %s."
731
  msgstr "Ακολουθήστε αυτόν τον σύνδεσμο για αποεπιβεβαίωση του %s."
732
 
733
- #: src/central/bootstrap.php:549
734
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
735
  msgstr "Το UpdraftCentral επιτρέπει τον έλεγχο των τοποθεσιών σας στη WordPress (συμπεριλαμβανομένης της διαχείρισης των αντιγράφων ασφαλείας και των ενημερώσεων) από έναν κεντρικό πίνακα ελέγχου."
736
 
737
- #: src/backup.php:1527
738
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
739
  msgstr "Αν όχι, θα πρέπει να αφαιρέσετε δεδομένα από αυτόν τον πίνακα ή να επικοινωνήσετε με την εταιρεία φιλοξενίας σας για να ζητήσετε περισσότερους πόρους."
740
 
@@ -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 "Ακολουθήστε αυτόν τον σύνδεσμο για να επιτρέψετε την πρόσβαση στον λογαριασμό σας %s (δεν θα μπορείτε να δημιουργήσετε αντίγραφα ασφαλείας για το %s χωρίς αυτό)."
756
 
757
- #: src/admin.php:749
758
  msgid "remote files deleted"
759
  msgstr "διαγραφή απομακρυσμένων αρχείων"
760
 
761
- #: src/admin.php:747
762
  msgid "Complete"
763
  msgstr "Ολοκλήρωση"
764
 
765
- #: src/admin.php:746
766
  msgid "Do you want to carry out the import?"
767
  msgstr "Θέλετε να πραγματοποιήσετε την εισαγωγή;"
768
 
769
- #: src/admin.php:745
770
  msgid "Which was exported on:"
771
  msgstr "Που εξήχθη:"
772
 
773
- #: src/admin.php:744
774
  msgid "This will import data from:"
775
  msgstr "Αυτό θα εισαγάγει δεδομένα από:"
776
 
777
- #: src/admin.php:743
778
  msgid "Importing..."
779
  msgstr "Εισαγωγή ..."
780
 
781
- #: src/admin.php:739
782
  msgid "You have not yet selected a file to import."
783
  msgstr "Δεν έχετε επιλέξει ακόμα ένα αρχείο για εισαγωγή."
784
 
785
- #: src/admin.php:723
786
  msgid "Your export file will be of your displayed settings, not your saved ones."
787
  msgstr "Το αρχείο εξαγωγής σας θα είναι από τις εμφανιζόμενες ρυθμίσεις σας, όχι από τις αποθηκευμένες σας."
788
 
789
- #: src/admin.php:82
790
  msgid "template not found"
791
  msgstr "το πρότυπο δεν βρέθηκε"
792
 
@@ -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 "Το OptimizePress 2.0 κωδικοποιεί τα περιεχόμενό της, έτσι η αναζήτηση/αντικατάσταση δεν λειτουργεί."
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 "Από την εγκατάσταση της PHP λείπει η ενότητα OpenSSL ως εκ τούτου, αυτό μπορεί να πάρει μερικά λεπτά, αν δε γίνει τίποτα μέχρι τότε, τότε θα πρέπει είτε να δοκιμάσετε ένα μικρότερο μέγεθος κλειδιού, ή να ρωτήσετε την εταιρεία που έχετε το web hosting σας πώς να ενεργοποιήσετε αυτήν την ενότητα PHP στην εγκατάστασή σας."
841
 
@@ -867,11 +989,11 @@ msgstr "Αυτή η διεύθυνση URL του WebDAV δημιουργείτ
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 φαίνεται να είναι λάθος (τα έγκυρα κλειδιά πρόσβασης %s αρχίζουν με \"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 bits"
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 "Απoτυχία ανοίγματος του καταλόγου (ελέγξτε τα δικαιώματα αρχείων και την ιδιοκτησία): %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 bytes"
937
 
938
- #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr "γρηγορότερο (δυνατότητα λειτουργίας σε εγκαταστάσεις με αργό PHP)"
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 bits"
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 "Αυτό το αρχείο αντιγράφων ασφαλείας έχει μέγεθος %s MB - η προσπάθεια να το στείλετε αυτό μέσω ηλεκτρονικού ταχυδρομείου είναι πιθανό να αποτύχει (ελάχιστοι e-mail servers επιτρέπουν συνημμένα αρχεία αυτού του μεγέθους). Αν ναι, θα πρέπει να σκεφτείτε να κάνετε χρήση μιας διαφορετικής μεθόδου απομακρυσμένης αποθήκευσης."
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 "Άλλο (παρακαλούμε διευκρινίστε - δηλαδή τη σελίδα όπου έχετε εγκαταστήσει έναν πίνακα ελέγχου του UpdraftCentral)"
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 "Το UpdraftPlus θα χωρίσει τα αντίγραφα ασφαλείας των αρχείων όταν υπερβαίνουν αυτό το μέγεθος. Η προεπιλεγμένη τιμή είναι %s megabytes. Να είστε προσεκτικοί για να αφήσετε κάποιο περιθώριο, αν ο web-server σας έχει αποκλειστικό όριο μέγεθος (π.χ. τα 2 GB / 2048 MB όριο σε κάποιους εξυπηρετητές/συστήματα αρχείων 32-bit)."
999
 
@@ -1001,7 +1111,7 @@ msgstr "Το UpdraftPlus θα χωρίσει τα αντίγραφα ασφαλ
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 "Θα πρέπει να ενεργοποιήσετε το %s για να λειτουργήσουν τα pretty permalinks (e.g. %s)"
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 "Δεν βρέθηκε σύνδεση στο Vault για αυτό τον ιστότοπο (έχει μετακινηθεί;) - παρακαλούμε αποσυνδεθείτε και επανασυνδεθείτε."
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 "Δείτε τα πρόσφατα αρχεία καταγραφής του UpdraftCentral"
1041
 
1042
- #: src/central/bootstrap.php:489
1043
  msgid "URL of mothership"
1044
  msgstr "URL της μητρικής σελίδας"
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 "Δημιουργήθηκε κλειδί αλλά η προσπάθεια καταχώρησής του στο %s ήταν ανεπιτυχής - παρακαλούμε δοκιμάστε πάλι αργότερα."
1085
 
@@ -1123,23 +1221,23 @@ msgstr "Η σύνδεση με το UpdraftCentral έγινε επιτυχώς."
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr "Σύνδεση στο UpdraftCentral "
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 "Ζητήσαμε να διαγραφεί το αρχείο, αλλά δεν μπορέσαμε να καταλάβουμε την απάντηση του server"
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 "Σφάλμα: ο server μας έστειλε μια απάντηση που δεν μπορούμε να καταλάβουμε."
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 "URL Μεταφορτώσεων:"
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 "Το απαραίτητο PHP module %s δεν είναι εγκατεστημένο - επικοινωνήστε με την εταιρεία παροχής web hosting σας για να το ενεργοποιήσετε."
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 "Η εισαγωγή ενός συνηθισμένου ιστότοπου WordPress σε μια εγκατάσταση πολλαπλών ιστοτόπων απαιτεί το %s."
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 "Επιλέξατε το %s να συμπεριληφθεί στην απ
1283
  msgid "Call WordPress action:"
1284
  msgstr "Κλήση ενέργειας του WordPress:"
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 "Αυτό το κουμπί θα διαγράψει όλες τις ρυθμίσεις του UpdraftPlus καθώς και τις πληροφορίες προόδου για την δημιουργία αντιγράφων ασφαλείας που βρίσκεται σε εξέλιξη (αλλά όχι οποιοδήποτε από τα υπάρχοντα αντίγραφα ασφαλείας σας από το σημείο αποθήκευσής σας)."
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 "Δείτε το UpdraftPlus Vault."
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 "Το αντίγραφο ασφαλείας δεν θα αποσταλεί σε κάθε απομακρυσμένη αποθήκευση - καμία δεν έχει αποθηκευτεί στο %s"
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 "Έχετε μια ημιτελή διαδικασία αποκατάστασης η οποία άρχισε πριν από %s."
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 "%s λεπτά, %s δευτερόλεπτα"
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 "Premium / Επεκτάσεις"
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 "Μπορείτε να εισαγάγετε τη διαδρομή του οποιουδήποτε %s εικονικού φακέλου που θέλετε να χρησιμοποιήσετε εδώ."
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 "Δείτε τις οδηγίες της Microsoft σχετικά με την ονομασία του φακέλου ακολουθώντας αυτό το σύνδεσμο."
1492
 
1493
- #: src/addons/azure.php:557
1494
  msgid "Enter the path of the %s you wish to use here."
1495
  msgstr "Εισάγετε τη διαδρομή του %s που θέλετε να χρησιμοποιήσετε εδώ."
1496
 
1497
- #: src/addons/azure.php:546
1498
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1499
  msgstr "Αυτή δεν είναι η σύνδεσή σας στο Azure σας - δείτε τις οδηγίες αν χρειάζεστε περισσότερες πληροφορίες."
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 "Azure"
1508
 
1509
- #: src/addons/azure.php:541
1510
  msgid "Create Azure credentials in your Azure developer console."
1511
  msgstr "Δημιουργία διαπιστευτήριων Azure στην κονσόλα προγραμματιστή του Azure σας."
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 "δεν βρέθηκαν επιλογές ή πίνακας με sitemeta"
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 "Αυτή η βάση δεδομένων θα πρέπει να αναπτυχθεί σε μια έκδοση %s της MySQL ή μεταγενέστερη."
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 "Αυτό το πρόβλημα προκαλείται από την προσπάθεια να αποκατασταθεί μια βάση δεδομένων σε μια πολύ παλιά έκδοση της MySQL η οποία είναι ασύμβατη με τη βάση δεδομένων προέλευσης."
1697
 
@@ -1699,15 +1797,15 @@ msgstr "Αυτό το πρόβλημα προκαλείται από την πρ
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr "Δεν έχετε επί του παρόντος κανένα ποσοστό χώρου στο UpdraftPlus Vault"
1701
 
1702
- #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr "Θα πρέπει να αναβαθμίσετε τη MySQL να είναι σε θέση να χρησιμοποιήσετε αυτή τη βάση δεδομένων."
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 "Η βάση δεδομένων των αντιγράφων ασφαλείας χρησιμοποιεί χαρακτηριστικά της MySQL που δεν είναι διαθέσιμα στην παλιά έκδοση της MySQL (%s) πάνω στην οποία τρέχει αυτή η σελίδα."
1709
 
1710
- #: src/admin.php:2291
1711
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1712
  msgstr "Ο κατάλογος του UpdraftPlus στο wp-content/plugins έχει κενά διαστήματα; Αυτό δεν αρέσει στη WordPress. Θα πρέπει να μετονομάσετε το φάκελο σε wp-content/plugins/updraftplus για να διορθώσετε αυτό το πρόβλημα."
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 "Αν έχετε ξεχάσει τον κωδικό σας τότε πηγαίνετε εδώ για να τον αλλάξετε στο updraftplus.com."
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 "%s έχει επιλεγεί για απομακρυσμένη αποθήκευση, αλλά δεν είστε προς το παρόν συνδεδεμένοι."
1745
 
@@ -1747,19 +1845,19 @@ msgstr "%s έχει επιλεγεί για απομακρυσμένη αποθ
1747
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1748
  msgstr "Οι πληρωμές μπορούν να γίνουν σε δολάρια, ευρώ ή λίρες στερλίνες, μέσω πιστωτικής κάρτας ή του PayPal."
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 "E-mail"
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 "Updraft Vault"
1877
 
1878
- #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
- #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr "Η διαγραφή απέτυχε:"
1882
 
1883
- #: src/backup.php:3043
1884
  msgid "The zip engine returned the message: %s."
1885
  msgstr "Η ρουτίνα zip επέστρεψε αυτό το μήνυμα: %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 "Θα πρέπει να ελέγξετε ότι η απομακρυσμένη τοποθεσία είναι online, δεν υπάρχει τείχος προστασίας, δεν έχει ενεργοποιημένες τυχόν μονάδες ασφαλείας που μπορεί να εμποδίζουν την πρόσβαση, έχει την έκδοση %s του UpdraftPlus ή μεταγενέστερη ενεργή και ότι τα στοιχεία έχουν εισαχθεί σωστά."
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 "Αυτό το σύνολο αντιγράφων ασφαλείας δε θεωρείται από το UpdraftPlus πως έχει δημιουργηθεί από την τρέχουσα εγκατάσταση WordPress, αλλά είτε βρέθηκε στην τοποθεσία της απομακρυσμένης αποθήκευσης ή στάλθηκε από μια απομακρυσμένη τοποθεσία."
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 "Το Migrator του UpdraftPlus τροποποιεί τη λειτου
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 "Το αίτημά σας δεν μπορεί να ικανοποιηθεί. Μήπως έχετε ήδη χρησιμοποιήσει αυτή την αγορά κάπου αλλού ή η περίοδος για την οποία έχετε πληρώσει για λήψη από updraftplus.com έχει λήξει;"
2123
 
2124
- #: src/restorer.php:2193
2125
  msgid "To use this backup, your database server needs to support the %s character set."
2126
  msgstr "Για να χρησιμοποιήσετε αυτό το αντίγραφο ασφαλείας, ο διακομιστής της βάσης δεδομένων πρέπει να υποστηρίζει το σύνολο χαρακτήρων %s."
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 "N.B. %s δεν είναι case-sensitive."
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr "Αν OneDrive σας δείχνει αργότερα το μήνυμα \"unauthorized_client\", τότε δεν έχετε εισάγετε ένα έγκυρο αναγνωριστικό πελάτη εδώ."
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 "Δημιουργήστε διαπιστευτήρια στο OneDrive σ
2174
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2175
  msgstr "Θα πρέπει να προσθέσετε το ακόλουθο ως εξουσιοδοτημένη ανακατεύθυνση URI στην κονσόλα του OneDrive σας (στις \"Ρυθμίσεις API») όταν ρωτηθείτε"
2176
 
2177
- #: src/addons/azure.php:533
2178
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2179
  msgstr "Το Microsoft Azure δεν είναι συμβατό με ιστοσελίδες που φιλοξενούνται σε localhost ή URL 127.0.0.1 - οι ρυθμίσεις τους απαγορεύουν την πρόσβαση σε αυτά (η τρέχουσα διεύθυνση URL είναι: %s)."
2180
 
@@ -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 "Εάν έχετε ένα διαχειριστή AWS, τότε μπορείτε να χρησιμοποιήσετε αυτόν τον οδηγό για να δημιουργήσετε γρήγορα έναν νέο AWS (ΙΑΜ) χρήστη με πρόσβαση μόνο σε αυτόν το bucket (και όχι ολόκληρο το λογαριασμό σας)"
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 "Για να δημιουργήσετε ένα νέο ΙΑΜ υπο-χρήστη και κλειδί πρόσβασης που έχει πρόσβαση μόνο σε αυτόν το bucket, χρησιμοποιήστε αυτό το πρόσθετο."
2346
 
@@ -2415,7 +2514,7 @@ msgstr "Να απορριφθεί (για %s μήνες)"
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 "Δημιουργία αντιγράφων ασφαλείας (κατά περίπτωση) πρόσθετων, θεμάτων και της βάσης δεδομένων της WordPress με το UpdraftPlus πριν από την ενημέρωση"
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 "Αυτό πρέπει να είναι ένα v2 (Keystone) πιστοποιητικό URI, το v1 (Swauth) δεν υποστηρίζεται."
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 "Ένα σφάλμα (%s) συνέβη:"
@@ -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 "οριακό αντίγραφο ασφαλείας; βασικό αντίγραφο ασφαλείας: %s"
2640
 
@@ -2646,28 +2745,28 @@ msgstr "Για την ικανότητα να κλειδώσετε την πρό
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr "Ανεβάστε τα αρχεία στο UpdraftPlus."
2648
 
2649
- #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr "Το κουμπί «Δημιουργία Αντιγράφων ασφαλείας\" είναι απενεργοποιημένο διότι ο κατάλογος αποθήκευσης των αντιγράφων ασφαλείας σας δεν είναι εγγράψιμος (πηγαίνετε στην καρτέλα «Ρυθμίσεις» όπου θα βρείτε τη σχετική επιλογή)."
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 "ο web hosting λογαριασμός σας μοιάζει να είναι πλήρης: παρακαλούμε δείτε: %s"
2669
 
2670
- #: src/backup.php:3045
2671
  msgid "A zip error occurred"
2672
  msgstr "Συνέβη ένα σφάλμα κατά τη συμπίεση zip"
2673
 
@@ -2695,11 +2794,11 @@ msgstr "Πρέπει να εισάγετε και email και κωδικό"
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 "Εάν θέλετε να επαναφέρετε ένα multisite αντίγραφο ασφαλείας, θα πρέπει πρώτα να ρυθμίσετε αντίστοιχα και την εγκατάσταση του WordPress σας ως multisite."
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 "Το αντίγραφο ασφαλείας σας είναι από μια multisite εγκατάσταση του WordPress, αλλά αυτό το site δεν είναι. Μόνο η πρώτη σελίδα του δικτύου θα είναι προσβάσιμη."
2705
 
@@ -2736,19 +2835,19 @@ msgstr "Δεν έχετε ακόμη συνδεθεί με το λογαριασ
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr "Θα πρέπει να συνδεθείτε για να λαμβάνετε τις μελλοντικές ενημερώσεις για το UpdraftPlus."
2738
 
2739
- #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr "Όλες οι αιτήσεις υποστήριξης που έχουν να κάνουν με το %s πρέπει να γίνουν προς την εταιρεία web hosting σας."
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 "Θα πρέπει να συνεχίσετε μόνο αν δεν μπορείτε να ενημερώσετε τον τρέχοντα server και είστε βέβαιοι (ή διατεθειμένοι να διακινδυνεύσετε) ότι τα πρόσθετα/θέματα/κλπ. είναι συμβατά με την παλαιότερη %s έκδοση."
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 "Αυτός είναι πολύ νεότερος από τον server στον οποίο τώρα κάνετε αποκατάσταση (έκδοση %s)."
2750
 
2751
- #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr "Η ιστοσελίδα σε αυτό το αντίγραφο ασφαλείας έτρεχε σε ένα διακομιστή με έκδοση %s of %s. "
2754
 
@@ -2777,7 +2876,7 @@ msgstr "Twitter"
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr "Το UpdraftPlus είναι στα κοινωνικά δίκτυα - δείτε μας εδώ!"
2779
 
2780
- #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
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 "Πατήστε εδώ για να κοιτάξετε μέσα στον κατάλογο του UpdraftPlus σας (στο χώρο φιλοξενίας της ιστοσελίδας σας) για νέα σετ αντιγράφων ασφαλείας που έχετε ανεβάσει."
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 "Χρησιμοποιείτε το διακομιστή %s, αλλά δεν φαίνεται να έχει φορτωθεί η μονάδα %s."
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 "Θα πρέπει να συμβουλευτείτε τον πάροχο φιλοξενίας των ιστοσελίδων σας για να μάθετε πως να ρυθμίσετε τα δικαιώματα για ένα πρόσθετο του WordPress ώστε να έχει δικαιώματα εγγραφής και να γράψει στον κατάλογο."
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 "Κάθε %s ώρες"
@@ -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 "διαβάστε περισσότερα στο %s"
2902
 
2903
- #: src/backup.php:928
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr "Οι αναφορές μέσω ηλεκτρονικού ταχυδρομείου που δημιουργήθηκε από το UpdraftPlus (δωρεάν έκδοση) σας κάνει γνωστές τα τελευταία νέα του UpdraftPlus.com"
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 "Σημείωση. Εάν εγκαταστήσετε το UpdraftPlus σε διάφορες ιστοσελίδες του WordPress, τότε δεν θα μπορείτε να χρησιμοποιήσετε ξανά το έργο σας αλλά θα πρέπει να δημιουργήσετε ένα νέο από την κονσόλα του Google API σας για κάθε ιστοσελίδα."
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 "%s (%s χρησιμοποιημένος)"
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 "Καλωσορίσατε στο UpdraftPlus!"
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 "Εξωτερική βάση δεδομένων (%s)"
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 "Δεν θέλετε να κατασκοπεύουν; Το UpdraftPlus Premium μπορεί να κρυπτογραφήσει τα αντιγράφα ασφαλείας της βάσης δεδομένων σας."
3070
 
@@ -3072,7 +3171,7 @@ msgstr "Δεν θέλετε να κατασκοπεύουν; Το UpdraftPlus Pr
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr "χρησιμοποιήστε το UpdraftPlus Premium"
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 "Μόνο η βάση δεδομένων του WordPress μπορεί να αποκατασταθεί, θα πρέπει να ασχοληθείτε με την εξωτερική βάση δεδομένων με μη αυτόματο τρόπο."
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 "Παρουσιάστηκε σφάλμα στην πρώτης %s εντολή - ματαίωση εκτέλεσης"
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 "Η σύνδεση απέτυχε: ελέγξτε τα στοιχεία πρόσβασης σας, ότι ο database server σας είναι σε λειτουργία και δεν είναι πεσμένος, και ότι η σύνδεση δικτύου δεν προστατεύεται από κάποιο τοίχος προστασίας που μπλοκάρει την πρόσβαση."
3091
 
3092
- #: src/backup.php:1390
3093
  msgid "database connection attempt failed."
3094
  msgstr "η απόπειρα σύνδεσης με τη βάση δεδομένων απέτυχε."
3095
 
@@ -3101,7 +3200,7 @@ msgstr "Προσοχή: η διεύθυνση URL της βάσης δεδομέ
3101
  msgid "In %s, path names are case sensitive."
3102
  msgstr "Στο %s, και στα ονόματα διαδρομής γίνεται διάκριση πεζών - κεφαλαίων."
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 "Αν το αφήσετε κενό, τότε το αντίγραφο ασφαλείας θα τοποθετηθεί στο ριζικό φάκελο του %s σας"
@@ -3115,7 +3214,7 @@ msgstr "π.χ. %s"
3115
  msgid "Enter the path of the %s folder you wish to use here."
3116
  msgstr "Εισάγετε τη διαδρομή του φακέλου %s που θέλετε να χρησιμοποιήσετε εδώ."
3117
 
3118
- #: src/addons/azure.php:556, src/methods/openstack2.php:164
3119
  msgid "Container"
3120
  msgstr "Φάκελος"
3121
 
@@ -3176,30 +3275,30 @@ msgstr "Dropbox"
3176
  msgid "Authenticate with %s"
3177
  msgstr "Ταυτοποίηση με το %s"
3178
 
3179
- #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr "Σφάλμα κατά τη λήψη του απομακρυσμένου αρχείου: Αποτυχία μεταφόρτωσης"
3182
 
3183
- #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:496
3184
  msgid "Region: %s"
3185
  msgstr "Περιοχή: %s"
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 "%s σφάλμα - αποκτήθηκε πρόσβαση στο φάκελο αλλά υπήρξε αποτυχία κατά τη δημιουργία ενός αρχείου μέσα σε αυτόν"
3190
 
3191
- #: src/methods/openstack-base.php:406
3192
  msgid "The %s object was not found"
3193
  msgstr "Το αντικείμενο %s δεν βρέθηκε"
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 "Αποτυχία πρόσβασης στο φάκελο %s"
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 "%s σφάλμα- αποτυχία πρόσβασης στο φάκελο"
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 "Αυτή η λειτουργία απαιτεί την έκδοση %s %s ή νεότερη "
3267
 
@@ -3269,7 +3368,7 @@ msgstr "Αυτή η λειτουργία απαιτεί την έκδοση %s %
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 "Η εγκατεστημένη έκδοση του UpdraftPlus Backup/Res
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 "κωδικός/κλειδί 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 "Αντίγραφο ασφαλείας αρχείων και βάσης δεδομένων του WordPress (δημιουργήθηκε από %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 +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 "Αυτό το αντίγραφο ασφαλείας δημιουργήθηκε από %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 "Το WordPress έχει έναν αριθμό (%d) των προγραμματισμένων εργασιών που έχουν καθυστερήσει. Αυτό σημαίνει κατά πάσα πιθανότητα ότι το χρονοδιάγραμμα στην εγκατάσταση σας του WordPress δεν λειτουργεί, εκτός κι αν αυτή είναι μια σελίδα εξέλιξης "
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 or .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 +3484,16 @@ msgstr "%s επέστρεψε μη αναμενόμενη απάντηση HTTP:
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 +3515,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 στον web server σας έχει απενεργοποιημένες αυτές τις λειτουργίες: %s."
3438
 
@@ -3448,7 +3548,7 @@ msgstr "κρυπτογραφημένo 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 +3602,15 @@ msgstr "Η επί πληρωμή πρόσβασή σας στις ενημερώ
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 "Το αρχείο της βάσης δεδομένων φαίνεται πως έχει συμπιεσθεί δύο φορές - κατά πάσα πιθανότητα η ιστοσελίδα από την οποία το μεταφορτώσατε είχε λανθασμένες ρυθμίσεις στον webserver της."
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 "Λογαριασμός πλήρης: ο λογαριασμός %s έχε
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 "Εάν επιλέξετε να μην υπάρχει απομακρυσμένη αποθήκευση, τότε τα αντίγραφα ασφαλείας θα παραμένουν στο web-server. Αυτό δεν συνιστάται (εκτός αν σκοπεύετε να τα αντιγράψετε με μη αυτόματο τρόπο στον υπολογιστή σας), διότι μια ενδεχόμενη απώλεια του web server, θα σήμαινε την απώλεια τόσο της ιστοσελίδας σας όσο και των αντιγράφων ασφαλείας ταυτόχρονα."
3557
 
@@ -3567,7 +3667,7 @@ msgstr "Η εγκατάσταση 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 "Το χρονικό διάστημα που επιτρέπεται στα πρόσθετα του WordPress για να τρέξουν είναι πολύ λίγο (%s δευτερόλεπτα) - θα πρέπει να το αυξήσετε για την αποφυγή αποτυχιών κατά τη δημιουργία του αντιγράφου ασφαλείας λόγω time-outs (συμβουλευτείτε την web hosting εταιρεία σας για περισσότερη βοήθεια - είναι η ρύθμιση max_execution_time PHP. Η συνιστώμενη τιμή είναι %s δευτερόλεπτα ή περισσότερο)"
3573
 
@@ -3580,11 +3680,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 έληξε λόγω time out. Αν έχετε εισάγει σωστά το διακομιστή, τότε αυτό συνήθως προκαλείται από ένα τείχος προστασίας που εμποδίζει τη σύνδεση - θα πρέπει να το ελέγξετε αυτό με την εταιρεία του web hosting σας."
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 +3834,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 +3844,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 "Η εγκατάσταση σας του WordPress έχει παλιούς καταλόγους από την κατάσταση πριν να γίνει αποκατάσταση/μετανάστευση (τεχνικές πληροφορίες: αυτά επισημαίνονται με το πρόθεμα -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 "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια να διαγράψει τους πίνακες. Εμείς θα προσπαθήσουμε να κάνουμε την αποκατάσταση απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να δουλέψει σωστά αν κάνετε αποκατάσταση από μια έκδοση WordPress με την ίδια δομή της βάσης δεδομένων (%s)"
3778
 
@@ -3804,11 +3904,11 @@ msgstr "Εισάγετε τις διευθύνσεις εδώ για να σας
3804
  msgid "Email reports"
3805
  msgstr "Αναφορές Email"
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 +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 "%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 +3980,7 @@ msgstr "%s logo"
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 δεν είναι εγκατεστημένη - ζητήστε από την εταιρεία web hosting σας να την ενεργοποιήσει"
3886
 
@@ -3892,85 +3992,85 @@ msgstr "Για περισσότερες επιλογές, χρησιμοποιή
3892
  msgid "Your site's admin email address (%s) will be used."
3893
  msgstr "Θα χρησιμοποιηθεί η διεύθυνση email του διαχειριστή της σελίδας (%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 "Για περισσότερες δυνατότητες αναφοράς, χρησιμοποιήστε το πρόσθετο Reporting."
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 Mb. Τα αντίγραφα ασφαλείας έχουν συνήθως μεγαλύτερο μέγεθος από οποιοδήποτε όριο και πιθανότατα το email δεν θα αποσταλεί."
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 "Όταν είναι ενεργοποιημένη η μέθοδος αποθήκευσης με Email, στείλτε επίσης το σύνολο των αντιγράφων ασφαλείας"
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 "Το αρχείο καταγραφής έχει επισυναφθεί στο email."
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 "(Αυτό ισχύει για όλα τα πρόσθετα του WordPress που δημιουργούν αντίγραφα ασφαλείας, εκτός αν έχουν δημιουργηθεί αυστηρά για συμβατότητα σε multisite)."
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 "Υποστηρίζεται το WordPress Multisite, με επιπλέον χαρακτηριστικά, από το UpdraftPlus Premium, ή το πρόσθετο Multisite."
3968
 
3969
- #: src/options.php:191
3970
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3971
  msgstr "Αυτή είναι μια εγκατάσταση multi-site του WordPress multi-site (επίσης γνωστή ως network)."
3972
 
3973
- #: src/options.php:191
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr "Προειδοποίηση UpdraftPlus:"
3976
 
@@ -4036,21 +4136,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 "URL περιεχομένου:"
4056
 
@@ -4058,15 +4158,15 @@ msgstr "URL περιεχομένου:"
4058
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4059
  msgstr "Θα πρέπει να ελέγξετε την ιδιοκτησία αρχείων και τα δικαιώματα στην εγκατάσταση της WordPress"
4060
 
4061
- #: src/templates/wp-admin/settings/form-contents.php:176
4062
  msgid "See also the \"More Files\" add-on from our shop."
4063
  msgstr "Δείτε επίσης το πρόσθετο \"More Files\" στο κατάστημά μας."
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 Mb απομένουν"
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 Mb) - θα πρέπει να το αυξήσετε για να αποφευχθούν δυσλειτουργίες εξαιτίας της ανεπαρκούς μνήμης (συμβουλευτείτε την εταιρεία που σας παρέχει τον διακομιστή σας για περισσότερη βοήθεια)"
4072
 
@@ -4202,23 +4302,23 @@ msgstr "<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 +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 "(%s%%, αρχείο %s από %s)"
4253
 
@@ -4284,97 +4384,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 "Δημιουργήθηκαν τα συμπιεσμένα αντίγραφα ασφαλείας αρχείων "
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 "Ο προγραμματιστής είναι απενεργοποιημένος στην εγκατάσταση του WordPress, μέσω της ρύθμισης DISABLE_WP_CRON. Δεν μπορεί να εκτελεστεί καμία διαδικασία εκτέλεσης δημιουργίας αντιγράφων ασφαλείας (even &quot;Backup Now&quot;) εκτός εάν είτε έχετε εγκαταστήσει μια λειτουργία για να λάβετε αντίγραφο ασφαλείας χειροκίνητα, ή μέχρι να ενεργοποιηθεί."
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 "Το 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 +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 "Η αυθεντικοποίηση του%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 Mb, ειδικά αν έχετε ανεβάσει πολύ μεγάλα αρχεία (αν και από την άλλη, αρκετές ιστοσελίδες μπορούν να δουλέψουν επιτυχώς και με όριο τα 32Mb. Η εμπειρία σας μπορεί να διαφέρει)."
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 "Το UpdraftPlus δεν μπόρεσε να βρει το πρόθεμα πίνακα κατά τη σάρωση του αρχείου ασφαλείας της βάσης δεδομένων."
4489
 
4490
- #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr "Από αυτό το αρχείο ασφαλείας της βάσης δεδομένων λείπουν πίνακες του πυρήνα του Wordpress: %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 "Κάνετε εισαγωγή από μια νεότερη έκδοση του WordPress (%s) σε μια παλαιότερη (%s). Δεν υπάρχουν εγγυήσεις ότι το WordPress μπορεί να το διαχειριστεί αυτό."
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 "Η βάση δεδομένων είναι πολύ μικρή για να είναι έγκυρη βάση δεδομένων WordPress (μέγεθος: %s Kb)."
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 "Αν μπορείτε ακόμα να διαβάζετε αυτές τις λέξεις αφότου η σελίδα τελειώσει την φόρτωση της, τότε υπάρχει κάποιο πρόβλημα με τη JavaScript ή το 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_(ώρα)_(όνομα ιστοσελίδας)_(κωδικός)_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 "(σιγουρευτείτε ότι προσπαθείτε να ανεβάσετε ένα αρχείο zip το όποιο έχει κατασκευαστεί με το 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 αρχείο(α) στο σετ)."
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 "Σφάλμα: ο διακομιστής μας έστειλε μια απάντηση (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 +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 "Το αρχείο αντιγράφου ασφαλείας για αυτό το αρχείο δεν μπορεί να βρεθεί. Η απομακρυσμένη τοποθεσία αποθήκευσης που χρησιμοποιείτε (%s) δεν μας επιτρέπει να ανακτήσουμε τα αρχεία. Για να εκτελέσετε οποιαδήποτε επαναφορά με τη χρήση του UpdraftPlus, θα πρέπει να αποκτήσετε ένα αντίγραφο αυτού του αρχείου και να το τοποθετήστε το μέσα στον ενεργό φάκελο του UpdraftPlus"
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 "Αποτυχία ανοίγματος του αρχείου zip (%s) - %s"
4630
 
@@ -4632,43 +4732,43 @@ msgstr "Αποτυχία ανοίγματος του αρχείου zip (%s) - %
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr "Η ριζική διαδρομή του Wordpress στον εξυπηρετητή είναι: %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 +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 "Η εγκατάσταση σας του WordPress έχει ένα πρόβλημα με την έξοδο κενού περιεχομένου. Αυτό μπορεί να καταστρέψει τα αντίγραφα ασφαλείας που θα κατεβάσετε από εδώ."
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 "Η ζητηθείσα μηχανή του πίνακα (%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 "Αυτό μοιάζει με μια μετανάστευση σελίδας (η δημιουργία αντιγράφων ασφαλείας έγινε από μια ιστοσελίδα με μια διαφορετική διεύθυνση/URL), αλλά δεν επιλέξατε τη δυνατότητα να αναζητήσετε και να αντικαταστήσετε τη βάση δεδομένων. Αυτό είναι συνήθως ένα λάθος."
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 +4868,9 @@ msgstr "Λάθος - αποτυχία κατεβάσματος του αρχεί
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 +4880,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 +4920,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 Mb)"
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 Mb "
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 "Ορισμένοι διακομιστές διαφημίζουν ως διαθέσιμη το κρυπτογραφημένο FTP αλλά συμβαίνει στη συνέχεια time-out (μετά από αρκετή ώρα) όταν επιχειρείτε να το χρησιμοποιήσετε. Αν συμβαίνει αυτό σε σας πηγαίνετε στο \"Επιλογές για Προχωρημένους\" (παρακάτω) και απενεργοποιήσετε το 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 +4996,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 "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια για τη δημιουργία πινάκων. Θα γίνει προσπάθεια επαναφοράς απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να λειτουργήσει για την περίπτωση που α) κάνετε επαναφορά από μια έκδοση του WordPress με την ίδια τη δομή της βάσης δεδομένων και β) η εισαγόμενη βάση δεδομένων σας δεν περιέχει πίνακες που δεν είναι ήδη υπάρχοντες στην ιστοσελίδα εισαγωγής."
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 "Γίνεται εκτέλεση της διαδικασίας σε μια εγκατάσταση πολλαπλών ιστοσελίδων του Wordpress αλλά το αντίγραφο ασφαλείας σας δεν είναι από μια τέτοια εγκατάσταση. "
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 "Παράκαμψη στην επαναφορά του πυρήνα του WordPress κατά την εισαγωγή μιας ιστοσελίδας σε μια εγκατάσταση πολλαπλών ιστοσελίδων. Αν είχατε κάποια αναγκαία αρχεία στο φάκελο του WordPress, τότε θα πρέπει να τα προσθέσετε χειροκίνητα ξανά από το αρχείο zip."
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 +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 "Τελευταία νέα του UpdraftPlus.com:"
4978
 
@@ -4989,7 +5090,7 @@ msgstr "Premium"
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 "Δεσμός RSS"
5011
  msgid "Blog link"
5012
  msgstr "Δεσμός ιστολογίου"
5013
 
5014
- #: src/admin.php:736
5015
  msgid "Testing %s Settings..."
5016
  msgstr "Δοκιμή %s Ρυθμίσεων..."
5017
 
@@ -5019,23 +5120,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 +5156,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 +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 "Όλες οι αναφορές για τη θέση της ιστοσελίδας στη βάση δεδομένων θα αντικατασταθούν με το τρέχον URL της ιστοσελίδας σας, το οποίο είναι: %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 +5322,13 @@ msgstr "Αντικατάσταση του wp-config.php"
5221
  msgid "WordPress Core"
5222
  msgstr "Πυρήνας WordPress "
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 "Δε φαίνεται να είστε πιστοποιημένος στο 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 +5522,7 @@ msgstr "Σημείωση:"
5421
  msgid "WordPress Backup"
5422
  msgstr "Αντίγραφο ασφαλείας του Wordpress"
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 "Κλειδί API"
5446
 
@@ -5448,18 +5549,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/add
11
  "Language: el_GR\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 "Όσο η φιλοξενία σας στο διαδίκτυο επιτρέπει την πρόσβαση http (δηλαδή πρόσβαση χωρίς SSL) ή θα προωθεί τα αιτήματα σε https (κάτι που συμβαίνει σχεδόν πάντοτε), αυτό δεν αποτελεί πρόβλημα. Αν αυτό δεν το έχετε ρυθμίσει ακόμα, θα πρέπει να το ορίσετε ή να χρησιμοποιήσετε το %s έτσι ώστε οι σύνδεσμοι που δεν είναι https να αντικατασταθούν αυτόματα."
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 "Αυτή η αποκατάσταση θα λειτουργήσει εάν εξακολουθείτε να έχετε ένα πιστοποιητικό SSL (δηλ. να μπορείτε να χρησιμοποιήσετε το https) για να αποκτήσετε πρόσβαση στον ιστότοπο. Διαφορετικά, θα πρέπει να χρησιμοποιήσετε το %s για να αναζητήσετε/αντικαταστήσετε τη διεύθυνση ιστότοπου έτσι ώστε να μπορέστε να επισκεφθείτε τον ιστότοπο χωρίς https."
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 "Αυτό το σετ αντιγράφων ασφαλείας είναι αυτού του ιστότοπου, αλλά κατά τη στιγμή της δημιουργίας αντιγράφων ασφαλείας χρησιμοποιούσατε %s, ενώ ο ιστότοπος χρησιμοποιεί τώρα %s."
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 "Η διεύθυνση ιστότοπου στο αντίγραφο ασφαλείας (%s) είναι ελαφρώς διαφορετική από αυτή του ιστότοπου τώρα (%s). Αυτό δεν αναμένεται να αποτελέσει κάποιο πρόβλημα για την αποκατάσταση του ιστότοπου, εφόσον οι επισκέψεις στην προηγούμενη διεύθυνση εξακολουθούν να φθάνουν στον ιστότοπο."
155
 
165
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
166
  msgstr "Η λειτουργία αποσφαλμάτωσης του UpdraftPlus είναι ενεργοποιημένη: ακολουθούν λεπτομερή δεδομένα εντοπισμού σφαλμάτων."
167
 
168
+ #: src/admin.php:742
169
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
170
  msgstr "Σφάλμα: Το επιλεγμένο αρχείο είναι κατεστραμμένο. Επιλέξτε ένα έγκυρο αρχείο εξαγωγής του UpdraftPlus."
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 "Έχει συμβεί ένα καίριο σφάλμα (%s) στην PHP: %s"
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 "Έχει γίνει εξαίρεση (%s) στην PHP: %s"
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 "Όπως σας προειδοποιήσαμε προηγουμένως (δείτε:%s), η κρυπτογράφηση δεν αποτελεί πλέον χαρακτηριστικό της δωρεάν έκδοσης του UpdraftPlus"
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 "__Επιλέξτε αυτό το πλαίσιο για να χρησιμοποιήσετε την κρυπτογράφηση από την πλευρά του διακομιστή του Amazon"
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 "Πρέπει να προσθέσετε τα ακόλουθα ως εξουσιοδοτημένο URI ανακατεύθυνσης στην κονσόλα Azure (κάτω από τις \"Ρυθμίσεις API\") όταν σας ζητηθεί"
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 "Το UpdraftPlus φαίνεται να έχει ενημερωθεί στην έκδοση (%s), η οποία είναι διαφορετική από την εκδοχή που εκτελείται κατά τη φόρτωση αυτής της σελίδας ρυθμίσεων. Παρακαλούμε επαναφορτώστε τη σελίδα ρυθμίσεων πριν επιχειρήσετε να αποθηκεύσετε τις ρυθμίσεις."
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 "Περιήγηση στο αρχείο zip"
318
 
319
+ #: src/admin.php:723
320
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
321
  msgstr "Με το UpdraftPlus Premium, μπορείτε να κατεβάσετε άμεσα μεμονωμένα αρχεία από εδώ."
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 "Από αυτό το αντίγραφο ασφαλείας των βάσεων δεδομένων έχουν εξαιρέθει οι παρακάτω πίνακες της WordPress: %s"
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 "Με το UpdraftPlus Premium, μπορείτε να επιλέξετε να δημιουργήσετε αντίγραφα ασφαλείας για μη πίνακες της WordPress, να δημιουργήσετε αντίγραφα ασφαλείας μόνο για συγκεκριμένους πίνακες και να δημιουργήσετε αντίγραφα ασφαλείας και για άλλες βάσεις δεδομένων."
338
 
339
+ #: src/admin.php:2524
340
  msgid "All WordPress tables will be backed up."
341
  msgstr "Θα δημιουργηθούν αντίγραφα ασφαλείας για όλους τους πίνακες της WordPress."
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 "Περισσότερες πληροφορίες μπορούν να βρεθούν στην κονσόλα JavaScript του προγράμματος περιήγησης και οι καταγραφές σφαλμάτων του διακομιστή PHP."
346
 
347
+ #: src/admin.php:753
348
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
349
  msgstr "Ότι προσπαθείτε να ανεβάσετε ένα αρχείο zip που δημιουργήθηκε προηγουμένως από το UpdraftPlus."
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 "Οποιαδήποτε ρύθμιση στο αρχείο .htaccess ή web.config που επηρεάζει το μέγιστο μέγεθος μεταφόρτωσης ή αρθρου."
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 "Κωδικός HTTP:"
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 "UpdraftPlus"
535
 
536
+ #: src/templates/wp-admin/settings/form-contents.php:243
537
  msgid "Recommended: optimize your database with WP-Optimize."
538
  msgstr "Συνιστούμε: βελτιστοποιήστε τη βάση δεδομένων σας με το WP-Optimize."
539
 
828
  msgid "Export / import settings"
829
  msgstr "Ρυθμίσεις εξαγωγής / εισαγωγής"
830
 
831
+ #: src/restorer.php:1881
832
  msgid "Processing table (%s)"
833
  msgstr "Επεξεργασία πίνακα (%s)"
834
 
835
+ #: src/restorer.php:1659
836
  msgid "Backup of: %s"
837
  msgstr "Αντίγραφο ασφαλείας του: %s"
838
 
852
  msgid "Follow this link to deauthenticate with %s."
853
  msgstr "Ακολουθήστε αυτόν τον σύνδεσμο για αποεπιβεβαίωση του %s."
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 "Το UpdraftCentral επιτρέπει τον έλεγχο των τοποθεσιών σας στη WordPress (συμπεριλαμβανομένης της διαχείρισης των αντιγράφων ασφαλείας και των ενημερώσεων) από έναν κεντρικό πίνακα ελέγχου."
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 "Ακολουθήστε αυτόν τον σύνδεσμο για να επιτρέψετε την πρόσβαση στον λογαριασμό σας %s (δεν θα μπορείτε να δημιουργήσετε αντίγραφα ασφαλείας για το %s χωρίς αυτό)."
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 "Το OptimizePress 2.0 κωδικοποιεί τα περιεχόμενό της, έτσι η αναζήτηση/αντικατάσταση δεν λειτουργεί."
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 "Από την εγκατάσταση της PHP λείπει η ενότητα OpenSSL ως εκ τούτου, αυτό μπορεί να πάρει μερικά λεπτά, αν δε γίνει τίποτα μέχρι τότε, τότε θα πρέπει είτε να δοκιμάσετε ένα μικρότερο μέγεθος κλειδιού, ή να ρωτήσετε την εταιρεία που έχετε το web hosting σας πώς να ενεργοποιήσετε αυτήν την ενότητα PHP στην εγκατάστασή σας."
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 "Ελήφθη ως απάντηση πως δεν υπάρχουν δεδομένα. Αυτό φανερώνει συνήθως ένα πρόβλημα σύνδεσης δικτύου (π.χ. ένα εξωτερικό τείχος προστασίας ή ένα υπερφορτωμένο δίκτυο) μεταξύ αυτής της ιστοσελίδας και του UpdraftPlus.com."
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 "Το κλειδί πρόσβασης AWS φαίνεται να είναι λάθος (τα έγκυρα κλειδιά πρόσβασης %s αρχίζουν με \"AK\")"
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 "Μέγεθος κλειδιού: %d bits"
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 "Απoτυχία ανοίγματος του καταλόγου (ελέγξτε τα δικαιώματα αρχείων και την ιδιοκτησία): %s"
1035
 
1036
+ #: src/backup.php:2085
1037
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1038
  msgstr "%s: μη αναγνώσιμο αρχείο - δεν μπορεί να συμπεριληφθεί στο αντίγραφο ασφαλείας (ελέγξτε τα δικαιώματα αρχείων και την ιδιοκτησία)"
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 "%s bytes"
1055
 
1056
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:513
1057
  msgid "faster (possibility for slow PHP installs)"
1058
  msgstr "γρηγορότερο (δυνατότητα λειτουργίας σε εγκαταστάσεις με αργό PHP)"
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 "%s bits"
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 "Αυτό το αρχείο αντιγράφων ασφαλείας έχει μέγεθος %s MB - η προσπάθεια να το στείλετε αυτό μέσω ηλεκτρονικού ταχυδρομείου είναι πιθανό να αποτύχει (ελάχιστοι e-mail servers επιτρέπουν συνημμένα αρχεία αυτού του μεγέθους). Αν ναι, θα πρέπει να σκεφτείτε να κάνετε χρήση μιας διαφορετικής μεθόδου απομακρυσμένης αποθήκευσης."
1101
 
1102
+ #: src/class-updraftplus.php:1736
1103
  msgid "Size: %s MB"
1104
  msgstr "Μέγεθος: %s MB"
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 "Το UpdraftPlus θα χωρίσει τα αντίγραφα ασφαλείας των αρχείων όταν υπερβαίνουν αυτό το μέγεθος. Η προεπιλεγμένη τιμή είναι %s megabytes. Να είστε προσεκτικοί για να αφήσετε κάποιο περιθώριο, αν ο web-server σας έχει αποκλειστικό όριο μέγεθος (π.χ. τα 2 GB / 2048 MB όριο σε κάποιους εξυπηρετητές/συστήματα αρχείων 32-bit)."
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 "Θα πρέπει να ενεργοποιήσετε το %s για να λειτουργήσουν τα pretty permalinks (e.g. %s)"
1117
 
1133
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1134
  msgstr "Δεν βρέθηκε σύνδεση στο Vault για αυτό τον ιστότοπο (έχει μετακινηθεί;) - παρακαλούμε αποσυνδεθείτε και επανασυνδεθείτε."
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 "UpdraftCentral (Απομακρυσμένη Διαχείριση)"
1143
 
1144
+ #: src/central/bootstrap.php:554
 
 
 
 
1145
  msgid "View recent UpdraftCentral log events"
1146
  msgstr "Δείτε τα πρόσφατα αρχεία καταγραφής του UpdraftCentral"
1147
 
1148
+ #: src/central/bootstrap.php:493
1149
  msgid "URL of mothership"
1150
  msgstr "URL της μητρικής σελίδας"
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 "Δημιουργήθηκε κλειδί αλλά η προσπάθεια καταχώρησής του στο %s ήταν ανεπιτυχής - παρακαλούμε δοκιμάστε πάλι αργότερα."
1183
 
1221
  msgid "UpdraftCentral Connection"
1222
  msgstr "Σύνδεση στο UpdraftCentral "
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 "Ζητήσαμε να διαγραφεί το αρχείο, αλλά δεν μπορέσαμε να καταλάβουμε την απάντηση του server"
1273
 
1274
+ #: src/admin.php:716
1275
  msgid "Please enter a valid URL"
1276
  msgstr "Παρακαλώ εισάγετε μια έγκυρη διεύθυνση URL"
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 "Σφάλμα: ο server μας έστειλε μια απάντηση που δεν μπορούμε να καταλάβουμε."
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 "URL Μεταφορτώσεων:"
1297
 
1303
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1304
  msgstr "Το απαραίτητο PHP module %s δεν είναι εγκατεστημένο - επικοινωνήστε με την εταιρεία παροχής web hosting σας για να το ενεργοποιήσετε."
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 "Η εισαγωγή ενός συνηθισμένου ιστότοπου WordPress σε μια εγκατάσταση πολλαπλών ιστοτόπων απαιτεί το %s."
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 "Κλήση ενέργειας του WordPress:"
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 "Αυτό το κουμπί θα διαγράψει όλες τις ρυθμίσεις του UpdraftPlus καθώς και τις πληροφορίες προόδου για την δημιουργία αντιγράφων ασφαλείας που βρίσκεται σε εξέλιξη (αλλά όχι οποιοδήποτε από τα υπάρχοντα αντίγραφα ασφαλείας σας από το σημείο αποθήκευσής σας)."
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 "Δείτε το UpdraftPlus Vault."
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 "Το αντίγραφο ασφαλείας δεν θα αποσταλεί σε κάθε απομακρυσμένη αποθήκευση - καμία δεν έχει αποθηκευτεί στο %s"
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 "Έχετε μια ημιτελή διαδικασία αποκατάστασης η οποία άρχισε πριν από %s."
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 "%s λεπτά, %s δευτερόλεπτα"
1463
 
1464
+ #: src/admin.php:2435
1465
  msgid "Backup Contents And Schedule"
1466
  msgstr "Δημιουργία αντιγράφων ασφαλείας του Περιεχόμενου και Χρονοδιάγραμμα"
1467
 
1469
  msgid "Premium / Extensions"
1470
  msgstr "Premium / Επεκτάσεις"
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 "Μπορείτε να εισαγάγετε τη διαδρομή του οποιουδήποτε %s εικονικού φακέλου που θέλετε να χρησιμοποιήσετε εδώ."
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 "Δείτε τις οδηγίες της Microsoft σχετικά με την ονομασία του φακέλου ακολουθώντας αυτό το σύνδεσμο."
1590
 
1591
+ #: src/addons/azure.php:571
1592
  msgid "Enter the path of the %s you wish to use here."
1593
  msgstr "Εισάγετε τη διαδρομή του %s που θέλετε να χρησιμοποιήσετε εδώ."
1594
 
1595
+ #: src/addons/azure.php:560
1596
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1597
  msgstr "Αυτή δεν είναι η σύνδεσή σας στο Azure σας - δείτε τις οδηγίες αν χρειάζεστε περισσότερες πληροφορίες."
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 "Azure"
1606
 
1607
+ #: src/addons/azure.php:555
1608
  msgid "Create Azure credentials in your Azure developer console."
1609
  msgstr "Δημιουργία διαπιστευτήριων Azure στην κονσόλα προγραμματιστή του Azure σας."
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 "δεν βρέθηκαν επιλογές ή πίνακας με sitemeta"
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 "Αυτή η βάση δεδομένων θα πρέπει να αναπτυχθεί σε μια έκδοση %s της MySQL ή μεταγενέστερη."
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 "Αυτό το πρόβλημα προκαλείται από την προσπάθεια να αποκατασταθεί μια βάση δεδομένων σε μια πολύ παλιά έκδοση της MySQL η οποία είναι ασύμβατη με τη βάση δεδομένων προέλευσης."
1795
 
1797
  msgid "You do not currently have any UpdraftPlus Vault quota"
1798
  msgstr "Δεν έχετε επί του παρόντος κανένα ποσοστό χώρου στο UpdraftPlus Vault"
1799
 
1800
+ #: src/class-updraftplus.php:4478
1801
  msgid "You must upgrade MySQL to be able to use this database."
1802
  msgstr "Θα πρέπει να αναβαθμίσετε τη MySQL να είναι σε θέση να χρησιμοποιήσετε αυτή τη βάση δεδομένων."
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 "Η βάση δεδομένων των αντιγράφων ασφαλείας χρησιμοποιεί χαρακτηριστικά της MySQL που δεν είναι διαθέσιμα στην παλιά έκδοση της MySQL (%s) πάνω στην οποία τρέχει αυτή η σελίδα."
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 "Ο κατάλογος του UpdraftPlus στο wp-content/plugins έχει κενά διαστήματα; Αυτό δεν αρέσει στη WordPress. Θα πρέπει να μετονομάσετε το φάκελο σε wp-content/plugins/updraftplus για να διορθώσετε αυτό το πρόβλημα."
1811
 
1833
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1834
  msgstr "Αν έχετε ξεχάσει τον κωδικό σας τότε πηγαίνετε εδώ για να τον αλλάξετε στο updraftplus.com."
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 "%s έχει επιλεγεί για απομακρυσμένη αποθήκευση, αλλά δεν είστε προς το παρόν συνδεδεμένοι."
1843
 
1845
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1846
  msgstr "Οι πληρωμές μπορούν να γίνουν σε δολάρια, ευρώ ή λίρες στερλίνες, μέσω πιστωτικής κάρτας ή του PayPal."
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 "%s Σφάλμα: Δεν έχετε επαρκή χώρο διαθέσιμο (%s) για να ανεβάσετε αυτό το αρχείο (%s)."
1885
 
1886
+ #: src/admin.php:702, src/methods/updraftvault.php:388
1887
  msgid "Disconnect"
1888
  msgstr "Αποσύνδεση"
1889
 
1915
  msgid "E-mail"
1916
  msgstr "E-mail"
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 "%s ανά τέταρτο"
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 "Updraft Vault"
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 "Η ρουτίνα zip επέστρεψε αυτό το μήνυμα: %s."
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 "Θα πρέπει να ελέγξετε ότι η απομακρυσμένη τοποθεσία είναι online, δεν υπάρχει τείχος προστασίας, δεν έχει ενεργοποιημένες τυχόν μονάδες ασφαλείας που μπορεί να εμποδίζουν την πρόσβαση, έχει την έκδοση %s του UpdraftPlus ή μεταγενέστερη ενεργή και ότι τα στοιχεία έχουν εισαχθεί σωστά."
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 "Αυτό το σύνολο αντιγράφων ασφαλείας δε θεωρείται από το UpdraftPlus πως έχει δημιουργηθεί από την τρέχουσα εγκατάσταση WordPress, αλλά είτε βρέθηκε στην τοποθεσία της απομακρυσμένης αποθήκευσης ή στάλθηκε από μια απομακρυσμένη τοποθεσία."
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 "Το αίτημά σας δεν μπορεί να ικανοποιηθεί. Μήπως έχετε ήδη χρησιμοποιήσει αυτή την αγορά κάπου αλλού ή η περίοδος για την οποία έχετε πληρώσει για λήψη από updraftplus.com έχει λήξει;"
2222
 
2223
+ #: src/restorer.php:2206
2224
  msgid "To use this backup, your database server needs to support the %s character set."
2225
  msgstr "Για να χρησιμοποιήσετε αυτό το αντίγραφο ασφαλείας, ο διακομιστής της βάσης δεδομένων πρέπει να υποστηρίζει το σύνολο χαρακτήρων %s."
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 "Αν OneDrive σας δείχνει αργότερα το μήνυμα \"unauthorized_client\", τότε δεν έχετε εισάγετε ένα έγκυρο αναγνωριστικό πελάτη εδώ."
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 "Θα πρέπει να προσθέσετε το ακόλουθο ως εξουσιοδοτημένη ανακατεύθυνση URI στην κονσόλα του OneDrive σας (στις \"Ρυθμίσεις API») όταν ρωτηθείτε"
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 "Το Microsoft Azure δεν είναι συμβατό με ιστοσελίδες που φιλοξενούνται σε localhost ή URL 127.0.0.1 - οι ρυθμίσεις τους απαγορεύουν την πρόσβαση σε αυτά (η τρέχουσα διεύθυνση URL είναι: %s)."
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 "Εάν έχετε ένα διαχειριστή AWS, τότε μπορείτε να χρησιμοποιήσετε αυτόν τον οδηγό για να δημιουργήσετε γρήγορα έναν νέο AWS (ΙΑΜ) χρήστη με πρόσβαση μόνο σε αυτόν το bucket (και όχι ολόκληρο το λογαριασμό σας)"
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 "Για να δημιουργήσετε ένα νέο ΙΑΜ υπο-χρήστη και κλειδί πρόσβασης που έχει πρόσβαση μόνο σε αυτόν το bucket, χρησιμοποιήστε αυτό το πρόσθετο."
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 "Δημιουργία αντιγράφων ασφαλείας (κατά περίπτωση) πρόσθετων, θεμάτων και της βάσης δεδομένων της WordPress με το UpdraftPlus πριν από την ενημέρωση"
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 "%s Σφάλμα: Αποτυχία στην εκκίνηση"
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 "Αυτό πρέπει να είναι ένα v2 (Keystone) πιστοποιητικό URI, το v1 (Swauth) δεν υποστηρίζεται."
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 "Ένα σφάλμα (%s) συνέβη:"
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 "οριακό αντίγραφο ασφαλείας; βασικό αντίγραφο ασφαλείας: %s"
2739
 
2745
  msgid "Upload files into UpdraftPlus."
2746
  msgstr "Ανεβάστε τα αρχεία στο UpdraftPlus."
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 "ο web hosting λογαριασμός σας μοιάζει να είναι πλήρης: παρακαλούμε δείτε: %s"
2768
 
2769
+ #: src/backup.php:3047
2770
  msgid "A zip error occurred"
2771
  msgstr "Συνέβη ένα σφάλμα κατά τη συμπίεση zip"
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 "Εάν θέλετε να επαναφέρετε ένα multisite αντίγραφο ασφαλείας, θα πρέπει πρώτα να ρυθμίσετε αντίστοιχα και την εγκατάσταση του WordPress σας ως multisite."
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 "Το αντίγραφο ασφαλείας σας είναι από μια multisite εγκατάσταση του WordPress, αλλά αυτό το site δεν είναι. Μόνο η πρώτη σελίδα του δικτύου θα είναι προσβάσιμη."
2804
 
2835
  msgid "You need to connect to receive future updates to UpdraftPlus."
2836
  msgstr "Θα πρέπει να συνδεθείτε για να λαμβάνετε τις μελλοντικές ενημερώσεις για το UpdraftPlus."
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 "Όλες οι αιτήσεις υποστήριξης που έχουν να κάνουν με το %s πρέπει να γίνουν προς την εταιρεία web hosting σας."
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 "Θα πρέπει να συνεχίσετε μόνο αν δεν μπορείτε να ενημερώσετε τον τρέχοντα server και είστε βέβαιοι (ή διατεθειμένοι να διακινδυνεύσετε) ότι τα πρόσθετα/θέματα/κλπ. είναι συμβατά με την παλαιότερη %s έκδοση."
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 "Αυτός είναι πολύ νεότερος από τον server στον οποίο τώρα κάνετε αποκατάσταση (έκδοση %s)."
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 "Η ιστοσελίδα σε αυτό το αντίγραφο ασφαλείας έτρεχε σε ένα διακομιστή με έκδοση %s of %s. "
2853
 
2876
  msgid "UpdraftPlus is on social media - check us out!"
2877
  msgstr "Το UpdraftPlus είναι στα κοινωνικά δίκτυα - δείτε μας εδώ!"
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 "Πατήστε εδώ για να κοιτάξετε μέσα στον κατάλογο του UpdraftPlus σας (στο χώρο φιλοξενίας της ιστοσελίδας σας) για νέα σετ αντιγράφων ασφαλείας που έχετε ανεβάσει."
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 "Χρησιμοποιείτε το διακομιστή %s, αλλά δεν φαίνεται να έχει φορτωθεί η μονάδα %s."
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 "Θα πρέπει να συμβουλευτείτε τον πάροχο φιλοξενίας των ιστοσελίδων σας για να μάθετε πως να ρυθμίσετε τα δικαιώματα για ένα πρόσθετο του WordPress ώστε να έχει δικαιώματα εγγραφής και να γράψει στον κατάλογο."
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 "Κάθε %s ώρες"
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 "διαβάστε περισσότερα στο %s"
3001
 
3002
+ #: src/backup.php:930
3003
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3004
  msgstr "Οι αναφορές μέσω ηλεκτρονικού ταχυδρομείου που δημιουργήθηκε από το UpdraftPlus (δωρεάν έκδοση) σας κάνει γνωστές τα τελευταία νέα του UpdraftPlus.com"
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 "Σημείωση. Εάν εγκαταστήσετε το UpdraftPlus σε διάφορες ιστοσελίδες του WordPress, τότε δεν θα μπορείτε να χρησιμοποιήσετε ξανά το έργο σας αλλά θα πρέπει να δημιουργήσετε ένα νέο από την κονσόλα του Google API σας για κάθε ιστοσελίδα."
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 "Καλωσορίσατε στο UpdraftPlus!"
3056
 
3122
  msgid "user"
3123
  msgstr "χρήστης"
3124
 
3125
+ #: src/class-updraftplus.php:1733
3126
  msgid "External database (%s)"
3127
  msgstr "Εξωτερική βάση δεδομένων (%s)"
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 "Δεν θέλετε να κατασκοπεύουν; Το UpdraftPlus Premium μπορεί να κρυπτογραφήσει τα αντιγράφα ασφαλείας της βάσης δεδομένων σας."
3169
 
3171
  msgid "use UpdraftPlus Premium"
3172
  msgstr "χρησιμοποιήστε το UpdraftPlus Premium"
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 "Μόνο η βάση δεδομένων του WordPress μπορεί να αποκατασταθεί, θα πρέπει να ασχοληθείτε με την εξωτερική βάση δεδομένων με μη αυτόματο τρόπο."
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 "Παρουσιάστηκε σφάλμα στην πρώτης %s εντολή - ματαίωση εκτέλεσης"
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 "Η σύνδεση απέτυχε: ελέγξτε τα στοιχεία πρόσβασης σας, ότι ο database server σας είναι σε λειτουργία και δεν είναι πεσμένος, και ότι η σύνδεση δικτύου δεν προστατεύεται από κάποιο τοίχος προστασίας που μπλοκάρει την πρόσβαση."
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 "Στο %s, και στα ονόματα διαδρομής γίνεται διάκριση πεζών - κεφαλαίων."
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 "Αν το αφήσετε κενό, τότε το αντίγραφο ασφαλείας θα τοποθετηθεί στο ριζικό φάκελο του %s σας"
3214
  msgid "Enter the path of the %s folder you wish to use here."
3215
  msgstr "Εισάγετε τη διαδρομή του φακέλου %s που θέλετε να χρησιμοποιήσετε εδώ."
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 "Ταυτοποίηση με το %s"
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 "Περιοχή: %s"
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 "%s σφάλμα - αποκτήθηκε πρόσβαση στο φάκελο αλλά υπήρξε αποτυχία κατά τη δημιουργία ενός αρχείου μέσα σε αυτόν"
3289
 
3290
+ #: src/methods/openstack-base.php:414
3291
  msgid "The %s object was not found"
3292
  msgstr "Το αντικείμενο %s δεν βρέθηκε"
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 "Αποτυχία πρόσβασης στο φάκελο %s"
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 "%s σφάλμα- αποτυχία πρόσβασης στο φάκελο"
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 "Αυτή η λειτουργία απαιτεί την έκδοση %s %s ή νεότερη "
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 "κωδικός/κλειδί SCP/SFTP"
3411
 
3412
+ #: src/admin.php:3519
3413
  msgid "Files backup (created by %s)"
3414
  msgstr "Αντίγραφο ασφαλείας αρχείων (δημιουργήθηκε από %s) "
3415
 
3416
+ #: src/admin.php:3519
3417
  msgid "Files and database WordPress backup (created by %s)"
3418
  msgstr "Αντίγραφο ασφαλείας αρχείων και βάσης δεδομένων του WordPress (δημιουργήθηκε από %s)"
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 "Το αντίγραφο ασφαλείας δημιουργήθηκε από: %s."
3424
 
3425
+ #: src/admin.php:3482
3426
  msgid "Database (created by %s)"
3427
  msgstr "Βάσης δεδομένων (δημιουργήθηκε από %s) "
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 "Αυτό το αντίγραφο ασφαλείας δημιουργήθηκε από %s, και μπορεί να εισαχθεί."
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 "Το WordPress έχει έναν αριθμό (%d) των προγραμματισμένων εργασιών που έχουν καθυστερήσει. Αυτό σημαίνει κατά πάσα πιθανότητα ότι το χρονοδιάγραμμα στην εγκατάσταση σας του WordPress δεν λειτουργεί, εκτός κι αν αυτή είναι μια σελίδα εξέλιξης "
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 "Εάν αυτό είναι ένα αντίγραφο ασφαλείας που δημιουργήθηκε από ένα διαφορετικό πρόσθετο λήψης αντιγράφων ασφαλείας, τότε το UpdraftPlus Premium μπορεί να είναι σε θέση να σας βοηθήσει."
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 "Ωστόσο, τα αρχεία του UpdraftPlus είναι σύμφωνα με το πρότυπο αρχείων zip/SQL - οπότε αν είστε βέβαιοι ότι το αρχείο σας έχει τη σωστή μορφή, τότε μπορείτε να το μετονομάσετε για να ταιριάζει με αυτό το μοτίβο."
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 "Αυτό το αρχείο δε μοιάζει να είναι ένα αρχείο αντιγράφων ασφαλείας του UpdraftPlus (τέτοια είναι τα .zip or .gz αρχεία που μπορεί να έχουν ένα όνομα του τύπου: backup_(time)_(site name)_(code)_(type).(zip|gz))."
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 "Το αντίγραφο ασφαλείας δημιουργήθηκε από άγνωστη πηγή (%s) - δεν μπορεί να αποκατασταθεί."
3484
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3485
  msgstr "Η μονάδα του UpdraftPlus γι' αυτή τη μέθοδο πρόσβασης στο αρχείο (%s) δεν υποστηρίζει την καταχώριση αρχείων"
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 "Άλλες %s ερωτήσεις."
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 "Η εταιρεία που φιλοξενεί την ιστοσελίδα σας πρέπει να ενεργοποιήσει αυτές τις λειτουργίες πριν το %s να μπορεί να λειτουργήσει."
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 "Η εγκατάσταση της PHP στον web server σας έχει απενεργοποιημένες αυτές τις λειτουργίες: %s."
3538
 
3548
  msgid "regular non-encrypted FTP"
3549
  msgstr "απλό μη κρυπτογραφημένο FTP"
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 "Αδυναμία πρόσβασης από το κεντρικό ταμπλό (για %s εβδομάδες)"
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 "Το αρχείο της βάσης δεδομένων φαίνεται πως έχει συμπιεσθεί δύο φορές - κατά πάσα πιθανότητα η ιστοσελίδα από την οποία το μεταφορτώσατε είχε λανθασμένες ρυθμίσεις στον webserver της."
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 "Εάν επιλέξετε να μην υπάρχει απομακρυσμένη αποθήκευση, τότε τα αντίγραφα ασφαλείας θα παραμένουν στο web-server. Αυτό δεν συνιστάται (εκτός αν σκοπεύετε να τα αντιγράψετε με μη αυτόματο τρόπο στον υπολογιστή σας), διότι μια ενδεχόμενη απώλεια του web server, θα σήμαινε την απώλεια τόσο της ιστοσελίδας σας όσο και των αντιγράφων ασφαλείας ταυτόχρονα."
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 "Υπάρχουν μη διαγραμμένοι κατάλογοι από μια προηγούμενη επαναφορά εδώ (παρακαλούμε χρησιμοποιήστε το κουμπί \"Διαγραφή Παλαιών Καταλογών\" για να τους διαγράψετε πριν προσπαθήσετε ξανά): %s"
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 "Το χρονικό διάστημα που επιτρέπεται στα πρόσθετα του WordPress για να τρέξουν είναι πολύ λίγο (%s δευτερόλεπτα) - θα πρέπει να το αυξήσετε για την αποφυγή αποτυχιών κατά τη δημιουργία του αντιγράφου ασφαλείας λόγω time-outs (συμβουλευτείτε την web hosting εταιρεία σας για περισσότερη βοήθεια - είναι η ρύθμιση max_execution_time PHP. Η συνιστώμενη τιμή είναι %s δευτερόλεπτα ή περισσότερο)"
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 "Η διασύνδεση του %s έληξε λόγω time out. Αν έχετε εισάγει σωστά το διακομιστή, τότε αυτό συνήθως προκαλείται από ένα τείχος προστασίας που εμποδίζει τη σύνδεση - θα πρέπει να το ελέγξετε αυτό με την εταιρεία του web hosting σας."
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 "Βρέθηκε μια γραμμή SQL που είναι μεγαλύτερη από το μέγιστο μέγεθος πακέτου και δεν μπορεί να κατατμηθεί. η γραμμή αυτή δεν θα υποβληθεί σε επεξεργασία, αλλά θα αφεθεί ως έχει: %s"
3690
 
3834
  msgstr "Λογαριασμοί που δημιουργούνται στο rackspacecloud.com είναι λογαριασμοί με έδρα της ΗΠΑ. Λογαριασμοί που δημιουργούνται στο rackspace.co.uk είναι λογαριασμοί με έδρα το Ηνωμένο Βασίλειο."
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 "Προέκυψε ένα άγνωστο σφάλμα κατά τη διάρκεια σύνδεσης με το UpdraftPlus.Com"
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 "Ο νέος κωδικός χρήστη για την κονσόλα του Rackspace είναι (αυτό δεν θα εμφανιστεί ποτέ ξανά):"
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 "Η εγκατάσταση σας του WordPress έχει παλιούς καταλόγους από την κατάσταση πριν να γίνει αποκατάσταση/μετανάστευση (τεχνικές πληροφορίες: αυτά επισημαίνονται με το πρόθεμα -old). Θα πρέπει να πατήσετε αυτό το κουμπί για να τα διαγράψετε μόλις διαπιστώσετε ότι η αποκατάσταση έγινε με επιτυχία."
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 "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια να διαγράψει τους πίνακες. Εμείς θα προσπαθήσουμε να κάνουμε την αποκατάσταση απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να δουλέψει σωστά αν κάνετε αποκατάσταση από μια έκδοση WordPress με την ίδια δομή της βάσης δεδομένων (%s)"
3878
 
3904
  msgid "Email reports"
3905
  msgstr "Αναφορές Email"
3906
 
3907
+ #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1746
3908
  msgid "%s checksum: %s"
3909
  msgstr "%s άθροισμα ελέγχου: %s"
3910
 
3911
+ #: src/class-updraftplus.php:1714, src/class-updraftplus.php:1716
3912
  msgid "files: %s"
3913
  msgstr "αρχεία: %s"
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 "%s ταυτοποίηση"
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 "%s δεν επέστρεψε την αναμενόμενη απάντηση - ελέγξτε το αρχείο καταγραφής σας για περισσότερες λεπτομέρειες"
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 "Η απαιτούμενη μονάδα PHP %s δεν είναι εγκατεστημένη - ζητήστε από την εταιρεία web hosting σας να την ενεργοποιήσει"
3986
 
3992
  msgid "Your site's admin email address (%s) will be used."
3993
  msgstr "Θα χρησιμοποιηθεί η διεύθυνση email του διαχειριστή της σελίδας (%s)."
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 "Για περισσότερες δυνατότητες αναφοράς, χρησιμοποιήστε το πρόσθετο Reporting."
4003
 
4004
+ #: src/class-updraftplus.php:4361
4005
  msgid "(version: %s)"
4006
  msgstr "(έκδοση: %s)"
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 "Θα πρέπει να γνωρίζετε ότι οι διακομιστές ηλεκτρονικού ταχυδρομείου τείνουν να έχουν όρια μεγέθους, συνήθως γύρω στα %s Mb. Τα αντίγραφα ασφαλείας έχουν συνήθως μεγαλύτερο μέγεθος από οποιοδήποτε όριο και πιθανότατα το email δεν θα αποσταλεί."
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 "Όταν είναι ενεργοποιημένη η μέθοδος αποθήκευσης με Email, στείλτε επίσης το σύνολο των αντιγράφων ασφαλείας"
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 "Ποσοστό λήψης αντιγράφου ασφαλείας: %s"
4028
 
4029
+ #: src/addons/reporting.php:253, src/backup.php:915
4030
  msgid "The log file has been attached to this email."
4031
  msgstr "Το αρχείο καταγραφής έχει επισυναφθεί στο email."
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 "(Αυτό ισχύει για όλα τα πρόσθετα του WordPress που δημιουργούν αντίγραφα ασφαλείας, εκτός αν έχουν δημιουργηθεί αυστηρά για συμβατότητα σε multisite)."
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 "Χωρίς την αναβάθμιση, το UpdraftPlus επιτρέπει <strong> κάθε </strong> διαχειριστή του ιστολογίου σας που μπορεί να τροποποιήσει τις ρυθμίσεις του πρόσθετου για να δημιουργήσει αντίγραφα ασφαλείας (και ως εκ τούτου να έχει πρόσβαση στα δεδομένα, συμπεριλαμβανομένων και των κωδικών πρόσβασης) και να κάνει επαναφορά (μεταξύ άλλων και με προσαρμοσμένες τροποποιήσεις, π.χ. να αλλάξει τους κωδικούς πρόσβασης) <strong> στο σύνολο του δικτύου </strong>."
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 "Υποστηρίζεται το WordPress Multisite, με επιπλέον χαρακτηριστικά, από το UpdraftPlus Premium, ή το πρόσθετο Multisite."
4068
 
4069
+ #: src/options.php:192
4070
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4071
  msgstr "Αυτή είναι μια εγκατάσταση multi-site του WordPress multi-site (επίσης γνωστή ως network)."
4072
 
4073
+ #: src/options.php:192
4074
  msgid "UpdraftPlus warning:"
4075
  msgstr "Προειδοποίηση UpdraftPlus:"
4076
 
4136
  msgstr "Αποτυχία σύνδεσης με το UpdraftPlus.Com"
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 "URL περιεχομένου:"
4156
 
4158
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4159
  msgstr "Θα πρέπει να ελέγξετε την ιδιοκτησία αρχείων και τα δικαιώματα στην εγκατάσταση της WordPress"
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 "Δείτε επίσης το πρόσθετο \"More Files\" στο κατάστημά μας."
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 "Ο ελεύθερος χώρος στο λογαριασμό σας είναι πολύ λίγος - μόνο %s Mb απομένουν"
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 "Το επιτρεπόμενο ποσό της μνήμης (RAM) για την PHP είναι πολύ μικρό (%s Mb) - θα πρέπει να το αυξήσετε για να αποφευχθούν δυσλειτουργίες εξαιτίας της ανεπαρκούς μνήμης (συμβουλευτείτε την εταιρεία που σας παρέχει τον διακομιστή σας για περισσότερη βοήθεια)"
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 "(%s%%, αρχείο %s από %s)"
4353
 
4384
  msgid "Backup is of: %s."
4385
  msgstr "Η δημιουργία αντιγράφων ασφαλείας είναι:%s."
4386
 
4387
+ #: src/admin.php:739
4388
  msgid "%s settings test result:"
4389
  msgstr "αποτέλεσμα δοκιμής για τις ρυθμίσεις %s:"
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 "<b> Μην </b> το τοποθετείτε μέσα στο φάκελο με τις προσθήκες ή τα πρόσθετα, καθώς αυτό θα προκαλέσει αναδρομή (αντίγραφα ασφαλείας των αντιγράφων ασφαλείας των αντιγράφων ασφαλείας των...)."
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 "Αυτό είναι το σημείο όπου το UpdraftPlus θα αποθηκεύσει τα αρχεία zip που δημιουργεί αρχικά. Αυτός ο κατάλογος πρέπει να είναι εγγράψιμος από τον εξυπηρετητή σας. Έχει άμεση σχέση με τον κατάλογο του περιεχομένου σας (ο οποίος από προεπιλογή ονομάζεται wp-content)."
4406
 
4407
+ #: src/admin.php:2841
4408
  msgid "Job ID: %s"
4409
  msgstr "Ταυτότητα εργασίας: %s"
4410
 
4411
+ #: src/admin.php:2826
4412
  msgid "last activity: %ss ago"
4413
  msgstr "τελευταία δραστηριότητα πριν: %ss"
4414
 
4415
+ #: src/admin.php:2825
4416
  msgid "next resumption: %d (after %ss)"
4417
  msgstr "επόμενη επανάληψη:%d (μετά από %ss)"
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 "πίνακας: %s"
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 "Ο προγραμματιστής είναι απενεργοποιημένος στην εγκατάσταση του WordPress, μέσω της ρύθμισης DISABLE_WP_CRON. Δεν μπορεί να εκτελεστεί καμία διαδικασία εκτέλεσης δημιουργίας αντιγράφων ασφαλείας (even &quot;Backup Now&quot;) εκτός εάν είτε έχετε εγκαταστήσει μια λειτουργία για να λάβετε αντίγραφο ασφαλείας χειροκίνητα, ή μέχρι να ενεργοποιηθεί."
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 "Το UpdraftPlus χρειάζεται να δημιουργήσει ένα %s στον κατάλογο περιεχομένων σας, αλλά απέτυχε - παρακαλώ ελέγξτε τα δικαιώματα αρχείων σας και επιτρέψτε την πρόσβαση (%s)"
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 "Η ιστοσελίδα σας δεν έχει μεγάλη επισκεψιμότητα και το UpdraftPlus δεν μπορεί να πάρει τους πόρους που έλπιζε, παρακαλούμε διαβάστε αυτή τη σελίδα:"
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 "Η αυθεντικοποίηση του%s δεν μπορεί να προχωρήσει, γιατί κάτι άλλο στην ιστοσελίδας σας δημιουργεί πρόβλημα. Δοκιμάστε να απενεργοποιήσετε άλλα πρόσθετα που έχετε εγκατεστημένα κι ενεργοποιήστε ένα προεπιλεγμένο θέμα. (Συγκεκριμένα, ψάχνετε για το στοιχείο που στέλνει (πιθανότατα προειδοποιήσεις/σφάλματα της PHP) πριν αρχίσει η σελίδα. Απενεργοποίηση των ρυθμίσεων εντοπισμού σφαλμάτων μπορεί επίσης να βοηθήσει)."
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 "Το όριο μνήμης της PHP (το οποίο ορίζεται από την εταιρία φιλοξενίας της ιστοσελίδας) είναι πολύ χαμηλό. Το UpdraftPlus προσπάθησε να το ανεβάσει ανεπιτυχώς. Αυτό το πρόσθετο ενδέχεται να μην μπορεί να αποδώσει σωστά με όριο μνήμης μικρότερο των 64 Mb, ειδικά αν έχετε ανεβάσει πολύ μεγάλα αρχεία (αν και από την άλλη, αρκετές ιστοσελίδες μπορούν να δουλέψουν επιτυχώς και με όριο τα 32Mb. Η εμπειρία σας μπορεί να διαφέρει)."
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 "Το UpdraftPlus δεν μπόρεσε να βρει το πρόθεμα πίνακα κατά τη σάρωση του αρχείου ασφαλείας της βάσης δεδομένων."
4589
 
4590
+ #: src/class-updraftplus.php:4554
4591
  msgid "This database backup is missing core WordPress tables: %s"
4592
  msgstr "Από αυτό το αρχείο ασφαλείας της βάσης δεδομένων λείπουν πίνακες του πυρήνα του Wordpress: %s"
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 "Κάνετε εισαγωγή από μια νεότερη έκδοση του WordPress (%s) σε μια παλαιότερη (%s). Δεν υπάρχουν εγγυήσεις ότι το WordPress μπορεί να το διαχειριστεί αυτό."
4597
 
4598
+ #: src/class-updraftplus.php:4409, src/class-updraftplus.php:4416
4599
  msgid "%s version: %s"
4600
  msgstr "%s έκδοση: %s"
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 "Η βάση δεδομένων είναι πολύ μικρή για να είναι έγκυρη βάση δεδομένων WordPress (μέγεθος: %s Kb)."
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 "Αν μπορείτε ακόμα να διαβάζετε αυτές τις λέξεις αφότου η σελίδα τελειώσει την φόρτωση της, τότε υπάρχει κάποιο πρόβλημα με τη JavaScript ή το jQuery στην ιστοσελίδα."
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 "Το αρχείο φαίνεται να μην είναι άρχειο κρυπτογραφημένης βάσης δεδομένων του UpdraftPlus (τέτοια αρχεία είναι τα αρχεία .gz.crypt που έχουν όνομα όπως: backup_(ώρα)_(όνομα ιστοσελίδας)_(κωδικός)_db.crypt.gz)."
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 "(σιγουρευτείτε ότι προσπαθείτε να ανεβάσετε ένα αρχείο zip το όποιο έχει κατασκευαστεί με το UpdraftPlus)"
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 "(%d αρχείο(α) στο σετ)."
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 "Σφάλμα: ο διακομιστής μας έστειλε μια απάντηση (JSON) την οποία δεν μπορούμε να καταλάβουμε."
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 "Αυτό μοιάζει να είναι αρχείο που δημιουργήθηκε με το UpdraftPlus, αλλά αυτή η εγκατάσταση δεν μπορεί να αποφανθεί για αυτό το είδος του αντικειμένου:%s. Μήπως θα πρέπει να εγκαταστήσετε κάποιο πρόσθετο;"
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 "Το αρχείο αντιγράφου ασφαλείας για αυτό το αρχείο δεν μπορεί να βρεθεί. Η απομακρυσμένη τοποθεσία αποθήκευσης που χρησιμοποιείτε (%s) δεν μας επιτρέπει να ανακτήσουμε τα αρχεία. Για να εκτελέσετε οποιαδήποτε επαναφορά με τη χρήση του UpdraftPlus, θα πρέπει να αποκτήσετε ένα αντίγραφο αυτού του αρχείου και να το τοποθετήστε το μέσα στον ενεργό φάκελο του UpdraftPlus"
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 "Αποτυχία ανοίγματος του αρχείου zip (%s) - %s"
4730
 
4732
  msgid "WordPress root directory server path: %s"
4733
  msgstr "Η ριζική διαδρομή του Wordpress στον εξυπηρετητή είναι: %s"
4734
 
4735
+ #: src/methods/s3.php:852
4736
  msgid "%s end-point"
4737
  msgstr "%s τελικό σημείο "
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 "S3 (Συμβατό)"
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 "Αναζήτηση για %s αρχείο: όνομα αρχείου: %s"
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 "Αφήστε τα κρυπτογραφημένα αρχεία της βάσης δεδομένων (db.gz.crypt αρχεία) εδώ για να ανεβάσετε για αποκρυπτογράφηση"
4766
 
4767
+ #: src/admin.php:3205
4768
  msgid "Your wp-content directory server path: %s"
4769
  msgstr "Η διαδρομή του φακέλου wp-content στον εξυπηρετητή σας είναι: %s"
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 "Η εγκατάσταση σας του WordPress έχει ένα πρόβλημα με την έξοδο κενού περιεχομένου. Αυτό μπορεί να καταστρέψει τα αντίγραφα ασφαλείας που θα κατεβάσετε από εδώ."
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 "Αυτό μοιάζει με μια μετανάστευση σελίδας (η δημιουργία αντιγράφων ασφαλείας έγινε από μια ιστοσελίδα με μια διαφορετική διεύθυνση/URL), αλλά δεν επιλέξατε τη δυνατότητα να αναζητήσετε και να αντικαταστήσετε τη βάση δεδομένων. Αυτό είναι συνήθως ένα λάθος."
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 "Αυτό το σετ αντιγράφων ασφαλείας είναι από διαφορετικό ιστοσελίδα - αυτή δεν είναι μια διαδικασία επαναφοράς αλλά είναι διαδικασία μετανάστευσης. Χρειάζεται και το πρόσθετο Migrator για να γίνει αυτή η λειτουργία."
4830
 
4868
  msgid "Error - no such file exists at %s"
4869
  msgstr "Λάθος - δεν υπάρχει αυτό το αρχείο στο %s"
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 "%s λάθος - αποτυχία ανεβάσματος του αρχείου"
4882
 
4883
+ #: src/class-updraftplus.php:1157, src/methods/cloudfiles.php:223
4884
  msgid "%s error - failed to re-assemble chunks"
4885
  msgstr "%s λάθος - αποτυχία επαναδημιουργίας των κομματιών"
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 "%s αποτυχία πιστοποίησης"
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 "Λάθος: %s"
4906
 
4907
+ #: src/admin.php:3142
4908
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4909
  msgstr "Ο φάκελος που υπεδείχθη για την αποθήκευση των αντιγράφων ασφαλείας υπάρχει αλλά <b>δεν είναι</b> εγγράψιμος."
4910
 
4911
+ #: src/admin.php:3140
4912
  msgid "Backup directory specified does <b>not</b> exist."
4913
  msgstr "Ο φάκελος που υπεδείχθη για την αποθήκευση των αντιγράφων ασφαλείας <b>δεν</b> υπάρχει. "
4914
 
4915
+ #: src/admin.php:2853, src/admin.php:3096
4916
  msgid "Warning: %s"
4917
  msgstr "Προειδοποίηση: %s"
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 "Βρέθηκε ένα πολύ μεγάλο αρχείο: %s (μέγεθος: %s Mb)"
4926
 
4927
+ #: src/backup.php:2172
4928
  msgid "%s: unreadable file - could not be backed up"
4929
  msgstr "%s: το αρχείο είναι μη αναγνώσιμο - δεν μπορεί να δημιουργηθεί αντίγραφο ασφαλείας γι' αυτό"
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 "Ο πίνακας %s έχει πάρα πολλές γραμμές (%s) - ελπίζουμε ότι η εταιρεία που παρέχει τον εξυπηρετητή για τη φιλοξενία της σελίδας σας να παρέχει επαρκείς πόρους για να συμπεριλάβουμε τον πίνακα αυτό στο αντίγραφο ασφαλείας"
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 "ο ελεύθερος χώρος στο δίσκο σας είναι πολύ λίγος - παραμένουν μόνο %s Mb "
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 "Ορισμένοι διακομιστές διαφημίζουν ως διαθέσιμη το κρυπτογραφημένο FTP αλλά συμβαίνει στη συνέχεια time-out (μετά από αρκετή ώρα) όταν επιχειρείτε να το χρησιμοποιήσετε. Αν συμβαίνει αυτό σε σας πηγαίνετε στο \"Επιλογές για Προχωρημένους\" (παρακάτω) και απενεργοποιήσετε το SSL από εκεί."
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 "Η εγκατάσταση PHP του εξυπηρετητή σας δεν περιελάμβανε μια απαραίτητη μονάδα (%s). Παρακαλούμε επικοινωνήστε με την υποστήριξη του παρόχου του εξυπηρετητή σας και ζητήστε να το ενεργοποιήσουν."
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 "Το λάθος που αναφέρθηκε από το %s ήταν:"
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 "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια για τη δημιουργία πινάκων. Θα γίνει προσπάθεια επαναφοράς απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να λειτουργήσει για την περίπτωση που α) κάνετε επαναφορά από μια έκδοση του WordPress με την ίδια τη δομή της βάσης δεδομένων και β) η εισαγόμενη βάση δεδομένων σας δεν περιέχει πίνακες που δεν είναι ήδη υπάρχοντες στην ιστοσελίδα εισαγωγής."
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 "Γίνεται εκτέλεση της διαδικασίας σε μια εγκατάσταση πολλαπλών ιστοσελίδων του Wordpress αλλά το αντίγραφο ασφαλείας σας δεν είναι από μια τέτοια εγκατάσταση. "
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 "Παράκαμψη στην επαναφορά του πυρήνα του WordPress κατά την εισαγωγή μιας ιστοσελίδας σε μια εγκατάσταση πολλαπλών ιστοσελίδων. Αν είχατε κάποια αναγκαία αρχεία στο φάκελο του WordPress, τότε θα πρέπει να τα προσθέσετε χειροκίνητα ξανά από το αρχείο zip."
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 "Η εγκατάσταση PHP του εξυπηρετητή σας δεν περιελαμβάνει μια<strong>απαραίτητη</strong> (για %s) μονάδα (%s). Παρακαλούμε επικοινωνήστε με την υποστήριξη του παρόχου του εξυπηρετητή σας και ζητήστε να το ενεργοποιήσουν."
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 "πληροφορίες PHP"
5043
 
5073
  msgid "Also delete from remote storage"
5074
  msgstr "Διαγραφή επίσης και από το χώρο απομακρυσμένης αποθήκευσης. "
5075
 
5076
+ #: src/admin.php:2583
5077
  msgid "Latest UpdraftPlus.com news:"
5078
  msgstr "Τελευταία νέα του UpdraftPlus.com:"
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 "Δοκιμή %s Ρυθμίσεων..."
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 "Ή, μπορείτε να τα τοποθετήσετε με το χέρι στο φάκελο του UpdraftPlus (συνήθως wp-content/updraft), π.χ. μέσω FTP, και στη συνέχεια να χρησιμοποιήστε το σύνδεσμο \"επανεξέταση\" πιο πάνω."
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 "Η λειτουργία αποσφαλμάτωσης του UpdraftPlus είναι σε λειτουργία. Μπορείτε να δείτε πληροφορίες αποσφαλμάτωσης σε αυτή τη σελίδα όχι μόνο για το UpdraftPlus αλλά και για οποιοδήποτε άλλο πρόσθετο έχετε εγκαταστήσει. Παρακαλούμε βεβαιωθείτε ότι η ειδοποίηση που βλέπετε είναι από το UpdraftPlus προτού θέσετε κάποιο αίτημα υποστήριξης."
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 "Όλες οι αναφορές για τη θέση της ιστοσελίδας στη βάση δεδομένων θα αντικατασταθούν με το τρέχον URL της ιστοσελίδας σας, το οποίο είναι: %s"
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 "Πυρήνας WordPress "
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 "Δε φαίνεται να είστε πιστοποιημένος στο Dropbox"
5423
 
5424
+ #: src/methods/s3.php:1079
5425
  msgid "The communication with %s was not encrypted."
5426
  msgstr "Η επικοινωνία με το %s δεν κρυπτογραφήθηκε. "
5427
 
5428
+ #: src/methods/s3.php:1077
5429
  msgid "The communication with %s was encrypted."
5430
  msgstr "Η επικοινωνία με το %s κρυπτογραφήθηκε."
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 "Αποτυχία: Δεν μπορέσαμε επιτυχώς να έχουμε πρόσβαση ή να δημιουργήσεουμε ένα τέτοιο κάδο. Παρακαλούμε ελέγξτε τα διαπιστευτήρια πρόσβασης σας, και εάν αυτά είναι σωστά τότε δοκιμάστε με ένα άλλο όνομα κάδου (ενδεχομένως κάποιος άλλος χρήστης %s μπορεί να έχει ήδη πάρει το όνομά σας)."
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 "μυστικό API"
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 "Εισάγετε μόνο ένα όνομα κάδου ή έναν κάδο και τη διαδρομή. Παραδείγματα: mybucket, mybucket/mypath"
5467
 
5468
+ #: src/methods/s3.php:888
5469
  msgid "%s location"
5470
  msgstr "%s τοποθεσία"
5471
 
5472
+ #: src/methods/s3.php:884
5473
  msgid "%s secret key"
5474
  msgstr "%s μυστικό κλειδί"
5475
 
5476
+ #: src/methods/s3.php:880
5477
  msgid "%s access key"
5478
  msgstr "%s κλειδί πρόσβασης"
5479
 
5480
+ #: src/methods/s3.php:845
5481
  msgid "If you see errors about SSL certificates, then please go here for help."
5482
  msgstr "Εάν δείτε λάθη σχετικά με τα πιστοποιητικά SSL τότε πηγαίνετε εδώ για βοήθεια."
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 "Λάβετε το κλειδί πρόσβασης σας και το μυστικό κλειδί <a href=\"%s\"> από την κονσόλα σας %s </a>, στη συνέχεια επιλέξτε ένα (μοναδικό παγκοσμίως - όλοι οι %s χρήστες) όνομα κάδου (γράμματα και αριθμοί) (και προαιρετικά μια διαδρομή) που θα χρησιμοποιηθεί για την αποθήκευση. Η κάδος θα δημιουργηθεί για σας εάν δεν υπάρχει ήδη."
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 "Σφάλμα %s: Αποτυχία πρόσβασης στον κάδο %s. Ελέγξτε τα δικαιώματα και τα διαπιστευτήριά σας."
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 "Σφάλμα %s: Απέτυχε η λήψη του %s. Ελέγξτε τα δικαιώματα και τα διαπιστευτήριά σας."
5496
 
5497
+ #: src/methods/s3.php:441
5498
  msgid "%s re-assembly error (%s): (see log file for more)"
5499
  msgstr "%s λάθος επανασυναρμολόγησης (%s): (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
5500
 
5501
+ #: src/methods/s3.php:437
5502
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5503
  msgstr "%s μεταφόρτωσης (%s): η επανασυναρμολόγηση απέτυχε (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
5504
 
5505
+ #: src/methods/s3.php:421
5506
  msgid "%s chunk %s: upload failed"
5507
  msgstr "σφάλμα %s: Το αρχείο %s ήταν απροσδόκητα μικρότερο "
5508
 
5509
+ #: src/methods/s3.php:411
5510
  msgid "%s error: file %s was shortened unexpectedly"
5511
  msgstr "σφάλμα %s: Το αρχείο %s έγινε απροσδόκητα μικρότερο "
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 "αποστολή %s: η λήψη uploadID για μεταφόρτωση πολλαπλών αρχείων απέτυχε - δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες"
5516
 
5522
  msgid "WordPress Backup"
5523
  msgstr "Αντίγραφο ασφαλείας του Wordpress"
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 "Κλειδί API"
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,