Version Description
19/Feb/2018 =
FEATURE: Now supports AWS v4 signatures (allowing use of new AWS regions) with old S3 SDK (which is used on PHP 5.2)
FIX: WebDAV options filter was not correctly saving any human-chosen description
FIX: Regression: Rackspace 'new user' wizard was not functioning
FIX: For chunked storage APIs that require a method to finally re-assemble chunks, if the first attempt failed, then a subsequent failed attempt could be incorrectly marked as having succeeded
FIX: First instance of each remote storage object was not using its internal default options
TWEAK: Added the ability to restore incremental backup sets (N.B. currently you cannot create incremental backup sets; this is part of our development of that feature)
TWEAK: Edit welcome banner
TWEAK: If 'lock admin' functionality (Premium) has been disabled by the site administrator, then include a line to that effect in the relevant section.
TWEAK: Allow UpdraftCentral classes to have boiler-plate pre and post-call methods
TWEAK: Do a bit more logging for Backblaze B2 uploads
TWEAK: Add a sanity check to prevent some PHP debug notices being logged in an upgrade situation
TWEAK: Resolved unwanted WebDAV remote storage JavaScript console message
Release Info
Developer | DavidAnderson |
Plugin | UpdraftPlus WordPress Backup Plugin |
Version | 1.14.4 |
Comparing to | |
See all releases |
Code changes from version 1.14.3 to 1.14.4
- admin.php +5 -6
- central/listener.php +5 -0
- class-updraftplus.php +55 -31
- includes/S3.php +9 -5
- includes/S3compat.php +20 -10
- includes/class-wpadmin-commands.php +20 -0
- includes/updraftplus-admin.js +0 -21
- includes/updraftplus-admin.min.js +2 -2
- languages/updraftplus-af.po +422 -418
- languages/updraftplus-ar.po +422 -418
- languages/updraftplus-bg_BG.po +422 -418
- languages/updraftplus-bn_BD.po +422 -418
- languages/updraftplus-bs_BA.po +422 -418
- languages/updraftplus-ca.po +422 -418
- languages/updraftplus-da_DK.mo +0 -0
- languages/updraftplus-da_DK.po +427 -421
- languages/updraftplus-el.mo +0 -0
- languages/updraftplus-el.po +423 -419
- languages/updraftplus-es_CO.mo +0 -0
- languages/updraftplus-es_CO.po +422 -418
- languages/updraftplus-es_MX.mo +0 -0
- languages/updraftplus-es_MX.po +188 -176
@@ -3987,7 +3987,7 @@ ENDHERE;
|
|
3987 |
$_POST['updraft_restore'] is typically something like: array(0=>'db', 1=>'plugins', 2=>'themes'), etc.
|
3988 |
i.e. array ('db', 'plugins', themes')
|
3989 |
*/
|
3990 |
-
|
3991 |
if (empty($restore_options)) {
|
3992 |
// Gather the restore optons into one place - code after here should read the options, and not the HTTP layer
|
3993 |
$restore_options = array();
|
@@ -3996,14 +3996,12 @@ ENDHERE;
|
|
3996 |
}
|
3997 |
$restore_options['updraft_encryptionphrase'] = empty($_POST['updraft_encryptionphrase']) ? '' : (string) stripslashes($_POST['updraft_encryptionphrase']);
|
3998 |
$restore_options['updraft_restorer_wpcore_includewpconfig'] = empty($_POST['updraft_restorer_wpcore_includewpconfig']) ? false : true;
|
3999 |
-
$restore_options['updraft_incremental_restore_point'] = empty($
|
4000 |
$updraftplus->jobdata_set('restore_options', $restore_options);
|
4001 |
}
|
4002 |
-
|
4003 |
$backupable_entities = $updraftplus->get_backupable_file_entities(true, true);
|
4004 |
|
4005 |
-
if (defined('UPDRAFTPLUS_INCREMENTAL_RESTORE_POINT') && is_int(UPDRAFTPLUS_INCREMENTAL_RESTORE_POINT)) $restore_options['updraft_incremental_restore_point'] = UPDRAFTPLUS_INCREMENTAL_RESTORE_POINT;
|
4006 |
-
|
4007 |
// If updraft_incremental_restore_point is equal to -1 then this is either not a incremental restore or we are going to restore up to the latest increment, so there is no need to prune the backup set of any unwanted backup archives.
|
4008 |
if (isset($restore_options['updraft_incremental_restore_point']) && $restore_options['updraft_incremental_restore_point'] > 0) {
|
4009 |
$restore_point = $restore_options['updraft_incremental_restore_point'];
|
@@ -4192,8 +4190,9 @@ ENDHERE;
|
|
4192 |
if (is_string($files)) $files = array($files);
|
4193 |
foreach ($files as $fkey => $file) {
|
4194 |
$last_one = (1 == count($second_loop) && 1 == count($files));
|
|
|
4195 |
try {
|
4196 |
-
$val = $updraftplus_restorer->restore_backup($file, $type, $info, $last_one);
|
4197 |
} catch (Exception $e) {
|
4198 |
$log_message = 'Exception ('.get_class($e).') occurred during restore: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
4199 |
$display_log_message = sprintf(__('A PHP exception (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage());
|
3987 |
$_POST['updraft_restore'] is typically something like: array(0=>'db', 1=>'plugins', 2=>'themes'), etc.
|
3988 |
i.e. array ('db', 'plugins', themes')
|
3989 |
*/
|
3990 |
+
|
3991 |
if (empty($restore_options)) {
|
3992 |
// Gather the restore optons into one place - code after here should read the options, and not the HTTP layer
|
3993 |
$restore_options = array();
|
3996 |
}
|
3997 |
$restore_options['updraft_encryptionphrase'] = empty($_POST['updraft_encryptionphrase']) ? '' : (string) stripslashes($_POST['updraft_encryptionphrase']);
|
3998 |
$restore_options['updraft_restorer_wpcore_includewpconfig'] = empty($_POST['updraft_restorer_wpcore_includewpconfig']) ? false : true;
|
3999 |
+
$restore_options['updraft_incremental_restore_point'] = empty($restore_options['updraft_incremental_restore_point']) ? -1 : (int) $restore_options['updraft_incremental_restore_point'];
|
4000 |
$updraftplus->jobdata_set('restore_options', $restore_options);
|
4001 |
}
|
4002 |
+
|
4003 |
$backupable_entities = $updraftplus->get_backupable_file_entities(true, true);
|
4004 |
|
|
|
|
|
4005 |
// If updraft_incremental_restore_point is equal to -1 then this is either not a incremental restore or we are going to restore up to the latest increment, so there is no need to prune the backup set of any unwanted backup archives.
|
4006 |
if (isset($restore_options['updraft_incremental_restore_point']) && $restore_options['updraft_incremental_restore_point'] > 0) {
|
4007 |
$restore_point = $restore_options['updraft_incremental_restore_point'];
|
4190 |
if (is_string($files)) $files = array($files);
|
4191 |
foreach ($files as $fkey => $file) {
|
4192 |
$last_one = (1 == count($second_loop) && 1 == count($files));
|
4193 |
+
$last_entity = (1 == count($files));
|
4194 |
try {
|
4195 |
+
$val = $updraftplus_restorer->restore_backup($file, $type, $info, $last_one, $last_entity);
|
4196 |
} catch (Exception $e) {
|
4197 |
$log_message = 'Exception ('.get_class($e).') occurred during restore: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
|
4198 |
$display_log_message = sprintf(__('A PHP exception (%s) has occurred: %s', 'updraftplus'), get_class($e), $e->getMessage());
|
@@ -186,9 +186,14 @@ class UpdraftPlus_UpdraftCentral_Listener {
|
|
186 |
global $updraftplus;
|
187 |
if (is_a($updraftplus, 'UpdraftPlus')) $updraftplus->register_wp_http_option_hooks();
|
188 |
|
|
|
|
|
|
|
189 |
// Despatch
|
190 |
$msg = apply_filters('updraftcentral_listener_udrpc_action', call_user_func(array($command_class, $command), $data, $extra_info), $command_class, $class_prefix, $command, $data, $extra_info);
|
191 |
|
|
|
|
|
192 |
if (is_a($updraftplus, 'UpdraftPlus')) $updraftplus->register_wp_http_option_hooks(false);
|
193 |
|
194 |
return $this->return_rpc_message($msg);
|
186 |
global $updraftplus;
|
187 |
if (is_a($updraftplus, 'UpdraftPlus')) $updraftplus->register_wp_http_option_hooks();
|
188 |
|
189 |
+
// Allow the command class to perform any boiler-plate actions.
|
190 |
+
if (is_callable(array($command_class, '_pre_action'))) call_user_func(array($command_class, '_pre_action'), $command, $data, $extra_info);
|
191 |
+
|
192 |
// Despatch
|
193 |
$msg = apply_filters('updraftcentral_listener_udrpc_action', call_user_func(array($command_class, $command), $data, $extra_info), $command_class, $class_prefix, $command, $data, $extra_info);
|
194 |
|
195 |
+
if (is_callable(array($command_class, '_post_action'))) call_user_func(array($command_class, '_post_action'), $command, $data, $extra_info);
|
196 |
+
|
197 |
if (is_a($updraftplus, 'UpdraftPlus')) $updraftplus->register_wp_http_option_hooks(false);
|
198 |
|
199 |
return $this->return_rpc_message($msg);
|
@@ -291,7 +291,10 @@ class UpdraftPlus {
|
|
291 |
|
292 |
// Already converted?
|
293 |
if (isset($current_setting['version'])) return $current_setting;
|
294 |
-
|
|
|
|
|
|
|
295 |
$new_setting = $this->wrap_remote_storage_options($current_setting);
|
296 |
|
297 |
$already_active = true;
|
@@ -1125,7 +1128,8 @@ class UpdraftPlus {
|
|
1125 |
|
1126 |
$fullpath = $this->backups_dir_location().'/'.$file;
|
1127 |
$orig_file_size = filesize($fullpath);
|
1128 |
-
|
|
|
1129 |
|
1130 |
$chunks = floor($orig_file_size / $chunk_size);
|
1131 |
// There will be a remnant unless the file size was exactly on a chunk boundary
|
@@ -1137,23 +1141,26 @@ class UpdraftPlus {
|
|
1137 |
return 1;
|
1138 |
} elseif ($chunks < 2 && !$singletons) {
|
1139 |
return 1;
|
1140 |
-
}
|
1141 |
|
|
|
|
|
|
|
1142 |
if (false == ($fp = @fopen($fullpath, 'rb'))) {
|
1143 |
$this->log("$logname: failed to open file: $fullpath");
|
1144 |
$this->log("$file: ".sprintf(__('%s Error: Failed to open local file', 'updraftplus'), $logname), 'error');
|
1145 |
return false;
|
1146 |
}
|
1147 |
|
1148 |
-
$errors_so_far = 0;
|
1149 |
$upload_start = 0;
|
1150 |
$upload_end = -1;
|
1151 |
$chunk_index = 1;
|
1152 |
// The file size minus one equals the byte offset of the final byte
|
1153 |
$upload_end = min($chunk_size - 1, $orig_file_size - 1);
|
|
|
1154 |
|
1155 |
while ($upload_start < $orig_file_size) {
|
1156 |
-
|
1157 |
// Don't forget the +1; otherwise the last byte is omitted
|
1158 |
$upload_size = $upload_end - $upload_start + 1;
|
1159 |
|
@@ -1218,43 +1225,60 @@ class UpdraftPlus {
|
|
1218 |
|
1219 |
// $uploaded_bytes = $upload_end + 1;
|
1220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1221 |
} else {
|
1222 |
-
|
1223 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1224 |
@fclose($fp);
|
1225 |
return false;
|
1226 |
}
|
1227 |
}
|
1228 |
-
|
1229 |
-
$chunk_index++;
|
1230 |
-
$upload_start = $upload_end + 1;
|
1231 |
-
$upload_end += isset($new_chunk_size) ? $uploaded_amount + $new_chunk_size - $chunk_size : $uploaded_amount;
|
1232 |
-
$upload_end = min($upload_end, $orig_file_size - 1);
|
1233 |
|
1234 |
}
|
1235 |
|
1236 |
@fclose($fp);
|
1237 |
|
1238 |
-
|
1239 |
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
$this->log("$logname upload: success");
|
1251 |
-
// UpdraftPlus_RemoteStorage_Addons_Base calls this itself
|
1252 |
-
if (!is_a($caller, 'UpdraftPlus_RemoteStorage_Addons_Base_v2')) $this->uploaded_file($file);
|
1253 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1254 |
|
1255 |
-
|
1256 |
|
1257 |
-
}
|
1258 |
}
|
1259 |
|
1260 |
/**
|
@@ -3509,14 +3533,14 @@ class UpdraftPlus {
|
|
3509 |
|
3510 |
if ($remote_storage->supports_feature('multi_options')) {
|
3511 |
|
3512 |
-
$
|
3513 |
|
3514 |
-
|
3515 |
|
3516 |
if (!isset($settings['version'])) $settings = $this->update_remote_storage_options_format($method);
|
3517 |
|
3518 |
if (is_wp_error($settings)) {
|
3519 |
-
error_log("UpdraftPlus: failed to convert storage options format: $method");
|
3520 |
$settings = array('settings' => array());
|
3521 |
}
|
3522 |
|
291 |
|
292 |
// Already converted?
|
293 |
if (isset($current_setting['version'])) return $current_setting;
|
294 |
+
if (empty($current_setting)) {
|
295 |
+
$remote_storage = $this->get_storage_object($method);
|
296 |
+
$current_setting = $remote_storage->get_default_options();
|
297 |
+
}
|
298 |
$new_setting = $this->wrap_remote_storage_options($current_setting);
|
299 |
|
300 |
$already_active = true;
|
1128 |
|
1129 |
$fullpath = $this->backups_dir_location().'/'.$file;
|
1130 |
$orig_file_size = filesize($fullpath);
|
1131 |
+
|
1132 |
+
if ($uploaded_size >= $orig_file_size && !method_exists($caller, 'chunked_upload_finish')) return true;
|
1133 |
|
1134 |
$chunks = floor($orig_file_size / $chunk_size);
|
1135 |
// There will be a remnant unless the file size was exactly on a chunk boundary
|
1141 |
return 1;
|
1142 |
} elseif ($chunks < 2 && !$singletons) {
|
1143 |
return 1;
|
1144 |
+
}
|
1145 |
|
1146 |
+
// We have multiple chunks
|
1147 |
+
if ($uploaded_size < $orig_file_size) {
|
1148 |
+
|
1149 |
if (false == ($fp = @fopen($fullpath, 'rb'))) {
|
1150 |
$this->log("$logname: failed to open file: $fullpath");
|
1151 |
$this->log("$file: ".sprintf(__('%s Error: Failed to open local file', 'updraftplus'), $logname), 'error');
|
1152 |
return false;
|
1153 |
}
|
1154 |
|
|
|
1155 |
$upload_start = 0;
|
1156 |
$upload_end = -1;
|
1157 |
$chunk_index = 1;
|
1158 |
// The file size minus one equals the byte offset of the final byte
|
1159 |
$upload_end = min($chunk_size - 1, $orig_file_size - 1);
|
1160 |
+
$errors_on_this_chunk = 0;
|
1161 |
|
1162 |
while ($upload_start < $orig_file_size) {
|
1163 |
+
|
1164 |
// Don't forget the +1; otherwise the last byte is omitted
|
1165 |
$upload_size = $upload_end - $upload_start + 1;
|
1166 |
|
1225 |
|
1226 |
// $uploaded_bytes = $upload_end + 1;
|
1227 |
|
1228 |
+
// If there was an error, then we re-try the same chunk; we don't move on to the next one. Otherwise, we would need more code to handle potential 'intermediate' failed chunks (in case PHP dies before this method eventually returns false, and thus the intermediate chunk failure never gets detected)
|
1229 |
+
$chunk_index++;
|
1230 |
+
$errors_on_this_chunk = 0;
|
1231 |
+
$upload_start = $upload_end + 1;
|
1232 |
+
$upload_end += isset($new_chunk_size) ? $uploaded_amount + $new_chunk_size - $chunk_size : $uploaded_amount;
|
1233 |
+
$upload_end = min($upload_end, $orig_file_size - 1);
|
1234 |
+
|
1235 |
} else {
|
1236 |
+
|
1237 |
+
$errors_on_this_chunk++;
|
1238 |
+
|
1239 |
+
// Either $uploaded is false-y, or is a WP_Error
|
1240 |
+
if (is_wp_error($uploaded)) {
|
1241 |
+
$this->log("$logname: Chunk upload ($chunk_index) failed (".$uploaded->get_error_code().'): '.$uploaded->get_error_message());
|
1242 |
+
} else {
|
1243 |
+
$this->log("$logname: Chunk upload ($chunk_index) failed");
|
1244 |
+
}
|
1245 |
+
|
1246 |
+
if ($errors_on_this_chunk >= 3) {
|
1247 |
@fclose($fp);
|
1248 |
return false;
|
1249 |
}
|
1250 |
}
|
|
|
|
|
|
|
|
|
|
|
1251 |
|
1252 |
}
|
1253 |
|
1254 |
@fclose($fp);
|
1255 |
|
1256 |
+
}
|
1257 |
|
1258 |
+
// All chunks are uploaded - now combine the chunks
|
1259 |
+
$ret = true;
|
1260 |
+
|
1261 |
+
// The action calls here exist to aid debugging
|
1262 |
+
if (method_exists($caller, 'chunked_upload_finish')) {
|
1263 |
+
do_action('updraftplus_pre_chunked_upload_finish', $file, $caller);
|
1264 |
+
$ret = $caller->chunked_upload_finish($file);
|
1265 |
+
if (!$ret) {
|
1266 |
+
$this->log("$logname - failed to re-assemble chunks");
|
1267 |
+
$this->log(sprintf(__('%s error - failed to re-assemble chunks', 'updraftplus'), $logname), 'error');
|
|
|
|
|
|
|
1268 |
}
|
1269 |
+
do_action('updraftplus_post_chunked_upload_finish', $file, $caller, $ret);
|
1270 |
+
}
|
1271 |
+
|
1272 |
+
if ($ret) {
|
1273 |
+
// We allow chunked_upload_finish to return (int)1 to indicate that it took care of any logging.
|
1274 |
+
if (true === $ret) $this->log("$logname upload: success");
|
1275 |
+
$ret = true;
|
1276 |
+
// UpdraftPlus_RemoteStorage_Addons_Base calls this itself
|
1277 |
+
if (!is_a($caller, 'UpdraftPlus_RemoteStorage_Addons_Base_v2')) $this->uploaded_file($file);
|
1278 |
+
}
|
1279 |
|
1280 |
+
return $ret;
|
1281 |
|
|
|
1282 |
}
|
1283 |
|
1284 |
/**
|
3533 |
|
3534 |
if ($remote_storage->supports_feature('multi_options')) {
|
3535 |
|
3536 |
+
$settings_from_db = UpdraftPlus_Options::get_updraft_option('updraft_'.$method);
|
3537 |
|
3538 |
+
$settings = is_array($settings_from_db) ? $settings_from_db : array();
|
3539 |
|
3540 |
if (!isset($settings['version'])) $settings = $this->update_remote_storage_options_format($method);
|
3541 |
|
3542 |
if (is_wp_error($settings)) {
|
3543 |
+
if (!empty($settings_from_db)) error_log("UpdraftPlus: failed to convert storage options format: $method");
|
3544 |
$settings = array('settings' => array());
|
3545 |
}
|
3546 |
|
@@ -47,10 +47,11 @@ class UpdraftPlus_S3 {
|
|
47 |
private $__accessKey = null; // AWS Access key
|
48 |
private $__secretKey = null; // AWS Secret key
|
49 |
private $__sslKey = null;
|
|
|
50 |
private $_serverSideEncryption = false;
|
51 |
|
52 |
public $endpoint = 's3.amazonaws.com';
|
53 |
-
public $region = '';
|
54 |
public $proxy = null;
|
55 |
|
56 |
// Added to cope with a particular situation where the user had no permission to check the bucket location, which necessitated using DNS-based endpoints.
|
@@ -81,14 +82,16 @@ class UpdraftPlus_S3 {
|
|
81 |
* @param boolean $useSSL Enable SSL
|
82 |
* @param boolean $sslCACert SSL Certificate
|
83 |
* @param string|null $endpoint Endpoint
|
|
|
84 |
* @param string $region Region
|
85 |
-
|
|
|
86 |
*
|
87 |
* @return self
|
88 |
*/
|
89 |
-
public function __construct($accessKey = null, $secretKey = null, $useSSL = true, $sslCACert = true, $endpoint = null, $region = '') {
|
90 |
if (null !== $accessKey && null !== $secretKey) {
|
91 |
-
$this->setAuth($accessKey, $secretKey);
|
92 |
}
|
93 |
$this->useSSL = $useSSL;
|
94 |
$this->sslCACert = $sslCACert;
|
@@ -166,9 +169,10 @@ class UpdraftPlus_S3 {
|
|
166 |
*
|
167 |
* @return void
|
168 |
*/
|
169 |
-
public function setAuth($accessKey, $secretKey) {
|
170 |
$this->__accessKey = $accessKey;
|
171 |
$this->__secretKey = $secretKey;
|
|
|
172 |
}
|
173 |
|
174 |
/**
|
47 |
private $__accessKey = null; // AWS Access key
|
48 |
private $__secretKey = null; // AWS Secret key
|
49 |
private $__sslKey = null;
|
50 |
+
private $__session_token = null; //For Vault temporary users
|
51 |
private $_serverSideEncryption = false;
|
52 |
|
53 |
public $endpoint = 's3.amazonaws.com';
|
54 |
+
public $region = 'us-east-1';
|
55 |
public $proxy = null;
|
56 |
|
57 |
// Added to cope with a particular situation where the user had no permission to check the bucket location, which necessitated using DNS-based endpoints.
|
82 |
* @param boolean $useSSL Enable SSL
|
83 |
* @param boolean $sslCACert SSL Certificate
|
84 |
* @param string|null $endpoint Endpoint
|
85 |
+
* @param string $session_token The session token returned by AWS for temporary credentials access
|
86 |
* @param string $region Region
|
87 |
+
|
88 |
+
* @throws Exception If cURL extension is not present
|
89 |
*
|
90 |
* @return self
|
91 |
*/
|
92 |
+
public function __construct($accessKey = null, $secretKey = null, $useSSL = true, $sslCACert = true, $endpoint = null, $session_token = null, $region = 'us-east-1') {
|
93 |
if (null !== $accessKey && null !== $secretKey) {
|
94 |
+
$this->setAuth($accessKey, $secretKey, $session_token);
|
95 |
}
|
96 |
$this->useSSL = $useSSL;
|
97 |
$this->sslCACert = $sslCACert;
|
169 |
*
|
170 |
* @return void
|
171 |
*/
|
172 |
+
public function setAuth($accessKey, $secretKey, $session_token = null) {
|
173 |
$this->__accessKey = $accessKey;
|
174 |
$this->__secretKey = $secretKey;
|
175 |
+
$this->__session_token = $session_token;
|
176 |
}
|
177 |
|
178 |
/**
|
@@ -58,6 +58,8 @@ class UpdraftPlus_S3_Compat {
|
|
58 |
private $__access_key = null; // AWS Access key
|
59 |
|
60 |
private $__secret_key = null; // AWS Secret key
|
|
|
|
|
61 |
|
62 |
private $__ssl_key = null;
|
63 |
|
@@ -91,16 +93,18 @@ class UpdraftPlus_S3_Compat {
|
|
91 |
/**
|
92 |
* Constructor - if you're not using the class statically
|
93 |
*
|
94 |
-
* @param string $access_key
|
95 |
-
* @param string $secret_key
|
96 |
-
* @param boolean $use_ssl
|
97 |
-
* @param string|boolean $ssl_ca_cert
|
98 |
-
* @param Null|String
|
|
|
|
|
99 |
* @return void
|
100 |
*/
|
101 |
-
public function __construct($access_key = null, $secret_key = null, $use_ssl = true, $ssl_ca_cert = true, $endpoint = null) {
|
102 |
if (null !== $access_key && null !== $secret_key)
|
103 |
-
$this->setAuth($access_key, $secret_key);
|
104 |
|
105 |
$this->use_ssl = $use_ssl;
|
106 |
$this->ssl_ca_cert = $ssl_ca_cert;
|
@@ -126,6 +130,10 @@ class UpdraftPlus_S3_Compat {
|
|
126 |
$opts['region'] = $this->region;
|
127 |
}
|
128 |
|
|
|
|
|
|
|
|
|
129 |
if ($use_ssl) $opts['ssl.certificate_authority'] = $ssl_ca_cert;
|
130 |
|
131 |
$this->client = Aws\S3\S3Client::factory($opts);
|
@@ -134,13 +142,15 @@ class UpdraftPlus_S3_Compat {
|
|
134 |
/**
|
135 |
* Set AWS access key and secret key
|
136 |
*
|
137 |
-
* @param string
|
138 |
-
* @param string
|
|
|
139 |
* @return void
|
140 |
*/
|
141 |
-
public function setAuth($access_key, $secret_key) {
|
142 |
$this->__access_key = $access_key;
|
143 |
$this->__secret_key = $secret_key;
|
|
|
144 |
}
|
145 |
|
146 |
/**
|
58 |
private $__access_key = null; // AWS Access key
|
59 |
|
60 |
private $__secret_key = null; // AWS Secret key
|
61 |
+
|
62 |
+
private $__session_token = null;
|
63 |
|
64 |
private $__ssl_key = null;
|
65 |
|
93 |
/**
|
94 |
* Constructor - if you're not using the class statically
|
95 |
*
|
96 |
+
* @param string $access_key Access key
|
97 |
+
* @param string $secret_key Secret key
|
98 |
+
* @param boolean $use_ssl Enable SSL
|
99 |
+
* @param string|boolean $ssl_ca_cert Certificate authority (true = bundled Guzzle version; false = no verify, 'system' = system version; otherwise, path)
|
100 |
+
* @param Null|String $endpoint Endpoint (if omitted, it will be set by the SDK using the region)
|
101 |
+
* @param Null|String $session_token The session token returned by AWS for temporary credentials access
|
102 |
+
* @param Null|String $region Region. Currently unused, but harmonised with UpdraftPlus_S3 class
|
103 |
* @return void
|
104 |
*/
|
105 |
+
public function __construct($access_key = null, $secret_key = null, $use_ssl = true, $ssl_ca_cert = true, $endpoint = null, $session_token = null, $region = null) {
|
106 |
if (null !== $access_key && null !== $secret_key)
|
107 |
+
$this->setAuth($access_key, $secret_key, $session_token);
|
108 |
|
109 |
$this->use_ssl = $use_ssl;
|
110 |
$this->ssl_ca_cert = $ssl_ca_cert;
|
130 |
$opts['region'] = $this->region;
|
131 |
}
|
132 |
|
133 |
+
if ($session_token) {
|
134 |
+
$opts['token'] = $session_token;
|
135 |
+
}
|
136 |
+
|
137 |
if ($use_ssl) $opts['ssl.certificate_authority'] = $ssl_ca_cert;
|
138 |
|
139 |
$this->client = Aws\S3\S3Client::factory($opts);
|
142 |
/**
|
143 |
* Set AWS access key and secret key
|
144 |
*
|
145 |
+
* @param string $access_key Access key
|
146 |
+
* @param string $secret_key Secret key
|
147 |
+
* @param null|string $session_token The session token returned by AWS for temporary credentials access
|
148 |
* @return void
|
149 |
*/
|
150 |
+
public function setAuth($access_key, $secret_key, $session_token = null) {
|
151 |
$this->__access_key = $access_key;
|
152 |
$this->__secret_key = $secret_key;
|
153 |
+
$this->__session_token = $session_token;
|
154 |
}
|
155 |
|
156 |
/**
|
@@ -199,6 +199,26 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
|
|
199 |
}
|
200 |
}
|
201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
if (0 == count($err) && 0 == count($warn)) {
|
203 |
$mess_first = __('The backup archive files have been successfully processed. Now press Restore again to proceed.', 'updraftplus');
|
204 |
} elseif (0 == count($err)) {
|
199 |
}
|
200 |
}
|
201 |
|
202 |
+
// Check this backup set has a incremental_sets array e.g may have been created before this array was introduced
|
203 |
+
if (isset($backups[$timestamp]['incremental_sets'])) {
|
204 |
+
$incremental_sets = array_keys($backups[$timestamp]['incremental_sets']);
|
205 |
+
// Check if there are more than one timestamp in the incremental set
|
206 |
+
if (1 < count($incremental_sets)) {
|
207 |
+
$incremental_select_html = '<label>'.__('Select your incremental restore point', 'updraftplus').': </label>';
|
208 |
+
$incremental_select_html .= '<select name="updraft_incremental_restore_point" id="updraft_incremental_restore_point">';
|
209 |
+
$first_timestamp = $incremental_sets[0];
|
210 |
+
|
211 |
+
foreach ($incremental_sets as $timestamp) {
|
212 |
+
$pretty_date = get_date_from_gmt(gmdate('Y-m-d H:i:s', (int) $timestamp), 'M d, Y G:i');
|
213 |
+
$esc_pretty_date = esc_attr($pretty_date);
|
214 |
+
$incremental_select_html .= '<option value="'.$timestamp.'" '.selected($timestamp, $first_timestamp, false).'>'.$esc_pretty_date.'</option>';
|
215 |
+
}
|
216 |
+
|
217 |
+
$incremental_select_html .= '</select>';
|
218 |
+
$info['addui'] = empty($info['addui']) ? $incremental_select_html : $info['addui'].'<br>'.$incremental_select_html;
|
219 |
+
}
|
220 |
+
}
|
221 |
+
|
222 |
if (0 == count($err) && 0 == count($warn)) {
|
223 |
$mess_first = __('The backup archive files have been successfully processed. Now press Restore again to proceed.', 'updraftplus');
|
224 |
} elseif (0 == count($err)) {
|
@@ -1454,27 +1454,6 @@ jQuery(document).ready(function($) {
|
|
1454 |
|
1455 |
$('#updraft_webdav_url_' + instance_id).val(updraft_webdav_url);
|
1456 |
}
|
1457 |
-
if (updraft_webdav_settings['host'].indexOf("/") >= 0) {
|
1458 |
-
$('#updraft_webdav_host_error').show();
|
1459 |
-
} else {
|
1460 |
-
$('#updraft_webdav_host_error').hide();
|
1461 |
-
}
|
1462 |
-
|
1463 |
-
if (0 == updraft_webdav_settings['path'].indexOf("/") || "" === updraft_webdav_settings['path']) {
|
1464 |
-
slash = "";
|
1465 |
-
}
|
1466 |
-
|
1467 |
-
if ("" === updraft_webdav_settings['user'] || "" === updraft_webdav_settings['pass']) {
|
1468 |
-
colon = "";
|
1469 |
-
}
|
1470 |
-
|
1471 |
-
if ("" === updraft_webdav_settings['host'] || "" === updraft_webdav_settings['port']) {
|
1472 |
-
colon_port = "";
|
1473 |
-
}
|
1474 |
-
|
1475 |
-
updraft_webdav_url = updraft_webdav_settings['webdav'] + updraft_webdav_settings['user'] + colon + encodeURIComponent(updraft_webdav_settings['pass']) + host +encodeURIComponent(updraft_webdav_settings['host']) + colon_port + updraft_webdav_settings['port'] + slash + updraft_webdav_settings['path'];
|
1476 |
-
|
1477 |
-
$('#updraft_webdav_url_' + instance_id).val(updraft_webdav_url);
|
1478 |
});
|
1479 |
|
1480 |
$('#updraft-navtab-backups-content').on('click', '.updraft_existing_backups .updraft_existing_backups_row', function(e) {
|
1454 |
|
1455 |
$('#updraft_webdav_url_' + instance_id).val(updraft_webdav_url);
|
1456 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1457 |
});
|
1458 |
|
1459 |
$('#updraft-navtab-backups-content').on('click', '.updraft_existing_backups .updraft_existing_backups_row', function(e) {
|
@@ -1,3 +1,3 @@
|
|
1 |
function updraft_send_command(t,e,a,r){default_options={json_parse:!0,alert_on_error:!0,action:"updraft_ajax",nonce:updraft_credentialtest_nonce,nonce_key:"nonce",timeout:null,async:!0,type:"POST"},"undefined"==typeof r&&(r={});for(var n in default_options)r.hasOwnProperty(n)||(r[n]=default_options[n]);var o={action:r.action,subaction:t};if(o[r.nonce_key]=r.nonce,"object"==typeof e)for(var u in e)o[u]=e[u];else o.action_data=e;var d={type:r.type,url:ajaxurl,data:o,success:function(t,e){if(r.json_parse){try{var n=ud_parse_json(t)}catch(o){return console.log(o),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t))}"function"==typeof a&&a(n,e,t)}else"function"==typeof a&&a(t,e)},error:function(t,e,a){"function"==typeof r.error_callback?r.error_callback(t,e,a):(console.log("updraft_send_command: error: "+e+" ("+a+")"),console.log(t))},dataType:"text",async:r.async};null!=r.timeout&&(d.timeout=r.timeout),jQuery.ajax(d)}function updraft_delete(t,e,a){jQuery("#updraft_delete_timestamp").val(t),jQuery("#updraft_delete_nonce").val(e),a?jQuery("#updraft-delete-remote-section, #updraft_delete_remote").removeAttr("disabled").show():jQuery("#updraft-delete-remote-section, #updraft_delete_remote").hide().attr("disabled","disabled"),t.indexOf(",")>-1?(jQuery("#updraft_delete_question_singular").hide(),jQuery("#updraft_delete_question_plural").show()):(jQuery("#updraft_delete_question_plural").hide(),jQuery("#updraft_delete_question_singular").show()),jQuery("#updraft-delete-modal").dialog("open")}function updraft_remote_storage_tab_activation(t){jQuery(".updraftplusmethod").hide(),jQuery(".remote-tab").data("active",!1),jQuery(".remote-tab").removeClass("nav-tab-active"),jQuery(".updraftplusmethod."+t).show(),jQuery(".remote-tab-"+t).data("active",!0),jQuery(".remote-tab-"+t).addClass("nav-tab-active")}function updraft_check_overduecrons(){updraft_send_command("check_overdue_crons",null,function(t){t&&t.hasOwnProperty("m")&&jQuery("#updraft-insert-admin-warning").html(t.m)},{alert_on_error:!1})}function updraft_remote_storage_tabs_setup(){var t=0,e=jQuery(".updraft_servicecheckbox:checked");jQuery(e).each(function(a,r){var n=jQuery(r).val();"updraft_servicecheckbox_none"!=jQuery(r).attr("id")&&t++,jQuery(".remote-tab-"+n).show(),a==jQuery(e).length-1&&updraft_remote_storage_tab_activation(n)}),t>0&&jQuery(".updraftplusmethod.none").hide(),jQuery(document).keyup(function(t){if((32===t.keyCode||13===t.keyCode)&&jQuery(document.activeElement).is("input.labelauty + label")){var e=jQuery(document.activeElement).attr("for");e&&jQuery("#"+e).change()}}),jQuery(".updraft_servicecheckbox").change(function(){var e=jQuery(this).attr("id");if("updraft_servicecheckbox_"==e.substring(0,24)){var a=e.substring(24);null!=a&&""!=a&&(jQuery(this).is(":checked")?(t++,jQuery(".remote-tab-"+a).fadeIn(),updraft_remote_storage_tab_activation(a)):(t--,jQuery(".remote-tab-"+a).hide(),1==jQuery(".remote-tab-"+a).data("active")&&updraft_remote_storage_tab_activation(jQuery(".remote-tab:visible").last().attr("name"))))}t<=0?jQuery(".updraftplusmethod.none").fadeIn():jQuery(".updraftplusmethod.none").hide()}),jQuery(".updraft_servicecheckbox:not(.multi)").change(function(){var t=jQuery(this).attr("value");jQuery(this).is(":not(:checked)")?(jQuery(".updraftplusmethod."+t).hide(),jQuery(".updraftplusmethod.none").fadeIn()):jQuery(".updraft_servicecheckbox").not(this).prop("checked",!1)});var a=jQuery(".updraft_servicecheckbox");"function"==typeof a.labelauty&&a.labelauty()}function updraft_remote_storage_test(t,e,a){var r,n;a?(r=jQuery("#updraft-"+t+"-test-"+a),n=".updraftplusmethod."+t+"-"+a):(r=jQuery("#updraft-"+t+"-test"),n=".updraftplusmethod."+t);var o=r.data("method_label");r.html(updraftlion.testing_settings.replace("%s",o));var u={method:t};jQuery("#updraft-navtab-settings-content "+n+" input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test"),r=jQuery(e).attr("type");if(a){r||(console.log("UpdraftPlus: settings test input item with no type found"),console.log(e),r="text");var n=null;"checkbox"==r?n=jQuery(e).is(":checked")?1:0:"text"==r||"password"==r?n=jQuery(e).val():(console.log("UpdraftPlus: settings test input item with unrecognised type ("+r+") found"),console.log(e)),u[a]=n}}),jQuery("#updraft-navtab-settings-content "+n+" textarea[data-updraft_settings_test], #updraft-navtab-settings-content "+n+" select[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test");u[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",u,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,u)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))})}function backupnow_whichfiles_checked(t){return jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(e){if(jQuery(this).is(":checked")){var a=jQuery(this).attr("name");if("updraft_include_"==a.substring(0,16)){var r=a.substring(16);""!=t&&(t+=","),t+=r}}}),t}function backupnow_whichtables_checked(t){var e=!1;return jQuery('#backupnow_database_moreoptions input[type="checkbox"]').each(function(t){if(!jQuery(this).is(":checked"))return void(e=!0)}),t=jQuery("input[name^='updraft_include_tables_']").serializeArray(),!e||t}function updraft_deleteallselected(){var t=0,e="",a="",r="";jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").each(function(n){t++;var o=jQuery(this).data("nonce");a&&(a+=","),a+=o;var u=jQuery(this).data("key");e&&(e+=","),e+=u;var d=jQuery(this).find(".updraftplus-remove").data("hasremote");r&&(r+=","),r+=d}),updraft_delete(e,a,r)}function updraft_openrestorepanel(t){updraft_console_focussed_tab=2,updraft_historytimertoggle(t),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-backups-content").show(),jQuery("#updraft-navtab-backups").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){jQuery("#updraft-migrate-modal").dialog("close"),jQuery('#updraft-navtab-backups-content .updraft_existing_backups button[data-backup_timestamp="'+t+'"]').click()}function updraft_restore_setoptions(t){var e=0;jQuery('input[name="updraft_restore[]"]').each(function(a,r){var n=jQuery(r).val(),o=n+"=([0-9,]+)",u=new RegExp(o),d=t.match(u);d?(jQuery(r).removeAttr("disabled").data("howmany",d[1]).parent().show(),e++,"db"==n&&(e+=4.5),jQuery(r).is(":checked")&&jQuery("#updraft_restorer_"+n+"options").show()):jQuery(r).attr("disabled","disabled").parent().hide()});var a=t.match(/dbcrypted=1/);a?jQuery(".updraft_restore_crypteddb").show():jQuery(".updraft_restore_crypteddb").hide();var r=t.match(/meta_foreign=([12])/);r?jQuery("#updraft_restore_meta_foreign").val(r[1]):jQuery("#updraft_restore_meta_foreign").val("0");var n=336+20*e;jQuery("#updraft-restore-modal").dialog("option","height",n)}function updraft_backup_dialog_open(){jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed?window.confirm(updraftlion.unsavedsettingsbackup)&&(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open")):(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open"))}function updraft_migrate_dialog_open(){jQuery("#updraft_migrate_modal_alt").hide(),updraft_migrate_modal_default_buttons={},updraft_migrate_modal_default_buttons[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-migrate-modal").dialog("option","buttons",updraft_migrate_modal_default_buttons),jQuery("#updraft-migrate-modal").dialog("open"),jQuery("#updraft_migrate_modal_main").show()}function updraft_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&updraft_activejobs_update(!0))}function updraft_backupnow_inpage_go(t,e,a,r,n,o,u){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,u="undefined"==typeof u?updraftlion.automaticbackupbeforeupdate:u,updraft_console_focussed_tab=1,updraft_inpage_success_callback=t;var d={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",d),jQuery("#updraft_inpage_prebackup").hide(),s&&jQuery("#updraft-backupnow-inpage-modal").dialog("open"),jQuery("#updraft_inpage_backup").show(),updraft_activejobslist_backupnownonce_only=1,updraft_inpage_hasbegun=0,updraft_backupnow_go(r,n,o,e,a,u,"")}function updraft_activejobs_update(t){var e=(new Date).getTime();if(!(0==t&&e<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=e+5500;var a="";jQuery(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,e){var r=jQuery(e).data("downloaderfor");"object"==typeof r&&(""!=a&&(a+=":"),a=a+r.base+","+r.nonce+","+r.what+","+r.index)});var r={downloaders:a};try{jQuery("#updraft-poplog").dialog("isOpen")&&(r.log_fetch=1,r.log_nonce=updraft_poplog_log_nonce,r.log_pointer=updraft_poplog_log_pointer)}catch(n){console.log(n)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(r.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",r,function(t){try{resp=ud_parse_json(t),resp.hasOwnProperty("l")&&(resp.l?(jQuery("#updraft_lastlogmessagerow").show(),jQuery("#updraft_lastlogcontainer").html(resp.l)):(jQuery("#updraft_lastlogmessagerow").hide(),jQuery("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var n=-1;if(jQuery("#updraft_activejobs").html(resp.j),jQuery("#updraft_activejobs .updraft_jobtimings").each(function(t,a){var r=jQuery(a);if(r.data("lastactivity")&&r.data("jobid")){var o=r.data("jobid"),u=r.data("lastactivity");(n==-1||u<n)&&(n=u);var d=r.data("nextresumptionafter"),s=r.data("nextresumption");e=(new Date).getTime(),u>50&&s>0&&d<-30&&e>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||s!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=s,updraft_last_forced_jobid=o,updraft_last_forced_when=e,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+s),updraft_send_command("forcescheduledresumption",{resumption:s,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),e=(new Date).getTime(),updraft_activejobs_nextupdate=e+18e4,1==updraft_page_is_visible&&(1==updraft_console_focussed_tab||2==updraft_console_focussed_tab&&""!=a)&&(updraft_activejobs_nextupdate=n>-1?n<5?e+1750:e+5e3:lastlog_lastdata==t?e+7500:e+1750),lastlog_lastdata=t,null!=resp.j&&""!=resp.j?(jQuery("#updraft_activejobsrow").show(),r.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly).length?(updraft_inpage_hasbegun=1,console.log("UpdraftPlus: the start of the requested backup job has been detected")):!updraft_inpage_hasbegun&&updraft_activejobslist_backupnownonce_only&&jQuery(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=jQuery(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,r.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):jQuery("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){jQuery("#updraft_backup_started").slideUp()},3500)):jQuery("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),jQuery("#updraft_activejobsrow").hide()),lastlog_jobs=resp.j,null!=resp.ds&&""!=resp.ds&&jQuery(resp.ds).each(function(e,a){""!=a.base&&updraft_downloader_status_update(a.base,a.timestamp,a.what,a.findex,a,t)}),null!=resp.u&&""!=resp.u&&jQuery("#updraft-poplog").dialog("isOpen")){var o=resp.u;if(o.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=o.pointer,null!=o.log&&""!=o.log)){var u=jQuery("#updraft-poplog").scrollTop();jQuery("#updraft-poplog-content").append(o.log),updraft_poplog_lastscroll!=u&&updraft_poplog_lastscroll!=-1||(jQuery("#updraft-poplog").scrollTop(jQuery("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=jQuery("#updraft-poplog").scrollTop())}}}catch(d){console.log(updraftlion.unexpectedresponse+" "+t),console.log(d)}},{json_parse:!1,type:"GET"})}}function updraft_popuplog(t){var e=updraftlion.loading_log_file;t&&(e+=" (log."+t+".txt)"),jQuery("#updraft-poplog").dialog("option","title",e),jQuery("#updraft-poplog-content").html("<em>"+e+" ...</em> "),jQuery("#updraft-poplog").dialog("open"),updraft_send_command("get_log",t,function(t){updraft_poplog_log_pointer=t.pointer,updraft_poplog_log_nonce=t.nonce;var e="?page=updraftplus&action=downloadlog&force_download=1&updraftplus_backup_nonce="+t.nonce;jQuery("#updraft-poplog-content").html(t.log);var a={};a[updraftlion.downloadlogfile]=function(){window.location.href=e},a[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-poplog").dialog("option","buttons",a),jQuery("#updraft-poplog").dialog("option","title","log."+t.nonce+".txt"),updraft_poplog_lastscroll=-1},{type:"GET",timeout:6e4,error_callback:function(t,e,a){var r=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(r),console.log(t)}})}function updraft_showlastbackup(){updraft_send_command("get_fragment","last_backup_html",function(t){response=t.output,lastbackup_laststatus==response?setTimeout(function(){updraft_showlastbackup()},7e3):jQuery("#updraft_last_backup").html(response),lastbackup_laststatus=response},{type:"GET"})}function updraft_historytimertoggle(t){updraft_historytimer&&1!=t?(clearTimeout(updraft_historytimer),updraft_historytimer=0):(updraft_updatehistory(0,0),updraft_historytimer=setInterval(function(){updraft_updatehistory(0,0)},3e4),calculated_diskspace||(updraftplus_diskspace(),calculated_diskspace=1))}function updraft_updatehistory(t,e){var a=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=a+30;else if(a<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+a.toString()+" < "+updraft_historytimer_notbefore.toString());1==t&&(1==e?(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanningremote+"</em></p>")):(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanning+"</em></p>")));var r=e?"remotescan":!!t&&"rescan";updraft_send_command("rescan",r,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_modal")&&t.migrate_modal&&jQuery("#updraft_migrate_modal_main").replaceWith(t.migrate_modal),null!=t.n&&jQuery("#updraft-navtab-backups").html(t.n),null!=t.t){if(null!=t.cksum){if(t.cksum==updraft_history_lastchecksum)return;updraft_history_lastchecksum=t.cksum}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html(t.t),t.data&&console.log(t.data)}})}function updraft_intervals_monthly_or_not(t,e){var a="#updraft-navtab-settings-content #"+t,r=jQuery(a+" option").length,n="monthly"==e,o=!1;if(r>10&&(o=!0),n||o){if(n&&o)return void("monthly"==e&&(jQuery(".updraft_monthly_extra_words_"+t).remove(),jQuery(a).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>")));if(jQuery(".updraft_monthly_extra_words_"+t).remove(),n){updraft_interval_week_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.mdayselector).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>");var u=updraft_interval_month_val===!1?1:updraft_interval_month_val;u-=1,jQuery(a+" option:eq("+u+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var d=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+d+")").prop("selected",!0)}}}function updraft_check_same_times(){var t=0,e=jQuery("#updraft-navtab-settings-content .updraft_interval").val();"manual"==e?jQuery("#updraft-navtab-settings-content .updraft_files_timings").hide():jQuery("#updraft-navtab-settings-content .updraft_files_timings").show(),"weekly"==e||"fortnightly"==e||"monthly"==e?(updraft_intervals_monthly_or_not("updraft_startday_files",e),jQuery("#updraft-navtab-settings-content #updraft_startday_files").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_files").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_files").hide());var a=jQuery("#updraft-navtab-settings-content .updraft_interval_database").val();"manual"==a&&(t=1,jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide()),"weekly"==a||"fortnightly"==a||"monthly"==a?(updraft_intervals_monthly_or_not("updraft_startday_db",a),jQuery("#updraft-navtab-settings-content #updraft_startday_db").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_db").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_db").hide()),a==e?(jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide(),0==t?jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").show():jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide()):(jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide(),0==t&&jQuery("#updraft-navtab-settings-content .updraft_db_timings").show())}function updraft_activejobs_delete(t){updraft_send_command("activejobs_delete",t,function(e){"Y"==e.ok?jQuery("#updraft-jobid-"+t).html(e.m).fadeOut("slow").remove():"N"==e.ok?alert(e.m):(alert(updraftlion.unexpectedresponse),console.log(e))})}function updraftplus_diskspace_entity(t){jQuery("#updraft_diskspaceused_"+t).html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:t},function(e){jQuery("#updraft_diskspaceused_"+t).html(e.output)},{type:"GET"})}function updraft_iframe_modal(t,e){var a=780,r=500;jQuery("#updraft-iframe-modal-innards").html('<iframe width="100%" height="430px" src="'+ajaxurl+"?action=updraft_ajax&subaction="+t+"&nonce="+updraft_credentialtest_nonce+'"></iframe>'),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("open")}function updraft_html_modal(t,e,a,r){jQuery("#updraft-iframe-modal-innards").html(t);var n={};a<450&&(n[updraftlion.close]=function(){jQuery(this).dialog("close")}),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("option","buttons",n).dialog("open")}function updraftplus_diskspace(){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html(t.output)},{type:"GET"})}function updraftplus_deletefromserver(t,e,a){a||(a=0);var r={stage:"delete",timestamp:t,type:e,findex:a};updraft_send_command("updraft_download_backup",r,null,{action:"updraft_download_backup",nonce:updraft_download_nonce,nonce_key:"_wpnonce"})}function updraftplus_downloadstage2(t,e,a){location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"×tamp="+t+"&type="+e+"&stage=2&findex="+a+"&action=updraft_download_backup"}function updraftplus_show_contents(t,e,a){var r='<div id="updraft_zip_files_container" class="hidden-in-updraftcentral" style="clear:left;"><div id="updraft_zip_info_container"><p><span id="updraft_zip_path_text">'+updraftlion.zip_file_contents_info+'</span> - <span id="updraft_zip_size_text"></span></p>'+updraftlion.browse_download_link+'</div><div id="updraft_zip_files_jstree_container"><input type="search" id="zip_files_jstree_search" name="zip_files_jstree_search" placeholder="'+updraftlion.search+'"><div id="updraft_zip_files_jstree"></div></div></div>';updraft_html_modal(r,updraftlion.zip_file_contents,780,500),zip_files_jstree("zipbrowser",t,e,a)}function zip_files_jstree(t,e,a,r){jQuery("#updraft_zip_files_jstree").jstree({core:{multiple:!1,data:function(n,o){updraft_send_command("get_jstree_directory_nodes",{entity:t,node:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):o.call(this,t.nodes)})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["search","sort"]}),jQuery("#updraft_zip_files_jstree").on("ready.jstree",function(t,e){jQuery("#updraft-iframe-modal").dialog("option","title",updraftlion.zip_file_contents+": "+e.instance.get_node("#").children[0])});var n=!1;jQuery("#zip_files_jstree_search").keyup(function(){n&&clearTimeout(n),n=setTimeout(function(){var t=jQuery("#zip_files_jstree_search").val();jQuery("#updraft_zip_files_jstree").jstree(!0).search(t)},250)}),jQuery("#updraft_zip_files_jstree").on("changed.jstree",function(t,e){jQuery("#updraft_zip_path_text").text(e.node.li_attr.path),e.node.li_attr.size?(jQuery("#updraft_zip_size_text").text(e.node.li_attr.size),jQuery("#updraft_zip_download_item").show()):(jQuery("#updraft_zip_size_text").text(""),jQuery("#updraft_zip_download_item").hide())}),jQuery("#updraft_zip_download_item").click(function(t){t.preventDefault();var n=jQuery("#updraft_zip_path_text").text();updraft_send_command("get_zipfile_download",{path:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):t.hasOwnProperty("path")?location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"×tamp="+e+"&type="+a+"&stage=2&findex="+r+"&filepath="+t.path+"&action=updraft_download_backup":alert(updraftlion.download_timeout)})})}function updraft_downloader(t,e,a,r,n,o,u){"string"!=typeof n&&(n=n.toString());for(var n=n.split(","),d=0;d<n.length;d++){var s=t+e+"_"+a+"_"+n[d],i="."+s,p=parseInt(n[d]);p++;var l=0==n[d]?"":" ("+p+")";if(!jQuery(i).length){var c=o?o:e;jQuery(r).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+s+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+" "+a+l+" ("+c+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+s+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(i).data("downloaderfor",{base:t,nonce:e,what:a,index:n[d]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)}jQuery(i).data("lasttimebegan",(new Date).getTime()),u=!!u;var f=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+n[d]).data("wp_nonce").toString(),_={type:a,timestamp:e,findex:n[d]},g={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:f,timeout:1e4,async:u};updraft_send_command("updraft_download_backup",_,function(t){},g)}return!1}function ud_parse_json(t){t.charAt(0),t.charAt(t.length-1);try{var e=JSON.parse(t);return e}catch(a){console.log("UpdraftPlus: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(t)}var r=t.indexOf("{"),n=t.lastIndexOf("}");if(r>-1&&n>-1){var o=t.slice(r,n+1);try{var u=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),u}catch(a){throw console.log("UpdraftPlus: Exception when trying to parse JSON (2)"),a}}throw"UpdraftPlus: could not parse the JSON"}function updraft_restorer_checkstage2(t){var e=jQuery("#ud_downloadstatus2 .file").length;return e>0?void(t&&alert(updraftlion.stilldownloading)):(jQuery("#updraft-restore-modal-stage2a").html(updraftlion.processing),void updraft_send_command("restore_alldownloaded",{timestamp:jQuery("#updraft_restore_timestamp").val(),restoreopts:jQuery("#updraft_restore_form").serialize()},function(t){var e=null;jQuery("#updraft_restorer_restore_options").val("");try{var a=ud_parse_json(t);if(null==a)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);var r=a.m;if(""!=a.w&&(r=r+"<p><strong>"+updraftlion.warnings+"</strong><br>"+a.w+"</p>"),""!=a.e?r=r+"<p><strong>"+updraftlion.errors+"</strong><br>"+a.e+"</p>":updraft_restore_stage=3,a.hasOwnProperty("i")){try{if(e=ud_parse_json(a.i),e.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var n=e.addui;r+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+n+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete e.addui,a.i=JSON.stringify(e))}}catch(o){console.log(o),console.log(a)}jQuery("#updraft_restorer_backup_info").val(a.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(r),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(o){console.log(t),console.log(o),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+t).html()}},{json_parse:!1}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e,a,r,n,o){var u=t+e+"_"+a+"_"+r,d="."+u,s=0;if(null!=n.e)jQuery(d+" .raw").html("<strong>"+updraftlion.error+"</strong> "+n.e),console.log(n);else if(null!=n.p){if(jQuery(d+"_st .dlfileprogress").width(n.p+"%"),null!=n.a&&n.a>0){var i=(new Date).getTime(),p=jQuery(d).data("lasttimebegan"),l=i-p;if(n.a>90&&l>6e4){console.log(e+" "+a+" "+r+": restarting download: file_age="+n.a+", sincelastrestart_ms="+l),jQuery(d).data("lasttimebegan",(new Date).getTime());var c=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+r),f={type:a,timestamp:e,findex:r},_={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:c.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",f,function(t){},_),jQuery(d).data("lasttimebegan",(new Date).getTime())}}if(null!=n.m)if(n.p>=100&&"udrestoredlstatus_"==t)jQuery(d+" .raw").html(n.m),jQuery(d).fadeOut("slow",function(){jQuery(this).remove(),updraft_restorer_checkstage2(0)});else if(n.p<100||"uddlstatus_"!=t)jQuery(d+" .raw").html(n.m);else{var g=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button type="button" onclick="updraftplus_downloadstage2(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button id="uddownloaddelete_'+e+"_"+a+'" type="button" onclick="updraftplus_deletefromserver(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.deletefromserver+"</button>";n.hasOwnProperty("can_show_contents")&&n.can_show_contents&&(g+=' <button type="button" onclick="updraftplus_show_contents(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(d+" .raw").html(g)}}else null!=n.m?jQuery(d+" .raw").html(n.m):(jQuery(d+" .raw").html(updraftlion.jsonnotunderstood+" ("+o+")"),s=1);return s}function updraft_backupnow_go(t,e,a,r,n,o,u){jQuery("#updraft_backup_started").html("<em>"+updraftlion.requeststart+"</em>").slideDown(""),setTimeout(function(){jQuery("#updraft_backup_started").fadeOut("slow")},75e3);var d={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};""!=r&&(d.onlythisfileentity=r),""!=u&&(d.onlythesetableentities=u),updraft_send_command("backupnow",d,function(t){jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),setTimeout(function(){updraft_activejobs_update(!0)},500)})}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var updraft_restore_stage=1,lastlog_lastmessage="",lastlog_lastdata="",lastlog_jobs="",updraft_activejobs_nextupdate=(new Date).getTime()+1e3,updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_settings_form_changed=!1;window.onbeforeunload=function(t){if(updraft_settings_form_changed)return updraftlion.unsavedsettings},"undefined"!=typeof document.hidden&&document.addEventListener("visibilitychange",function(){updraft_check_page_visibility(0)},!1),updraft_check_page_visibility(1);var updraft_poplog_log_nonce,updraft_poplog_log_pointer=0,updraft_poplog_lastscroll=-1,updraft_last_forced_jobid=-1,updraft_last_forced_resumption=-1,updraft_last_forced_when=-1,updraft_backupnow_nonce="",updraft_activejobslist_backupnownonce_only=0,updraft_inpage_hasbegun=0,updraft_historytimer=0,calculated_diskspace=0,updraft_historytimer_notbefore=0,updraft_history_lastchecksum=!1,updraft_interval_week_val=!1,updraft_interval_month_val=!1;"undefined"!=typeof updraft_siteurl&&setInterval(function(){jQuery.get(updraft_siteurl+"/wp-cron.php")},21e4);var lastlog_lastmessage="";jQuery(document).ajaxError(function(t,e,a,r){if(null!=r&&""!=r&&null!=e.responseText&&""!=e.responseText&&(console.log("Error caught by UpdraftPlus ajaxError handler (follows) for "+a.url),console.log(r),0==a.url.search(ajaxurl)))if(a.url.search("subaction=downloadstatus")>=0){var n=a.url.match(/timestamp=\d+/),o=a.url.match(/type=[a-z]+/),u=a.url.match(/findex=\d+/),d=a.url.match(/base=[a-z_]+/);if(u=u instanceof Array?parseInt(u[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",d=d instanceof Array?d[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=d&&""!=o&&n>0){var s=d+n+"_"+o+"_"+u;jQuery("."+s+" .raw").html("<strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode)}}else a.url.search("subaction=restore_alldownloaded")>=0&&jQuery("#updraft-restore-modal-stage2a").append("<br><strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode+": "+r)}),jQuery(document).ready(function(t){function e(e){t('.expertmode .advanced_settings_container .advanced_tools:not(".'+e+'")').hide(),t(".expertmode .advanced_settings_container .advanced_tools."+e).fadeIn("slow"),t(".expertmode .advanced_settings_container .advanced_tools_button:not(#"+e+")").removeClass("active"),t(".expertmode .advanced_settings_container .advanced_tools_button#"+e).addClass("active")}function a(t){var e=Handlebars.compile(updraftlion.remote_storage_templates[t]),a=updraftlion.remote_storage_options[t]["default"];a.instance_id="s-"+r(32),a.instance_enabled=1;var n=e(a);jQuery(n).hide().insertAfter("."+t+"_add_instance_container:first").show("slow")}function r(t){for(var e="",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=0;r<t;r++)e+=a.charAt(Math.floor(Math.random()*a.length));return e}function n(t){var e=!!jQuery("#updraftcentral_mothership_other").is(":checked");e?(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!1),t?jQuery("#updraftcentral_keycreate_mothership_firewalled_container").show():(jQuery(".updraftcentral_wizard_self_hosted_stage2").show(),
|
2 |
-
jQuery("#updraftcentral_keycreate_mothership_firewalled_container").slideDown(),jQuery("#updraftcentral_keycreate_mothership").focus())):(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!0),t||(jQuery(".updraftcentral_wizard_self_hosted_stage2").hide(),o()))}function o(){jQuery("#updraftcentral_wizard_stage1_error").text("");var t="";if(jQuery("#updraftcentral_mothership_updraftpluscom").is(":checked"))jQuery(".updraftcentral_keycreate_description").hide(),t="updraftplus.com";else if(jQuery("#updraftcentral_mothership_other").is(":checked")){jQuery(".updraftcentral_keycreate_description").show();var e=jQuery("#updraftcentral_keycreate_mothership").val();if(""==e)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_empty_url);try{var a=new URL(e);t=a.hostname}catch(r){if("undefined"==typeof URL&&(t=jQuery("<a>").prop("href",e).prop("hostname")),!t||"undefined"!=typeof URL)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_invalid_url)}}jQuery("#updraftcentral_keycreate_description").val(t),jQuery(".updraftcentral_wizard_stage1").hide(),jQuery(".updraftcentral_wizard_stage2").show()}function u(e,a,r,n){jQuery("#updraft-delete-waitwarning").slideDown();var o=e,d=a,s=r,i=n,p=jQuery("#updraft_delete_timestamp").val().split(","),l=jQuery("#updraft_delete_form").serializeArray(),c={};t.each(l,function(){void 0!==c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c.remote_delete_limit=updraftlion.remote_delete_limit,delete c.action,delete c.subaction,delete c.nonce,updraft_send_command("deleteset",c,function(t){if(t.hasOwnProperty("result")&&null!=t.result)if("error"==t.result)alert(updraftlion.error+" "+t.message);else if("continue"==t.result)o=o+t.backup_local+t.backup_remote,d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,jQuery("#updraft-deleted-files-total").text(o+" "+updraftlion.remote_files_deleted),u(o,d,s,i);else if("success"==t.result){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp(),t.hasOwnProperty("count_backups")&&jQuery("#updraft-navtab-backups").html(updraftlion.existing_backups+" ("+t.count_backups+")");for(var e=0;e<p.length;e++){var a=p[e];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+a).slideUp().remove()}jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length<1&&jQuery("#ud_massactions").hide(),updraft_history_lastchecksum=!1,jQuery("#updraft-delete-modal").dialog("close"),d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,alert(t.set_message+" "+i+"\n"+t.local_message+" "+d+"\n"+t.remote_message+" "+s)}})}function d(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideUp()}function s(){var t=new plupload.Uploader(updraft_plupload_config);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){if(!/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+?)?(\.(zip|gz|gz\.crypt))?$/i.test(e.name)&&!/^log\.([0-9a-f]{12})\.txt$/.test(e.name)){for(var a=!1,r=0;r<updraft_accept_archivename.length;r++)if(updraft_accept_archivename[r].test(e.name))var a=!0;if(!a)return/\.(zip|tar|tar\.gz|tar\.bz2)$/i.test(e.name)||/\.sql(\.gz)?$/i.test(e.name)?(jQuery("#updraft-message-modal-innards").html("<p><strong>"+e.name+"</strong></p> "+updraftlion.notarchive2),jQuery("#updraft-message-modal").dialog("open")):alert(e.name+": "+updraftlion.notarchive),void t.removeFile(e)}jQuery("#filelist").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>')}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100))),e.size==e.loaded&&(jQuery("#"+e.id).html('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(parseInt(e.size*e.percent/100))+"</span>/"+plupload.formatSize(e.size)+") - "+updraftlion.complete+"</div>"),jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"))}),t.bind("Error",function(t,e){console.log(e);var a;a="-200"==e.code?"\n"+updraftlion.makesure2:updraftlion.makesure;var r=updraftlion.uploaderr+" (code "+e.code+") : "+e.message;e.hasOwnProperty("status")&&e.status&&(r+=" ("+updraftlion.http_code+" "+e.status+")"),e.hasOwnProperty("response")&&(console.log("UpdraftPlus: plupload error: "+e.response),e.response.length<100&&(r+=" "+updraftlion.error+" "+e.response+"\n")),r+=" "+a,alert(r)}),t.bind("FileUploaded",function(t,e,a){if("200"==a.status)try{resp=ud_parse_json(a.response),resp.e?alert(updraftlion.uploaderror+" "+resp.e):resp.dm?(alert(resp.dm),updraft_updatehistory(1,0)):resp.m?updraft_updatehistory(1,0):alert("Unknown server response: "+a.response)}catch(r){console.log(a),alert(updraftlion.jsonnotunderstood)}else alert("Unknown server response status: "+a.code),console.log(a)})}function i(t){params={uri:jQuery("#updraftplus_httpget_uri").val()},params.curl=t,updraft_send_command("httpget",params,function(t){t.e&&alert(t.e),t.r?jQuery("#updraftplus_httpget_results").html("<pre>"+t.r+"</pre>"):console.log(t)},{type:"GET"})}function p(t,e,a){updraft_restore_setoptions(t),jQuery("#updraft_restore_timestamp").val(e),jQuery(".updraft_restore_date").html(a),updraft_restore_stage=1,jQuery("#updraft-migrate-modal").dialog("close"),jQuery("#updraft-restore-modal").dialog("open"),jQuery("#updraft-restore-modal-stage1").show(),jQuery("#updraft-restore-modal-stage2").hide(),jQuery("#updraft-restore-modal-stage2a").html(""),updraft_activejobs_update(!0)}function l(t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e="[\\?&]"+t+"=([^&#]*)",a=new RegExp(e),r=a.exec(window.location.href);return null==r?"":decodeURIComponent(r[1].replace(/\+/g," "))}if(t(".expertmode .advanced_settings_container .advanced_tools_button").click(function(){e(t(this).attr("id"))}),jQuery.ui&&jQuery.ui.dialog&&jQuery.ui.dialog.prototype._allowInteraction){var c=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||c.apply(this,arguments)}}t("#updraftcentral_keys").on("click","a.updraftcentral_keys_show",function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keys_table").slideDown()}),t("#updraftcentral_keycreate_altmethod_moreinfo_get").click(function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keycreate_altmethod_moreinfo").slideDown()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("change keyup paste",".updraft_webdav_settings",function(){var e=[];t(".updraft_webdav_settings").each(function(a,r){var n=t(r).attr("id");if(n&&"updraft_webdav_"==n.substring(0,15)){var o=n.substring(15);id_split=o.split("_"),o=id_split[0];var u=id_split[1];"undefined"==typeof e[u]&&(e[u]=[]),e[u][o]=this.value}});var a="",r="@",n="/",o=":",u=":";for(var d in e)(e[d].host.indexOf("@")>=0||""===e[d].host)&&(r=""),e[d].host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e[d].path.indexOf("/")&&""!==e[d].path||(n=""),""!==e[d].user&&""!==e[d].pass||(o=""),""!==e[d].host&&""!==e[d].port||(u=""),a=e[d].webdav+e[d].user+o+e[d].pass+r+encodeURIComponent(e[d].host)+u+e[d].port+n+e[d].path,t("#updraft_webdav_url_"+d).val(a);e.host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e.path.indexOf("/")&&""!==e.path||(n=""),""!==e.user&&""!==e.pass||(o=""),""!==e.host&&""!==e.port||(u=""),a=e.webdav+e.user+o+encodeURIComponent(e.pass)+r+encodeURIComponent(e.host)+u+e.port+n+e.path,t("#updraft_webdav_url_"+d).val(a)}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(e){(e.ctrlKey||e.metaKey)&&(t(this).toggleClass("backuprowselected"),t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length>0?t("#ud_massactions").show():t("#ud_massactions").hide())}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_add_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var r=t(this).data("method");a(r)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_delete_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var r=t(this).data("method"),n=t(this).data("instance_id");1===t("."+r+"_updraft_remote_storage_border").length&&a(r),t("."+r+"-"+n).hide("slow",function(){t(this).remove()})}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).find("span").hide(),t(this).attr("contentEditable",!0).focus()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keyup",".updraftplusmethod .updraft_edit_label_instance",function(e){var a=jQuery(this).data("method"),r=jQuery(this).data("instance_id"),n=jQuery(this).text();t("#updraft_"+a+"_instance_label_"+r).val(n)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("blur",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).attr("contentEditable",!1),t(this).find("span").show()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keypress",".updraftplusmethod .updraft_edit_label_instance",function(e){13===e.which&&(t(this).attr("contentEditable",!1),t(this).find("span").show(),t(this).blur())}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("change","input[class='updraft_instance_toggle']",function(){updraft_settings_form_changed=!0,jQuery(this).is(":checked")?jQuery(this).siblings("label").html(updraftlion.instance_enabled):jQuery(this).siblings("label").html(updraftlion.instance_disabled)}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod button.updraft-test-button",function(){var t=jQuery(this).data("method"),e=jQuery(this).data("instance_id");updraft_remote_storage_test(t,function(e,a,r){return"sftp"==t&&(r.hasOwnProperty("scp")&&r.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+e.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+e.output),e.hasOwnProperty("data")&&console.log(e.data),!0)},e)}),t("#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database").change(function(){updraft_check_same_times()}),t("#backupnow_includefiles_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_includefiles_moreoptions").toggle()}),t("#backupnow_database_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_database_moreoptions").toggle()}),t("#updraft-navtab-backups-content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),updraftplus_diskspace()}),t("#updraft-navtab-backups-content a.updraft_uploader_toggle").click(function(e){e.preventDefault(),t("#updraft-plupload-modal").slideToggle()}),t("#updraft-navtab-backups-content a.updraft_rescan_local").click(function(t){t.preventDefault(),updraft_updatehistory(1,0)}),t("#updraft-navtab-backups-content a.updraft_rescan_remote").click(function(t){t.preventDefault(),updraft_updatehistory(1,1)}),jQuery("#updraftcentral_keys").on("click",'input[type="radio"]',function(){n(!1)}),n(!0),jQuery("#updraftcentral_keys").on("click","#updraftcentral_view_log",function(t){t.preventDefault(),jQuery("#updraftcentral_view_log_container").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.fetching+"</div>"});try{updraft_send_command("updraftcentral_get_log",null,function(t){jQuery("#updraftcentral_view_log_container").unblock(),t.hasOwnProperty("log_contents")?jQuery("#updraftcentral_view_log_contents").html('<div style="border:1px solid;padding: 2px;max-height: 400px; overflow-y:scroll;">'+t.log_contents+"</div>"):console.response(resp)})}catch(e){jQuery("#updraft_central_key").html(),console.log(e)}}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_wizard_go",function(t){jQuery("#updraftcentral_wizard_go").hide(),jQuery(".updraftcentral_wizard_success").remove(),jQuery(".create_key_container").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage1_go",function(t){t.preventDefault(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery(".updraftcentral_wizard_stage1").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage2_go",function(t){t.preventDefault(),o()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_keycreate_go",function(t){t.preventDefault();var e=!!jQuery("#updraftcentral_mothership_other").is(":checked"),a=jQuery("#updraftcentral_keycreate_description").val(),r=jQuery("#updraftcentral_keycreate_keysize").val(),n="__updraftpluscom";if(data={key_description:a,key_size:r},e&&(n=jQuery("#updraftcentral_keycreate_mothership").val(),"http"!=n.substring(0,4)))return void alert(updraftlion.enter_mothership_url);data.mothership_firewalled=jQuery("#updraftcentral_keycreate_mothership_firewalled").is(":checked")?1:0,data.where_send=n,jQuery(".create_key_container").hide(),jQuery(".updraftcentral_wizard_stage1").show(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+"</div>"});try{updraft_send_command("updraftcentral_create_key",data,function(t){jQuery("#updraftcentral_keys").unblock();try{if(resp=ud_parse_json(t),resp.hasOwnProperty("error"))return alert(resp.error),void console.log(resp);alert(resp.r),resp.hasOwnProperty("bundle")&&resp.hasOwnProperty("keys_guide")?(jQuery("#updraftcentral_keys_content").html(resp.keys_guide),jQuery("#updraftcentral_keys_content").append('<div class="updraftcentral_wizard_success">'+resp.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+resp.bundle+"</textarea></div>")):console.log(resp),resp.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").append(resp.keys_table),jQuery("#updraftcentral_wizard_go").show()}catch(e){alert(updraftlion.unexpectedresponse+" "+t),console.log(e)}},{json_parse:!1})}catch(o){jQuery("#updraft_central_key").html(),console.log(o)}}),jQuery("#updraftcentral_keys").on("click",".updraftcentral_key_delete",function(t){t.preventDefault();var e=jQuery(this).data("key_id");return"undefined"==typeof e?void console.log("UpdraftPlus: .updraftcentral_key_delete clicked, but no key ID found"):(jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.deleting+"</div>"}),void updraft_send_command("updraftcentral_delete_key",{key_id:e},function(t){jQuery("#updraftcentral_keys").unblock(),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").html(t.keys_table)}))}),jQuery("#updraft_reset_sid").click(function(t){t.preventDefault(),updraft_send_command("reset_site_id",null,function(t){jQuery("#updraft_show_sid").html(t)},{json_parse:!1})}),jQuery("#updraft-navtab-settings-content form input:not('.udignorechange'), #updraft-navtab-settings-content form select").change(function(t){updraft_settings_form_changed=!0}),jQuery("#updraft-navtab-settings-content form input[type='submit']").click(function(t){updraft_settings_form_changed=!1});var f=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>f&&(f=a)}),f>180&&jQuery(".updraft-bigbutton").width(f),setInterval(function(){updraft_activejobs_update(!1)},1250),setTimeout(function(){jQuery("#setting-error-settings_updated").slideUp()},5e3),jQuery("#updraft_restore_db").change(function(){jQuery("#updraft_restore_db").is(":checked")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var _={};_[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:_});var g={};g[updraftlion.deletebutton]=function(){u(0,0,0,0)},g[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:322,width:430,modal:!0,buttons:g});var h={};h[updraftlion.restore]=function(){var t=0,e=[],a=0,r=jQuery("#updraft_restore_meta_foreign").val();if(jQuery('input[name="updraft_restore[]"]').each(function(n,o){if(jQuery(o).is(":checked")&&!jQuery(o).is(":disabled")){t=1;var u=jQuery(o).data("howmany"),d=jQuery(o).val();if((1==r||2==r&&"db"!=d)&&("wpcore"!=d&&(u=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),d="wpcore"),"wpcore"!=d||0==a){var s=[d,u];e.push(s),"wpcore"==d&&(a=1)}}}),1==t){if(1==updraft_restore_stage){jQuery("#updraft-restore-modal-stage1").slideUp("slow"),jQuery("#updraft-restore-modal-stage2").show(),updraft_restore_stage=2;var n=jQuery(".updraft_restore_date").first().text(),o=e,u=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:u},function(t){if(t.hasOwnProperty("downloads")&&(console.log("UpdraftPlus: items which still require downloading follow"),o=t.downloads,console.log(o)),0==o.length)updraft_restorer_checkstage2(0);else for(var e=0;e<o.length;e++)updraft_downloader("udrestoredlstatus_",u,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1})}catch(d){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(d),alert(updraftlion.jsonnotunderstood)}}else if(2==updraft_restore_stage)updraft_restorer_checkstage2(1);else if(3==updraft_restore_stage){var s=1;if(jQuery("#updraft_restoreoptions_ui input.required").each(function(t){if(0!=s){var e=jQuery(this).val();if(""==e)alert(updraftlion.pleasefillinrequired),s=0;else if(""!=jQuery(this).attr("pattern")){var a=jQuery(this).attr("pattern"),r=new RegExp(a,"g");r.test(e)||(alert(jQuery(this).data("invalidpattern")),s=0)}}}),!s)return;var i=jQuery("#updraft_restoreoptions_ui select, #updraft_restoreoptions_ui input").serialize();console.log("Restore options: "+i),jQuery("#updraft_restorer_restore_options").val(i),jQuery("#updraft-restore-modal-stage2a").html(updraftlion.restore_proceeding),jQuery("#updraft_restore_form").submit(),updraft_restore_stage=4}}else alert(updraftlion.youdidnotselectany)},h[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:h}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:345,width:580,modal:!0});var y={};y[updraftlion.backupnow]=function(){var t=jQuery("#backupnow_includedb").is(":checked")?0:1,e=jQuery("#backupnow_includefiles").is(":checked")?0:1,a=jQuery("#backupnow_includecloud").is(":checked")?0:1,r=backupnow_whichtables_checked("");if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var n=backupnow_whichfiles_checked("");return""==n&&0==e?(alert(updraftlion.nofileschosen),void jQuery("#backupnow_includefiles_moreoptions").show()):t&&e?void alert(updraftlion.excludedeverything):(jQuery(this).dialog("close"),setTimeout(function(){jQuery("#updraft_lastlogmessagerow").fadeOut("slow",function(){jQuery(this).fadeIn("slow")})},1700),void updraft_backupnow_go(t,e,a,n,"",jQuery("#backupnow_label").val(),r))},y[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:y}),jQuery("#updraft-migrate-modal").dialog({autoOpen:!1,height:updraftlion.migratemodalheight,width:updraftlion.migratemodalwidth,modal:!0}),jQuery("#updraft-poplog").dialog({autoOpen:!1,height:600,width:"75%",modal:!0}),jQuery("#updraft-navtab-settings-content .enableexpertmode").click(function(){return jQuery("#updraft-navtab-settings-content .expertmode").fadeIn(),jQuery("#updraft-navtab-settings-content .enableexpertmode").off("click"),!1}),jQuery("#updraft-navtab-settings-content .backupdirrow").on("click","a.updraft_backup_dir_reset",function(){return jQuery("#updraft_dir").val("updraft"),!1}),jQuery("#updraft-navtab-settings-content .updraft_include_entity").click(function(){var t=jQuery(this).data("toggle_exclude_field");t&&d(t,!1)}),jQuery("#updraft-navtab-settings-content .updraft-service").change(function(){var t=jQuery(this).val();jQuery("#updraft-navtab-settings-content .updraftplusmethod").hide(),jQuery("#updraft-navtab-settings-content ."+t).show()}),jQuery("#updraft-navtab-settings-content a.updraft_show_decryption_widget").click(function(t){t.preventDefault(),jQuery("#updraftplus_db_decrypt").val(jQuery("#updraft_encryptionphrase").val()),jQuery("#updraft-manualdecrypt-modal").slideToggle()}),jQuery("#updraftplus-phpinfo").click(function(t){t.preventDefault(),updraft_iframe_modal("phpinfo",updraftlion.phpinfo)}),jQuery("#updraftplus-rawbackuphistory").click(function(t){t.preventDefault(),updraft_iframe_modal("rawbackuphistory",updraftlion.raw)}),jQuery("#updraft-navtab-status").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-status-content").show(),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-expert-content").show(),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=4}),jQuery("#updraft-navtab-settings, #updraft-navtab-settings2, #updraft_backupnow_gotosettings").click(function(t){t.preventDefault(),jQuery(this).parents(".updraftmessage").remove(),jQuery("#updraft-backupnow-modal").dialog("close"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-settings-content").show(),jQuery("#updraft-navtab-settings").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=3}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").show(),jQuery("#updraft-navtab-addons").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=5}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_openrestorepanel(1)}),updraft_send_command("ping",null,function(t,e){"success"==e&&"pong"!=t&&t.indexOf("pong")>=0&&(jQuery("#updraft-navtab-backups-content .ud-whitespace-warning").show(),console.log("UpdraftPlus: Extra output warning: response (which should be just (string)'pong') follows."),console.log(t))},{json_parse:!1,type:"GET"});try{"undefined"!=typeof updraft_plupload_config&&s()}catch(m){console.log(m)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),i(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),i(1)}),jQuery("#updraftplus_callwpaction_go").click(function(t){t.preventDefault(),params={wpaction:jQuery("#updraftplus_callwpaction").val()},updraft_send_command("call_wordpress_action",params,function(t){t.e?alert(t.e):t.s||(t.r?jQuery("#updraftplus_callwpaction_results").html(t.r):(console.log(t),alert(updraftlion.jsonnotunderstood)))})}),jQuery("#updraft_activejobs_table").on("click",".updraft_jobinfo_delete",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_activejobs_delete(e):console.log("UpdraftPlus: A stop job link was clicked, but the Job ID could not be found")}),jQuery("#updraft_activejobs_table, #updraft-navtab-backups-content .updraft_existing_backups, #updraft-backupnow-inpage-modal").on("click",".updraft-log-link",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_popuplog(e):console.log("UpdraftPlus: A log link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.choose-components-button",function(t){var e=jQuery(this).data("entities"),a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("showdata");p(e,a,r)}),"initiate_restore"==l("udaction")){var v=l("entities"),b=l("backup_timestamp"),j=l("showdata");p(v,b,j)}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click",".updraft-delete-link",function(t){t.preventDefault();var e=jQuery(this).data("hasremote"),a=jQuery(this).data("nonce").toString(),r=jQuery(this).data("key").toString();a?updraft_delete(r,a,e):console.log("UpdraftPlus: A delete link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.updraft_download_button",function(t){t.preventDefault();var e="uddlstatus_",a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("what"),n=".ud_downloadstatus",o=jQuery(this).data("set_contents"),u=jQuery(this).data("prettydate"),d=!0;updraft_downloader(e,a,r,n,o,u,d)}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("dblclick",".updraft_existingbackup_date",function(t){t.preventDefault();var e=jQuery(this).data("rawbackup");null!=e&&""!=e&&updraft_html_modal(e,updraftlion.raw,780,500)})}),jQuery(document).ready(function(t){var e="#updraft-navtab-settings-content ";t(e+"#remote-storage-holder").on("click",".updraftvault_backtostart",function(a){a.preventDefault(),t(e+"#updraftvault_settings_showoptions").slideUp(),t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").slideUp(),t(e+"#updraftvault_settings_default").slideDown()}),t(e).on("keypress","#updraftvault_settings_connect input",function(a){if(13==a.which)return t(e+"#updraftvault_connect_go").click(),!1}),t(e+"#remote-storage-holder").on("click","#updraftvault_recountquota",function(a){a.preventDefault(),t(e+"#updraftvault_recountquota").html(updraftlion.counting);try{updraft_send_command("vault_recountquota",{instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html),a.hasOwnProperty("connected")&&(a.connected?(t(e+"#updraftvault_settings_default").hide(),t(e+"#updraftvault_settings_connected").show()):(t(e+"#updraftvault_settings_connected").hide(),t(e+"#updraftvault_settings_default").show())))})}catch(r){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_disconnect",function(a){a.preventDefault(),t(e+"#updraftvault_disconnect").html(updraftlion.disconnecting);try{updraft_send_command("vault_disconnect",{immediate_echo:!0,instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html).slideUp(),t(e+"#updraftvault_settings_default").slideDown())})}catch(r){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_connect").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_showoptions",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_showoptions").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect_go",function(a){return t(e+"#updraftvault_connect_go").html(updraftlion.connecting),updraft_send_command("vault_connect",{email:t("#updraftvault_email").val(),pass:t("#updraftvault_pass").val(),instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a,r,n){t(e+"#updraftvault_connect_go").html(updraftlion.connect),a.hasOwnProperty("e")?(updraft_html_modal('<h4 style="margin-top:0px; padding-top:0px;">'+updraftlion.errornocolon+"</h4><p>"+a.e+"</p>",updraftlion.disconnect,400,250),a.hasOwnProperty("code")&&"no_quota"==a.code&&(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_default").slideDown())):a.hasOwnProperty("connected")&&a.connected&&a.hasOwnProperty("html")?(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").html(a.html).slideDown()):(console.log(a),alert(updraftlion.unexpectedresponse+" "+n))}),!1})}),jQuery(document).ready(function(t){function e(){var t=new plupload.Uploader(updraft_plupload_config2);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui2");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area2").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over");
|
3 |
-
|
1 |
function updraft_send_command(t,e,a,r){default_options={json_parse:!0,alert_on_error:!0,action:"updraft_ajax",nonce:updraft_credentialtest_nonce,nonce_key:"nonce",timeout:null,async:!0,type:"POST"},"undefined"==typeof r&&(r={});for(var n in default_options)r.hasOwnProperty(n)||(r[n]=default_options[n]);var o={action:r.action,subaction:t};if(o[r.nonce_key]=r.nonce,"object"==typeof e)for(var u in e)o[u]=e[u];else o.action_data=e;var d={type:r.type,url:ajaxurl,data:o,success:function(t,e){if(r.json_parse){try{var n=ud_parse_json(t)}catch(o){return console.log(o),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t))}"function"==typeof a&&a(n,e,t)}else"function"==typeof a&&a(t,e)},error:function(t,e,a){"function"==typeof r.error_callback?r.error_callback(t,e,a):(console.log("updraft_send_command: error: "+e+" ("+a+")"),console.log(t))},dataType:"text",async:r.async};null!=r.timeout&&(d.timeout=r.timeout),jQuery.ajax(d)}function updraft_delete(t,e,a){jQuery("#updraft_delete_timestamp").val(t),jQuery("#updraft_delete_nonce").val(e),a?jQuery("#updraft-delete-remote-section, #updraft_delete_remote").removeAttr("disabled").show():jQuery("#updraft-delete-remote-section, #updraft_delete_remote").hide().attr("disabled","disabled"),t.indexOf(",")>-1?(jQuery("#updraft_delete_question_singular").hide(),jQuery("#updraft_delete_question_plural").show()):(jQuery("#updraft_delete_question_plural").hide(),jQuery("#updraft_delete_question_singular").show()),jQuery("#updraft-delete-modal").dialog("open")}function updraft_remote_storage_tab_activation(t){jQuery(".updraftplusmethod").hide(),jQuery(".remote-tab").data("active",!1),jQuery(".remote-tab").removeClass("nav-tab-active"),jQuery(".updraftplusmethod."+t).show(),jQuery(".remote-tab-"+t).data("active",!0),jQuery(".remote-tab-"+t).addClass("nav-tab-active")}function updraft_check_overduecrons(){updraft_send_command("check_overdue_crons",null,function(t){t&&t.hasOwnProperty("m")&&jQuery("#updraft-insert-admin-warning").html(t.m)},{alert_on_error:!1})}function updraft_remote_storage_tabs_setup(){var t=0,e=jQuery(".updraft_servicecheckbox:checked");jQuery(e).each(function(a,r){var n=jQuery(r).val();"updraft_servicecheckbox_none"!=jQuery(r).attr("id")&&t++,jQuery(".remote-tab-"+n).show(),a==jQuery(e).length-1&&updraft_remote_storage_tab_activation(n)}),t>0&&jQuery(".updraftplusmethod.none").hide(),jQuery(document).keyup(function(t){if((32===t.keyCode||13===t.keyCode)&&jQuery(document.activeElement).is("input.labelauty + label")){var e=jQuery(document.activeElement).attr("for");e&&jQuery("#"+e).change()}}),jQuery(".updraft_servicecheckbox").change(function(){var e=jQuery(this).attr("id");if("updraft_servicecheckbox_"==e.substring(0,24)){var a=e.substring(24);null!=a&&""!=a&&(jQuery(this).is(":checked")?(t++,jQuery(".remote-tab-"+a).fadeIn(),updraft_remote_storage_tab_activation(a)):(t--,jQuery(".remote-tab-"+a).hide(),1==jQuery(".remote-tab-"+a).data("active")&&updraft_remote_storage_tab_activation(jQuery(".remote-tab:visible").last().attr("name"))))}t<=0?jQuery(".updraftplusmethod.none").fadeIn():jQuery(".updraftplusmethod.none").hide()}),jQuery(".updraft_servicecheckbox:not(.multi)").change(function(){var t=jQuery(this).attr("value");jQuery(this).is(":not(:checked)")?(jQuery(".updraftplusmethod."+t).hide(),jQuery(".updraftplusmethod.none").fadeIn()):jQuery(".updraft_servicecheckbox").not(this).prop("checked",!1)});var a=jQuery(".updraft_servicecheckbox");"function"==typeof a.labelauty&&a.labelauty()}function updraft_remote_storage_test(t,e,a){var r,n;a?(r=jQuery("#updraft-"+t+"-test-"+a),n=".updraftplusmethod."+t+"-"+a):(r=jQuery("#updraft-"+t+"-test"),n=".updraftplusmethod."+t);var o=r.data("method_label");r.html(updraftlion.testing_settings.replace("%s",o));var u={method:t};jQuery("#updraft-navtab-settings-content "+n+" input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test"),r=jQuery(e).attr("type");if(a){r||(console.log("UpdraftPlus: settings test input item with no type found"),console.log(e),r="text");var n=null;"checkbox"==r?n=jQuery(e).is(":checked")?1:0:"text"==r||"password"==r?n=jQuery(e).val():(console.log("UpdraftPlus: settings test input item with unrecognised type ("+r+") found"),console.log(e)),u[a]=n}}),jQuery("#updraft-navtab-settings-content "+n+" textarea[data-updraft_settings_test], #updraft-navtab-settings-content "+n+" select[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test");u[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",u,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,u)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))})}function backupnow_whichfiles_checked(t){return jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(e){if(jQuery(this).is(":checked")){var a=jQuery(this).attr("name");if("updraft_include_"==a.substring(0,16)){var r=a.substring(16);""!=t&&(t+=","),t+=r}}}),t}function backupnow_whichtables_checked(t){var e=!1;return jQuery('#backupnow_database_moreoptions input[type="checkbox"]').each(function(t){if(!jQuery(this).is(":checked"))return void(e=!0)}),t=jQuery("input[name^='updraft_include_tables_']").serializeArray(),!e||t}function updraft_deleteallselected(){var t=0,e="",a="",r="";jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").each(function(n){t++;var o=jQuery(this).data("nonce");a&&(a+=","),a+=o;var u=jQuery(this).data("key");e&&(e+=","),e+=u;var d=jQuery(this).find(".updraftplus-remove").data("hasremote");r&&(r+=","),r+=d}),updraft_delete(e,a,r)}function updraft_openrestorepanel(t){updraft_console_focussed_tab=2,updraft_historytimertoggle(t),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-backups-content").show(),jQuery("#updraft-navtab-backups").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){jQuery("#updraft-migrate-modal").dialog("close"),jQuery('#updraft-navtab-backups-content .updraft_existing_backups button[data-backup_timestamp="'+t+'"]').click()}function updraft_restore_setoptions(t){var e=0;jQuery('input[name="updraft_restore[]"]').each(function(a,r){var n=jQuery(r).val(),o=n+"=([0-9,]+)",u=new RegExp(o),d=t.match(u);d?(jQuery(r).removeAttr("disabled").data("howmany",d[1]).parent().show(),e++,"db"==n&&(e+=4.5),jQuery(r).is(":checked")&&jQuery("#updraft_restorer_"+n+"options").show()):jQuery(r).attr("disabled","disabled").parent().hide()});var a=t.match(/dbcrypted=1/);a?jQuery(".updraft_restore_crypteddb").show():jQuery(".updraft_restore_crypteddb").hide();var r=t.match(/meta_foreign=([12])/);r?jQuery("#updraft_restore_meta_foreign").val(r[1]):jQuery("#updraft_restore_meta_foreign").val("0");var n=336+20*e;jQuery("#updraft-restore-modal").dialog("option","height",n)}function updraft_backup_dialog_open(){jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed?window.confirm(updraftlion.unsavedsettingsbackup)&&(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open")):(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open"))}function updraft_migrate_dialog_open(){jQuery("#updraft_migrate_modal_alt").hide(),updraft_migrate_modal_default_buttons={},updraft_migrate_modal_default_buttons[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-migrate-modal").dialog("option","buttons",updraft_migrate_modal_default_buttons),jQuery("#updraft-migrate-modal").dialog("open"),jQuery("#updraft_migrate_modal_main").show()}function updraft_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&updraft_activejobs_update(!0))}function updraft_backupnow_inpage_go(t,e,a,r,n,o,u){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,u="undefined"==typeof u?updraftlion.automaticbackupbeforeupdate:u,updraft_console_focussed_tab=1,updraft_inpage_success_callback=t;var d={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",d),jQuery("#updraft_inpage_prebackup").hide(),s&&jQuery("#updraft-backupnow-inpage-modal").dialog("open"),jQuery("#updraft_inpage_backup").show(),updraft_activejobslist_backupnownonce_only=1,updraft_inpage_hasbegun=0,updraft_backupnow_go(r,n,o,e,a,u,"")}function updraft_activejobs_update(t){var e=(new Date).getTime();if(!(0==t&&e<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=e+5500;var a="";jQuery(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,e){var r=jQuery(e).data("downloaderfor");"object"==typeof r&&(""!=a&&(a+=":"),a=a+r.base+","+r.nonce+","+r.what+","+r.index)});var r={downloaders:a};try{jQuery("#updraft-poplog").dialog("isOpen")&&(r.log_fetch=1,r.log_nonce=updraft_poplog_log_nonce,r.log_pointer=updraft_poplog_log_pointer)}catch(n){console.log(n)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(r.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",r,function(t){try{resp=ud_parse_json(t),resp.hasOwnProperty("l")&&(resp.l?(jQuery("#updraft_lastlogmessagerow").show(),jQuery("#updraft_lastlogcontainer").html(resp.l)):(jQuery("#updraft_lastlogmessagerow").hide(),jQuery("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var n=-1;if(jQuery("#updraft_activejobs").html(resp.j),jQuery("#updraft_activejobs .updraft_jobtimings").each(function(t,a){var r=jQuery(a);if(r.data("lastactivity")&&r.data("jobid")){var o=r.data("jobid"),u=r.data("lastactivity");(n==-1||u<n)&&(n=u);var d=r.data("nextresumptionafter"),s=r.data("nextresumption");e=(new Date).getTime(),u>50&&s>0&&d<-30&&e>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||s!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=s,updraft_last_forced_jobid=o,updraft_last_forced_when=e,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+s),updraft_send_command("forcescheduledresumption",{resumption:s,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),e=(new Date).getTime(),updraft_activejobs_nextupdate=e+18e4,1==updraft_page_is_visible&&(1==updraft_console_focussed_tab||2==updraft_console_focussed_tab&&""!=a)&&(updraft_activejobs_nextupdate=n>-1?n<5?e+1750:e+5e3:lastlog_lastdata==t?e+7500:e+1750),lastlog_lastdata=t,null!=resp.j&&""!=resp.j?(jQuery("#updraft_activejobsrow").show(),r.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly).length?(updraft_inpage_hasbegun=1,console.log("UpdraftPlus: the start of the requested backup job has been detected")):!updraft_inpage_hasbegun&&updraft_activejobslist_backupnownonce_only&&jQuery(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=jQuery(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,r.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):jQuery("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){jQuery("#updraft_backup_started").slideUp()},3500)):jQuery("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),jQuery("#updraft_activejobsrow").hide()),lastlog_jobs=resp.j,null!=resp.ds&&""!=resp.ds&&jQuery(resp.ds).each(function(e,a){""!=a.base&&updraft_downloader_status_update(a.base,a.timestamp,a.what,a.findex,a,t)}),null!=resp.u&&""!=resp.u&&jQuery("#updraft-poplog").dialog("isOpen")){var o=resp.u;if(o.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=o.pointer,null!=o.log&&""!=o.log)){var u=jQuery("#updraft-poplog").scrollTop();jQuery("#updraft-poplog-content").append(o.log),updraft_poplog_lastscroll!=u&&updraft_poplog_lastscroll!=-1||(jQuery("#updraft-poplog").scrollTop(jQuery("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=jQuery("#updraft-poplog").scrollTop())}}}catch(d){console.log(updraftlion.unexpectedresponse+" "+t),console.log(d)}},{json_parse:!1,type:"GET"})}}function updraft_popuplog(t){var e=updraftlion.loading_log_file;t&&(e+=" (log."+t+".txt)"),jQuery("#updraft-poplog").dialog("option","title",e),jQuery("#updraft-poplog-content").html("<em>"+e+" ...</em> "),jQuery("#updraft-poplog").dialog("open"),updraft_send_command("get_log",t,function(t){updraft_poplog_log_pointer=t.pointer,updraft_poplog_log_nonce=t.nonce;var e="?page=updraftplus&action=downloadlog&force_download=1&updraftplus_backup_nonce="+t.nonce;jQuery("#updraft-poplog-content").html(t.log);var a={};a[updraftlion.downloadlogfile]=function(){window.location.href=e},a[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-poplog").dialog("option","buttons",a),jQuery("#updraft-poplog").dialog("option","title","log."+t.nonce+".txt"),updraft_poplog_lastscroll=-1},{type:"GET",timeout:6e4,error_callback:function(t,e,a){var r=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(r),console.log(t)}})}function updraft_showlastbackup(){updraft_send_command("get_fragment","last_backup_html",function(t){response=t.output,lastbackup_laststatus==response?setTimeout(function(){updraft_showlastbackup()},7e3):jQuery("#updraft_last_backup").html(response),lastbackup_laststatus=response},{type:"GET"})}function updraft_historytimertoggle(t){updraft_historytimer&&1!=t?(clearTimeout(updraft_historytimer),updraft_historytimer=0):(updraft_updatehistory(0,0),updraft_historytimer=setInterval(function(){updraft_updatehistory(0,0)},3e4),calculated_diskspace||(updraftplus_diskspace(),calculated_diskspace=1))}function updraft_updatehistory(t,e){var a=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=a+30;else if(a<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+a.toString()+" < "+updraft_historytimer_notbefore.toString());1==t&&(1==e?(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanningremote+"</em></p>")):(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanning+"</em></p>")));var r=e?"remotescan":!!t&&"rescan";updraft_send_command("rescan",r,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_modal")&&t.migrate_modal&&jQuery("#updraft_migrate_modal_main").replaceWith(t.migrate_modal),null!=t.n&&jQuery("#updraft-navtab-backups").html(t.n),null!=t.t){if(null!=t.cksum){if(t.cksum==updraft_history_lastchecksum)return;updraft_history_lastchecksum=t.cksum}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html(t.t),t.data&&console.log(t.data)}})}function updraft_intervals_monthly_or_not(t,e){var a="#updraft-navtab-settings-content #"+t,r=jQuery(a+" option").length,n="monthly"==e,o=!1;if(r>10&&(o=!0),n||o){if(n&&o)return void("monthly"==e&&(jQuery(".updraft_monthly_extra_words_"+t).remove(),jQuery(a).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>")));if(jQuery(".updraft_monthly_extra_words_"+t).remove(),n){updraft_interval_week_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.mdayselector).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>");var u=updraft_interval_month_val===!1?1:updraft_interval_month_val;u-=1,jQuery(a+" option:eq("+u+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var d=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+d+")").prop("selected",!0)}}}function updraft_check_same_times(){var t=0,e=jQuery("#updraft-navtab-settings-content .updraft_interval").val();"manual"==e?jQuery("#updraft-navtab-settings-content .updraft_files_timings").hide():jQuery("#updraft-navtab-settings-content .updraft_files_timings").show(),"weekly"==e||"fortnightly"==e||"monthly"==e?(updraft_intervals_monthly_or_not("updraft_startday_files",e),jQuery("#updraft-navtab-settings-content #updraft_startday_files").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_files").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_files").hide());var a=jQuery("#updraft-navtab-settings-content .updraft_interval_database").val();"manual"==a&&(t=1,jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide()),"weekly"==a||"fortnightly"==a||"monthly"==a?(updraft_intervals_monthly_or_not("updraft_startday_db",a),jQuery("#updraft-navtab-settings-content #updraft_startday_db").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_db").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_db").hide()),a==e?(jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide(),0==t?jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").show():jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide()):(jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide(),0==t&&jQuery("#updraft-navtab-settings-content .updraft_db_timings").show())}function updraft_activejobs_delete(t){updraft_send_command("activejobs_delete",t,function(e){"Y"==e.ok?jQuery("#updraft-jobid-"+t).html(e.m).fadeOut("slow").remove():"N"==e.ok?alert(e.m):(alert(updraftlion.unexpectedresponse),console.log(e))})}function updraftplus_diskspace_entity(t){jQuery("#updraft_diskspaceused_"+t).html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:t},function(e){jQuery("#updraft_diskspaceused_"+t).html(e.output)},{type:"GET"})}function updraft_iframe_modal(t,e){var a=780,r=500;jQuery("#updraft-iframe-modal-innards").html('<iframe width="100%" height="430px" src="'+ajaxurl+"?action=updraft_ajax&subaction="+t+"&nonce="+updraft_credentialtest_nonce+'"></iframe>'),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("open")}function updraft_html_modal(t,e,a,r){jQuery("#updraft-iframe-modal-innards").html(t);var n={};a<450&&(n[updraftlion.close]=function(){jQuery(this).dialog("close")}),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("option","buttons",n).dialog("open")}function updraftplus_diskspace(){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html(t.output)},{type:"GET"})}function updraftplus_deletefromserver(t,e,a){a||(a=0);var r={stage:"delete",timestamp:t,type:e,findex:a};updraft_send_command("updraft_download_backup",r,null,{action:"updraft_download_backup",nonce:updraft_download_nonce,nonce_key:"_wpnonce"})}function updraftplus_downloadstage2(t,e,a){location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"×tamp="+t+"&type="+e+"&stage=2&findex="+a+"&action=updraft_download_backup"}function updraftplus_show_contents(t,e,a){var r='<div id="updraft_zip_files_container" class="hidden-in-updraftcentral" style="clear:left;"><div id="updraft_zip_info_container"><p><span id="updraft_zip_path_text">'+updraftlion.zip_file_contents_info+'</span> - <span id="updraft_zip_size_text"></span></p>'+updraftlion.browse_download_link+'</div><div id="updraft_zip_files_jstree_container"><input type="search" id="zip_files_jstree_search" name="zip_files_jstree_search" placeholder="'+updraftlion.search+'"><div id="updraft_zip_files_jstree"></div></div></div>';updraft_html_modal(r,updraftlion.zip_file_contents,780,500),zip_files_jstree("zipbrowser",t,e,a)}function zip_files_jstree(t,e,a,r){jQuery("#updraft_zip_files_jstree").jstree({core:{multiple:!1,data:function(n,o){updraft_send_command("get_jstree_directory_nodes",{entity:t,node:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):o.call(this,t.nodes)})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["search","sort"]}),jQuery("#updraft_zip_files_jstree").on("ready.jstree",function(t,e){jQuery("#updraft-iframe-modal").dialog("option","title",updraftlion.zip_file_contents+": "+e.instance.get_node("#").children[0])});var n=!1;jQuery("#zip_files_jstree_search").keyup(function(){n&&clearTimeout(n),n=setTimeout(function(){var t=jQuery("#zip_files_jstree_search").val();jQuery("#updraft_zip_files_jstree").jstree(!0).search(t)},250)}),jQuery("#updraft_zip_files_jstree").on("changed.jstree",function(t,e){jQuery("#updraft_zip_path_text").text(e.node.li_attr.path),e.node.li_attr.size?(jQuery("#updraft_zip_size_text").text(e.node.li_attr.size),jQuery("#updraft_zip_download_item").show()):(jQuery("#updraft_zip_size_text").text(""),jQuery("#updraft_zip_download_item").hide())}),jQuery("#updraft_zip_download_item").click(function(t){t.preventDefault();var n=jQuery("#updraft_zip_path_text").text();updraft_send_command("get_zipfile_download",{path:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):t.hasOwnProperty("path")?location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"×tamp="+e+"&type="+a+"&stage=2&findex="+r+"&filepath="+t.path+"&action=updraft_download_backup":alert(updraftlion.download_timeout)})})}function updraft_downloader(t,e,a,r,n,o,u){"string"!=typeof n&&(n=n.toString());for(var n=n.split(","),d=0;d<n.length;d++){var s=t+e+"_"+a+"_"+n[d],i="."+s,p=parseInt(n[d]);p++;var l=0==n[d]?"":" ("+p+")";if(!jQuery(i).length){var c=o?o:e;jQuery(r).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+s+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+" "+a+l+" ("+c+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+s+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(i).data("downloaderfor",{base:t,nonce:e,what:a,index:n[d]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)}jQuery(i).data("lasttimebegan",(new Date).getTime()),u=!!u;var f=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+n[d]).data("wp_nonce").toString(),_={type:a,timestamp:e,findex:n[d]},g={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:f,timeout:1e4,async:u};updraft_send_command("updraft_download_backup",_,function(t){},g)}return!1}function ud_parse_json(t){t.charAt(0),t.charAt(t.length-1);try{var e=JSON.parse(t);return e}catch(a){console.log("UpdraftPlus: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(t)}var r=t.indexOf("{"),n=t.lastIndexOf("}");if(r>-1&&n>-1){var o=t.slice(r,n+1);try{var u=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),u}catch(a){throw console.log("UpdraftPlus: Exception when trying to parse JSON (2)"),a}}throw"UpdraftPlus: could not parse the JSON"}function updraft_restorer_checkstage2(t){var e=jQuery("#ud_downloadstatus2 .file").length;return e>0?void(t&&alert(updraftlion.stilldownloading)):(jQuery("#updraft-restore-modal-stage2a").html(updraftlion.processing),void updraft_send_command("restore_alldownloaded",{timestamp:jQuery("#updraft_restore_timestamp").val(),restoreopts:jQuery("#updraft_restore_form").serialize()},function(t){var e=null;jQuery("#updraft_restorer_restore_options").val("");try{var a=ud_parse_json(t);if(null==a)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);var r=a.m;if(""!=a.w&&(r=r+"<p><strong>"+updraftlion.warnings+"</strong><br>"+a.w+"</p>"),""!=a.e?r=r+"<p><strong>"+updraftlion.errors+"</strong><br>"+a.e+"</p>":updraft_restore_stage=3,a.hasOwnProperty("i")){try{if(e=ud_parse_json(a.i),e.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var n=e.addui;r+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+n+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete e.addui,a.i=JSON.stringify(e))}}catch(o){console.log(o),console.log(a)}jQuery("#updraft_restorer_backup_info").val(a.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(r),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(o){console.log(t),console.log(o),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+t).html()}},{json_parse:!1}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e,a,r,n,o){var u=t+e+"_"+a+"_"+r,d="."+u,s=0;if(null!=n.e)jQuery(d+" .raw").html("<strong>"+updraftlion.error+"</strong> "+n.e),console.log(n);else if(null!=n.p){if(jQuery(d+"_st .dlfileprogress").width(n.p+"%"),null!=n.a&&n.a>0){var i=(new Date).getTime(),p=jQuery(d).data("lasttimebegan"),l=i-p;if(n.a>90&&l>6e4){console.log(e+" "+a+" "+r+": restarting download: file_age="+n.a+", sincelastrestart_ms="+l),jQuery(d).data("lasttimebegan",(new Date).getTime());var c=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+r),f={type:a,timestamp:e,findex:r},_={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:c.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",f,function(t){},_),jQuery(d).data("lasttimebegan",(new Date).getTime())}}if(null!=n.m)if(n.p>=100&&"udrestoredlstatus_"==t)jQuery(d+" .raw").html(n.m),jQuery(d).fadeOut("slow",function(){jQuery(this).remove(),updraft_restorer_checkstage2(0)});else if(n.p<100||"uddlstatus_"!=t)jQuery(d+" .raw").html(n.m);else{var g=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button type="button" onclick="updraftplus_downloadstage2(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button id="uddownloaddelete_'+e+"_"+a+'" type="button" onclick="updraftplus_deletefromserver(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.deletefromserver+"</button>";n.hasOwnProperty("can_show_contents")&&n.can_show_contents&&(g+=' <button type="button" onclick="updraftplus_show_contents(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(d+" .raw").html(g)}}else null!=n.m?jQuery(d+" .raw").html(n.m):(jQuery(d+" .raw").html(updraftlion.jsonnotunderstood+" ("+o+")"),s=1);return s}function updraft_backupnow_go(t,e,a,r,n,o,u){jQuery("#updraft_backup_started").html("<em>"+updraftlion.requeststart+"</em>").slideDown(""),setTimeout(function(){jQuery("#updraft_backup_started").fadeOut("slow")},75e3);var d={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};""!=r&&(d.onlythisfileentity=r),""!=u&&(d.onlythesetableentities=u),updraft_send_command("backupnow",d,function(t){jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),setTimeout(function(){updraft_activejobs_update(!0)},500)})}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var updraft_restore_stage=1,lastlog_lastmessage="",lastlog_lastdata="",lastlog_jobs="",updraft_activejobs_nextupdate=(new Date).getTime()+1e3,updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_settings_form_changed=!1;window.onbeforeunload=function(t){if(updraft_settings_form_changed)return updraftlion.unsavedsettings},"undefined"!=typeof document.hidden&&document.addEventListener("visibilitychange",function(){updraft_check_page_visibility(0)},!1),updraft_check_page_visibility(1);var updraft_poplog_log_nonce,updraft_poplog_log_pointer=0,updraft_poplog_lastscroll=-1,updraft_last_forced_jobid=-1,updraft_last_forced_resumption=-1,updraft_last_forced_when=-1,updraft_backupnow_nonce="",updraft_activejobslist_backupnownonce_only=0,updraft_inpage_hasbegun=0,updraft_historytimer=0,calculated_diskspace=0,updraft_historytimer_notbefore=0,updraft_history_lastchecksum=!1,updraft_interval_week_val=!1,updraft_interval_month_val=!1;"undefined"!=typeof updraft_siteurl&&setInterval(function(){jQuery.get(updraft_siteurl+"/wp-cron.php")},21e4);var lastlog_lastmessage="";jQuery(document).ajaxError(function(t,e,a,r){if(null!=r&&""!=r&&null!=e.responseText&&""!=e.responseText&&(console.log("Error caught by UpdraftPlus ajaxError handler (follows) for "+a.url),console.log(r),0==a.url.search(ajaxurl)))if(a.url.search("subaction=downloadstatus")>=0){var n=a.url.match(/timestamp=\d+/),o=a.url.match(/type=[a-z]+/),u=a.url.match(/findex=\d+/),d=a.url.match(/base=[a-z_]+/);if(u=u instanceof Array?parseInt(u[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",d=d instanceof Array?d[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=d&&""!=o&&n>0){var s=d+n+"_"+o+"_"+u;jQuery("."+s+" .raw").html("<strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode)}}else a.url.search("subaction=restore_alldownloaded")>=0&&jQuery("#updraft-restore-modal-stage2a").append("<br><strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode+": "+r)}),jQuery(document).ready(function(t){function e(e){t('.expertmode .advanced_settings_container .advanced_tools:not(".'+e+'")').hide(),t(".expertmode .advanced_settings_container .advanced_tools."+e).fadeIn("slow"),t(".expertmode .advanced_settings_container .advanced_tools_button:not(#"+e+")").removeClass("active"),t(".expertmode .advanced_settings_container .advanced_tools_button#"+e).addClass("active")}function a(t){var e=Handlebars.compile(updraftlion.remote_storage_templates[t]),a=updraftlion.remote_storage_options[t]["default"];a.instance_id="s-"+r(32),a.instance_enabled=1;var n=e(a);jQuery(n).hide().insertAfter("."+t+"_add_instance_container:first").show("slow")}function r(t){for(var e="",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=0;r<t;r++)e+=a.charAt(Math.floor(Math.random()*a.length));return e}function n(t){var e=!!jQuery("#updraftcentral_mothership_other").is(":checked");e?(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!1),t?jQuery("#updraftcentral_keycreate_mothership_firewalled_container").show():(jQuery(".updraftcentral_wizard_self_hosted_stage2").show(),
|
2 |
+
jQuery("#updraftcentral_keycreate_mothership_firewalled_container").slideDown(),jQuery("#updraftcentral_keycreate_mothership").focus())):(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!0),t||(jQuery(".updraftcentral_wizard_self_hosted_stage2").hide(),o()))}function o(){jQuery("#updraftcentral_wizard_stage1_error").text("");var t="";if(jQuery("#updraftcentral_mothership_updraftpluscom").is(":checked"))jQuery(".updraftcentral_keycreate_description").hide(),t="updraftplus.com";else if(jQuery("#updraftcentral_mothership_other").is(":checked")){jQuery(".updraftcentral_keycreate_description").show();var e=jQuery("#updraftcentral_keycreate_mothership").val();if(""==e)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_empty_url);try{var a=new URL(e);t=a.hostname}catch(r){if("undefined"==typeof URL&&(t=jQuery("<a>").prop("href",e).prop("hostname")),!t||"undefined"!=typeof URL)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_invalid_url)}}jQuery("#updraftcentral_keycreate_description").val(t),jQuery(".updraftcentral_wizard_stage1").hide(),jQuery(".updraftcentral_wizard_stage2").show()}function u(e,a,r,n){jQuery("#updraft-delete-waitwarning").slideDown();var o=e,d=a,s=r,i=n,p=jQuery("#updraft_delete_timestamp").val().split(","),l=jQuery("#updraft_delete_form").serializeArray(),c={};t.each(l,function(){void 0!==c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c.remote_delete_limit=updraftlion.remote_delete_limit,delete c.action,delete c.subaction,delete c.nonce,updraft_send_command("deleteset",c,function(t){if(t.hasOwnProperty("result")&&null!=t.result)if("error"==t.result)alert(updraftlion.error+" "+t.message);else if("continue"==t.result)o=o+t.backup_local+t.backup_remote,d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,jQuery("#updraft-deleted-files-total").text(o+" "+updraftlion.remote_files_deleted),u(o,d,s,i);else if("success"==t.result){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp(),t.hasOwnProperty("count_backups")&&jQuery("#updraft-navtab-backups").html(updraftlion.existing_backups+" ("+t.count_backups+")");for(var e=0;e<p.length;e++){var a=p[e];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+a).slideUp().remove()}jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length<1&&jQuery("#ud_massactions").hide(),updraft_history_lastchecksum=!1,jQuery("#updraft-delete-modal").dialog("close"),d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,alert(t.set_message+" "+i+"\n"+t.local_message+" "+d+"\n"+t.remote_message+" "+s)}})}function d(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideUp()}function s(){var t=new plupload.Uploader(updraft_plupload_config);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){if(!/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+?)?(\.(zip|gz|gz\.crypt))?$/i.test(e.name)&&!/^log\.([0-9a-f]{12})\.txt$/.test(e.name)){for(var a=!1,r=0;r<updraft_accept_archivename.length;r++)if(updraft_accept_archivename[r].test(e.name))var a=!0;if(!a)return/\.(zip|tar|tar\.gz|tar\.bz2)$/i.test(e.name)||/\.sql(\.gz)?$/i.test(e.name)?(jQuery("#updraft-message-modal-innards").html("<p><strong>"+e.name+"</strong></p> "+updraftlion.notarchive2),jQuery("#updraft-message-modal").dialog("open")):alert(e.name+": "+updraftlion.notarchive),void t.removeFile(e)}jQuery("#filelist").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>')}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100))),e.size==e.loaded&&(jQuery("#"+e.id).html('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(parseInt(e.size*e.percent/100))+"</span>/"+plupload.formatSize(e.size)+") - "+updraftlion.complete+"</div>"),jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"))}),t.bind("Error",function(t,e){console.log(e);var a;a="-200"==e.code?"\n"+updraftlion.makesure2:updraftlion.makesure;var r=updraftlion.uploaderr+" (code "+e.code+") : "+e.message;e.hasOwnProperty("status")&&e.status&&(r+=" ("+updraftlion.http_code+" "+e.status+")"),e.hasOwnProperty("response")&&(console.log("UpdraftPlus: plupload error: "+e.response),e.response.length<100&&(r+=" "+updraftlion.error+" "+e.response+"\n")),r+=" "+a,alert(r)}),t.bind("FileUploaded",function(t,e,a){if("200"==a.status)try{resp=ud_parse_json(a.response),resp.e?alert(updraftlion.uploaderror+" "+resp.e):resp.dm?(alert(resp.dm),updraft_updatehistory(1,0)):resp.m?updraft_updatehistory(1,0):alert("Unknown server response: "+a.response)}catch(r){console.log(a),alert(updraftlion.jsonnotunderstood)}else alert("Unknown server response status: "+a.code),console.log(a)})}function i(t){params={uri:jQuery("#updraftplus_httpget_uri").val()},params.curl=t,updraft_send_command("httpget",params,function(t){t.e&&alert(t.e),t.r?jQuery("#updraftplus_httpget_results").html("<pre>"+t.r+"</pre>"):console.log(t)},{type:"GET"})}function p(t,e,a){updraft_restore_setoptions(t),jQuery("#updraft_restore_timestamp").val(e),jQuery(".updraft_restore_date").html(a),updraft_restore_stage=1,jQuery("#updraft-migrate-modal").dialog("close"),jQuery("#updraft-restore-modal").dialog("open"),jQuery("#updraft-restore-modal-stage1").show(),jQuery("#updraft-restore-modal-stage2").hide(),jQuery("#updraft-restore-modal-stage2a").html(""),updraft_activejobs_update(!0)}function l(t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e="[\\?&]"+t+"=([^&#]*)",a=new RegExp(e),r=a.exec(window.location.href);return null==r?"":decodeURIComponent(r[1].replace(/\+/g," "))}if(t(".expertmode .advanced_settings_container .advanced_tools_button").click(function(){e(t(this).attr("id"))}),jQuery.ui&&jQuery.ui.dialog&&jQuery.ui.dialog.prototype._allowInteraction){var c=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||c.apply(this,arguments)}}t("#updraftcentral_keys").on("click","a.updraftcentral_keys_show",function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keys_table").slideDown()}),t("#updraftcentral_keycreate_altmethod_moreinfo_get").click(function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keycreate_altmethod_moreinfo").slideDown()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("change keyup paste",".updraft_webdav_settings",function(){var e=[];t(".updraft_webdav_settings").each(function(a,r){var n=t(r).attr("id");if(n&&"updraft_webdav_"==n.substring(0,15)){var o=n.substring(15);id_split=o.split("_"),o=id_split[0];var u=id_split[1];"undefined"==typeof e[u]&&(e[u]=[]),e[u][o]=this.value}});var a="",r="@",n="/",o=":",u=":";for(var d in e)(e[d].host.indexOf("@")>=0||""===e[d].host)&&(r=""),e[d].host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e[d].path.indexOf("/")&&""!==e[d].path||(n=""),""!==e[d].user&&""!==e[d].pass||(o=""),""!==e[d].host&&""!==e[d].port||(u=""),a=e[d].webdav+e[d].user+o+e[d].pass+r+encodeURIComponent(e[d].host)+u+e[d].port+n+e[d].path,t("#updraft_webdav_url_"+d).val(a)}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(e){(e.ctrlKey||e.metaKey)&&(t(this).toggleClass("backuprowselected"),t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length>0?t("#ud_massactions").show():t("#ud_massactions").hide())}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_add_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var r=t(this).data("method");a(r)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_delete_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var r=t(this).data("method"),n=t(this).data("instance_id");1===t("."+r+"_updraft_remote_storage_border").length&&a(r),t("."+r+"-"+n).hide("slow",function(){t(this).remove()})}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).find("span").hide(),t(this).attr("contentEditable",!0).focus()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keyup",".updraftplusmethod .updraft_edit_label_instance",function(e){var a=jQuery(this).data("method"),r=jQuery(this).data("instance_id"),n=jQuery(this).text();t("#updraft_"+a+"_instance_label_"+r).val(n)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("blur",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).attr("contentEditable",!1),t(this).find("span").show()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keypress",".updraftplusmethod .updraft_edit_label_instance",function(e){13===e.which&&(t(this).attr("contentEditable",!1),t(this).find("span").show(),t(this).blur())}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("change","input[class='updraft_instance_toggle']",function(){updraft_settings_form_changed=!0,jQuery(this).is(":checked")?jQuery(this).siblings("label").html(updraftlion.instance_enabled):jQuery(this).siblings("label").html(updraftlion.instance_disabled)}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod button.updraft-test-button",function(){var t=jQuery(this).data("method"),e=jQuery(this).data("instance_id");updraft_remote_storage_test(t,function(e,a,r){return"sftp"==t&&(r.hasOwnProperty("scp")&&r.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+e.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+e.output),e.hasOwnProperty("data")&&console.log(e.data),!0)},e)}),t("#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database").change(function(){updraft_check_same_times()}),t("#backupnow_includefiles_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_includefiles_moreoptions").toggle()}),t("#backupnow_database_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_database_moreoptions").toggle()}),t("#updraft-navtab-backups-content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),updraftplus_diskspace()}),t("#updraft-navtab-backups-content a.updraft_uploader_toggle").click(function(e){e.preventDefault(),t("#updraft-plupload-modal").slideToggle()}),t("#updraft-navtab-backups-content a.updraft_rescan_local").click(function(t){t.preventDefault(),updraft_updatehistory(1,0)}),t("#updraft-navtab-backups-content a.updraft_rescan_remote").click(function(t){t.preventDefault(),updraft_updatehistory(1,1)}),jQuery("#updraftcentral_keys").on("click",'input[type="radio"]',function(){n(!1)}),n(!0),jQuery("#updraftcentral_keys").on("click","#updraftcentral_view_log",function(t){t.preventDefault(),jQuery("#updraftcentral_view_log_container").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.fetching+"</div>"});try{updraft_send_command("updraftcentral_get_log",null,function(t){jQuery("#updraftcentral_view_log_container").unblock(),t.hasOwnProperty("log_contents")?jQuery("#updraftcentral_view_log_contents").html('<div style="border:1px solid;padding: 2px;max-height: 400px; overflow-y:scroll;">'+t.log_contents+"</div>"):console.response(resp)})}catch(e){jQuery("#updraft_central_key").html(),console.log(e)}}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_wizard_go",function(t){jQuery("#updraftcentral_wizard_go").hide(),jQuery(".updraftcentral_wizard_success").remove(),jQuery(".create_key_container").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage1_go",function(t){t.preventDefault(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery(".updraftcentral_wizard_stage1").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage2_go",function(t){t.preventDefault(),o()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_keycreate_go",function(t){t.preventDefault();var e=!!jQuery("#updraftcentral_mothership_other").is(":checked"),a=jQuery("#updraftcentral_keycreate_description").val(),r=jQuery("#updraftcentral_keycreate_keysize").val(),n="__updraftpluscom";if(data={key_description:a,key_size:r},e&&(n=jQuery("#updraftcentral_keycreate_mothership").val(),"http"!=n.substring(0,4)))return void alert(updraftlion.enter_mothership_url);data.mothership_firewalled=jQuery("#updraftcentral_keycreate_mothership_firewalled").is(":checked")?1:0,data.where_send=n,jQuery(".create_key_container").hide(),jQuery(".updraftcentral_wizard_stage1").show(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+"</div>"});try{updraft_send_command("updraftcentral_create_key",data,function(t){jQuery("#updraftcentral_keys").unblock();try{if(resp=ud_parse_json(t),resp.hasOwnProperty("error"))return alert(resp.error),void console.log(resp);alert(resp.r),resp.hasOwnProperty("bundle")&&resp.hasOwnProperty("keys_guide")?(jQuery("#updraftcentral_keys_content").html(resp.keys_guide),jQuery("#updraftcentral_keys_content").append('<div class="updraftcentral_wizard_success">'+resp.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+resp.bundle+"</textarea></div>")):console.log(resp),resp.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").append(resp.keys_table),jQuery("#updraftcentral_wizard_go").show()}catch(e){alert(updraftlion.unexpectedresponse+" "+t),console.log(e)}},{json_parse:!1})}catch(o){jQuery("#updraft_central_key").html(),console.log(o)}}),jQuery("#updraftcentral_keys").on("click",".updraftcentral_key_delete",function(t){t.preventDefault();var e=jQuery(this).data("key_id");return"undefined"==typeof e?void console.log("UpdraftPlus: .updraftcentral_key_delete clicked, but no key ID found"):(jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.deleting+"</div>"}),void updraft_send_command("updraftcentral_delete_key",{key_id:e},function(t){jQuery("#updraftcentral_keys").unblock(),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").html(t.keys_table)}))}),jQuery("#updraft_reset_sid").click(function(t){t.preventDefault(),updraft_send_command("reset_site_id",null,function(t){jQuery("#updraft_show_sid").html(t)},{json_parse:!1})}),jQuery("#updraft-navtab-settings-content form input:not('.udignorechange'), #updraft-navtab-settings-content form select").change(function(t){updraft_settings_form_changed=!0}),jQuery("#updraft-navtab-settings-content form input[type='submit']").click(function(t){updraft_settings_form_changed=!1});var f=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>f&&(f=a)}),f>180&&jQuery(".updraft-bigbutton").width(f),setInterval(function(){updraft_activejobs_update(!1)},1250),setTimeout(function(){jQuery("#setting-error-settings_updated").slideUp()},5e3),jQuery("#updraft_restore_db").change(function(){jQuery("#updraft_restore_db").is(":checked")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var _={};_[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:_});var g={};g[updraftlion.deletebutton]=function(){u(0,0,0,0)},g[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:322,width:430,modal:!0,buttons:g});var h={};h[updraftlion.restore]=function(){var t=0,e=[],a=0,r=jQuery("#updraft_restore_meta_foreign").val();if(jQuery('input[name="updraft_restore[]"]').each(function(n,o){if(jQuery(o).is(":checked")&&!jQuery(o).is(":disabled")){t=1;var u=jQuery(o).data("howmany"),d=jQuery(o).val();if((1==r||2==r&&"db"!=d)&&("wpcore"!=d&&(u=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),d="wpcore"),"wpcore"!=d||0==a){var s=[d,u];e.push(s),"wpcore"==d&&(a=1)}}}),1==t){if(1==updraft_restore_stage){jQuery("#updraft-restore-modal-stage1").slideUp("slow"),jQuery("#updraft-restore-modal-stage2").show(),updraft_restore_stage=2;var n=jQuery(".updraft_restore_date").first().text(),o=e,u=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:u},function(t){if(t.hasOwnProperty("downloads")&&(console.log("UpdraftPlus: items which still require downloading follow"),o=t.downloads,console.log(o)),0==o.length)updraft_restorer_checkstage2(0);else for(var e=0;e<o.length;e++)updraft_downloader("udrestoredlstatus_",u,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1})}catch(d){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(d),alert(updraftlion.jsonnotunderstood)}}else if(2==updraft_restore_stage)updraft_restorer_checkstage2(1);else if(3==updraft_restore_stage){var s=1;if(jQuery("#updraft_restoreoptions_ui input.required").each(function(t){if(0!=s){var e=jQuery(this).val();if(""==e)alert(updraftlion.pleasefillinrequired),s=0;else if(""!=jQuery(this).attr("pattern")){var a=jQuery(this).attr("pattern"),r=new RegExp(a,"g");r.test(e)||(alert(jQuery(this).data("invalidpattern")),s=0)}}}),!s)return;var i=jQuery("#updraft_restoreoptions_ui select, #updraft_restoreoptions_ui input").serialize();console.log("Restore options: "+i),jQuery("#updraft_restorer_restore_options").val(i),jQuery("#updraft-restore-modal-stage2a").html(updraftlion.restore_proceeding),jQuery("#updraft_restore_form").submit(),updraft_restore_stage=4}}else alert(updraftlion.youdidnotselectany)},h[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:h}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:345,width:580,modal:!0});var y={};y[updraftlion.backupnow]=function(){var t=jQuery("#backupnow_includedb").is(":checked")?0:1,e=jQuery("#backupnow_includefiles").is(":checked")?0:1,a=jQuery("#backupnow_includecloud").is(":checked")?0:1,r=backupnow_whichtables_checked("");if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var n=backupnow_whichfiles_checked("");return""==n&&0==e?(alert(updraftlion.nofileschosen),void jQuery("#backupnow_includefiles_moreoptions").show()):t&&e?void alert(updraftlion.excludedeverything):(jQuery(this).dialog("close"),setTimeout(function(){jQuery("#updraft_lastlogmessagerow").fadeOut("slow",function(){jQuery(this).fadeIn("slow")})},1700),void updraft_backupnow_go(t,e,a,n,"",jQuery("#backupnow_label").val(),r))},y[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:y}),jQuery("#updraft-migrate-modal").dialog({autoOpen:!1,height:updraftlion.migratemodalheight,width:updraftlion.migratemodalwidth,modal:!0}),jQuery("#updraft-poplog").dialog({autoOpen:!1,height:600,width:"75%",modal:!0}),jQuery("#updraft-navtab-settings-content .enableexpertmode").click(function(){return jQuery("#updraft-navtab-settings-content .expertmode").fadeIn(),jQuery("#updraft-navtab-settings-content .enableexpertmode").off("click"),!1}),jQuery("#updraft-navtab-settings-content .backupdirrow").on("click","a.updraft_backup_dir_reset",function(){return jQuery("#updraft_dir").val("updraft"),!1}),jQuery("#updraft-navtab-settings-content .updraft_include_entity").click(function(){var t=jQuery(this).data("toggle_exclude_field");t&&d(t,!1)}),jQuery("#updraft-navtab-settings-content .updraft-service").change(function(){var t=jQuery(this).val();jQuery("#updraft-navtab-settings-content .updraftplusmethod").hide(),jQuery("#updraft-navtab-settings-content ."+t).show()}),jQuery("#updraft-navtab-settings-content a.updraft_show_decryption_widget").click(function(t){t.preventDefault(),jQuery("#updraftplus_db_decrypt").val(jQuery("#updraft_encryptionphrase").val()),jQuery("#updraft-manualdecrypt-modal").slideToggle()}),jQuery("#updraftplus-phpinfo").click(function(t){t.preventDefault(),updraft_iframe_modal("phpinfo",updraftlion.phpinfo)}),jQuery("#updraftplus-rawbackuphistory").click(function(t){t.preventDefault(),updraft_iframe_modal("rawbackuphistory",updraftlion.raw)}),jQuery("#updraft-navtab-status").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-status-content").show(),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-expert-content").show(),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=4}),jQuery("#updraft-navtab-settings, #updraft-navtab-settings2, #updraft_backupnow_gotosettings").click(function(t){t.preventDefault(),jQuery(this).parents(".updraftmessage").remove(),jQuery("#updraft-backupnow-modal").dialog("close"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-settings-content").show(),jQuery("#updraft-navtab-settings").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=3}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").show(),jQuery("#updraft-navtab-addons").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=5}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_openrestorepanel(1)}),updraft_send_command("ping",null,function(t,e){"success"==e&&"pong"!=t&&t.indexOf("pong")>=0&&(jQuery("#updraft-navtab-backups-content .ud-whitespace-warning").show(),console.log("UpdraftPlus: Extra output warning: response (which should be just (string)'pong') follows."),console.log(t))},{json_parse:!1,type:"GET"});try{"undefined"!=typeof updraft_plupload_config&&s()}catch(m){console.log(m)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),i(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),i(1)}),jQuery("#updraftplus_callwpaction_go").click(function(t){t.preventDefault(),params={wpaction:jQuery("#updraftplus_callwpaction").val()},updraft_send_command("call_wordpress_action",params,function(t){t.e?alert(t.e):t.s||(t.r?jQuery("#updraftplus_callwpaction_results").html(t.r):(console.log(t),alert(updraftlion.jsonnotunderstood)))})}),jQuery("#updraft_activejobs_table").on("click",".updraft_jobinfo_delete",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_activejobs_delete(e):console.log("UpdraftPlus: A stop job link was clicked, but the Job ID could not be found")}),jQuery("#updraft_activejobs_table, #updraft-navtab-backups-content .updraft_existing_backups, #updraft-backupnow-inpage-modal").on("click",".updraft-log-link",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_popuplog(e):console.log("UpdraftPlus: A log link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.choose-components-button",function(t){var e=jQuery(this).data("entities"),a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("showdata");p(e,a,r)}),"initiate_restore"==l("udaction")){var v=l("entities"),b=l("backup_timestamp"),j=l("showdata");p(v,b,j)}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click",".updraft-delete-link",function(t){t.preventDefault();var e=jQuery(this).data("hasremote"),a=jQuery(this).data("nonce").toString(),r=jQuery(this).data("key").toString();a?updraft_delete(r,a,e):console.log("UpdraftPlus: A delete link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.updraft_download_button",function(t){t.preventDefault();var e="uddlstatus_",a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("what"),n=".ud_downloadstatus",o=jQuery(this).data("set_contents"),u=jQuery(this).data("prettydate"),d=!0;updraft_downloader(e,a,r,n,o,u,d)}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("dblclick",".updraft_existingbackup_date",function(t){t.preventDefault();var e=jQuery(this).data("rawbackup");null!=e&&""!=e&&updraft_html_modal(e,updraftlion.raw,780,500)})}),jQuery(document).ready(function(t){var e="#updraft-navtab-settings-content ";t(e+"#remote-storage-holder").on("click",".updraftvault_backtostart",function(a){a.preventDefault(),t(e+"#updraftvault_settings_showoptions").slideUp(),t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").slideUp(),t(e+"#updraftvault_settings_default").slideDown()}),t(e).on("keypress","#updraftvault_settings_connect input",function(a){if(13==a.which)return t(e+"#updraftvault_connect_go").click(),!1}),t(e+"#remote-storage-holder").on("click","#updraftvault_recountquota",function(a){a.preventDefault(),t(e+"#updraftvault_recountquota").html(updraftlion.counting);try{updraft_send_command("vault_recountquota",{instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html),a.hasOwnProperty("connected")&&(a.connected?(t(e+"#updraftvault_settings_default").hide(),t(e+"#updraftvault_settings_connected").show()):(t(e+"#updraftvault_settings_connected").hide(),t(e+"#updraftvault_settings_default").show())))})}catch(r){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_disconnect",function(a){a.preventDefault(),t(e+"#updraftvault_disconnect").html(updraftlion.disconnecting);try{updraft_send_command("vault_disconnect",{immediate_echo:!0,instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html).slideUp(),t(e+"#updraftvault_settings_default").slideDown())})}catch(r){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_connect").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_showoptions",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_showoptions").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect_go",function(a){return t(e+"#updraftvault_connect_go").html(updraftlion.connecting),updraft_send_command("vault_connect",{email:t("#updraftvault_email").val(),pass:t("#updraftvault_pass").val(),instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a,r,n){t(e+"#updraftvault_connect_go").html(updraftlion.connect),a.hasOwnProperty("e")?(updraft_html_modal('<h4 style="margin-top:0px; padding-top:0px;">'+updraftlion.errornocolon+"</h4><p>"+a.e+"</p>",updraftlion.disconnect,400,250),a.hasOwnProperty("code")&&"no_quota"==a.code&&(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_default").slideDown())):a.hasOwnProperty("connected")&&a.connected&&a.hasOwnProperty("html")?(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").html(a.html).slideDown()):(console.log(a),alert(updraftlion.unexpectedresponse+" "+n))}),!1})}),jQuery(document).ready(function(t){function e(){var t=new plupload.Uploader(updraft_plupload_config2);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui2");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area2").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area2").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){return/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-db([0-9]+)?\.(gz\.crypt)$/i.test(e.name)?void jQuery("#filelist2").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>'):(alert(e.name+": "+updraftlion.notdba),
|
3 |
+
void t.removeFile(e))}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100)))}),t.bind("Error",function(t,e){"-200"==e.code?err_makesure="\n"+updraftlion.makesure2:err_makesure=updraftlion.makesure,alert(updraftlion.uploaderr+" (code "+e.code+") : "+e.message+" "+err_makesure)}),t.bind("FileUploaded",function(t,e,a){"200"==a.status?"ERROR:"==a.response.substring(0,6)?alert(updraftlion.uploaderror+" "+a.response.substring(6)):"OK:"==a.response.substring(0,3)?(bkey=a.response.substring(3),jQuery("#"+e.id+" .fileprogress").hide(),jQuery("#"+e.id).append(updraftlion.uploaded+' <a href="?page=updraftplus&action=downloadfile&updraftplus_file='+bkey+"&decrypt_key="+encodeURIComponent(jQuery("#updraftplus_db_decrypt").val())+'">'+updraftlion.followlink+"</a> "+updraftlion.thiskey+" "+jQuery("#updraftplus_db_decrypt").val().replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">"))):alert(updraftlion.unknownresp+" "+a.response):alert(updraftlion.ukrespstatus+" "+a.code)})}try{"undefined"!=typeof updraft_plupload_config2&&e()}catch(a){console.log(a)}if(jQuery("#updraft-hidethis").remove(),Handlebars.registerHelper("ifeq",function(t,e,a){return"string"!=typeof t&&"undefined"!=typeof t&&null!==t&&(t=t.toString()),"string"!=typeof e&&"undefined"!=typeof e&&null!==e&&(e=e.toString()),t===e?a.fn(this):a.inverse(this)}),t("#remote-storage-holder").length){var r="";for(var n in updraftlion.remote_storage_templates)if("undefined"!=typeof updraftlion.remote_storage_options[n]){var o=Handlebars.compile(updraftlion.remote_storage_templates[n]),u=!0;for(var d in updraftlion.remote_storage_options[n])if("default"!==d){var s=updraftlion.remote_storage_options[n][d];s.first_instance=u,"undefined"==typeof s.instance_enabled&&(s.instance_enabled=1),r+=o(s),u=!1}}else r+=updraftlion.remote_storage_templates[n];t("#remote-storage-holder").append(r).ready(function(){t(".updraftplusmethod").not(".none").hide(),updraft_remote_storage_tabs_setup()})}}),jQuery(document).ready(function(t){function e(){var t=r("object"),e=new Date;t=JSON.stringify({version:"1.12.40",epoch_date:e.getTime(),local_date:e.toLocaleString(),network_site_url:updraftlion.network_site_url,data:t});var a=document.body.appendChild(document.createElement("a"));a.setAttribute("download",updraftlion.export_settings_file_name),a.setAttribute("style","display:none;"),a.setAttribute("href","data:text/json;charset=UTF-8,"+encodeURIComponent(t)),a.click()}function a(e){var a,r=decodeURIComponent(e);try{a=ud_parse_json(r)}catch(o){return t.unblockUI(),jQuery("#import_settings").val(""),console.log(r),console.log(o),void alert(updraftlion.import_invalid_json_file)}if(window.confirm(updraftlion.importing_data_from+" "+r.network_site_url+"\n"+updraftlion.exported_on+" "+r.local_date+"\n"+updraftlion.continue_import)){var u=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:u,updraftplus_version:updraftlion.updraftplus_version},function(e){var a=n(e);!a.hasOwnProperty("saved")||a.saved?(updraft_settings_form_changed=!1,location.replace(updraftlion.updraft_settings_url)):(t.unblockUI(),a.hasOwnProperty("error_message")&&a.error_message&&alert(a.error_message))},{action:"updraft_importsettings",nonce:updraftplus_settings_nonce,json_parse:!1})}else t.unblockUI()}function r(e){var a="",e="undefined"==typeof e?"string":e;return"object"==e?a=t("#updraft-navtab-settings-content form input[name!='action'][name!='option_page'][name!='_wpnonce'][name!='_wp_http_referer'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select, #updraft-navtab-settings-content form input[type=checkbox]").serializeJSON({checkboxUncheckedValue:"0",useIntKeysAsArrayIndex:!0}):(a=t("#updraft-navtab-settings-content form input[name!='action'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select").serialize(),t.each(t("#updraft-navtab-settings-content form input[type=checkbox]").filter(function(e){return 0==t(this).prop("checked")}),function(e,r){var n="0";a+="&"+t(r).attr("name")+"="+n})),a}function n(e){try{var a=ud_parse_json(e),r=(a.messages,a.backup_dir.writable),n=a.backup_dir.message,o=a.backup_dir.button_title}catch(u){return console.log(u),console.log(e),alert(updraftlion.jsonnotunderstood),t.unblockUI(),{}}if(a.hasOwnProperty("changed")){console.log("UpdraftPlus: savesettings: some values were changed after being filtered"),console.log(a.changed);for(prop in a.changed)if("object"==typeof a.changed[prop])for(innerprop in a.changed[prop])t("[name='"+innerprop+"']").is(":checkbox")||t("[name='"+prop+"["+innerprop+"]']").val(a.changed[prop][innerprop]);else t("[name='"+prop+"']").is(":checkbox")||t("[name='"+prop+"']").val(a.changed[prop])}return t("#updraft_writable_mess").html(n),0==r?(t("#updraft-backupnow-button").attr("disabled","disabled"),t("#updraft-backupnow-button").attr("title",o),t(".backupdirrow").css("display","table-row")):(t("#updraft-backupnow-button").removeAttr("disabled"),t("#updraft-backupnow-button").removeAttr("title")),a.hasOwnProperty("updraft_include_more_path")&&t("#backupnow_includefiles_moreoptions").html(a.updraft_include_more_path),a.hasOwnProperty("backup_now_message")&&t("#backupnow_remote_container").html(a.backup_now_message),t(".updraftmessage").remove(),t("#updraft_backup_started").before(a.messages),t("#next-backup-table-inner").html(a.scheduled),a}function o(){var t=!1;if(jQuery("#updraft-authenticate-modal-innards").html(""),jQuery("div[class*=updraft_authenticate_] a.updraft_authlink").each(function(){jQuery("#updraft-authenticate-modal-innards").append('<p><a href="'+jQuery(this).attr("href")+'">'+jQuery(this).html()+"</a></p>"),t=!0}),t){var e={};e[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-authenticate-modal").dialog({autoOpen:!0,modal:!0,resizable:!1,draggable:!1,buttons:e,width:"auto"}).dialog("open")}}var u=new Image;u.src=updraftlion.ud_url+"/images/udlogo-rotating.gif",t("#updraft-navtab-settings-content input.updraft_include_entity").change(function(e){var a=t(this).attr("id"),r=t(this).is(":checked"),n="#backupnow_files_"+a;t(n).prop("checked",r)}),t("#updraftplus-settings-save").click(function(e){e.preventDefault(),t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.saving+"</div>"});var a=r("string");updraft_send_command("savesettings",{settings:a,updraftplus_version:updraftlion.updraftplus_version},function(e){n(e),t("#updraft-wrap .fade").delay(6e3).fadeOut(2e3),t("html, body").animate({scrollTop:t("#updraft-wrap").offset().top},1e3,function(){o()}),t.unblockUI()},{action:"updraft_savesettings",nonce:updraftplus_settings_nonce,json_parse:!1})}),t("#updraftplus-settings-export").click(function(){updraft_settings_form_changed&&alert(updraftlion.unsaved_settings_export),e()}),t("#updraftplus-settings-import").click(function(){t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.importing+"</div>"});var e=document.getElementById("import_settings");if(0==e.files.length)return alert(updraftlion.import_select_file),void t.unblockUI();var r=e.files[0],n=new FileReader;n.onload=function(){a(this.result)},n.readAsText(r)})}),jQuery(document).ready(function(t){jQuery("#updraft-restore-modal").on("change","#updraft_restorer_charset",function(e){if(t("#updraft_restorer_charset").length&&t("#updraft_restorer_collate").length&&t("#collate_change_on_charset_selection_data").length){var a=t("#updraft_restorer_charset").val();t("#updraft_restorer_collate option").show(),t("#updraft_restorer_collate option[data-charset!="+a+"]").hide(),updraft_send_command("collate_change_on_charset_selection",{collate_change_on_charset_selection_data:t("#collate_change_on_charset_selection_data").val(),updraft_restorer_charset:a,updraft_restorer_collate:t("#updraft_restorer_collate").val()},function(e){e.hasOwnProperty("is_action_required")&&1==e.is_action_required&&e.hasOwnProperty("similar_type_collate")&&t("#updraft_restorer_collate").val(e.similar_type_collate)})}})});
|
@@ -11,6 +11,50 @@ msgstr ""
|
|
11 |
"Language: af_ZA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
msgstr ""
|
@@ -19,11 +63,11 @@ msgstr ""
|
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr ""
|
29 |
|
@@ -91,25 +135,25 @@ msgstr ""
|
|
91 |
msgid "remote site"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] ""
|
102 |
msgstr[1] ""
|
103 |
|
104 |
-
#: src/class-updraftplus.php:
|
105 |
msgid "Your chosen replacement collation"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: src/class-updraftplus.php:
|
109 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: src/class-updraftplus.php:
|
113 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
114 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
115 |
msgstr[0] ""
|
@@ -123,27 +167,27 @@ msgstr ""
|
|
123 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: src/addons/azure.php:
|
127 |
msgid "%s Prefix"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: src/addons/azure.php:
|
131 |
msgid "%s Container"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: src/addons/azure.php:
|
135 |
msgid "%s Key"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/addons/azure.php:
|
139 |
msgid "%s Account Name"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: src/addons/googlecloud.php:
|
143 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: src/addons/googlecloud.php:
|
147 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
148 |
msgstr ""
|
149 |
|
@@ -173,19 +217,19 @@ msgid_plural "Your .htaccess has an old site references on line numbers %s. You
|
|
173 |
msgstr[0] ""
|
174 |
msgstr[1] ""
|
175 |
|
176 |
-
#: src/restorer.php:
|
177 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: src/class-updraftplus.php:
|
181 |
msgid "Your chosen character set to use instead:"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: src/class-updraftplus.php:
|
185 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: src/class-updraftplus.php:
|
189 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
190 |
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."
|
191 |
msgstr[0] ""
|
@@ -239,59 +283,59 @@ msgstr ""
|
|
239 |
msgid "Please enter a valid URL e.g http://example.com"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: src/addons/backblaze.php:
|
243 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: src/addons/backblaze.php:
|
247 |
msgid "some/path"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/addons/backblaze.php:
|
251 |
msgid "Bucket name"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/addons/backblaze.php:
|
255 |
msgid "Backup path"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "Application key"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "here"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "Get these settings from %s, or sign up %s."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Account Key"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Account ID"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/class-updraftplus.php:
|
279 |
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."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/class-updraftplus.php:
|
283 |
msgid "the migrator add-on"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/class-updraftplus.php:
|
287 |
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."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/class-updraftplus.php:
|
291 |
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."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
msgstr ""
|
297 |
|
@@ -311,15 +355,15 @@ msgstr ""
|
|
311 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/admin.php:1368, src/admin.php:
|
315 |
-
#: src/class-updraftplus.php:
|
316 |
-
#: src/class-updraftplus.php:
|
317 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: src/admin.php:1359, src/admin.php:
|
321 |
-
#: src/class-updraftplus.php:
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "A PHP exception (%s) has occurred: %s"
|
324 |
msgstr ""
|
325 |
|
@@ -375,7 +419,7 @@ msgstr ""
|
|
375 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/admin.php:
|
379 |
msgid "Value"
|
380 |
msgstr ""
|
381 |
|
@@ -387,7 +431,7 @@ msgstr ""
|
|
387 |
msgid "Encrypted login failed; trying non-encrypted"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/addons/azure.php:
|
391 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
392 |
msgstr ""
|
393 |
|
@@ -399,11 +443,11 @@ msgstr ""
|
|
399 |
msgid "Cloud Files"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: src/admin.php:
|
403 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: src/admin.php:
|
407 |
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."
|
408 |
msgstr ""
|
409 |
|
@@ -412,11 +456,11 @@ msgstr ""
|
|
412 |
msgid "UpdraftVault"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: src/includes/class-wpadmin-commands.php:
|
416 |
msgid "archive"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: src/includes/class-wpadmin-commands.php:
|
420 |
msgid "Extra database"
|
421 |
msgstr ""
|
422 |
|
@@ -460,11 +504,11 @@ msgstr ""
|
|
460 |
msgid "Browse contents"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: src/restorer.php:
|
464 |
msgid "Skipped tables:"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: src/class-updraftplus.php:
|
468 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
469 |
msgstr ""
|
470 |
|
@@ -673,14 +717,6 @@ msgstr ""
|
|
673 |
msgid "Recommended: optimize your database with WP-Optimize."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
677 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
681 |
-
msgid "WP-Optimize"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
685 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
686 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -728,27 +764,7 @@ msgstr ""
|
|
728 |
msgid "Europe (Ireland)"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
732 |
-
msgid "WP-Optimize (free)"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
736 |
-
msgid "Explore our Cloud and Premium versions."
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
740 |
-
msgid "Download it for free from WordPress.org"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
744 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
748 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
752 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
753 |
msgid "UpdraftCentral"
|
754 |
msgstr ""
|
@@ -960,11 +976,11 @@ msgstr ""
|
|
960 |
msgid "Export / import settings"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: src/restorer.php:
|
964 |
msgid "Processing table (%s)"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: src/restorer.php:
|
968 |
msgid "Backup of: %s"
|
969 |
msgstr ""
|
970 |
|
@@ -972,11 +988,11 @@ msgstr ""
|
|
972 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: src/methods/dropbox.php:
|
976 |
msgid "%s de-authentication"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: src/methods/dropbox.php:
|
980 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
981 |
msgstr ""
|
982 |
|
@@ -1044,24 +1060,24 @@ msgstr ""
|
|
1044 |
msgid "US East (Ohio)"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: src/addons/onedrive.php:
|
1048 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/addons/onedrive.php:
|
1052 |
msgid "Account is not authorized (%s)."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/addons/onedrive.php:
|
1056 |
msgid "Your IP address:"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: src/addons/onedrive.php:
|
1060 |
#: src/udaddons/updraftplus-addons.php:887
|
1061 |
msgid "To remove any block, please go here."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: src/addons/onedrive.php:
|
1065 |
msgid "An error response was received; HTTP code:"
|
1066 |
msgstr ""
|
1067 |
|
@@ -1089,27 +1105,27 @@ msgstr ""
|
|
1089 |
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."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: src/addons/webdav.php:
|
1093 |
msgid "Path"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: src/addons/webdav.php:
|
1097 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: src/addons/webdav.php:
|
1101 |
msgid "Enter any path in the field below."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: src/addons/webdav.php:
|
1105 |
msgid "A host name cannot contain a slash."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "Protocol (SSL or not)"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1114 |
msgstr ""
|
1115 |
|
@@ -1117,11 +1133,11 @@ msgstr ""
|
|
1117 |
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."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: src/methods/s3.php:
|
1121 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: src/methods/s3.php:
|
1125 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1126 |
msgstr ""
|
1127 |
|
@@ -1227,7 +1243,7 @@ msgstr ""
|
|
1227 |
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."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: src/class-updraftplus.php:
|
1231 |
msgid "Size: %s MB"
|
1232 |
msgstr ""
|
1233 |
|
@@ -1239,7 +1255,7 @@ msgstr ""
|
|
1239 |
msgid "Now"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: src/class-updraftplus.php:
|
1243 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1345,11 +1361,11 @@ msgstr ""
|
|
1345 |
msgid "UpdraftCentral Connection"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1349 |
msgid "The backup was aborted by the user"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: src/admin.php:
|
1353 |
msgid "Your settings have been saved."
|
1354 |
msgstr ""
|
1355 |
|
@@ -1415,7 +1431,7 @@ msgstr ""
|
|
1415 |
msgid "Asia Pacific (Seoul)"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: src/restorer.php:
|
1419 |
msgid "Uploads URL:"
|
1420 |
msgstr ""
|
1421 |
|
@@ -1423,15 +1439,15 @@ msgstr ""
|
|
1423 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/class-updraftplus.php:
|
1427 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/class-updraftplus.php:
|
1431 |
msgid "Please read this link for important information on this process."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: src/class-updraftplus.php:
|
1435 |
msgid "It will be imported as a new site."
|
1436 |
msgstr ""
|
1437 |
|
@@ -1505,7 +1521,7 @@ msgstr ""
|
|
1505 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: src/admin.php:
|
1509 |
msgid "Skipping: this archive was already restored."
|
1510 |
msgstr ""
|
1511 |
|
@@ -1537,23 +1553,23 @@ msgstr ""
|
|
1537 |
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)."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: src/admin.php:
|
1541 |
msgid "Send this backup to remote storage"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: src/admin.php:
|
1545 |
msgid "Check out UpdraftPlus Vault."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: src/admin.php:
|
1549 |
msgid "Not got any remote storage?"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: src/admin.php:
|
1553 |
msgid "settings"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1558 |
msgstr ""
|
1559 |
|
@@ -1610,23 +1626,23 @@ msgstr ""
|
|
1610 |
msgid "Advanced Tools"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: src/addons/googlecloud.php:
|
1614 |
msgid "Bucket location"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: src/addons/googlecloud.php:
|
1618 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: src/addons/googlecloud.php:
|
1622 |
msgid "This setting applies only when a new bucket is being created."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: src/addons/googlecloud.php:
|
1626 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "Do not confuse %s with %s - they are separate things."
|
1631 |
msgstr ""
|
1632 |
|
@@ -1688,48 +1704,48 @@ msgstr ""
|
|
1688 |
msgid "Standard"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: src/addons/azure.php:
|
1692 |
msgid "container"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: src/addons/azure.php:
|
1696 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: src/addons/azure.php:
|
1700 |
msgid "optional"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: src/addons/azure.php:
|
1704 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "Enter the path of the %s you wish to use here."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
-
#: src/addons/azure.php:
|
1717 |
msgid "Azure"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: src/addons/azure.php:
|
1721 |
msgid "Create Azure credentials in your Azure developer console."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: src/addons/azure.php:
|
1725 |
msgid "Could not create the container"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: src/addons/azure.php:
|
1729 |
msgid "Could not access container"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: src/class-updraftplus.php:
|
1733 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1734 |
msgstr ""
|
1735 |
|
@@ -1757,47 +1773,47 @@ msgstr ""
|
|
1757 |
msgid "Not installed"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: src/addons/googlecloud.php:
|
1761 |
msgid "Storage class"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: src/addons/googlecloud.php:
|
1765 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: src/addons/googlecloud.php:
|
1769 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: src/addons/googlecloud.php:
|
1773 |
msgid "Bucket"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Otherwise, you can leave it blank."
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "Enter the ID of the %s project you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "Project ID"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "You must save and authenticate before you can test your settings."
|
1802 |
msgstr ""
|
1803 |
|
@@ -1806,22 +1822,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1806 |
msgstr ""
|
1807 |
|
1808 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1809 |
-
#: src/addons/googlecloud.php:
|
1810 |
msgid "You do not have access to this bucket."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1814 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1815 |
-
#: src/addons/googlecloud.php:
|
1816 |
-
#: src/addons/googlecloud.php:
|
1817 |
-
#: src/addons/googlecloud.php:
|
1818 |
-
#: src/addons/googlecloud.php:
|
1819 |
msgid "Google Cloud"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1823 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1824 |
-
#: src/addons/googlecloud.php:
|
1825 |
msgid "%s Service Exception."
|
1826 |
msgstr ""
|
1827 |
|
@@ -1829,7 +1845,7 @@ msgstr ""
|
|
1829 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: src/restorer.php:
|
1833 |
msgid "Deferring..."
|
1834 |
msgstr ""
|
1835 |
|
@@ -1898,11 +1914,11 @@ msgstr ""
|
|
1898 |
msgid "Add an additional retention rule..."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: src/restorer.php:
|
1902 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: src/restorer.php:
|
1906 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1907 |
msgstr ""
|
1908 |
|
@@ -1910,11 +1926,11 @@ msgstr ""
|
|
1910 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: src/class-updraftplus.php:
|
1914 |
msgid "You must upgrade MySQL to be able to use this database."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: src/class-updraftplus.php:
|
1918 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1919 |
msgstr ""
|
1920 |
|
@@ -2092,8 +2108,8 @@ msgstr ""
|
|
2092 |
msgid "Updraft Vault"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: src/addons/azure.php:
|
2096 |
-
#: src/addons/googlecloud.php:
|
2097 |
msgid "Delete failed:"
|
2098 |
msgstr ""
|
2099 |
|
@@ -2129,10 +2145,6 @@ msgstr ""
|
|
2129 |
msgid "Existing keys"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: src/addons/migrator.php:2423
|
2133 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2134 |
-
msgstr ""
|
2135 |
-
|
2136 |
#: src/addons/migrator.php:2405
|
2137 |
msgid "Your new key:"
|
2138 |
msgstr ""
|
@@ -2338,7 +2350,7 @@ msgstr ""
|
|
2338 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: src/restorer.php:
|
2342 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2343 |
msgstr ""
|
2344 |
|
@@ -2370,41 +2382,41 @@ msgstr ""
|
|
2370 |
msgid "You have made changes to your settings, and not saved."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: src/addons/onedrive.php:
|
2374 |
msgid "N.B. %s is not case-sensitive."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: src/addons/onedrive.php:
|
2378 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: src/addons/azure.php:
|
2382 |
-
#: src/addons/onedrive.php:
|
2383 |
msgid "For longer help, including screenshots, follow this link."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: src/addons/onedrive.php:
|
2387 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: src/addons/onedrive.php:
|
2391 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: src/addons/azure.php:
|
2395 |
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)."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: src/addons/onedrive.php:
|
2399 |
msgid "%s authorisation failed:"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
-
#: src/addons/onedrive.php:
|
2404 |
msgid "OneDrive"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: src/addons/onedrive.php:
|
2408 |
msgid "Please re-authorize the connection to your %s account."
|
2409 |
msgstr ""
|
2410 |
|
@@ -2412,7 +2424,7 @@ msgstr ""
|
|
2412 |
msgid "configure it here"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: src/addons/onedrive.php:
|
2416 |
msgid "To remove the block, please go here."
|
2417 |
msgstr ""
|
2418 |
|
@@ -2557,74 +2569,66 @@ msgstr ""
|
|
2557 |
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)"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: src/methods/s3.php:
|
2561 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2565 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2569 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: src/addons/onedrive.php:
|
2573 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2574 |
#: src/udaddons/updraftplus-addons.php:887
|
2575 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: src/addons/onedrive.php:
|
2579 |
#: src/udaddons/updraftplus-addons.php:887
|
2580 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: src/addons/onedrive.php:
|
2584 |
#: src/udaddons/updraftplus-addons.php:887
|
2585 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2589 |
msgid "Premium WooCommerce plugins"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2593 |
msgid "Free two-factor security plugin"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2597 |
-
msgid "More
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2601 |
msgid "Go to the shop."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2605 |
msgid "Compare with the free version"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2609 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2610 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2611 |
msgid "UpdraftPlus Premium"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2615 |
-
msgid "Follow this link to sign up."
|
2616 |
-
msgstr ""
|
2617 |
-
|
2618 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
2619 |
msgid "Free Newsletter"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
2623 |
-
msgid "Thank you for backing up with UpdraftPlus!"
|
2624 |
-
msgstr ""
|
2625 |
-
|
2626 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2627 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2628 |
msgid "Dismiss (for %s months)"
|
2629 |
msgstr ""
|
2630 |
|
@@ -2665,8 +2669,8 @@ msgstr ""
|
|
2665 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: src/methods/s3.php:
|
2669 |
-
#: src/methods/s3.php:
|
2670 |
msgid "%s Error: Failed to initialise"
|
2671 |
msgstr ""
|
2672 |
|
@@ -2711,7 +2715,7 @@ msgctxt "i.e. Non-automatic"
|
|
2711 |
msgid "Manual"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: src/restorer.php:
|
2715 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2716 |
msgid "An error (%s) occurred:"
|
2717 |
msgstr ""
|
@@ -2852,7 +2856,7 @@ msgstr ""
|
|
2852 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: src/class-updraftplus.php:
|
2856 |
msgid "Backup label:"
|
2857 |
msgstr ""
|
2858 |
|
@@ -2876,7 +2880,7 @@ msgstr ""
|
|
2876 |
msgid "Your label for this backup (optional)"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: src/addons/googlecloud.php:
|
2880 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2881 |
msgstr ""
|
2882 |
|
@@ -2896,11 +2900,11 @@ msgstr ""
|
|
2896 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: src/class-updraftplus.php:
|
2900 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2905 |
msgstr ""
|
2906 |
|
@@ -2937,19 +2941,19 @@ msgstr ""
|
|
2937 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: src/class-updraftplus.php:
|
2941 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
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."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2954 |
msgstr ""
|
2955 |
|
@@ -2994,7 +2998,7 @@ msgstr ""
|
|
2994 |
msgid "Start backup"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: src/class-updraftplus.php:
|
2998 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
2999 |
msgstr ""
|
3000 |
|
@@ -3030,7 +3034,7 @@ msgstr ""
|
|
3030 |
msgid "Memory limit"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: src/class-updraftplus.php:
|
3034 |
msgid "restoration"
|
3035 |
msgstr ""
|
3036 |
|
@@ -3093,7 +3097,7 @@ msgstr ""
|
|
3093 |
msgid "search term"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: src/restorer.php:
|
3097 |
msgid "Too many database errors have occurred - aborting"
|
3098 |
msgstr ""
|
3099 |
|
@@ -3129,7 +3133,7 @@ msgstr ""
|
|
3129 |
msgid "Free disk space in account:"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: src/admin.php:
|
3133 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3134 |
msgstr ""
|
3135 |
|
@@ -3224,7 +3228,7 @@ msgstr ""
|
|
3224 |
msgid "user"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: src/class-updraftplus.php:
|
3228 |
msgid "External database (%s)"
|
3229 |
msgstr ""
|
3230 |
|
@@ -3236,8 +3240,8 @@ msgstr ""
|
|
3236 |
msgid "failed to access parent folder"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: src/addons/googlecloud.php:
|
3240 |
-
#: src/addons/onedrive.php:
|
3241 |
msgid "However, subsequent access attempts failed:"
|
3242 |
msgstr ""
|
3243 |
|
@@ -3273,7 +3277,7 @@ msgstr ""
|
|
3273 |
msgid "use UpdraftPlus Premium"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: src/class-updraftplus.php:
|
3277 |
msgid "Decryption failed. The database file is encrypted."
|
3278 |
msgstr ""
|
3279 |
|
@@ -3281,8 +3285,8 @@ msgstr ""
|
|
3281 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: src/restorer.php:
|
3285 |
-
#: src/restorer.php:
|
3286 |
msgid "An error occurred on the first %s command - aborting run"
|
3287 |
msgstr ""
|
3288 |
|
@@ -3302,17 +3306,17 @@ msgstr ""
|
|
3302 |
msgid "In %s, path names are case sensitive."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: src/addons/azure.php:
|
3306 |
-
#: src/addons/onedrive.php:
|
3307 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:
|
3311 |
-
#: src/addons/onedrive.php:
|
3312 |
msgid "e.g. %s"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:
|
3316 |
msgid "Enter the path of the %s folder you wish to use here."
|
3317 |
msgstr ""
|
3318 |
|
@@ -3356,7 +3360,7 @@ msgstr ""
|
|
3356 |
msgid "Failed to upload %s"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: src/methods/dropbox.php:
|
3360 |
msgid "Success:"
|
3361 |
msgstr ""
|
3362 |
|
@@ -3364,15 +3368,15 @@ msgstr ""
|
|
3364 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: src/addons/onedrive.php:
|
3368 |
msgid "(You appear to be already authenticated)."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: src/methods/dropbox.php:
|
3372 |
msgid "Dropbox"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: src/addons/onedrive.php:
|
3376 |
msgid "Authenticate with %s"
|
3377 |
msgstr ""
|
3378 |
|
@@ -3403,8 +3407,8 @@ msgstr ""
|
|
3403 |
msgid "%s error - failed to access the container"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: src/addons/googlecloud.php:
|
3407 |
-
#: src/methods/dropbox.php:
|
3408 |
msgid "Account holder's name: %s."
|
3409 |
msgstr ""
|
3410 |
|
@@ -3420,17 +3424,17 @@ msgstr ""
|
|
3420 |
msgid "<strong>This is NOT a folder name</strong>."
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:
|
3424 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3425 |
msgid "Folder"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:
|
3429 |
#: src/methods/googledrive.php:1122
|
3430 |
msgid "%s download: failed: file not found"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: src/addons/googlecloud.php:
|
3434 |
msgid "Name: %s."
|
3435 |
msgstr ""
|
3436 |
|
@@ -3469,7 +3473,7 @@ msgstr ""
|
|
3469 |
msgid "Failed to unpack the archive"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: src/class-updraftplus.php:
|
3473 |
msgid "Error - failed to download the file"
|
3474 |
msgstr ""
|
3475 |
|
@@ -3494,7 +3498,7 @@ msgid "password/key"
|
|
3494 |
msgstr ""
|
3495 |
|
3496 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3497 |
-
#: src/admin.php:
|
3498 |
msgid "Key"
|
3499 |
msgstr ""
|
3500 |
|
@@ -3519,7 +3523,7 @@ msgid "Files and database WordPress backup (created by %s)"
|
|
3519 |
msgstr ""
|
3520 |
|
3521 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3522 |
-
#: src/includes/class-backup-history.php:
|
3523 |
msgid "Backup created by: %s."
|
3524 |
msgstr ""
|
3525 |
|
@@ -3551,7 +3555,7 @@ msgstr ""
|
|
3551 |
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."
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: src/admin.php:694, src/includes/class-backup-history.php:
|
3555 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3556 |
msgstr ""
|
3557 |
|
@@ -3560,20 +3564,20 @@ msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are
|
|
3560 |
msgstr ""
|
3561 |
|
3562 |
#: src/admin.php:693, src/admin.php:694,
|
3563 |
-
#: src/includes/class-backup-history.php:
|
3564 |
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))."
|
3565 |
msgstr ""
|
3566 |
|
3567 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3568 |
-
#: src/restorer.php:
|
3569 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: src/restorer.php:
|
3573 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: src/restorer.php:
|
3577 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3578 |
msgstr ""
|
3579 |
|
@@ -3585,12 +3589,12 @@ msgstr ""
|
|
3585 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: src/addons/backblaze.php:
|
3589 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3590 |
msgid "No settings were found"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: src/includes/class-backup-history.php:
|
3594 |
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."
|
3595 |
msgstr ""
|
3596 |
|
@@ -3598,7 +3602,7 @@ msgstr ""
|
|
3598 |
msgid "Rescanning remote and local storage for backup sets..."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: src/addons/googlecloud.php:
|
3602 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3603 |
msgid "(Read more)"
|
3604 |
msgstr ""
|
@@ -3616,7 +3620,7 @@ msgstr ""
|
|
3616 |
msgid "Remove"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: src/methods/s3.php:
|
3620 |
msgid "Other %s FAQs."
|
3621 |
msgstr ""
|
3622 |
|
@@ -3628,12 +3632,12 @@ msgstr ""
|
|
3628 |
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."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/class-updraftplus.php:
|
3632 |
-
#: src/restorer.php:
|
3633 |
msgid "Your hosting company must enable these functions before %s can work."
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: src/class-updraftplus.php:
|
3637 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3638 |
msgstr ""
|
3639 |
|
@@ -3649,7 +3653,7 @@ msgstr ""
|
|
3649 |
msgid "regular non-encrypted FTP"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: src/restorer.php:
|
3653 |
msgid "Backup created by:"
|
3654 |
msgstr ""
|
3655 |
|
@@ -3703,19 +3707,19 @@ msgstr ""
|
|
3703 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: src/class-updraftplus.php:
|
3707 |
msgid "The attempt to undo the double-compression succeeded."
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression failed."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: src/includes/class-wpadmin-commands.php:
|
3719 |
msgid "Constants"
|
3720 |
msgstr ""
|
3721 |
|
@@ -3764,7 +3768,7 @@ msgstr ""
|
|
3764 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: src/restorer.php:
|
3768 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3769 |
msgstr ""
|
3770 |
|
@@ -3785,11 +3789,11 @@ msgstr ""
|
|
3785 |
msgid "Messages:"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: src/restorer.php:
|
3789 |
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"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: src/restorer.php:
|
3793 |
msgid "The directory does not exist"
|
3794 |
msgstr ""
|
3795 |
|
@@ -3958,7 +3962,7 @@ msgstr ""
|
|
3958 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:679, src/admin.php:
|
3962 |
msgid "Error data:"
|
3963 |
msgstr ""
|
3964 |
|
@@ -3970,11 +3974,11 @@ msgstr ""
|
|
3970 |
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."
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: src/restorer.php:
|
3974 |
msgid "Split line to avoid exceeding maximum packet size"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: src/restorer.php:
|
3978 |
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)"
|
3979 |
msgstr ""
|
3980 |
|
@@ -4006,11 +4010,11 @@ msgstr ""
|
|
4006 |
msgid "Email reports"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: src/class-updraftplus.php:
|
4010 |
msgid "%s checksum: %s"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "files: %s"
|
4015 |
msgstr ""
|
4016 |
|
@@ -4063,19 +4067,19 @@ msgstr ""
|
|
4063 |
msgid "%d errors, %d warnings"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: src/addons/onedrive.php:
|
4067 |
-
#: src/methods/dropbox.php:
|
4068 |
msgid "%s authentication"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: src/addons/onedrive.php:
|
4072 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4073 |
-
#: src/methods/dropbox.php:
|
4074 |
-
#: src/methods/dropbox.php:
|
4075 |
msgid "%s error: %s"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: src/addons/googlecloud.php:
|
4079 |
msgid "%s logo"
|
4080 |
msgstr ""
|
4081 |
|
@@ -4083,7 +4087,7 @@ msgstr ""
|
|
4083 |
msgid "%s did not return the expected response - check your log file for more details"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: src/methods/s3.php:
|
4087 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4088 |
msgstr ""
|
4089 |
|
@@ -4104,7 +4108,7 @@ msgstr ""
|
|
4104 |
msgid "For more reporting features, use the Reporting add-on."
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: src/class-updraftplus.php:
|
4108 |
msgid "(version: %s)"
|
4109 |
msgstr ""
|
4110 |
|
@@ -4245,7 +4249,7 @@ msgstr ""
|
|
4245 |
msgid "Reporting"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: src/admin.php:
|
4249 |
msgid "Options (raw)"
|
4250 |
msgstr ""
|
4251 |
|
@@ -4253,7 +4257,7 @@ msgstr ""
|
|
4253 |
msgid "Send a report only when there are warnings/errors"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: src/restorer.php:
|
4257 |
msgid "Content URL:"
|
4258 |
msgstr ""
|
4259 |
|
@@ -4397,7 +4401,7 @@ msgstr ""
|
|
4397 |
msgid "Your web-server does not have the %s module installed."
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: src/addons/googlecloud.php:
|
4401 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4402 |
msgstr ""
|
4403 |
|
@@ -4417,7 +4421,7 @@ msgstr ""
|
|
4417 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: src/restorer.php:
|
4421 |
msgid "Site home:"
|
4422 |
msgstr ""
|
4423 |
|
@@ -4433,7 +4437,7 @@ msgstr ""
|
|
4433 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: src/addons/azure.php:
|
4437 |
#: src/methods/stream-base.php:149
|
4438 |
msgid "Upload failed"
|
4439 |
msgstr ""
|
@@ -4577,27 +4581,27 @@ msgstr ""
|
|
4577 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/restorer.php:
|
4581 |
msgid "file"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: src/restorer.php:
|
4585 |
msgid "folder"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: src/restorer.php:
|
4589 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: src/class-updraftplus.php:
|
4593 |
msgid "The backup has not finished; a resumption is scheduled"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: src/addons/onedrive.php:
|
4601 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4602 |
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)."
|
4603 |
msgstr ""
|
@@ -4682,23 +4686,23 @@ msgstr ""
|
|
4682 |
msgid "Support"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: src/class-updraftplus.php:
|
4686 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "This database backup is missing core WordPress tables: %s"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
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."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
msgid "%s version: %s"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4703 |
msgstr ""
|
4704 |
|
@@ -4783,15 +4787,15 @@ msgstr ""
|
|
4783 |
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?"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: src/includes/class-wpadmin-commands.php:
|
4787 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4796 |
msgstr ""
|
4797 |
|
@@ -4831,16 +4835,16 @@ msgstr ""
|
|
4831 |
msgid "WordPress root directory server path: %s"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: src/methods/dreamobjects.php:
|
4835 |
msgid "%s end-point"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: src/methods/s3.php:
|
4839 |
msgid "... and many more!"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: src/methods/s3generic.php:
|
4843 |
-
#: src/methods/s3generic.php:
|
4844 |
msgid "S3 (Compatible)"
|
4845 |
msgstr ""
|
4846 |
|
@@ -4848,11 +4852,11 @@ msgstr ""
|
|
4848 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: src/admin.php:
|
4852 |
msgid "Looking for %s archive: file name: %s"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Final checks"
|
4857 |
msgstr ""
|
4858 |
|
@@ -4880,7 +4884,7 @@ msgstr ""
|
|
4880 |
msgid "Processing files - please wait..."
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#: src/admin.php:
|
4884 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4885 |
msgid "Please consult this FAQ for help on what to do about it."
|
4886 |
msgstr ""
|
@@ -4889,30 +4893,30 @@ msgstr ""
|
|
4889 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: src/class-updraftplus.php:
|
4893 |
msgid "Failed to open database file."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: src/admin.php:
|
4897 |
msgid "Known backups (raw)"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: src/restorer.php:
|
4901 |
msgid "Files found:"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: src/restorer.php:
|
4905 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: src/admin.php:
|
4909 |
msgid "file is size:"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: src/addons/googlecloud.php:
|
4913 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4914 |
-
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:
|
4915 |
-
#: src/class-updraftplus.php:
|
4916 |
msgid "Go here for more information."
|
4917 |
msgstr ""
|
4918 |
|
@@ -4920,7 +4924,7 @@ msgstr ""
|
|
4920 |
msgid "Some files are still downloading or being processed - please wait."
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: src/class-updraftplus.php:
|
4924 |
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."
|
4925 |
msgstr ""
|
4926 |
|
@@ -4964,7 +4968,7 @@ msgstr ""
|
|
4964 |
msgid "Error - no such file exists at %s"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: src/addons/azure.php:
|
4968 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4969 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4970 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
@@ -4993,10 +4997,10 @@ msgstr ""
|
|
4993 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4994 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4995 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
4996 |
-
#: src/class-updraftplus.php:
|
4997 |
-
#: src/class-updraftplus.php:
|
4998 |
-
#: src/class-updraftplus.php:
|
4999 |
-
#: src/methods/s3.php:
|
5000 |
msgid "Error: %s"
|
5001 |
msgstr ""
|
5002 |
|
@@ -5036,7 +5040,7 @@ msgstr ""
|
|
5036 |
msgid "Warnings encountered:"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: src/class-updraftplus.php:
|
5040 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5041 |
msgstr ""
|
5042 |
|
@@ -5076,40 +5080,40 @@ msgstr ""
|
|
5076 |
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."
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: src/methods/s3.php:
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
msgid "Please check your access credentials."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5088 |
msgid "The error reported by %s was:"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: src/restorer.php:
|
5092 |
msgid "Please supply the requested information, and then continue."
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: src/class-updraftplus.php:
|
5096 |
msgid "Site information:"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: src/restorer.php:
|
5100 |
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."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: src/admin.php:2445, src/class-updraftplus.php:
|
5104 |
msgid "Warning:"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: src/class-updraftplus.php:
|
5108 |
#: src/restorer.php:184
|
5109 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5110 |
msgstr ""
|
5111 |
|
5112 |
-
#: src/admin.php:
|
5113 |
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."
|
5114 |
msgstr ""
|
5115 |
|
@@ -5185,7 +5189,7 @@ msgstr ""
|
|
5185 |
msgid "News"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:
|
5189 |
msgid "Backup set not found"
|
5190 |
msgstr ""
|
5191 |
|
@@ -5350,18 +5354,18 @@ msgid "Directory path"
|
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5353 |
-
#: src/addons/sftp.php:443, src/addons/webdav.php:
|
5354 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5355 |
#: src/udaddons/options.php:135
|
5356 |
msgid "Password"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: src/addons/sftp.php:429, src/addons/webdav.php:
|
5360 |
msgid "Port"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5364 |
-
#: src/addons/webdav.php:
|
5365 |
msgid "Host"
|
5366 |
msgstr ""
|
5367 |
|
@@ -5409,7 +5413,7 @@ msgstr ""
|
|
5409 |
msgid "Over-write wp-config.php"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:
|
5413 |
msgid "WordPress Core"
|
5414 |
msgstr ""
|
5415 |
|
@@ -5417,14 +5421,14 @@ msgstr ""
|
|
5417 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: src/addons/googlecloud.php:
|
5421 |
-
#: src/addons/googlecloud.php:
|
5422 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5423 |
#: src/methods/stream-base.php:353
|
5424 |
msgid "Failed"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#: src/addons/webdav.php:
|
5428 |
msgid "WebDAV URL"
|
5429 |
msgstr ""
|
5430 |
|
@@ -5475,31 +5479,31 @@ msgstr ""
|
|
5475 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: src/addons/onedrive.php:
|
5479 |
msgid "Your %s account name: %s"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/methods/dropbox.php:
|
5483 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "you have authenticated your %s account"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "there's an add-on for that."
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "Backups are saved in"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Need to use sub-folders?"
|
5504 |
msgstr ""
|
5505 |
|
@@ -5512,96 +5516,96 @@ msgstr ""
|
|
5512 |
msgid "You do not appear to be authenticated with Dropbox"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: src/methods/s3.php:
|
5516 |
msgid "The communication with %s was not encrypted."
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/addons/googlecloud.php:
|
5524 |
msgid "We accessed the bucket, and were able to create files within it."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:
|
5528 |
-
#: src/methods/s3.php:
|
5529 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5530 |
msgstr ""
|
5531 |
|
5532 |
-
#: src/addons/googlecloud.php:
|
5533 |
-
#: src/methods/s3.php:
|
5534 |
msgid "Failure"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: src/addons/backblaze.php:
|
5538 |
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)."
|
5539 |
msgstr ""
|
5540 |
|
5541 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5542 |
-
#: src/methods/s3.php:
|
5543 |
msgid "Region"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:
|
5547 |
-
#: src/methods/s3.php:
|
5548 |
msgid "Failure: No bucket details were given."
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "API secret"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "%s location"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s secret key"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s access key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
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."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
-
#: src/methods/s3.php:
|
5581 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: src/methods/s3.php:
|
5585 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s chunk %s: upload failed"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s error: file %s was shortened unexpectedly"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5606 |
msgstr ""
|
5607 |
|
@@ -5626,32 +5630,32 @@ msgid "Failure: No container details were given."
|
|
5626 |
msgstr ""
|
5627 |
|
5628 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5629 |
-
#: src/addons/webdav.php:
|
5630 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5631 |
msgid "Username"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5635 |
-
#: src/methods/s3.php:
|
5636 |
msgid "API key"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5640 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5641 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5642 |
-
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:
|
5643 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5644 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5645 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5646 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5647 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5648 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5649 |
-
#: src/methods/s3.php:
|
5650 |
msgid "Failure: No %s was given."
|
5651 |
msgstr ""
|
5652 |
|
5653 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5654 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5655 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5656 |
msgstr ""
|
5657 |
|
@@ -5686,7 +5690,7 @@ msgstr ""
|
|
5686 |
msgid "Test %s Settings"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: src/class-updraftplus.php:
|
5690 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5691 |
msgid "Error opening local file: Failed to download"
|
5692 |
msgstr ""
|
@@ -5698,7 +5702,7 @@ msgstr ""
|
|
5698 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5699 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5700 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5701 |
-
#: src/methods/s3.php:
|
5702 |
msgid "%s Error: Failed to upload"
|
5703 |
msgstr ""
|
5704 |
|
@@ -5724,34 +5728,34 @@ msgstr ""
|
|
5724 |
msgid "Authenticate with Google"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: src/addons/googlecloud.php:
|
5728 |
#: src/methods/googledrive.php:1196
|
5729 |
msgid "Client Secret"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
-
#: src/addons/googlecloud.php:
|
5733 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:
|
5737 |
#: src/methods/googledrive.php:1192
|
5738 |
msgid "Client ID"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: src/addons/googlecloud.php:
|
5742 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:
|
5746 |
msgid "Select 'Web Application' as the application type."
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:
|
5750 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5754 |
-
#: src/addons/googlecloud.php:
|
5755 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5756 |
#: src/methods/googledrive.php:558
|
5757 |
msgid "Account is not authorized."
|
@@ -5771,21 +5775,21 @@ msgstr ""
|
|
5771 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: src/addons/googlecloud.php:
|
5775 |
#: src/methods/googledrive.php:441
|
5776 |
msgid "you have authenticated your %s account."
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: src/addons/googlecloud.php:
|
5780 |
-
#: src/addons/onedrive.php:
|
5781 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5782 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5783 |
-
#: src/methods/s3.php:
|
5784 |
msgid "Success"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: src/addons/onedrive.php:
|
5788 |
-
#: src/methods/dropbox.php:
|
5789 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5790 |
msgstr ""
|
5791 |
|
@@ -5817,58 +5821,58 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
|
|
5817 |
msgstr ""
|
5818 |
|
5819 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5820 |
-
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:
|
5821 |
-
#: src/restorer.php:
|
5822 |
msgid "OK"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: src/restorer.php:
|
5826 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: src/addons/migrator.php:1285, src/restorer.php:
|
5830 |
msgid "the database query being run was:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: src/restorer.php:
|
5834 |
msgid "will restore as:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: src/class-updraftplus.php:
|
5838 |
-
#: src/restorer.php:
|
5839 |
msgid "Old table prefix:"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5843 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5844 |
msgid "Backup of:"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: src/restorer.php:
|
5848 |
msgid "Failed to open database file"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: src/restorer.php:
|
5852 |
msgid "Failed to find database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: src/restorer.php:
|
5856 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: src/restorer.php:
|
5860 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: src/restorer.php:
|
5864 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: src/restorer.php:
|
5868 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: src/restorer.php:
|
5872 |
msgid "Failed to create a temporary directory"
|
5873 |
msgstr ""
|
5874 |
|
@@ -5912,19 +5916,19 @@ msgstr ""
|
|
5912 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: src/admin.php:
|
5916 |
msgid "Could not find one of the files for restoration"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Error message"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "The backup records do not contain information about the proper size of this file."
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "Archive is expected to be size:"
|
5929 |
msgstr ""
|
5930 |
|
@@ -5965,7 +5969,7 @@ msgid "Your web server's PHP/Curl installation does not support https access. Co
|
|
5965 |
msgstr ""
|
5966 |
|
5967 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5968 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5969 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5970 |
msgstr ""
|
5971 |
|
@@ -6253,7 +6257,7 @@ msgstr ""
|
|
6253 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6254 |
msgstr ""
|
6255 |
|
6256 |
-
#: src/class-updraftplus.php:
|
6257 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6258 |
msgstr ""
|
6259 |
|
@@ -6306,10 +6310,10 @@ msgstr ""
|
|
6306 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6307 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6308 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6309 |
-
#: src/addons/sftp.php:837, src/addons/webdav.php:
|
6310 |
-
#: src/admin.php:680, src/admin.php:
|
6311 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6312 |
-
#: src/methods/updraftvault.php:522, src/restorer.php:
|
6313 |
msgid "Error:"
|
6314 |
msgstr ""
|
6315 |
|
@@ -6383,14 +6387,14 @@ msgstr ""
|
|
6383 |
|
6384 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6385 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6386 |
-
#: src/admin.php:3682, src/admin.php:
|
6387 |
#: src/includes/class-wpadmin-commands.php:147,
|
6388 |
-
#: src/includes/class-wpadmin-commands.php:
|
6389 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6390 |
msgid "Database"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: src/admin.php:311, src/admin.php:
|
6394 |
msgid "Files"
|
6395 |
msgstr ""
|
6396 |
|
@@ -6442,7 +6446,7 @@ msgstr ""
|
|
6442 |
msgid "UpdraftPlus.Com"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: src/admin.php:
|
6446 |
msgid "Your settings have been wiped."
|
6447 |
msgstr ""
|
6448 |
|
@@ -6503,11 +6507,11 @@ msgid "Download failed"
|
|
6503 |
msgstr ""
|
6504 |
|
6505 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6506 |
-
#: src/class-updraftplus.php:
|
6507 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6508 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6509 |
-
#: src/methods/stream-base.php:220, src/restorer.php:
|
6510 |
-
#: src/restorer.php:
|
6511 |
msgid "Error"
|
6512 |
msgstr ""
|
6513 |
|
@@ -6548,7 +6552,7 @@ msgstr ""
|
|
6548 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6549 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6550 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6551 |
-
#: src/methods/s3.php:
|
6552 |
#: src/methods/updraftvault.php:301,
|
6553 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6554 |
#: src/udaddons/updraftplus-addons.php:253
|
@@ -6580,22 +6584,22 @@ msgstr ""
|
|
6580 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
-
#: src/addons/azure.php:
|
6584 |
-
#: src/methods/googledrive.php:1082, src/methods/s3.php:
|
6585 |
msgid "File not found"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
-
#: src/class-updraftplus.php:
|
6589 |
msgid "The decryption key used:"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: src/class-updraftplus.php:
|
6593 |
-
#: src/restorer.php:
|
6594 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6595 |
msgstr ""
|
6596 |
|
6597 |
-
#: src/class-updraftplus.php:
|
6598 |
-
#: src/restorer.php:
|
6599 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6600 |
msgstr ""
|
6601 |
|
@@ -6603,11 +6607,11 @@ msgstr ""
|
|
6603 |
msgid "Could not open the backup file for writing"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: src/class-updraftplus.php:
|
6607 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: src/class-updraftplus.php:
|
6611 |
msgid "Could not read the directory"
|
6612 |
msgstr ""
|
6613 |
|
@@ -6619,11 +6623,11 @@ msgstr ""
|
|
6619 |
msgid "WordPress backup is complete"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
-
#: src/class-updraftplus.php:
|
6623 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "The backup apparently succeeded and is now complete"
|
6628 |
msgstr ""
|
6629 |
|
@@ -6631,23 +6635,23 @@ msgstr ""
|
|
6631 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: src/class-updraftplus.php:
|
6635 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "Others"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: src/addons/multisite.php:465, src/class-updraftplus.php:
|
6643 |
msgid "Uploads"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: src/class-updraftplus.php:
|
6647 |
msgid "Themes"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Plugins"
|
6652 |
msgstr ""
|
6653 |
|
11 |
"Language: af_ZA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/restorer.php:188
|
43 |
+
msgid "Failed to read from the working directory."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/restorer.php:187
|
47 |
+
msgid "Failed to find a manifest file in the backup."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/restorer.php:186
|
51 |
+
msgid "Failed to read the manifest file from backup."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/includes/class-wpadmin-commands.php:207
|
55 |
+
msgid "Select your incremental restore point"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: src/addons/morefiles.php:73
|
59 |
msgid "(None configured)"
|
60 |
msgstr ""
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: src/admin.php:4602
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: src/admin.php:4598
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: src/addons/backblaze.php:475
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/restorer.php:2028
|
143 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
144 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
+
#: src/class-updraftplus.php:4411
|
149 |
msgid "Your chosen replacement collation"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: src/class-updraftplus.php:4388
|
153 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: src/class-updraftplus.php:4388
|
157 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
158 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
159 |
msgstr[0] ""
|
167 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: src/addons/azure.php:631
|
171 |
msgid "%s Prefix"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: src/addons/azure.php:626
|
175 |
msgid "%s Container"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/addons/azure.php:621
|
179 |
msgid "%s Key"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: src/addons/azure.php:617
|
183 |
msgid "%s Account Name"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: src/addons/googlecloud.php:692
|
187 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: src/addons/googlecloud.php:690
|
191 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
192 |
msgstr ""
|
193 |
|
217 |
msgstr[0] ""
|
218 |
msgstr[1] ""
|
219 |
|
220 |
+
#: src/restorer.php:1990
|
221 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: src/class-updraftplus.php:4364
|
225 |
msgid "Your chosen character set to use instead:"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4354
|
229 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4354
|
233 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
234 |
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."
|
235 |
msgstr[0] ""
|
283 |
msgid "Please enter a valid URL e.g http://example.com"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: src/addons/backblaze.php:633
|
287 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/addons/backblaze.php:632
|
291 |
msgid "some/path"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: src/addons/backblaze.php:632
|
295 |
msgid "Bucket name"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: src/addons/backblaze.php:631
|
299 |
msgid "Backup path"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: src/addons/backblaze.php:626
|
303 |
msgid "Application key"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
307 |
msgid "here"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: src/addons/backblaze.php:621
|
311 |
msgid "Get these settings from %s, or sign up %s."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: src/addons/backblaze.php:431
|
315 |
msgid "Account Key"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
319 |
msgid "Account ID"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: src/class-updraftplus.php:4196
|
323 |
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."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
327 |
msgid "the migrator add-on"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: src/class-updraftplus.php:4194
|
331 |
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."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/class-updraftplus.php:4192
|
335 |
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."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/class-updraftplus.php:4187
|
339 |
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."
|
340 |
msgstr ""
|
341 |
|
355 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
359 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
360 |
+
#: src/class-updraftplus.php:2427
|
361 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
365 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
366 |
+
#: src/class-updraftplus.php:2420
|
367 |
msgid "A PHP exception (%s) has occurred: %s"
|
368 |
msgstr ""
|
369 |
|
419 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: src/admin.php:4808
|
423 |
msgid "Value"
|
424 |
msgstr ""
|
425 |
|
431 |
msgid "Encrypted login failed; trying non-encrypted"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: src/addons/azure.php:594
|
435 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
436 |
msgstr ""
|
437 |
|
443 |
msgid "Cloud Files"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: src/admin.php:4553
|
447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: src/admin.php:4512
|
451 |
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."
|
452 |
msgstr ""
|
453 |
|
456 |
msgid "UpdraftVault"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: src/includes/class-wpadmin-commands.php:513
|
460 |
msgid "archive"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: src/includes/class-wpadmin-commands.php:504
|
464 |
msgid "Extra database"
|
465 |
msgstr ""
|
466 |
|
504 |
msgid "Browse contents"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: src/restorer.php:1811
|
508 |
msgid "Skipped tables:"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: src/class-updraftplus.php:4476
|
512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
513 |
msgstr ""
|
514 |
|
717 |
msgid "Recommended: optimize your database with WP-Optimize."
|
718 |
msgstr ""
|
719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
721 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
722 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
764 |
msgid "Europe (Ireland)"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr ""
|
976 |
msgid "Export / import settings"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: src/restorer.php:2030
|
980 |
msgid "Processing table (%s)"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: src/restorer.php:1777
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr ""
|
986 |
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/methods/dropbox.php:785
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/methods/dropbox.php:631
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr ""
|
998 |
|
1060 |
msgid "US East (Ohio)"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/addons/onedrive.php:1051
|
1064 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/addons/onedrive.php:700
|
1068 |
msgid "Account is not authorized (%s)."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1072 |
msgid "Your IP address:"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1076 |
#: src/udaddons/updraftplus-addons.php:887
|
1077 |
msgid "To remove any block, please go here."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr ""
|
1083 |
|
1105 |
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."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: src/addons/webdav.php:216
|
1109 |
msgid "Path"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: src/addons/webdav.php:211
|
1113 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: src/addons/webdav.php:203
|
1117 |
msgid "Enter any path in the field below."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: src/addons/webdav.php:203
|
1121 |
msgid "A host name cannot contain a slash."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: src/addons/webdav.php:178
|
1125 |
msgid "Protocol (SSL or not)"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: src/addons/webdav.php:173
|
1129 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1130 |
msgstr ""
|
1131 |
|
1133 |
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."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: src/methods/s3.php:1129
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: src/methods/s3.php:126
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr ""
|
1143 |
|
1243 |
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."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: src/class-updraftplus.php:1835
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr ""
|
1249 |
|
1255 |
msgid "Now"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr ""
|
1261 |
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: src/admin.php:4548
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr ""
|
1371 |
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: src/restorer.php:1800
|
1435 |
msgid "Uploads URL:"
|
1436 |
msgstr ""
|
1437 |
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: src/class-updraftplus.php:4260
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: src/class-updraftplus.php:4260
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr ""
|
1453 |
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: src/admin.php:4086
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr ""
|
1527 |
|
1553 |
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)."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: src/admin.php:4422
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/admin.php:4420
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/admin.php:4420
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/admin.php:4420
|
1569 |
msgid "settings"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: src/admin.php:4420
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr ""
|
1575 |
|
1626 |
msgid "Advanced Tools"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: src/addons/googlecloud.php:1049
|
1630 |
msgid "Bucket location"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: src/addons/googlecloud.php:1044
|
1634 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1638 |
msgid "This setting applies only when a new bucket is being created."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: src/addons/googlecloud.php:1033
|
1642 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: src/addons/googlecloud.php:979
|
1646 |
msgid "Do not confuse %s with %s - they are separate things."
|
1647 |
msgstr ""
|
1648 |
|
1704 |
msgid "Standard"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: src/addons/azure.php:632
|
1708 |
msgid "container"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: src/addons/azure.php:632
|
1712 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: src/addons/azure.php:631
|
1716 |
msgid "optional"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: src/addons/azure.php:627
|
1720 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: src/addons/azure.php:627
|
1724 |
msgid "Enter the path of the %s you wish to use here."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/addons/azure.php:618
|
1728 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1732 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1733 |
msgid "Azure"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: src/addons/azure.php:598
|
1737 |
msgid "Create Azure credentials in your Azure developer console."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: src/addons/azure.php:562
|
1741 |
msgid "Could not create the container"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: src/addons/azure.php:413
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: src/class-updraftplus.php:2926
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr ""
|
1751 |
|
1773 |
msgid "Not installed"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1777 |
msgid "Storage class"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: src/addons/googlecloud.php:1033
|
1781 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: src/addons/googlecloud.php:1033
|
1785 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: src/addons/googlecloud.php:1032
|
1789 |
msgid "Bucket"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: src/addons/googlecloud.php:1028
|
1793 |
msgid "Otherwise, you can leave it blank."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: src/addons/googlecloud.php:1028
|
1797 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: src/addons/googlecloud.php:1028
|
1801 |
msgid "Enter the ID of the %s project you wish to use here."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: src/addons/googlecloud.php:991
|
1805 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: src/addons/googlecloud.php:902
|
1809 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: src/addons/googlecloud.php:1026
|
1813 |
msgid "Project ID"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: src/addons/googlecloud.php:759
|
1817 |
msgid "You must save and authenticate before you can test your settings."
|
1818 |
msgstr ""
|
1819 |
|
1822 |
msgstr ""
|
1823 |
|
1824 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1825 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1826 |
msgid "You do not have access to this bucket."
|
1827 |
msgstr ""
|
1828 |
|
1829 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1830 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1831 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1832 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1833 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1834 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1835 |
msgid "Google Cloud"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1839 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1840 |
+
#: src/addons/googlecloud.php:941
|
1841 |
msgid "%s Service Exception."
|
1842 |
msgstr ""
|
1843 |
|
1845 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: src/restorer.php:827
|
1849 |
msgid "Deferring..."
|
1850 |
msgstr ""
|
1851 |
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: src/restorer.php:2354
|
1918 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: src/restorer.php:2354
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr ""
|
1924 |
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: src/class-updraftplus.php:4333
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: src/class-updraftplus.php:4333
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr ""
|
1936 |
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2112 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr ""
|
2115 |
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr ""
|
2147 |
|
|
|
|
|
|
|
|
|
2148 |
#: src/addons/migrator.php:2405
|
2149 |
msgid "Your new key:"
|
2150 |
msgstr ""
|
2350 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: src/restorer.php:2356
|
2354 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2355 |
msgstr ""
|
2356 |
|
2382 |
msgid "You have made changes to your settings, and not saved."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: src/addons/onedrive.php:1111
|
2386 |
msgid "N.B. %s is not case-sensitive."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: src/addons/onedrive.php:1101
|
2390 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2394 |
+
#: src/addons/onedrive.php:1074
|
2395 |
msgid "For longer help, including screenshots, follow this link."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: src/addons/onedrive.php:1067
|
2399 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: src/addons/onedrive.php:1059
|
2403 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: src/addons/azure.php:592
|
2407 |
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)."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2411 |
msgid "%s authorisation failed:"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2415 |
+
#: src/addons/onedrive.php:1104
|
2416 |
msgid "OneDrive"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: src/addons/onedrive.php:691
|
2420 |
msgid "Please re-authorize the connection to your %s account."
|
2421 |
msgstr ""
|
2422 |
|
2424 |
msgid "configure it here"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2428 |
msgid "To remove the block, please go here."
|
2429 |
msgstr ""
|
2430 |
|
2569 |
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)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: src/methods/s3.php:910
|
2573 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2577 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2581 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2585 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2586 |
#: src/udaddons/updraftplus-addons.php:887
|
2587 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2591 |
#: src/udaddons/updraftplus-addons.php:887
|
2592 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2596 |
#: src/udaddons/updraftplus-addons.php:887
|
2597 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2601 |
msgid "Premium WooCommerce plugins"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2605 |
msgid "Free two-factor security plugin"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2609 |
+
msgid "More quality plugins"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2613 |
msgid "Go to the shop."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2617 |
msgid "Compare with the free version"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2621 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2622 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2623 |
msgid "UpdraftPlus Premium"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
|
|
|
|
|
|
|
|
2627 |
msgid "Free Newsletter"
|
2628 |
msgstr ""
|
2629 |
|
|
|
|
|
|
|
|
|
2630 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2631 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
|
2632 |
msgid "Dismiss (for %s months)"
|
2633 |
msgstr ""
|
2634 |
|
2669 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: src/methods/s3.php:177, src/methods/s3.php:178, src/methods/s3.php:179,
|
2673 |
+
#: src/methods/s3.php:187, src/methods/s3.php:188, src/methods/s3.php:189
|
2674 |
msgid "%s Error: Failed to initialise"
|
2675 |
msgstr ""
|
2676 |
|
2715 |
msgid "Manual"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: src/restorer.php:2333
|
2719 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2720 |
msgid "An error (%s) occurred:"
|
2721 |
msgstr ""
|
2856 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: src/class-updraftplus.php:4249
|
2860 |
msgid "Backup label:"
|
2861 |
msgstr ""
|
2862 |
|
2880 |
msgid "Your label for this backup (optional)"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1162
|
2884 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2885 |
msgstr ""
|
2886 |
|
2900 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: src/class-updraftplus.php:4268
|
2904 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: src/class-updraftplus.php:4268
|
2908 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2909 |
msgstr ""
|
2910 |
|
2941 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: src/class-updraftplus.php:4241
|
2945 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4241
|
2949 |
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."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4241
|
2953 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/class-updraftplus.php:4241
|
2957 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2958 |
msgstr ""
|
2959 |
|
2998 |
msgid "Start backup"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
3002 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3003 |
msgstr ""
|
3004 |
|
3034 |
msgid "Memory limit"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: src/class-updraftplus.php:4682, src/restorer.php:1608
|
3038 |
msgid "restoration"
|
3039 |
msgstr ""
|
3040 |
|
3097 |
msgid "search term"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: src/restorer.php:2361
|
3101 |
msgid "Too many database errors have occurred - aborting"
|
3102 |
msgstr ""
|
3103 |
|
3133 |
msgid "Free disk space in account:"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: src/admin.php:4519, src/templates/wp-admin/settings/tab-status.php:27
|
3137 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3138 |
msgstr ""
|
3139 |
|
3228 |
msgid "user"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: src/class-updraftplus.php:1832
|
3232 |
msgid "External database (%s)"
|
3233 |
msgstr ""
|
3234 |
|
3240 |
msgid "failed to access parent folder"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3244 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:421
|
3245 |
msgid "However, subsequent access attempts failed:"
|
3246 |
msgstr ""
|
3247 |
|
3277 |
msgid "use UpdraftPlus Premium"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: src/class-updraftplus.php:4095
|
3281 |
msgid "Decryption failed. The database file is encrypted."
|
3282 |
msgstr ""
|
3283 |
|
3285 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: src/restorer.php:1876, src/restorer.php:2302, src/restorer.php:2343,
|
3289 |
+
#: src/restorer.php:2356
|
3290 |
msgid "An error occurred on the first %s command - aborting run"
|
3291 |
msgstr ""
|
3292 |
|
3306 |
msgid "In %s, path names are case sensitive."
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: src/addons/azure.php:632, src/addons/google-enhanced.php:76,
|
3310 |
+
#: src/addons/onedrive.php:1111
|
3311 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1033,
|
3315 |
+
#: src/addons/onedrive.php:1111
|
3316 |
msgid "e.g. %s"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1111
|
3320 |
msgid "Enter the path of the %s folder you wish to use here."
|
3321 |
msgstr ""
|
3322 |
|
3360 |
msgid "Failed to upload %s"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
3364 |
msgid "Success:"
|
3365 |
msgstr ""
|
3366 |
|
3368 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:610
|
3372 |
msgid "(You appear to be already authenticated)."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: src/methods/dropbox.php:606
|
3376 |
msgid "Dropbox"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:606
|
3380 |
msgid "Authenticate with %s"
|
3381 |
msgstr ""
|
3382 |
|
3407 |
msgid "%s error - failed to access the container"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3411 |
+
#: src/methods/dropbox.php:663, src/methods/googledrive.php:1248
|
3412 |
msgid "Account holder's name: %s."
|
3413 |
msgstr ""
|
3414 |
|
3424 |
msgid "<strong>This is NOT a folder name</strong>."
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3428 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3429 |
msgid "Folder"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3433 |
#: src/methods/googledrive.php:1122
|
3434 |
msgid "%s download: failed: file not found"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:441
|
3438 |
msgid "Name: %s."
|
3439 |
msgstr ""
|
3440 |
|
3473 |
msgid "Failed to unpack the archive"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: src/class-updraftplus.php:1356
|
3477 |
msgid "Error - failed to download the file"
|
3478 |
msgstr ""
|
3479 |
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3501 |
+
#: src/admin.php:4808
|
3502 |
msgid "Key"
|
3503 |
msgstr ""
|
3504 |
|
3523 |
msgstr ""
|
3524 |
|
3525 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3526 |
+
#: src/includes/class-backup-history.php:349
|
3527 |
msgid "Backup created by: %s."
|
3528 |
msgstr ""
|
3529 |
|
3555 |
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."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: src/admin.php:694, src/includes/class-backup-history.php:356
|
3559 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3560 |
msgstr ""
|
3561 |
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#: src/admin.php:693, src/admin.php:694,
|
3567 |
+
#: src/includes/class-backup-history.php:356
|
3568 |
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))."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3572 |
+
#: src/restorer.php:1577
|
3573 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: src/restorer.php:869, src/restorer.php:917
|
3577 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: src/restorer.php:724
|
3581 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3582 |
msgstr ""
|
3583 |
|
3589 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: src/addons/backblaze.php:557, src/methods/cloudfiles.php:234,
|
3593 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3594 |
msgid "No settings were found"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: src/includes/class-backup-history.php:524
|
3598 |
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."
|
3599 |
msgstr ""
|
3600 |
|
3602 |
msgid "Rescanning remote and local storage for backup sets..."
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049,
|
3606 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3607 |
msgid "(Read more)"
|
3608 |
msgstr ""
|
3620 |
msgid "Remove"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: src/methods/s3.php:861
|
3624 |
msgid "Other %s FAQs."
|
3625 |
msgstr ""
|
3626 |
|
3632 |
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."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330,
|
3636 |
+
#: src/restorer.php:1608
|
3637 |
msgid "Your hosting company must enable these functions before %s can work."
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330
|
3641 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3642 |
msgstr ""
|
3643 |
|
3653 |
msgid "regular non-encrypted FTP"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: src/restorer.php:1784
|
3657 |
msgid "Backup created by:"
|
3658 |
msgstr ""
|
3659 |
|
3707 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: src/class-updraftplus.php:4732
|
3711 |
msgid "The attempt to undo the double-compression succeeded."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: src/class-updraftplus.php:4709, src/class-updraftplus.php:4730
|
3715 |
msgid "The attempt to undo the double-compression failed."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: src/class-updraftplus.php:4702
|
3719 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: src/includes/class-wpadmin-commands.php:313
|
3723 |
msgid "Constants"
|
3724 |
msgstr ""
|
3725 |
|
3768 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: src/restorer.php:717
|
3772 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3773 |
msgstr ""
|
3774 |
|
3789 |
msgid "Messages:"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: src/restorer.php:2196
|
3793 |
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"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: src/restorer.php:490
|
3797 |
msgid "The directory does not exist"
|
3798 |
msgstr ""
|
3799 |
|
3962 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: src/admin.php:679, src/admin.php:4232
|
3966 |
msgid "Error data:"
|
3967 |
msgstr ""
|
3968 |
|
3974 |
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."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: src/restorer.php:1851
|
3978 |
msgid "Split line to avoid exceeding maximum packet size"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: src/restorer.php:1731
|
3982 |
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)"
|
3983 |
msgstr ""
|
3984 |
|
4010 |
msgid "Email reports"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: src/class-updraftplus.php:1840, src/class-updraftplus.php:1845
|
4014 |
msgid "%s checksum: %s"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/class-updraftplus.php:1813, src/class-updraftplus.php:1815
|
4018 |
msgid "files: %s"
|
4019 |
msgstr ""
|
4020 |
|
4067 |
msgid "%d errors, %d warnings"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:748,
|
4071 |
+
#: src/methods/dropbox.php:770
|
4072 |
msgid "%s authentication"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:529,
|
4076 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:748,
|
4077 |
+
#: src/methods/dropbox.php:770, src/methods/dropbox.php:785,
|
4078 |
+
#: src/methods/dropbox.php:798, src/methods/dropbox.php:941
|
4079 |
msgid "%s error: %s"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:575
|
4083 |
msgid "%s logo"
|
4084 |
msgstr ""
|
4085 |
|
4087 |
msgid "%s did not return the expected response - check your log file for more details"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: src/methods/s3.php:307
|
4091 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4092 |
msgstr ""
|
4093 |
|
4108 |
msgid "For more reporting features, use the Reporting add-on."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: src/class-updraftplus.php:4176
|
4112 |
msgid "(version: %s)"
|
4113 |
msgstr ""
|
4114 |
|
4249 |
msgid "Reporting"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: src/admin.php:4805
|
4253 |
msgid "Options (raw)"
|
4254 |
msgstr ""
|
4255 |
|
4257 |
msgid "Send a report only when there are warnings/errors"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: src/restorer.php:1795
|
4261 |
msgid "Content URL:"
|
4262 |
msgstr ""
|
4263 |
|
4401 |
msgid "Your web-server does not have the %s module installed."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1237
|
4405 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4406 |
msgstr ""
|
4407 |
|
4421 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: src/restorer.php:1789
|
4425 |
msgid "Site home:"
|
4426 |
msgstr ""
|
4427 |
|
4437 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:144,
|
4441 |
#: src/methods/stream-base.php:149
|
4442 |
msgid "Upload failed"
|
4443 |
msgstr ""
|
4581 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
+
#: src/restorer.php:702
|
4585 |
msgid "file"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: src/restorer.php:695
|
4589 |
msgid "folder"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: src/restorer.php:695, src/restorer.php:702
|
4593 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: src/class-updraftplus.php:2933
|
4597 |
msgid "The backup has not finished; a resumption is scheduled"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: src/class-updraftplus.php:2117
|
4601 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: src/addons/onedrive.php:966,
|
4605 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4606 |
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)."
|
4607 |
msgstr ""
|
4686 |
msgid "Support"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: src/class-updraftplus.php:4481
|
4690 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: src/class-updraftplus.php:4473
|
4694 |
msgid "This database backup is missing core WordPress tables: %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/class-updraftplus.php:4234
|
4698 |
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."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: src/class-updraftplus.php:4233, src/class-updraftplus.php:4240
|
4702 |
msgid "%s version: %s"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: src/class-updraftplus.php:4112
|
4706 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4707 |
msgstr ""
|
4708 |
|
4787 |
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?"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4791 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4795 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: src/includes/class-wpadmin-commands.php:221
|
4799 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4800 |
msgstr ""
|
4801 |
|
4835 |
msgid "WordPress root directory server path: %s"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: src/methods/dreamobjects.php:88, src/methods/s3generic.php:104
|
4839 |
msgid "%s end-point"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: src/methods/s3.php:838
|
4843 |
msgid "... and many more!"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
|
4847 |
+
#: src/methods/s3generic.php:83
|
4848 |
msgid "S3 (Compatible)"
|
4849 |
msgstr ""
|
4850 |
|
4852 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: src/admin.php:4083
|
4856 |
msgid "Looking for %s archive: file name: %s"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: src/admin.php:4044
|
4860 |
msgid "Final checks"
|
4861 |
msgstr ""
|
4862 |
|
4884 |
msgid "Processing files - please wait..."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: src/admin.php:4234,
|
4888 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4889 |
msgid "Please consult this FAQ for help on what to do about it."
|
4890 |
msgstr ""
|
4893 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: src/class-updraftplus.php:4120
|
4897 |
msgid "Failed to open database file."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
+
#: src/admin.php:4770
|
4901 |
msgid "Known backups (raw)"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: src/restorer.php:1009
|
4905 |
msgid "Files found:"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: src/restorer.php:1977
|
4909 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: src/admin.php:4103
|
4913 |
msgid "file is size:"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:457,
|
4917 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4918 |
+
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:4354,
|
4919 |
+
#: src/class-updraftplus.php:4354, src/updraftplus.php:156
|
4920 |
msgid "Go here for more information."
|
4921 |
msgstr ""
|
4922 |
|
4924 |
msgid "Some files are still downloading or being processed - please wait."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: src/class-updraftplus.php:4203, src/class-updraftplus.php:4224
|
4928 |
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."
|
4929 |
msgstr ""
|
4930 |
|
4968 |
msgid "Error - no such file exists at %s"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4972 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4973 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4974 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
4997 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4998 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4999 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5000 |
+
#: src/class-updraftplus.php:4093, src/class-updraftplus.php:4095,
|
5001 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4264,
|
5002 |
+
#: src/class-updraftplus.php:4333, src/methods/googledrive.php:382,
|
5003 |
+
#: src/methods/s3.php:336
|
5004 |
msgid "Error: %s"
|
5005 |
msgstr ""
|
5006 |
|
5040 |
msgid "Warnings encountered:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: src/class-updraftplus.php:2921
|
5044 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5045 |
msgstr ""
|
5046 |
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
+
#: src/methods/s3.php:847
|
5084 |
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."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: src/methods/s3.php:1150
|
5088 |
msgid "Please check your access credentials."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1128
|
5092 |
msgid "The error reported by %s was:"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: src/restorer.php:1518
|
5096 |
msgid "Please supply the requested information, and then continue."
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: src/class-updraftplus.php:4275, src/restorer.php:1825
|
5100 |
msgid "Site information:"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: src/restorer.php:1692
|
5104 |
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."
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: src/admin.php:2445, src/class-updraftplus.php:4268, src/restorer.php:2196
|
5108 |
msgid "Warning:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4260,
|
5112 |
#: src/restorer.php:184
|
5113 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: src/admin.php:4071
|
5117 |
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."
|
5118 |
msgstr ""
|
5119 |
|
5189 |
msgid "News"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:490
|
5193 |
msgid "Backup set not found"
|
5194 |
msgstr ""
|
5195 |
|
5354 |
msgstr ""
|
5355 |
|
5356 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5357 |
+
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5358 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5359 |
#: src/udaddons/options.php:135
|
5360 |
msgid "Password"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
+
#: src/addons/sftp.php:429, src/addons/webdav.php:207
|
5364 |
msgid "Port"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5368 |
+
#: src/addons/webdav.php:199
|
5369 |
msgid "Host"
|
5370 |
msgstr ""
|
5371 |
|
5413 |
msgid "Over-write wp-config.php"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
+
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:507
|
5417 |
msgid "WordPress Core"
|
5418 |
msgstr ""
|
5419 |
|
5421 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5422 |
msgstr ""
|
5423 |
|
5424 |
+
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5425 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3052,
|
5426 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5427 |
#: src/methods/stream-base.php:353
|
5428 |
msgid "Failed"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: src/addons/webdav.php:169
|
5432 |
msgid "WebDAV URL"
|
5433 |
msgstr ""
|
5434 |
|
5479 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:816
|
5483 |
msgid "Your %s account name: %s"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: src/methods/dropbox.php:806, src/methods/dropbox.php:828
|
5487 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
5491 |
msgid "you have authenticated your %s account"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5495 |
msgid "there's an add-on for that."
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5499 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5503 |
msgid "Backups are saved in"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5507 |
msgid "Need to use sub-folders?"
|
5508 |
msgstr ""
|
5509 |
|
5516 |
msgid "You do not appear to be authenticated with Dropbox"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: src/methods/s3.php:1145
|
5520 |
msgid "The communication with %s was not encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: src/methods/s3.php:1143
|
5524 |
msgid "The communication with %s was encrypted."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1140
|
5528 |
msgid "We accessed the bucket, and were able to create files within it."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5532 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5533 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5537 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5538 |
msgid "Failure"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: src/addons/backblaze.php:472, src/methods/s3.php:1126
|
5542 |
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)."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5546 |
+
#: src/methods/s3.php:1120
|
5547 |
msgid "Region"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5551 |
+
#: src/methods/s3.php:1102
|
5552 |
msgid "Failure: No bucket details were given."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: src/methods/s3.php:1080
|
5556 |
msgid "API secret"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: src/methods/s3.php:928
|
5560 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: src/methods/s3.php:927
|
5564 |
msgid "%s location"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
+
#: src/methods/s3.php:923
|
5568 |
msgid "%s secret key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
+
#: src/methods/s3.php:919
|
5572 |
msgid "%s access key"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: src/methods/s3.php:859
|
5576 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: src/methods/s3.php:857
|
5580 |
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."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: src/methods/s3.php:477, src/methods/s3.php:589, src/methods/s3.php:661,
|
5584 |
+
#: src/methods/s3.php:764
|
5585 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
+
#: src/methods/s3.php:747, src/methods/s3.php:757, src/methods/s3.php:793
|
5589 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
+
#: src/methods/s3.php:455
|
5593 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: src/methods/s3.php:451
|
5597 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: src/methods/s3.php:435
|
5601 |
msgid "%s chunk %s: upload failed"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: src/methods/s3.php:425
|
5605 |
msgid "%s error: file %s was shortened unexpectedly"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
+
#: src/methods/s3.php:403
|
5609 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5610 |
msgstr ""
|
5611 |
|
5630 |
msgstr ""
|
5631 |
|
5632 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5633 |
+
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5634 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5635 |
msgid "Username"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5639 |
+
#: src/methods/s3.php:1076
|
5640 |
msgid "API key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5644 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5645 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5646 |
+
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5647 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5648 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5649 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5650 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5651 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5652 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5653 |
+
#: src/methods/s3.php:1076, src/methods/s3.php:1080
|
5654 |
msgid "Failure: No %s was given."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5658 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5659 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5660 |
msgstr ""
|
5661 |
|
5690 |
msgid "Test %s Settings"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
5694 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5695 |
msgid "Error opening local file: Failed to download"
|
5696 |
msgstr ""
|
5702 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5703 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5704 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5705 |
+
#: src/methods/s3.php:371, src/methods/s3.php:383, src/methods/s3.php:384
|
5706 |
msgid "%s Error: Failed to upload"
|
5707 |
msgstr ""
|
5708 |
|
5728 |
msgid "Authenticate with Google"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5732 |
#: src/methods/googledrive.php:1196
|
5733 |
msgid "Client Secret"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1193
|
5737 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5741 |
#: src/methods/googledrive.php:1192
|
5742 |
msgid "Client ID"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5746 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5750 |
msgid "Select 'Web Application' as the application type."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1167
|
5754 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5758 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:546,
|
5759 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5760 |
#: src/methods/googledrive.php:558
|
5761 |
msgid "Account is not authorized."
|
5775 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5779 |
#: src/methods/googledrive.php:441
|
5780 |
msgid "you have authenticated your %s account."
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5784 |
+
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5785 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5786 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5787 |
+
#: src/methods/s3.php:1140, src/methods/stream-base.php:364
|
5788 |
msgid "Success"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:839,
|
5792 |
+
#: src/methods/dropbox.php:848, src/methods/googledrive.php:415
|
5793 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5794 |
msgstr ""
|
5795 |
|
5821 |
msgstr ""
|
5822 |
|
5823 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5824 |
+
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:4101,
|
5825 |
+
#: src/restorer.php:2437, src/restorer.php:2542
|
5826 |
msgid "OK"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: src/restorer.php:2431, src/restorer.php:2506
|
5830 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: src/addons/migrator.php:1285, src/restorer.php:2333
|
5834 |
msgid "the database query being run was:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
+
#: src/restorer.php:2034
|
5838 |
msgid "will restore as:"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: src/class-updraftplus.php:4246, src/restorer.php:1807,
|
5842 |
+
#: src/restorer.php:1896, src/restorer.php:1922
|
5843 |
msgid "Old table prefix:"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5847 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4176
|
5848 |
msgid "Backup of:"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: src/restorer.php:1614
|
5852 |
msgid "Failed to open database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: src/restorer.php:1593
|
5856 |
msgid "Failed to find database file"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: src/restorer.php:1570
|
5860 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: src/restorer.php:529
|
5864 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: src/restorer.php:524
|
5868 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: src/restorer.php:417
|
5872 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: src/restorer.php:401
|
5876 |
msgid "Failed to create a temporary directory"
|
5877 |
msgstr ""
|
5878 |
|
5916 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: src/admin.php:4109, src/admin.php:4110
|
5920 |
msgid "Could not find one of the files for restoration"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: src/admin.php:4224
|
5924 |
msgid "Error message"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: src/admin.php:4106
|
5928 |
msgid "The backup records do not contain information about the proper size of this file."
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: src/admin.php:4098
|
5932 |
msgid "Archive is expected to be size:"
|
5933 |
msgstr ""
|
5934 |
|
5969 |
msgstr ""
|
5970 |
|
5971 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5972 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5973 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5974 |
msgstr ""
|
5975 |
|
6257 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
+
#: src/class-updraftplus.php:4206
|
6261 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6262 |
msgstr ""
|
6263 |
|
6310 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6311 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6312 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6313 |
+
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6314 |
+
#: src/admin.php:680, src/admin.php:4103, src/admin.php:4133,
|
6315 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6316 |
+
#: src/methods/updraftvault.php:522, src/restorer.php:1523
|
6317 |
msgid "Error:"
|
6318 |
msgstr ""
|
6319 |
|
6387 |
|
6388 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6389 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6390 |
+
#: src/admin.php:3682, src/admin.php:4187,
|
6391 |
#: src/includes/class-wpadmin-commands.php:147,
|
6392 |
+
#: src/includes/class-wpadmin-commands.php:505,
|
6393 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6394 |
msgid "Database"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
+
#: src/admin.php:311, src/admin.php:4777
|
6398 |
msgid "Files"
|
6399 |
msgstr ""
|
6400 |
|
6446 |
msgid "UpdraftPlus.Com"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
+
#: src/admin.php:4669
|
6450 |
msgid "Your settings have been wiped."
|
6451 |
msgstr ""
|
6452 |
|
6507 |
msgstr ""
|
6508 |
|
6509 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6510 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
6511 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6512 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6513 |
+
#: src/methods/stream-base.php:220, src/restorer.php:2433,
|
6514 |
+
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6515 |
msgid "Error"
|
6516 |
msgstr ""
|
6517 |
|
6552 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6553 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6554 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6555 |
+
#: src/methods/s3.php:847, src/methods/s3.php:851,
|
6556 |
#: src/methods/updraftvault.php:301,
|
6557 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6558 |
#: src/udaddons/updraftplus-addons.php:253
|
6584 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3966,
|
6588 |
+
#: src/methods/googledrive.php:1082, src/methods/s3.php:336
|
6589 |
msgid "File not found"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: src/class-updraftplus.php:3873
|
6593 |
msgid "The decryption key used:"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: src/class-updraftplus.php:3873, src/class-updraftplus.php:4105,
|
6597 |
+
#: src/restorer.php:422
|
6598 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6599 |
msgstr ""
|
6600 |
|
6601 |
+
#: src/class-updraftplus.php:3854, src/class-updraftplus.php:4093,
|
6602 |
+
#: src/restorer.php:409
|
6603 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6604 |
msgstr ""
|
6605 |
|
6607 |
msgid "Could not open the backup file for writing"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: src/class-updraftplus.php:3459
|
6611 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: src/class-updraftplus.php:3420
|
6615 |
msgid "Could not read the directory"
|
6616 |
msgstr ""
|
6617 |
|
6623 |
msgid "WordPress backup is complete"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: src/class-updraftplus.php:2930
|
6627 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: src/class-updraftplus.php:2915
|
6631 |
msgid "The backup apparently succeeded and is now complete"
|
6632 |
msgstr ""
|
6633 |
|
6635 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/class-updraftplus.php:2618
|
6639 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: src/class-updraftplus.php:1897
|
6643 |
msgid "Others"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: src/addons/multisite.php:465, src/class-updraftplus.php:1882
|
6647 |
msgid "Uploads"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: src/class-updraftplus.php:1881
|
6651 |
msgid "Themes"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: src/class-updraftplus.php:1880
|
6655 |
msgid "Plugins"
|
6656 |
msgstr ""
|
6657 |
|
@@ -11,6 +11,50 @@ msgstr ""
|
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
msgstr ""
|
@@ -19,11 +63,11 @@ msgstr ""
|
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr ""
|
29 |
|
@@ -91,11 +135,11 @@ msgstr ""
|
|
91 |
msgid "remote site"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] ""
|
@@ -105,15 +149,15 @@ msgstr[3] ""
|
|
105 |
msgstr[4] ""
|
106 |
msgstr[5] ""
|
107 |
|
108 |
-
#: src/class-updraftplus.php:
|
109 |
msgid "Your chosen replacement collation"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: src/class-updraftplus.php:
|
113 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: src/class-updraftplus.php:
|
117 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
118 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
119 |
msgstr[0] ""
|
@@ -131,27 +175,27 @@ msgstr ""
|
|
131 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: src/addons/azure.php:
|
135 |
msgid "%s Prefix"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/addons/azure.php:
|
139 |
msgid "%s Container"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: src/addons/azure.php:
|
143 |
msgid "%s Key"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: src/addons/azure.php:
|
147 |
msgid "%s Account Name"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: src/addons/googlecloud.php:
|
151 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: src/addons/googlecloud.php:
|
155 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
156 |
msgstr ""
|
157 |
|
@@ -185,19 +229,19 @@ msgstr[3] ""
|
|
185 |
msgstr[4] ""
|
186 |
msgstr[5] ""
|
187 |
|
188 |
-
#: src/restorer.php:
|
189 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: src/class-updraftplus.php:
|
193 |
msgid "Your chosen character set to use instead:"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: src/class-updraftplus.php:
|
197 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: src/class-updraftplus.php:
|
201 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
202 |
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."
|
203 |
msgstr[0] ""
|
@@ -255,59 +299,59 @@ msgstr ""
|
|
255 |
msgid "Please enter a valid URL e.g http://example.com"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "some/path"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "Bucket name"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Backup path"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Application key"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/addons/backblaze.php:
|
279 |
msgid "here"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/addons/backblaze.php:
|
283 |
msgid "Get these settings from %s, or sign up %s."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/addons/backblaze.php:
|
287 |
msgid "Account Key"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/addons/backblaze.php:
|
291 |
msgid "Account ID"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: src/class-updraftplus.php:
|
299 |
msgid "the migrator add-on"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: src/class-updraftplus.php:
|
303 |
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."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: src/class-updraftplus.php:
|
307 |
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."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: src/class-updraftplus.php:
|
311 |
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."
|
312 |
msgstr ""
|
313 |
|
@@ -327,15 +371,15 @@ msgstr ""
|
|
327 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: src/admin.php:1368, src/admin.php:
|
331 |
-
#: src/class-updraftplus.php:
|
332 |
-
#: src/class-updraftplus.php:
|
333 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: src/admin.php:1359, src/admin.php:
|
337 |
-
#: src/class-updraftplus.php:
|
338 |
-
#: src/class-updraftplus.php:
|
339 |
msgid "A PHP exception (%s) has occurred: %s"
|
340 |
msgstr ""
|
341 |
|
@@ -391,7 +435,7 @@ msgstr ""
|
|
391 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: src/admin.php:
|
395 |
msgid "Value"
|
396 |
msgstr ""
|
397 |
|
@@ -403,7 +447,7 @@ msgstr ""
|
|
403 |
msgid "Encrypted login failed; trying non-encrypted"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: src/addons/azure.php:
|
407 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
408 |
msgstr ""
|
409 |
|
@@ -415,11 +459,11 @@ msgstr ""
|
|
415 |
msgid "Cloud Files"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: src/admin.php:
|
419 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: src/admin.php:
|
423 |
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."
|
424 |
msgstr ""
|
425 |
|
@@ -428,11 +472,11 @@ msgstr ""
|
|
428 |
msgid "UpdraftVault"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: src/includes/class-wpadmin-commands.php:
|
432 |
msgid "archive"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: src/includes/class-wpadmin-commands.php:
|
436 |
msgid "Extra database"
|
437 |
msgstr ""
|
438 |
|
@@ -476,11 +520,11 @@ msgstr ""
|
|
476 |
msgid "Browse contents"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: src/restorer.php:
|
480 |
msgid "Skipped tables:"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: src/class-updraftplus.php:
|
484 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
485 |
msgstr ""
|
486 |
|
@@ -689,14 +733,6 @@ msgstr ""
|
|
689 |
msgid "Recommended: optimize your database with WP-Optimize."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
693 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
697 |
-
msgid "WP-Optimize"
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
701 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
702 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -744,27 +780,7 @@ msgstr ""
|
|
744 |
msgid "Europe (Ireland)"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
748 |
-
msgid "WP-Optimize (free)"
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
752 |
-
msgid "Explore our Cloud and Premium versions."
|
753 |
-
msgstr ""
|
754 |
-
|
755 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
756 |
-
msgid "Download it for free from WordPress.org"
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
760 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
764 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
765 |
-
msgstr ""
|
766 |
-
|
767 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
768 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr ""
|
@@ -976,11 +992,11 @@ msgstr ""
|
|
976 |
msgid "Export / import settings"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: src/restorer.php:
|
980 |
msgid "Processing table (%s)"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: src/restorer.php:
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr ""
|
986 |
|
@@ -988,11 +1004,11 @@ msgstr ""
|
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: src/methods/dropbox.php:
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: src/methods/dropbox.php:
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr ""
|
998 |
|
@@ -1060,24 +1076,24 @@ msgstr ""
|
|
1060 |
msgid "US East (Ohio)"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: src/addons/onedrive.php:
|
1064 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: src/addons/onedrive.php:
|
1068 |
msgid "Account is not authorized (%s)."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: src/addons/onedrive.php:
|
1072 |
msgid "Your IP address:"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: src/addons/onedrive.php:
|
1076 |
#: src/udaddons/updraftplus-addons.php:887
|
1077 |
msgid "To remove any block, please go here."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: src/addons/onedrive.php:
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr ""
|
1083 |
|
@@ -1105,27 +1121,27 @@ msgstr ""
|
|
1105 |
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."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "Path"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: src/addons/webdav.php:
|
1117 |
msgid "Enter any path in the field below."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: src/addons/webdav.php:
|
1121 |
msgid "A host name cannot contain a slash."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: src/addons/webdav.php:
|
1125 |
msgid "Protocol (SSL or not)"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: src/addons/webdav.php:
|
1129 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1130 |
msgstr ""
|
1131 |
|
@@ -1133,11 +1149,11 @@ msgstr ""
|
|
1133 |
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."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: src/methods/s3.php:
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: src/methods/s3.php:
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr ""
|
1143 |
|
@@ -1243,7 +1259,7 @@ msgstr ""
|
|
1243 |
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."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: src/class-updraftplus.php:
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr ""
|
1249 |
|
@@ -1255,7 +1271,7 @@ msgstr ""
|
|
1255 |
msgid "Now"
|
1256 |
msgstr "الآن"
|
1257 |
|
1258 |
-
#: src/class-updraftplus.php:
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr ""
|
1261 |
|
@@ -1361,11 +1377,11 @@ msgstr ""
|
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: src/admin.php:
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr "تم حفظ إعداداتك."
|
1371 |
|
@@ -1431,7 +1447,7 @@ msgstr ""
|
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: src/restorer.php:
|
1435 |
msgid "Uploads URL:"
|
1436 |
msgstr ""
|
1437 |
|
@@ -1439,15 +1455,15 @@ msgstr ""
|
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: src/class-updraftplus.php:
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: src/class-updraftplus.php:
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: src/class-updraftplus.php:
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr ""
|
1453 |
|
@@ -1521,7 +1537,7 @@ msgstr ""
|
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: src/admin.php:
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr ""
|
1527 |
|
@@ -1553,23 +1569,23 @@ msgstr ""
|
|
1553 |
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)."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: src/admin.php:
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: src/admin.php:
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: src/admin.php:
|
1569 |
msgid "settings"
|
1570 |
msgstr "إعدادات"
|
1571 |
|
1572 |
-
#: src/admin.php:
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr ""
|
1575 |
|
@@ -1626,23 +1642,23 @@ msgstr "Extensions"
|
|
1626 |
msgid "Advanced Tools"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "Bucket location"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: src/addons/googlecloud.php:
|
1634 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: src/addons/googlecloud.php:
|
1638 |
msgid "This setting applies only when a new bucket is being created."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: src/addons/googlecloud.php:
|
1642 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: src/addons/googlecloud.php:
|
1646 |
msgid "Do not confuse %s with %s - they are separate things."
|
1647 |
msgstr ""
|
1648 |
|
@@ -1704,48 +1720,48 @@ msgstr ""
|
|
1704 |
msgid "Standard"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "container"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
msgid "optional"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: src/addons/azure.php:
|
1720 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: src/addons/azure.php:
|
1724 |
msgid "Enter the path of the %s you wish to use here."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: src/addons/azure.php:
|
1728 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: src/addons/azure.php:
|
1732 |
-
#: src/addons/azure.php:
|
1733 |
msgid "Azure"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: src/addons/azure.php:
|
1737 |
msgid "Create Azure credentials in your Azure developer console."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: src/addons/azure.php:
|
1741 |
msgid "Could not create the container"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: src/addons/azure.php:
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: src/class-updraftplus.php:
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr ""
|
1751 |
|
@@ -1773,47 +1789,47 @@ msgstr ""
|
|
1773 |
msgid "Not installed"
|
1774 |
msgstr "لم يتم التثبيت"
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Storage class"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Bucket"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "Otherwise, you can leave it blank."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "Enter the ID of the %s project you wish to use here."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: src/addons/googlecloud.php:
|
1805 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: src/addons/googlecloud.php:
|
1809 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: src/addons/googlecloud.php:
|
1813 |
msgid "Project ID"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: src/addons/googlecloud.php:
|
1817 |
msgid "You must save and authenticate before you can test your settings."
|
1818 |
msgstr ""
|
1819 |
|
@@ -1822,22 +1838,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1822 |
msgstr ""
|
1823 |
|
1824 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1825 |
-
#: src/addons/googlecloud.php:
|
1826 |
msgid "You do not have access to this bucket."
|
1827 |
msgstr ""
|
1828 |
|
1829 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1830 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1831 |
-
#: src/addons/googlecloud.php:
|
1832 |
-
#: src/addons/googlecloud.php:
|
1833 |
-
#: src/addons/googlecloud.php:
|
1834 |
-
#: src/addons/googlecloud.php:
|
1835 |
msgid "Google Cloud"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1839 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1840 |
-
#: src/addons/googlecloud.php:
|
1841 |
msgid "%s Service Exception."
|
1842 |
msgstr ""
|
1843 |
|
@@ -1845,7 +1861,7 @@ msgstr ""
|
|
1845 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: src/restorer.php:
|
1849 |
msgid "Deferring..."
|
1850 |
msgstr ""
|
1851 |
|
@@ -1914,11 +1930,11 @@ msgstr ""
|
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: src/restorer.php:
|
1918 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: src/restorer.php:
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr ""
|
1924 |
|
@@ -1926,11 +1942,11 @@ msgstr ""
|
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: src/class-updraftplus.php:
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: src/class-updraftplus.php:
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr ""
|
1936 |
|
@@ -2108,8 +2124,8 @@ msgstr ""
|
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: src/addons/azure.php:
|
2112 |
-
#: src/addons/googlecloud.php:
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr ""
|
2115 |
|
@@ -2145,10 +2161,6 @@ msgstr ""
|
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: src/addons/migrator.php:2423
|
2149 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2150 |
-
msgstr ""
|
2151 |
-
|
2152 |
#: src/addons/migrator.php:2405
|
2153 |
msgid "Your new key:"
|
2154 |
msgstr ""
|
@@ -2354,7 +2366,7 @@ msgstr ""
|
|
2354 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: src/restorer.php:
|
2358 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2359 |
msgstr ""
|
2360 |
|
@@ -2386,41 +2398,41 @@ msgstr ""
|
|
2386 |
msgid "You have made changes to your settings, and not saved."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: src/addons/onedrive.php:
|
2390 |
msgid "N.B. %s is not case-sensitive."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: src/addons/onedrive.php:
|
2394 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: src/addons/azure.php:
|
2398 |
-
#: src/addons/onedrive.php:
|
2399 |
msgid "For longer help, including screenshots, follow this link."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: src/addons/onedrive.php:
|
2407 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: src/addons/azure.php:
|
2411 |
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)."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: src/addons/onedrive.php:
|
2415 |
msgid "%s authorisation failed:"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: src/addons/onedrive.php:
|
2419 |
-
#: src/addons/onedrive.php:
|
2420 |
msgid "OneDrive"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: src/addons/onedrive.php:
|
2424 |
msgid "Please re-authorize the connection to your %s account."
|
2425 |
msgstr ""
|
2426 |
|
@@ -2428,7 +2440,7 @@ msgstr ""
|
|
2428 |
msgid "configure it here"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: src/addons/onedrive.php:
|
2432 |
msgid "To remove the block, please go here."
|
2433 |
msgstr ""
|
2434 |
|
@@ -2573,74 +2585,66 @@ msgstr ""
|
|
2573 |
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)"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: src/methods/s3.php:
|
2577 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2581 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2585 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: src/addons/onedrive.php:
|
2589 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2590 |
#: src/udaddons/updraftplus-addons.php:887
|
2591 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: src/addons/onedrive.php:
|
2595 |
#: src/udaddons/updraftplus-addons.php:887
|
2596 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: src/addons/onedrive.php:
|
2600 |
#: src/udaddons/updraftplus-addons.php:887
|
2601 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2605 |
msgid "Premium WooCommerce plugins"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2609 |
msgid "Free two-factor security plugin"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2613 |
-
msgid "More
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2617 |
msgid "Go to the shop."
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2621 |
msgid "Compare with the free version"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2625 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2626 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2627 |
msgid "UpdraftPlus Premium"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2631 |
-
msgid "Follow this link to sign up."
|
2632 |
-
msgstr ""
|
2633 |
-
|
2634 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
2635 |
msgid "Free Newsletter"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
2639 |
-
msgid "Thank you for backing up with UpdraftPlus!"
|
2640 |
-
msgstr ""
|
2641 |
-
|
2642 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2643 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2644 |
msgid "Dismiss (for %s months)"
|
2645 |
msgstr ""
|
2646 |
|
@@ -2681,8 +2685,8 @@ msgstr ""
|
|
2681 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: src/methods/s3.php:
|
2685 |
-
#: src/methods/s3.php:
|
2686 |
msgid "%s Error: Failed to initialise"
|
2687 |
msgstr ""
|
2688 |
|
@@ -2727,7 +2731,7 @@ msgctxt "i.e. Non-automatic"
|
|
2727 |
msgid "Manual"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: src/restorer.php:
|
2731 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2732 |
msgid "An error (%s) occurred:"
|
2733 |
msgstr ""
|
@@ -2868,7 +2872,7 @@ msgstr ""
|
|
2868 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: src/class-updraftplus.php:
|
2872 |
msgid "Backup label:"
|
2873 |
msgstr ""
|
2874 |
|
@@ -2892,7 +2896,7 @@ msgstr ""
|
|
2892 |
msgid "Your label for this backup (optional)"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: src/addons/googlecloud.php:
|
2896 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2897 |
msgstr ""
|
2898 |
|
@@ -2912,11 +2916,11 @@ msgstr ""
|
|
2912 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: src/class-updraftplus.php:
|
2916 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: src/class-updraftplus.php:
|
2920 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2921 |
msgstr ""
|
2922 |
|
@@ -2953,19 +2957,19 @@ msgstr ""
|
|
2953 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: src/class-updraftplus.php:
|
2957 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: src/class-updraftplus.php:
|
2961 |
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."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: src/class-updraftplus.php:
|
2965 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#: src/class-updraftplus.php:
|
2969 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2970 |
msgstr ""
|
2971 |
|
@@ -3010,7 +3014,7 @@ msgstr ""
|
|
3010 |
msgid "Start backup"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: src/class-updraftplus.php:
|
3014 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3015 |
msgstr ""
|
3016 |
|
@@ -3046,7 +3050,7 @@ msgstr ""
|
|
3046 |
msgid "Memory limit"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: src/class-updraftplus.php:
|
3050 |
msgid "restoration"
|
3051 |
msgstr ""
|
3052 |
|
@@ -3109,7 +3113,7 @@ msgstr ""
|
|
3109 |
msgid "search term"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: src/restorer.php:
|
3113 |
msgid "Too many database errors have occurred - aborting"
|
3114 |
msgstr ""
|
3115 |
|
@@ -3145,7 +3149,7 @@ msgstr ""
|
|
3145 |
msgid "Free disk space in account:"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: src/admin.php:
|
3149 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3150 |
msgstr ""
|
3151 |
|
@@ -3240,7 +3244,7 @@ msgstr ""
|
|
3240 |
msgid "user"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
-
#: src/class-updraftplus.php:
|
3244 |
msgid "External database (%s)"
|
3245 |
msgstr ""
|
3246 |
|
@@ -3252,8 +3256,8 @@ msgstr ""
|
|
3252 |
msgid "failed to access parent folder"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
-
#: src/addons/googlecloud.php:
|
3256 |
-
#: src/addons/onedrive.php:
|
3257 |
msgid "However, subsequent access attempts failed:"
|
3258 |
msgstr ""
|
3259 |
|
@@ -3289,7 +3293,7 @@ msgstr ""
|
|
3289 |
msgid "use UpdraftPlus Premium"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
-
#: src/class-updraftplus.php:
|
3293 |
msgid "Decryption failed. The database file is encrypted."
|
3294 |
msgstr ""
|
3295 |
|
@@ -3297,8 +3301,8 @@ msgstr ""
|
|
3297 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3298 |
msgstr ""
|
3299 |
|
3300 |
-
#: src/restorer.php:
|
3301 |
-
#: src/restorer.php:
|
3302 |
msgid "An error occurred on the first %s command - aborting run"
|
3303 |
msgstr ""
|
3304 |
|
@@ -3318,17 +3322,17 @@ msgstr ""
|
|
3318 |
msgid "In %s, path names are case sensitive."
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: src/addons/azure.php:
|
3322 |
-
#: src/addons/onedrive.php:
|
3323 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:
|
3327 |
-
#: src/addons/onedrive.php:
|
3328 |
msgid "e.g. %s"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:
|
3332 |
msgid "Enter the path of the %s folder you wish to use here."
|
3333 |
msgstr ""
|
3334 |
|
@@ -3372,7 +3376,7 @@ msgstr ""
|
|
3372 |
msgid "Failed to upload %s"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: src/methods/dropbox.php:
|
3376 |
msgid "Success:"
|
3377 |
msgstr ""
|
3378 |
|
@@ -3380,15 +3384,15 @@ msgstr ""
|
|
3380 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: src/addons/onedrive.php:
|
3384 |
msgid "(You appear to be already authenticated)."
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: src/methods/dropbox.php:
|
3388 |
msgid "Dropbox"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: src/addons/onedrive.php:
|
3392 |
msgid "Authenticate with %s"
|
3393 |
msgstr ""
|
3394 |
|
@@ -3419,8 +3423,8 @@ msgstr ""
|
|
3419 |
msgid "%s error - failed to access the container"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: src/addons/googlecloud.php:
|
3423 |
-
#: src/methods/dropbox.php:
|
3424 |
msgid "Account holder's name: %s."
|
3425 |
msgstr ""
|
3426 |
|
@@ -3436,17 +3440,17 @@ msgstr ""
|
|
3436 |
msgid "<strong>This is NOT a folder name</strong>."
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:
|
3440 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3441 |
msgid "Folder"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:
|
3445 |
#: src/methods/googledrive.php:1122
|
3446 |
msgid "%s download: failed: file not found"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: src/addons/googlecloud.php:
|
3450 |
msgid "Name: %s."
|
3451 |
msgstr ""
|
3452 |
|
@@ -3485,7 +3489,7 @@ msgstr ""
|
|
3485 |
msgid "Failed to unpack the archive"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: src/class-updraftplus.php:
|
3489 |
msgid "Error - failed to download the file"
|
3490 |
msgstr ""
|
3491 |
|
@@ -3510,7 +3514,7 @@ msgid "password/key"
|
|
3510 |
msgstr " الرقم السري/المفتاح"
|
3511 |
|
3512 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3513 |
-
#: src/admin.php:
|
3514 |
msgid "Key"
|
3515 |
msgstr "مفتاح"
|
3516 |
|
@@ -3535,7 +3539,7 @@ msgid "Files and database WordPress backup (created by %s)"
|
|
3535 |
msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
|
3536 |
|
3537 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3538 |
-
#: src/includes/class-backup-history.php:
|
3539 |
msgid "Backup created by: %s."
|
3540 |
msgstr "ولدت النسخة الإحتياطية من طرف: %s."
|
3541 |
|
@@ -3567,7 +3571,7 @@ msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية
|
|
3567 |
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."
|
3568 |
msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
|
3569 |
|
3570 |
-
#: src/admin.php:694, src/includes/class-backup-history.php:
|
3571 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3572 |
msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
|
3573 |
|
@@ -3576,20 +3580,20 @@ msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are
|
|
3576 |
msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
|
3577 |
|
3578 |
#: src/admin.php:693, src/admin.php:694,
|
3579 |
-
#: src/includes/class-backup-history.php:
|
3580 |
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))."
|
3581 |
msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
3582 |
|
3583 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3584 |
-
#: src/restorer.php:
|
3585 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3586 |
msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
|
3587 |
|
3588 |
-
#: src/restorer.php:
|
3589 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3590 |
msgstr "مجلد (wp-content) غير موجود البثة بهذا الملف المضغوط."
|
3591 |
|
3592 |
-
#: src/restorer.php:
|
3593 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3594 |
msgstr "هذه النسخة من UpdraftPlus لا تستطيع التعامل مع نوع النسخ الإحتياطية هذا."
|
3595 |
|
@@ -3601,12 +3605,12 @@ msgstr "أبدى %s إجابة HTTP غير متوقعة: %s"
|
|
3601 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3602 |
msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
|
3603 |
|
3604 |
-
#: src/addons/backblaze.php:
|
3605 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3606 |
msgid "No settings were found"
|
3607 |
msgstr "لم يتم العثور على الإعدادات"
|
3608 |
|
3609 |
-
#: src/includes/class-backup-history.php:
|
3610 |
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."
|
3611 |
msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
|
3612 |
|
@@ -3614,7 +3618,7 @@ msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتي
|
|
3614 |
msgid "Rescanning remote and local storage for backup sets..."
|
3615 |
msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
|
3616 |
|
3617 |
-
#: src/addons/googlecloud.php:
|
3618 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3619 |
msgid "(Read more)"
|
3620 |
msgstr "(قراءة المزيد)"
|
@@ -3632,7 +3636,7 @@ msgstr ""
|
|
3632 |
msgid "Remove"
|
3633 |
msgstr "حذف"
|
3634 |
|
3635 |
-
#: src/methods/s3.php:
|
3636 |
msgid "Other %s FAQs."
|
3637 |
msgstr "الأسئلة الشائعة %s الأخرى."
|
3638 |
|
@@ -3644,12 +3648,12 @@ msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزي
|
|
3644 |
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."
|
3645 |
msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
|
3646 |
|
3647 |
-
#: src/class-updraftplus.php:
|
3648 |
-
#: src/restorer.php:
|
3649 |
msgid "Your hosting company must enable these functions before %s can work."
|
3650 |
msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
|
3651 |
|
3652 |
-
#: src/class-updraftplus.php:
|
3653 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3654 |
msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
|
3655 |
|
@@ -3665,7 +3669,7 @@ msgstr "خادم FTP مشفر (تشفير غير واضح)"
|
|
3665 |
msgid "regular non-encrypted FTP"
|
3666 |
msgstr "خادم FTP غير مشفر اعتيادي"
|
3667 |
|
3668 |
-
#: src/restorer.php:
|
3669 |
msgid "Backup created by:"
|
3670 |
msgstr "نسخة احتياطية أنشأها:"
|
3671 |
|
@@ -3719,19 +3723,19 @@ msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا المو
|
|
3719 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3720 |
msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
|
3721 |
|
3722 |
-
#: src/class-updraftplus.php:
|
3723 |
msgid "The attempt to undo the double-compression succeeded."
|
3724 |
msgstr "نجاح محاولة التراجع من الضغط المزدوج"
|
3725 |
|
3726 |
-
#: src/class-updraftplus.php:
|
3727 |
msgid "The attempt to undo the double-compression failed."
|
3728 |
msgstr "فشل محاولة التراجع من الضغط المزدوج"
|
3729 |
|
3730 |
-
#: src/class-updraftplus.php:
|
3731 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3732 |
msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
|
3733 |
|
3734 |
-
#: src/includes/class-wpadmin-commands.php:
|
3735 |
msgid "Constants"
|
3736 |
msgstr "ثوابت"
|
3737 |
|
@@ -3780,7 +3784,7 @@ msgstr "استرجاع (إذا لزم الأمر) وإعداد ملفات الن
|
|
3780 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3781 |
msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %s ثانية فقط، ولا تسمح لوصول لهذا الحد. إن لم تتمكن من استرداد حجم كبير من البيانات بسبب هذا الحد، يمكنك الإتصال بشرك الإستضافة الخاصة بك (أو محاولة الإسترداد قطعة-قطعة)"
|
3782 |
|
3783 |
-
#: src/restorer.php:
|
3784 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3785 |
msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
|
3786 |
|
@@ -3801,11 +3805,11 @@ msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الم
|
|
3801 |
msgid "Messages:"
|
3802 |
msgstr "رسائل:"
|
3803 |
|
3804 |
-
#: src/restorer.php:
|
3805 |
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"
|
3806 |
msgstr "تم العثور على خط SQL أكبر من الحد الأقصى لحجم الحزمة ولا يمكن تقسيمها، هذا الخط لن نتمكن من معالجته، وسنقوم بإبعاده: %s"
|
3807 |
|
3808 |
-
#: src/restorer.php:
|
3809 |
msgid "The directory does not exist"
|
3810 |
msgstr "المجلد غير متوفر"
|
3811 |
|
@@ -3974,7 +3978,7 @@ msgstr "اعادة المحاولة..."
|
|
3974 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3975 |
msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
|
3976 |
|
3977 |
-
#: src/admin.php:679, src/admin.php:
|
3978 |
msgid "Error data:"
|
3979 |
msgstr "خطأ بالبيانات:"
|
3980 |
|
@@ -3986,11 +3990,11 @@ msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
|
|
3986 |
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."
|
3987 |
msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
|
3988 |
|
3989 |
-
#: src/restorer.php:
|
3990 |
msgid "Split line to avoid exceeding maximum packet size"
|
3991 |
msgstr "تقسيم الخط لتفاذي الحجم الأقصى للحزم"
|
3992 |
|
3993 |
-
#: src/restorer.php:
|
3994 |
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)"
|
3995 |
msgstr "المستخدم لا يمتلك صلاحيات لتحريك الجداول. سنحاول الإستعادة عن طريق إفراغ الجداول، يمكن لهذه العملية النجاح طالما أننا نستعيد من نسخة ووردبريس مع نفس بنية قاعدة البيانات (%s)"
|
3996 |
|
@@ -4022,11 +4026,11 @@ msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تق
|
|
4022 |
msgid "Email reports"
|
4023 |
msgstr "تقارير البريد الإلكتروني"
|
4024 |
|
4025 |
-
#: src/class-updraftplus.php:
|
4026 |
msgid "%s checksum: %s"
|
4027 |
msgstr "%s الاختباري:%s"
|
4028 |
|
4029 |
-
#: src/class-updraftplus.php:
|
4030 |
msgid "files: %s"
|
4031 |
msgstr "ملفات:%s"
|
4032 |
|
@@ -4079,19 +4083,19 @@ msgstr "%d ساعة،%d دقيقة، %d ثانية"
|
|
4079 |
msgid "%d errors, %d warnings"
|
4080 |
msgstr "%d الأخطاء، %d تحذيرات"
|
4081 |
|
4082 |
-
#: src/addons/onedrive.php:
|
4083 |
-
#: src/methods/dropbox.php:
|
4084 |
msgid "%s authentication"
|
4085 |
msgstr "%s مصادقة"
|
4086 |
|
4087 |
-
#: src/addons/onedrive.php:
|
4088 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4089 |
-
#: src/methods/dropbox.php:
|
4090 |
-
#: src/methods/dropbox.php:
|
4091 |
msgid "%s error: %s"
|
4092 |
msgstr "%s خطأ: %s"
|
4093 |
|
4094 |
-
#: src/addons/googlecloud.php:
|
4095 |
msgid "%s logo"
|
4096 |
msgstr "%s الشعار"
|
4097 |
|
@@ -4099,7 +4103,7 @@ msgstr "%s الشعار"
|
|
4099 |
msgid "%s did not return the expected response - check your log file for more details"
|
4100 |
msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
|
4101 |
|
4102 |
-
#: src/methods/s3.php:
|
4103 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4104 |
msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
|
4105 |
|
@@ -4120,7 +4124,7 @@ msgstr "الإتصال"
|
|
4120 |
msgid "For more reporting features, use the Reporting add-on."
|
4121 |
msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
|
4122 |
|
4123 |
-
#: src/class-updraftplus.php:
|
4124 |
msgid "(version: %s)"
|
4125 |
msgstr "(الإصدار: %s)"
|
4126 |
|
@@ -4261,7 +4265,7 @@ msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
|
|
4261 |
msgid "Reporting"
|
4262 |
msgstr "التقارير"
|
4263 |
|
4264 |
-
#: src/admin.php:
|
4265 |
msgid "Options (raw)"
|
4266 |
msgstr "خيارات (الخام)"
|
4267 |
|
@@ -4269,7 +4273,7 @@ msgstr "خيارات (الخام)"
|
|
4269 |
msgid "Send a report only when there are warnings/errors"
|
4270 |
msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
|
4271 |
|
4272 |
-
#: src/restorer.php:
|
4273 |
msgid "Content URL:"
|
4274 |
msgstr "رابط المحتوى:"
|
4275 |
|
@@ -4413,7 +4417,7 @@ msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
|
|
4413 |
msgid "Your web-server does not have the %s module installed."
|
4414 |
msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
|
4415 |
|
4416 |
-
#: src/addons/googlecloud.php:
|
4417 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4418 |
msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
|
4419 |
|
@@ -4433,7 +4437,7 @@ msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إ
|
|
4433 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4434 |
msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
|
4435 |
|
4436 |
-
#: src/restorer.php:
|
4437 |
msgid "Site home:"
|
4438 |
msgstr "الصفحة الرئيسية للموقع:"
|
4439 |
|
@@ -4449,7 +4453,7 @@ msgstr "(السجلات يمكن العثور عليها فى صفحة اعدا
|
|
4449 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4450 |
msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
|
4451 |
|
4452 |
-
#: src/addons/azure.php:
|
4453 |
#: src/methods/stream-base.php:149
|
4454 |
msgid "Upload failed"
|
4455 |
msgstr "فشل التحميل"
|
@@ -4593,27 +4597,27 @@ msgstr "تقدم النسخ الأحتياطى:"
|
|
4593 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4594 |
msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
|
4595 |
|
4596 |
-
#: src/restorer.php:
|
4597 |
msgid "file"
|
4598 |
msgstr "ملف"
|
4599 |
|
4600 |
-
#: src/restorer.php:
|
4601 |
msgid "folder"
|
4602 |
msgstr "مجلد"
|
4603 |
|
4604 |
-
#: src/restorer.php:
|
4605 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4606 |
msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
|
4607 |
|
4608 |
-
#: src/class-updraftplus.php:
|
4609 |
msgid "The backup has not finished; a resumption is scheduled"
|
4610 |
msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
|
4611 |
|
4612 |
-
#: src/class-updraftplus.php:
|
4613 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4614 |
msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
|
4615 |
|
4616 |
-
#: src/addons/onedrive.php:
|
4617 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4618 |
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)."
|
4619 |
msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
|
@@ -4698,23 +4702,23 @@ msgstr "مزيد من الملحقات"
|
|
4698 |
msgid "Support"
|
4699 |
msgstr "الدعم"
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4703 |
msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
|
4704 |
|
4705 |
-
#: src/class-updraftplus.php:
|
4706 |
msgid "This database backup is missing core WordPress tables: %s"
|
4707 |
msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
|
4708 |
|
4709 |
-
#: src/class-updraftplus.php:
|
4710 |
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."
|
4711 |
msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
|
4712 |
|
4713 |
-
#: src/class-updraftplus.php:
|
4714 |
msgid "%s version: %s"
|
4715 |
msgstr "%s النسخة: %s"
|
4716 |
|
4717 |
-
#: src/class-updraftplus.php:
|
4718 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4719 |
msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
|
4720 |
|
@@ -4799,15 +4803,15 @@ msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
|
|
4799 |
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?"
|
4800 |
msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
|
4801 |
|
4802 |
-
#: src/includes/class-wpadmin-commands.php:
|
4803 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4804 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, لكن مع بعض الأخطاء. سوف تحتاج الى الألغاء وتصحيح اى مشاكل قبل اعادة المحاولة."
|
4805 |
|
4806 |
-
#: src/includes/class-wpadmin-commands.php:
|
4807 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4808 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, ولكن مع بعض التحذيرات. اذا كان كل شئ على مايرام, اضغط على استعادة مرة اخرى للأستمرار. غير ذلك, قم بالألغاء وتصحيح اى مشاكل اولا."
|
4809 |
|
4810 |
-
#: src/includes/class-wpadmin-commands.php:
|
4811 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4812 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح. الأن اضغط استعادة مرة اخرى للأستمرار."
|
4813 |
|
@@ -4847,16 +4851,16 @@ msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
|
|
4847 |
msgid "WordPress root directory server path: %s"
|
4848 |
msgstr "مسار جذر الوردبريس فى الخادم: %s"
|
4849 |
|
4850 |
-
#: src/methods/dreamobjects.php:
|
4851 |
msgid "%s end-point"
|
4852 |
msgstr "نقطة النهاية %s "
|
4853 |
|
4854 |
-
#: src/methods/s3.php:
|
4855 |
msgid "... and many more!"
|
4856 |
msgstr "... وغيرها الكثير!"
|
4857 |
|
4858 |
-
#: src/methods/s3generic.php:
|
4859 |
-
#: src/methods/s3generic.php:
|
4860 |
msgid "S3 (Compatible)"
|
4861 |
msgstr "S3 (متوافق)"
|
4862 |
|
@@ -4864,11 +4868,11 @@ msgstr "S3 (متوافق)"
|
|
4864 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4865 |
msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
|
4866 |
|
4867 |
-
#: src/admin.php:
|
4868 |
msgid "Looking for %s archive: file name: %s"
|
4869 |
msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
|
4870 |
|
4871 |
-
#: src/admin.php:
|
4872 |
msgid "Final checks"
|
4873 |
msgstr "الفحوصات النهائية"
|
4874 |
|
@@ -4896,7 +4900,7 @@ msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة ال
|
|
4896 |
msgid "Processing files - please wait..."
|
4897 |
msgstr "تجهيز الملفات - يرجى الأنتظار..."
|
4898 |
|
4899 |
-
#: src/admin.php:
|
4900 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4901 |
msgid "Please consult this FAQ for help on what to do about it."
|
4902 |
msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
|
@@ -4905,30 +4909,30 @@ msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول
|
|
4905 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4906 |
msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
|
4907 |
|
4908 |
-
#: src/class-updraftplus.php:
|
4909 |
msgid "Failed to open database file."
|
4910 |
msgstr "فشل فى فتح ملف قاعدة البيانات."
|
4911 |
|
4912 |
-
#: src/admin.php:
|
4913 |
msgid "Known backups (raw)"
|
4914 |
msgstr "النسخ الأحتياطى المعروفة (الخام)"
|
4915 |
|
4916 |
-
#: src/restorer.php:
|
4917 |
msgid "Files found:"
|
4918 |
msgstr "العثور على ملفات:"
|
4919 |
|
4920 |
-
#: src/restorer.php:
|
4921 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4922 |
msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
|
4923 |
|
4924 |
-
#: src/admin.php:
|
4925 |
msgid "file is size:"
|
4926 |
msgstr "حجم الملف:"
|
4927 |
|
4928 |
-
#: src/addons/googlecloud.php:
|
4929 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4930 |
-
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:
|
4931 |
-
#: src/class-updraftplus.php:
|
4932 |
msgid "Go here for more information."
|
4933 |
msgstr "اذهب هنا لمزيد من المعلومات."
|
4934 |
|
@@ -4936,7 +4940,7 @@ msgstr "اذهب هنا لمزيد من المعلومات."
|
|
4936 |
msgid "Some files are still downloading or being processed - please wait."
|
4937 |
msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
|
4938 |
|
4939 |
-
#: src/class-updraftplus.php:
|
4940 |
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."
|
4941 |
msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
|
4942 |
|
@@ -4980,7 +4984,7 @@ msgstr "خطأ - فشل فى تحميل الملف من %s"
|
|
4980 |
msgid "Error - no such file exists at %s"
|
4981 |
msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
|
4982 |
|
4983 |
-
#: src/addons/azure.php:
|
4984 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4985 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4986 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
@@ -5009,10 +5013,10 @@ msgstr "المصادقة فشلت %s"
|
|
5009 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
5010 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
5011 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5012 |
-
#: src/class-updraftplus.php:
|
5013 |
-
#: src/class-updraftplus.php:
|
5014 |
-
#: src/class-updraftplus.php:
|
5015 |
-
#: src/methods/s3.php:
|
5016 |
msgid "Error: %s"
|
5017 |
msgstr "خطأ: %s"
|
5018 |
|
@@ -5052,7 +5056,7 @@ msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات
|
|
5052 |
msgid "Warnings encountered:"
|
5053 |
msgstr "مصادفة تحذيرات:"
|
5054 |
|
5055 |
-
#: src/class-updraftplus.php:
|
5056 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5057 |
msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
|
5058 |
|
@@ -5092,40 +5096,40 @@ msgstr "تحقق من اذونات الملفات الخاصة بك: تعذر ا
|
|
5092 |
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."
|
5093 |
msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
|
5094 |
|
5095 |
-
#: src/methods/s3.php:
|
5096 |
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."
|
5097 |
msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
|
5098 |
|
5099 |
-
#: src/methods/s3.php:
|
5100 |
msgid "Please check your access credentials."
|
5101 |
msgstr "يرجى التحقق من وصول بيانات الأعتماد."
|
5102 |
|
5103 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5104 |
msgid "The error reported by %s was:"
|
5105 |
msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
|
5106 |
|
5107 |
-
#: src/restorer.php:
|
5108 |
msgid "Please supply the requested information, and then continue."
|
5109 |
msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
|
5110 |
|
5111 |
-
#: src/class-updraftplus.php:
|
5112 |
msgid "Site information:"
|
5113 |
msgstr "معلومات عن الموقع:"
|
5114 |
|
5115 |
-
#: src/restorer.php:
|
5116 |
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."
|
5117 |
msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
|
5118 |
|
5119 |
-
#: src/admin.php:2445, src/class-updraftplus.php:
|
5120 |
msgid "Warning:"
|
5121 |
msgstr "تحذير:"
|
5122 |
|
5123 |
-
#: src/class-updraftplus.php:
|
5124 |
#: src/restorer.php:184
|
5125 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5126 |
msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
|
5127 |
|
5128 |
-
#: src/admin.php:
|
5129 |
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."
|
5130 |
msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
|
5131 |
|
@@ -5201,7 +5205,7 @@ msgstr "مميز"
|
|
5201 |
msgid "News"
|
5202 |
msgstr "اخبار"
|
5203 |
|
5204 |
-
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:
|
5205 |
msgid "Backup set not found"
|
5206 |
msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
|
5207 |
|
@@ -5366,18 +5370,18 @@ msgid "Directory path"
|
|
5366 |
msgstr "مسار الدليل"
|
5367 |
|
5368 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5369 |
-
#: src/addons/sftp.php:443, src/addons/webdav.php:
|
5370 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5371 |
#: src/udaddons/options.php:135
|
5372 |
msgid "Password"
|
5373 |
msgstr "كلمة السر"
|
5374 |
|
5375 |
-
#: src/addons/sftp.php:429, src/addons/webdav.php:
|
5376 |
msgid "Port"
|
5377 |
msgstr "المنفذ"
|
5378 |
|
5379 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5380 |
-
#: src/addons/webdav.php:
|
5381 |
msgid "Host"
|
5382 |
msgstr "الاستضافة"
|
5383 |
|
@@ -5425,7 +5429,7 @@ msgstr "الملفات بالأعلى تشمل جميع ملفات تنصيب ا
|
|
5425 |
msgid "Over-write wp-config.php"
|
5426 |
msgstr "إعادة كتابة wp-config.php"
|
5427 |
|
5428 |
-
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:
|
5429 |
msgid "WordPress Core"
|
5430 |
msgstr "لب الووردبريس"
|
5431 |
|
@@ -5433,14 +5437,14 @@ msgstr "لب الووردبريس"
|
|
5433 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5434 |
msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
|
5435 |
|
5436 |
-
#: src/addons/googlecloud.php:
|
5437 |
-
#: src/addons/googlecloud.php:
|
5438 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5439 |
#: src/methods/stream-base.php:353
|
5440 |
msgid "Failed"
|
5441 |
msgstr "فشل"
|
5442 |
|
5443 |
-
#: src/addons/webdav.php:
|
5444 |
msgid "WebDAV URL"
|
5445 |
msgstr "رابط WEBDAV"
|
5446 |
|
@@ -5491,31 +5495,31 @@ msgstr "يحتاج إلى وجود بالفعل"
|
|
5491 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5492 |
msgstr "إذا كنت تريد تشفير (على سبيل المثال كنت تخزن بيانات الأعمال الحساسة)، فهناك اضافة متاحة لهذا الغرض."
|
5493 |
|
5494 |
-
#: src/addons/onedrive.php:
|
5495 |
msgid "Your %s account name: %s"
|
5496 |
msgstr "اسم الحساب %s الخاص بك: %s"
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5500 |
msgstr "على الرغم من أن جزء من المعلومات الذي عاد لم يكن كما هو متوقع - الأميال الخاص بك قد تختلف"
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "you have authenticated your %s account"
|
5504 |
msgstr "تم المصادقة على %s حسابك"
|
5505 |
|
5506 |
-
#: src/methods/dropbox.php:
|
5507 |
msgid "there's an add-on for that."
|
5508 |
msgstr "هناك اضافة لذلك."
|
5509 |
|
5510 |
-
#: src/methods/dropbox.php:
|
5511 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5512 |
msgstr "اذا كنت تستخدم النسخ الأحتياطى لعدة مواقع فى نفس الدروب بوكس وتريد ان تقوم بتنظيمها مع المجلدات الفرعية, اذا"
|
5513 |
|
5514 |
-
#: src/methods/dropbox.php:
|
5515 |
msgid "Backups are saved in"
|
5516 |
msgstr "يتم حفظ النسخ الأحتياطية فى"
|
5517 |
|
5518 |
-
#: src/methods/dropbox.php:
|
5519 |
msgid "Need to use sub-folders?"
|
5520 |
msgstr "هل تحتاج الى استخدام المجلدات الفرعية؟"
|
5521 |
|
@@ -5528,96 +5532,96 @@ msgstr "خطأ: فشل فى رفع الملف الى %s (انظر السجل ل
|
|
5528 |
msgid "You do not appear to be authenticated with Dropbox"
|
5529 |
msgstr "لا يبدو ان المصادقة مع Dropbox"
|
5530 |
|
5531 |
-
#: src/methods/s3.php:
|
5532 |
msgid "The communication with %s was not encrypted."
|
5533 |
msgstr "التواصل مع %s كان غير مشفر."
|
5534 |
|
5535 |
-
#: src/methods/s3.php:
|
5536 |
msgid "The communication with %s was encrypted."
|
5537 |
msgstr "التواصل مع %s كان مشفر."
|
5538 |
|
5539 |
-
#: src/addons/googlecloud.php:
|
5540 |
msgid "We accessed the bucket, and were able to create files within it."
|
5541 |
msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
|
5542 |
|
5543 |
-
#: src/addons/googlecloud.php:
|
5544 |
-
#: src/methods/s3.php:
|
5545 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5546 |
msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
|
5547 |
|
5548 |
-
#: src/addons/googlecloud.php:
|
5549 |
-
#: src/methods/s3.php:
|
5550 |
msgid "Failure"
|
5551 |
msgstr "فشل"
|
5552 |
|
5553 |
-
#: src/addons/backblaze.php:
|
5554 |
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)."
|
5555 |
msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
|
5556 |
|
5557 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5558 |
-
#: src/methods/s3.php:
|
5559 |
msgid "Region"
|
5560 |
msgstr "المنطقة"
|
5561 |
|
5562 |
-
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "Failure: No bucket details were given."
|
5565 |
msgstr "فشل: لم ترد تفاصيل الباكت."
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "API secret"
|
5569 |
msgstr "API السرية"
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5573 |
msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
msgid "%s location"
|
5577 |
msgstr "المكان %s"
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
msgid "%s secret key"
|
5581 |
msgstr "المفتاح السرى %s"
|
5582 |
|
5583 |
-
#: src/methods/s3.php:
|
5584 |
msgid "%s access key"
|
5585 |
msgstr "مفتاح الوصول %s"
|
5586 |
|
5587 |
-
#: src/methods/s3.php:
|
5588 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5589 |
msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
|
5590 |
|
5591 |
-
#: src/methods/s3.php:
|
5592 |
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."
|
5593 |
msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
|
5594 |
|
5595 |
-
#: src/methods/s3.php:
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5598 |
msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5602 |
msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5606 |
msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
|
5607 |
|
5608 |
-
#: src/methods/s3.php:
|
5609 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5610 |
msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
|
5611 |
|
5612 |
-
#: src/methods/s3.php:
|
5613 |
msgid "%s chunk %s: upload failed"
|
5614 |
msgstr "%s قطعة %s : فشل الرفع"
|
5615 |
|
5616 |
-
#: src/methods/s3.php:
|
5617 |
msgid "%s error: file %s was shortened unexpectedly"
|
5618 |
msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
|
5619 |
|
5620 |
-
#: src/methods/s3.php:
|
5621 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5622 |
msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
|
5623 |
|
@@ -5642,32 +5646,32 @@ msgid "Failure: No container details were given."
|
|
5642 |
msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
|
5643 |
|
5644 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5645 |
-
#: src/addons/webdav.php:
|
5646 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5647 |
msgid "Username"
|
5648 |
msgstr "اسم المستخدم"
|
5649 |
|
5650 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5651 |
-
#: src/methods/s3.php:
|
5652 |
msgid "API key"
|
5653 |
msgstr "مفتاح API"
|
5654 |
|
5655 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5656 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5657 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5658 |
-
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:
|
5659 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5660 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5661 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5662 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5663 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5664 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5665 |
-
#: src/methods/s3.php:
|
5666 |
msgid "Failure: No %s was given."
|
5667 |
msgstr "فضل: لم تعطى أية %s."
|
5668 |
|
5669 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5670 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5671 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5672 |
msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
|
5673 |
|
@@ -5702,7 +5706,7 @@ msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\
|
|
5702 |
msgid "Test %s Settings"
|
5703 |
msgstr "اختبار %s الإعدادات"
|
5704 |
|
5705 |
-
#: src/class-updraftplus.php:
|
5706 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5707 |
msgid "Error opening local file: Failed to download"
|
5708 |
msgstr "خطأ في فتح ملف محلي: فشل التحميل"
|
@@ -5714,7 +5718,7 @@ msgstr "خطأ بملفات سحابة - فشل في رفع الملف"
|
|
5714 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5715 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5716 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5717 |
-
#: src/methods/s3.php:
|
5718 |
msgid "%s Error: Failed to upload"
|
5719 |
msgstr "%s خطأ: فشل في تحميل"
|
5720 |
|
@@ -5740,34 +5744,34 @@ msgstr "فشل المصادقة بملفات سحابة"
|
|
5740 |
msgid "Authenticate with Google"
|
5741 |
msgstr "المصادقة مع جوجل"
|
5742 |
|
5743 |
-
#: src/addons/googlecloud.php:
|
5744 |
#: src/methods/googledrive.php:1196
|
5745 |
msgid "Client Secret"
|
5746 |
msgstr "سر العميل"
|
5747 |
|
5748 |
-
#: src/addons/googlecloud.php:
|
5749 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5750 |
msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
|
5751 |
|
5752 |
-
#: src/addons/googlecloud.php:
|
5753 |
#: src/methods/googledrive.php:1192
|
5754 |
msgid "Client ID"
|
5755 |
msgstr "معرف العميل"
|
5756 |
|
5757 |
-
#: src/addons/googlecloud.php:
|
5758 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5759 |
msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
|
5760 |
|
5761 |
-
#: src/addons/googlecloud.php:
|
5762 |
msgid "Select 'Web Application' as the application type."
|
5763 |
msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
|
5764 |
|
5765 |
-
#: src/addons/googlecloud.php:
|
5766 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5767 |
msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
|
5768 |
|
5769 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5770 |
-
#: src/addons/googlecloud.php:
|
5771 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5772 |
#: src/methods/googledrive.php:558
|
5773 |
msgid "Account is not authorized."
|
@@ -5787,21 +5791,21 @@ msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك عل
|
|
5787 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5788 |
msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
|
5789 |
|
5790 |
-
#: src/addons/googlecloud.php:
|
5791 |
#: src/methods/googledrive.php:441
|
5792 |
msgid "you have authenticated your %s account."
|
5793 |
msgstr "لديك حساب %s مصادق عليه."
|
5794 |
|
5795 |
-
#: src/addons/googlecloud.php:
|
5796 |
-
#: src/addons/onedrive.php:
|
5797 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5798 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5799 |
-
#: src/methods/s3.php:
|
5800 |
msgid "Success"
|
5801 |
msgstr "نجاح"
|
5802 |
|
5803 |
-
#: src/addons/onedrive.php:
|
5804 |
-
#: src/methods/dropbox.php:
|
5805 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5806 |
msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
|
5807 |
|
@@ -5833,58 +5837,58 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
|
|
5833 |
msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
|
5834 |
|
5835 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5836 |
-
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:
|
5837 |
-
#: src/restorer.php:
|
5838 |
msgid "OK"
|
5839 |
msgstr "حسنا"
|
5840 |
|
5841 |
-
#: src/restorer.php:
|
5842 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5843 |
msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
|
5844 |
|
5845 |
-
#: src/addons/migrator.php:1285, src/restorer.php:
|
5846 |
msgid "the database query being run was:"
|
5847 |
msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
5848 |
|
5849 |
-
#: src/restorer.php:
|
5850 |
msgid "will restore as:"
|
5851 |
msgstr "إستعادة على النحو التالي:"
|
5852 |
|
5853 |
-
#: src/class-updraftplus.php:
|
5854 |
-
#: src/restorer.php:
|
5855 |
msgid "Old table prefix:"
|
5856 |
msgstr "بادئة الجدول القديمة:"
|
5857 |
|
5858 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5859 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5860 |
msgid "Backup of:"
|
5861 |
msgstr "نسخة احتياطية لـ:"
|
5862 |
|
5863 |
-
#: src/restorer.php:
|
5864 |
msgid "Failed to open database file"
|
5865 |
msgstr "فشل في فتح ملف قاعدة البيانات"
|
5866 |
|
5867 |
-
#: src/restorer.php:
|
5868 |
msgid "Failed to find database file"
|
5869 |
msgstr "فشل في العثور على ملف قاعدة البيانات"
|
5870 |
|
5871 |
-
#: src/restorer.php:
|
5872 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5873 |
msgstr "تحذير: PHP safe_mode نشط بخادمكم. سنكون عرضة لحالة المهلات بكثرة. ان حدث هذا المشكل بالفعل، ستكون مضطر للإسترجاع الملف من phpMyAdmin أو بطريقة أخرى."
|
5874 |
|
5875 |
-
#: src/restorer.php:
|
5876 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5877 |
msgstr "wp-config.php من النسخ الإحتياطية: إستعادة (بناءا على طلب السمتخدم)"
|
5878 |
|
5879 |
-
#: src/restorer.php:
|
5880 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5881 |
msgstr "wp-config.php من النسخ الاحتياطي: سيتم إستعادته كمسمى wp-config-backup.php"
|
5882 |
|
5883 |
-
#: src/restorer.php:
|
5884 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5885 |
msgstr "فشل في كتابة قاعدة البيانات مفككت التشفير لنظام الملفات"
|
5886 |
|
5887 |
-
#: src/restorer.php:
|
5888 |
msgid "Failed to create a temporary directory"
|
5889 |
msgstr "فشل في إنشاء دليل مؤقت"
|
5890 |
|
@@ -5928,19 +5932,19 @@ msgstr "ملف النسخ الاحتياطي غير متوفر."
|
|
5928 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5929 |
msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
|
5930 |
|
5931 |
-
#: src/admin.php:
|
5932 |
msgid "Could not find one of the files for restoration"
|
5933 |
msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
|
5934 |
|
5935 |
-
#: src/admin.php:
|
5936 |
msgid "Error message"
|
5937 |
msgstr "رسالة الخطأ"
|
5938 |
|
5939 |
-
#: src/admin.php:
|
5940 |
msgid "The backup records do not contain information about the proper size of this file."
|
5941 |
msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
|
5942 |
|
5943 |
-
#: src/admin.php:
|
5944 |
msgid "Archive is expected to be size:"
|
5945 |
msgstr "من المتوقع أن يكون حجم الأرشيف:"
|
5946 |
|
@@ -5981,7 +5985,7 @@ msgid "Your web server's PHP/Curl installation does not support https access. Co
|
|
5981 |
msgstr ""
|
5982 |
|
5983 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5984 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5985 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5986 |
msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
|
5987 |
|
@@ -6269,7 +6273,7 @@ msgstr "إجراء نسخة احتياطية لمرة واحدة"
|
|
6269 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6270 |
msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
|
6271 |
|
6272 |
-
#: src/class-updraftplus.php:
|
6273 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6274 |
msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
|
6275 |
|
@@ -6322,10 +6326,10 @@ msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم
|
|
6322 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6323 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6324 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6325 |
-
#: src/addons/sftp.php:837, src/addons/webdav.php:
|
6326 |
-
#: src/admin.php:680, src/admin.php:
|
6327 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6328 |
-
#: src/methods/updraftvault.php:522, src/restorer.php:
|
6329 |
msgid "Error:"
|
6330 |
msgstr "خطأ:"
|
6331 |
|
@@ -6399,14 +6403,14 @@ msgstr "النسخ الاحتياطي الآن"
|
|
6399 |
|
6400 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6401 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6402 |
-
#: src/admin.php:3682, src/admin.php:
|
6403 |
#: src/includes/class-wpadmin-commands.php:147,
|
6404 |
-
#: src/includes/class-wpadmin-commands.php:
|
6405 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6406 |
msgid "Database"
|
6407 |
msgstr "قاعدة بيانات"
|
6408 |
|
6409 |
-
#: src/admin.php:311, src/admin.php:
|
6410 |
msgid "Files"
|
6411 |
msgstr "ملفات"
|
6412 |
|
@@ -6458,7 +6462,7 @@ msgstr "الولوج لموقع المطور"
|
|
6458 |
msgid "UpdraftPlus.Com"
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: src/admin.php:
|
6462 |
msgid "Your settings have been wiped."
|
6463 |
msgstr "تم القضاء على الإعدادات الخاصة بك."
|
6464 |
|
@@ -6519,11 +6523,11 @@ msgid "Download failed"
|
|
6519 |
msgstr "فشل تحميل"
|
6520 |
|
6521 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6522 |
-
#: src/class-updraftplus.php:
|
6523 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6524 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6525 |
-
#: src/methods/stream-base.php:220, src/restorer.php:
|
6526 |
-
#: src/restorer.php:
|
6527 |
msgid "Error"
|
6528 |
msgstr "خطأ"
|
6529 |
|
@@ -6564,7 +6568,7 @@ msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد در
|
|
6564 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6565 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6566 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6567 |
-
#: src/methods/s3.php:
|
6568 |
#: src/methods/updraftvault.php:301,
|
6569 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6570 |
#: src/udaddons/updraftplus-addons.php:253
|
@@ -6596,22 +6600,22 @@ msgstr ""
|
|
6596 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6597 |
msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
|
6598 |
|
6599 |
-
#: src/addons/azure.php:
|
6600 |
-
#: src/methods/googledrive.php:1082, src/methods/s3.php:
|
6601 |
msgid "File not found"
|
6602 |
msgstr "لم يتم العثور على ملف"
|
6603 |
|
6604 |
-
#: src/class-updraftplus.php:
|
6605 |
msgid "The decryption key used:"
|
6606 |
msgstr "مفتاح فك التشفير المستخدم:"
|
6607 |
|
6608 |
-
#: src/class-updraftplus.php:
|
6609 |
-
#: src/restorer.php:
|
6610 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6611 |
msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
|
6612 |
|
6613 |
-
#: src/class-updraftplus.php:
|
6614 |
-
#: src/restorer.php:
|
6615 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6616 |
msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
|
6617 |
|
@@ -6619,11 +6623,11 @@ msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ول
|
|
6619 |
msgid "Could not open the backup file for writing"
|
6620 |
msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
|
6621 |
|
6622 |
-
#: src/class-updraftplus.php:
|
6623 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6624 |
msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "Could not read the directory"
|
6628 |
msgstr "لا يمكن قراءة الدليل"
|
6629 |
|
@@ -6635,11 +6639,11 @@ msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتاب
|
|
6635 |
msgid "WordPress backup is complete"
|
6636 |
msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6640 |
msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
|
6641 |
|
6642 |
-
#: src/class-updraftplus.php:
|
6643 |
msgid "The backup apparently succeeded and is now complete"
|
6644 |
msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
|
6645 |
|
@@ -6647,23 +6651,23 @@ msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت و
|
|
6647 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6648 |
msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6652 |
msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
|
6653 |
|
6654 |
-
#: src/class-updraftplus.php:
|
6655 |
msgid "Others"
|
6656 |
msgstr "أخرى"
|
6657 |
|
6658 |
-
#: src/addons/multisite.php:465, src/class-updraftplus.php:
|
6659 |
msgid "Uploads"
|
6660 |
msgstr "الملفات المرفوعة"
|
6661 |
|
6662 |
-
#: src/class-updraftplus.php:
|
6663 |
msgid "Themes"
|
6664 |
msgstr "تصاميم"
|
6665 |
|
6666 |
-
#: src/class-updraftplus.php:
|
6667 |
msgid "Plugins"
|
6668 |
msgstr "الإضافات"
|
6669 |
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/restorer.php:188
|
43 |
+
msgid "Failed to read from the working directory."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/restorer.php:187
|
47 |
+
msgid "Failed to find a manifest file in the backup."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/restorer.php:186
|
51 |
+
msgid "Failed to read the manifest file from backup."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/includes/class-wpadmin-commands.php:207
|
55 |
+
msgid "Select your incremental restore point"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: src/addons/morefiles.php:73
|
59 |
msgid "(None configured)"
|
60 |
msgstr ""
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: src/admin.php:4602
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: src/admin.php:4598
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: src/addons/backblaze.php:475
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/restorer.php:2028
|
143 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
144 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
145 |
msgstr[0] ""
|
149 |
msgstr[4] ""
|
150 |
msgstr[5] ""
|
151 |
|
152 |
+
#: src/class-updraftplus.php:4411
|
153 |
msgid "Your chosen replacement collation"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: src/class-updraftplus.php:4388
|
157 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: src/class-updraftplus.php:4388
|
161 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
162 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
163 |
msgstr[0] ""
|
175 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/addons/azure.php:631
|
179 |
msgid "%s Prefix"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: src/addons/azure.php:626
|
183 |
msgid "%s Container"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: src/addons/azure.php:621
|
187 |
msgid "%s Key"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: src/addons/azure.php:617
|
191 |
msgid "%s Account Name"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: src/addons/googlecloud.php:692
|
195 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: src/addons/googlecloud.php:690
|
199 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
200 |
msgstr ""
|
201 |
|
229 |
msgstr[4] ""
|
230 |
msgstr[5] ""
|
231 |
|
232 |
+
#: src/restorer.php:1990
|
233 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: src/class-updraftplus.php:4364
|
237 |
msgid "Your chosen character set to use instead:"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: src/class-updraftplus.php:4354
|
241 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: src/class-updraftplus.php:4354
|
245 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
246 |
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."
|
247 |
msgstr[0] ""
|
299 |
msgid "Please enter a valid URL e.g http://example.com"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: src/addons/backblaze.php:633
|
303 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: src/addons/backblaze.php:632
|
307 |
msgid "some/path"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: src/addons/backblaze.php:632
|
311 |
msgid "Bucket name"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: src/addons/backblaze.php:631
|
315 |
msgid "Backup path"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: src/addons/backblaze.php:626
|
319 |
msgid "Application key"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
323 |
msgid "here"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: src/addons/backblaze.php:621
|
327 |
msgid "Get these settings from %s, or sign up %s."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: src/addons/backblaze.php:431
|
331 |
msgid "Account Key"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
335 |
msgid "Account ID"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/class-updraftplus.php:4196
|
339 |
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."
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
343 |
msgid "the migrator add-on"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: src/class-updraftplus.php:4194
|
347 |
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."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: src/class-updraftplus.php:4192
|
351 |
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."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: src/class-updraftplus.php:4187
|
355 |
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."
|
356 |
msgstr ""
|
357 |
|
371 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
375 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
376 |
+
#: src/class-updraftplus.php:2427
|
377 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
381 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
382 |
+
#: src/class-updraftplus.php:2420
|
383 |
msgid "A PHP exception (%s) has occurred: %s"
|
384 |
msgstr ""
|
385 |
|
435 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: src/admin.php:4808
|
439 |
msgid "Value"
|
440 |
msgstr ""
|
441 |
|
447 |
msgid "Encrypted login failed; trying non-encrypted"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: src/addons/azure.php:594
|
451 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
452 |
msgstr ""
|
453 |
|
459 |
msgid "Cloud Files"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: src/admin.php:4553
|
463 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: src/admin.php:4512
|
467 |
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."
|
468 |
msgstr ""
|
469 |
|
472 |
msgid "UpdraftVault"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: src/includes/class-wpadmin-commands.php:513
|
476 |
msgid "archive"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: src/includes/class-wpadmin-commands.php:504
|
480 |
msgid "Extra database"
|
481 |
msgstr ""
|
482 |
|
520 |
msgid "Browse contents"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: src/restorer.php:1811
|
524 |
msgid "Skipped tables:"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: src/class-updraftplus.php:4476
|
528 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
529 |
msgstr ""
|
530 |
|
733 |
msgid "Recommended: optimize your database with WP-Optimize."
|
734 |
msgstr ""
|
735 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
736 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
737 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
738 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
780 |
msgid "Europe (Ireland)"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
784 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
785 |
msgid "UpdraftCentral"
|
786 |
msgstr ""
|
992 |
msgid "Export / import settings"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/restorer.php:2030
|
996 |
msgid "Processing table (%s)"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: src/restorer.php:1777
|
1000 |
msgid "Backup of: %s"
|
1001 |
msgstr ""
|
1002 |
|
1004 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: src/methods/dropbox.php:785
|
1008 |
msgid "%s de-authentication"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: src/methods/dropbox.php:631
|
1012 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
1013 |
msgstr ""
|
1014 |
|
1076 |
msgid "US East (Ohio)"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: src/addons/onedrive.php:1051
|
1080 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: src/addons/onedrive.php:700
|
1084 |
msgid "Account is not authorized (%s)."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1088 |
msgid "Your IP address:"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1092 |
#: src/udaddons/updraftplus-addons.php:887
|
1093 |
msgid "To remove any block, please go here."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1097 |
msgid "An error response was received; HTTP code:"
|
1098 |
msgstr ""
|
1099 |
|
1121 |
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."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: src/addons/webdav.php:216
|
1125 |
msgid "Path"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: src/addons/webdav.php:211
|
1129 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: src/addons/webdav.php:203
|
1133 |
msgid "Enter any path in the field below."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: src/addons/webdav.php:203
|
1137 |
msgid "A host name cannot contain a slash."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: src/addons/webdav.php:178
|
1141 |
msgid "Protocol (SSL or not)"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: src/addons/webdav.php:173
|
1145 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1146 |
msgstr ""
|
1147 |
|
1149 |
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."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: src/methods/s3.php:1129
|
1153 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: src/methods/s3.php:126
|
1157 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1158 |
msgstr ""
|
1159 |
|
1259 |
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."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: src/class-updraftplus.php:1835
|
1263 |
msgid "Size: %s MB"
|
1264 |
msgstr ""
|
1265 |
|
1271 |
msgid "Now"
|
1272 |
msgstr "الآن"
|
1273 |
|
1274 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1275 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1276 |
msgstr ""
|
1277 |
|
1377 |
msgid "UpdraftCentral Connection"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1381 |
msgid "The backup was aborted by the user"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: src/admin.php:4548
|
1385 |
msgid "Your settings have been saved."
|
1386 |
msgstr "تم حفظ إعداداتك."
|
1387 |
|
1447 |
msgid "Asia Pacific (Seoul)"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: src/restorer.php:1800
|
1451 |
msgid "Uploads URL:"
|
1452 |
msgstr ""
|
1453 |
|
1455 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1459 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: src/class-updraftplus.php:4260
|
1463 |
msgid "Please read this link for important information on this process."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: src/class-updraftplus.php:4260
|
1467 |
msgid "It will be imported as a new site."
|
1468 |
msgstr ""
|
1469 |
|
1537 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: src/admin.php:4086
|
1541 |
msgid "Skipping: this archive was already restored."
|
1542 |
msgstr ""
|
1543 |
|
1569 |
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)."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: src/admin.php:4422
|
1573 |
msgid "Send this backup to remote storage"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: src/admin.php:4420
|
1577 |
msgid "Check out UpdraftPlus Vault."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: src/admin.php:4420
|
1581 |
msgid "Not got any remote storage?"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: src/admin.php:4420
|
1585 |
msgid "settings"
|
1586 |
msgstr "إعدادات"
|
1587 |
|
1588 |
+
#: src/admin.php:4420
|
1589 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1590 |
msgstr ""
|
1591 |
|
1642 |
msgid "Advanced Tools"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: src/addons/googlecloud.php:1049
|
1646 |
msgid "Bucket location"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: src/addons/googlecloud.php:1044
|
1650 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1654 |
msgid "This setting applies only when a new bucket is being created."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: src/addons/googlecloud.php:1033
|
1658 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: src/addons/googlecloud.php:979
|
1662 |
msgid "Do not confuse %s with %s - they are separate things."
|
1663 |
msgstr ""
|
1664 |
|
1720 |
msgid "Standard"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: src/addons/azure.php:632
|
1724 |
msgid "container"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/addons/azure.php:632
|
1728 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: src/addons/azure.php:631
|
1732 |
msgid "optional"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: src/addons/azure.php:627
|
1736 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: src/addons/azure.php:627
|
1740 |
msgid "Enter the path of the %s you wish to use here."
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: src/addons/azure.php:618
|
1744 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1748 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1749 |
msgid "Azure"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: src/addons/azure.php:598
|
1753 |
msgid "Create Azure credentials in your Azure developer console."
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: src/addons/azure.php:562
|
1757 |
msgid "Could not create the container"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: src/addons/azure.php:413
|
1761 |
msgid "Could not access container"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: src/class-updraftplus.php:2926
|
1765 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1766 |
msgstr ""
|
1767 |
|
1789 |
msgid "Not installed"
|
1790 |
msgstr "لم يتم التثبيت"
|
1791 |
|
1792 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1793 |
msgid "Storage class"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: src/addons/googlecloud.php:1033
|
1797 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: src/addons/googlecloud.php:1033
|
1801 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: src/addons/googlecloud.php:1032
|
1805 |
msgid "Bucket"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: src/addons/googlecloud.php:1028
|
1809 |
msgid "Otherwise, you can leave it blank."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: src/addons/googlecloud.php:1028
|
1813 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: src/addons/googlecloud.php:1028
|
1817 |
msgid "Enter the ID of the %s project you wish to use here."
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: src/addons/googlecloud.php:991
|
1821 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: src/addons/googlecloud.php:902
|
1825 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: src/addons/googlecloud.php:1026
|
1829 |
msgid "Project ID"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: src/addons/googlecloud.php:759
|
1833 |
msgid "You must save and authenticate before you can test your settings."
|
1834 |
msgstr ""
|
1835 |
|
1838 |
msgstr ""
|
1839 |
|
1840 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1841 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1842 |
msgid "You do not have access to this bucket."
|
1843 |
msgstr ""
|
1844 |
|
1845 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1846 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1847 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1848 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1849 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1850 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1851 |
msgid "Google Cloud"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1855 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1856 |
+
#: src/addons/googlecloud.php:941
|
1857 |
msgid "%s Service Exception."
|
1858 |
msgstr ""
|
1859 |
|
1861 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: src/restorer.php:827
|
1865 |
msgid "Deferring..."
|
1866 |
msgstr ""
|
1867 |
|
1930 |
msgid "Add an additional retention rule..."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: src/restorer.php:2354
|
1934 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: src/restorer.php:2354
|
1938 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1939 |
msgstr ""
|
1940 |
|
1942 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: src/class-updraftplus.php:4333
|
1946 |
msgid "You must upgrade MySQL to be able to use this database."
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: src/class-updraftplus.php:4333
|
1950 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1951 |
msgstr ""
|
1952 |
|
2124 |
msgid "Updraft Vault"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2128 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2129 |
msgid "Delete failed:"
|
2130 |
msgstr ""
|
2131 |
|
2161 |
msgid "Existing keys"
|
2162 |
msgstr ""
|
2163 |
|
|
|
|
|
|
|
|
|
2164 |
#: src/addons/migrator.php:2405
|
2165 |
msgid "Your new key:"
|
2166 |
msgstr ""
|
2366 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: src/restorer.php:2356
|
2370 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2371 |
msgstr ""
|
2372 |
|
2398 |
msgid "You have made changes to your settings, and not saved."
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: src/addons/onedrive.php:1111
|
2402 |
msgid "N.B. %s is not case-sensitive."
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: src/addons/onedrive.php:1101
|
2406 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2410 |
+
#: src/addons/onedrive.php:1074
|
2411 |
msgid "For longer help, including screenshots, follow this link."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: src/addons/onedrive.php:1067
|
2415 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: src/addons/onedrive.php:1059
|
2419 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: src/addons/azure.php:592
|
2423 |
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)."
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2427 |
msgid "%s authorisation failed:"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2431 |
+
#: src/addons/onedrive.php:1104
|
2432 |
msgid "OneDrive"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: src/addons/onedrive.php:691
|
2436 |
msgid "Please re-authorize the connection to your %s account."
|
2437 |
msgstr ""
|
2438 |
|
2440 |
msgid "configure it here"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2444 |
msgid "To remove the block, please go here."
|
2445 |
msgstr ""
|
2446 |
|
2585 |
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)"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: src/methods/s3.php:910
|
2589 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2593 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2597 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2601 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2602 |
#: src/udaddons/updraftplus-addons.php:887
|
2603 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2607 |
#: src/udaddons/updraftplus-addons.php:887
|
2608 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2612 |
#: src/udaddons/updraftplus-addons.php:887
|
2613 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2617 |
msgid "Premium WooCommerce plugins"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2621 |
msgid "Free two-factor security plugin"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2625 |
+
msgid "More quality plugins"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2629 |
msgid "Go to the shop."
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2633 |
msgid "Compare with the free version"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2637 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2638 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2639 |
msgid "UpdraftPlus Premium"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
|
|
|
|
|
|
|
|
2643 |
msgid "Free Newsletter"
|
2644 |
msgstr ""
|
2645 |
|
|
|
|
|
|
|
|
|
2646 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2647 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
|
2648 |
msgid "Dismiss (for %s months)"
|
2649 |
msgstr ""
|
2650 |
|
2685 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: src/methods/s3.php:177, src/methods/s3.php:178, src/methods/s3.php:179,
|
2689 |
+
#: src/methods/s3.php:187, src/methods/s3.php:188, src/methods/s3.php:189
|
2690 |
msgid "%s Error: Failed to initialise"
|
2691 |
msgstr ""
|
2692 |
|
2731 |
msgid "Manual"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: src/restorer.php:2333
|
2735 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2736 |
msgid "An error (%s) occurred:"
|
2737 |
msgstr ""
|
2872 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: src/class-updraftplus.php:4249
|
2876 |
msgid "Backup label:"
|
2877 |
msgstr ""
|
2878 |
|
2896 |
msgid "Your label for this backup (optional)"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1162
|
2900 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2901 |
msgstr ""
|
2902 |
|
2916 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: src/class-updraftplus.php:4268
|
2920 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: src/class-updraftplus.php:4268
|
2924 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2925 |
msgstr ""
|
2926 |
|
2957 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: src/class-updraftplus.php:4241
|
2961 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: src/class-updraftplus.php:4241
|
2965 |
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."
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: src/class-updraftplus.php:4241
|
2969 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: src/class-updraftplus.php:4241
|
2973 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2974 |
msgstr ""
|
2975 |
|
3014 |
msgid "Start backup"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
3018 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3019 |
msgstr ""
|
3020 |
|
3050 |
msgid "Memory limit"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: src/class-updraftplus.php:4682, src/restorer.php:1608
|
3054 |
msgid "restoration"
|
3055 |
msgstr ""
|
3056 |
|
3113 |
msgid "search term"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: src/restorer.php:2361
|
3117 |
msgid "Too many database errors have occurred - aborting"
|
3118 |
msgstr ""
|
3119 |
|
3149 |
msgid "Free disk space in account:"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: src/admin.php:4519, src/templates/wp-admin/settings/tab-status.php:27
|
3153 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3154 |
msgstr ""
|
3155 |
|
3244 |
msgid "user"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: src/class-updraftplus.php:1832
|
3248 |
msgid "External database (%s)"
|
3249 |
msgstr ""
|
3250 |
|
3256 |
msgid "failed to access parent folder"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
+
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3260 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:421
|
3261 |
msgid "However, subsequent access attempts failed:"
|
3262 |
msgstr ""
|
3263 |
|
3293 |
msgid "use UpdraftPlus Premium"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: src/class-updraftplus.php:4095
|
3297 |
msgid "Decryption failed. The database file is encrypted."
|
3298 |
msgstr ""
|
3299 |
|
3301 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: src/restorer.php:1876, src/restorer.php:2302, src/restorer.php:2343,
|
3305 |
+
#: src/restorer.php:2356
|
3306 |
msgid "An error occurred on the first %s command - aborting run"
|
3307 |
msgstr ""
|
3308 |
|
3322 |
msgid "In %s, path names are case sensitive."
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: src/addons/azure.php:632, src/addons/google-enhanced.php:76,
|
3326 |
+
#: src/addons/onedrive.php:1111
|
3327 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1033,
|
3331 |
+
#: src/addons/onedrive.php:1111
|
3332 |
msgid "e.g. %s"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1111
|
3336 |
msgid "Enter the path of the %s folder you wish to use here."
|
3337 |
msgstr ""
|
3338 |
|
3376 |
msgid "Failed to upload %s"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
3380 |
msgid "Success:"
|
3381 |
msgstr ""
|
3382 |
|
3384 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:610
|
3388 |
msgid "(You appear to be already authenticated)."
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: src/methods/dropbox.php:606
|
3392 |
msgid "Dropbox"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:606
|
3396 |
msgid "Authenticate with %s"
|
3397 |
msgstr ""
|
3398 |
|
3423 |
msgid "%s error - failed to access the container"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3427 |
+
#: src/methods/dropbox.php:663, src/methods/googledrive.php:1248
|
3428 |
msgid "Account holder's name: %s."
|
3429 |
msgstr ""
|
3430 |
|
3440 |
msgid "<strong>This is NOT a folder name</strong>."
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3444 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3445 |
msgid "Folder"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3449 |
#: src/methods/googledrive.php:1122
|
3450 |
msgid "%s download: failed: file not found"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:441
|
3454 |
msgid "Name: %s."
|
3455 |
msgstr ""
|
3456 |
|
3489 |
msgid "Failed to unpack the archive"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: src/class-updraftplus.php:1356
|
3493 |
msgid "Error - failed to download the file"
|
3494 |
msgstr ""
|
3495 |
|
3514 |
msgstr " الرقم السري/المفتاح"
|
3515 |
|
3516 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3517 |
+
#: src/admin.php:4808
|
3518 |
msgid "Key"
|
3519 |
msgstr "مفتاح"
|
3520 |
|
3539 |
msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
|
3540 |
|
3541 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3542 |
+
#: src/includes/class-backup-history.php:349
|
3543 |
msgid "Backup created by: %s."
|
3544 |
msgstr "ولدت النسخة الإحتياطية من طرف: %s."
|
3545 |
|
3571 |
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."
|
3572 |
msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
|
3573 |
|
3574 |
+
#: src/admin.php:694, src/includes/class-backup-history.php:356
|
3575 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3576 |
msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
|
3577 |
|
3580 |
msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
|
3581 |
|
3582 |
#: src/admin.php:693, src/admin.php:694,
|
3583 |
+
#: src/includes/class-backup-history.php:356
|
3584 |
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))."
|
3585 |
msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
3586 |
|
3587 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3588 |
+
#: src/restorer.php:1577
|
3589 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3590 |
msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
|
3591 |
|
3592 |
+
#: src/restorer.php:869, src/restorer.php:917
|
3593 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3594 |
msgstr "مجلد (wp-content) غير موجود البثة بهذا الملف المضغوط."
|
3595 |
|
3596 |
+
#: src/restorer.php:724
|
3597 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3598 |
msgstr "هذه النسخة من UpdraftPlus لا تستطيع التعامل مع نوع النسخ الإحتياطية هذا."
|
3599 |
|
3605 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3606 |
msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
|
3607 |
|
3608 |
+
#: src/addons/backblaze.php:557, src/methods/cloudfiles.php:234,
|
3609 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3610 |
msgid "No settings were found"
|
3611 |
msgstr "لم يتم العثور على الإعدادات"
|
3612 |
|
3613 |
+
#: src/includes/class-backup-history.php:524
|
3614 |
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."
|
3615 |
msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
|
3616 |
|
3618 |
msgid "Rescanning remote and local storage for backup sets..."
|
3619 |
msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
|
3620 |
|
3621 |
+
#: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049,
|
3622 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3623 |
msgid "(Read more)"
|
3624 |
msgstr "(قراءة المزيد)"
|
3636 |
msgid "Remove"
|
3637 |
msgstr "حذف"
|
3638 |
|
3639 |
+
#: src/methods/s3.php:861
|
3640 |
msgid "Other %s FAQs."
|
3641 |
msgstr "الأسئلة الشائعة %s الأخرى."
|
3642 |
|
3648 |
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."
|
3649 |
msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
|
3650 |
|
3651 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330,
|
3652 |
+
#: src/restorer.php:1608
|
3653 |
msgid "Your hosting company must enable these functions before %s can work."
|
3654 |
msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
|
3655 |
|
3656 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330
|
3657 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3658 |
msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
|
3659 |
|
3669 |
msgid "regular non-encrypted FTP"
|
3670 |
msgstr "خادم FTP غير مشفر اعتيادي"
|
3671 |
|
3672 |
+
#: src/restorer.php:1784
|
3673 |
msgid "Backup created by:"
|
3674 |
msgstr "نسخة احتياطية أنشأها:"
|
3675 |
|
3723 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3724 |
msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
|
3725 |
|
3726 |
+
#: src/class-updraftplus.php:4732
|
3727 |
msgid "The attempt to undo the double-compression succeeded."
|
3728 |
msgstr "نجاح محاولة التراجع من الضغط المزدوج"
|
3729 |
|
3730 |
+
#: src/class-updraftplus.php:4709, src/class-updraftplus.php:4730
|
3731 |
msgid "The attempt to undo the double-compression failed."
|
3732 |
msgstr "فشل محاولة التراجع من الضغط المزدوج"
|
3733 |
|
3734 |
+
#: src/class-updraftplus.php:4702
|
3735 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3736 |
msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
|
3737 |
|
3738 |
+
#: src/includes/class-wpadmin-commands.php:313
|
3739 |
msgid "Constants"
|
3740 |
msgstr "ثوابت"
|
3741 |
|
3784 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3785 |
msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %s ثانية فقط، ولا تسمح لوصول لهذا الحد. إن لم تتمكن من استرداد حجم كبير من البيانات بسبب هذا الحد، يمكنك الإتصال بشرك الإستضافة الخاصة بك (أو محاولة الإسترداد قطعة-قطعة)"
|
3786 |
|
3787 |
+
#: src/restorer.php:717
|
3788 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3789 |
msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
|
3790 |
|
3805 |
msgid "Messages:"
|
3806 |
msgstr "رسائل:"
|
3807 |
|
3808 |
+
#: src/restorer.php:2196
|
3809 |
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"
|
3810 |
msgstr "تم العثور على خط SQL أكبر من الحد الأقصى لحجم الحزمة ولا يمكن تقسيمها، هذا الخط لن نتمكن من معالجته، وسنقوم بإبعاده: %s"
|
3811 |
|
3812 |
+
#: src/restorer.php:490
|
3813 |
msgid "The directory does not exist"
|
3814 |
msgstr "المجلد غير متوفر"
|
3815 |
|
3978 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3979 |
msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
|
3980 |
|
3981 |
+
#: src/admin.php:679, src/admin.php:4232
|
3982 |
msgid "Error data:"
|
3983 |
msgstr "خطأ بالبيانات:"
|
3984 |
|
3990 |
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."
|
3991 |
msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
|
3992 |
|
3993 |
+
#: src/restorer.php:1851
|
3994 |
msgid "Split line to avoid exceeding maximum packet size"
|
3995 |
msgstr "تقسيم الخط لتفاذي الحجم الأقصى للحزم"
|
3996 |
|
3997 |
+
#: src/restorer.php:1731
|
3998 |
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)"
|
3999 |
msgstr "المستخدم لا يمتلك صلاحيات لتحريك الجداول. سنحاول الإستعادة عن طريق إفراغ الجداول، يمكن لهذه العملية النجاح طالما أننا نستعيد من نسخة ووردبريس مع نفس بنية قاعدة البيانات (%s)"
|
4000 |
|
4026 |
msgid "Email reports"
|
4027 |
msgstr "تقارير البريد الإلكتروني"
|
4028 |
|
4029 |
+
#: src/class-updraftplus.php:1840, src/class-updraftplus.php:1845
|
4030 |
msgid "%s checksum: %s"
|
4031 |
msgstr "%s الاختباري:%s"
|
4032 |
|
4033 |
+
#: src/class-updraftplus.php:1813, src/class-updraftplus.php:1815
|
4034 |
msgid "files: %s"
|
4035 |
msgstr "ملفات:%s"
|
4036 |
|
4083 |
msgid "%d errors, %d warnings"
|
4084 |
msgstr "%d الأخطاء، %d تحذيرات"
|
4085 |
|
4086 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:748,
|
4087 |
+
#: src/methods/dropbox.php:770
|
4088 |
msgid "%s authentication"
|
4089 |
msgstr "%s مصادقة"
|
4090 |
|
4091 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:529,
|
4092 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:748,
|
4093 |
+
#: src/methods/dropbox.php:770, src/methods/dropbox.php:785,
|
4094 |
+
#: src/methods/dropbox.php:798, src/methods/dropbox.php:941
|
4095 |
msgid "%s error: %s"
|
4096 |
msgstr "%s خطأ: %s"
|
4097 |
|
4098 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:575
|
4099 |
msgid "%s logo"
|
4100 |
msgstr "%s الشعار"
|
4101 |
|
4103 |
msgid "%s did not return the expected response - check your log file for more details"
|
4104 |
msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
|
4105 |
|
4106 |
+
#: src/methods/s3.php:307
|
4107 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4108 |
msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
|
4109 |
|
4124 |
msgid "For more reporting features, use the Reporting add-on."
|
4125 |
msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
|
4126 |
|
4127 |
+
#: src/class-updraftplus.php:4176
|
4128 |
msgid "(version: %s)"
|
4129 |
msgstr "(الإصدار: %s)"
|
4130 |
|
4265 |
msgid "Reporting"
|
4266 |
msgstr "التقارير"
|
4267 |
|
4268 |
+
#: src/admin.php:4805
|
4269 |
msgid "Options (raw)"
|
4270 |
msgstr "خيارات (الخام)"
|
4271 |
|
4273 |
msgid "Send a report only when there are warnings/errors"
|
4274 |
msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
|
4275 |
|
4276 |
+
#: src/restorer.php:1795
|
4277 |
msgid "Content URL:"
|
4278 |
msgstr "رابط المحتوى:"
|
4279 |
|
4417 |
msgid "Your web-server does not have the %s module installed."
|
4418 |
msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
|
4419 |
|
4420 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1237
|
4421 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4422 |
msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
|
4423 |
|
4437 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4438 |
msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
|
4439 |
|
4440 |
+
#: src/restorer.php:1789
|
4441 |
msgid "Site home:"
|
4442 |
msgstr "الصفحة الرئيسية للموقع:"
|
4443 |
|
4453 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4454 |
msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
|
4455 |
|
4456 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:144,
|
4457 |
#: src/methods/stream-base.php:149
|
4458 |
msgid "Upload failed"
|
4459 |
msgstr "فشل التحميل"
|
4597 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4598 |
msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
|
4599 |
|
4600 |
+
#: src/restorer.php:702
|
4601 |
msgid "file"
|
4602 |
msgstr "ملف"
|
4603 |
|
4604 |
+
#: src/restorer.php:695
|
4605 |
msgid "folder"
|
4606 |
msgstr "مجلد"
|
4607 |
|
4608 |
+
#: src/restorer.php:695, src/restorer.php:702
|
4609 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4610 |
msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
|
4611 |
|
4612 |
+
#: src/class-updraftplus.php:2933
|
4613 |
msgid "The backup has not finished; a resumption is scheduled"
|
4614 |
msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
|
4615 |
|
4616 |
+
#: src/class-updraftplus.php:2117
|
4617 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4618 |
msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
|
4619 |
|
4620 |
+
#: src/addons/onedrive.php:966,
|
4621 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4622 |
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)."
|
4623 |
msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
|
4702 |
msgid "Support"
|
4703 |
msgstr "الدعم"
|
4704 |
|
4705 |
+
#: src/class-updraftplus.php:4481
|
4706 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4707 |
msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
|
4708 |
|
4709 |
+
#: src/class-updraftplus.php:4473
|
4710 |
msgid "This database backup is missing core WordPress tables: %s"
|
4711 |
msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
|
4712 |
|
4713 |
+
#: src/class-updraftplus.php:4234
|
4714 |
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."
|
4715 |
msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
|
4716 |
|
4717 |
+
#: src/class-updraftplus.php:4233, src/class-updraftplus.php:4240
|
4718 |
msgid "%s version: %s"
|
4719 |
msgstr "%s النسخة: %s"
|
4720 |
|
4721 |
+
#: src/class-updraftplus.php:4112
|
4722 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4723 |
msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
|
4724 |
|
4803 |
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?"
|
4804 |
msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
|
4805 |
|
4806 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4807 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4808 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, لكن مع بعض الأخطاء. سوف تحتاج الى الألغاء وتصحيح اى مشاكل قبل اعادة المحاولة."
|
4809 |
|
4810 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4811 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4812 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, ولكن مع بعض التحذيرات. اذا كان كل شئ على مايرام, اضغط على استعادة مرة اخرى للأستمرار. غير ذلك, قم بالألغاء وتصحيح اى مشاكل اولا."
|
4813 |
|
4814 |
+
#: src/includes/class-wpadmin-commands.php:221
|
4815 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4816 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح. الأن اضغط استعادة مرة اخرى للأستمرار."
|
4817 |
|
4851 |
msgid "WordPress root directory server path: %s"
|
4852 |
msgstr "مسار جذر الوردبريس فى الخادم: %s"
|
4853 |
|
4854 |
+
#: src/methods/dreamobjects.php:88, src/methods/s3generic.php:104
|
4855 |
msgid "%s end-point"
|
4856 |
msgstr "نقطة النهاية %s "
|
4857 |
|
4858 |
+
#: src/methods/s3.php:838
|
4859 |
msgid "... and many more!"
|
4860 |
msgstr "... وغيرها الكثير!"
|
4861 |
|
4862 |
+
#: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
|
4863 |
+
#: src/methods/s3generic.php:83
|
4864 |
msgid "S3 (Compatible)"
|
4865 |
msgstr "S3 (متوافق)"
|
4866 |
|
4868 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4869 |
msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
|
4870 |
|
4871 |
+
#: src/admin.php:4083
|
4872 |
msgid "Looking for %s archive: file name: %s"
|
4873 |
msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
|
4874 |
|
4875 |
+
#: src/admin.php:4044
|
4876 |
msgid "Final checks"
|
4877 |
msgstr "الفحوصات النهائية"
|
4878 |
|
4900 |
msgid "Processing files - please wait..."
|
4901 |
msgstr "تجهيز الملفات - يرجى الأنتظار..."
|
4902 |
|
4903 |
+
#: src/admin.php:4234,
|
4904 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4905 |
msgid "Please consult this FAQ for help on what to do about it."
|
4906 |
msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
|
4909 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4910 |
msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
|
4911 |
|
4912 |
+
#: src/class-updraftplus.php:4120
|
4913 |
msgid "Failed to open database file."
|
4914 |
msgstr "فشل فى فتح ملف قاعدة البيانات."
|
4915 |
|
4916 |
+
#: src/admin.php:4770
|
4917 |
msgid "Known backups (raw)"
|
4918 |
msgstr "النسخ الأحتياطى المعروفة (الخام)"
|
4919 |
|
4920 |
+
#: src/restorer.php:1009
|
4921 |
msgid "Files found:"
|
4922 |
msgstr "العثور على ملفات:"
|
4923 |
|
4924 |
+
#: src/restorer.php:1977
|
4925 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4926 |
msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
|
4927 |
|
4928 |
+
#: src/admin.php:4103
|
4929 |
msgid "file is size:"
|
4930 |
msgstr "حجم الملف:"
|
4931 |
|
4932 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:457,
|
4933 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4934 |
+
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:4354,
|
4935 |
+
#: src/class-updraftplus.php:4354, src/updraftplus.php:156
|
4936 |
msgid "Go here for more information."
|
4937 |
msgstr "اذهب هنا لمزيد من المعلومات."
|
4938 |
|
4940 |
msgid "Some files are still downloading or being processed - please wait."
|
4941 |
msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
|
4942 |
|
4943 |
+
#: src/class-updraftplus.php:4203, src/class-updraftplus.php:4224
|
4944 |
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."
|
4945 |
msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
|
4946 |
|
4984 |
msgid "Error - no such file exists at %s"
|
4985 |
msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
|
4986 |
|
4987 |
+
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4988 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4989 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4990 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
5013 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
5014 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
5015 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5016 |
+
#: src/class-updraftplus.php:4093, src/class-updraftplus.php:4095,
|
5017 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4264,
|
5018 |
+
#: src/class-updraftplus.php:4333, src/methods/googledrive.php:382,
|
5019 |
+
#: src/methods/s3.php:336
|
5020 |
msgid "Error: %s"
|
5021 |
msgstr "خطأ: %s"
|
5022 |
|
5056 |
msgid "Warnings encountered:"
|
5057 |
msgstr "مصادفة تحذيرات:"
|
5058 |
|
5059 |
+
#: src/class-updraftplus.php:2921
|
5060 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5061 |
msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
|
5062 |
|
5096 |
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."
|
5097 |
msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
|
5098 |
|
5099 |
+
#: src/methods/s3.php:847
|
5100 |
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."
|
5101 |
msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
|
5102 |
|
5103 |
+
#: src/methods/s3.php:1150
|
5104 |
msgid "Please check your access credentials."
|
5105 |
msgstr "يرجى التحقق من وصول بيانات الأعتماد."
|
5106 |
|
5107 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1128
|
5108 |
msgid "The error reported by %s was:"
|
5109 |
msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
|
5110 |
|
5111 |
+
#: src/restorer.php:1518
|
5112 |
msgid "Please supply the requested information, and then continue."
|
5113 |
msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
|
5114 |
|
5115 |
+
#: src/class-updraftplus.php:4275, src/restorer.php:1825
|
5116 |
msgid "Site information:"
|
5117 |
msgstr "معلومات عن الموقع:"
|
5118 |
|
5119 |
+
#: src/restorer.php:1692
|
5120 |
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."
|
5121 |
msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
|
5122 |
|
5123 |
+
#: src/admin.php:2445, src/class-updraftplus.php:4268, src/restorer.php:2196
|
5124 |
msgid "Warning:"
|
5125 |
msgstr "تحذير:"
|
5126 |
|
5127 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4260,
|
5128 |
#: src/restorer.php:184
|
5129 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5130 |
msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
|
5131 |
|
5132 |
+
#: src/admin.php:4071
|
5133 |
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."
|
5134 |
msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
|
5135 |
|
5205 |
msgid "News"
|
5206 |
msgstr "اخبار"
|
5207 |
|
5208 |
+
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:490
|
5209 |
msgid "Backup set not found"
|
5210 |
msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
|
5211 |
|
5370 |
msgstr "مسار الدليل"
|
5371 |
|
5372 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5373 |
+
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5374 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5375 |
#: src/udaddons/options.php:135
|
5376 |
msgid "Password"
|
5377 |
msgstr "كلمة السر"
|
5378 |
|
5379 |
+
#: src/addons/sftp.php:429, src/addons/webdav.php:207
|
5380 |
msgid "Port"
|
5381 |
msgstr "المنفذ"
|
5382 |
|
5383 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5384 |
+
#: src/addons/webdav.php:199
|
5385 |
msgid "Host"
|
5386 |
msgstr "الاستضافة"
|
5387 |
|
5429 |
msgid "Over-write wp-config.php"
|
5430 |
msgstr "إعادة كتابة wp-config.php"
|
5431 |
|
5432 |
+
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:507
|
5433 |
msgid "WordPress Core"
|
5434 |
msgstr "لب الووردبريس"
|
5435 |
|
5437 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5438 |
msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
|
5439 |
|
5440 |
+
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5441 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3052,
|
5442 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5443 |
#: src/methods/stream-base.php:353
|
5444 |
msgid "Failed"
|
5445 |
msgstr "فشل"
|
5446 |
|
5447 |
+
#: src/addons/webdav.php:169
|
5448 |
msgid "WebDAV URL"
|
5449 |
msgstr "رابط WEBDAV"
|
5450 |
|
5495 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5496 |
msgstr "إذا كنت تريد تشفير (على سبيل المثال كنت تخزن بيانات الأعمال الحساسة)، فهناك اضافة متاحة لهذا الغرض."
|
5497 |
|
5498 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:816
|
5499 |
msgid "Your %s account name: %s"
|
5500 |
msgstr "اسم الحساب %s الخاص بك: %s"
|
5501 |
|
5502 |
+
#: src/methods/dropbox.php:806, src/methods/dropbox.php:828
|
5503 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5504 |
msgstr "على الرغم من أن جزء من المعلومات الذي عاد لم يكن كما هو متوقع - الأميال الخاص بك قد تختلف"
|
5505 |
|
5506 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
5507 |
msgid "you have authenticated your %s account"
|
5508 |
msgstr "تم المصادقة على %s حسابك"
|
5509 |
|
5510 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5511 |
msgid "there's an add-on for that."
|
5512 |
msgstr "هناك اضافة لذلك."
|
5513 |
|
5514 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5515 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5516 |
msgstr "اذا كنت تستخدم النسخ الأحتياطى لعدة مواقع فى نفس الدروب بوكس وتريد ان تقوم بتنظيمها مع المجلدات الفرعية, اذا"
|
5517 |
|
5518 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5519 |
msgid "Backups are saved in"
|
5520 |
msgstr "يتم حفظ النسخ الأحتياطية فى"
|
5521 |
|
5522 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5523 |
msgid "Need to use sub-folders?"
|
5524 |
msgstr "هل تحتاج الى استخدام المجلدات الفرعية؟"
|
5525 |
|
5532 |
msgid "You do not appear to be authenticated with Dropbox"
|
5533 |
msgstr "لا يبدو ان المصادقة مع Dropbox"
|
5534 |
|
5535 |
+
#: src/methods/s3.php:1145
|
5536 |
msgid "The communication with %s was not encrypted."
|
5537 |
msgstr "التواصل مع %s كان غير مشفر."
|
5538 |
|
5539 |
+
#: src/methods/s3.php:1143
|
5540 |
msgid "The communication with %s was encrypted."
|
5541 |
msgstr "التواصل مع %s كان مشفر."
|
5542 |
|
5543 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1140
|
5544 |
msgid "We accessed the bucket, and were able to create files within it."
|
5545 |
msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
|
5546 |
|
5547 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5548 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5549 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5550 |
msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
|
5551 |
|
5552 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5553 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5554 |
msgid "Failure"
|
5555 |
msgstr "فشل"
|
5556 |
|
5557 |
+
#: src/addons/backblaze.php:472, src/methods/s3.php:1126
|
5558 |
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)."
|
5559 |
msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
|
5560 |
|
5561 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5562 |
+
#: src/methods/s3.php:1120
|
5563 |
msgid "Region"
|
5564 |
msgstr "المنطقة"
|
5565 |
|
5566 |
+
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5567 |
+
#: src/methods/s3.php:1102
|
5568 |
msgid "Failure: No bucket details were given."
|
5569 |
msgstr "فشل: لم ترد تفاصيل الباكت."
|
5570 |
|
5571 |
+
#: src/methods/s3.php:1080
|
5572 |
msgid "API secret"
|
5573 |
msgstr "API السرية"
|
5574 |
|
5575 |
+
#: src/methods/s3.php:928
|
5576 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5577 |
msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
|
5578 |
|
5579 |
+
#: src/methods/s3.php:927
|
5580 |
msgid "%s location"
|
5581 |
msgstr "المكان %s"
|
5582 |
|
5583 |
+
#: src/methods/s3.php:923
|
5584 |
msgid "%s secret key"
|
5585 |
msgstr "المفتاح السرى %s"
|
5586 |
|
5587 |
+
#: src/methods/s3.php:919
|
5588 |
msgid "%s access key"
|
5589 |
msgstr "مفتاح الوصول %s"
|
5590 |
|
5591 |
+
#: src/methods/s3.php:859
|
5592 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5593 |
msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
|
5594 |
|
5595 |
+
#: src/methods/s3.php:857
|
5596 |
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."
|
5597 |
msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
|
5598 |
|
5599 |
+
#: src/methods/s3.php:477, src/methods/s3.php:589, src/methods/s3.php:661,
|
5600 |
+
#: src/methods/s3.php:764
|
5601 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5602 |
msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
|
5603 |
|
5604 |
+
#: src/methods/s3.php:747, src/methods/s3.php:757, src/methods/s3.php:793
|
5605 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5606 |
msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
|
5607 |
|
5608 |
+
#: src/methods/s3.php:455
|
5609 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5610 |
msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
|
5611 |
|
5612 |
+
#: src/methods/s3.php:451
|
5613 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5614 |
msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
|
5615 |
|
5616 |
+
#: src/methods/s3.php:435
|
5617 |
msgid "%s chunk %s: upload failed"
|
5618 |
msgstr "%s قطعة %s : فشل الرفع"
|
5619 |
|
5620 |
+
#: src/methods/s3.php:425
|
5621 |
msgid "%s error: file %s was shortened unexpectedly"
|
5622 |
msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
|
5623 |
|
5624 |
+
#: src/methods/s3.php:403
|
5625 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5626 |
msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
|
5627 |
|
5646 |
msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
|
5647 |
|
5648 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5649 |
+
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5650 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5651 |
msgid "Username"
|
5652 |
msgstr "اسم المستخدم"
|
5653 |
|
5654 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5655 |
+
#: src/methods/s3.php:1076
|
5656 |
msgid "API key"
|
5657 |
msgstr "مفتاح API"
|
5658 |
|
5659 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5660 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5661 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5662 |
+
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5663 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5664 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5665 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5666 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5667 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5668 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5669 |
+
#: src/methods/s3.php:1076, src/methods/s3.php:1080
|
5670 |
msgid "Failure: No %s was given."
|
5671 |
msgstr "فضل: لم تعطى أية %s."
|
5672 |
|
5673 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5674 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5675 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5676 |
msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
|
5677 |
|
5706 |
msgid "Test %s Settings"
|
5707 |
msgstr "اختبار %s الإعدادات"
|
5708 |
|
5709 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
5710 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5711 |
msgid "Error opening local file: Failed to download"
|
5712 |
msgstr "خطأ في فتح ملف محلي: فشل التحميل"
|
5718 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5719 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5720 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5721 |
+
#: src/methods/s3.php:371, src/methods/s3.php:383, src/methods/s3.php:384
|
5722 |
msgid "%s Error: Failed to upload"
|
5723 |
msgstr "%s خطأ: فشل في تحميل"
|
5724 |
|
5744 |
msgid "Authenticate with Google"
|
5745 |
msgstr "المصادقة مع جوجل"
|
5746 |
|
5747 |
+
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5748 |
#: src/methods/googledrive.php:1196
|
5749 |
msgid "Client Secret"
|
5750 |
msgstr "سر العميل"
|
5751 |
|
5752 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1193
|
5753 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5754 |
msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
|
5755 |
|
5756 |
+
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5757 |
#: src/methods/googledrive.php:1192
|
5758 |
msgid "Client ID"
|
5759 |
msgstr "معرف العميل"
|
5760 |
|
5761 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5762 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5763 |
msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
|
5764 |
|
5765 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5766 |
msgid "Select 'Web Application' as the application type."
|
5767 |
msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
|
5768 |
|
5769 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1167
|
5770 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5771 |
msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
|
5772 |
|
5773 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5774 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:546,
|
5775 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5776 |
#: src/methods/googledrive.php:558
|
5777 |
msgid "Account is not authorized."
|
5791 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5792 |
msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
|
5793 |
|
5794 |
+
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5795 |
#: src/methods/googledrive.php:441
|
5796 |
msgid "you have authenticated your %s account."
|
5797 |
msgstr "لديك حساب %s مصادق عليه."
|
5798 |
|
5799 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5800 |
+
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5801 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5802 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5803 |
+
#: src/methods/s3.php:1140, src/methods/stream-base.php:364
|
5804 |
msgid "Success"
|
5805 |
msgstr "نجاح"
|
5806 |
|
5807 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:839,
|
5808 |
+
#: src/methods/dropbox.php:848, src/methods/googledrive.php:415
|
5809 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5810 |
msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
|
5811 |
|
5837 |
msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
|
5838 |
|
5839 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5840 |
+
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:4101,
|
5841 |
+
#: src/restorer.php:2437, src/restorer.php:2542
|
5842 |
msgid "OK"
|
5843 |
msgstr "حسنا"
|
5844 |
|
5845 |
+
#: src/restorer.php:2431, src/restorer.php:2506
|
5846 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5847 |
msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
|
5848 |
|
5849 |
+
#: src/addons/migrator.php:1285, src/restorer.php:2333
|
5850 |
msgid "the database query being run was:"
|
5851 |
msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
5852 |
|
5853 |
+
#: src/restorer.php:2034
|
5854 |
msgid "will restore as:"
|
5855 |
msgstr "إستعادة على النحو التالي:"
|
5856 |
|
5857 |
+
#: src/class-updraftplus.php:4246, src/restorer.php:1807,
|
5858 |
+
#: src/restorer.php:1896, src/restorer.php:1922
|
5859 |
msgid "Old table prefix:"
|
5860 |
msgstr "بادئة الجدول القديمة:"
|
5861 |
|
5862 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5863 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4176
|
5864 |
msgid "Backup of:"
|
5865 |
msgstr "نسخة احتياطية لـ:"
|
5866 |
|
5867 |
+
#: src/restorer.php:1614
|
5868 |
msgid "Failed to open database file"
|
5869 |
msgstr "فشل في فتح ملف قاعدة البيانات"
|
5870 |
|
5871 |
+
#: src/restorer.php:1593
|
5872 |
msgid "Failed to find database file"
|
5873 |
msgstr "فشل في العثور على ملف قاعدة البيانات"
|
5874 |
|
5875 |
+
#: src/restorer.php:1570
|
5876 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5877 |
msgstr "تحذير: PHP safe_mode نشط بخادمكم. سنكون عرضة لحالة المهلات بكثرة. ان حدث هذا المشكل بالفعل، ستكون مضطر للإسترجاع الملف من phpMyAdmin أو بطريقة أخرى."
|
5878 |
|
5879 |
+
#: src/restorer.php:529
|
5880 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5881 |
msgstr "wp-config.php من النسخ الإحتياطية: إستعادة (بناءا على طلب السمتخدم)"
|
5882 |
|
5883 |
+
#: src/restorer.php:524
|
5884 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5885 |
msgstr "wp-config.php من النسخ الاحتياطي: سيتم إستعادته كمسمى wp-config-backup.php"
|
5886 |
|
5887 |
+
#: src/restorer.php:417
|
5888 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5889 |
msgstr "فشل في كتابة قاعدة البيانات مفككت التشفير لنظام الملفات"
|
5890 |
|
5891 |
+
#: src/restorer.php:401
|
5892 |
msgid "Failed to create a temporary directory"
|
5893 |
msgstr "فشل في إنشاء دليل مؤقت"
|
5894 |
|
5932 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5933 |
msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
|
5934 |
|
5935 |
+
#: src/admin.php:4109, src/admin.php:4110
|
5936 |
msgid "Could not find one of the files for restoration"
|
5937 |
msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
|
5938 |
|
5939 |
+
#: src/admin.php:4224
|
5940 |
msgid "Error message"
|
5941 |
msgstr "رسالة الخطأ"
|
5942 |
|
5943 |
+
#: src/admin.php:4106
|
5944 |
msgid "The backup records do not contain information about the proper size of this file."
|
5945 |
msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
|
5946 |
|
5947 |
+
#: src/admin.php:4098
|
5948 |
msgid "Archive is expected to be size:"
|
5949 |
msgstr "من المتوقع أن يكون حجم الأرشيف:"
|
5950 |
|
5985 |
msgstr ""
|
5986 |
|
5987 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5988 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5989 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5990 |
msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
|
5991 |
|
6273 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6274 |
msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
|
6275 |
|
6276 |
+
#: src/class-updraftplus.php:4206
|
6277 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6278 |
msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
|
6279 |
|
6326 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6327 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6328 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6329 |
+
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6330 |
+
#: src/admin.php:680, src/admin.php:4103, src/admin.php:4133,
|
6331 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6332 |
+
#: src/methods/updraftvault.php:522, src/restorer.php:1523
|
6333 |
msgid "Error:"
|
6334 |
msgstr "خطأ:"
|
6335 |
|
6403 |
|
6404 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6405 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6406 |
+
#: src/admin.php:3682, src/admin.php:4187,
|
6407 |
#: src/includes/class-wpadmin-commands.php:147,
|
6408 |
+
#: src/includes/class-wpadmin-commands.php:505,
|
6409 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6410 |
msgid "Database"
|
6411 |
msgstr "قاعدة بيانات"
|
6412 |
|
6413 |
+
#: src/admin.php:311, src/admin.php:4777
|
6414 |
msgid "Files"
|
6415 |
msgstr "ملفات"
|
6416 |
|
6462 |
msgid "UpdraftPlus.Com"
|
6463 |
msgstr ""
|
6464 |
|
6465 |
+
#: src/admin.php:4669
|
6466 |
msgid "Your settings have been wiped."
|
6467 |
msgstr "تم القضاء على الإعدادات الخاصة بك."
|
6468 |
|
6523 |
msgstr "فشل تحميل"
|
6524 |
|
6525 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6526 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
6527 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6528 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6529 |
+
#: src/methods/stream-base.php:220, src/restorer.php:2433,
|
6530 |
+
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6531 |
msgid "Error"
|
6532 |
msgstr "خطأ"
|
6533 |
|
6568 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6569 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6570 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6571 |
+
#: src/methods/s3.php:847, src/methods/s3.php:851,
|
6572 |
#: src/methods/updraftvault.php:301,
|
6573 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6574 |
#: src/udaddons/updraftplus-addons.php:253
|
6600 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6601 |
msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
|
6602 |
|
6603 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3966,
|
6604 |
+
#: src/methods/googledrive.php:1082, src/methods/s3.php:336
|
6605 |
msgid "File not found"
|
6606 |
msgstr "لم يتم العثور على ملف"
|
6607 |
|
6608 |
+
#: src/class-updraftplus.php:3873
|
6609 |
msgid "The decryption key used:"
|
6610 |
msgstr "مفتاح فك التشفير المستخدم:"
|
6611 |
|
6612 |
+
#: src/class-updraftplus.php:3873, src/class-updraftplus.php:4105,
|
6613 |
+
#: src/restorer.php:422
|
6614 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6615 |
msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
|
6616 |
|
6617 |
+
#: src/class-updraftplus.php:3854, src/class-updraftplus.php:4093,
|
6618 |
+
#: src/restorer.php:409
|
6619 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6620 |
msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
|
6621 |
|
6623 |
msgid "Could not open the backup file for writing"
|
6624 |
msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
|
6625 |
|
6626 |
+
#: src/class-updraftplus.php:3459
|
6627 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6628 |
msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
|
6629 |
|
6630 |
+
#: src/class-updraftplus.php:3420
|
6631 |
msgid "Could not read the directory"
|
6632 |
msgstr "لا يمكن قراءة الدليل"
|
6633 |
|
6639 |
msgid "WordPress backup is complete"
|
6640 |
msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
|
6641 |
|
6642 |
+
#: src/class-updraftplus.php:2930
|
6643 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6644 |
msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
|
6645 |
|
6646 |
+
#: src/class-updraftplus.php:2915
|
6647 |
msgid "The backup apparently succeeded and is now complete"
|
6648 |
msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
|
6649 |
|
6651 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6652 |
msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
|
6653 |
|
6654 |
+
#: src/class-updraftplus.php:2618
|
6655 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6656 |
msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
|
6657 |
|
6658 |
+
#: src/class-updraftplus.php:1897
|
6659 |
msgid "Others"
|
6660 |
msgstr "أخرى"
|
6661 |
|
6662 |
+
#: src/addons/multisite.php:465, src/class-updraftplus.php:1882
|
6663 |
msgid "Uploads"
|
6664 |
msgstr "الملفات المرفوعة"
|
6665 |
|
6666 |
+
#: src/class-updraftplus.php:1881
|
6667 |
msgid "Themes"
|
6668 |
msgstr "تصاميم"
|
6669 |
|
6670 |
+
#: src/class-updraftplus.php:1880
|
6671 |
msgid "Plugins"
|
6672 |
msgstr "الإضافات"
|
6673 |
|
@@ -11,6 +11,50 @@ msgstr ""
|
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
msgstr ""
|
@@ -19,11 +63,11 @@ msgstr ""
|
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr ""
|
29 |
|
@@ -91,25 +135,25 @@ msgstr ""
|
|
91 |
msgid "remote site"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] ""
|
102 |
msgstr[1] ""
|
103 |
|
104 |
-
#: src/class-updraftplus.php:
|
105 |
msgid "Your chosen replacement collation"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: src/class-updraftplus.php:
|
109 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: src/class-updraftplus.php:
|
113 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
114 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
115 |
msgstr[0] ""
|
@@ -123,27 +167,27 @@ msgstr ""
|
|
123 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: src/addons/azure.php:
|
127 |
msgid "%s Prefix"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: src/addons/azure.php:
|
131 |
msgid "%s Container"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: src/addons/azure.php:
|
135 |
msgid "%s Key"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/addons/azure.php:
|
139 |
msgid "%s Account Name"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: src/addons/googlecloud.php:
|
143 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: src/addons/googlecloud.php:
|
147 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
148 |
msgstr ""
|
149 |
|
@@ -173,19 +217,19 @@ msgid_plural "Your .htaccess has an old site references on line numbers %s. You
|
|
173 |
msgstr[0] ""
|
174 |
msgstr[1] ""
|
175 |
|
176 |
-
#: src/restorer.php:
|
177 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: src/class-updraftplus.php:
|
181 |
msgid "Your chosen character set to use instead:"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: src/class-updraftplus.php:
|
185 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: src/class-updraftplus.php:
|
189 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
190 |
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."
|
191 |
msgstr[0] ""
|
@@ -239,59 +283,59 @@ msgstr ""
|
|
239 |
msgid "Please enter a valid URL e.g http://example.com"
|
240 |
msgstr "Моля въведете валиден адрес - пример http://example.com"
|
241 |
|
242 |
-
#: src/addons/backblaze.php:
|
243 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: src/addons/backblaze.php:
|
247 |
msgid "some/path"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/addons/backblaze.php:
|
251 |
msgid "Bucket name"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/addons/backblaze.php:
|
255 |
msgid "Backup path"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "Application key"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "here"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "Get these settings from %s, or sign up %s."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Account Key"
|
272 |
msgstr "Ключ за Акаунта"
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Account ID"
|
276 |
msgstr "Акаунт ID"
|
277 |
|
278 |
-
#: src/class-updraftplus.php:
|
279 |
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."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/class-updraftplus.php:
|
283 |
msgid "the migrator add-on"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/class-updraftplus.php:
|
287 |
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."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/class-updraftplus.php:
|
291 |
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."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
msgstr ""
|
297 |
|
@@ -311,15 +355,15 @@ msgstr ""
|
|
311 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/admin.php:1368, src/admin.php:
|
315 |
-
#: src/class-updraftplus.php:
|
316 |
-
#: src/class-updraftplus.php:
|
317 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: src/admin.php:1359, src/admin.php:
|
321 |
-
#: src/class-updraftplus.php:
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "A PHP exception (%s) has occurred: %s"
|
324 |
msgstr ""
|
325 |
|
@@ -375,7 +419,7 @@ msgstr ""
|
|
375 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/admin.php:
|
379 |
msgid "Value"
|
380 |
msgstr ""
|
381 |
|
@@ -387,7 +431,7 @@ msgstr ""
|
|
387 |
msgid "Encrypted login failed; trying non-encrypted"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/addons/azure.php:
|
391 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
392 |
msgstr ""
|
393 |
|
@@ -399,11 +443,11 @@ msgstr ""
|
|
399 |
msgid "Cloud Files"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: src/admin.php:
|
403 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: src/admin.php:
|
407 |
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."
|
408 |
msgstr ""
|
409 |
|
@@ -412,11 +456,11 @@ msgstr ""
|
|
412 |
msgid "UpdraftVault"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: src/includes/class-wpadmin-commands.php:
|
416 |
msgid "archive"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: src/includes/class-wpadmin-commands.php:
|
420 |
msgid "Extra database"
|
421 |
msgstr ""
|
422 |
|
@@ -460,11 +504,11 @@ msgstr ""
|
|
460 |
msgid "Browse contents"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: src/restorer.php:
|
464 |
msgid "Skipped tables:"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: src/class-updraftplus.php:
|
468 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
469 |
msgstr ""
|
470 |
|
@@ -673,14 +717,6 @@ msgstr ""
|
|
673 |
msgid "Recommended: optimize your database with WP-Optimize."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
677 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
681 |
-
msgid "WP-Optimize"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
685 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
686 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -728,27 +764,7 @@ msgstr ""
|
|
728 |
msgid "Europe (Ireland)"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
732 |
-
msgid "WP-Optimize (free)"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
736 |
-
msgid "Explore our Cloud and Premium versions."
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
740 |
-
msgid "Download it for free from WordPress.org"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
744 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
748 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
752 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
753 |
msgid "UpdraftCentral"
|
754 |
msgstr ""
|
@@ -960,11 +976,11 @@ msgstr ""
|
|
960 |
msgid "Export / import settings"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: src/restorer.php:
|
964 |
msgid "Processing table (%s)"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: src/restorer.php:
|
968 |
msgid "Backup of: %s"
|
969 |
msgstr ""
|
970 |
|
@@ -972,11 +988,11 @@ msgstr ""
|
|
972 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: src/methods/dropbox.php:
|
976 |
msgid "%s de-authentication"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: src/methods/dropbox.php:
|
980 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
981 |
msgstr ""
|
982 |
|
@@ -1044,24 +1060,24 @@ msgstr ""
|
|
1044 |
msgid "US East (Ohio)"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: src/addons/onedrive.php:
|
1048 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/addons/onedrive.php:
|
1052 |
msgid "Account is not authorized (%s)."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/addons/onedrive.php:
|
1056 |
msgid "Your IP address:"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: src/addons/onedrive.php:
|
1060 |
#: src/udaddons/updraftplus-addons.php:887
|
1061 |
msgid "To remove any block, please go here."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: src/addons/onedrive.php:
|
1065 |
msgid "An error response was received; HTTP code:"
|
1066 |
msgstr ""
|
1067 |
|
@@ -1089,27 +1105,27 @@ msgstr ""
|
|
1089 |
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."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: src/addons/webdav.php:
|
1093 |
msgid "Path"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: src/addons/webdav.php:
|
1097 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: src/addons/webdav.php:
|
1101 |
msgid "Enter any path in the field below."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: src/addons/webdav.php:
|
1105 |
msgid "A host name cannot contain a slash."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "Protocol (SSL or not)"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1114 |
msgstr ""
|
1115 |
|
@@ -1117,11 +1133,11 @@ msgstr ""
|
|
1117 |
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."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: src/methods/s3.php:
|
1121 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: src/methods/s3.php:
|
1125 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1126 |
msgstr ""
|
1127 |
|
@@ -1227,7 +1243,7 @@ msgstr ""
|
|
1227 |
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."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: src/class-updraftplus.php:
|
1231 |
msgid "Size: %s MB"
|
1232 |
msgstr ""
|
1233 |
|
@@ -1239,7 +1255,7 @@ msgstr ""
|
|
1239 |
msgid "Now"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: src/class-updraftplus.php:
|
1243 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1345,11 +1361,11 @@ msgstr ""
|
|
1345 |
msgid "UpdraftCentral Connection"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1349 |
msgid "The backup was aborted by the user"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: src/admin.php:
|
1353 |
msgid "Your settings have been saved."
|
1354 |
msgstr ""
|
1355 |
|
@@ -1415,7 +1431,7 @@ msgstr ""
|
|
1415 |
msgid "Asia Pacific (Seoul)"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: src/restorer.php:
|
1419 |
msgid "Uploads URL:"
|
1420 |
msgstr ""
|
1421 |
|
@@ -1423,15 +1439,15 @@ msgstr ""
|
|
1423 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/class-updraftplus.php:
|
1427 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/class-updraftplus.php:
|
1431 |
msgid "Please read this link for important information on this process."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: src/class-updraftplus.php:
|
1435 |
msgid "It will be imported as a new site."
|
1436 |
msgstr ""
|
1437 |
|
@@ -1505,7 +1521,7 @@ msgstr ""
|
|
1505 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: src/admin.php:
|
1509 |
msgid "Skipping: this archive was already restored."
|
1510 |
msgstr ""
|
1511 |
|
@@ -1537,23 +1553,23 @@ msgstr ""
|
|
1537 |
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)."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: src/admin.php:
|
1541 |
msgid "Send this backup to remote storage"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: src/admin.php:
|
1545 |
msgid "Check out UpdraftPlus Vault."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: src/admin.php:
|
1549 |
msgid "Not got any remote storage?"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: src/admin.php:
|
1553 |
msgid "settings"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1558 |
msgstr ""
|
1559 |
|
@@ -1610,23 +1626,23 @@ msgstr ""
|
|
1610 |
msgid "Advanced Tools"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: src/addons/googlecloud.php:
|
1614 |
msgid "Bucket location"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: src/addons/googlecloud.php:
|
1618 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: src/addons/googlecloud.php:
|
1622 |
msgid "This setting applies only when a new bucket is being created."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: src/addons/googlecloud.php:
|
1626 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "Do not confuse %s with %s - they are separate things."
|
1631 |
msgstr ""
|
1632 |
|
@@ -1688,48 +1704,48 @@ msgstr ""
|
|
1688 |
msgid "Standard"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: src/addons/azure.php:
|
1692 |
msgid "container"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: src/addons/azure.php:
|
1696 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: src/addons/azure.php:
|
1700 |
msgid "optional"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: src/addons/azure.php:
|
1704 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "Enter the path of the %s you wish to use here."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
-
#: src/addons/azure.php:
|
1717 |
msgid "Azure"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: src/addons/azure.php:
|
1721 |
msgid "Create Azure credentials in your Azure developer console."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: src/addons/azure.php:
|
1725 |
msgid "Could not create the container"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: src/addons/azure.php:
|
1729 |
msgid "Could not access container"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: src/class-updraftplus.php:
|
1733 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1734 |
msgstr ""
|
1735 |
|
@@ -1757,47 +1773,47 @@ msgstr ""
|
|
1757 |
msgid "Not installed"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: src/addons/googlecloud.php:
|
1761 |
msgid "Storage class"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: src/addons/googlecloud.php:
|
1765 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: src/addons/googlecloud.php:
|
1769 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: src/addons/googlecloud.php:
|
1773 |
msgid "Bucket"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Otherwise, you can leave it blank."
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "Enter the ID of the %s project you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "Project ID"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "You must save and authenticate before you can test your settings."
|
1802 |
msgstr ""
|
1803 |
|
@@ -1806,22 +1822,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1806 |
msgstr ""
|
1807 |
|
1808 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1809 |
-
#: src/addons/googlecloud.php:
|
1810 |
msgid "You do not have access to this bucket."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1814 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1815 |
-
#: src/addons/googlecloud.php:
|
1816 |
-
#: src/addons/googlecloud.php:
|
1817 |
-
#: src/addons/googlecloud.php:
|
1818 |
-
#: src/addons/googlecloud.php:
|
1819 |
msgid "Google Cloud"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1823 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1824 |
-
#: src/addons/googlecloud.php:
|
1825 |
msgid "%s Service Exception."
|
1826 |
msgstr ""
|
1827 |
|
@@ -1829,7 +1845,7 @@ msgstr ""
|
|
1829 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: src/restorer.php:
|
1833 |
msgid "Deferring..."
|
1834 |
msgstr ""
|
1835 |
|
@@ -1898,11 +1914,11 @@ msgstr ""
|
|
1898 |
msgid "Add an additional retention rule..."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: src/restorer.php:
|
1902 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: src/restorer.php:
|
1906 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1907 |
msgstr ""
|
1908 |
|
@@ -1910,11 +1926,11 @@ msgstr ""
|
|
1910 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: src/class-updraftplus.php:
|
1914 |
msgid "You must upgrade MySQL to be able to use this database."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: src/class-updraftplus.php:
|
1918 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1919 |
msgstr ""
|
1920 |
|
@@ -2092,8 +2108,8 @@ msgstr ""
|
|
2092 |
msgid "Updraft Vault"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: src/addons/azure.php:
|
2096 |
-
#: src/addons/googlecloud.php:
|
2097 |
msgid "Delete failed:"
|
2098 |
msgstr ""
|
2099 |
|
@@ -2129,10 +2145,6 @@ msgstr ""
|
|
2129 |
msgid "Existing keys"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: src/addons/migrator.php:2423
|
2133 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2134 |
-
msgstr ""
|
2135 |
-
|
2136 |
#: src/addons/migrator.php:2405
|
2137 |
msgid "Your new key:"
|
2138 |
msgstr ""
|
@@ -2338,7 +2350,7 @@ msgstr ""
|
|
2338 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: src/restorer.php:
|
2342 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2343 |
msgstr ""
|
2344 |
|
@@ -2370,41 +2382,41 @@ msgstr ""
|
|
2370 |
msgid "You have made changes to your settings, and not saved."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: src/addons/onedrive.php:
|
2374 |
msgid "N.B. %s is not case-sensitive."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: src/addons/onedrive.php:
|
2378 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: src/addons/azure.php:
|
2382 |
-
#: src/addons/onedrive.php:
|
2383 |
msgid "For longer help, including screenshots, follow this link."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: src/addons/onedrive.php:
|
2387 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: src/addons/onedrive.php:
|
2391 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: src/addons/azure.php:
|
2395 |
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)."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: src/addons/onedrive.php:
|
2399 |
msgid "%s authorisation failed:"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
-
#: src/addons/onedrive.php:
|
2404 |
msgid "OneDrive"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: src/addons/onedrive.php:
|
2408 |
msgid "Please re-authorize the connection to your %s account."
|
2409 |
msgstr ""
|
2410 |
|
@@ -2412,7 +2424,7 @@ msgstr ""
|
|
2412 |
msgid "configure it here"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: src/addons/onedrive.php:
|
2416 |
msgid "To remove the block, please go here."
|
2417 |
msgstr ""
|
2418 |
|
@@ -2557,74 +2569,66 @@ msgstr ""
|
|
2557 |
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)"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: src/methods/s3.php:
|
2561 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2565 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2569 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: src/addons/onedrive.php:
|
2573 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2574 |
#: src/udaddons/updraftplus-addons.php:887
|
2575 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: src/addons/onedrive.php:
|
2579 |
#: src/udaddons/updraftplus-addons.php:887
|
2580 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: src/addons/onedrive.php:
|
2584 |
#: src/udaddons/updraftplus-addons.php:887
|
2585 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2589 |
msgid "Premium WooCommerce plugins"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2593 |
msgid "Free two-factor security plugin"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2597 |
-
msgid "More
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2601 |
msgid "Go to the shop."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2605 |
msgid "Compare with the free version"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2609 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2610 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2611 |
msgid "UpdraftPlus Premium"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2615 |
-
msgid "Follow this link to sign up."
|
2616 |
-
msgstr ""
|
2617 |
-
|
2618 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
2619 |
msgid "Free Newsletter"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
2623 |
-
msgid "Thank you for backing up with UpdraftPlus!"
|
2624 |
-
msgstr ""
|
2625 |
-
|
2626 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2627 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2628 |
msgid "Dismiss (for %s months)"
|
2629 |
msgstr ""
|
2630 |
|
@@ -2665,8 +2669,8 @@ msgstr ""
|
|
2665 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: src/methods/s3.php:
|
2669 |
-
#: src/methods/s3.php:
|
2670 |
msgid "%s Error: Failed to initialise"
|
2671 |
msgstr ""
|
2672 |
|
@@ -2711,7 +2715,7 @@ msgctxt "i.e. Non-automatic"
|
|
2711 |
msgid "Manual"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: src/restorer.php:
|
2715 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2716 |
msgid "An error (%s) occurred:"
|
2717 |
msgstr ""
|
@@ -2852,7 +2856,7 @@ msgstr ""
|
|
2852 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: src/class-updraftplus.php:
|
2856 |
msgid "Backup label:"
|
2857 |
msgstr ""
|
2858 |
|
@@ -2876,7 +2880,7 @@ msgstr ""
|
|
2876 |
msgid "Your label for this backup (optional)"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: src/addons/googlecloud.php:
|
2880 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2881 |
msgstr ""
|
2882 |
|
@@ -2896,11 +2900,11 @@ msgstr ""
|
|
2896 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: src/class-updraftplus.php:
|
2900 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2905 |
msgstr ""
|
2906 |
|
@@ -2937,19 +2941,19 @@ msgstr ""
|
|
2937 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: src/class-updraftplus.php:
|
2941 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
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."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2954 |
msgstr ""
|
2955 |
|
@@ -2994,7 +2998,7 @@ msgstr ""
|
|
2994 |
msgid "Start backup"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: src/class-updraftplus.php:
|
2998 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
2999 |
msgstr ""
|
3000 |
|
@@ -3030,7 +3034,7 @@ msgstr ""
|
|
3030 |
msgid "Memory limit"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: src/class-updraftplus.php:
|
3034 |
msgid "restoration"
|
3035 |
msgstr ""
|
3036 |
|
@@ -3093,7 +3097,7 @@ msgstr ""
|
|
3093 |
msgid "search term"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: src/restorer.php:
|
3097 |
msgid "Too many database errors have occurred - aborting"
|
3098 |
msgstr ""
|
3099 |
|
@@ -3129,7 +3133,7 @@ msgstr ""
|
|
3129 |
msgid "Free disk space in account:"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: src/admin.php:
|
3133 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3134 |
msgstr ""
|
3135 |
|
@@ -3224,7 +3228,7 @@ msgstr ""
|
|
3224 |
msgid "user"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: src/class-updraftplus.php:
|
3228 |
msgid "External database (%s)"
|
3229 |
msgstr ""
|
3230 |
|
@@ -3236,8 +3240,8 @@ msgstr ""
|
|
3236 |
msgid "failed to access parent folder"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: src/addons/googlecloud.php:
|
3240 |
-
#: src/addons/onedrive.php:
|
3241 |
msgid "However, subsequent access attempts failed:"
|
3242 |
msgstr ""
|
3243 |
|
@@ -3273,7 +3277,7 @@ msgstr ""
|
|
3273 |
msgid "use UpdraftPlus Premium"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: src/class-updraftplus.php:
|
3277 |
msgid "Decryption failed. The database file is encrypted."
|
3278 |
msgstr ""
|
3279 |
|
@@ -3281,8 +3285,8 @@ msgstr ""
|
|
3281 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: src/restorer.php:
|
3285 |
-
#: src/restorer.php:
|
3286 |
msgid "An error occurred on the first %s command - aborting run"
|
3287 |
msgstr ""
|
3288 |
|
@@ -3302,17 +3306,17 @@ msgstr ""
|
|
3302 |
msgid "In %s, path names are case sensitive."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: src/addons/azure.php:
|
3306 |
-
#: src/addons/onedrive.php:
|
3307 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:
|
3311 |
-
#: src/addons/onedrive.php:
|
3312 |
msgid "e.g. %s"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:
|
3316 |
msgid "Enter the path of the %s folder you wish to use here."
|
3317 |
msgstr ""
|
3318 |
|
@@ -3356,7 +3360,7 @@ msgstr ""
|
|
3356 |
msgid "Failed to upload %s"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: src/methods/dropbox.php:
|
3360 |
msgid "Success:"
|
3361 |
msgstr ""
|
3362 |
|
@@ -3364,15 +3368,15 @@ msgstr ""
|
|
3364 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: src/addons/onedrive.php:
|
3368 |
msgid "(You appear to be already authenticated)."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: src/methods/dropbox.php:
|
3372 |
msgid "Dropbox"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: src/addons/onedrive.php:
|
3376 |
msgid "Authenticate with %s"
|
3377 |
msgstr ""
|
3378 |
|
@@ -3403,8 +3407,8 @@ msgstr ""
|
|
3403 |
msgid "%s error - failed to access the container"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: src/addons/googlecloud.php:
|
3407 |
-
#: src/methods/dropbox.php:
|
3408 |
msgid "Account holder's name: %s."
|
3409 |
msgstr ""
|
3410 |
|
@@ -3420,17 +3424,17 @@ msgstr ""
|
|
3420 |
msgid "<strong>This is NOT a folder name</strong>."
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:
|
3424 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3425 |
msgid "Folder"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:
|
3429 |
#: src/methods/googledrive.php:1122
|
3430 |
msgid "%s download: failed: file not found"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: src/addons/googlecloud.php:
|
3434 |
msgid "Name: %s."
|
3435 |
msgstr ""
|
3436 |
|
@@ -3469,7 +3473,7 @@ msgstr ""
|
|
3469 |
msgid "Failed to unpack the archive"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: src/class-updraftplus.php:
|
3473 |
msgid "Error - failed to download the file"
|
3474 |
msgstr ""
|
3475 |
|
@@ -3494,7 +3498,7 @@ msgid "password/key"
|
|
3494 |
msgstr ""
|
3495 |
|
3496 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3497 |
-
#: src/admin.php:
|
3498 |
msgid "Key"
|
3499 |
msgstr ""
|
3500 |
|
@@ -3519,7 +3523,7 @@ msgid "Files and database WordPress backup (created by %s)"
|
|
3519 |
msgstr ""
|
3520 |
|
3521 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3522 |
-
#: src/includes/class-backup-history.php:
|
3523 |
msgid "Backup created by: %s."
|
3524 |
msgstr ""
|
3525 |
|
@@ -3551,7 +3555,7 @@ msgstr ""
|
|
3551 |
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."
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: src/admin.php:694, src/includes/class-backup-history.php:
|
3555 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3556 |
msgstr ""
|
3557 |
|
@@ -3560,20 +3564,20 @@ msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are
|
|
3560 |
msgstr ""
|
3561 |
|
3562 |
#: src/admin.php:693, src/admin.php:694,
|
3563 |
-
#: src/includes/class-backup-history.php:
|
3564 |
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))."
|
3565 |
msgstr ""
|
3566 |
|
3567 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3568 |
-
#: src/restorer.php:
|
3569 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: src/restorer.php:
|
3573 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: src/restorer.php:
|
3577 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3578 |
msgstr ""
|
3579 |
|
@@ -3585,12 +3589,12 @@ msgstr ""
|
|
3585 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: src/addons/backblaze.php:
|
3589 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3590 |
msgid "No settings were found"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: src/includes/class-backup-history.php:
|
3594 |
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."
|
3595 |
msgstr ""
|
3596 |
|
@@ -3598,7 +3602,7 @@ msgstr ""
|
|
3598 |
msgid "Rescanning remote and local storage for backup sets..."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: src/addons/googlecloud.php:
|
3602 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3603 |
msgid "(Read more)"
|
3604 |
msgstr ""
|
@@ -3616,7 +3620,7 @@ msgstr ""
|
|
3616 |
msgid "Remove"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: src/methods/s3.php:
|
3620 |
msgid "Other %s FAQs."
|
3621 |
msgstr ""
|
3622 |
|
@@ -3628,12 +3632,12 @@ msgstr ""
|
|
3628 |
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."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/class-updraftplus.php:
|
3632 |
-
#: src/restorer.php:
|
3633 |
msgid "Your hosting company must enable these functions before %s can work."
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: src/class-updraftplus.php:
|
3637 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3638 |
msgstr ""
|
3639 |
|
@@ -3649,7 +3653,7 @@ msgstr ""
|
|
3649 |
msgid "regular non-encrypted FTP"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: src/restorer.php:
|
3653 |
msgid "Backup created by:"
|
3654 |
msgstr ""
|
3655 |
|
@@ -3703,19 +3707,19 @@ msgstr ""
|
|
3703 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: src/class-updraftplus.php:
|
3707 |
msgid "The attempt to undo the double-compression succeeded."
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression failed."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: src/includes/class-wpadmin-commands.php:
|
3719 |
msgid "Constants"
|
3720 |
msgstr ""
|
3721 |
|
@@ -3764,7 +3768,7 @@ msgstr ""
|
|
3764 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: src/restorer.php:
|
3768 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3769 |
msgstr ""
|
3770 |
|
@@ -3785,11 +3789,11 @@ msgstr ""
|
|
3785 |
msgid "Messages:"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: src/restorer.php:
|
3789 |
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"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: src/restorer.php:
|
3793 |
msgid "The directory does not exist"
|
3794 |
msgstr ""
|
3795 |
|
@@ -3958,7 +3962,7 @@ msgstr ""
|
|
3958 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:679, src/admin.php:
|
3962 |
msgid "Error data:"
|
3963 |
msgstr ""
|
3964 |
|
@@ -3970,11 +3974,11 @@ msgstr ""
|
|
3970 |
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."
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: src/restorer.php:
|
3974 |
msgid "Split line to avoid exceeding maximum packet size"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: src/restorer.php:
|
3978 |
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)"
|
3979 |
msgstr ""
|
3980 |
|
@@ -4006,11 +4010,11 @@ msgstr ""
|
|
4006 |
msgid "Email reports"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: src/class-updraftplus.php:
|
4010 |
msgid "%s checksum: %s"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "files: %s"
|
4015 |
msgstr ""
|
4016 |
|
@@ -4063,19 +4067,19 @@ msgstr ""
|
|
4063 |
msgid "%d errors, %d warnings"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: src/addons/onedrive.php:
|
4067 |
-
#: src/methods/dropbox.php:
|
4068 |
msgid "%s authentication"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: src/addons/onedrive.php:
|
4072 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4073 |
-
#: src/methods/dropbox.php:
|
4074 |
-
#: src/methods/dropbox.php:
|
4075 |
msgid "%s error: %s"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: src/addons/googlecloud.php:
|
4079 |
msgid "%s logo"
|
4080 |
msgstr ""
|
4081 |
|
@@ -4083,7 +4087,7 @@ msgstr ""
|
|
4083 |
msgid "%s did not return the expected response - check your log file for more details"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: src/methods/s3.php:
|
4087 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4088 |
msgstr ""
|
4089 |
|
@@ -4104,7 +4108,7 @@ msgstr ""
|
|
4104 |
msgid "For more reporting features, use the Reporting add-on."
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: src/class-updraftplus.php:
|
4108 |
msgid "(version: %s)"
|
4109 |
msgstr ""
|
4110 |
|
@@ -4245,7 +4249,7 @@ msgstr ""
|
|
4245 |
msgid "Reporting"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: src/admin.php:
|
4249 |
msgid "Options (raw)"
|
4250 |
msgstr ""
|
4251 |
|
@@ -4253,7 +4257,7 @@ msgstr ""
|
|
4253 |
msgid "Send a report only when there are warnings/errors"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: src/restorer.php:
|
4257 |
msgid "Content URL:"
|
4258 |
msgstr ""
|
4259 |
|
@@ -4397,7 +4401,7 @@ msgstr ""
|
|
4397 |
msgid "Your web-server does not have the %s module installed."
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: src/addons/googlecloud.php:
|
4401 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4402 |
msgstr ""
|
4403 |
|
@@ -4417,7 +4421,7 @@ msgstr ""
|
|
4417 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: src/restorer.php:
|
4421 |
msgid "Site home:"
|
4422 |
msgstr ""
|
4423 |
|
@@ -4433,7 +4437,7 @@ msgstr ""
|
|
4433 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: src/addons/azure.php:
|
4437 |
#: src/methods/stream-base.php:149
|
4438 |
msgid "Upload failed"
|
4439 |
msgstr ""
|
@@ -4577,27 +4581,27 @@ msgstr ""
|
|
4577 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/restorer.php:
|
4581 |
msgid "file"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: src/restorer.php:
|
4585 |
msgid "folder"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: src/restorer.php:
|
4589 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: src/class-updraftplus.php:
|
4593 |
msgid "The backup has not finished; a resumption is scheduled"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: src/addons/onedrive.php:
|
4601 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4602 |
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)."
|
4603 |
msgstr ""
|
@@ -4682,23 +4686,23 @@ msgstr ""
|
|
4682 |
msgid "Support"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: src/class-updraftplus.php:
|
4686 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "This database backup is missing core WordPress tables: %s"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
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."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
msgid "%s version: %s"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4703 |
msgstr ""
|
4704 |
|
@@ -4783,15 +4787,15 @@ msgstr ""
|
|
4783 |
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?"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: src/includes/class-wpadmin-commands.php:
|
4787 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4796 |
msgstr ""
|
4797 |
|
@@ -4831,16 +4835,16 @@ msgstr ""
|
|
4831 |
msgid "WordPress root directory server path: %s"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: src/methods/dreamobjects.php:
|
4835 |
msgid "%s end-point"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: src/methods/s3.php:
|
4839 |
msgid "... and many more!"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: src/methods/s3generic.php:
|
4843 |
-
#: src/methods/s3generic.php:
|
4844 |
msgid "S3 (Compatible)"
|
4845 |
msgstr ""
|
4846 |
|
@@ -4848,11 +4852,11 @@ msgstr ""
|
|
4848 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: src/admin.php:
|
4852 |
msgid "Looking for %s archive: file name: %s"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Final checks"
|
4857 |
msgstr ""
|
4858 |
|
@@ -4880,7 +4884,7 @@ msgstr ""
|
|
4880 |
msgid "Processing files - please wait..."
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#: src/admin.php:
|
4884 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4885 |
msgid "Please consult this FAQ for help on what to do about it."
|
4886 |
msgstr ""
|
@@ -4889,30 +4893,30 @@ msgstr ""
|
|
4889 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: src/class-updraftplus.php:
|
4893 |
msgid "Failed to open database file."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: src/admin.php:
|
4897 |
msgid "Known backups (raw)"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: src/restorer.php:
|
4901 |
msgid "Files found:"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: src/restorer.php:
|
4905 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: src/admin.php:
|
4909 |
msgid "file is size:"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: src/addons/googlecloud.php:
|
4913 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4914 |
-
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:
|
4915 |
-
#: src/class-updraftplus.php:
|
4916 |
msgid "Go here for more information."
|
4917 |
msgstr ""
|
4918 |
|
@@ -4920,7 +4924,7 @@ msgstr ""
|
|
4920 |
msgid "Some files are still downloading or being processed - please wait."
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: src/class-updraftplus.php:
|
4924 |
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."
|
4925 |
msgstr ""
|
4926 |
|
@@ -4964,7 +4968,7 @@ msgstr ""
|
|
4964 |
msgid "Error - no such file exists at %s"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: src/addons/azure.php:
|
4968 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4969 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4970 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
@@ -4993,10 +4997,10 @@ msgstr ""
|
|
4993 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4994 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4995 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
4996 |
-
#: src/class-updraftplus.php:
|
4997 |
-
#: src/class-updraftplus.php:
|
4998 |
-
#: src/class-updraftplus.php:
|
4999 |
-
#: src/methods/s3.php:
|
5000 |
msgid "Error: %s"
|
5001 |
msgstr ""
|
5002 |
|
@@ -5036,7 +5040,7 @@ msgstr ""
|
|
5036 |
msgid "Warnings encountered:"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: src/class-updraftplus.php:
|
5040 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5041 |
msgstr ""
|
5042 |
|
@@ -5076,40 +5080,40 @@ msgstr ""
|
|
5076 |
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."
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: src/methods/s3.php:
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
msgid "Please check your access credentials."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5088 |
msgid "The error reported by %s was:"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: src/restorer.php:
|
5092 |
msgid "Please supply the requested information, and then continue."
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: src/class-updraftplus.php:
|
5096 |
msgid "Site information:"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: src/restorer.php:
|
5100 |
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."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: src/admin.php:2445, src/class-updraftplus.php:
|
5104 |
msgid "Warning:"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: src/class-updraftplus.php:
|
5108 |
#: src/restorer.php:184
|
5109 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5110 |
msgstr ""
|
5111 |
|
5112 |
-
#: src/admin.php:
|
5113 |
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."
|
5114 |
msgstr ""
|
5115 |
|
@@ -5185,7 +5189,7 @@ msgstr ""
|
|
5185 |
msgid "News"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:
|
5189 |
msgid "Backup set not found"
|
5190 |
msgstr ""
|
5191 |
|
@@ -5350,18 +5354,18 @@ msgid "Directory path"
|
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5353 |
-
#: src/addons/sftp.php:443, src/addons/webdav.php:
|
5354 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5355 |
#: src/udaddons/options.php:135
|
5356 |
msgid "Password"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: src/addons/sftp.php:429, src/addons/webdav.php:
|
5360 |
msgid "Port"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5364 |
-
#: src/addons/webdav.php:
|
5365 |
msgid "Host"
|
5366 |
msgstr ""
|
5367 |
|
@@ -5409,7 +5413,7 @@ msgstr ""
|
|
5409 |
msgid "Over-write wp-config.php"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:
|
5413 |
msgid "WordPress Core"
|
5414 |
msgstr ""
|
5415 |
|
@@ -5417,14 +5421,14 @@ msgstr ""
|
|
5417 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: src/addons/googlecloud.php:
|
5421 |
-
#: src/addons/googlecloud.php:
|
5422 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5423 |
#: src/methods/stream-base.php:353
|
5424 |
msgid "Failed"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#: src/addons/webdav.php:
|
5428 |
msgid "WebDAV URL"
|
5429 |
msgstr ""
|
5430 |
|
@@ -5475,31 +5479,31 @@ msgstr ""
|
|
5475 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: src/addons/onedrive.php:
|
5479 |
msgid "Your %s account name: %s"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/methods/dropbox.php:
|
5483 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "you have authenticated your %s account"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "there's an add-on for that."
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "Backups are saved in"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Need to use sub-folders?"
|
5504 |
msgstr ""
|
5505 |
|
@@ -5512,96 +5516,96 @@ msgstr ""
|
|
5512 |
msgid "You do not appear to be authenticated with Dropbox"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: src/methods/s3.php:
|
5516 |
msgid "The communication with %s was not encrypted."
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/addons/googlecloud.php:
|
5524 |
msgid "We accessed the bucket, and were able to create files within it."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:
|
5528 |
-
#: src/methods/s3.php:
|
5529 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5530 |
msgstr ""
|
5531 |
|
5532 |
-
#: src/addons/googlecloud.php:
|
5533 |
-
#: src/methods/s3.php:
|
5534 |
msgid "Failure"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: src/addons/backblaze.php:
|
5538 |
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)."
|
5539 |
msgstr ""
|
5540 |
|
5541 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5542 |
-
#: src/methods/s3.php:
|
5543 |
msgid "Region"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:
|
5547 |
-
#: src/methods/s3.php:
|
5548 |
msgid "Failure: No bucket details were given."
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "API secret"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "%s location"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s secret key"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s access key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
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."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
-
#: src/methods/s3.php:
|
5581 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: src/methods/s3.php:
|
5585 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s chunk %s: upload failed"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s error: file %s was shortened unexpectedly"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5606 |
msgstr ""
|
5607 |
|
@@ -5626,32 +5630,32 @@ msgid "Failure: No container details were given."
|
|
5626 |
msgstr ""
|
5627 |
|
5628 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5629 |
-
#: src/addons/webdav.php:
|
5630 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5631 |
msgid "Username"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5635 |
-
#: src/methods/s3.php:
|
5636 |
msgid "API key"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5640 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5641 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5642 |
-
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:
|
5643 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5644 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5645 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5646 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5647 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5648 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5649 |
-
#: src/methods/s3.php:
|
5650 |
msgid "Failure: No %s was given."
|
5651 |
msgstr ""
|
5652 |
|
5653 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5654 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5655 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5656 |
msgstr ""
|
5657 |
|
@@ -5686,7 +5690,7 @@ msgstr ""
|
|
5686 |
msgid "Test %s Settings"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: src/class-updraftplus.php:
|
5690 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5691 |
msgid "Error opening local file: Failed to download"
|
5692 |
msgstr ""
|
@@ -5698,7 +5702,7 @@ msgstr ""
|
|
5698 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5699 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5700 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5701 |
-
#: src/methods/s3.php:
|
5702 |
msgid "%s Error: Failed to upload"
|
5703 |
msgstr ""
|
5704 |
|
@@ -5724,34 +5728,34 @@ msgstr ""
|
|
5724 |
msgid "Authenticate with Google"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: src/addons/googlecloud.php:
|
5728 |
#: src/methods/googledrive.php:1196
|
5729 |
msgid "Client Secret"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
-
#: src/addons/googlecloud.php:
|
5733 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:
|
5737 |
#: src/methods/googledrive.php:1192
|
5738 |
msgid "Client ID"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: src/addons/googlecloud.php:
|
5742 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:
|
5746 |
msgid "Select 'Web Application' as the application type."
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:
|
5750 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5754 |
-
#: src/addons/googlecloud.php:
|
5755 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5756 |
#: src/methods/googledrive.php:558
|
5757 |
msgid "Account is not authorized."
|
@@ -5771,21 +5775,21 @@ msgstr ""
|
|
5771 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: src/addons/googlecloud.php:
|
5775 |
#: src/methods/googledrive.php:441
|
5776 |
msgid "you have authenticated your %s account."
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: src/addons/googlecloud.php:
|
5780 |
-
#: src/addons/onedrive.php:
|
5781 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5782 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5783 |
-
#: src/methods/s3.php:
|
5784 |
msgid "Success"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: src/addons/onedrive.php:
|
5788 |
-
#: src/methods/dropbox.php:
|
5789 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5790 |
msgstr ""
|
5791 |
|
@@ -5817,58 +5821,58 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
|
|
5817 |
msgstr ""
|
5818 |
|
5819 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5820 |
-
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:
|
5821 |
-
#: src/restorer.php:
|
5822 |
msgid "OK"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: src/restorer.php:
|
5826 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: src/addons/migrator.php:1285, src/restorer.php:
|
5830 |
msgid "the database query being run was:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: src/restorer.php:
|
5834 |
msgid "will restore as:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: src/class-updraftplus.php:
|
5838 |
-
#: src/restorer.php:
|
5839 |
msgid "Old table prefix:"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5843 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5844 |
msgid "Backup of:"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: src/restorer.php:
|
5848 |
msgid "Failed to open database file"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: src/restorer.php:
|
5852 |
msgid "Failed to find database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: src/restorer.php:
|
5856 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: src/restorer.php:
|
5860 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: src/restorer.php:
|
5864 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: src/restorer.php:
|
5868 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: src/restorer.php:
|
5872 |
msgid "Failed to create a temporary directory"
|
5873 |
msgstr ""
|
5874 |
|
@@ -5912,19 +5916,19 @@ msgstr ""
|
|
5912 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: src/admin.php:
|
5916 |
msgid "Could not find one of the files for restoration"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Error message"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "The backup records do not contain information about the proper size of this file."
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "Archive is expected to be size:"
|
5929 |
msgstr ""
|
5930 |
|
@@ -5965,7 +5969,7 @@ msgid "Your web server's PHP/Curl installation does not support https access. Co
|
|
5965 |
msgstr ""
|
5966 |
|
5967 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5968 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5969 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5970 |
msgstr ""
|
5971 |
|
@@ -6253,7 +6257,7 @@ msgstr ""
|
|
6253 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6254 |
msgstr ""
|
6255 |
|
6256 |
-
#: src/class-updraftplus.php:
|
6257 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6258 |
msgstr ""
|
6259 |
|
@@ -6306,10 +6310,10 @@ msgstr ""
|
|
6306 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6307 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6308 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6309 |
-
#: src/addons/sftp.php:837, src/addons/webdav.php:
|
6310 |
-
#: src/admin.php:680, src/admin.php:
|
6311 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6312 |
-
#: src/methods/updraftvault.php:522, src/restorer.php:
|
6313 |
msgid "Error:"
|
6314 |
msgstr ""
|
6315 |
|
@@ -6383,14 +6387,14 @@ msgstr ""
|
|
6383 |
|
6384 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6385 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6386 |
-
#: src/admin.php:3682, src/admin.php:
|
6387 |
#: src/includes/class-wpadmin-commands.php:147,
|
6388 |
-
#: src/includes/class-wpadmin-commands.php:
|
6389 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6390 |
msgid "Database"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: src/admin.php:311, src/admin.php:
|
6394 |
msgid "Files"
|
6395 |
msgstr ""
|
6396 |
|
@@ -6442,7 +6446,7 @@ msgstr ""
|
|
6442 |
msgid "UpdraftPlus.Com"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: src/admin.php:
|
6446 |
msgid "Your settings have been wiped."
|
6447 |
msgstr ""
|
6448 |
|
@@ -6503,11 +6507,11 @@ msgid "Download failed"
|
|
6503 |
msgstr ""
|
6504 |
|
6505 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6506 |
-
#: src/class-updraftplus.php:
|
6507 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6508 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6509 |
-
#: src/methods/stream-base.php:220, src/restorer.php:
|
6510 |
-
#: src/restorer.php:
|
6511 |
msgid "Error"
|
6512 |
msgstr ""
|
6513 |
|
@@ -6548,7 +6552,7 @@ msgstr ""
|
|
6548 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6549 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6550 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6551 |
-
#: src/methods/s3.php:
|
6552 |
#: src/methods/updraftvault.php:301,
|
6553 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6554 |
#: src/udaddons/updraftplus-addons.php:253
|
@@ -6580,22 +6584,22 @@ msgstr ""
|
|
6580 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
-
#: src/addons/azure.php:
|
6584 |
-
#: src/methods/googledrive.php:1082, src/methods/s3.php:
|
6585 |
msgid "File not found"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
-
#: src/class-updraftplus.php:
|
6589 |
msgid "The decryption key used:"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: src/class-updraftplus.php:
|
6593 |
-
#: src/restorer.php:
|
6594 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6595 |
msgstr ""
|
6596 |
|
6597 |
-
#: src/class-updraftplus.php:
|
6598 |
-
#: src/restorer.php:
|
6599 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6600 |
msgstr ""
|
6601 |
|
@@ -6603,11 +6607,11 @@ msgstr ""
|
|
6603 |
msgid "Could not open the backup file for writing"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: src/class-updraftplus.php:
|
6607 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: src/class-updraftplus.php:
|
6611 |
msgid "Could not read the directory"
|
6612 |
msgstr ""
|
6613 |
|
@@ -6619,11 +6623,11 @@ msgstr ""
|
|
6619 |
msgid "WordPress backup is complete"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
-
#: src/class-updraftplus.php:
|
6623 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "The backup apparently succeeded and is now complete"
|
6628 |
msgstr ""
|
6629 |
|
@@ -6631,23 +6635,23 @@ msgstr ""
|
|
6631 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: src/class-updraftplus.php:
|
6635 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "Others"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: src/addons/multisite.php:465, src/class-updraftplus.php:
|
6643 |
msgid "Uploads"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: src/class-updraftplus.php:
|
6647 |
msgid "Themes"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Plugins"
|
6652 |
msgstr ""
|
6653 |
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/restorer.php:188
|
43 |
+
msgid "Failed to read from the working directory."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/restorer.php:187
|
47 |
+
msgid "Failed to find a manifest file in the backup."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/restorer.php:186
|
51 |
+
msgid "Failed to read the manifest file from backup."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/includes/class-wpadmin-commands.php:207
|
55 |
+
msgid "Select your incremental restore point"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: src/addons/morefiles.php:73
|
59 |
msgid "(None configured)"
|
60 |
msgstr ""
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: src/admin.php:4602
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: src/admin.php:4598
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: src/addons/backblaze.php:475
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/restorer.php:2028
|
143 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
144 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
+
#: src/class-updraftplus.php:4411
|
149 |
msgid "Your chosen replacement collation"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: src/class-updraftplus.php:4388
|
153 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: src/class-updraftplus.php:4388
|
157 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
158 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
159 |
msgstr[0] ""
|
167 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: src/addons/azure.php:631
|
171 |
msgid "%s Prefix"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: src/addons/azure.php:626
|
175 |
msgid "%s Container"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/addons/azure.php:621
|
179 |
msgid "%s Key"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: src/addons/azure.php:617
|
183 |
msgid "%s Account Name"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: src/addons/googlecloud.php:692
|
187 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: src/addons/googlecloud.php:690
|
191 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
192 |
msgstr ""
|
193 |
|
217 |
msgstr[0] ""
|
218 |
msgstr[1] ""
|
219 |
|
220 |
+
#: src/restorer.php:1990
|
221 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: src/class-updraftplus.php:4364
|
225 |
msgid "Your chosen character set to use instead:"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4354
|
229 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4354
|
233 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
234 |
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."
|
235 |
msgstr[0] ""
|
283 |
msgid "Please enter a valid URL e.g http://example.com"
|
284 |
msgstr "Моля въведете валиден адрес - пример http://example.com"
|
285 |
|
286 |
+
#: src/addons/backblaze.php:633
|
287 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/addons/backblaze.php:632
|
291 |
msgid "some/path"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: src/addons/backblaze.php:632
|
295 |
msgid "Bucket name"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: src/addons/backblaze.php:631
|
299 |
msgid "Backup path"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: src/addons/backblaze.php:626
|
303 |
msgid "Application key"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
307 |
msgid "here"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: src/addons/backblaze.php:621
|
311 |
msgid "Get these settings from %s, or sign up %s."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: src/addons/backblaze.php:431
|
315 |
msgid "Account Key"
|
316 |
msgstr "Ключ за Акаунта"
|
317 |
|
318 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
319 |
msgid "Account ID"
|
320 |
msgstr "Акаунт ID"
|
321 |
|
322 |
+
#: src/class-updraftplus.php:4196
|
323 |
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."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
327 |
msgid "the migrator add-on"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: src/class-updraftplus.php:4194
|
331 |
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."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/class-updraftplus.php:4192
|
335 |
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."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/class-updraftplus.php:4187
|
339 |
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."
|
340 |
msgstr ""
|
341 |
|
355 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
359 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
360 |
+
#: src/class-updraftplus.php:2427
|
361 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
365 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
366 |
+
#: src/class-updraftplus.php:2420
|
367 |
msgid "A PHP exception (%s) has occurred: %s"
|
368 |
msgstr ""
|
369 |
|
419 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: src/admin.php:4808
|
423 |
msgid "Value"
|
424 |
msgstr ""
|
425 |
|
431 |
msgid "Encrypted login failed; trying non-encrypted"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: src/addons/azure.php:594
|
435 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
436 |
msgstr ""
|
437 |
|
443 |
msgid "Cloud Files"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: src/admin.php:4553
|
447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: src/admin.php:4512
|
451 |
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."
|
452 |
msgstr ""
|
453 |
|
456 |
msgid "UpdraftVault"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: src/includes/class-wpadmin-commands.php:513
|
460 |
msgid "archive"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: src/includes/class-wpadmin-commands.php:504
|
464 |
msgid "Extra database"
|
465 |
msgstr ""
|
466 |
|
504 |
msgid "Browse contents"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: src/restorer.php:1811
|
508 |
msgid "Skipped tables:"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: src/class-updraftplus.php:4476
|
512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
513 |
msgstr ""
|
514 |
|
717 |
msgid "Recommended: optimize your database with WP-Optimize."
|
718 |
msgstr ""
|
719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
721 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
722 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
764 |
msgid "Europe (Ireland)"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr ""
|
976 |
msgid "Export / import settings"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: src/restorer.php:2030
|
980 |
msgid "Processing table (%s)"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: src/restorer.php:1777
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr ""
|
986 |
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/methods/dropbox.php:785
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/methods/dropbox.php:631
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr ""
|
998 |
|
1060 |
msgid "US East (Ohio)"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/addons/onedrive.php:1051
|
1064 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/addons/onedrive.php:700
|
1068 |
msgid "Account is not authorized (%s)."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1072 |
msgid "Your IP address:"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1076 |
#: src/udaddons/updraftplus-addons.php:887
|
1077 |
msgid "To remove any block, please go here."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr ""
|
1083 |
|
1105 |
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."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: src/addons/webdav.php:216
|
1109 |
msgid "Path"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: src/addons/webdav.php:211
|
1113 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: src/addons/webdav.php:203
|
1117 |
msgid "Enter any path in the field below."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: src/addons/webdav.php:203
|
1121 |
msgid "A host name cannot contain a slash."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: src/addons/webdav.php:178
|
1125 |
msgid "Protocol (SSL or not)"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: src/addons/webdav.php:173
|
1129 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1130 |
msgstr ""
|
1131 |
|
1133 |
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."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: src/methods/s3.php:1129
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: src/methods/s3.php:126
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr ""
|
1143 |
|
1243 |
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."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: src/class-updraftplus.php:1835
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr ""
|
1249 |
|
1255 |
msgid "Now"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr ""
|
1261 |
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: src/admin.php:4548
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr ""
|
1371 |
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: src/restorer.php:1800
|
1435 |
msgid "Uploads URL:"
|
1436 |
msgstr ""
|
1437 |
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: src/class-updraftplus.php:4260
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: src/class-updraftplus.php:4260
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr ""
|
1453 |
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: src/admin.php:4086
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr ""
|
1527 |
|
1553 |
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)."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: src/admin.php:4422
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/admin.php:4420
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/admin.php:4420
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/admin.php:4420
|
1569 |
msgid "settings"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: src/admin.php:4420
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr ""
|
1575 |
|
1626 |
msgid "Advanced Tools"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: src/addons/googlecloud.php:1049
|
1630 |
msgid "Bucket location"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: src/addons/googlecloud.php:1044
|
1634 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1638 |
msgid "This setting applies only when a new bucket is being created."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: src/addons/googlecloud.php:1033
|
1642 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: src/addons/googlecloud.php:979
|
1646 |
msgid "Do not confuse %s with %s - they are separate things."
|
1647 |
msgstr ""
|
1648 |
|
1704 |
msgid "Standard"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: src/addons/azure.php:632
|
1708 |
msgid "container"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: src/addons/azure.php:632
|
1712 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: src/addons/azure.php:631
|
1716 |
msgid "optional"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: src/addons/azure.php:627
|
1720 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: src/addons/azure.php:627
|
1724 |
msgid "Enter the path of the %s you wish to use here."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/addons/azure.php:618
|
1728 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1732 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1733 |
msgid "Azure"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: src/addons/azure.php:598
|
1737 |
msgid "Create Azure credentials in your Azure developer console."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: src/addons/azure.php:562
|
1741 |
msgid "Could not create the container"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: src/addons/azure.php:413
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: src/class-updraftplus.php:2926
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr ""
|
1751 |
|
1773 |
msgid "Not installed"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1777 |
msgid "Storage class"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: src/addons/googlecloud.php:1033
|
1781 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: src/addons/googlecloud.php:1033
|
1785 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: src/addons/googlecloud.php:1032
|
1789 |
msgid "Bucket"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: src/addons/googlecloud.php:1028
|
1793 |
msgid "Otherwise, you can leave it blank."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: src/addons/googlecloud.php:1028
|
1797 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: src/addons/googlecloud.php:1028
|
1801 |
msgid "Enter the ID of the %s project you wish to use here."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: src/addons/googlecloud.php:991
|
1805 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: src/addons/googlecloud.php:902
|
1809 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: src/addons/googlecloud.php:1026
|
1813 |
msgid "Project ID"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: src/addons/googlecloud.php:759
|
1817 |
msgid "You must save and authenticate before you can test your settings."
|
1818 |
msgstr ""
|
1819 |
|
1822 |
msgstr ""
|
1823 |
|
1824 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1825 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1826 |
msgid "You do not have access to this bucket."
|
1827 |
msgstr ""
|
1828 |
|
1829 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1830 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1831 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1832 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1833 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1834 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1835 |
msgid "Google Cloud"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1839 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1840 |
+
#: src/addons/googlecloud.php:941
|
1841 |
msgid "%s Service Exception."
|
1842 |
msgstr ""
|
1843 |
|
1845 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: src/restorer.php:827
|
1849 |
msgid "Deferring..."
|
1850 |
msgstr ""
|
1851 |
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: src/restorer.php:2354
|
1918 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: src/restorer.php:2354
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr ""
|
1924 |
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: src/class-updraftplus.php:4333
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: src/class-updraftplus.php:4333
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr ""
|
1936 |
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2112 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr ""
|
2115 |
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr ""
|
2147 |
|
|
|
|
|
|
|
|
|
2148 |
#: src/addons/migrator.php:2405
|
2149 |
msgid "Your new key:"
|
2150 |
msgstr ""
|
2350 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: src/restorer.php:2356
|
2354 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2355 |
msgstr ""
|
2356 |
|
2382 |
msgid "You have made changes to your settings, and not saved."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: src/addons/onedrive.php:1111
|
2386 |
msgid "N.B. %s is not case-sensitive."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: src/addons/onedrive.php:1101
|
2390 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2394 |
+
#: src/addons/onedrive.php:1074
|
2395 |
msgid "For longer help, including screenshots, follow this link."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: src/addons/onedrive.php:1067
|
2399 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: src/addons/onedrive.php:1059
|
2403 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: src/addons/azure.php:592
|
2407 |
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)."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2411 |
msgid "%s authorisation failed:"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2415 |
+
#: src/addons/onedrive.php:1104
|
2416 |
msgid "OneDrive"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: src/addons/onedrive.php:691
|
2420 |
msgid "Please re-authorize the connection to your %s account."
|
2421 |
msgstr ""
|
2422 |
|
2424 |
msgid "configure it here"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2428 |
msgid "To remove the block, please go here."
|
2429 |
msgstr ""
|
2430 |
|
2569 |
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)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: src/methods/s3.php:910
|
2573 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2577 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2581 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2585 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2586 |
#: src/udaddons/updraftplus-addons.php:887
|
2587 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2591 |
#: src/udaddons/updraftplus-addons.php:887
|
2592 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2596 |
#: src/udaddons/updraftplus-addons.php:887
|
2597 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2601 |
msgid "Premium WooCommerce plugins"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2605 |
msgid "Free two-factor security plugin"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2609 |
+
msgid "More quality plugins"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2613 |
msgid "Go to the shop."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2617 |
msgid "Compare with the free version"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2621 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2622 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2623 |
msgid "UpdraftPlus Premium"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
|
|
|
|
|
|
|
|
2627 |
msgid "Free Newsletter"
|
2628 |
msgstr ""
|
2629 |
|
|
|
|
|
|
|
|
|
2630 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2631 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
|
2632 |
msgid "Dismiss (for %s months)"
|
2633 |
msgstr ""
|
2634 |
|
2669 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: src/methods/s3.php:177, src/methods/s3.php:178, src/methods/s3.php:179,
|
2673 |
+
#: src/methods/s3.php:187, src/methods/s3.php:188, src/methods/s3.php:189
|
2674 |
msgid "%s Error: Failed to initialise"
|
2675 |
msgstr ""
|
2676 |
|
2715 |
msgid "Manual"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: src/restorer.php:2333
|
2719 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2720 |
msgid "An error (%s) occurred:"
|
2721 |
msgstr ""
|
2856 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: src/class-updraftplus.php:4249
|
2860 |
msgid "Backup label:"
|
2861 |
msgstr ""
|
2862 |
|
2880 |
msgid "Your label for this backup (optional)"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1162
|
2884 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2885 |
msgstr ""
|
2886 |
|
2900 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: src/class-updraftplus.php:4268
|
2904 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: src/class-updraftplus.php:4268
|
2908 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2909 |
msgstr ""
|
2910 |
|
2941 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: src/class-updraftplus.php:4241
|
2945 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4241
|
2949 |
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."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4241
|
2953 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/class-updraftplus.php:4241
|
2957 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2958 |
msgstr ""
|
2959 |
|
2998 |
msgid "Start backup"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
3002 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3003 |
msgstr ""
|
3004 |
|
3034 |
msgid "Memory limit"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: src/class-updraftplus.php:4682, src/restorer.php:1608
|
3038 |
msgid "restoration"
|
3039 |
msgstr ""
|
3040 |
|
3097 |
msgid "search term"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: src/restorer.php:2361
|
3101 |
msgid "Too many database errors have occurred - aborting"
|
3102 |
msgstr ""
|
3103 |
|
3133 |
msgid "Free disk space in account:"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: src/admin.php:4519, src/templates/wp-admin/settings/tab-status.php:27
|
3137 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3138 |
msgstr ""
|
3139 |
|
3228 |
msgid "user"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: src/class-updraftplus.php:1832
|
3232 |
msgid "External database (%s)"
|
3233 |
msgstr ""
|
3234 |
|
3240 |
msgid "failed to access parent folder"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3244 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:421
|
3245 |
msgid "However, subsequent access attempts failed:"
|
3246 |
msgstr ""
|
3247 |
|
3277 |
msgid "use UpdraftPlus Premium"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: src/class-updraftplus.php:4095
|
3281 |
msgid "Decryption failed. The database file is encrypted."
|
3282 |
msgstr ""
|
3283 |
|
3285 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: src/restorer.php:1876, src/restorer.php:2302, src/restorer.php:2343,
|
3289 |
+
#: src/restorer.php:2356
|
3290 |
msgid "An error occurred on the first %s command - aborting run"
|
3291 |
msgstr ""
|
3292 |
|
3306 |
msgid "In %s, path names are case sensitive."
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: src/addons/azure.php:632, src/addons/google-enhanced.php:76,
|
3310 |
+
#: src/addons/onedrive.php:1111
|
3311 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1033,
|
3315 |
+
#: src/addons/onedrive.php:1111
|
3316 |
msgid "e.g. %s"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1111
|
3320 |
msgid "Enter the path of the %s folder you wish to use here."
|
3321 |
msgstr ""
|
3322 |
|
3360 |
msgid "Failed to upload %s"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
3364 |
msgid "Success:"
|
3365 |
msgstr ""
|
3366 |
|
3368 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:610
|
3372 |
msgid "(You appear to be already authenticated)."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: src/methods/dropbox.php:606
|
3376 |
msgid "Dropbox"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:606
|
3380 |
msgid "Authenticate with %s"
|
3381 |
msgstr ""
|
3382 |
|
3407 |
msgid "%s error - failed to access the container"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3411 |
+
#: src/methods/dropbox.php:663, src/methods/googledrive.php:1248
|
3412 |
msgid "Account holder's name: %s."
|
3413 |
msgstr ""
|
3414 |
|
3424 |
msgid "<strong>This is NOT a folder name</strong>."
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3428 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3429 |
msgid "Folder"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3433 |
#: src/methods/googledrive.php:1122
|
3434 |
msgid "%s download: failed: file not found"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:441
|
3438 |
msgid "Name: %s."
|
3439 |
msgstr ""
|
3440 |
|
3473 |
msgid "Failed to unpack the archive"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: src/class-updraftplus.php:1356
|
3477 |
msgid "Error - failed to download the file"
|
3478 |
msgstr ""
|
3479 |
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3501 |
+
#: src/admin.php:4808
|
3502 |
msgid "Key"
|
3503 |
msgstr ""
|
3504 |
|
3523 |
msgstr ""
|
3524 |
|
3525 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3526 |
+
#: src/includes/class-backup-history.php:349
|
3527 |
msgid "Backup created by: %s."
|
3528 |
msgstr ""
|
3529 |
|
3555 |
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."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: src/admin.php:694, src/includes/class-backup-history.php:356
|
3559 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3560 |
msgstr ""
|
3561 |
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#: src/admin.php:693, src/admin.php:694,
|
3567 |
+
#: src/includes/class-backup-history.php:356
|
3568 |
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))."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3572 |
+
#: src/restorer.php:1577
|
3573 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: src/restorer.php:869, src/restorer.php:917
|
3577 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: src/restorer.php:724
|
3581 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3582 |
msgstr ""
|
3583 |
|
3589 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: src/addons/backblaze.php:557, src/methods/cloudfiles.php:234,
|
3593 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3594 |
msgid "No settings were found"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: src/includes/class-backup-history.php:524
|
3598 |
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."
|
3599 |
msgstr ""
|
3600 |
|
3602 |
msgid "Rescanning remote and local storage for backup sets..."
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049,
|
3606 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3607 |
msgid "(Read more)"
|
3608 |
msgstr ""
|
3620 |
msgid "Remove"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: src/methods/s3.php:861
|
3624 |
msgid "Other %s FAQs."
|
3625 |
msgstr ""
|
3626 |
|
3632 |
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."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330,
|
3636 |
+
#: src/restorer.php:1608
|
3637 |
msgid "Your hosting company must enable these functions before %s can work."
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330
|
3641 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3642 |
msgstr ""
|
3643 |
|
3653 |
msgid "regular non-encrypted FTP"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: src/restorer.php:1784
|
3657 |
msgid "Backup created by:"
|
3658 |
msgstr ""
|
3659 |
|
3707 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: src/class-updraftplus.php:4732
|
3711 |
msgid "The attempt to undo the double-compression succeeded."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: src/class-updraftplus.php:4709, src/class-updraftplus.php:4730
|
3715 |
msgid "The attempt to undo the double-compression failed."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: src/class-updraftplus.php:4702
|
3719 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: src/includes/class-wpadmin-commands.php:313
|
3723 |
msgid "Constants"
|
3724 |
msgstr ""
|
3725 |
|
3768 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: src/restorer.php:717
|
3772 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3773 |
msgstr ""
|
3774 |
|
3789 |
msgid "Messages:"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: src/restorer.php:2196
|
3793 |
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"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: src/restorer.php:490
|
3797 |
msgid "The directory does not exist"
|
3798 |
msgstr ""
|
3799 |
|
3962 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: src/admin.php:679, src/admin.php:4232
|
3966 |
msgid "Error data:"
|
3967 |
msgstr ""
|
3968 |
|
3974 |
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."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: src/restorer.php:1851
|
3978 |
msgid "Split line to avoid exceeding maximum packet size"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: src/restorer.php:1731
|
3982 |
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)"
|
3983 |
msgstr ""
|
3984 |
|
4010 |
msgid "Email reports"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: src/class-updraftplus.php:1840, src/class-updraftplus.php:1845
|
4014 |
msgid "%s checksum: %s"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/class-updraftplus.php:1813, src/class-updraftplus.php:1815
|
4018 |
msgid "files: %s"
|
4019 |
msgstr ""
|
4020 |
|
4067 |
msgid "%d errors, %d warnings"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:748,
|
4071 |
+
#: src/methods/dropbox.php:770
|
4072 |
msgid "%s authentication"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:529,
|
4076 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:748,
|
4077 |
+
#: src/methods/dropbox.php:770, src/methods/dropbox.php:785,
|
4078 |
+
#: src/methods/dropbox.php:798, src/methods/dropbox.php:941
|
4079 |
msgid "%s error: %s"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:575
|
4083 |
msgid "%s logo"
|
4084 |
msgstr ""
|
4085 |
|
4087 |
msgid "%s did not return the expected response - check your log file for more details"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: src/methods/s3.php:307
|
4091 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4092 |
msgstr ""
|
4093 |
|
4108 |
msgid "For more reporting features, use the Reporting add-on."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: src/class-updraftplus.php:4176
|
4112 |
msgid "(version: %s)"
|
4113 |
msgstr ""
|
4114 |
|
4249 |
msgid "Reporting"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: src/admin.php:4805
|
4253 |
msgid "Options (raw)"
|
4254 |
msgstr ""
|
4255 |
|
4257 |
msgid "Send a report only when there are warnings/errors"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: src/restorer.php:1795
|
4261 |
msgid "Content URL:"
|
4262 |
msgstr ""
|
4263 |
|
4401 |
msgid "Your web-server does not have the %s module installed."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1237
|
4405 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4406 |
msgstr ""
|
4407 |
|
4421 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: src/restorer.php:1789
|
4425 |
msgid "Site home:"
|
4426 |
msgstr ""
|
4427 |
|
4437 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:144,
|
4441 |
#: src/methods/stream-base.php:149
|
4442 |
msgid "Upload failed"
|
4443 |
msgstr ""
|
4581 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
+
#: src/restorer.php:702
|
4585 |
msgid "file"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: src/restorer.php:695
|
4589 |
msgid "folder"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: src/restorer.php:695, src/restorer.php:702
|
4593 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: src/class-updraftplus.php:2933
|
4597 |
msgid "The backup has not finished; a resumption is scheduled"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: src/class-updraftplus.php:2117
|
4601 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: src/addons/onedrive.php:966,
|
4605 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4606 |
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)."
|
4607 |
msgstr ""
|
4686 |
msgid "Support"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: src/class-updraftplus.php:4481
|
4690 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: src/class-updraftplus.php:4473
|
4694 |
msgid "This database backup is missing core WordPress tables: %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/class-updraftplus.php:4234
|
4698 |
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."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: src/class-updraftplus.php:4233, src/class-updraftplus.php:4240
|
4702 |
msgid "%s version: %s"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: src/class-updraftplus.php:4112
|
4706 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4707 |
msgstr ""
|
4708 |
|
4787 |
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?"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4791 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4795 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: src/includes/class-wpadmin-commands.php:221
|
4799 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4800 |
msgstr ""
|
4801 |
|
4835 |
msgid "WordPress root directory server path: %s"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: src/methods/dreamobjects.php:88, src/methods/s3generic.php:104
|
4839 |
msgid "%s end-point"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: src/methods/s3.php:838
|
4843 |
msgid "... and many more!"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
|
4847 |
+
#: src/methods/s3generic.php:83
|
4848 |
msgid "S3 (Compatible)"
|
4849 |
msgstr ""
|
4850 |
|
4852 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: src/admin.php:4083
|
4856 |
msgid "Looking for %s archive: file name: %s"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: src/admin.php:4044
|
4860 |
msgid "Final checks"
|
4861 |
msgstr ""
|
4862 |
|
4884 |
msgid "Processing files - please wait..."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: src/admin.php:4234,
|
4888 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4889 |
msgid "Please consult this FAQ for help on what to do about it."
|
4890 |
msgstr ""
|
4893 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: src/class-updraftplus.php:4120
|
4897 |
msgid "Failed to open database file."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
+
#: src/admin.php:4770
|
4901 |
msgid "Known backups (raw)"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: src/restorer.php:1009
|
4905 |
msgid "Files found:"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: src/restorer.php:1977
|
4909 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: src/admin.php:4103
|
4913 |
msgid "file is size:"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:457,
|
4917 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4918 |
+
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:4354,
|
4919 |
+
#: src/class-updraftplus.php:4354, src/updraftplus.php:156
|
4920 |
msgid "Go here for more information."
|
4921 |
msgstr ""
|
4922 |
|
4924 |
msgid "Some files are still downloading or being processed - please wait."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: src/class-updraftplus.php:4203, src/class-updraftplus.php:4224
|
4928 |
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."
|
4929 |
msgstr ""
|
4930 |
|
4968 |
msgid "Error - no such file exists at %s"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4972 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4973 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4974 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
4997 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4998 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4999 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5000 |
+
#: src/class-updraftplus.php:4093, src/class-updraftplus.php:4095,
|
5001 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4264,
|
5002 |
+
#: src/class-updraftplus.php:4333, src/methods/googledrive.php:382,
|
5003 |
+
#: src/methods/s3.php:336
|
5004 |
msgid "Error: %s"
|
5005 |
msgstr ""
|
5006 |
|
5040 |
msgid "Warnings encountered:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: src/class-updraftplus.php:2921
|
5044 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5045 |
msgstr ""
|
5046 |
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
+
#: src/methods/s3.php:847
|
5084 |
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."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: src/methods/s3.php:1150
|
5088 |
msgid "Please check your access credentials."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1128
|
5092 |
msgid "The error reported by %s was:"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: src/restorer.php:1518
|
5096 |
msgid "Please supply the requested information, and then continue."
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: src/class-updraftplus.php:4275, src/restorer.php:1825
|
5100 |
msgid "Site information:"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: src/restorer.php:1692
|
5104 |
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."
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: src/admin.php:2445, src/class-updraftplus.php:4268, src/restorer.php:2196
|
5108 |
msgid "Warning:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4260,
|
5112 |
#: src/restorer.php:184
|
5113 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: src/admin.php:4071
|
5117 |
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."
|
5118 |
msgstr ""
|
5119 |
|
5189 |
msgid "News"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:490
|
5193 |
msgid "Backup set not found"
|
5194 |
msgstr ""
|
5195 |
|
5354 |
msgstr ""
|
5355 |
|
5356 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5357 |
+
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5358 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5359 |
#: src/udaddons/options.php:135
|
5360 |
msgid "Password"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
+
#: src/addons/sftp.php:429, src/addons/webdav.php:207
|
5364 |
msgid "Port"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5368 |
+
#: src/addons/webdav.php:199
|
5369 |
msgid "Host"
|
5370 |
msgstr ""
|
5371 |
|
5413 |
msgid "Over-write wp-config.php"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
+
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:507
|
5417 |
msgid "WordPress Core"
|
5418 |
msgstr ""
|
5419 |
|
5421 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5422 |
msgstr ""
|
5423 |
|
5424 |
+
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5425 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3052,
|
5426 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5427 |
#: src/methods/stream-base.php:353
|
5428 |
msgid "Failed"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: src/addons/webdav.php:169
|
5432 |
msgid "WebDAV URL"
|
5433 |
msgstr ""
|
5434 |
|
5479 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:816
|
5483 |
msgid "Your %s account name: %s"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: src/methods/dropbox.php:806, src/methods/dropbox.php:828
|
5487 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
5491 |
msgid "you have authenticated your %s account"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5495 |
msgid "there's an add-on for that."
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5499 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5503 |
msgid "Backups are saved in"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5507 |
msgid "Need to use sub-folders?"
|
5508 |
msgstr ""
|
5509 |
|
5516 |
msgid "You do not appear to be authenticated with Dropbox"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: src/methods/s3.php:1145
|
5520 |
msgid "The communication with %s was not encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: src/methods/s3.php:1143
|
5524 |
msgid "The communication with %s was encrypted."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1140
|
5528 |
msgid "We accessed the bucket, and were able to create files within it."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5532 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5533 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5537 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5538 |
msgid "Failure"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: src/addons/backblaze.php:472, src/methods/s3.php:1126
|
5542 |
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)."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5546 |
+
#: src/methods/s3.php:1120
|
5547 |
msgid "Region"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5551 |
+
#: src/methods/s3.php:1102
|
5552 |
msgid "Failure: No bucket details were given."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: src/methods/s3.php:1080
|
5556 |
msgid "API secret"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: src/methods/s3.php:928
|
5560 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: src/methods/s3.php:927
|
5564 |
msgid "%s location"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
+
#: src/methods/s3.php:923
|
5568 |
msgid "%s secret key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
+
#: src/methods/s3.php:919
|
5572 |
msgid "%s access key"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: src/methods/s3.php:859
|
5576 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: src/methods/s3.php:857
|
5580 |
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."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: src/methods/s3.php:477, src/methods/s3.php:589, src/methods/s3.php:661,
|
5584 |
+
#: src/methods/s3.php:764
|
5585 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
+
#: src/methods/s3.php:747, src/methods/s3.php:757, src/methods/s3.php:793
|
5589 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
+
#: src/methods/s3.php:455
|
5593 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: src/methods/s3.php:451
|
5597 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: src/methods/s3.php:435
|
5601 |
msgid "%s chunk %s: upload failed"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: src/methods/s3.php:425
|
5605 |
msgid "%s error: file %s was shortened unexpectedly"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
+
#: src/methods/s3.php:403
|
5609 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5610 |
msgstr ""
|
5611 |
|
5630 |
msgstr ""
|
5631 |
|
5632 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5633 |
+
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5634 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5635 |
msgid "Username"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5639 |
+
#: src/methods/s3.php:1076
|
5640 |
msgid "API key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5644 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5645 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5646 |
+
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5647 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5648 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5649 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5650 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5651 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5652 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5653 |
+
#: src/methods/s3.php:1076, src/methods/s3.php:1080
|
5654 |
msgid "Failure: No %s was given."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5658 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5659 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5660 |
msgstr ""
|
5661 |
|
5690 |
msgid "Test %s Settings"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
5694 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5695 |
msgid "Error opening local file: Failed to download"
|
5696 |
msgstr ""
|
5702 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5703 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5704 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5705 |
+
#: src/methods/s3.php:371, src/methods/s3.php:383, src/methods/s3.php:384
|
5706 |
msgid "%s Error: Failed to upload"
|
5707 |
msgstr ""
|
5708 |
|
5728 |
msgid "Authenticate with Google"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5732 |
#: src/methods/googledrive.php:1196
|
5733 |
msgid "Client Secret"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1193
|
5737 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5741 |
#: src/methods/googledrive.php:1192
|
5742 |
msgid "Client ID"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5746 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5750 |
msgid "Select 'Web Application' as the application type."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1167
|
5754 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5758 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:546,
|
5759 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5760 |
#: src/methods/googledrive.php:558
|
5761 |
msgid "Account is not authorized."
|
5775 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5779 |
#: src/methods/googledrive.php:441
|
5780 |
msgid "you have authenticated your %s account."
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5784 |
+
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5785 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5786 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5787 |
+
#: src/methods/s3.php:1140, src/methods/stream-base.php:364
|
5788 |
msgid "Success"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:839,
|
5792 |
+
#: src/methods/dropbox.php:848, src/methods/googledrive.php:415
|
5793 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5794 |
msgstr ""
|
5795 |
|
5821 |
msgstr ""
|
5822 |
|
5823 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5824 |
+
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:4101,
|
5825 |
+
#: src/restorer.php:2437, src/restorer.php:2542
|
5826 |
msgid "OK"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: src/restorer.php:2431, src/restorer.php:2506
|
5830 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: src/addons/migrator.php:1285, src/restorer.php:2333
|
5834 |
msgid "the database query being run was:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
+
#: src/restorer.php:2034
|
5838 |
msgid "will restore as:"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: src/class-updraftplus.php:4246, src/restorer.php:1807,
|
5842 |
+
#: src/restorer.php:1896, src/restorer.php:1922
|
5843 |
msgid "Old table prefix:"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5847 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4176
|
5848 |
msgid "Backup of:"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: src/restorer.php:1614
|
5852 |
msgid "Failed to open database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: src/restorer.php:1593
|
5856 |
msgid "Failed to find database file"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: src/restorer.php:1570
|
5860 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: src/restorer.php:529
|
5864 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: src/restorer.php:524
|
5868 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: src/restorer.php:417
|
5872 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: src/restorer.php:401
|
5876 |
msgid "Failed to create a temporary directory"
|
5877 |
msgstr ""
|
5878 |
|
5916 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: src/admin.php:4109, src/admin.php:4110
|
5920 |
msgid "Could not find one of the files for restoration"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: src/admin.php:4224
|
5924 |
msgid "Error message"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: src/admin.php:4106
|
5928 |
msgid "The backup records do not contain information about the proper size of this file."
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: src/admin.php:4098
|
5932 |
msgid "Archive is expected to be size:"
|
5933 |
msgstr ""
|
5934 |
|
5969 |
msgstr ""
|
5970 |
|
5971 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5972 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5973 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5974 |
msgstr ""
|
5975 |
|
6257 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
+
#: src/class-updraftplus.php:4206
|
6261 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6262 |
msgstr ""
|
6263 |
|
6310 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6311 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6312 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6313 |
+
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6314 |
+
#: src/admin.php:680, src/admin.php:4103, src/admin.php:4133,
|
6315 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6316 |
+
#: src/methods/updraftvault.php:522, src/restorer.php:1523
|
6317 |
msgid "Error:"
|
6318 |
msgstr ""
|
6319 |
|
6387 |
|
6388 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6389 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6390 |
+
#: src/admin.php:3682, src/admin.php:4187,
|
6391 |
#: src/includes/class-wpadmin-commands.php:147,
|
6392 |
+
#: src/includes/class-wpadmin-commands.php:505,
|
6393 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6394 |
msgid "Database"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
+
#: src/admin.php:311, src/admin.php:4777
|
6398 |
msgid "Files"
|
6399 |
msgstr ""
|
6400 |
|
6446 |
msgid "UpdraftPlus.Com"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
+
#: src/admin.php:4669
|
6450 |
msgid "Your settings have been wiped."
|
6451 |
msgstr ""
|
6452 |
|
6507 |
msgstr ""
|
6508 |
|
6509 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6510 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
6511 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6512 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6513 |
+
#: src/methods/stream-base.php:220, src/restorer.php:2433,
|
6514 |
+
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6515 |
msgid "Error"
|
6516 |
msgstr ""
|
6517 |
|
6552 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6553 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6554 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6555 |
+
#: src/methods/s3.php:847, src/methods/s3.php:851,
|
6556 |
#: src/methods/updraftvault.php:301,
|
6557 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6558 |
#: src/udaddons/updraftplus-addons.php:253
|
6584 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3966,
|
6588 |
+
#: src/methods/googledrive.php:1082, src/methods/s3.php:336
|
6589 |
msgid "File not found"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: src/class-updraftplus.php:3873
|
6593 |
msgid "The decryption key used:"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: src/class-updraftplus.php:3873, src/class-updraftplus.php:4105,
|
6597 |
+
#: src/restorer.php:422
|
6598 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6599 |
msgstr ""
|
6600 |
|
6601 |
+
#: src/class-updraftplus.php:3854, src/class-updraftplus.php:4093,
|
6602 |
+
#: src/restorer.php:409
|
6603 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6604 |
msgstr ""
|
6605 |
|
6607 |
msgid "Could not open the backup file for writing"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: src/class-updraftplus.php:3459
|
6611 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: src/class-updraftplus.php:3420
|
6615 |
msgid "Could not read the directory"
|
6616 |
msgstr ""
|
6617 |
|
6623 |
msgid "WordPress backup is complete"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: src/class-updraftplus.php:2930
|
6627 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: src/class-updraftplus.php:2915
|
6631 |
msgid "The backup apparently succeeded and is now complete"
|
6632 |
msgstr ""
|
6633 |
|
6635 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/class-updraftplus.php:2618
|
6639 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: src/class-updraftplus.php:1897
|
6643 |
msgid "Others"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: src/addons/multisite.php:465, src/class-updraftplus.php:1882
|
6647 |
msgid "Uploads"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: src/class-updraftplus.php:1881
|
6651 |
msgid "Themes"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: src/class-updraftplus.php:1880
|
6655 |
msgid "Plugins"
|
6656 |
msgstr ""
|
6657 |
|
@@ -11,6 +11,50 @@ msgstr ""
|
|
11 |
"Language: bn\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
msgstr ""
|
@@ -19,11 +63,11 @@ msgstr ""
|
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr ""
|
29 |
|
@@ -91,25 +135,25 @@ msgstr ""
|
|
91 |
msgid "remote site"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] ""
|
102 |
msgstr[1] ""
|
103 |
|
104 |
-
#: src/class-updraftplus.php:
|
105 |
msgid "Your chosen replacement collation"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: src/class-updraftplus.php:
|
109 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: src/class-updraftplus.php:
|
113 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
114 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
115 |
msgstr[0] ""
|
@@ -123,27 +167,27 @@ msgstr ""
|
|
123 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: src/addons/azure.php:
|
127 |
msgid "%s Prefix"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: src/addons/azure.php:
|
131 |
msgid "%s Container"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: src/addons/azure.php:
|
135 |
msgid "%s Key"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/addons/azure.php:
|
139 |
msgid "%s Account Name"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: src/addons/googlecloud.php:
|
143 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: src/addons/googlecloud.php:
|
147 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
148 |
msgstr ""
|
149 |
|
@@ -173,19 +217,19 @@ msgid_plural "Your .htaccess has an old site references on line numbers %s. You
|
|
173 |
msgstr[0] ""
|
174 |
msgstr[1] ""
|
175 |
|
176 |
-
#: src/restorer.php:
|
177 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: src/class-updraftplus.php:
|
181 |
msgid "Your chosen character set to use instead:"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: src/class-updraftplus.php:
|
185 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: src/class-updraftplus.php:
|
189 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
190 |
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."
|
191 |
msgstr[0] ""
|
@@ -239,59 +283,59 @@ msgstr ""
|
|
239 |
msgid "Please enter a valid URL e.g http://example.com"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: src/addons/backblaze.php:
|
243 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: src/addons/backblaze.php:
|
247 |
msgid "some/path"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/addons/backblaze.php:
|
251 |
msgid "Bucket name"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/addons/backblaze.php:
|
255 |
msgid "Backup path"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "Application key"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "here"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "Get these settings from %s, or sign up %s."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Account Key"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Account ID"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/class-updraftplus.php:
|
279 |
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."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/class-updraftplus.php:
|
283 |
msgid "the migrator add-on"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/class-updraftplus.php:
|
287 |
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."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/class-updraftplus.php:
|
291 |
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."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
msgstr ""
|
297 |
|
@@ -311,15 +355,15 @@ msgstr ""
|
|
311 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/admin.php:1368, src/admin.php:
|
315 |
-
#: src/class-updraftplus.php:
|
316 |
-
#: src/class-updraftplus.php:
|
317 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: src/admin.php:1359, src/admin.php:
|
321 |
-
#: src/class-updraftplus.php:
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "A PHP exception (%s) has occurred: %s"
|
324 |
msgstr ""
|
325 |
|
@@ -375,7 +419,7 @@ msgstr ""
|
|
375 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/admin.php:
|
379 |
msgid "Value"
|
380 |
msgstr ""
|
381 |
|
@@ -387,7 +431,7 @@ msgstr ""
|
|
387 |
msgid "Encrypted login failed; trying non-encrypted"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/addons/azure.php:
|
391 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
392 |
msgstr ""
|
393 |
|
@@ -399,11 +443,11 @@ msgstr ""
|
|
399 |
msgid "Cloud Files"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: src/admin.php:
|
403 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: src/admin.php:
|
407 |
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."
|
408 |
msgstr ""
|
409 |
|
@@ -412,11 +456,11 @@ msgstr ""
|
|
412 |
msgid "UpdraftVault"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: src/includes/class-wpadmin-commands.php:
|
416 |
msgid "archive"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: src/includes/class-wpadmin-commands.php:
|
420 |
msgid "Extra database"
|
421 |
msgstr ""
|
422 |
|
@@ -460,11 +504,11 @@ msgstr ""
|
|
460 |
msgid "Browse contents"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: src/restorer.php:
|
464 |
msgid "Skipped tables:"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: src/class-updraftplus.php:
|
468 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
469 |
msgstr ""
|
470 |
|
@@ -673,14 +717,6 @@ msgstr ""
|
|
673 |
msgid "Recommended: optimize your database with WP-Optimize."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
677 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
681 |
-
msgid "WP-Optimize"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
685 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
686 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -728,27 +764,7 @@ msgstr ""
|
|
728 |
msgid "Europe (Ireland)"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
732 |
-
msgid "WP-Optimize (free)"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
736 |
-
msgid "Explore our Cloud and Premium versions."
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
740 |
-
msgid "Download it for free from WordPress.org"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
744 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
748 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
752 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
753 |
msgid "UpdraftCentral"
|
754 |
msgstr ""
|
@@ -960,11 +976,11 @@ msgstr ""
|
|
960 |
msgid "Export / import settings"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: src/restorer.php:
|
964 |
msgid "Processing table (%s)"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: src/restorer.php:
|
968 |
msgid "Backup of: %s"
|
969 |
msgstr ""
|
970 |
|
@@ -972,11 +988,11 @@ msgstr ""
|
|
972 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: src/methods/dropbox.php:
|
976 |
msgid "%s de-authentication"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: src/methods/dropbox.php:
|
980 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
981 |
msgstr ""
|
982 |
|
@@ -1044,24 +1060,24 @@ msgstr ""
|
|
1044 |
msgid "US East (Ohio)"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: src/addons/onedrive.php:
|
1048 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/addons/onedrive.php:
|
1052 |
msgid "Account is not authorized (%s)."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/addons/onedrive.php:
|
1056 |
msgid "Your IP address:"
|
1057 |
msgstr "আপনার আইপি অ্যাড্রেসঃ"
|
1058 |
|
1059 |
-
#: src/addons/onedrive.php:
|
1060 |
#: src/udaddons/updraftplus-addons.php:887
|
1061 |
msgid "To remove any block, please go here."
|
1062 |
msgstr "কোন ব্লক সরাতে এখানে যান।"
|
1063 |
|
1064 |
-
#: src/addons/onedrive.php:
|
1065 |
msgid "An error response was received; HTTP code:"
|
1066 |
msgstr ""
|
1067 |
|
@@ -1089,27 +1105,27 @@ msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টে
|
|
1089 |
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."
|
1090 |
msgstr "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
|
1091 |
|
1092 |
-
#: src/addons/webdav.php:
|
1093 |
msgid "Path"
|
1094 |
msgstr "রাস্তা (Path)"
|
1095 |
|
1096 |
-
#: src/addons/webdav.php:
|
1097 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1098 |
msgstr "ডিফল্ট ভ্যালু ব্যাবহার করতে এটা ফাকা রাখুন (webdav এর জন্য 80, webdavs এর জন্য 443)"
|
1099 |
|
1100 |
-
#: src/addons/webdav.php:
|
1101 |
msgid "Enter any path in the field below."
|
1102 |
msgstr "এই স্থানে যেকোন রাস্তা (Path) প্রবেশ করান।"
|
1103 |
|
1104 |
-
#: src/addons/webdav.php:
|
1105 |
msgid "A host name cannot contain a slash."
|
1106 |
msgstr "\"host name\" এর ক্ষত্রে স্ল্যাশ ব্যাবহার করা যাবে না।"
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "Protocol (SSL or not)"
|
1110 |
msgstr "প্রোটোকল (SSL অথবা SSL না)"
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1114 |
msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ করার মাধ্যমে সৃষ্ট। আপনি যদি বিস্তারিত না জানেন, তাহলে আপনার WebDAV প্রোভাইডারকে জিজ্ঞেস করুন।"
|
1115 |
|
@@ -1117,11 +1133,11 @@ msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ
|
|
1117 |
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."
|
1118 |
msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
|
1119 |
|
1120 |
-
#: src/methods/s3.php:
|
1121 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1122 |
msgstr "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
|
1123 |
|
1124 |
-
#: src/methods/s3.php:
|
1125 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1126 |
msgstr "কোন সেটিং পাওয়া যায়নি - দয়া করে সেটিং ট্যাবে গিয়ে আপনার সেটিং যাচাই করুন।"
|
1127 |
|
@@ -1227,7 +1243,7 @@ msgstr ""
|
|
1227 |
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."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: src/class-updraftplus.php:
|
1231 |
msgid "Size: %s MB"
|
1232 |
msgstr "সাইজঃ %s MB"
|
1233 |
|
@@ -1239,7 +1255,7 @@ msgstr ""
|
|
1239 |
msgid "Now"
|
1240 |
msgstr "এখন"
|
1241 |
|
1242 |
-
#: src/class-updraftplus.php:
|
1243 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1345,11 +1361,11 @@ msgstr ""
|
|
1345 |
msgid "UpdraftCentral Connection"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1349 |
msgid "The backup was aborted by the user"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: src/admin.php:
|
1353 |
msgid "Your settings have been saved."
|
1354 |
msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
|
1355 |
|
@@ -1415,7 +1431,7 @@ msgstr "আনা হচ্ছে..."
|
|
1415 |
msgid "Asia Pacific (Seoul)"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: src/restorer.php:
|
1419 |
msgid "Uploads URL:"
|
1420 |
msgstr ""
|
1421 |
|
@@ -1423,15 +1439,15 @@ msgstr ""
|
|
1423 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/class-updraftplus.php:
|
1427 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/class-updraftplus.php:
|
1431 |
msgid "Please read this link for important information on this process."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: src/class-updraftplus.php:
|
1435 |
msgid "It will be imported as a new site."
|
1436 |
msgstr ""
|
1437 |
|
@@ -1505,7 +1521,7 @@ msgstr ""
|
|
1505 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: src/admin.php:
|
1509 |
msgid "Skipping: this archive was already restored."
|
1510 |
msgstr ""
|
1511 |
|
@@ -1537,23 +1553,23 @@ msgstr ""
|
|
1537 |
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)."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: src/admin.php:
|
1541 |
msgid "Send this backup to remote storage"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: src/admin.php:
|
1545 |
msgid "Check out UpdraftPlus Vault."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: src/admin.php:
|
1549 |
msgid "Not got any remote storage?"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: src/admin.php:
|
1553 |
msgid "settings"
|
1554 |
msgstr "সেটিংস"
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1558 |
msgstr ""
|
1559 |
|
@@ -1610,23 +1626,23 @@ msgstr ""
|
|
1610 |
msgid "Advanced Tools"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: src/addons/googlecloud.php:
|
1614 |
msgid "Bucket location"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: src/addons/googlecloud.php:
|
1618 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: src/addons/googlecloud.php:
|
1622 |
msgid "This setting applies only when a new bucket is being created."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: src/addons/googlecloud.php:
|
1626 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "Do not confuse %s with %s - they are separate things."
|
1631 |
msgstr ""
|
1632 |
|
@@ -1688,48 +1704,48 @@ msgstr ""
|
|
1688 |
msgid "Standard"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: src/addons/azure.php:
|
1692 |
msgid "container"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: src/addons/azure.php:
|
1696 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: src/addons/azure.php:
|
1700 |
msgid "optional"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: src/addons/azure.php:
|
1704 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "Enter the path of the %s you wish to use here."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
-
#: src/addons/azure.php:
|
1717 |
msgid "Azure"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: src/addons/azure.php:
|
1721 |
msgid "Create Azure credentials in your Azure developer console."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: src/addons/azure.php:
|
1725 |
msgid "Could not create the container"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: src/addons/azure.php:
|
1729 |
msgid "Could not access container"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: src/class-updraftplus.php:
|
1733 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1734 |
msgstr ""
|
1735 |
|
@@ -1757,47 +1773,47 @@ msgstr ""
|
|
1757 |
msgid "Not installed"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: src/addons/googlecloud.php:
|
1761 |
msgid "Storage class"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: src/addons/googlecloud.php:
|
1765 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: src/addons/googlecloud.php:
|
1769 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: src/addons/googlecloud.php:
|
1773 |
msgid "Bucket"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Otherwise, you can leave it blank."
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "Enter the ID of the %s project you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "Project ID"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "You must save and authenticate before you can test your settings."
|
1802 |
msgstr ""
|
1803 |
|
@@ -1806,22 +1822,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1806 |
msgstr ""
|
1807 |
|
1808 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1809 |
-
#: src/addons/googlecloud.php:
|
1810 |
msgid "You do not have access to this bucket."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1814 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1815 |
-
#: src/addons/googlecloud.php:
|
1816 |
-
#: src/addons/googlecloud.php:
|
1817 |
-
#: src/addons/googlecloud.php:
|
1818 |
-
#: src/addons/googlecloud.php:
|
1819 |
msgid "Google Cloud"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1823 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1824 |
-
#: src/addons/googlecloud.php:
|
1825 |
msgid "%s Service Exception."
|
1826 |
msgstr ""
|
1827 |
|
@@ -1829,7 +1845,7 @@ msgstr ""
|
|
1829 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: src/restorer.php:
|
1833 |
msgid "Deferring..."
|
1834 |
msgstr ""
|
1835 |
|
@@ -1898,11 +1914,11 @@ msgstr ""
|
|
1898 |
msgid "Add an additional retention rule..."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: src/restorer.php:
|
1902 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: src/restorer.php:
|
1906 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1907 |
msgstr ""
|
1908 |
|
@@ -1910,11 +1926,11 @@ msgstr ""
|
|
1910 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: src/class-updraftplus.php:
|
1914 |
msgid "You must upgrade MySQL to be able to use this database."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: src/class-updraftplus.php:
|
1918 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1919 |
msgstr ""
|
1920 |
|
@@ -2092,8 +2108,8 @@ msgstr "আপনার UpdraftPlus Premium কেনার এক বছর অ
|
|
2092 |
msgid "Updraft Vault"
|
2093 |
msgstr "ভল্ট আপডেট করুন"
|
2094 |
|
2095 |
-
#: src/addons/azure.php:
|
2096 |
-
#: src/addons/googlecloud.php:
|
2097 |
msgid "Delete failed:"
|
2098 |
msgstr "ডিলিট ব্যর্থ:"
|
2099 |
|
@@ -2129,10 +2145,6 @@ msgstr ""
|
|
2129 |
msgid "Existing keys"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: src/addons/migrator.php:2423
|
2133 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2134 |
-
msgstr ""
|
2135 |
-
|
2136 |
#: src/addons/migrator.php:2405
|
2137 |
msgid "Your new key:"
|
2138 |
msgstr "আপনার নতুন চাবি:"
|
@@ -2338,7 +2350,7 @@ msgstr "যুক্ত করা হচ্ছে..."
|
|
2338 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: src/restorer.php:
|
2342 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2343 |
msgstr ""
|
2344 |
|
@@ -2370,41 +2382,41 @@ msgstr ""
|
|
2370 |
msgid "You have made changes to your settings, and not saved."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: src/addons/onedrive.php:
|
2374 |
msgid "N.B. %s is not case-sensitive."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: src/addons/onedrive.php:
|
2378 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: src/addons/azure.php:
|
2382 |
-
#: src/addons/onedrive.php:
|
2383 |
msgid "For longer help, including screenshots, follow this link."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: src/addons/onedrive.php:
|
2387 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: src/addons/onedrive.php:
|
2391 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: src/addons/azure.php:
|
2395 |
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)."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: src/addons/onedrive.php:
|
2399 |
msgid "%s authorisation failed:"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
-
#: src/addons/onedrive.php:
|
2404 |
msgid "OneDrive"
|
2405 |
msgstr "OneDrive"
|
2406 |
|
2407 |
-
#: src/addons/onedrive.php:
|
2408 |
msgid "Please re-authorize the connection to your %s account."
|
2409 |
msgstr ""
|
2410 |
|
@@ -2412,7 +2424,7 @@ msgstr ""
|
|
2412 |
msgid "configure it here"
|
2413 |
msgstr "এটিকে এইখানে কনফিগার করুন"
|
2414 |
|
2415 |
-
#: src/addons/onedrive.php:
|
2416 |
msgid "To remove the block, please go here."
|
2417 |
msgstr "ব্লক সরাতে, এখানে যান।"
|
2418 |
|
@@ -2557,74 +2569,66 @@ msgstr ""
|
|
2557 |
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)"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: src/methods/s3.php:
|
2561 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2565 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2569 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: src/addons/onedrive.php:
|
2573 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2574 |
#: src/udaddons/updraftplus-addons.php:887
|
2575 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: src/addons/onedrive.php:
|
2579 |
#: src/udaddons/updraftplus-addons.php:887
|
2580 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2581 |
msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
|
2582 |
|
2583 |
-
#: src/addons/onedrive.php:
|
2584 |
#: src/udaddons/updraftplus-addons.php:887
|
2585 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2586 |
msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
|
2587 |
|
2588 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2589 |
msgid "Premium WooCommerce plugins"
|
2590 |
msgstr "প্রিমিয়াম WooCommerce প্লাগিনসমূহ"
|
2591 |
|
2592 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2593 |
msgid "Free two-factor security plugin"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2597 |
-
msgid "More
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2601 |
msgid "Go to the shop."
|
2602 |
msgstr "দোকানে যান।"
|
2603 |
|
2604 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2605 |
msgid "Compare with the free version"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2609 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2610 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2611 |
msgid "UpdraftPlus Premium"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2615 |
-
msgid "Follow this link to sign up."
|
2616 |
-
msgstr ""
|
2617 |
-
|
2618 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
2619 |
msgid "Free Newsletter"
|
2620 |
msgstr "বিনামূল্যে নিউজলেটার"
|
2621 |
|
2622 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
2623 |
-
msgid "Thank you for backing up with UpdraftPlus!"
|
2624 |
-
msgstr ""
|
2625 |
-
|
2626 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2627 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2628 |
msgid "Dismiss (for %s months)"
|
2629 |
msgstr ""
|
2630 |
|
@@ -2665,8 +2669,8 @@ msgstr "সম্পূর্ণ বৈশিষ্ট্যের তালি
|
|
2665 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: src/methods/s3.php:
|
2669 |
-
#: src/methods/s3.php:
|
2670 |
msgid "%s Error: Failed to initialise"
|
2671 |
msgstr "%s ত্রুটি: ইনিশিয়ালাইজ করতে ব্যর্থ"
|
2672 |
|
@@ -2711,7 +2715,7 @@ msgctxt "i.e. Non-automatic"
|
|
2711 |
msgid "Manual"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: src/restorer.php:
|
2715 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2716 |
msgid "An error (%s) occurred:"
|
2717 |
msgstr ""
|
@@ -2852,7 +2856,7 @@ msgstr ""
|
|
2852 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: src/class-updraftplus.php:
|
2856 |
msgid "Backup label:"
|
2857 |
msgstr ""
|
2858 |
|
@@ -2876,7 +2880,7 @@ msgstr ""
|
|
2876 |
msgid "Your label for this backup (optional)"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: src/addons/googlecloud.php:
|
2880 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2881 |
msgstr ""
|
2882 |
|
@@ -2896,11 +2900,11 @@ msgstr ""
|
|
2896 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: src/class-updraftplus.php:
|
2900 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2905 |
msgstr ""
|
2906 |
|
@@ -2937,19 +2941,19 @@ msgstr ""
|
|
2937 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: src/class-updraftplus.php:
|
2941 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
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."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2954 |
msgstr ""
|
2955 |
|
@@ -2994,7 +2998,7 @@ msgstr ""
|
|
2994 |
msgid "Start backup"
|
2995 |
msgstr "ব্যাকআপ শুরু করুন"
|
2996 |
|
2997 |
-
#: src/class-updraftplus.php:
|
2998 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
2999 |
msgstr ""
|
3000 |
|
@@ -3030,7 +3034,7 @@ msgstr ""
|
|
3030 |
msgid "Memory limit"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: src/class-updraftplus.php:
|
3034 |
msgid "restoration"
|
3035 |
msgstr ""
|
3036 |
|
@@ -3093,7 +3097,7 @@ msgstr ""
|
|
3093 |
msgid "search term"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: src/restorer.php:
|
3097 |
msgid "Too many database errors have occurred - aborting"
|
3098 |
msgstr ""
|
3099 |
|
@@ -3129,7 +3133,7 @@ msgstr ""
|
|
3129 |
msgid "Free disk space in account:"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: src/admin.php:
|
3133 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3134 |
msgstr ""
|
3135 |
|
@@ -3224,7 +3228,7 @@ msgstr ""
|
|
3224 |
msgid "user"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: src/class-updraftplus.php:
|
3228 |
msgid "External database (%s)"
|
3229 |
msgstr ""
|
3230 |
|
@@ -3236,8 +3240,8 @@ msgstr ""
|
|
3236 |
msgid "failed to access parent folder"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: src/addons/googlecloud.php:
|
3240 |
-
#: src/addons/onedrive.php:
|
3241 |
msgid "However, subsequent access attempts failed:"
|
3242 |
msgstr ""
|
3243 |
|
@@ -3273,7 +3277,7 @@ msgstr ""
|
|
3273 |
msgid "use UpdraftPlus Premium"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: src/class-updraftplus.php:
|
3277 |
msgid "Decryption failed. The database file is encrypted."
|
3278 |
msgstr ""
|
3279 |
|
@@ -3281,8 +3285,8 @@ msgstr ""
|
|
3281 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: src/restorer.php:
|
3285 |
-
#: src/restorer.php:
|
3286 |
msgid "An error occurred on the first %s command - aborting run"
|
3287 |
msgstr ""
|
3288 |
|
@@ -3302,17 +3306,17 @@ msgstr ""
|
|
3302 |
msgid "In %s, path names are case sensitive."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: src/addons/azure.php:
|
3306 |
-
#: src/addons/onedrive.php:
|
3307 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:
|
3311 |
-
#: src/addons/onedrive.php:
|
3312 |
msgid "e.g. %s"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:
|
3316 |
msgid "Enter the path of the %s folder you wish to use here."
|
3317 |
msgstr ""
|
3318 |
|
@@ -3356,7 +3360,7 @@ msgstr ""
|
|
3356 |
msgid "Failed to upload %s"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: src/methods/dropbox.php:
|
3360 |
msgid "Success:"
|
3361 |
msgstr ""
|
3362 |
|
@@ -3364,15 +3368,15 @@ msgstr ""
|
|
3364 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: src/addons/onedrive.php:
|
3368 |
msgid "(You appear to be already authenticated)."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: src/methods/dropbox.php:
|
3372 |
msgid "Dropbox"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: src/addons/onedrive.php:
|
3376 |
msgid "Authenticate with %s"
|
3377 |
msgstr ""
|
3378 |
|
@@ -3403,8 +3407,8 @@ msgstr ""
|
|
3403 |
msgid "%s error - failed to access the container"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: src/addons/googlecloud.php:
|
3407 |
-
#: src/methods/dropbox.php:
|
3408 |
msgid "Account holder's name: %s."
|
3409 |
msgstr ""
|
3410 |
|
@@ -3420,17 +3424,17 @@ msgstr ""
|
|
3420 |
msgid "<strong>This is NOT a folder name</strong>."
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:
|
3424 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3425 |
msgid "Folder"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:
|
3429 |
#: src/methods/googledrive.php:1122
|
3430 |
msgid "%s download: failed: file not found"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: src/addons/googlecloud.php:
|
3434 |
msgid "Name: %s."
|
3435 |
msgstr ""
|
3436 |
|
@@ -3469,7 +3473,7 @@ msgstr ""
|
|
3469 |
msgid "Failed to unpack the archive"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: src/class-updraftplus.php:
|
3473 |
msgid "Error - failed to download the file"
|
3474 |
msgstr ""
|
3475 |
|
@@ -3494,7 +3498,7 @@ msgid "password/key"
|
|
3494 |
msgstr ""
|
3495 |
|
3496 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3497 |
-
#: src/admin.php:
|
3498 |
msgid "Key"
|
3499 |
msgstr ""
|
3500 |
|
@@ -3519,7 +3523,7 @@ msgid "Files and database WordPress backup (created by %s)"
|
|
3519 |
msgstr ""
|
3520 |
|
3521 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3522 |
-
#: src/includes/class-backup-history.php:
|
3523 |
msgid "Backup created by: %s."
|
3524 |
msgstr ""
|
3525 |
|
@@ -3551,7 +3555,7 @@ msgstr ""
|
|
3551 |
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."
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: src/admin.php:694, src/includes/class-backup-history.php:
|
3555 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3556 |
msgstr ""
|
3557 |
|
@@ -3560,20 +3564,20 @@ msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are
|
|
3560 |
msgstr ""
|
3561 |
|
3562 |
#: src/admin.php:693, src/admin.php:694,
|
3563 |
-
#: src/includes/class-backup-history.php:
|
3564 |
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))."
|
3565 |
msgstr ""
|
3566 |
|
3567 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3568 |
-
#: src/restorer.php:
|
3569 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: src/restorer.php:
|
3573 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: src/restorer.php:
|
3577 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3578 |
msgstr ""
|
3579 |
|
@@ -3585,12 +3589,12 @@ msgstr ""
|
|
3585 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: src/addons/backblaze.php:
|
3589 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3590 |
msgid "No settings were found"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: src/includes/class-backup-history.php:
|
3594 |
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."
|
3595 |
msgstr ""
|
3596 |
|
@@ -3598,7 +3602,7 @@ msgstr ""
|
|
3598 |
msgid "Rescanning remote and local storage for backup sets..."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: src/addons/googlecloud.php:
|
3602 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3603 |
msgid "(Read more)"
|
3604 |
msgstr ""
|
@@ -3616,7 +3620,7 @@ msgstr ""
|
|
3616 |
msgid "Remove"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: src/methods/s3.php:
|
3620 |
msgid "Other %s FAQs."
|
3621 |
msgstr ""
|
3622 |
|
@@ -3628,12 +3632,12 @@ msgstr ""
|
|
3628 |
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."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/class-updraftplus.php:
|
3632 |
-
#: src/restorer.php:
|
3633 |
msgid "Your hosting company must enable these functions before %s can work."
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: src/class-updraftplus.php:
|
3637 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3638 |
msgstr ""
|
3639 |
|
@@ -3649,7 +3653,7 @@ msgstr ""
|
|
3649 |
msgid "regular non-encrypted FTP"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: src/restorer.php:
|
3653 |
msgid "Backup created by:"
|
3654 |
msgstr ""
|
3655 |
|
@@ -3703,19 +3707,19 @@ msgstr ""
|
|
3703 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: src/class-updraftplus.php:
|
3707 |
msgid "The attempt to undo the double-compression succeeded."
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression failed."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: src/includes/class-wpadmin-commands.php:
|
3719 |
msgid "Constants"
|
3720 |
msgstr ""
|
3721 |
|
@@ -3764,7 +3768,7 @@ msgstr ""
|
|
3764 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: src/restorer.php:
|
3768 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3769 |
msgstr ""
|
3770 |
|
@@ -3785,11 +3789,11 @@ msgstr ""
|
|
3785 |
msgid "Messages:"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: src/restorer.php:
|
3789 |
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"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: src/restorer.php:
|
3793 |
msgid "The directory does not exist"
|
3794 |
msgstr ""
|
3795 |
|
@@ -3958,7 +3962,7 @@ msgstr ""
|
|
3958 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:679, src/admin.php:
|
3962 |
msgid "Error data:"
|
3963 |
msgstr ""
|
3964 |
|
@@ -3970,11 +3974,11 @@ msgstr ""
|
|
3970 |
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."
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: src/restorer.php:
|
3974 |
msgid "Split line to avoid exceeding maximum packet size"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: src/restorer.php:
|
3978 |
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)"
|
3979 |
msgstr ""
|
3980 |
|
@@ -4006,11 +4010,11 @@ msgstr ""
|
|
4006 |
msgid "Email reports"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: src/class-updraftplus.php:
|
4010 |
msgid "%s checksum: %s"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "files: %s"
|
4015 |
msgstr ""
|
4016 |
|
@@ -4063,19 +4067,19 @@ msgstr ""
|
|
4063 |
msgid "%d errors, %d warnings"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: src/addons/onedrive.php:
|
4067 |
-
#: src/methods/dropbox.php:
|
4068 |
msgid "%s authentication"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: src/addons/onedrive.php:
|
4072 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4073 |
-
#: src/methods/dropbox.php:
|
4074 |
-
#: src/methods/dropbox.php:
|
4075 |
msgid "%s error: %s"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: src/addons/googlecloud.php:
|
4079 |
msgid "%s logo"
|
4080 |
msgstr ""
|
4081 |
|
@@ -4083,7 +4087,7 @@ msgstr ""
|
|
4083 |
msgid "%s did not return the expected response - check your log file for more details"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: src/methods/s3.php:
|
4087 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4088 |
msgstr ""
|
4089 |
|
@@ -4104,7 +4108,7 @@ msgstr ""
|
|
4104 |
msgid "For more reporting features, use the Reporting add-on."
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: src/class-updraftplus.php:
|
4108 |
msgid "(version: %s)"
|
4109 |
msgstr ""
|
4110 |
|
@@ -4245,7 +4249,7 @@ msgstr ""
|
|
4245 |
msgid "Reporting"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: src/admin.php:
|
4249 |
msgid "Options (raw)"
|
4250 |
msgstr ""
|
4251 |
|
@@ -4253,7 +4257,7 @@ msgstr ""
|
|
4253 |
msgid "Send a report only when there are warnings/errors"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: src/restorer.php:
|
4257 |
msgid "Content URL:"
|
4258 |
msgstr ""
|
4259 |
|
@@ -4397,7 +4401,7 @@ msgstr ""
|
|
4397 |
msgid "Your web-server does not have the %s module installed."
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: src/addons/googlecloud.php:
|
4401 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4402 |
msgstr ""
|
4403 |
|
@@ -4417,7 +4421,7 @@ msgstr ""
|
|
4417 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: src/restorer.php:
|
4421 |
msgid "Site home:"
|
4422 |
msgstr ""
|
4423 |
|
@@ -4433,7 +4437,7 @@ msgstr ""
|
|
4433 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: src/addons/azure.php:
|
4437 |
#: src/methods/stream-base.php:149
|
4438 |
msgid "Upload failed"
|
4439 |
msgstr ""
|
@@ -4577,27 +4581,27 @@ msgstr ""
|
|
4577 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/restorer.php:
|
4581 |
msgid "file"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: src/restorer.php:
|
4585 |
msgid "folder"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: src/restorer.php:
|
4589 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: src/class-updraftplus.php:
|
4593 |
msgid "The backup has not finished; a resumption is scheduled"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: src/addons/onedrive.php:
|
4601 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4602 |
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)."
|
4603 |
msgstr ""
|
@@ -4682,23 +4686,23 @@ msgstr ""
|
|
4682 |
msgid "Support"
|
4683 |
msgstr "সহায়তা"
|
4684 |
|
4685 |
-
#: src/class-updraftplus.php:
|
4686 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "This database backup is missing core WordPress tables: %s"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
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."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
msgid "%s version: %s"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4703 |
msgstr ""
|
4704 |
|
@@ -4783,15 +4787,15 @@ msgstr ""
|
|
4783 |
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?"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: src/includes/class-wpadmin-commands.php:
|
4787 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4796 |
msgstr ""
|
4797 |
|
@@ -4831,16 +4835,16 @@ msgstr ""
|
|
4831 |
msgid "WordPress root directory server path: %s"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: src/methods/dreamobjects.php:
|
4835 |
msgid "%s end-point"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: src/methods/s3.php:
|
4839 |
msgid "... and many more!"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: src/methods/s3generic.php:
|
4843 |
-
#: src/methods/s3generic.php:
|
4844 |
msgid "S3 (Compatible)"
|
4845 |
msgstr ""
|
4846 |
|
@@ -4848,11 +4852,11 @@ msgstr ""
|
|
4848 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: src/admin.php:
|
4852 |
msgid "Looking for %s archive: file name: %s"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Final checks"
|
4857 |
msgstr ""
|
4858 |
|
@@ -4880,7 +4884,7 @@ msgstr ""
|
|
4880 |
msgid "Processing files - please wait..."
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#: src/admin.php:
|
4884 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4885 |
msgid "Please consult this FAQ for help on what to do about it."
|
4886 |
msgstr ""
|
@@ -4889,30 +4893,30 @@ msgstr ""
|
|
4889 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: src/class-updraftplus.php:
|
4893 |
msgid "Failed to open database file."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: src/admin.php:
|
4897 |
msgid "Known backups (raw)"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: src/restorer.php:
|
4901 |
msgid "Files found:"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: src/restorer.php:
|
4905 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: src/admin.php:
|
4909 |
msgid "file is size:"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: src/addons/googlecloud.php:
|
4913 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4914 |
-
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:
|
4915 |
-
#: src/class-updraftplus.php:
|
4916 |
msgid "Go here for more information."
|
4917 |
msgstr ""
|
4918 |
|
@@ -4920,7 +4924,7 @@ msgstr ""
|
|
4920 |
msgid "Some files are still downloading or being processed - please wait."
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: src/class-updraftplus.php:
|
4924 |
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."
|
4925 |
msgstr ""
|
4926 |
|
@@ -4964,7 +4968,7 @@ msgstr ""
|
|
4964 |
msgid "Error - no such file exists at %s"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: src/addons/azure.php:
|
4968 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4969 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4970 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
@@ -4993,10 +4997,10 @@ msgstr ""
|
|
4993 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4994 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4995 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
4996 |
-
#: src/class-updraftplus.php:
|
4997 |
-
#: src/class-updraftplus.php:
|
4998 |
-
#: src/class-updraftplus.php:
|
4999 |
-
#: src/methods/s3.php:
|
5000 |
msgid "Error: %s"
|
5001 |
msgstr ""
|
5002 |
|
@@ -5036,7 +5040,7 @@ msgstr ""
|
|
5036 |
msgid "Warnings encountered:"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: src/class-updraftplus.php:
|
5040 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5041 |
msgstr ""
|
5042 |
|
@@ -5076,40 +5080,40 @@ msgstr ""
|
|
5076 |
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."
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: src/methods/s3.php:
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
msgid "Please check your access credentials."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5088 |
msgid "The error reported by %s was:"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: src/restorer.php:
|
5092 |
msgid "Please supply the requested information, and then continue."
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: src/class-updraftplus.php:
|
5096 |
msgid "Site information:"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: src/restorer.php:
|
5100 |
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."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: src/admin.php:2445, src/class-updraftplus.php:
|
5104 |
msgid "Warning:"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: src/class-updraftplus.php:
|
5108 |
#: src/restorer.php:184
|
5109 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5110 |
msgstr ""
|
5111 |
|
5112 |
-
#: src/admin.php:
|
5113 |
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."
|
5114 |
msgstr ""
|
5115 |
|
@@ -5185,7 +5189,7 @@ msgstr ""
|
|
5185 |
msgid "News"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:
|
5189 |
msgid "Backup set not found"
|
5190 |
msgstr ""
|
5191 |
|
@@ -5350,18 +5354,18 @@ msgid "Directory path"
|
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5353 |
-
#: src/addons/sftp.php:443, src/addons/webdav.php:
|
5354 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5355 |
#: src/udaddons/options.php:135
|
5356 |
msgid "Password"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: src/addons/sftp.php:429, src/addons/webdav.php:
|
5360 |
msgid "Port"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5364 |
-
#: src/addons/webdav.php:
|
5365 |
msgid "Host"
|
5366 |
msgstr ""
|
5367 |
|
@@ -5409,7 +5413,7 @@ msgstr ""
|
|
5409 |
msgid "Over-write wp-config.php"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:
|
5413 |
msgid "WordPress Core"
|
5414 |
msgstr ""
|
5415 |
|
@@ -5417,14 +5421,14 @@ msgstr ""
|
|
5417 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: src/addons/googlecloud.php:
|
5421 |
-
#: src/addons/googlecloud.php:
|
5422 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5423 |
#: src/methods/stream-base.php:353
|
5424 |
msgid "Failed"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#: src/addons/webdav.php:
|
5428 |
msgid "WebDAV URL"
|
5429 |
msgstr ""
|
5430 |
|
@@ -5475,31 +5479,31 @@ msgstr ""
|
|
5475 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: src/addons/onedrive.php:
|
5479 |
msgid "Your %s account name: %s"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/methods/dropbox.php:
|
5483 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "you have authenticated your %s account"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "there's an add-on for that."
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "Backups are saved in"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Need to use sub-folders?"
|
5504 |
msgstr ""
|
5505 |
|
@@ -5512,96 +5516,96 @@ msgstr ""
|
|
5512 |
msgid "You do not appear to be authenticated with Dropbox"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: src/methods/s3.php:
|
5516 |
msgid "The communication with %s was not encrypted."
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/addons/googlecloud.php:
|
5524 |
msgid "We accessed the bucket, and were able to create files within it."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:
|
5528 |
-
#: src/methods/s3.php:
|
5529 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5530 |
msgstr ""
|
5531 |
|
5532 |
-
#: src/addons/googlecloud.php:
|
5533 |
-
#: src/methods/s3.php:
|
5534 |
msgid "Failure"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: src/addons/backblaze.php:
|
5538 |
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)."
|
5539 |
msgstr ""
|
5540 |
|
5541 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5542 |
-
#: src/methods/s3.php:
|
5543 |
msgid "Region"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:
|
5547 |
-
#: src/methods/s3.php:
|
5548 |
msgid "Failure: No bucket details were given."
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "API secret"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "%s location"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s secret key"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s access key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
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."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
-
#: src/methods/s3.php:
|
5581 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: src/methods/s3.php:
|
5585 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s chunk %s: upload failed"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s error: file %s was shortened unexpectedly"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5606 |
msgstr ""
|
5607 |
|
@@ -5626,32 +5630,32 @@ msgid "Failure: No container details were given."
|
|
5626 |
msgstr ""
|
5627 |
|
5628 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5629 |
-
#: src/addons/webdav.php:
|
5630 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5631 |
msgid "Username"
|
5632 |
msgstr "ব্যবহারকারী নাম"
|
5633 |
|
5634 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5635 |
-
#: src/methods/s3.php:
|
5636 |
msgid "API key"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5640 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5641 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5642 |
-
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:
|
5643 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5644 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5645 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5646 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5647 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5648 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5649 |
-
#: src/methods/s3.php:
|
5650 |
msgid "Failure: No %s was given."
|
5651 |
msgstr ""
|
5652 |
|
5653 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5654 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5655 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5656 |
msgstr ""
|
5657 |
|
@@ -5686,7 +5690,7 @@ msgstr ""
|
|
5686 |
msgid "Test %s Settings"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: src/class-updraftplus.php:
|
5690 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5691 |
msgid "Error opening local file: Failed to download"
|
5692 |
msgstr ""
|
@@ -5698,7 +5702,7 @@ msgstr ""
|
|
5698 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5699 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5700 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5701 |
-
#: src/methods/s3.php:
|
5702 |
msgid "%s Error: Failed to upload"
|
5703 |
msgstr ""
|
5704 |
|
@@ -5724,34 +5728,34 @@ msgstr ""
|
|
5724 |
msgid "Authenticate with Google"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: src/addons/googlecloud.php:
|
5728 |
#: src/methods/googledrive.php:1196
|
5729 |
msgid "Client Secret"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
-
#: src/addons/googlecloud.php:
|
5733 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:
|
5737 |
#: src/methods/googledrive.php:1192
|
5738 |
msgid "Client ID"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: src/addons/googlecloud.php:
|
5742 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:
|
5746 |
msgid "Select 'Web Application' as the application type."
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:
|
5750 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5754 |
-
#: src/addons/googlecloud.php:
|
5755 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5756 |
#: src/methods/googledrive.php:558
|
5757 |
msgid "Account is not authorized."
|
@@ -5771,21 +5775,21 @@ msgstr ""
|
|
5771 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: src/addons/googlecloud.php:
|
5775 |
#: src/methods/googledrive.php:441
|
5776 |
msgid "you have authenticated your %s account."
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: src/addons/googlecloud.php:
|
5780 |
-
#: src/addons/onedrive.php:
|
5781 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5782 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5783 |
-
#: src/methods/s3.php:
|
5784 |
msgid "Success"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: src/addons/onedrive.php:
|
5788 |
-
#: src/methods/dropbox.php:
|
5789 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5790 |
msgstr ""
|
5791 |
|
@@ -5817,58 +5821,58 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
|
|
5817 |
msgstr ""
|
5818 |
|
5819 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5820 |
-
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:
|
5821 |
-
#: src/restorer.php:
|
5822 |
msgid "OK"
|
5823 |
msgstr "ঠিক আছে"
|
5824 |
|
5825 |
-
#: src/restorer.php:
|
5826 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: src/addons/migrator.php:1285, src/restorer.php:
|
5830 |
msgid "the database query being run was:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: src/restorer.php:
|
5834 |
msgid "will restore as:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: src/class-updraftplus.php:
|
5838 |
-
#: src/restorer.php:
|
5839 |
msgid "Old table prefix:"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5843 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5844 |
msgid "Backup of:"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: src/restorer.php:
|
5848 |
msgid "Failed to open database file"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: src/restorer.php:
|
5852 |
msgid "Failed to find database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: src/restorer.php:
|
5856 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: src/restorer.php:
|
5860 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: src/restorer.php:
|
5864 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: src/restorer.php:
|
5868 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: src/restorer.php:
|
5872 |
msgid "Failed to create a temporary directory"
|
5873 |
msgstr ""
|
5874 |
|
@@ -5912,19 +5916,19 @@ msgstr ""
|
|
5912 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: src/admin.php:
|
5916 |
msgid "Could not find one of the files for restoration"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Error message"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "The backup records do not contain information about the proper size of this file."
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "Archive is expected to be size:"
|
5929 |
msgstr ""
|
5930 |
|
@@ -5965,7 +5969,7 @@ msgid "Your web server's PHP/Curl installation does not support https access. Co
|
|
5965 |
msgstr ""
|
5966 |
|
5967 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5968 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5969 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5970 |
msgstr ""
|
5971 |
|
@@ -6253,7 +6257,7 @@ msgstr ""
|
|
6253 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6254 |
msgstr ""
|
6255 |
|
6256 |
-
#: src/class-updraftplus.php:
|
6257 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6258 |
msgstr ""
|
6259 |
|
@@ -6306,10 +6310,10 @@ msgstr ""
|
|
6306 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6307 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6308 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6309 |
-
#: src/addons/sftp.php:837, src/addons/webdav.php:
|
6310 |
-
#: src/admin.php:680, src/admin.php:
|
6311 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6312 |
-
#: src/methods/updraftvault.php:522, src/restorer.php:
|
6313 |
msgid "Error:"
|
6314 |
msgstr ""
|
6315 |
|
@@ -6383,14 +6387,14 @@ msgstr ""
|
|
6383 |
|
6384 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6385 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6386 |
-
#: src/admin.php:3682, src/admin.php:
|
6387 |
#: src/includes/class-wpadmin-commands.php:147,
|
6388 |
-
#: src/includes/class-wpadmin-commands.php:
|
6389 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6390 |
msgid "Database"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: src/admin.php:311, src/admin.php:
|
6394 |
msgid "Files"
|
6395 |
msgstr ""
|
6396 |
|
@@ -6442,7 +6446,7 @@ msgstr "প্রধান ডেভেলপার এর হোমপেজে
|
|
6442 |
msgid "UpdraftPlus.Com"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: src/admin.php:
|
6446 |
msgid "Your settings have been wiped."
|
6447 |
msgstr ""
|
6448 |
|
@@ -6503,11 +6507,11 @@ msgid "Download failed"
|
|
6503 |
msgstr ""
|
6504 |
|
6505 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6506 |
-
#: src/class-updraftplus.php:
|
6507 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6508 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6509 |
-
#: src/methods/stream-base.php:220, src/restorer.php:
|
6510 |
-
#: src/restorer.php:
|
6511 |
msgid "Error"
|
6512 |
msgstr ""
|
6513 |
|
@@ -6548,7 +6552,7 @@ msgstr ""
|
|
6548 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6549 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6550 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6551 |
-
#: src/methods/s3.php:
|
6552 |
#: src/methods/updraftvault.php:301,
|
6553 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6554 |
#: src/udaddons/updraftplus-addons.php:253
|
@@ -6580,22 +6584,22 @@ msgstr ""
|
|
6580 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
-
#: src/addons/azure.php:
|
6584 |
-
#: src/methods/googledrive.php:1082, src/methods/s3.php:
|
6585 |
msgid "File not found"
|
6586 |
msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
|
6587 |
|
6588 |
-
#: src/class-updraftplus.php:
|
6589 |
msgid "The decryption key used:"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: src/class-updraftplus.php:
|
6593 |
-
#: src/restorer.php:
|
6594 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6595 |
msgstr ""
|
6596 |
|
6597 |
-
#: src/class-updraftplus.php:
|
6598 |
-
#: src/restorer.php:
|
6599 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6600 |
msgstr ""
|
6601 |
|
@@ -6603,11 +6607,11 @@ msgstr ""
|
|
6603 |
msgid "Could not open the backup file for writing"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: src/class-updraftplus.php:
|
6607 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: src/class-updraftplus.php:
|
6611 |
msgid "Could not read the directory"
|
6612 |
msgstr "ডিরেক্টরিটি পড়া যায়নি"
|
6613 |
|
@@ -6619,11 +6623,11 @@ msgstr ""
|
|
6619 |
msgid "WordPress backup is complete"
|
6620 |
msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
|
6621 |
|
6622 |
-
#: src/class-updraftplus.php:
|
6623 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "The backup apparently succeeded and is now complete"
|
6628 |
msgstr ""
|
6629 |
|
@@ -6631,23 +6635,23 @@ msgstr ""
|
|
6631 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: src/class-updraftplus.php:
|
6635 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6636 |
msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "Others"
|
6640 |
msgstr "অন্যান্য"
|
6641 |
|
6642 |
-
#: src/addons/multisite.php:465, src/class-updraftplus.php:
|
6643 |
msgid "Uploads"
|
6644 |
msgstr "আপলোডসমূহ"
|
6645 |
|
6646 |
-
#: src/class-updraftplus.php:
|
6647 |
msgid "Themes"
|
6648 |
msgstr "থিমসমূহ"
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Plugins"
|
6652 |
msgstr "প্লাগইন"
|
6653 |
|
11 |
"Language: bn\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/restorer.php:188
|
43 |
+
msgid "Failed to read from the working directory."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/restorer.php:187
|
47 |
+
msgid "Failed to find a manifest file in the backup."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/restorer.php:186
|
51 |
+
msgid "Failed to read the manifest file from backup."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/includes/class-wpadmin-commands.php:207
|
55 |
+
msgid "Select your incremental restore point"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: src/addons/morefiles.php:73
|
59 |
msgid "(None configured)"
|
60 |
msgstr ""
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: src/admin.php:4602
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: src/admin.php:4598
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: src/addons/backblaze.php:475
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/restorer.php:2028
|
143 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
144 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
+
#: src/class-updraftplus.php:4411
|
149 |
msgid "Your chosen replacement collation"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: src/class-updraftplus.php:4388
|
153 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: src/class-updraftplus.php:4388
|
157 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
158 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
159 |
msgstr[0] ""
|
167 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: src/addons/azure.php:631
|
171 |
msgid "%s Prefix"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: src/addons/azure.php:626
|
175 |
msgid "%s Container"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/addons/azure.php:621
|
179 |
msgid "%s Key"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: src/addons/azure.php:617
|
183 |
msgid "%s Account Name"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: src/addons/googlecloud.php:692
|
187 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: src/addons/googlecloud.php:690
|
191 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
192 |
msgstr ""
|
193 |
|
217 |
msgstr[0] ""
|
218 |
msgstr[1] ""
|
219 |
|
220 |
+
#: src/restorer.php:1990
|
221 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: src/class-updraftplus.php:4364
|
225 |
msgid "Your chosen character set to use instead:"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4354
|
229 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4354
|
233 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
234 |
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."
|
235 |
msgstr[0] ""
|
283 |
msgid "Please enter a valid URL e.g http://example.com"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: src/addons/backblaze.php:633
|
287 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/addons/backblaze.php:632
|
291 |
msgid "some/path"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: src/addons/backblaze.php:632
|
295 |
msgid "Bucket name"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: src/addons/backblaze.php:631
|
299 |
msgid "Backup path"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: src/addons/backblaze.php:626
|
303 |
msgid "Application key"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
307 |
msgid "here"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: src/addons/backblaze.php:621
|
311 |
msgid "Get these settings from %s, or sign up %s."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: src/addons/backblaze.php:431
|
315 |
msgid "Account Key"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
319 |
msgid "Account ID"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: src/class-updraftplus.php:4196
|
323 |
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."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
327 |
msgid "the migrator add-on"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: src/class-updraftplus.php:4194
|
331 |
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."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/class-updraftplus.php:4192
|
335 |
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."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/class-updraftplus.php:4187
|
339 |
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."
|
340 |
msgstr ""
|
341 |
|
355 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
359 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
360 |
+
#: src/class-updraftplus.php:2427
|
361 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
365 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
366 |
+
#: src/class-updraftplus.php:2420
|
367 |
msgid "A PHP exception (%s) has occurred: %s"
|
368 |
msgstr ""
|
369 |
|
419 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: src/admin.php:4808
|
423 |
msgid "Value"
|
424 |
msgstr ""
|
425 |
|
431 |
msgid "Encrypted login failed; trying non-encrypted"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: src/addons/azure.php:594
|
435 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
436 |
msgstr ""
|
437 |
|
443 |
msgid "Cloud Files"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: src/admin.php:4553
|
447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: src/admin.php:4512
|
451 |
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."
|
452 |
msgstr ""
|
453 |
|
456 |
msgid "UpdraftVault"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: src/includes/class-wpadmin-commands.php:513
|
460 |
msgid "archive"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: src/includes/class-wpadmin-commands.php:504
|
464 |
msgid "Extra database"
|
465 |
msgstr ""
|
466 |
|
504 |
msgid "Browse contents"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: src/restorer.php:1811
|
508 |
msgid "Skipped tables:"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: src/class-updraftplus.php:4476
|
512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
513 |
msgstr ""
|
514 |
|
717 |
msgid "Recommended: optimize your database with WP-Optimize."
|
718 |
msgstr ""
|
719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
721 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
722 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
764 |
msgid "Europe (Ireland)"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr ""
|
976 |
msgid "Export / import settings"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: src/restorer.php:2030
|
980 |
msgid "Processing table (%s)"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: src/restorer.php:1777
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr ""
|
986 |
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/methods/dropbox.php:785
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/methods/dropbox.php:631
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr ""
|
998 |
|
1060 |
msgid "US East (Ohio)"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/addons/onedrive.php:1051
|
1064 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/addons/onedrive.php:700
|
1068 |
msgid "Account is not authorized (%s)."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1072 |
msgid "Your IP address:"
|
1073 |
msgstr "আপনার আইপি অ্যাড্রেসঃ"
|
1074 |
|
1075 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1076 |
#: src/udaddons/updraftplus-addons.php:887
|
1077 |
msgid "To remove any block, please go here."
|
1078 |
msgstr "কোন ব্লক সরাতে এখানে যান।"
|
1079 |
|
1080 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr ""
|
1083 |
|
1105 |
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."
|
1106 |
msgstr "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
|
1107 |
|
1108 |
+
#: src/addons/webdav.php:216
|
1109 |
msgid "Path"
|
1110 |
msgstr "রাস্তা (Path)"
|
1111 |
|
1112 |
+
#: src/addons/webdav.php:211
|
1113 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1114 |
msgstr "ডিফল্ট ভ্যালু ব্যাবহার করতে এটা ফাকা রাখুন (webdav এর জন্য 80, webdavs এর জন্য 443)"
|
1115 |
|
1116 |
+
#: src/addons/webdav.php:203
|
1117 |
msgid "Enter any path in the field below."
|
1118 |
msgstr "এই স্থানে যেকোন রাস্তা (Path) প্রবেশ করান।"
|
1119 |
|
1120 |
+
#: src/addons/webdav.php:203
|
1121 |
msgid "A host name cannot contain a slash."
|
1122 |
msgstr "\"host name\" এর ক্ষত্রে স্ল্যাশ ব্যাবহার করা যাবে না।"
|
1123 |
|
1124 |
+
#: src/addons/webdav.php:178
|
1125 |
msgid "Protocol (SSL or not)"
|
1126 |
msgstr "প্রোটোকল (SSL অথবা SSL না)"
|
1127 |
|
1128 |
+
#: src/addons/webdav.php:173
|
1129 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1130 |
msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ করার মাধ্যমে সৃষ্ট। আপনি যদি বিস্তারিত না জানেন, তাহলে আপনার WebDAV প্রোভাইডারকে জিজ্ঞেস করুন।"
|
1131 |
|
1133 |
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."
|
1134 |
msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
|
1135 |
|
1136 |
+
#: src/methods/s3.php:1129
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
|
1139 |
|
1140 |
+
#: src/methods/s3.php:126
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr "কোন সেটিং পাওয়া যায়নি - দয়া করে সেটিং ট্যাবে গিয়ে আপনার সেটিং যাচাই করুন।"
|
1143 |
|
1243 |
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."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: src/class-updraftplus.php:1835
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr "সাইজঃ %s MB"
|
1249 |
|
1255 |
msgid "Now"
|
1256 |
msgstr "এখন"
|
1257 |
|
1258 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr ""
|
1261 |
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: src/admin.php:4548
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
|
1371 |
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: src/restorer.php:1800
|
1435 |
msgid "Uploads URL:"
|
1436 |
msgstr ""
|
1437 |
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: src/class-updraftplus.php:4260
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: src/class-updraftplus.php:4260
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr ""
|
1453 |
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: src/admin.php:4086
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr ""
|
1527 |
|
1553 |
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)."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: src/admin.php:4422
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/admin.php:4420
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/admin.php:4420
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/admin.php:4420
|
1569 |
msgid "settings"
|
1570 |
msgstr "সেটিংস"
|
1571 |
|
1572 |
+
#: src/admin.php:4420
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr ""
|
1575 |
|
1626 |
msgid "Advanced Tools"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: src/addons/googlecloud.php:1049
|
1630 |
msgid "Bucket location"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: src/addons/googlecloud.php:1044
|
1634 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1638 |
msgid "This setting applies only when a new bucket is being created."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: src/addons/googlecloud.php:1033
|
1642 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: src/addons/googlecloud.php:979
|
1646 |
msgid "Do not confuse %s with %s - they are separate things."
|
1647 |
msgstr ""
|
1648 |
|
1704 |
msgid "Standard"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: src/addons/azure.php:632
|
1708 |
msgid "container"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: src/addons/azure.php:632
|
1712 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: src/addons/azure.php:631
|
1716 |
msgid "optional"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: src/addons/azure.php:627
|
1720 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: src/addons/azure.php:627
|
1724 |
msgid "Enter the path of the %s you wish to use here."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/addons/azure.php:618
|
1728 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1732 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1733 |
msgid "Azure"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: src/addons/azure.php:598
|
1737 |
msgid "Create Azure credentials in your Azure developer console."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: src/addons/azure.php:562
|
1741 |
msgid "Could not create the container"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: src/addons/azure.php:413
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: src/class-updraftplus.php:2926
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr ""
|
1751 |
|
1773 |
msgid "Not installed"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1777 |
msgid "Storage class"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: src/addons/googlecloud.php:1033
|
1781 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: src/addons/googlecloud.php:1033
|
1785 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: src/addons/googlecloud.php:1032
|
1789 |
msgid "Bucket"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: src/addons/googlecloud.php:1028
|
1793 |
msgid "Otherwise, you can leave it blank."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: src/addons/googlecloud.php:1028
|
1797 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: src/addons/googlecloud.php:1028
|
1801 |
msgid "Enter the ID of the %s project you wish to use here."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: src/addons/googlecloud.php:991
|
1805 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: src/addons/googlecloud.php:902
|
1809 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: src/addons/googlecloud.php:1026
|
1813 |
msgid "Project ID"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: src/addons/googlecloud.php:759
|
1817 |
msgid "You must save and authenticate before you can test your settings."
|
1818 |
msgstr ""
|
1819 |
|
1822 |
msgstr ""
|
1823 |
|
1824 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1825 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1826 |
msgid "You do not have access to this bucket."
|
1827 |
msgstr ""
|
1828 |
|
1829 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1830 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1831 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1832 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1833 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1834 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1835 |
msgid "Google Cloud"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1839 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1840 |
+
#: src/addons/googlecloud.php:941
|
1841 |
msgid "%s Service Exception."
|
1842 |
msgstr ""
|
1843 |
|
1845 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: src/restorer.php:827
|
1849 |
msgid "Deferring..."
|
1850 |
msgstr ""
|
1851 |
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: src/restorer.php:2354
|
1918 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: src/restorer.php:2354
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr ""
|
1924 |
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: src/class-updraftplus.php:4333
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: src/class-updraftplus.php:4333
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr ""
|
1936 |
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr "ভল্ট আপডেট করুন"
|
2110 |
|
2111 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2112 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr "ডিলিট ব্যর্থ:"
|
2115 |
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr ""
|
2147 |
|
|
|
|
|
|
|
|
|
2148 |
#: src/addons/migrator.php:2405
|
2149 |
msgid "Your new key:"
|
2150 |
msgstr "আপনার নতুন চাবি:"
|
2350 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: src/restorer.php:2356
|
2354 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2355 |
msgstr ""
|
2356 |
|
2382 |
msgid "You have made changes to your settings, and not saved."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: src/addons/onedrive.php:1111
|
2386 |
msgid "N.B. %s is not case-sensitive."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: src/addons/onedrive.php:1101
|
2390 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2394 |
+
#: src/addons/onedrive.php:1074
|
2395 |
msgid "For longer help, including screenshots, follow this link."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: src/addons/onedrive.php:1067
|
2399 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: src/addons/onedrive.php:1059
|
2403 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: src/addons/azure.php:592
|
2407 |
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)."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2411 |
msgid "%s authorisation failed:"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2415 |
+
#: src/addons/onedrive.php:1104
|
2416 |
msgid "OneDrive"
|
2417 |
msgstr "OneDrive"
|
2418 |
|
2419 |
+
#: src/addons/onedrive.php:691
|
2420 |
msgid "Please re-authorize the connection to your %s account."
|
2421 |
msgstr ""
|
2422 |
|
2424 |
msgid "configure it here"
|
2425 |
msgstr "এটিকে এইখানে কনফিগার করুন"
|
2426 |
|
2427 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2428 |
msgid "To remove the block, please go here."
|
2429 |
msgstr "ব্লক সরাতে, এখানে যান।"
|
2430 |
|
2569 |
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)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: src/methods/s3.php:910
|
2573 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2577 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2581 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2585 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2586 |
#: src/udaddons/updraftplus-addons.php:887
|
2587 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2591 |
#: src/udaddons/updraftplus-addons.php:887
|
2592 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2593 |
msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
|
2594 |
|
2595 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2596 |
#: src/udaddons/updraftplus-addons.php:887
|
2597 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2598 |
msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
|
2599 |
|
2600 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2601 |
msgid "Premium WooCommerce plugins"
|
2602 |
msgstr "প্রিমিয়াম WooCommerce প্লাগিনসমূহ"
|
2603 |
|
2604 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2605 |
msgid "Free two-factor security plugin"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2609 |
+
msgid "More quality plugins"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2613 |
msgid "Go to the shop."
|
2614 |
msgstr "দোকানে যান।"
|
2615 |
|
2616 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2617 |
msgid "Compare with the free version"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2621 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2622 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2623 |
msgid "UpdraftPlus Premium"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
|
|
|
|
|
|
|
|
2627 |
msgid "Free Newsletter"
|
2628 |
msgstr "বিনামূল্যে নিউজলেটার"
|
2629 |
|
|
|
|
|
|
|
|
|
2630 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2631 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
|
2632 |
msgid "Dismiss (for %s months)"
|
2633 |
msgstr ""
|
2634 |
|
2669 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: src/methods/s3.php:177, src/methods/s3.php:178, src/methods/s3.php:179,
|
2673 |
+
#: src/methods/s3.php:187, src/methods/s3.php:188, src/methods/s3.php:189
|
2674 |
msgid "%s Error: Failed to initialise"
|
2675 |
msgstr "%s ত্রুটি: ইনিশিয়ালাইজ করতে ব্যর্থ"
|
2676 |
|
2715 |
msgid "Manual"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: src/restorer.php:2333
|
2719 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2720 |
msgid "An error (%s) occurred:"
|
2721 |
msgstr ""
|
2856 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: src/class-updraftplus.php:4249
|
2860 |
msgid "Backup label:"
|
2861 |
msgstr ""
|
2862 |
|
2880 |
msgid "Your label for this backup (optional)"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1162
|
2884 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2885 |
msgstr ""
|
2886 |
|
2900 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: src/class-updraftplus.php:4268
|
2904 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: src/class-updraftplus.php:4268
|
2908 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2909 |
msgstr ""
|
2910 |
|
2941 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: src/class-updraftplus.php:4241
|
2945 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4241
|
2949 |
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."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4241
|
2953 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/class-updraftplus.php:4241
|
2957 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2958 |
msgstr ""
|
2959 |
|
2998 |
msgid "Start backup"
|
2999 |
msgstr "ব্যাকআপ শুরু করুন"
|
3000 |
|
3001 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
3002 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3003 |
msgstr ""
|
3004 |
|
3034 |
msgid "Memory limit"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: src/class-updraftplus.php:4682, src/restorer.php:1608
|
3038 |
msgid "restoration"
|
3039 |
msgstr ""
|
3040 |
|
3097 |
msgid "search term"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: src/restorer.php:2361
|
3101 |
msgid "Too many database errors have occurred - aborting"
|
3102 |
msgstr ""
|
3103 |
|
3133 |
msgid "Free disk space in account:"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: src/admin.php:4519, src/templates/wp-admin/settings/tab-status.php:27
|
3137 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3138 |
msgstr ""
|
3139 |
|
3228 |
msgid "user"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: src/class-updraftplus.php:1832
|
3232 |
msgid "External database (%s)"
|
3233 |
msgstr ""
|
3234 |
|
3240 |
msgid "failed to access parent folder"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3244 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:421
|
3245 |
msgid "However, subsequent access attempts failed:"
|
3246 |
msgstr ""
|
3247 |
|
3277 |
msgid "use UpdraftPlus Premium"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: src/class-updraftplus.php:4095
|
3281 |
msgid "Decryption failed. The database file is encrypted."
|
3282 |
msgstr ""
|
3283 |
|
3285 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: src/restorer.php:1876, src/restorer.php:2302, src/restorer.php:2343,
|
3289 |
+
#: src/restorer.php:2356
|
3290 |
msgid "An error occurred on the first %s command - aborting run"
|
3291 |
msgstr ""
|
3292 |
|
3306 |
msgid "In %s, path names are case sensitive."
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: src/addons/azure.php:632, src/addons/google-enhanced.php:76,
|
3310 |
+
#: src/addons/onedrive.php:1111
|
3311 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1033,
|
3315 |
+
#: src/addons/onedrive.php:1111
|
3316 |
msgid "e.g. %s"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1111
|
3320 |
msgid "Enter the path of the %s folder you wish to use here."
|
3321 |
msgstr ""
|
3322 |
|
3360 |
msgid "Failed to upload %s"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
3364 |
msgid "Success:"
|
3365 |
msgstr ""
|
3366 |
|
3368 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:610
|
3372 |
msgid "(You appear to be already authenticated)."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: src/methods/dropbox.php:606
|
3376 |
msgid "Dropbox"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:606
|
3380 |
msgid "Authenticate with %s"
|
3381 |
msgstr ""
|
3382 |
|
3407 |
msgid "%s error - failed to access the container"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3411 |
+
#: src/methods/dropbox.php:663, src/methods/googledrive.php:1248
|
3412 |
msgid "Account holder's name: %s."
|
3413 |
msgstr ""
|
3414 |
|
3424 |
msgid "<strong>This is NOT a folder name</strong>."
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3428 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3429 |
msgid "Folder"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3433 |
#: src/methods/googledrive.php:1122
|
3434 |
msgid "%s download: failed: file not found"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:441
|
3438 |
msgid "Name: %s."
|
3439 |
msgstr ""
|
3440 |
|
3473 |
msgid "Failed to unpack the archive"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: src/class-updraftplus.php:1356
|
3477 |
msgid "Error - failed to download the file"
|
3478 |
msgstr ""
|
3479 |
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3501 |
+
#: src/admin.php:4808
|
3502 |
msgid "Key"
|
3503 |
msgstr ""
|
3504 |
|
3523 |
msgstr ""
|
3524 |
|
3525 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3526 |
+
#: src/includes/class-backup-history.php:349
|
3527 |
msgid "Backup created by: %s."
|
3528 |
msgstr ""
|
3529 |
|
3555 |
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."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: src/admin.php:694, src/includes/class-backup-history.php:356
|
3559 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3560 |
msgstr ""
|
3561 |
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#: src/admin.php:693, src/admin.php:694,
|
3567 |
+
#: src/includes/class-backup-history.php:356
|
3568 |
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))."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3572 |
+
#: src/restorer.php:1577
|
3573 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: src/restorer.php:869, src/restorer.php:917
|
3577 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: src/restorer.php:724
|
3581 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3582 |
msgstr ""
|
3583 |
|
3589 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: src/addons/backblaze.php:557, src/methods/cloudfiles.php:234,
|
3593 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3594 |
msgid "No settings were found"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: src/includes/class-backup-history.php:524
|
3598 |
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."
|
3599 |
msgstr ""
|
3600 |
|
3602 |
msgid "Rescanning remote and local storage for backup sets..."
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049,
|
3606 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3607 |
msgid "(Read more)"
|
3608 |
msgstr ""
|
3620 |
msgid "Remove"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: src/methods/s3.php:861
|
3624 |
msgid "Other %s FAQs."
|
3625 |
msgstr ""
|
3626 |
|
3632 |
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."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330,
|
3636 |
+
#: src/restorer.php:1608
|
3637 |
msgid "Your hosting company must enable these functions before %s can work."
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330
|
3641 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3642 |
msgstr ""
|
3643 |
|
3653 |
msgid "regular non-encrypted FTP"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: src/restorer.php:1784
|
3657 |
msgid "Backup created by:"
|
3658 |
msgstr ""
|
3659 |
|
3707 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: src/class-updraftplus.php:4732
|
3711 |
msgid "The attempt to undo the double-compression succeeded."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: src/class-updraftplus.php:4709, src/class-updraftplus.php:4730
|
3715 |
msgid "The attempt to undo the double-compression failed."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: src/class-updraftplus.php:4702
|
3719 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: src/includes/class-wpadmin-commands.php:313
|
3723 |
msgid "Constants"
|
3724 |
msgstr ""
|
3725 |
|
3768 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: src/restorer.php:717
|
3772 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3773 |
msgstr ""
|
3774 |
|
3789 |
msgid "Messages:"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: src/restorer.php:2196
|
3793 |
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"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: src/restorer.php:490
|
3797 |
msgid "The directory does not exist"
|
3798 |
msgstr ""
|
3799 |
|
3962 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: src/admin.php:679, src/admin.php:4232
|
3966 |
msgid "Error data:"
|
3967 |
msgstr ""
|
3968 |
|
3974 |
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."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: src/restorer.php:1851
|
3978 |
msgid "Split line to avoid exceeding maximum packet size"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: src/restorer.php:1731
|
3982 |
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)"
|
3983 |
msgstr ""
|
3984 |
|
4010 |
msgid "Email reports"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: src/class-updraftplus.php:1840, src/class-updraftplus.php:1845
|
4014 |
msgid "%s checksum: %s"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/class-updraftplus.php:1813, src/class-updraftplus.php:1815
|
4018 |
msgid "files: %s"
|
4019 |
msgstr ""
|
4020 |
|
4067 |
msgid "%d errors, %d warnings"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:748,
|
4071 |
+
#: src/methods/dropbox.php:770
|
4072 |
msgid "%s authentication"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:529,
|
4076 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:748,
|
4077 |
+
#: src/methods/dropbox.php:770, src/methods/dropbox.php:785,
|
4078 |
+
#: src/methods/dropbox.php:798, src/methods/dropbox.php:941
|
4079 |
msgid "%s error: %s"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:575
|
4083 |
msgid "%s logo"
|
4084 |
msgstr ""
|
4085 |
|
4087 |
msgid "%s did not return the expected response - check your log file for more details"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: src/methods/s3.php:307
|
4091 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4092 |
msgstr ""
|
4093 |
|
4108 |
msgid "For more reporting features, use the Reporting add-on."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: src/class-updraftplus.php:4176
|
4112 |
msgid "(version: %s)"
|
4113 |
msgstr ""
|
4114 |
|
4249 |
msgid "Reporting"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: src/admin.php:4805
|
4253 |
msgid "Options (raw)"
|
4254 |
msgstr ""
|
4255 |
|
4257 |
msgid "Send a report only when there are warnings/errors"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: src/restorer.php:1795
|
4261 |
msgid "Content URL:"
|
4262 |
msgstr ""
|
4263 |
|
4401 |
msgid "Your web-server does not have the %s module installed."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1237
|
4405 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4406 |
msgstr ""
|
4407 |
|
4421 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: src/restorer.php:1789
|
4425 |
msgid "Site home:"
|
4426 |
msgstr ""
|
4427 |
|
4437 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:144,
|
4441 |
#: src/methods/stream-base.php:149
|
4442 |
msgid "Upload failed"
|
4443 |
msgstr ""
|
4581 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
+
#: src/restorer.php:702
|
4585 |
msgid "file"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: src/restorer.php:695
|
4589 |
msgid "folder"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: src/restorer.php:695, src/restorer.php:702
|
4593 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: src/class-updraftplus.php:2933
|
4597 |
msgid "The backup has not finished; a resumption is scheduled"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: src/class-updraftplus.php:2117
|
4601 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: src/addons/onedrive.php:966,
|
4605 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4606 |
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)."
|
4607 |
msgstr ""
|
4686 |
msgid "Support"
|
4687 |
msgstr "সহায়তা"
|
4688 |
|
4689 |
+
#: src/class-updraftplus.php:4481
|
4690 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: src/class-updraftplus.php:4473
|
4694 |
msgid "This database backup is missing core WordPress tables: %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/class-updraftplus.php:4234
|
4698 |
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."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: src/class-updraftplus.php:4233, src/class-updraftplus.php:4240
|
4702 |
msgid "%s version: %s"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: src/class-updraftplus.php:4112
|
4706 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4707 |
msgstr ""
|
4708 |
|
4787 |
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?"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4791 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4795 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: src/includes/class-wpadmin-commands.php:221
|
4799 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4800 |
msgstr ""
|
4801 |
|
4835 |
msgid "WordPress root directory server path: %s"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: src/methods/dreamobjects.php:88, src/methods/s3generic.php:104
|
4839 |
msgid "%s end-point"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: src/methods/s3.php:838
|
4843 |
msgid "... and many more!"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
|
4847 |
+
#: src/methods/s3generic.php:83
|
4848 |
msgid "S3 (Compatible)"
|
4849 |
msgstr ""
|
4850 |
|
4852 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: src/admin.php:4083
|
4856 |
msgid "Looking for %s archive: file name: %s"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: src/admin.php:4044
|
4860 |
msgid "Final checks"
|
4861 |
msgstr ""
|
4862 |
|
4884 |
msgid "Processing files - please wait..."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: src/admin.php:4234,
|
4888 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4889 |
msgid "Please consult this FAQ for help on what to do about it."
|
4890 |
msgstr ""
|
4893 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: src/class-updraftplus.php:4120
|
4897 |
msgid "Failed to open database file."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
+
#: src/admin.php:4770
|
4901 |
msgid "Known backups (raw)"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: src/restorer.php:1009
|
4905 |
msgid "Files found:"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: src/restorer.php:1977
|
4909 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: src/admin.php:4103
|
4913 |
msgid "file is size:"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:457,
|
4917 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4918 |
+
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:4354,
|
4919 |
+
#: src/class-updraftplus.php:4354, src/updraftplus.php:156
|
4920 |
msgid "Go here for more information."
|
4921 |
msgstr ""
|
4922 |
|
4924 |
msgid "Some files are still downloading or being processed - please wait."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: src/class-updraftplus.php:4203, src/class-updraftplus.php:4224
|
4928 |
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."
|
4929 |
msgstr ""
|
4930 |
|
4968 |
msgid "Error - no such file exists at %s"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4972 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4973 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4974 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
4997 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4998 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4999 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5000 |
+
#: src/class-updraftplus.php:4093, src/class-updraftplus.php:4095,
|
5001 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4264,
|
5002 |
+
#: src/class-updraftplus.php:4333, src/methods/googledrive.php:382,
|
5003 |
+
#: src/methods/s3.php:336
|
5004 |
msgid "Error: %s"
|
5005 |
msgstr ""
|
5006 |
|
5040 |
msgid "Warnings encountered:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: src/class-updraftplus.php:2921
|
5044 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5045 |
msgstr ""
|
5046 |
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
+
#: src/methods/s3.php:847
|
5084 |
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."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: src/methods/s3.php:1150
|
5088 |
msgid "Please check your access credentials."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1128
|
5092 |
msgid "The error reported by %s was:"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: src/restorer.php:1518
|
5096 |
msgid "Please supply the requested information, and then continue."
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: src/class-updraftplus.php:4275, src/restorer.php:1825
|
5100 |
msgid "Site information:"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: src/restorer.php:1692
|
5104 |
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."
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: src/admin.php:2445, src/class-updraftplus.php:4268, src/restorer.php:2196
|
5108 |
msgid "Warning:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4260,
|
5112 |
#: src/restorer.php:184
|
5113 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: src/admin.php:4071
|
5117 |
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."
|
5118 |
msgstr ""
|
5119 |
|
5189 |
msgid "News"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:490
|
5193 |
msgid "Backup set not found"
|
5194 |
msgstr ""
|
5195 |
|
5354 |
msgstr ""
|
5355 |
|
5356 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5357 |
+
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5358 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5359 |
#: src/udaddons/options.php:135
|
5360 |
msgid "Password"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
+
#: src/addons/sftp.php:429, src/addons/webdav.php:207
|
5364 |
msgid "Port"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5368 |
+
#: src/addons/webdav.php:199
|
5369 |
msgid "Host"
|
5370 |
msgstr ""
|
5371 |
|
5413 |
msgid "Over-write wp-config.php"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
+
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:507
|
5417 |
msgid "WordPress Core"
|
5418 |
msgstr ""
|
5419 |
|
5421 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5422 |
msgstr ""
|
5423 |
|
5424 |
+
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5425 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3052,
|
5426 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5427 |
#: src/methods/stream-base.php:353
|
5428 |
msgid "Failed"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: src/addons/webdav.php:169
|
5432 |
msgid "WebDAV URL"
|
5433 |
msgstr ""
|
5434 |
|
5479 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:816
|
5483 |
msgid "Your %s account name: %s"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: src/methods/dropbox.php:806, src/methods/dropbox.php:828
|
5487 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
5491 |
msgid "you have authenticated your %s account"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5495 |
msgid "there's an add-on for that."
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5499 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5503 |
msgid "Backups are saved in"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5507 |
msgid "Need to use sub-folders?"
|
5508 |
msgstr ""
|
5509 |
|
5516 |
msgid "You do not appear to be authenticated with Dropbox"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: src/methods/s3.php:1145
|
5520 |
msgid "The communication with %s was not encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: src/methods/s3.php:1143
|
5524 |
msgid "The communication with %s was encrypted."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1140
|
5528 |
msgid "We accessed the bucket, and were able to create files within it."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5532 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5533 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5537 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5538 |
msgid "Failure"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: src/addons/backblaze.php:472, src/methods/s3.php:1126
|
5542 |
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)."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5546 |
+
#: src/methods/s3.php:1120
|
5547 |
msgid "Region"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5551 |
+
#: src/methods/s3.php:1102
|
5552 |
msgid "Failure: No bucket details were given."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: src/methods/s3.php:1080
|
5556 |
msgid "API secret"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: src/methods/s3.php:928
|
5560 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: src/methods/s3.php:927
|
5564 |
msgid "%s location"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
+
#: src/methods/s3.php:923
|
5568 |
msgid "%s secret key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
+
#: src/methods/s3.php:919
|
5572 |
msgid "%s access key"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: src/methods/s3.php:859
|
5576 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: src/methods/s3.php:857
|
5580 |
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."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: src/methods/s3.php:477, src/methods/s3.php:589, src/methods/s3.php:661,
|
5584 |
+
#: src/methods/s3.php:764
|
5585 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
+
#: src/methods/s3.php:747, src/methods/s3.php:757, src/methods/s3.php:793
|
5589 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
+
#: src/methods/s3.php:455
|
5593 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: src/methods/s3.php:451
|
5597 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: src/methods/s3.php:435
|
5601 |
msgid "%s chunk %s: upload failed"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: src/methods/s3.php:425
|
5605 |
msgid "%s error: file %s was shortened unexpectedly"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
+
#: src/methods/s3.php:403
|
5609 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5610 |
msgstr ""
|
5611 |
|
5630 |
msgstr ""
|
5631 |
|
5632 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5633 |
+
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5634 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5635 |
msgid "Username"
|
5636 |
msgstr "ব্যবহারকারী নাম"
|
5637 |
|
5638 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5639 |
+
#: src/methods/s3.php:1076
|
5640 |
msgid "API key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5644 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5645 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5646 |
+
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5647 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5648 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5649 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5650 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5651 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5652 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5653 |
+
#: src/methods/s3.php:1076, src/methods/s3.php:1080
|
5654 |
msgid "Failure: No %s was given."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5658 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5659 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5660 |
msgstr ""
|
5661 |
|
5690 |
msgid "Test %s Settings"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
5694 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5695 |
msgid "Error opening local file: Failed to download"
|
5696 |
msgstr ""
|
5702 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5703 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5704 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5705 |
+
#: src/methods/s3.php:371, src/methods/s3.php:383, src/methods/s3.php:384
|
5706 |
msgid "%s Error: Failed to upload"
|
5707 |
msgstr ""
|
5708 |
|
5728 |
msgid "Authenticate with Google"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5732 |
#: src/methods/googledrive.php:1196
|
5733 |
msgid "Client Secret"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1193
|
5737 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5741 |
#: src/methods/googledrive.php:1192
|
5742 |
msgid "Client ID"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5746 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5750 |
msgid "Select 'Web Application' as the application type."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1167
|
5754 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5758 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:546,
|
5759 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5760 |
#: src/methods/googledrive.php:558
|
5761 |
msgid "Account is not authorized."
|
5775 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5779 |
#: src/methods/googledrive.php:441
|
5780 |
msgid "you have authenticated your %s account."
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5784 |
+
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5785 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5786 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5787 |
+
#: src/methods/s3.php:1140, src/methods/stream-base.php:364
|
5788 |
msgid "Success"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:839,
|
5792 |
+
#: src/methods/dropbox.php:848, src/methods/googledrive.php:415
|
5793 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5794 |
msgstr ""
|
5795 |
|
5821 |
msgstr ""
|
5822 |
|
5823 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5824 |
+
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:4101,
|
5825 |
+
#: src/restorer.php:2437, src/restorer.php:2542
|
5826 |
msgid "OK"
|
5827 |
msgstr "ঠিক আছে"
|
5828 |
|
5829 |
+
#: src/restorer.php:2431, src/restorer.php:2506
|
5830 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: src/addons/migrator.php:1285, src/restorer.php:2333
|
5834 |
msgid "the database query being run was:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
+
#: src/restorer.php:2034
|
5838 |
msgid "will restore as:"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: src/class-updraftplus.php:4246, src/restorer.php:1807,
|
5842 |
+
#: src/restorer.php:1896, src/restorer.php:1922
|
5843 |
msgid "Old table prefix:"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5847 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4176
|
5848 |
msgid "Backup of:"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: src/restorer.php:1614
|
5852 |
msgid "Failed to open database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: src/restorer.php:1593
|
5856 |
msgid "Failed to find database file"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: src/restorer.php:1570
|
5860 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: src/restorer.php:529
|
5864 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: src/restorer.php:524
|
5868 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: src/restorer.php:417
|
5872 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: src/restorer.php:401
|
5876 |
msgid "Failed to create a temporary directory"
|
5877 |
msgstr ""
|
5878 |
|
5916 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: src/admin.php:4109, src/admin.php:4110
|
5920 |
msgid "Could not find one of the files for restoration"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: src/admin.php:4224
|
5924 |
msgid "Error message"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: src/admin.php:4106
|
5928 |
msgid "The backup records do not contain information about the proper size of this file."
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: src/admin.php:4098
|
5932 |
msgid "Archive is expected to be size:"
|
5933 |
msgstr ""
|
5934 |
|
5969 |
msgstr ""
|
5970 |
|
5971 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5972 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5973 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5974 |
msgstr ""
|
5975 |
|
6257 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
+
#: src/class-updraftplus.php:4206
|
6261 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6262 |
msgstr ""
|
6263 |
|
6310 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6311 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6312 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6313 |
+
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6314 |
+
#: src/admin.php:680, src/admin.php:4103, src/admin.php:4133,
|
6315 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6316 |
+
#: src/methods/updraftvault.php:522, src/restorer.php:1523
|
6317 |
msgid "Error:"
|
6318 |
msgstr ""
|
6319 |
|
6387 |
|
6388 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6389 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6390 |
+
#: src/admin.php:3682, src/admin.php:4187,
|
6391 |
#: src/includes/class-wpadmin-commands.php:147,
|
6392 |
+
#: src/includes/class-wpadmin-commands.php:505,
|
6393 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6394 |
msgid "Database"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
+
#: src/admin.php:311, src/admin.php:4777
|
6398 |
msgid "Files"
|
6399 |
msgstr ""
|
6400 |
|
6446 |
msgid "UpdraftPlus.Com"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
+
#: src/admin.php:4669
|
6450 |
msgid "Your settings have been wiped."
|
6451 |
msgstr ""
|
6452 |
|
6507 |
msgstr ""
|
6508 |
|
6509 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6510 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
6511 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6512 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6513 |
+
#: src/methods/stream-base.php:220, src/restorer.php:2433,
|
6514 |
+
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6515 |
msgid "Error"
|
6516 |
msgstr ""
|
6517 |
|
6552 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6553 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6554 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6555 |
+
#: src/methods/s3.php:847, src/methods/s3.php:851,
|
6556 |
#: src/methods/updraftvault.php:301,
|
6557 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6558 |
#: src/udaddons/updraftplus-addons.php:253
|
6584 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3966,
|
6588 |
+
#: src/methods/googledrive.php:1082, src/methods/s3.php:336
|
6589 |
msgid "File not found"
|
6590 |
msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
|
6591 |
|
6592 |
+
#: src/class-updraftplus.php:3873
|
6593 |
msgid "The decryption key used:"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: src/class-updraftplus.php:3873, src/class-updraftplus.php:4105,
|
6597 |
+
#: src/restorer.php:422
|
6598 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6599 |
msgstr ""
|
6600 |
|
6601 |
+
#: src/class-updraftplus.php:3854, src/class-updraftplus.php:4093,
|
6602 |
+
#: src/restorer.php:409
|
6603 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6604 |
msgstr ""
|
6605 |
|
6607 |
msgid "Could not open the backup file for writing"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: src/class-updraftplus.php:3459
|
6611 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: src/class-updraftplus.php:3420
|
6615 |
msgid "Could not read the directory"
|
6616 |
msgstr "ডিরেক্টরিটি পড়া যায়নি"
|
6617 |
|
6623 |
msgid "WordPress backup is complete"
|
6624 |
msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
|
6625 |
|
6626 |
+
#: src/class-updraftplus.php:2930
|
6627 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: src/class-updraftplus.php:2915
|
6631 |
msgid "The backup apparently succeeded and is now complete"
|
6632 |
msgstr ""
|
6633 |
|
6635 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/class-updraftplus.php:2618
|
6639 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6640 |
msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
|
6641 |
|
6642 |
+
#: src/class-updraftplus.php:1897
|
6643 |
msgid "Others"
|
6644 |
msgstr "অন্যান্য"
|
6645 |
|
6646 |
+
#: src/addons/multisite.php:465, src/class-updraftplus.php:1882
|
6647 |
msgid "Uploads"
|
6648 |
msgstr "আপলোডসমূহ"
|
6649 |
|
6650 |
+
#: src/class-updraftplus.php:1881
|
6651 |
msgid "Themes"
|
6652 |
msgstr "থিমসমূহ"
|
6653 |
|
6654 |
+
#: src/class-updraftplus.php:1880
|
6655 |
msgid "Plugins"
|
6656 |
msgstr "প্লাগইন"
|
6657 |
|
@@ -11,6 +11,50 @@ msgstr ""
|
|
11 |
"Language: bs_BA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
msgstr ""
|
@@ -19,11 +63,11 @@ msgstr ""
|
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr ""
|
29 |
|
@@ -91,26 +135,26 @@ msgstr ""
|
|
91 |
msgid "remote site"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] ""
|
102 |
msgstr[1] ""
|
103 |
msgstr[2] ""
|
104 |
|
105 |
-
#: src/class-updraftplus.php:
|
106 |
msgid "Your chosen replacement collation"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: src/class-updraftplus.php:
|
110 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: src/class-updraftplus.php:
|
114 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
115 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
116 |
msgstr[0] ""
|
@@ -125,27 +169,27 @@ msgstr ""
|
|
125 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: src/addons/azure.php:
|
129 |
msgid "%s Prefix"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: src/addons/azure.php:
|
133 |
msgid "%s Container"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: src/addons/azure.php:
|
137 |
msgid "%s Key"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: src/addons/azure.php:
|
141 |
msgid "%s Account Name"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: src/addons/googlecloud.php:
|
145 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: src/addons/googlecloud.php:
|
149 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
150 |
msgstr ""
|
151 |
|
@@ -176,19 +220,19 @@ msgstr[0] ""
|
|
176 |
msgstr[1] ""
|
177 |
msgstr[2] ""
|
178 |
|
179 |
-
#: src/restorer.php:
|
180 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: src/class-updraftplus.php:
|
184 |
msgid "Your chosen character set to use instead:"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: src/class-updraftplus.php:
|
188 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: src/class-updraftplus.php:
|
192 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
193 |
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."
|
194 |
msgstr[0] ""
|
@@ -243,59 +287,59 @@ msgstr ""
|
|
243 |
msgid "Please enter a valid URL e.g http://example.com"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: src/addons/backblaze.php:
|
247 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/addons/backblaze.php:
|
251 |
msgid "some/path"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/addons/backblaze.php:
|
255 |
msgid "Bucket name"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "Backup path"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "Application key"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "here"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Get these settings from %s, or sign up %s."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Account Key"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/addons/backblaze.php:
|
279 |
msgid "Account ID"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/class-updraftplus.php:
|
283 |
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."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/class-updraftplus.php:
|
287 |
msgid "the migrator add-on"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/class-updraftplus.php:
|
291 |
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."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: src/class-updraftplus.php:
|
299 |
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."
|
300 |
msgstr ""
|
301 |
|
@@ -315,15 +359,15 @@ msgstr ""
|
|
315 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: src/admin.php:1368, src/admin.php:
|
319 |
-
#: src/class-updraftplus.php:
|
320 |
-
#: src/class-updraftplus.php:
|
321 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: src/admin.php:1359, src/admin.php:
|
325 |
-
#: src/class-updraftplus.php:
|
326 |
-
#: src/class-updraftplus.php:
|
327 |
msgid "A PHP exception (%s) has occurred: %s"
|
328 |
msgstr ""
|
329 |
|
@@ -379,7 +423,7 @@ msgstr ""
|
|
379 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: src/admin.php:
|
383 |
msgid "Value"
|
384 |
msgstr ""
|
385 |
|
@@ -391,7 +435,7 @@ msgstr ""
|
|
391 |
msgid "Encrypted login failed; trying non-encrypted"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: src/addons/azure.php:
|
395 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
396 |
msgstr ""
|
397 |
|
@@ -403,11 +447,11 @@ msgstr ""
|
|
403 |
msgid "Cloud Files"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: src/admin.php:
|
407 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: src/admin.php:
|
411 |
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."
|
412 |
msgstr ""
|
413 |
|
@@ -416,11 +460,11 @@ msgstr ""
|
|
416 |
msgid "UpdraftVault"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: src/includes/class-wpadmin-commands.php:
|
420 |
msgid "archive"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: src/includes/class-wpadmin-commands.php:
|
424 |
msgid "Extra database"
|
425 |
msgstr ""
|
426 |
|
@@ -464,11 +508,11 @@ msgstr ""
|
|
464 |
msgid "Browse contents"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: src/restorer.php:
|
468 |
msgid "Skipped tables:"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: src/class-updraftplus.php:
|
472 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
473 |
msgstr ""
|
474 |
|
@@ -677,14 +721,6 @@ msgstr ""
|
|
677 |
msgid "Recommended: optimize your database with WP-Optimize."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
681 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
685 |
-
msgid "WP-Optimize"
|
686 |
-
msgstr ""
|
687 |
-
|
688 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
689 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
690 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -732,27 +768,7 @@ msgstr ""
|
|
732 |
msgid "Europe (Ireland)"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
736 |
-
msgid "WP-Optimize (free)"
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
740 |
-
msgid "Explore our Cloud and Premium versions."
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
744 |
-
msgid "Download it for free from WordPress.org"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
748 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
752 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
753 |
-
msgstr ""
|
754 |
-
|
755 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
756 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
757 |
msgid "UpdraftCentral"
|
758 |
msgstr ""
|
@@ -964,11 +980,11 @@ msgstr ""
|
|
964 |
msgid "Export / import settings"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: src/restorer.php:
|
968 |
msgid "Processing table (%s)"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: src/restorer.php:
|
972 |
msgid "Backup of: %s"
|
973 |
msgstr ""
|
974 |
|
@@ -976,11 +992,11 @@ msgstr ""
|
|
976 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: src/methods/dropbox.php:
|
980 |
msgid "%s de-authentication"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: src/methods/dropbox.php:
|
984 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
985 |
msgstr ""
|
986 |
|
@@ -1048,24 +1064,24 @@ msgstr ""
|
|
1048 |
msgid "US East (Ohio)"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/addons/onedrive.php:
|
1052 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/addons/onedrive.php:
|
1056 |
msgid "Account is not authorized (%s)."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: src/addons/onedrive.php:
|
1060 |
msgid "Your IP address:"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: src/addons/onedrive.php:
|
1064 |
#: src/udaddons/updraftplus-addons.php:887
|
1065 |
msgid "To remove any block, please go here."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: src/addons/onedrive.php:
|
1069 |
msgid "An error response was received; HTTP code:"
|
1070 |
msgstr ""
|
1071 |
|
@@ -1093,27 +1109,27 @@ msgstr ""
|
|
1093 |
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."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: src/addons/webdav.php:
|
1097 |
msgid "Path"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: src/addons/webdav.php:
|
1101 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: src/addons/webdav.php:
|
1105 |
msgid "Enter any path in the field below."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "A host name cannot contain a slash."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "Protocol (SSL or not)"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: src/addons/webdav.php:
|
1117 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1118 |
msgstr ""
|
1119 |
|
@@ -1121,11 +1137,11 @@ msgstr ""
|
|
1121 |
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."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: src/methods/s3.php:
|
1125 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: src/methods/s3.php:
|
1129 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1130 |
msgstr ""
|
1131 |
|
@@ -1231,7 +1247,7 @@ msgstr ""
|
|
1231 |
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."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: src/class-updraftplus.php:
|
1235 |
msgid "Size: %s MB"
|
1236 |
msgstr ""
|
1237 |
|
@@ -1243,7 +1259,7 @@ msgstr ""
|
|
1243 |
msgid "Now"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: src/class-updraftplus.php:
|
1247 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1248 |
msgstr ""
|
1249 |
|
@@ -1349,11 +1365,11 @@ msgstr ""
|
|
1349 |
msgid "UpdraftCentral Connection"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1353 |
msgid "The backup was aborted by the user"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: src/admin.php:
|
1357 |
msgid "Your settings have been saved."
|
1358 |
msgstr ""
|
1359 |
|
@@ -1419,7 +1435,7 @@ msgstr ""
|
|
1419 |
msgid "Asia Pacific (Seoul)"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: src/restorer.php:
|
1423 |
msgid "Uploads URL:"
|
1424 |
msgstr ""
|
1425 |
|
@@ -1427,15 +1443,15 @@ msgstr ""
|
|
1427 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/class-updraftplus.php:
|
1431 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: src/class-updraftplus.php:
|
1435 |
msgid "Please read this link for important information on this process."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: src/class-updraftplus.php:
|
1439 |
msgid "It will be imported as a new site."
|
1440 |
msgstr ""
|
1441 |
|
@@ -1509,7 +1525,7 @@ msgstr ""
|
|
1509 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: src/admin.php:
|
1513 |
msgid "Skipping: this archive was already restored."
|
1514 |
msgstr ""
|
1515 |
|
@@ -1541,23 +1557,23 @@ msgstr ""
|
|
1541 |
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)."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: src/admin.php:
|
1545 |
msgid "Send this backup to remote storage"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: src/admin.php:
|
1549 |
msgid "Check out UpdraftPlus Vault."
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: src/admin.php:
|
1553 |
msgid "Not got any remote storage?"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "settings"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: src/admin.php:
|
1561 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1562 |
msgstr ""
|
1563 |
|
@@ -1614,23 +1630,23 @@ msgstr ""
|
|
1614 |
msgid "Advanced Tools"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: src/addons/googlecloud.php:
|
1618 |
msgid "Bucket location"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: src/addons/googlecloud.php:
|
1622 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: src/addons/googlecloud.php:
|
1626 |
msgid "This setting applies only when a new bucket is being created."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: src/addons/googlecloud.php:
|
1634 |
msgid "Do not confuse %s with %s - they are separate things."
|
1635 |
msgstr ""
|
1636 |
|
@@ -1692,48 +1708,48 @@ msgstr ""
|
|
1692 |
msgid "Standard"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: src/addons/azure.php:
|
1696 |
msgid "container"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: src/addons/azure.php:
|
1700 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: src/addons/azure.php:
|
1704 |
msgid "optional"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "Enter the path of the %s you wish to use here."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: src/addons/azure.php:
|
1720 |
-
#: src/addons/azure.php:
|
1721 |
msgid "Azure"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: src/addons/azure.php:
|
1725 |
msgid "Create Azure credentials in your Azure developer console."
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: src/addons/azure.php:
|
1729 |
msgid "Could not create the container"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: src/addons/azure.php:
|
1733 |
msgid "Could not access container"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: src/class-updraftplus.php:
|
1737 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1738 |
msgstr ""
|
1739 |
|
@@ -1761,47 +1777,47 @@ msgstr ""
|
|
1761 |
msgid "Not installed"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: src/addons/googlecloud.php:
|
1765 |
msgid "Storage class"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: src/addons/googlecloud.php:
|
1769 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: src/addons/googlecloud.php:
|
1773 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Bucket"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "Otherwise, you can leave it blank."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Enter the ID of the %s project you wish to use here."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "Project ID"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: src/addons/googlecloud.php:
|
1805 |
msgid "You must save and authenticate before you can test your settings."
|
1806 |
msgstr ""
|
1807 |
|
@@ -1810,22 +1826,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1810 |
msgstr ""
|
1811 |
|
1812 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1813 |
-
#: src/addons/googlecloud.php:
|
1814 |
msgid "You do not have access to this bucket."
|
1815 |
msgstr ""
|
1816 |
|
1817 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1818 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1819 |
-
#: src/addons/googlecloud.php:
|
1820 |
-
#: src/addons/googlecloud.php:
|
1821 |
-
#: src/addons/googlecloud.php:
|
1822 |
-
#: src/addons/googlecloud.php:
|
1823 |
msgid "Google Cloud"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1827 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1828 |
-
#: src/addons/googlecloud.php:
|
1829 |
msgid "%s Service Exception."
|
1830 |
msgstr ""
|
1831 |
|
@@ -1833,7 +1849,7 @@ msgstr ""
|
|
1833 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: src/restorer.php:
|
1837 |
msgid "Deferring..."
|
1838 |
msgstr ""
|
1839 |
|
@@ -1902,11 +1918,11 @@ msgstr ""
|
|
1902 |
msgid "Add an additional retention rule..."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: src/restorer.php:
|
1906 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: src/restorer.php:
|
1910 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1911 |
msgstr ""
|
1912 |
|
@@ -1914,11 +1930,11 @@ msgstr ""
|
|
1914 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: src/class-updraftplus.php:
|
1918 |
msgid "You must upgrade MySQL to be able to use this database."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: src/class-updraftplus.php:
|
1922 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1923 |
msgstr ""
|
1924 |
|
@@ -2096,8 +2112,8 @@ msgstr ""
|
|
2096 |
msgid "Updraft Vault"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: src/addons/azure.php:
|
2100 |
-
#: src/addons/googlecloud.php:
|
2101 |
msgid "Delete failed:"
|
2102 |
msgstr ""
|
2103 |
|
@@ -2133,10 +2149,6 @@ msgstr ""
|
|
2133 |
msgid "Existing keys"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: src/addons/migrator.php:2423
|
2137 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2138 |
-
msgstr ""
|
2139 |
-
|
2140 |
#: src/addons/migrator.php:2405
|
2141 |
msgid "Your new key:"
|
2142 |
msgstr ""
|
@@ -2342,7 +2354,7 @@ msgstr ""
|
|
2342 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: src/restorer.php:
|
2346 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2347 |
msgstr ""
|
2348 |
|
@@ -2374,41 +2386,41 @@ msgstr ""
|
|
2374 |
msgid "You have made changes to your settings, and not saved."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: src/addons/onedrive.php:
|
2378 |
msgid "N.B. %s is not case-sensitive."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: src/addons/onedrive.php:
|
2382 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: src/addons/azure.php:
|
2386 |
-
#: src/addons/onedrive.php:
|
2387 |
msgid "For longer help, including screenshots, follow this link."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: src/addons/onedrive.php:
|
2391 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: src/addons/onedrive.php:
|
2395 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: src/addons/azure.php:
|
2399 |
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)."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
msgid "%s authorisation failed:"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: src/addons/onedrive.php:
|
2407 |
-
#: src/addons/onedrive.php:
|
2408 |
msgid "OneDrive"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: src/addons/onedrive.php:
|
2412 |
msgid "Please re-authorize the connection to your %s account."
|
2413 |
msgstr ""
|
2414 |
|
@@ -2416,7 +2428,7 @@ msgstr ""
|
|
2416 |
msgid "configure it here"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: src/addons/onedrive.php:
|
2420 |
msgid "To remove the block, please go here."
|
2421 |
msgstr ""
|
2422 |
|
@@ -2561,74 +2573,66 @@ msgstr ""
|
|
2561 |
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)"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: src/methods/s3.php:
|
2565 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2569 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2573 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: src/addons/onedrive.php:
|
2577 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2578 |
#: src/udaddons/updraftplus-addons.php:887
|
2579 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: src/addons/onedrive.php:
|
2583 |
#: src/udaddons/updraftplus-addons.php:887
|
2584 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: src/addons/onedrive.php:
|
2588 |
#: src/udaddons/updraftplus-addons.php:887
|
2589 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2593 |
msgid "Premium WooCommerce plugins"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2597 |
msgid "Free two-factor security plugin"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2601 |
-
msgid "More
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2605 |
msgid "Go to the shop."
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2609 |
msgid "Compare with the free version"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2613 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2614 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2615 |
msgid "UpdraftPlus Premium"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2619 |
-
msgid "Follow this link to sign up."
|
2620 |
-
msgstr ""
|
2621 |
-
|
2622 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
2623 |
msgid "Free Newsletter"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
2627 |
-
msgid "Thank you for backing up with UpdraftPlus!"
|
2628 |
-
msgstr ""
|
2629 |
-
|
2630 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2631 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2632 |
msgid "Dismiss (for %s months)"
|
2633 |
msgstr ""
|
2634 |
|
@@ -2669,8 +2673,8 @@ msgstr ""
|
|
2669 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: src/methods/s3.php:
|
2673 |
-
#: src/methods/s3.php:
|
2674 |
msgid "%s Error: Failed to initialise"
|
2675 |
msgstr ""
|
2676 |
|
@@ -2715,7 +2719,7 @@ msgctxt "i.e. Non-automatic"
|
|
2715 |
msgid "Manual"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: src/restorer.php:
|
2719 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2720 |
msgid "An error (%s) occurred:"
|
2721 |
msgstr ""
|
@@ -2856,7 +2860,7 @@ msgstr ""
|
|
2856 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: src/class-updraftplus.php:
|
2860 |
msgid "Backup label:"
|
2861 |
msgstr ""
|
2862 |
|
@@ -2880,7 +2884,7 @@ msgstr ""
|
|
2880 |
msgid "Your label for this backup (optional)"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: src/addons/googlecloud.php:
|
2884 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2885 |
msgstr ""
|
2886 |
|
@@ -2900,11 +2904,11 @@ msgstr ""
|
|
2900 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: src/class-updraftplus.php:
|
2908 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2909 |
msgstr ""
|
2910 |
|
@@ -2941,19 +2945,19 @@ msgstr ""
|
|
2941 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
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."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: src/class-updraftplus.php:
|
2957 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2958 |
msgstr ""
|
2959 |
|
@@ -2998,7 +3002,7 @@ msgstr ""
|
|
2998 |
msgid "Start backup"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: src/class-updraftplus.php:
|
3002 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3003 |
msgstr ""
|
3004 |
|
@@ -3034,7 +3038,7 @@ msgstr ""
|
|
3034 |
msgid "Memory limit"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: src/class-updraftplus.php:
|
3038 |
msgid "restoration"
|
3039 |
msgstr ""
|
3040 |
|
@@ -3097,7 +3101,7 @@ msgstr ""
|
|
3097 |
msgid "search term"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: src/restorer.php:
|
3101 |
msgid "Too many database errors have occurred - aborting"
|
3102 |
msgstr ""
|
3103 |
|
@@ -3133,7 +3137,7 @@ msgstr ""
|
|
3133 |
msgid "Free disk space in account:"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: src/admin.php:
|
3137 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3138 |
msgstr ""
|
3139 |
|
@@ -3228,7 +3232,7 @@ msgstr ""
|
|
3228 |
msgid "user"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: src/class-updraftplus.php:
|
3232 |
msgid "External database (%s)"
|
3233 |
msgstr ""
|
3234 |
|
@@ -3240,8 +3244,8 @@ msgstr ""
|
|
3240 |
msgid "failed to access parent folder"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
-
#: src/addons/googlecloud.php:
|
3244 |
-
#: src/addons/onedrive.php:
|
3245 |
msgid "However, subsequent access attempts failed:"
|
3246 |
msgstr ""
|
3247 |
|
@@ -3277,7 +3281,7 @@ msgstr ""
|
|
3277 |
msgid "use UpdraftPlus Premium"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: src/class-updraftplus.php:
|
3281 |
msgid "Decryption failed. The database file is encrypted."
|
3282 |
msgstr ""
|
3283 |
|
@@ -3285,8 +3289,8 @@ msgstr ""
|
|
3285 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: src/restorer.php:
|
3289 |
-
#: src/restorer.php:
|
3290 |
msgid "An error occurred on the first %s command - aborting run"
|
3291 |
msgstr ""
|
3292 |
|
@@ -3306,17 +3310,17 @@ msgstr ""
|
|
3306 |
msgid "In %s, path names are case sensitive."
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: src/addons/azure.php:
|
3310 |
-
#: src/addons/onedrive.php:
|
3311 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:
|
3315 |
-
#: src/addons/onedrive.php:
|
3316 |
msgid "e.g. %s"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
-
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:
|
3320 |
msgid "Enter the path of the %s folder you wish to use here."
|
3321 |
msgstr ""
|
3322 |
|
@@ -3360,7 +3364,7 @@ msgstr ""
|
|
3360 |
msgid "Failed to upload %s"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: src/methods/dropbox.php:
|
3364 |
msgid "Success:"
|
3365 |
msgstr ""
|
3366 |
|
@@ -3368,15 +3372,15 @@ msgstr ""
|
|
3368 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: src/addons/onedrive.php:
|
3372 |
msgid "(You appear to be already authenticated)."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: src/methods/dropbox.php:
|
3376 |
msgid "Dropbox"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: src/addons/onedrive.php:
|
3380 |
msgid "Authenticate with %s"
|
3381 |
msgstr ""
|
3382 |
|
@@ -3407,8 +3411,8 @@ msgstr ""
|
|
3407 |
msgid "%s error - failed to access the container"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: src/addons/googlecloud.php:
|
3411 |
-
#: src/methods/dropbox.php:
|
3412 |
msgid "Account holder's name: %s."
|
3413 |
msgstr ""
|
3414 |
|
@@ -3424,17 +3428,17 @@ msgstr ""
|
|
3424 |
msgid "<strong>This is NOT a folder name</strong>."
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:
|
3428 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3429 |
msgid "Folder"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:
|
3433 |
#: src/methods/googledrive.php:1122
|
3434 |
msgid "%s download: failed: file not found"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: src/addons/googlecloud.php:
|
3438 |
msgid "Name: %s."
|
3439 |
msgstr ""
|
3440 |
|
@@ -3473,7 +3477,7 @@ msgstr ""
|
|
3473 |
msgid "Failed to unpack the archive"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: src/class-updraftplus.php:
|
3477 |
msgid "Error - failed to download the file"
|
3478 |
msgstr ""
|
3479 |
|
@@ -3498,7 +3502,7 @@ msgid "password/key"
|
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3501 |
-
#: src/admin.php:
|
3502 |
msgid "Key"
|
3503 |
msgstr ""
|
3504 |
|
@@ -3523,7 +3527,7 @@ msgid "Files and database WordPress backup (created by %s)"
|
|
3523 |
msgstr ""
|
3524 |
|
3525 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3526 |
-
#: src/includes/class-backup-history.php:
|
3527 |
msgid "Backup created by: %s."
|
3528 |
msgstr ""
|
3529 |
|
@@ -3555,7 +3559,7 @@ msgstr ""
|
|
3555 |
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."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: src/admin.php:694, src/includes/class-backup-history.php:
|
3559 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3560 |
msgstr ""
|
3561 |
|
@@ -3564,20 +3568,20 @@ msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are
|
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#: src/admin.php:693, src/admin.php:694,
|
3567 |
-
#: src/includes/class-backup-history.php:
|
3568 |
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))."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3572 |
-
#: src/restorer.php:
|
3573 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: src/restorer.php:
|
3577 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: src/restorer.php:
|
3581 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3582 |
msgstr ""
|
3583 |
|
@@ -3589,12 +3593,12 @@ msgstr ""
|
|
3589 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: src/addons/backblaze.php:
|
3593 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3594 |
msgid "No settings were found"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
-
#: src/includes/class-backup-history.php:
|
3598 |
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."
|
3599 |
msgstr ""
|
3600 |
|
@@ -3602,7 +3606,7 @@ msgstr ""
|
|
3602 |
msgid "Rescanning remote and local storage for backup sets..."
|
3603 |
msgstr ""
|
3604 |
|
3605 |
-
#: src/addons/googlecloud.php:
|
3606 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3607 |
msgid "(Read more)"
|
3608 |
msgstr ""
|
@@ -3620,7 +3624,7 @@ msgstr ""
|
|
3620 |
msgid "Remove"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: src/methods/s3.php:
|
3624 |
msgid "Other %s FAQs."
|
3625 |
msgstr ""
|
3626 |
|
@@ -3632,12 +3636,12 @@ msgstr ""
|
|
3632 |
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."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: src/class-updraftplus.php:
|
3636 |
-
#: src/restorer.php:
|
3637 |
msgid "Your hosting company must enable these functions before %s can work."
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: src/class-updraftplus.php:
|
3641 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3642 |
msgstr ""
|
3643 |
|
@@ -3653,7 +3657,7 @@ msgstr ""
|
|
3653 |
msgid "regular non-encrypted FTP"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: src/restorer.php:
|
3657 |
msgid "Backup created by:"
|
3658 |
msgstr ""
|
3659 |
|
@@ -3707,19 +3711,19 @@ msgstr ""
|
|
3707 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression succeeded."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The attempt to undo the double-compression failed."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: src/class-updraftplus.php:
|
3719 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: src/includes/class-wpadmin-commands.php:
|
3723 |
msgid "Constants"
|
3724 |
msgstr ""
|
3725 |
|
@@ -3768,7 +3772,7 @@ msgstr ""
|
|
3768 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: src/restorer.php:
|
3772 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3773 |
msgstr ""
|
3774 |
|
@@ -3789,11 +3793,11 @@ msgstr ""
|
|
3789 |
msgid "Messages:"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: src/restorer.php:
|
3793 |
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"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: src/restorer.php:
|
3797 |
msgid "The directory does not exist"
|
3798 |
msgstr ""
|
3799 |
|
@@ -3962,7 +3966,7 @@ msgstr ""
|
|
3962 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: src/admin.php:679, src/admin.php:
|
3966 |
msgid "Error data:"
|
3967 |
msgstr ""
|
3968 |
|
@@ -3974,11 +3978,11 @@ msgstr ""
|
|
3974 |
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."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: src/restorer.php:
|
3978 |
msgid "Split line to avoid exceeding maximum packet size"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: src/restorer.php:
|
3982 |
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)"
|
3983 |
msgstr ""
|
3984 |
|
@@ -4010,11 +4014,11 @@ msgstr ""
|
|
4010 |
msgid "Email reports"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "%s checksum: %s"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#: src/class-updraftplus.php:
|
4018 |
msgid "files: %s"
|
4019 |
msgstr ""
|
4020 |
|
@@ -4067,19 +4071,19 @@ msgstr ""
|
|
4067 |
msgid "%d errors, %d warnings"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: src/addons/onedrive.php:
|
4071 |
-
#: src/methods/dropbox.php:
|
4072 |
msgid "%s authentication"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: src/addons/onedrive.php:
|
4076 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4077 |
-
#: src/methods/dropbox.php:
|
4078 |
-
#: src/methods/dropbox.php:
|
4079 |
msgid "%s error: %s"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: src/addons/googlecloud.php:
|
4083 |
msgid "%s logo"
|
4084 |
msgstr ""
|
4085 |
|
@@ -4087,7 +4091,7 @@ msgstr ""
|
|
4087 |
msgid "%s did not return the expected response - check your log file for more details"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: src/methods/s3.php:
|
4091 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4092 |
msgstr ""
|
4093 |
|
@@ -4108,7 +4112,7 @@ msgstr ""
|
|
4108 |
msgid "For more reporting features, use the Reporting add-on."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: src/class-updraftplus.php:
|
4112 |
msgid "(version: %s)"
|
4113 |
msgstr ""
|
4114 |
|
@@ -4249,7 +4253,7 @@ msgstr ""
|
|
4249 |
msgid "Reporting"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
#: src/admin.php:
|
4253 |
msgid "Options (raw)"
|
4254 |
msgstr ""
|
4255 |
|
@@ -4257,7 +4261,7 @@ msgstr ""
|
|
4257 |
msgid "Send a report only when there are warnings/errors"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
-
#: src/restorer.php:
|
4261 |
msgid "Content URL:"
|
4262 |
msgstr ""
|
4263 |
|
@@ -4401,7 +4405,7 @@ msgstr ""
|
|
4401 |
msgid "Your web-server does not have the %s module installed."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#: src/addons/googlecloud.php:
|
4405 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4406 |
msgstr ""
|
4407 |
|
@@ -4421,7 +4425,7 @@ msgstr ""
|
|
4421 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
-
#: src/restorer.php:
|
4425 |
msgid "Site home:"
|
4426 |
msgstr ""
|
4427 |
|
@@ -4437,7 +4441,7 @@ msgstr ""
|
|
4437 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
-
#: src/addons/azure.php:
|
4441 |
#: src/methods/stream-base.php:149
|
4442 |
msgid "Upload failed"
|
4443 |
msgstr ""
|
@@ -4581,27 +4585,27 @@ msgstr ""
|
|
4581 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: src/restorer.php:
|
4585 |
msgid "file"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: src/restorer.php:
|
4589 |
msgid "folder"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: src/restorer.php:
|
4593 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "The backup has not finished; a resumption is scheduled"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: src/class-updraftplus.php:
|
4601 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
-
#: src/addons/onedrive.php:
|
4605 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4606 |
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)."
|
4607 |
msgstr ""
|
@@ -4686,23 +4690,23 @@ msgstr ""
|
|
4686 |
msgid "Support"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
msgid "This database backup is missing core WordPress tables: %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
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."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "%s version: %s"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
-
#: src/class-updraftplus.php:
|
4706 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4707 |
msgstr ""
|
4708 |
|
@@ -4787,15 +4791,15 @@ msgstr ""
|
|
4787 |
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?"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: src/includes/class-wpadmin-commands.php:
|
4799 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4800 |
msgstr ""
|
4801 |
|
@@ -4835,16 +4839,16 @@ msgstr ""
|
|
4835 |
msgid "WordPress root directory server path: %s"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: src/methods/dreamobjects.php:
|
4839 |
msgid "%s end-point"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: src/methods/s3.php:
|
4843 |
msgid "... and many more!"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
-
#: src/methods/s3generic.php:
|
4847 |
-
#: src/methods/s3generic.php:
|
4848 |
msgid "S3 (Compatible)"
|
4849 |
msgstr ""
|
4850 |
|
@@ -4852,11 +4856,11 @@ msgstr ""
|
|
4852 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Looking for %s archive: file name: %s"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#: src/admin.php:
|
4860 |
msgid "Final checks"
|
4861 |
msgstr ""
|
4862 |
|
@@ -4884,7 +4888,7 @@ msgstr ""
|
|
4884 |
msgid "Processing files - please wait..."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#: src/admin.php:
|
4888 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4889 |
msgid "Please consult this FAQ for help on what to do about it."
|
4890 |
msgstr ""
|
@@ -4893,30 +4897,30 @@ msgstr ""
|
|
4893 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: src/class-updraftplus.php:
|
4897 |
msgid "Failed to open database file."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: src/admin.php:
|
4901 |
msgid "Known backups (raw)"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: src/restorer.php:
|
4905 |
msgid "Files found:"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: src/restorer.php:
|
4909 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: src/admin.php:
|
4913 |
msgid "file is size:"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: src/addons/googlecloud.php:
|
4917 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4918 |
-
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:
|
4919 |
-
#: src/class-updraftplus.php:
|
4920 |
msgid "Go here for more information."
|
4921 |
msgstr ""
|
4922 |
|
@@ -4924,7 +4928,7 @@ msgstr ""
|
|
4924 |
msgid "Some files are still downloading or being processed - please wait."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
-
#: src/class-updraftplus.php:
|
4928 |
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."
|
4929 |
msgstr ""
|
4930 |
|
@@ -4968,7 +4972,7 @@ msgstr ""
|
|
4968 |
msgid "Error - no such file exists at %s"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
-
#: src/addons/azure.php:
|
4972 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4973 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4974 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
@@ -4997,10 +5001,10 @@ msgstr ""
|
|
4997 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4998 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4999 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5000 |
-
#: src/class-updraftplus.php:
|
5001 |
-
#: src/class-updraftplus.php:
|
5002 |
-
#: src/class-updraftplus.php:
|
5003 |
-
#: src/methods/s3.php:
|
5004 |
msgid "Error: %s"
|
5005 |
msgstr ""
|
5006 |
|
@@ -5040,7 +5044,7 @@ msgstr ""
|
|
5040 |
msgid "Warnings encountered:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#: src/class-updraftplus.php:
|
5044 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5045 |
msgstr ""
|
5046 |
|
@@ -5080,40 +5084,40 @@ msgstr ""
|
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
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."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: src/methods/s3.php:
|
5088 |
msgid "Please check your access credentials."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5092 |
msgid "The error reported by %s was:"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: src/restorer.php:
|
5096 |
msgid "Please supply the requested information, and then continue."
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: src/class-updraftplus.php:
|
5100 |
msgid "Site information:"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: src/restorer.php:
|
5104 |
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."
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: src/admin.php:2445, src/class-updraftplus.php:
|
5108 |
msgid "Warning:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#: src/class-updraftplus.php:
|
5112 |
#: src/restorer.php:184
|
5113 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
-
#: src/admin.php:
|
5117 |
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."
|
5118 |
msgstr ""
|
5119 |
|
@@ -5189,7 +5193,7 @@ msgstr ""
|
|
5189 |
msgid "News"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
-
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:
|
5193 |
msgid "Backup set not found"
|
5194 |
msgstr ""
|
5195 |
|
@@ -5354,18 +5358,18 @@ msgid "Directory path"
|
|
5354 |
msgstr ""
|
5355 |
|
5356 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5357 |
-
#: src/addons/sftp.php:443, src/addons/webdav.php:
|
5358 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5359 |
#: src/udaddons/options.php:135
|
5360 |
msgid "Password"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#: src/addons/sftp.php:429, src/addons/webdav.php:
|
5364 |
msgid "Port"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5368 |
-
#: src/addons/webdav.php:
|
5369 |
msgid "Host"
|
5370 |
msgstr ""
|
5371 |
|
@@ -5413,7 +5417,7 @@ msgstr ""
|
|
5413 |
msgid "Over-write wp-config.php"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
-
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:
|
5417 |
msgid "WordPress Core"
|
5418 |
msgstr ""
|
5419 |
|
@@ -5421,14 +5425,14 @@ msgstr ""
|
|
5421 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5422 |
msgstr ""
|
5423 |
|
5424 |
-
#: src/addons/googlecloud.php:
|
5425 |
-
#: src/addons/googlecloud.php:
|
5426 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5427 |
#: src/methods/stream-base.php:353
|
5428 |
msgid "Failed"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
-
#: src/addons/webdav.php:
|
5432 |
msgid "WebDAV URL"
|
5433 |
msgstr ""
|
5434 |
|
@@ -5479,31 +5483,31 @@ msgstr ""
|
|
5479 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/addons/onedrive.php:
|
5483 |
msgid "Your %s account name: %s"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "you have authenticated your %s account"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "there's an add-on for that."
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Backups are saved in"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: src/methods/dropbox.php:
|
5507 |
msgid "Need to use sub-folders?"
|
5508 |
msgstr ""
|
5509 |
|
@@ -5516,96 +5520,96 @@ msgstr ""
|
|
5516 |
msgid "You do not appear to be authenticated with Dropbox"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was not encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/methods/s3.php:
|
5524 |
msgid "The communication with %s was encrypted."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:
|
5528 |
msgid "We accessed the bucket, and were able to create files within it."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#: src/addons/googlecloud.php:
|
5532 |
-
#: src/methods/s3.php:
|
5533 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#: src/addons/googlecloud.php:
|
5537 |
-
#: src/methods/s3.php:
|
5538 |
msgid "Failure"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: src/addons/backblaze.php:
|
5542 |
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)."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5546 |
-
#: src/methods/s3.php:
|
5547 |
msgid "Region"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "Failure: No bucket details were given."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "API secret"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s location"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s secret key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "%s access key"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
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."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#: src/methods/s3.php:
|
5584 |
-
#: src/methods/s3.php:
|
5585 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s chunk %s: upload failed"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s error: file %s was shortened unexpectedly"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: src/methods/s3.php:
|
5609 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5610 |
msgstr ""
|
5611 |
|
@@ -5630,32 +5634,32 @@ msgid "Failure: No container details were given."
|
|
5630 |
msgstr ""
|
5631 |
|
5632 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5633 |
-
#: src/addons/webdav.php:
|
5634 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5635 |
msgid "Username"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5639 |
-
#: src/methods/s3.php:
|
5640 |
msgid "API key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5644 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5645 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5646 |
-
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:
|
5647 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5648 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5649 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5650 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5651 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5652 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5653 |
-
#: src/methods/s3.php:
|
5654 |
msgid "Failure: No %s was given."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5658 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5659 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5660 |
msgstr ""
|
5661 |
|
@@ -5690,7 +5694,7 @@ msgstr ""
|
|
5690 |
msgid "Test %s Settings"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#: src/class-updraftplus.php:
|
5694 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5695 |
msgid "Error opening local file: Failed to download"
|
5696 |
msgstr ""
|
@@ -5702,7 +5706,7 @@ msgstr ""
|
|
5702 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5703 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5704 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5705 |
-
#: src/methods/s3.php:
|
5706 |
msgid "%s Error: Failed to upload"
|
5707 |
msgstr ""
|
5708 |
|
@@ -5728,34 +5732,34 @@ msgstr ""
|
|
5728 |
msgid "Authenticate with Google"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#: src/addons/googlecloud.php:
|
5732 |
#: src/methods/googledrive.php:1196
|
5733 |
msgid "Client Secret"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:
|
5737 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#: src/addons/googlecloud.php:
|
5741 |
#: src/methods/googledrive.php:1192
|
5742 |
msgid "Client ID"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:
|
5746 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:
|
5750 |
msgid "Select 'Web Application' as the application type."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
-
#: src/addons/googlecloud.php:
|
5754 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5758 |
-
#: src/addons/googlecloud.php:
|
5759 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5760 |
#: src/methods/googledrive.php:558
|
5761 |
msgid "Account is not authorized."
|
@@ -5775,21 +5779,21 @@ msgstr ""
|
|
5775 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: src/addons/googlecloud.php:
|
5779 |
#: src/methods/googledrive.php:441
|
5780 |
msgid "you have authenticated your %s account."
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#: src/addons/googlecloud.php:
|
5784 |
-
#: src/addons/onedrive.php:
|
5785 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5786 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5787 |
-
#: src/methods/s3.php:
|
5788 |
msgid "Success"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: src/addons/onedrive.php:
|
5792 |
-
#: src/methods/dropbox.php:
|
5793 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5794 |
msgstr ""
|
5795 |
|
@@ -5821,58 +5825,58 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
|
|
5821 |
msgstr ""
|
5822 |
|
5823 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5824 |
-
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:
|
5825 |
-
#: src/restorer.php:
|
5826 |
msgid "OK"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: src/restorer.php:
|
5830 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: src/addons/migrator.php:1285, src/restorer.php:
|
5834 |
msgid "the database query being run was:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: src/restorer.php:
|
5838 |
msgid "will restore as:"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: src/class-updraftplus.php:
|
5842 |
-
#: src/restorer.php:
|
5843 |
msgid "Old table prefix:"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5847 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5848 |
msgid "Backup of:"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: src/restorer.php:
|
5852 |
msgid "Failed to open database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: src/restorer.php:
|
5856 |
msgid "Failed to find database file"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: src/restorer.php:
|
5860 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: src/restorer.php:
|
5864 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: src/restorer.php:
|
5868 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: src/restorer.php:
|
5872 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: src/restorer.php:
|
5876 |
msgid "Failed to create a temporary directory"
|
5877 |
msgstr ""
|
5878 |
|
@@ -5916,19 +5920,19 @@ msgstr ""
|
|
5916 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Could not find one of the files for restoration"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "Error message"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "The backup records do not contain information about the proper size of this file."
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: src/admin.php:
|
5932 |
msgid "Archive is expected to be size:"
|
5933 |
msgstr ""
|
5934 |
|
@@ -5969,7 +5973,7 @@ msgid "Your web server's PHP/Curl installation does not support https access. Co
|
|
5969 |
msgstr ""
|
5970 |
|
5971 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5972 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5973 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5974 |
msgstr ""
|
5975 |
|
@@ -6257,7 +6261,7 @@ msgstr ""
|
|
6257 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
-
#: src/class-updraftplus.php:
|
6261 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6262 |
msgstr ""
|
6263 |
|
@@ -6310,10 +6314,10 @@ msgstr ""
|
|
6310 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6311 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6312 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6313 |
-
#: src/addons/sftp.php:837, src/addons/webdav.php:
|
6314 |
-
#: src/admin.php:680, src/admin.php:
|
6315 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6316 |
-
#: src/methods/updraftvault.php:522, src/restorer.php:
|
6317 |
msgid "Error:"
|
6318 |
msgstr ""
|
6319 |
|
@@ -6387,14 +6391,14 @@ msgstr ""
|
|
6387 |
|
6388 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6389 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6390 |
-
#: src/admin.php:3682, src/admin.php:
|
6391 |
#: src/includes/class-wpadmin-commands.php:147,
|
6392 |
-
#: src/includes/class-wpadmin-commands.php:
|
6393 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6394 |
msgid "Database"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
-
#: src/admin.php:311, src/admin.php:
|
6398 |
msgid "Files"
|
6399 |
msgstr ""
|
6400 |
|
@@ -6446,7 +6450,7 @@ msgstr ""
|
|
6446 |
msgid "UpdraftPlus.Com"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
-
#: src/admin.php:
|
6450 |
msgid "Your settings have been wiped."
|
6451 |
msgstr ""
|
6452 |
|
@@ -6507,11 +6511,11 @@ msgid "Download failed"
|
|
6507 |
msgstr ""
|
6508 |
|
6509 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6510 |
-
#: src/class-updraftplus.php:
|
6511 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6512 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6513 |
-
#: src/methods/stream-base.php:220, src/restorer.php:
|
6514 |
-
#: src/restorer.php:
|
6515 |
msgid "Error"
|
6516 |
msgstr ""
|
6517 |
|
@@ -6552,7 +6556,7 @@ msgstr ""
|
|
6552 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6553 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6554 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6555 |
-
#: src/methods/s3.php:
|
6556 |
#: src/methods/updraftvault.php:301,
|
6557 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6558 |
#: src/udaddons/updraftplus-addons.php:253
|
@@ -6584,22 +6588,22 @@ msgstr ""
|
|
6584 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
-
#: src/addons/azure.php:
|
6588 |
-
#: src/methods/googledrive.php:1082, src/methods/s3.php:
|
6589 |
msgid "File not found"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: src/class-updraftplus.php:
|
6593 |
msgid "The decryption key used:"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
-
#: src/class-updraftplus.php:
|
6597 |
-
#: src/restorer.php:
|
6598 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6599 |
msgstr ""
|
6600 |
|
6601 |
-
#: src/class-updraftplus.php:
|
6602 |
-
#: src/restorer.php:
|
6603 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6604 |
msgstr ""
|
6605 |
|
@@ -6607,11 +6611,11 @@ msgstr ""
|
|
6607 |
msgid "Could not open the backup file for writing"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: src/class-updraftplus.php:
|
6611 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
-
#: src/class-updraftplus.php:
|
6615 |
msgid "Could not read the directory"
|
6616 |
msgstr ""
|
6617 |
|
@@ -6623,11 +6627,11 @@ msgstr ""
|
|
6623 |
msgid "WordPress backup is complete"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
-
#: src/class-updraftplus.php:
|
6631 |
msgid "The backup apparently succeeded and is now complete"
|
6632 |
msgstr ""
|
6633 |
|
@@ -6635,23 +6639,23 @@ msgstr ""
|
|
6635 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: src/class-updraftplus.php:
|
6643 |
msgid "Others"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: src/addons/multisite.php:465, src/class-updraftplus.php:
|
6647 |
msgid "Uploads"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Themes"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
-
#: src/class-updraftplus.php:
|
6655 |
msgid "Plugins"
|
6656 |
msgstr ""
|
6657 |
|
11 |
"Language: bs_BA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/restorer.php:188
|
43 |
+
msgid "Failed to read from the working directory."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/restorer.php:187
|
47 |
+
msgid "Failed to find a manifest file in the backup."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/restorer.php:186
|
51 |
+
msgid "Failed to read the manifest file from backup."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/includes/class-wpadmin-commands.php:207
|
55 |
+
msgid "Select your incremental restore point"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: src/addons/morefiles.php:73
|
59 |
msgid "(None configured)"
|
60 |
msgstr ""
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: src/admin.php:4602
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: src/admin.php:4598
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: src/addons/backblaze.php:475
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/restorer.php:2028
|
143 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
144 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
msgstr[2] ""
|
148 |
|
149 |
+
#: src/class-updraftplus.php:4411
|
150 |
msgid "Your chosen replacement collation"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: src/class-updraftplus.php:4388
|
154 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: src/class-updraftplus.php:4388
|
158 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
159 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
160 |
msgstr[0] ""
|
169 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: src/addons/azure.php:631
|
173 |
msgid "%s Prefix"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: src/addons/azure.php:626
|
177 |
msgid "%s Container"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: src/addons/azure.php:621
|
181 |
msgid "%s Key"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: src/addons/azure.php:617
|
185 |
msgid "%s Account Name"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: src/addons/googlecloud.php:692
|
189 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: src/addons/googlecloud.php:690
|
193 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
194 |
msgstr ""
|
195 |
|
220 |
msgstr[1] ""
|
221 |
msgstr[2] ""
|
222 |
|
223 |
+
#: src/restorer.php:1990
|
224 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: src/class-updraftplus.php:4364
|
228 |
msgid "Your chosen character set to use instead:"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: src/class-updraftplus.php:4354
|
232 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: src/class-updraftplus.php:4354
|
236 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
237 |
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."
|
238 |
msgstr[0] ""
|
287 |
msgid "Please enter a valid URL e.g http://example.com"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/addons/backblaze.php:633
|
291 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: src/addons/backblaze.php:632
|
295 |
msgid "some/path"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: src/addons/backblaze.php:632
|
299 |
msgid "Bucket name"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: src/addons/backblaze.php:631
|
303 |
msgid "Backup path"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: src/addons/backblaze.php:626
|
307 |
msgid "Application key"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
311 |
msgid "here"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: src/addons/backblaze.php:621
|
315 |
msgid "Get these settings from %s, or sign up %s."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: src/addons/backblaze.php:431
|
319 |
msgid "Account Key"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
323 |
msgid "Account ID"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: src/class-updraftplus.php:4196
|
327 |
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."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
331 |
msgid "the migrator add-on"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/class-updraftplus.php:4194
|
335 |
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."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/class-updraftplus.php:4192
|
339 |
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."
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: src/class-updraftplus.php:4187
|
343 |
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."
|
344 |
msgstr ""
|
345 |
|
359 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
363 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
364 |
+
#: src/class-updraftplus.php:2427
|
365 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
369 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
370 |
+
#: src/class-updraftplus.php:2420
|
371 |
msgid "A PHP exception (%s) has occurred: %s"
|
372 |
msgstr ""
|
373 |
|
423 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: src/admin.php:4808
|
427 |
msgid "Value"
|
428 |
msgstr ""
|
429 |
|
435 |
msgid "Encrypted login failed; trying non-encrypted"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: src/addons/azure.php:594
|
439 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
440 |
msgstr ""
|
441 |
|
447 |
msgid "Cloud Files"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: src/admin.php:4553
|
451 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: src/admin.php:4512
|
455 |
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."
|
456 |
msgstr ""
|
457 |
|
460 |
msgid "UpdraftVault"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: src/includes/class-wpadmin-commands.php:513
|
464 |
msgid "archive"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: src/includes/class-wpadmin-commands.php:504
|
468 |
msgid "Extra database"
|
469 |
msgstr ""
|
470 |
|
508 |
msgid "Browse contents"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: src/restorer.php:1811
|
512 |
msgid "Skipped tables:"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: src/class-updraftplus.php:4476
|
516 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
517 |
msgstr ""
|
518 |
|
721 |
msgid "Recommended: optimize your database with WP-Optimize."
|
722 |
msgstr ""
|
723 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
724 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
725 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
726 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
768 |
msgid "Europe (Ireland)"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
772 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
773 |
msgid "UpdraftCentral"
|
774 |
msgstr ""
|
980 |
msgid "Export / import settings"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: src/restorer.php:2030
|
984 |
msgid "Processing table (%s)"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: src/restorer.php:1777
|
988 |
msgid "Backup of: %s"
|
989 |
msgstr ""
|
990 |
|
992 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/methods/dropbox.php:785
|
996 |
msgid "%s de-authentication"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: src/methods/dropbox.php:631
|
1000 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
1001 |
msgstr ""
|
1002 |
|
1064 |
msgid "US East (Ohio)"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/addons/onedrive.php:1051
|
1068 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/addons/onedrive.php:700
|
1072 |
msgid "Account is not authorized (%s)."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1076 |
msgid "Your IP address:"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1080 |
#: src/udaddons/updraftplus-addons.php:887
|
1081 |
msgid "To remove any block, please go here."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1085 |
msgid "An error response was received; HTTP code:"
|
1086 |
msgstr ""
|
1087 |
|
1109 |
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."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: src/addons/webdav.php:216
|
1113 |
msgid "Path"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: src/addons/webdav.php:211
|
1117 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: src/addons/webdav.php:203
|
1121 |
msgid "Enter any path in the field below."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: src/addons/webdav.php:203
|
1125 |
msgid "A host name cannot contain a slash."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: src/addons/webdav.php:178
|
1129 |
msgid "Protocol (SSL or not)"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: src/addons/webdav.php:173
|
1133 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1134 |
msgstr ""
|
1135 |
|
1137 |
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."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: src/methods/s3.php:1129
|
1141 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: src/methods/s3.php:126
|
1145 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1146 |
msgstr ""
|
1147 |
|
1247 |
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."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: src/class-updraftplus.php:1835
|
1251 |
msgid "Size: %s MB"
|
1252 |
msgstr ""
|
1253 |
|
1259 |
msgid "Now"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1263 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1264 |
msgstr ""
|
1265 |
|
1365 |
msgid "UpdraftCentral Connection"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1369 |
msgid "The backup was aborted by the user"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: src/admin.php:4548
|
1373 |
msgid "Your settings have been saved."
|
1374 |
msgstr ""
|
1375 |
|
1435 |
msgid "Asia Pacific (Seoul)"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: src/restorer.php:1800
|
1439 |
msgid "Uploads URL:"
|
1440 |
msgstr ""
|
1441 |
|
1443 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1447 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: src/class-updraftplus.php:4260
|
1451 |
msgid "Please read this link for important information on this process."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: src/class-updraftplus.php:4260
|
1455 |
msgid "It will be imported as a new site."
|
1456 |
msgstr ""
|
1457 |
|
1525 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: src/admin.php:4086
|
1529 |
msgid "Skipping: this archive was already restored."
|
1530 |
msgstr ""
|
1531 |
|
1557 |
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)."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/admin.php:4422
|
1561 |
msgid "Send this backup to remote storage"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/admin.php:4420
|
1565 |
msgid "Check out UpdraftPlus Vault."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/admin.php:4420
|
1569 |
msgid "Not got any remote storage?"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: src/admin.php:4420
|
1573 |
msgid "settings"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: src/admin.php:4420
|
1577 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1578 |
msgstr ""
|
1579 |
|
1630 |
msgid "Advanced Tools"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: src/addons/googlecloud.php:1049
|
1634 |
msgid "Bucket location"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: src/addons/googlecloud.php:1044
|
1638 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1642 |
msgid "This setting applies only when a new bucket is being created."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: src/addons/googlecloud.php:1033
|
1646 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: src/addons/googlecloud.php:979
|
1650 |
msgid "Do not confuse %s with %s - they are separate things."
|
1651 |
msgstr ""
|
1652 |
|
1708 |
msgid "Standard"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: src/addons/azure.php:632
|
1712 |
msgid "container"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: src/addons/azure.php:632
|
1716 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: src/addons/azure.php:631
|
1720 |
msgid "optional"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: src/addons/azure.php:627
|
1724 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/addons/azure.php:627
|
1728 |
msgid "Enter the path of the %s you wish to use here."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: src/addons/azure.php:618
|
1732 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1736 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1737 |
msgid "Azure"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: src/addons/azure.php:598
|
1741 |
msgid "Create Azure credentials in your Azure developer console."
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: src/addons/azure.php:562
|
1745 |
msgid "Could not create the container"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: src/addons/azure.php:413
|
1749 |
msgid "Could not access container"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: src/class-updraftplus.php:2926
|
1753 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1754 |
msgstr ""
|
1755 |
|
1777 |
msgid "Not installed"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1781 |
msgid "Storage class"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: src/addons/googlecloud.php:1033
|
1785 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: src/addons/googlecloud.php:1033
|
1789 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: src/addons/googlecloud.php:1032
|
1793 |
msgid "Bucket"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: src/addons/googlecloud.php:1028
|
1797 |
msgid "Otherwise, you can leave it blank."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: src/addons/googlecloud.php:1028
|
1801 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: src/addons/googlecloud.php:1028
|
1805 |
msgid "Enter the ID of the %s project you wish to use here."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: src/addons/googlecloud.php:991
|
1809 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: src/addons/googlecloud.php:902
|
1813 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: src/addons/googlecloud.php:1026
|
1817 |
msgid "Project ID"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: src/addons/googlecloud.php:759
|
1821 |
msgid "You must save and authenticate before you can test your settings."
|
1822 |
msgstr ""
|
1823 |
|
1826 |
msgstr ""
|
1827 |
|
1828 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1829 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1830 |
msgid "You do not have access to this bucket."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1834 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1835 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1836 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1837 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1838 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1839 |
msgid "Google Cloud"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1843 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1844 |
+
#: src/addons/googlecloud.php:941
|
1845 |
msgid "%s Service Exception."
|
1846 |
msgstr ""
|
1847 |
|
1849 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: src/restorer.php:827
|
1853 |
msgid "Deferring..."
|
1854 |
msgstr ""
|
1855 |
|
1918 |
msgid "Add an additional retention rule..."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: src/restorer.php:2354
|
1922 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: src/restorer.php:2354
|
1926 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1927 |
msgstr ""
|
1928 |
|
1930 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: src/class-updraftplus.php:4333
|
1934 |
msgid "You must upgrade MySQL to be able to use this database."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: src/class-updraftplus.php:4333
|
1938 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1939 |
msgstr ""
|
1940 |
|
2112 |
msgid "Updraft Vault"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2116 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2117 |
msgid "Delete failed:"
|
2118 |
msgstr ""
|
2119 |
|
2149 |
msgid "Existing keys"
|
2150 |
msgstr ""
|
2151 |
|
|
|
|
|
|
|
|
|
2152 |
#: src/addons/migrator.php:2405
|
2153 |
msgid "Your new key:"
|
2154 |
msgstr ""
|
2354 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: src/restorer.php:2356
|
2358 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2359 |
msgstr ""
|
2360 |
|
2386 |
msgid "You have made changes to your settings, and not saved."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: src/addons/onedrive.php:1111
|
2390 |
msgid "N.B. %s is not case-sensitive."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: src/addons/onedrive.php:1101
|
2394 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2398 |
+
#: src/addons/onedrive.php:1074
|
2399 |
msgid "For longer help, including screenshots, follow this link."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: src/addons/onedrive.php:1067
|
2403 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: src/addons/onedrive.php:1059
|
2407 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: src/addons/azure.php:592
|
2411 |
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)."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2415 |
msgid "%s authorisation failed:"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2419 |
+
#: src/addons/onedrive.php:1104
|
2420 |
msgid "OneDrive"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: src/addons/onedrive.php:691
|
2424 |
msgid "Please re-authorize the connection to your %s account."
|
2425 |
msgstr ""
|
2426 |
|
2428 |
msgid "configure it here"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2432 |
msgid "To remove the block, please go here."
|
2433 |
msgstr ""
|
2434 |
|
2573 |
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)"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: src/methods/s3.php:910
|
2577 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2581 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2585 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2589 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2590 |
#: src/udaddons/updraftplus-addons.php:887
|
2591 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2595 |
#: src/udaddons/updraftplus-addons.php:887
|
2596 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2600 |
#: src/udaddons/updraftplus-addons.php:887
|
2601 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2605 |
msgid "Premium WooCommerce plugins"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2609 |
msgid "Free two-factor security plugin"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2613 |
+
msgid "More quality plugins"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2617 |
msgid "Go to the shop."
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2621 |
msgid "Compare with the free version"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2625 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2626 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2627 |
msgid "UpdraftPlus Premium"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
|
|
|
|
|
|
|
|
2631 |
msgid "Free Newsletter"
|
2632 |
msgstr ""
|
2633 |
|
|
|
|
|
|
|
|
|
2634 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2635 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
|
2636 |
msgid "Dismiss (for %s months)"
|
2637 |
msgstr ""
|
2638 |
|
2673 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: src/methods/s3.php:177, src/methods/s3.php:178, src/methods/s3.php:179,
|
2677 |
+
#: src/methods/s3.php:187, src/methods/s3.php:188, src/methods/s3.php:189
|
2678 |
msgid "%s Error: Failed to initialise"
|
2679 |
msgstr ""
|
2680 |
|
2719 |
msgid "Manual"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: src/restorer.php:2333
|
2723 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2724 |
msgid "An error (%s) occurred:"
|
2725 |
msgstr ""
|
2860 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: src/class-updraftplus.php:4249
|
2864 |
msgid "Backup label:"
|
2865 |
msgstr ""
|
2866 |
|
2884 |
msgid "Your label for this backup (optional)"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1162
|
2888 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2889 |
msgstr ""
|
2890 |
|
2904 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: src/class-updraftplus.php:4268
|
2908 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: src/class-updraftplus.php:4268
|
2912 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2913 |
msgstr ""
|
2914 |
|
2945 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4241
|
2949 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4241
|
2953 |
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."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/class-updraftplus.php:4241
|
2957 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: src/class-updraftplus.php:4241
|
2961 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2962 |
msgstr ""
|
2963 |
|
3002 |
msgid "Start backup"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
3006 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3007 |
msgstr ""
|
3008 |
|
3038 |
msgid "Memory limit"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: src/class-updraftplus.php:4682, src/restorer.php:1608
|
3042 |
msgid "restoration"
|
3043 |
msgstr ""
|
3044 |
|
3101 |
msgid "search term"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: src/restorer.php:2361
|
3105 |
msgid "Too many database errors have occurred - aborting"
|
3106 |
msgstr ""
|
3107 |
|
3137 |
msgid "Free disk space in account:"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: src/admin.php:4519, src/templates/wp-admin/settings/tab-status.php:27
|
3141 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3142 |
msgstr ""
|
3143 |
|
3232 |
msgid "user"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
+
#: src/class-updraftplus.php:1832
|
3236 |
msgid "External database (%s)"
|
3237 |
msgstr ""
|
3238 |
|
3244 |
msgid "failed to access parent folder"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3248 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:421
|
3249 |
msgid "However, subsequent access attempts failed:"
|
3250 |
msgstr ""
|
3251 |
|
3281 |
msgid "use UpdraftPlus Premium"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: src/class-updraftplus.php:4095
|
3285 |
msgid "Decryption failed. The database file is encrypted."
|
3286 |
msgstr ""
|
3287 |
|
3289 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: src/restorer.php:1876, src/restorer.php:2302, src/restorer.php:2343,
|
3293 |
+
#: src/restorer.php:2356
|
3294 |
msgid "An error occurred on the first %s command - aborting run"
|
3295 |
msgstr ""
|
3296 |
|
3310 |
msgid "In %s, path names are case sensitive."
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: src/addons/azure.php:632, src/addons/google-enhanced.php:76,
|
3314 |
+
#: src/addons/onedrive.php:1111
|
3315 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1033,
|
3319 |
+
#: src/addons/onedrive.php:1111
|
3320 |
msgid "e.g. %s"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
+
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1111
|
3324 |
msgid "Enter the path of the %s folder you wish to use here."
|
3325 |
msgstr ""
|
3326 |
|
3364 |
msgid "Failed to upload %s"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
3368 |
msgid "Success:"
|
3369 |
msgstr ""
|
3370 |
|
3372 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:610
|
3376 |
msgid "(You appear to be already authenticated)."
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: src/methods/dropbox.php:606
|
3380 |
msgid "Dropbox"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:606
|
3384 |
msgid "Authenticate with %s"
|
3385 |
msgstr ""
|
3386 |
|
3411 |
msgid "%s error - failed to access the container"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3415 |
+
#: src/methods/dropbox.php:663, src/methods/googledrive.php:1248
|
3416 |
msgid "Account holder's name: %s."
|
3417 |
msgstr ""
|
3418 |
|
3428 |
msgid "<strong>This is NOT a folder name</strong>."
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3432 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3433 |
msgid "Folder"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3437 |
#: src/methods/googledrive.php:1122
|
3438 |
msgid "%s download: failed: file not found"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:441
|
3442 |
msgid "Name: %s."
|
3443 |
msgstr ""
|
3444 |
|
3477 |
msgid "Failed to unpack the archive"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: src/class-updraftplus.php:1356
|
3481 |
msgid "Error - failed to download the file"
|
3482 |
msgstr ""
|
3483 |
|
3502 |
msgstr ""
|
3503 |
|
3504 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3505 |
+
#: src/admin.php:4808
|
3506 |
msgid "Key"
|
3507 |
msgstr ""
|
3508 |
|
3527 |
msgstr ""
|
3528 |
|
3529 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3530 |
+
#: src/includes/class-backup-history.php:349
|
3531 |
msgid "Backup created by: %s."
|
3532 |
msgstr ""
|
3533 |
|
3559 |
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."
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: src/admin.php:694, src/includes/class-backup-history.php:356
|
3563 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3564 |
msgstr ""
|
3565 |
|
3568 |
msgstr ""
|
3569 |
|
3570 |
#: src/admin.php:693, src/admin.php:694,
|
3571 |
+
#: src/includes/class-backup-history.php:356
|
3572 |
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))."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3576 |
+
#: src/restorer.php:1577
|
3577 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: src/restorer.php:869, src/restorer.php:917
|
3581 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3582 |
msgstr ""
|
3583 |
|
3584 |
+
#: src/restorer.php:724
|
3585 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3586 |
msgstr ""
|
3587 |
|
3593 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
+
#: src/addons/backblaze.php:557, src/methods/cloudfiles.php:234,
|
3597 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3598 |
msgid "No settings were found"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
+
#: src/includes/class-backup-history.php:524
|
3602 |
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."
|
3603 |
msgstr ""
|
3604 |
|
3606 |
msgid "Rescanning remote and local storage for backup sets..."
|
3607 |
msgstr ""
|
3608 |
|
3609 |
+
#: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049,
|
3610 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3611 |
msgid "(Read more)"
|
3612 |
msgstr ""
|
3624 |
msgid "Remove"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: src/methods/s3.php:861
|
3628 |
msgid "Other %s FAQs."
|
3629 |
msgstr ""
|
3630 |
|
3636 |
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."
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330,
|
3640 |
+
#: src/restorer.php:1608
|
3641 |
msgid "Your hosting company must enable these functions before %s can work."
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330
|
3645 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3646 |
msgstr ""
|
3647 |
|
3657 |
msgid "regular non-encrypted FTP"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: src/restorer.php:1784
|
3661 |
msgid "Backup created by:"
|
3662 |
msgstr ""
|
3663 |
|
3711 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: src/class-updraftplus.php:4732
|
3715 |
msgid "The attempt to undo the double-compression succeeded."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: src/class-updraftplus.php:4709, src/class-updraftplus.php:4730
|
3719 |
msgid "The attempt to undo the double-compression failed."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: src/class-updraftplus.php:4702
|
3723 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: src/includes/class-wpadmin-commands.php:313
|
3727 |
msgid "Constants"
|
3728 |
msgstr ""
|
3729 |
|
3772 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: src/restorer.php:717
|
3776 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3777 |
msgstr ""
|
3778 |
|
3793 |
msgid "Messages:"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: src/restorer.php:2196
|
3797 |
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"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: src/restorer.php:490
|
3801 |
msgid "The directory does not exist"
|
3802 |
msgstr ""
|
3803 |
|
3966 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: src/admin.php:679, src/admin.php:4232
|
3970 |
msgid "Error data:"
|
3971 |
msgstr ""
|
3972 |
|
3978 |
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."
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: src/restorer.php:1851
|
3982 |
msgid "Split line to avoid exceeding maximum packet size"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
+
#: src/restorer.php:1731
|
3986 |
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)"
|
3987 |
msgstr ""
|
3988 |
|
4014 |
msgid "Email reports"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/class-updraftplus.php:1840, src/class-updraftplus.php:1845
|
4018 |
msgid "%s checksum: %s"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
+
#: src/class-updraftplus.php:1813, src/class-updraftplus.php:1815
|
4022 |
msgid "files: %s"
|
4023 |
msgstr ""
|
4024 |
|
4071 |
msgid "%d errors, %d warnings"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:748,
|
4075 |
+
#: src/methods/dropbox.php:770
|
4076 |
msgid "%s authentication"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:529,
|
4080 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:748,
|
4081 |
+
#: src/methods/dropbox.php:770, src/methods/dropbox.php:785,
|
4082 |
+
#: src/methods/dropbox.php:798, src/methods/dropbox.php:941
|
4083 |
msgid "%s error: %s"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:575
|
4087 |
msgid "%s logo"
|
4088 |
msgstr ""
|
4089 |
|
4091 |
msgid "%s did not return the expected response - check your log file for more details"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: src/methods/s3.php:307
|
4095 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4096 |
msgstr ""
|
4097 |
|
4112 |
msgid "For more reporting features, use the Reporting add-on."
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: src/class-updraftplus.php:4176
|
4116 |
msgid "(version: %s)"
|
4117 |
msgstr ""
|
4118 |
|
4253 |
msgid "Reporting"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: src/admin.php:4805
|
4257 |
msgid "Options (raw)"
|
4258 |
msgstr ""
|
4259 |
|
4261 |
msgid "Send a report only when there are warnings/errors"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
+
#: src/restorer.php:1795
|
4265 |
msgid "Content URL:"
|
4266 |
msgstr ""
|
4267 |
|
4405 |
msgid "Your web-server does not have the %s module installed."
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1237
|
4409 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4410 |
msgstr ""
|
4411 |
|
4425 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: src/restorer.php:1789
|
4429 |
msgid "Site home:"
|
4430 |
msgstr ""
|
4431 |
|
4441 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:144,
|
4445 |
#: src/methods/stream-base.php:149
|
4446 |
msgid "Upload failed"
|
4447 |
msgstr ""
|
4585 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: src/restorer.php:702
|
4589 |
msgid "file"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: src/restorer.php:695
|
4593 |
msgid "folder"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: src/restorer.php:695, src/restorer.php:702
|
4597 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: src/class-updraftplus.php:2933
|
4601 |
msgid "The backup has not finished; a resumption is scheduled"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: src/class-updraftplus.php:2117
|
4605 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
+
#: src/addons/onedrive.php:966,
|
4609 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4610 |
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)."
|
4611 |
msgstr ""
|
4690 |
msgid "Support"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: src/class-updraftplus.php:4481
|
4694 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/class-updraftplus.php:4473
|
4698 |
msgid "This database backup is missing core WordPress tables: %s"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: src/class-updraftplus.php:4234
|
4702 |
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."
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: src/class-updraftplus.php:4233, src/class-updraftplus.php:4240
|
4706 |
msgid "%s version: %s"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
+
#: src/class-updraftplus.php:4112
|
4710 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4711 |
msgstr ""
|
4712 |
|
4791 |
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?"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4795 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4799 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: src/includes/class-wpadmin-commands.php:221
|
4803 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4804 |
msgstr ""
|
4805 |
|
4839 |
msgid "WordPress root directory server path: %s"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: src/methods/dreamobjects.php:88, src/methods/s3generic.php:104
|
4843 |
msgid "%s end-point"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: src/methods/s3.php:838
|
4847 |
msgid "... and many more!"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
|
4851 |
+
#: src/methods/s3generic.php:83
|
4852 |
msgid "S3 (Compatible)"
|
4853 |
msgstr ""
|
4854 |
|
4856 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: src/admin.php:4083
|
4860 |
msgid "Looking for %s archive: file name: %s"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
+
#: src/admin.php:4044
|
4864 |
msgid "Final checks"
|
4865 |
msgstr ""
|
4866 |
|
4888 |
msgid "Processing files - please wait..."
|
4889 |
msgstr ""
|
4890 |
|
4891 |
+
#: src/admin.php:4234,
|
4892 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4893 |
msgid "Please consult this FAQ for help on what to do about it."
|
4894 |
msgstr ""
|
4897 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
+
#: src/class-updraftplus.php:4120
|
4901 |
msgid "Failed to open database file."
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: src/admin.php:4770
|
4905 |
msgid "Known backups (raw)"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: src/restorer.php:1009
|
4909 |
msgid "Files found:"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: src/restorer.php:1977
|
4913 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: src/admin.php:4103
|
4917 |
msgid "file is size:"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:457,
|
4921 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4922 |
+
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:4354,
|
4923 |
+
#: src/class-updraftplus.php:4354, src/updraftplus.php:156
|
4924 |
msgid "Go here for more information."
|
4925 |
msgstr ""
|
4926 |
|
4928 |
msgid "Some files are still downloading or being processed - please wait."
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: src/class-updraftplus.php:4203, src/class-updraftplus.php:4224
|
4932 |
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."
|
4933 |
msgstr ""
|
4934 |
|
4972 |
msgid "Error - no such file exists at %s"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4976 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4977 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4978 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
5001 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
5002 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
5003 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5004 |
+
#: src/class-updraftplus.php:4093, src/class-updraftplus.php:4095,
|
5005 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4264,
|
5006 |
+
#: src/class-updraftplus.php:4333, src/methods/googledrive.php:382,
|
5007 |
+
#: src/methods/s3.php:336
|
5008 |
msgid "Error: %s"
|
5009 |
msgstr ""
|
5010 |
|
5044 |
msgid "Warnings encountered:"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
+
#: src/class-updraftplus.php:2921
|
5048 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5049 |
msgstr ""
|
5050 |
|
5084 |
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."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: src/methods/s3.php:847
|
5088 |
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."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: src/methods/s3.php:1150
|
5092 |
msgid "Please check your access credentials."
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1128
|
5096 |
msgid "The error reported by %s was:"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: src/restorer.php:1518
|
5100 |
msgid "Please supply the requested information, and then continue."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: src/class-updraftplus.php:4275, src/restorer.php:1825
|
5104 |
msgid "Site information:"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: src/restorer.php:1692
|
5108 |
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."
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/admin.php:2445, src/class-updraftplus.php:4268, src/restorer.php:2196
|
5112 |
msgid "Warning:"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4260,
|
5116 |
#: src/restorer.php:184
|
5117 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5118 |
msgstr ""
|
5119 |
|
5120 |
+
#: src/admin.php:4071
|
5121 |
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."
|
5122 |
msgstr ""
|
5123 |
|
5193 |
msgid "News"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
+
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:490
|
5197 |
msgid "Backup set not found"
|
5198 |
msgstr ""
|
5199 |
|
5358 |
msgstr ""
|
5359 |
|
5360 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5361 |
+
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5362 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5363 |
#: src/udaddons/options.php:135
|
5364 |
msgid "Password"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
+
#: src/addons/sftp.php:429, src/addons/webdav.php:207
|
5368 |
msgid "Port"
|
5369 |
msgstr ""
|
5370 |
|
5371 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5372 |
+
#: src/addons/webdav.php:199
|
5373 |
msgid "Host"
|
5374 |
msgstr ""
|
5375 |
|
5417 |
msgid "Over-write wp-config.php"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
+
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:507
|
5421 |
msgid "WordPress Core"
|
5422 |
msgstr ""
|
5423 |
|
5425 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5426 |
msgstr ""
|
5427 |
|
5428 |
+
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5429 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3052,
|
5430 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5431 |
#: src/methods/stream-base.php:353
|
5432 |
msgid "Failed"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
+
#: src/addons/webdav.php:169
|
5436 |
msgid "WebDAV URL"
|
5437 |
msgstr ""
|
5438 |
|
5483 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:816
|
5487 |
msgid "Your %s account name: %s"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: src/methods/dropbox.php:806, src/methods/dropbox.php:828
|
5491 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
5495 |
msgid "you have authenticated your %s account"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5499 |
msgid "there's an add-on for that."
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5503 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5507 |
msgid "Backups are saved in"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5511 |
msgid "Need to use sub-folders?"
|
5512 |
msgstr ""
|
5513 |
|
5520 |
msgid "You do not appear to be authenticated with Dropbox"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: src/methods/s3.php:1145
|
5524 |
msgid "The communication with %s was not encrypted."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: src/methods/s3.php:1143
|
5528 |
msgid "The communication with %s was encrypted."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1140
|
5532 |
msgid "We accessed the bucket, and were able to create files within it."
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5536 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5537 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5538 |
msgstr ""
|
5539 |
|
5540 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5541 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5542 |
msgid "Failure"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: src/addons/backblaze.php:472, src/methods/s3.php:1126
|
5546 |
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)."
|
5547 |
msgstr ""
|
5548 |
|
5549 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5550 |
+
#: src/methods/s3.php:1120
|
5551 |
msgid "Region"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5555 |
+
#: src/methods/s3.php:1102
|
5556 |
msgid "Failure: No bucket details were given."
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: src/methods/s3.php:1080
|
5560 |
msgid "API secret"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: src/methods/s3.php:928
|
5564 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
+
#: src/methods/s3.php:927
|
5568 |
msgid "%s location"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
+
#: src/methods/s3.php:923
|
5572 |
msgid "%s secret key"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: src/methods/s3.php:919
|
5576 |
msgid "%s access key"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: src/methods/s3.php:859
|
5580 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: src/methods/s3.php:857
|
5584 |
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."
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: src/methods/s3.php:477, src/methods/s3.php:589, src/methods/s3.php:661,
|
5588 |
+
#: src/methods/s3.php:764
|
5589 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
+
#: src/methods/s3.php:747, src/methods/s3.php:757, src/methods/s3.php:793
|
5593 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: src/methods/s3.php:455
|
5597 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: src/methods/s3.php:451
|
5601 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: src/methods/s3.php:435
|
5605 |
msgid "%s chunk %s: upload failed"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
+
#: src/methods/s3.php:425
|
5609 |
msgid "%s error: file %s was shortened unexpectedly"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
+
#: src/methods/s3.php:403
|
5613 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5614 |
msgstr ""
|
5615 |
|
5634 |
msgstr ""
|
5635 |
|
5636 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5637 |
+
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5638 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5639 |
msgid "Username"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5643 |
+
#: src/methods/s3.php:1076
|
5644 |
msgid "API key"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5648 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5649 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5650 |
+
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5651 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5652 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5653 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5654 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5655 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5656 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5657 |
+
#: src/methods/s3.php:1076, src/methods/s3.php:1080
|
5658 |
msgid "Failure: No %s was given."
|
5659 |
msgstr ""
|
5660 |
|
5661 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5662 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5663 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5664 |
msgstr ""
|
5665 |
|
5694 |
msgid "Test %s Settings"
|
5695 |
msgstr ""
|
5696 |
|
5697 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
5698 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5699 |
msgid "Error opening local file: Failed to download"
|
5700 |
msgstr ""
|
5706 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5707 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5708 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5709 |
+
#: src/methods/s3.php:371, src/methods/s3.php:383, src/methods/s3.php:384
|
5710 |
msgid "%s Error: Failed to upload"
|
5711 |
msgstr ""
|
5712 |
|
5732 |
msgid "Authenticate with Google"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5736 |
#: src/methods/googledrive.php:1196
|
5737 |
msgid "Client Secret"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1193
|
5741 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5742 |
msgstr ""
|
5743 |
|
5744 |
+
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5745 |
#: src/methods/googledrive.php:1192
|
5746 |
msgid "Client ID"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5750 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5754 |
msgid "Select 'Web Application' as the application type."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1167
|
5758 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5759 |
msgstr ""
|
5760 |
|
5761 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5762 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:546,
|
5763 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5764 |
#: src/methods/googledrive.php:558
|
5765 |
msgid "Account is not authorized."
|
5779 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5780 |
msgstr ""
|
5781 |
|
5782 |
+
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5783 |
#: src/methods/googledrive.php:441
|
5784 |
msgid "you have authenticated your %s account."
|
5785 |
msgstr ""
|
5786 |
|
5787 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5788 |
+
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5789 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5790 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5791 |
+
#: src/methods/s3.php:1140, src/methods/stream-base.php:364
|
5792 |
msgid "Success"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:839,
|
5796 |
+
#: src/methods/dropbox.php:848, src/methods/googledrive.php:415
|
5797 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5798 |
msgstr ""
|
5799 |
|
5825 |
msgstr ""
|
5826 |
|
5827 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5828 |
+
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:4101,
|
5829 |
+
#: src/restorer.php:2437, src/restorer.php:2542
|
5830 |
msgid "OK"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: src/restorer.php:2431, src/restorer.php:2506
|
5834 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
+
#: src/addons/migrator.php:1285, src/restorer.php:2333
|
5838 |
msgid "the database query being run was:"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: src/restorer.php:2034
|
5842 |
msgid "will restore as:"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
+
#: src/class-updraftplus.php:4246, src/restorer.php:1807,
|
5846 |
+
#: src/restorer.php:1896, src/restorer.php:1922
|
5847 |
msgid "Old table prefix:"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5851 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4176
|
5852 |
msgid "Backup of:"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: src/restorer.php:1614
|
5856 |
msgid "Failed to open database file"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: src/restorer.php:1593
|
5860 |
msgid "Failed to find database file"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: src/restorer.php:1570
|
5864 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: src/restorer.php:529
|
5868 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: src/restorer.php:524
|
5872 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: src/restorer.php:417
|
5876 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: src/restorer.php:401
|
5880 |
msgid "Failed to create a temporary directory"
|
5881 |
msgstr ""
|
5882 |
|
5920 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: src/admin.php:4109, src/admin.php:4110
|
5924 |
msgid "Could not find one of the files for restoration"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: src/admin.php:4224
|
5928 |
msgid "Error message"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: src/admin.php:4106
|
5932 |
msgid "The backup records do not contain information about the proper size of this file."
|
5933 |
msgstr ""
|
5934 |
|
5935 |
+
#: src/admin.php:4098
|
5936 |
msgid "Archive is expected to be size:"
|
5937 |
msgstr ""
|
5938 |
|
5973 |
msgstr ""
|
5974 |
|
5975 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5976 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5977 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5978 |
msgstr ""
|
5979 |
|
6261 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6262 |
msgstr ""
|
6263 |
|
6264 |
+
#: src/class-updraftplus.php:4206
|
6265 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6266 |
msgstr ""
|
6267 |
|
6314 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6315 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6316 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6317 |
+
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6318 |
+
#: src/admin.php:680, src/admin.php:4103, src/admin.php:4133,
|
6319 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6320 |
+
#: src/methods/updraftvault.php:522, src/restorer.php:1523
|
6321 |
msgid "Error:"
|
6322 |
msgstr ""
|
6323 |
|
6391 |
|
6392 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6393 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6394 |
+
#: src/admin.php:3682, src/admin.php:4187,
|
6395 |
#: src/includes/class-wpadmin-commands.php:147,
|
6396 |
+
#: src/includes/class-wpadmin-commands.php:505,
|
6397 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6398 |
msgid "Database"
|
6399 |
msgstr ""
|
6400 |
|
6401 |
+
#: src/admin.php:311, src/admin.php:4777
|
6402 |
msgid "Files"
|
6403 |
msgstr ""
|
6404 |
|
6450 |
msgid "UpdraftPlus.Com"
|
6451 |
msgstr ""
|
6452 |
|
6453 |
+
#: src/admin.php:4669
|
6454 |
msgid "Your settings have been wiped."
|
6455 |
msgstr ""
|
6456 |
|
6511 |
msgstr ""
|
6512 |
|
6513 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6514 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
6515 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6516 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6517 |
+
#: src/methods/stream-base.php:220, src/restorer.php:2433,
|
6518 |
+
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6519 |
msgid "Error"
|
6520 |
msgstr ""
|
6521 |
|
6556 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6557 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6558 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6559 |
+
#: src/methods/s3.php:847, src/methods/s3.php:851,
|
6560 |
#: src/methods/updraftvault.php:301,
|
6561 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6562 |
#: src/udaddons/updraftplus-addons.php:253
|
6588 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6589 |
msgstr ""
|
6590 |
|
6591 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3966,
|
6592 |
+
#: src/methods/googledrive.php:1082, src/methods/s3.php:336
|
6593 |
msgid "File not found"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: src/class-updraftplus.php:3873
|
6597 |
msgid "The decryption key used:"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
+
#: src/class-updraftplus.php:3873, src/class-updraftplus.php:4105,
|
6601 |
+
#: src/restorer.php:422
|
6602 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6603 |
msgstr ""
|
6604 |
|
6605 |
+
#: src/class-updraftplus.php:3854, src/class-updraftplus.php:4093,
|
6606 |
+
#: src/restorer.php:409
|
6607 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6608 |
msgstr ""
|
6609 |
|
6611 |
msgid "Could not open the backup file for writing"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: src/class-updraftplus.php:3459
|
6615 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6616 |
msgstr ""
|
6617 |
|
6618 |
+
#: src/class-updraftplus.php:3420
|
6619 |
msgid "Could not read the directory"
|
6620 |
msgstr ""
|
6621 |
|
6627 |
msgid "WordPress backup is complete"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: src/class-updraftplus.php:2930
|
6631 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: src/class-updraftplus.php:2915
|
6635 |
msgid "The backup apparently succeeded and is now complete"
|
6636 |
msgstr ""
|
6637 |
|
6639 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: src/class-updraftplus.php:2618
|
6643 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: src/class-updraftplus.php:1897
|
6647 |
msgid "Others"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: src/addons/multisite.php:465, src/class-updraftplus.php:1882
|
6651 |
msgid "Uploads"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: src/class-updraftplus.php:1881
|
6655 |
msgid "Themes"
|
6656 |
msgstr ""
|
6657 |
|
6658 |
+
#: src/class-updraftplus.php:1880
|
6659 |
msgid "Plugins"
|
6660 |
msgstr ""
|
6661 |
|
@@ -11,6 +11,50 @@ msgstr ""
|
|
11 |
"Language: ca\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
msgstr ""
|
@@ -19,11 +63,11 @@ msgstr ""
|
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr ""
|
29 |
|
@@ -91,25 +135,25 @@ msgstr ""
|
|
91 |
msgid "remote site"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] ""
|
102 |
msgstr[1] ""
|
103 |
|
104 |
-
#: src/class-updraftplus.php:
|
105 |
msgid "Your chosen replacement collation"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: src/class-updraftplus.php:
|
109 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: src/class-updraftplus.php:
|
113 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
114 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
115 |
msgstr[0] ""
|
@@ -123,27 +167,27 @@ msgstr ""
|
|
123 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: src/addons/azure.php:
|
127 |
msgid "%s Prefix"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: src/addons/azure.php:
|
131 |
msgid "%s Container"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: src/addons/azure.php:
|
135 |
msgid "%s Key"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/addons/azure.php:
|
139 |
msgid "%s Account Name"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: src/addons/googlecloud.php:
|
143 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: src/addons/googlecloud.php:
|
147 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
148 |
msgstr ""
|
149 |
|
@@ -173,19 +217,19 @@ msgid_plural "Your .htaccess has an old site references on line numbers %s. You
|
|
173 |
msgstr[0] ""
|
174 |
msgstr[1] ""
|
175 |
|
176 |
-
#: src/restorer.php:
|
177 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: src/class-updraftplus.php:
|
181 |
msgid "Your chosen character set to use instead:"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: src/class-updraftplus.php:
|
185 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: src/class-updraftplus.php:
|
189 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
190 |
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."
|
191 |
msgstr[0] ""
|
@@ -239,59 +283,59 @@ msgstr ""
|
|
239 |
msgid "Please enter a valid URL e.g http://example.com"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: src/addons/backblaze.php:
|
243 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: src/addons/backblaze.php:
|
247 |
msgid "some/path"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/addons/backblaze.php:
|
251 |
msgid "Bucket name"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/addons/backblaze.php:
|
255 |
msgid "Backup path"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "Application key"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "here"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "Get these settings from %s, or sign up %s."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Account Key"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Account ID"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/class-updraftplus.php:
|
279 |
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."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/class-updraftplus.php:
|
283 |
msgid "the migrator add-on"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/class-updraftplus.php:
|
287 |
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."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/class-updraftplus.php:
|
291 |
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."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
msgstr ""
|
297 |
|
@@ -311,15 +355,15 @@ msgstr ""
|
|
311 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/admin.php:1368, src/admin.php:
|
315 |
-
#: src/class-updraftplus.php:
|
316 |
-
#: src/class-updraftplus.php:
|
317 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: src/admin.php:1359, src/admin.php:
|
321 |
-
#: src/class-updraftplus.php:
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "A PHP exception (%s) has occurred: %s"
|
324 |
msgstr ""
|
325 |
|
@@ -375,7 +419,7 @@ msgstr ""
|
|
375 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/admin.php:
|
379 |
msgid "Value"
|
380 |
msgstr ""
|
381 |
|
@@ -387,7 +431,7 @@ msgstr ""
|
|
387 |
msgid "Encrypted login failed; trying non-encrypted"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/addons/azure.php:
|
391 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
392 |
msgstr ""
|
393 |
|
@@ -399,11 +443,11 @@ msgstr ""
|
|
399 |
msgid "Cloud Files"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: src/admin.php:
|
403 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: src/admin.php:
|
407 |
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."
|
408 |
msgstr ""
|
409 |
|
@@ -412,11 +456,11 @@ msgstr ""
|
|
412 |
msgid "UpdraftVault"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: src/includes/class-wpadmin-commands.php:
|
416 |
msgid "archive"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: src/includes/class-wpadmin-commands.php:
|
420 |
msgid "Extra database"
|
421 |
msgstr ""
|
422 |
|
@@ -460,11 +504,11 @@ msgstr ""
|
|
460 |
msgid "Browse contents"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: src/restorer.php:
|
464 |
msgid "Skipped tables:"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: src/class-updraftplus.php:
|
468 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
469 |
msgstr ""
|
470 |
|
@@ -673,14 +717,6 @@ msgstr ""
|
|
673 |
msgid "Recommended: optimize your database with WP-Optimize."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
677 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
681 |
-
msgid "WP-Optimize"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
685 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
686 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -728,27 +764,7 @@ msgstr ""
|
|
728 |
msgid "Europe (Ireland)"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
732 |
-
msgid "WP-Optimize (free)"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
736 |
-
msgid "Explore our Cloud and Premium versions."
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
740 |
-
msgid "Download it for free from WordPress.org"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
744 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
748 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
752 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
753 |
msgid "UpdraftCentral"
|
754 |
msgstr ""
|
@@ -960,11 +976,11 @@ msgstr ""
|
|
960 |
msgid "Export / import settings"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: src/restorer.php:
|
964 |
msgid "Processing table (%s)"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: src/restorer.php:
|
968 |
msgid "Backup of: %s"
|
969 |
msgstr ""
|
970 |
|
@@ -972,11 +988,11 @@ msgstr ""
|
|
972 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: src/methods/dropbox.php:
|
976 |
msgid "%s de-authentication"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: src/methods/dropbox.php:
|
980 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
981 |
msgstr ""
|
982 |
|
@@ -1044,24 +1060,24 @@ msgstr ""
|
|
1044 |
msgid "US East (Ohio)"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: src/addons/onedrive.php:
|
1048 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/addons/onedrive.php:
|
1052 |
msgid "Account is not authorized (%s)."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/addons/onedrive.php:
|
1056 |
msgid "Your IP address:"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: src/addons/onedrive.php:
|
1060 |
#: src/udaddons/updraftplus-addons.php:887
|
1061 |
msgid "To remove any block, please go here."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: src/addons/onedrive.php:
|
1065 |
msgid "An error response was received; HTTP code:"
|
1066 |
msgstr ""
|
1067 |
|
@@ -1089,27 +1105,27 @@ msgstr ""
|
|
1089 |
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."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: src/addons/webdav.php:
|
1093 |
msgid "Path"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: src/addons/webdav.php:
|
1097 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: src/addons/webdav.php:
|
1101 |
msgid "Enter any path in the field below."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: src/addons/webdav.php:
|
1105 |
msgid "A host name cannot contain a slash."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "Protocol (SSL or not)"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1114 |
msgstr ""
|
1115 |
|
@@ -1117,11 +1133,11 @@ msgstr ""
|
|
1117 |
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."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: src/methods/s3.php:
|
1121 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: src/methods/s3.php:
|
1125 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1126 |
msgstr ""
|
1127 |
|
@@ -1227,7 +1243,7 @@ msgstr ""
|
|
1227 |
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."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: src/class-updraftplus.php:
|
1231 |
msgid "Size: %s MB"
|
1232 |
msgstr ""
|
1233 |
|
@@ -1239,7 +1255,7 @@ msgstr ""
|
|
1239 |
msgid "Now"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: src/class-updraftplus.php:
|
1243 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1345,11 +1361,11 @@ msgstr ""
|
|
1345 |
msgid "UpdraftCentral Connection"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1349 |
msgid "The backup was aborted by the user"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: src/admin.php:
|
1353 |
msgid "Your settings have been saved."
|
1354 |
msgstr ""
|
1355 |
|
@@ -1415,7 +1431,7 @@ msgstr ""
|
|
1415 |
msgid "Asia Pacific (Seoul)"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: src/restorer.php:
|
1419 |
msgid "Uploads URL:"
|
1420 |
msgstr ""
|
1421 |
|
@@ -1423,15 +1439,15 @@ msgstr ""
|
|
1423 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/class-updraftplus.php:
|
1427 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/class-updraftplus.php:
|
1431 |
msgid "Please read this link for important information on this process."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: src/class-updraftplus.php:
|
1435 |
msgid "It will be imported as a new site."
|
1436 |
msgstr ""
|
1437 |
|
@@ -1505,7 +1521,7 @@ msgstr ""
|
|
1505 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: src/admin.php:
|
1509 |
msgid "Skipping: this archive was already restored."
|
1510 |
msgstr ""
|
1511 |
|
@@ -1537,23 +1553,23 @@ msgstr ""
|
|
1537 |
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)."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: src/admin.php:
|
1541 |
msgid "Send this backup to remote storage"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: src/admin.php:
|
1545 |
msgid "Check out UpdraftPlus Vault."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: src/admin.php:
|
1549 |
msgid "Not got any remote storage?"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: src/admin.php:
|
1553 |
msgid "settings"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1558 |
msgstr ""
|
1559 |
|
@@ -1610,23 +1626,23 @@ msgstr ""
|
|
1610 |
msgid "Advanced Tools"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: src/addons/googlecloud.php:
|
1614 |
msgid "Bucket location"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: src/addons/googlecloud.php:
|
1618 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: src/addons/googlecloud.php:
|
1622 |
msgid "This setting applies only when a new bucket is being created."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: src/addons/googlecloud.php:
|
1626 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "Do not confuse %s with %s - they are separate things."
|
1631 |
msgstr ""
|
1632 |
|
@@ -1688,48 +1704,48 @@ msgstr ""
|
|
1688 |
msgid "Standard"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: src/addons/azure.php:
|
1692 |
msgid "container"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: src/addons/azure.php:
|
1696 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: src/addons/azure.php:
|
1700 |
msgid "optional"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: src/addons/azure.php:
|
1704 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "Enter the path of the %s you wish to use here."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
-
#: src/addons/azure.php:
|
1717 |
msgid "Azure"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: src/addons/azure.php:
|
1721 |
msgid "Create Azure credentials in your Azure developer console."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: src/addons/azure.php:
|
1725 |
msgid "Could not create the container"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: src/addons/azure.php:
|
1729 |
msgid "Could not access container"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: src/class-updraftplus.php:
|
1733 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1734 |
msgstr ""
|
1735 |
|
@@ -1757,47 +1773,47 @@ msgstr ""
|
|
1757 |
msgid "Not installed"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: src/addons/googlecloud.php:
|
1761 |
msgid "Storage class"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: src/addons/googlecloud.php:
|
1765 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: src/addons/googlecloud.php:
|
1769 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: src/addons/googlecloud.php:
|
1773 |
msgid "Bucket"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Otherwise, you can leave it blank."
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "Enter the ID of the %s project you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "Project ID"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "You must save and authenticate before you can test your settings."
|
1802 |
msgstr ""
|
1803 |
|
@@ -1806,22 +1822,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1806 |
msgstr ""
|
1807 |
|
1808 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1809 |
-
#: src/addons/googlecloud.php:
|
1810 |
msgid "You do not have access to this bucket."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1814 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1815 |
-
#: src/addons/googlecloud.php:
|
1816 |
-
#: src/addons/googlecloud.php:
|
1817 |
-
#: src/addons/googlecloud.php:
|
1818 |
-
#: src/addons/googlecloud.php:
|
1819 |
msgid "Google Cloud"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1823 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1824 |
-
#: src/addons/googlecloud.php:
|
1825 |
msgid "%s Service Exception."
|
1826 |
msgstr ""
|
1827 |
|
@@ -1829,7 +1845,7 @@ msgstr ""
|
|
1829 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: src/restorer.php:
|
1833 |
msgid "Deferring..."
|
1834 |
msgstr ""
|
1835 |
|
@@ -1898,11 +1914,11 @@ msgstr ""
|
|
1898 |
msgid "Add an additional retention rule..."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: src/restorer.php:
|
1902 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: src/restorer.php:
|
1906 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1907 |
msgstr ""
|
1908 |
|
@@ -1910,11 +1926,11 @@ msgstr ""
|
|
1910 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: src/class-updraftplus.php:
|
1914 |
msgid "You must upgrade MySQL to be able to use this database."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: src/class-updraftplus.php:
|
1918 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1919 |
msgstr ""
|
1920 |
|
@@ -2092,8 +2108,8 @@ msgstr ""
|
|
2092 |
msgid "Updraft Vault"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: src/addons/azure.php:
|
2096 |
-
#: src/addons/googlecloud.php:
|
2097 |
msgid "Delete failed:"
|
2098 |
msgstr ""
|
2099 |
|
@@ -2129,10 +2145,6 @@ msgstr ""
|
|
2129 |
msgid "Existing keys"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: src/addons/migrator.php:2423
|
2133 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2134 |
-
msgstr ""
|
2135 |
-
|
2136 |
#: src/addons/migrator.php:2405
|
2137 |
msgid "Your new key:"
|
2138 |
msgstr ""
|
@@ -2338,7 +2350,7 @@ msgstr ""
|
|
2338 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: src/restorer.php:
|
2342 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2343 |
msgstr ""
|
2344 |
|
@@ -2370,41 +2382,41 @@ msgstr ""
|
|
2370 |
msgid "You have made changes to your settings, and not saved."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: src/addons/onedrive.php:
|
2374 |
msgid "N.B. %s is not case-sensitive."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: src/addons/onedrive.php:
|
2378 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: src/addons/azure.php:
|
2382 |
-
#: src/addons/onedrive.php:
|
2383 |
msgid "For longer help, including screenshots, follow this link."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: src/addons/onedrive.php:
|
2387 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: src/addons/onedrive.php:
|
2391 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: src/addons/azure.php:
|
2395 |
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)."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: src/addons/onedrive.php:
|
2399 |
msgid "%s authorisation failed:"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
-
#: src/addons/onedrive.php:
|
2404 |
msgid "OneDrive"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: src/addons/onedrive.php:
|
2408 |
msgid "Please re-authorize the connection to your %s account."
|
2409 |
msgstr ""
|
2410 |
|
@@ -2412,7 +2424,7 @@ msgstr ""
|
|
2412 |
msgid "configure it here"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: src/addons/onedrive.php:
|
2416 |
msgid "To remove the block, please go here."
|
2417 |
msgstr ""
|
2418 |
|
@@ -2557,74 +2569,66 @@ msgstr ""
|
|
2557 |
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)"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: src/methods/s3.php:
|
2561 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2565 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2569 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: src/addons/onedrive.php:
|
2573 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2574 |
#: src/udaddons/updraftplus-addons.php:887
|
2575 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: src/addons/onedrive.php:
|
2579 |
#: src/udaddons/updraftplus-addons.php:887
|
2580 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: src/addons/onedrive.php:
|
2584 |
#: src/udaddons/updraftplus-addons.php:887
|
2585 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2589 |
msgid "Premium WooCommerce plugins"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2593 |
msgid "Free two-factor security plugin"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2597 |
-
msgid "More
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2601 |
msgid "Go to the shop."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2605 |
msgid "Compare with the free version"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2609 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2610 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2611 |
msgid "UpdraftPlus Premium"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2615 |
-
msgid "Follow this link to sign up."
|
2616 |
-
msgstr ""
|
2617 |
-
|
2618 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
2619 |
msgid "Free Newsletter"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
2623 |
-
msgid "Thank you for backing up with UpdraftPlus!"
|
2624 |
-
msgstr ""
|
2625 |
-
|
2626 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2627 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2628 |
msgid "Dismiss (for %s months)"
|
2629 |
msgstr ""
|
2630 |
|
@@ -2665,8 +2669,8 @@ msgstr ""
|
|
2665 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: src/methods/s3.php:
|
2669 |
-
#: src/methods/s3.php:
|
2670 |
msgid "%s Error: Failed to initialise"
|
2671 |
msgstr ""
|
2672 |
|
@@ -2711,7 +2715,7 @@ msgctxt "i.e. Non-automatic"
|
|
2711 |
msgid "Manual"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: src/restorer.php:
|
2715 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2716 |
msgid "An error (%s) occurred:"
|
2717 |
msgstr ""
|
@@ -2852,7 +2856,7 @@ msgstr ""
|
|
2852 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: src/class-updraftplus.php:
|
2856 |
msgid "Backup label:"
|
2857 |
msgstr ""
|
2858 |
|
@@ -2876,7 +2880,7 @@ msgstr ""
|
|
2876 |
msgid "Your label for this backup (optional)"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: src/addons/googlecloud.php:
|
2880 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2881 |
msgstr ""
|
2882 |
|
@@ -2896,11 +2900,11 @@ msgstr ""
|
|
2896 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: src/class-updraftplus.php:
|
2900 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2905 |
msgstr ""
|
2906 |
|
@@ -2937,19 +2941,19 @@ msgstr ""
|
|
2937 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: src/class-updraftplus.php:
|
2941 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
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."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2954 |
msgstr ""
|
2955 |
|
@@ -2994,7 +2998,7 @@ msgstr "Prem aquí per cercar nous conjunts de còpies de seguretat que s'han pu
|
|
2994 |
msgid "Start backup"
|
2995 |
msgstr "Iniciar còpia de seguretat"
|
2996 |
|
2997 |
-
#: src/class-updraftplus.php:
|
2998 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
2999 |
msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
|
3000 |
|
@@ -3030,7 +3034,7 @@ msgstr "Explica'm més coses sobre les còpies de seguretat incrementals."
|
|
3030 |
msgid "Memory limit"
|
3031 |
msgstr "Límit de memòria"
|
3032 |
|
3033 |
-
#: src/class-updraftplus.php:
|
3034 |
msgid "restoration"
|
3035 |
msgstr "Restauració"
|
3036 |
|
@@ -3093,7 +3097,7 @@ msgstr "Cercar / substituir base de dades"
|
|
3093 |
msgid "search term"
|
3094 |
msgstr "terme de cerca"
|
3095 |
|
3096 |
-
#: src/restorer.php:
|
3097 |
msgid "Too many database errors have occurred - aborting"
|
3098 |
msgstr "Hi han hagut masses errors amb la base de dades - abortant"
|
3099 |
|
@@ -3129,7 +3133,7 @@ msgstr ""
|
|
3129 |
msgid "Free disk space in account:"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: src/admin.php:
|
3133 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3134 |
msgstr ""
|
3135 |
|
@@ -3224,7 +3228,7 @@ msgstr ""
|
|
3224 |
msgid "user"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: src/class-updraftplus.php:
|
3228 |
msgid "External database (%s)"
|
3229 |
msgstr ""
|
3230 |
|
@@ -3236,8 +3240,8 @@ msgstr ""
|
|
3236 |
msgid "failed to access parent folder"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: src/addons/googlecloud.php:
|
3240 |
-
#: src/addons/onedrive.php:
|
3241 |
msgid "However, subsequent access attempts failed:"
|
3242 |
msgstr ""
|
3243 |
|
@@ -3273,7 +3277,7 @@ msgstr ""
|
|
3273 |
msgid "use UpdraftPlus Premium"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: src/class-updraftplus.php:
|
3277 |
msgid "Decryption failed. The database file is encrypted."
|
3278 |
msgstr ""
|
3279 |
|
@@ -3281,8 +3285,8 @@ msgstr ""
|
|
3281 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: src/restorer.php:
|
3285 |
-
#: src/restorer.php:
|
3286 |
msgid "An error occurred on the first %s command - aborting run"
|
3287 |
msgstr ""
|
3288 |
|
@@ -3302,17 +3306,17 @@ msgstr ""
|
|
3302 |
msgid "In %s, path names are case sensitive."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: src/addons/azure.php:
|
3306 |
-
#: src/addons/onedrive.php:
|
3307 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:
|
3311 |
-
#: src/addons/onedrive.php:
|
3312 |
msgid "e.g. %s"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:
|
3316 |
msgid "Enter the path of the %s folder you wish to use here."
|
3317 |
msgstr ""
|
3318 |
|
@@ -3356,7 +3360,7 @@ msgstr ""
|
|
3356 |
msgid "Failed to upload %s"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: src/methods/dropbox.php:
|
3360 |
msgid "Success:"
|
3361 |
msgstr ""
|
3362 |
|
@@ -3364,15 +3368,15 @@ msgstr ""
|
|
3364 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: src/addons/onedrive.php:
|
3368 |
msgid "(You appear to be already authenticated)."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: src/methods/dropbox.php:
|
3372 |
msgid "Dropbox"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: src/addons/onedrive.php:
|
3376 |
msgid "Authenticate with %s"
|
3377 |
msgstr ""
|
3378 |
|
@@ -3403,8 +3407,8 @@ msgstr ""
|
|
3403 |
msgid "%s error - failed to access the container"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: src/addons/googlecloud.php:
|
3407 |
-
#: src/methods/dropbox.php:
|
3408 |
msgid "Account holder's name: %s."
|
3409 |
msgstr ""
|
3410 |
|
@@ -3420,17 +3424,17 @@ msgstr ""
|
|
3420 |
msgid "<strong>This is NOT a folder name</strong>."
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:
|
3424 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3425 |
msgid "Folder"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:
|
3429 |
#: src/methods/googledrive.php:1122
|
3430 |
msgid "%s download: failed: file not found"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: src/addons/googlecloud.php:
|
3434 |
msgid "Name: %s."
|
3435 |
msgstr ""
|
3436 |
|
@@ -3469,7 +3473,7 @@ msgstr ""
|
|
3469 |
msgid "Failed to unpack the archive"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: src/class-updraftplus.php:
|
3473 |
msgid "Error - failed to download the file"
|
3474 |
msgstr ""
|
3475 |
|
@@ -3494,7 +3498,7 @@ msgid "password/key"
|
|
3494 |
msgstr ""
|
3495 |
|
3496 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3497 |
-
#: src/admin.php:
|
3498 |
msgid "Key"
|
3499 |
msgstr ""
|
3500 |
|
@@ -3519,7 +3523,7 @@ msgid "Files and database WordPress backup (created by %s)"
|
|
3519 |
msgstr ""
|
3520 |
|
3521 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3522 |
-
#: src/includes/class-backup-history.php:
|
3523 |
msgid "Backup created by: %s."
|
3524 |
msgstr ""
|
3525 |
|
@@ -3551,7 +3555,7 @@ msgstr ""
|
|
3551 |
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."
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: src/admin.php:694, src/includes/class-backup-history.php:
|
3555 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3556 |
msgstr ""
|
3557 |
|
@@ -3560,20 +3564,20 @@ msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are
|
|
3560 |
msgstr ""
|
3561 |
|
3562 |
#: src/admin.php:693, src/admin.php:694,
|
3563 |
-
#: src/includes/class-backup-history.php:
|
3564 |
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))."
|
3565 |
msgstr ""
|
3566 |
|
3567 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3568 |
-
#: src/restorer.php:
|
3569 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: src/restorer.php:
|
3573 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: src/restorer.php:
|
3577 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3578 |
msgstr ""
|
3579 |
|
@@ -3585,12 +3589,12 @@ msgstr ""
|
|
3585 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: src/addons/backblaze.php:
|
3589 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3590 |
msgid "No settings were found"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: src/includes/class-backup-history.php:
|
3594 |
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."
|
3595 |
msgstr ""
|
3596 |
|
@@ -3598,7 +3602,7 @@ msgstr ""
|
|
3598 |
msgid "Rescanning remote and local storage for backup sets..."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: src/addons/googlecloud.php:
|
3602 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3603 |
msgid "(Read more)"
|
3604 |
msgstr ""
|
@@ -3616,7 +3620,7 @@ msgstr ""
|
|
3616 |
msgid "Remove"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: src/methods/s3.php:
|
3620 |
msgid "Other %s FAQs."
|
3621 |
msgstr ""
|
3622 |
|
@@ -3628,12 +3632,12 @@ msgstr ""
|
|
3628 |
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."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/class-updraftplus.php:
|
3632 |
-
#: src/restorer.php:
|
3633 |
msgid "Your hosting company must enable these functions before %s can work."
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: src/class-updraftplus.php:
|
3637 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3638 |
msgstr ""
|
3639 |
|
@@ -3649,7 +3653,7 @@ msgstr ""
|
|
3649 |
msgid "regular non-encrypted FTP"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: src/restorer.php:
|
3653 |
msgid "Backup created by:"
|
3654 |
msgstr ""
|
3655 |
|
@@ -3703,19 +3707,19 @@ msgstr ""
|
|
3703 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: src/class-updraftplus.php:
|
3707 |
msgid "The attempt to undo the double-compression succeeded."
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression failed."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: src/includes/class-wpadmin-commands.php:
|
3719 |
msgid "Constants"
|
3720 |
msgstr ""
|
3721 |
|
@@ -3764,7 +3768,7 @@ msgstr ""
|
|
3764 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: src/restorer.php:
|
3768 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3769 |
msgstr ""
|
3770 |
|
@@ -3785,11 +3789,11 @@ msgstr ""
|
|
3785 |
msgid "Messages:"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: src/restorer.php:
|
3789 |
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"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: src/restorer.php:
|
3793 |
msgid "The directory does not exist"
|
3794 |
msgstr ""
|
3795 |
|
@@ -3958,7 +3962,7 @@ msgstr ""
|
|
3958 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:679, src/admin.php:
|
3962 |
msgid "Error data:"
|
3963 |
msgstr ""
|
3964 |
|
@@ -3970,11 +3974,11 @@ msgstr ""
|
|
3970 |
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."
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: src/restorer.php:
|
3974 |
msgid "Split line to avoid exceeding maximum packet size"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: src/restorer.php:
|
3978 |
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)"
|
3979 |
msgstr ""
|
3980 |
|
@@ -4006,11 +4010,11 @@ msgstr ""
|
|
4006 |
msgid "Email reports"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: src/class-updraftplus.php:
|
4010 |
msgid "%s checksum: %s"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "files: %s"
|
4015 |
msgstr ""
|
4016 |
|
@@ -4063,19 +4067,19 @@ msgstr ""
|
|
4063 |
msgid "%d errors, %d warnings"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: src/addons/onedrive.php:
|
4067 |
-
#: src/methods/dropbox.php:
|
4068 |
msgid "%s authentication"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: src/addons/onedrive.php:
|
4072 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4073 |
-
#: src/methods/dropbox.php:
|
4074 |
-
#: src/methods/dropbox.php:
|
4075 |
msgid "%s error: %s"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: src/addons/googlecloud.php:
|
4079 |
msgid "%s logo"
|
4080 |
msgstr ""
|
4081 |
|
@@ -4083,7 +4087,7 @@ msgstr ""
|
|
4083 |
msgid "%s did not return the expected response - check your log file for more details"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: src/methods/s3.php:
|
4087 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4088 |
msgstr ""
|
4089 |
|
@@ -4104,7 +4108,7 @@ msgstr ""
|
|
4104 |
msgid "For more reporting features, use the Reporting add-on."
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: src/class-updraftplus.php:
|
4108 |
msgid "(version: %s)"
|
4109 |
msgstr ""
|
4110 |
|
@@ -4245,7 +4249,7 @@ msgstr ""
|
|
4245 |
msgid "Reporting"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: src/admin.php:
|
4249 |
msgid "Options (raw)"
|
4250 |
msgstr ""
|
4251 |
|
@@ -4253,7 +4257,7 @@ msgstr ""
|
|
4253 |
msgid "Send a report only when there are warnings/errors"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: src/restorer.php:
|
4257 |
msgid "Content URL:"
|
4258 |
msgstr ""
|
4259 |
|
@@ -4397,7 +4401,7 @@ msgstr ""
|
|
4397 |
msgid "Your web-server does not have the %s module installed."
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: src/addons/googlecloud.php:
|
4401 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4402 |
msgstr ""
|
4403 |
|
@@ -4417,7 +4421,7 @@ msgstr ""
|
|
4417 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: src/restorer.php:
|
4421 |
msgid "Site home:"
|
4422 |
msgstr ""
|
4423 |
|
@@ -4433,7 +4437,7 @@ msgstr ""
|
|
4433 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: src/addons/azure.php:
|
4437 |
#: src/methods/stream-base.php:149
|
4438 |
msgid "Upload failed"
|
4439 |
msgstr ""
|
@@ -4577,27 +4581,27 @@ msgstr ""
|
|
4577 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/restorer.php:
|
4581 |
msgid "file"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: src/restorer.php:
|
4585 |
msgid "folder"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: src/restorer.php:
|
4589 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: src/class-updraftplus.php:
|
4593 |
msgid "The backup has not finished; a resumption is scheduled"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: src/addons/onedrive.php:
|
4601 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4602 |
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)."
|
4603 |
msgstr ""
|
@@ -4682,23 +4686,23 @@ msgstr ""
|
|
4682 |
msgid "Support"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: src/class-updraftplus.php:
|
4686 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "This database backup is missing core WordPress tables: %s"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
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."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
msgid "%s version: %s"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4703 |
msgstr ""
|
4704 |
|
@@ -4783,15 +4787,15 @@ msgstr ""
|
|
4783 |
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?"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: src/includes/class-wpadmin-commands.php:
|
4787 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4796 |
msgstr ""
|
4797 |
|
@@ -4831,16 +4835,16 @@ msgstr ""
|
|
4831 |
msgid "WordPress root directory server path: %s"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: src/methods/dreamobjects.php:
|
4835 |
msgid "%s end-point"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: src/methods/s3.php:
|
4839 |
msgid "... and many more!"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: src/methods/s3generic.php:
|
4843 |
-
#: src/methods/s3generic.php:
|
4844 |
msgid "S3 (Compatible)"
|
4845 |
msgstr ""
|
4846 |
|
@@ -4848,11 +4852,11 @@ msgstr ""
|
|
4848 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: src/admin.php:
|
4852 |
msgid "Looking for %s archive: file name: %s"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Final checks"
|
4857 |
msgstr ""
|
4858 |
|
@@ -4880,7 +4884,7 @@ msgstr ""
|
|
4880 |
msgid "Processing files - please wait..."
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#: src/admin.php:
|
4884 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4885 |
msgid "Please consult this FAQ for help on what to do about it."
|
4886 |
msgstr ""
|
@@ -4889,30 +4893,30 @@ msgstr ""
|
|
4889 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: src/class-updraftplus.php:
|
4893 |
msgid "Failed to open database file."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: src/admin.php:
|
4897 |
msgid "Known backups (raw)"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: src/restorer.php:
|
4901 |
msgid "Files found:"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: src/restorer.php:
|
4905 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: src/admin.php:
|
4909 |
msgid "file is size:"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: src/addons/googlecloud.php:
|
4913 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4914 |
-
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:
|
4915 |
-
#: src/class-updraftplus.php:
|
4916 |
msgid "Go here for more information."
|
4917 |
msgstr ""
|
4918 |
|
@@ -4920,7 +4924,7 @@ msgstr ""
|
|
4920 |
msgid "Some files are still downloading or being processed - please wait."
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: src/class-updraftplus.php:
|
4924 |
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."
|
4925 |
msgstr ""
|
4926 |
|
@@ -4964,7 +4968,7 @@ msgstr ""
|
|
4964 |
msgid "Error - no such file exists at %s"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: src/addons/azure.php:
|
4968 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4969 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4970 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
@@ -4993,10 +4997,10 @@ msgstr ""
|
|
4993 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4994 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4995 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
4996 |
-
#: src/class-updraftplus.php:
|
4997 |
-
#: src/class-updraftplus.php:
|
4998 |
-
#: src/class-updraftplus.php:
|
4999 |
-
#: src/methods/s3.php:
|
5000 |
msgid "Error: %s"
|
5001 |
msgstr ""
|
5002 |
|
@@ -5036,7 +5040,7 @@ msgstr ""
|
|
5036 |
msgid "Warnings encountered:"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: src/class-updraftplus.php:
|
5040 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5041 |
msgstr ""
|
5042 |
|
@@ -5076,40 +5080,40 @@ msgstr ""
|
|
5076 |
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."
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: src/methods/s3.php:
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
msgid "Please check your access credentials."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5088 |
msgid "The error reported by %s was:"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: src/restorer.php:
|
5092 |
msgid "Please supply the requested information, and then continue."
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: src/class-updraftplus.php:
|
5096 |
msgid "Site information:"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: src/restorer.php:
|
5100 |
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."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: src/admin.php:2445, src/class-updraftplus.php:
|
5104 |
msgid "Warning:"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: src/class-updraftplus.php:
|
5108 |
#: src/restorer.php:184
|
5109 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5110 |
msgstr ""
|
5111 |
|
5112 |
-
#: src/admin.php:
|
5113 |
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."
|
5114 |
msgstr ""
|
5115 |
|
@@ -5185,7 +5189,7 @@ msgstr ""
|
|
5185 |
msgid "News"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:
|
5189 |
msgid "Backup set not found"
|
5190 |
msgstr ""
|
5191 |
|
@@ -5350,18 +5354,18 @@ msgid "Directory path"
|
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5353 |
-
#: src/addons/sftp.php:443, src/addons/webdav.php:
|
5354 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5355 |
#: src/udaddons/options.php:135
|
5356 |
msgid "Password"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: src/addons/sftp.php:429, src/addons/webdav.php:
|
5360 |
msgid "Port"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5364 |
-
#: src/addons/webdav.php:
|
5365 |
msgid "Host"
|
5366 |
msgstr ""
|
5367 |
|
@@ -5409,7 +5413,7 @@ msgstr ""
|
|
5409 |
msgid "Over-write wp-config.php"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:
|
5413 |
msgid "WordPress Core"
|
5414 |
msgstr ""
|
5415 |
|
@@ -5417,14 +5421,14 @@ msgstr ""
|
|
5417 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: src/addons/googlecloud.php:
|
5421 |
-
#: src/addons/googlecloud.php:
|
5422 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5423 |
#: src/methods/stream-base.php:353
|
5424 |
msgid "Failed"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#: src/addons/webdav.php:
|
5428 |
msgid "WebDAV URL"
|
5429 |
msgstr ""
|
5430 |
|
@@ -5475,31 +5479,31 @@ msgstr ""
|
|
5475 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: src/addons/onedrive.php:
|
5479 |
msgid "Your %s account name: %s"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/methods/dropbox.php:
|
5483 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "you have authenticated your %s account"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "there's an add-on for that."
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "Backups are saved in"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Need to use sub-folders?"
|
5504 |
msgstr ""
|
5505 |
|
@@ -5512,96 +5516,96 @@ msgstr ""
|
|
5512 |
msgid "You do not appear to be authenticated with Dropbox"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: src/methods/s3.php:
|
5516 |
msgid "The communication with %s was not encrypted."
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/addons/googlecloud.php:
|
5524 |
msgid "We accessed the bucket, and were able to create files within it."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:
|
5528 |
-
#: src/methods/s3.php:
|
5529 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5530 |
msgstr ""
|
5531 |
|
5532 |
-
#: src/addons/googlecloud.php:
|
5533 |
-
#: src/methods/s3.php:
|
5534 |
msgid "Failure"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: src/addons/backblaze.php:
|
5538 |
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)."
|
5539 |
msgstr ""
|
5540 |
|
5541 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5542 |
-
#: src/methods/s3.php:
|
5543 |
msgid "Region"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:
|
5547 |
-
#: src/methods/s3.php:
|
5548 |
msgid "Failure: No bucket details were given."
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "API secret"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "%s location"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s secret key"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s access key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
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."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
-
#: src/methods/s3.php:
|
5581 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: src/methods/s3.php:
|
5585 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s chunk %s: upload failed"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s error: file %s was shortened unexpectedly"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5606 |
msgstr ""
|
5607 |
|
@@ -5626,32 +5630,32 @@ msgid "Failure: No container details were given."
|
|
5626 |
msgstr ""
|
5627 |
|
5628 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5629 |
-
#: src/addons/webdav.php:
|
5630 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5631 |
msgid "Username"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5635 |
-
#: src/methods/s3.php:
|
5636 |
msgid "API key"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5640 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5641 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5642 |
-
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:
|
5643 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5644 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5645 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5646 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5647 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5648 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5649 |
-
#: src/methods/s3.php:
|
5650 |
msgid "Failure: No %s was given."
|
5651 |
msgstr ""
|
5652 |
|
5653 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5654 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5655 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5656 |
msgstr ""
|
5657 |
|
@@ -5686,7 +5690,7 @@ msgstr ""
|
|
5686 |
msgid "Test %s Settings"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: src/class-updraftplus.php:
|
5690 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5691 |
msgid "Error opening local file: Failed to download"
|
5692 |
msgstr ""
|
@@ -5698,7 +5702,7 @@ msgstr ""
|
|
5698 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5699 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5700 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5701 |
-
#: src/methods/s3.php:
|
5702 |
msgid "%s Error: Failed to upload"
|
5703 |
msgstr ""
|
5704 |
|
@@ -5724,34 +5728,34 @@ msgstr ""
|
|
5724 |
msgid "Authenticate with Google"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: src/addons/googlecloud.php:
|
5728 |
#: src/methods/googledrive.php:1196
|
5729 |
msgid "Client Secret"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
-
#: src/addons/googlecloud.php:
|
5733 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:
|
5737 |
#: src/methods/googledrive.php:1192
|
5738 |
msgid "Client ID"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: src/addons/googlecloud.php:
|
5742 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:
|
5746 |
msgid "Select 'Web Application' as the application type."
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:
|
5750 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5754 |
-
#: src/addons/googlecloud.php:
|
5755 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5756 |
#: src/methods/googledrive.php:558
|
5757 |
msgid "Account is not authorized."
|
@@ -5771,21 +5775,21 @@ msgstr ""
|
|
5771 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: src/addons/googlecloud.php:
|
5775 |
#: src/methods/googledrive.php:441
|
5776 |
msgid "you have authenticated your %s account."
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: src/addons/googlecloud.php:
|
5780 |
-
#: src/addons/onedrive.php:
|
5781 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5782 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5783 |
-
#: src/methods/s3.php:
|
5784 |
msgid "Success"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: src/addons/onedrive.php:
|
5788 |
-
#: src/methods/dropbox.php:
|
5789 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5790 |
msgstr ""
|
5791 |
|
@@ -5817,58 +5821,58 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
|
|
5817 |
msgstr ""
|
5818 |
|
5819 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5820 |
-
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:
|
5821 |
-
#: src/restorer.php:
|
5822 |
msgid "OK"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: src/restorer.php:
|
5826 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: src/addons/migrator.php:1285, src/restorer.php:
|
5830 |
msgid "the database query being run was:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: src/restorer.php:
|
5834 |
msgid "will restore as:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: src/class-updraftplus.php:
|
5838 |
-
#: src/restorer.php:
|
5839 |
msgid "Old table prefix:"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5843 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5844 |
msgid "Backup of:"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: src/restorer.php:
|
5848 |
msgid "Failed to open database file"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: src/restorer.php:
|
5852 |
msgid "Failed to find database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: src/restorer.php:
|
5856 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: src/restorer.php:
|
5860 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: src/restorer.php:
|
5864 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: src/restorer.php:
|
5868 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: src/restorer.php:
|
5872 |
msgid "Failed to create a temporary directory"
|
5873 |
msgstr ""
|
5874 |
|
@@ -5912,19 +5916,19 @@ msgstr ""
|
|
5912 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: src/admin.php:
|
5916 |
msgid "Could not find one of the files for restoration"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Error message"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "The backup records do not contain information about the proper size of this file."
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "Archive is expected to be size:"
|
5929 |
msgstr ""
|
5930 |
|
@@ -5965,7 +5969,7 @@ msgid "Your web server's PHP/Curl installation does not support https access. Co
|
|
5965 |
msgstr ""
|
5966 |
|
5967 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5968 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5969 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5970 |
msgstr ""
|
5971 |
|
@@ -6253,7 +6257,7 @@ msgstr ""
|
|
6253 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6254 |
msgstr ""
|
6255 |
|
6256 |
-
#: src/class-updraftplus.php:
|
6257 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6258 |
msgstr ""
|
6259 |
|
@@ -6306,10 +6310,10 @@ msgstr ""
|
|
6306 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6307 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6308 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6309 |
-
#: src/addons/sftp.php:837, src/addons/webdav.php:
|
6310 |
-
#: src/admin.php:680, src/admin.php:
|
6311 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6312 |
-
#: src/methods/updraftvault.php:522, src/restorer.php:
|
6313 |
msgid "Error:"
|
6314 |
msgstr ""
|
6315 |
|
@@ -6383,14 +6387,14 @@ msgstr ""
|
|
6383 |
|
6384 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6385 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6386 |
-
#: src/admin.php:3682, src/admin.php:
|
6387 |
#: src/includes/class-wpadmin-commands.php:147,
|
6388 |
-
#: src/includes/class-wpadmin-commands.php:
|
6389 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6390 |
msgid "Database"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: src/admin.php:311, src/admin.php:
|
6394 |
msgid "Files"
|
6395 |
msgstr ""
|
6396 |
|
@@ -6442,7 +6446,7 @@ msgstr ""
|
|
6442 |
msgid "UpdraftPlus.Com"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: src/admin.php:
|
6446 |
msgid "Your settings have been wiped."
|
6447 |
msgstr ""
|
6448 |
|
@@ -6503,11 +6507,11 @@ msgid "Download failed"
|
|
6503 |
msgstr ""
|
6504 |
|
6505 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6506 |
-
#: src/class-updraftplus.php:
|
6507 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6508 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6509 |
-
#: src/methods/stream-base.php:220, src/restorer.php:
|
6510 |
-
#: src/restorer.php:
|
6511 |
msgid "Error"
|
6512 |
msgstr ""
|
6513 |
|
@@ -6548,7 +6552,7 @@ msgstr ""
|
|
6548 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6549 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6550 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6551 |
-
#: src/methods/s3.php:
|
6552 |
#: src/methods/updraftvault.php:301,
|
6553 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6554 |
#: src/udaddons/updraftplus-addons.php:253
|
@@ -6580,22 +6584,22 @@ msgstr ""
|
|
6580 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
-
#: src/addons/azure.php:
|
6584 |
-
#: src/methods/googledrive.php:1082, src/methods/s3.php:
|
6585 |
msgid "File not found"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
-
#: src/class-updraftplus.php:
|
6589 |
msgid "The decryption key used:"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: src/class-updraftplus.php:
|
6593 |
-
#: src/restorer.php:
|
6594 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6595 |
msgstr ""
|
6596 |
|
6597 |
-
#: src/class-updraftplus.php:
|
6598 |
-
#: src/restorer.php:
|
6599 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6600 |
msgstr ""
|
6601 |
|
@@ -6603,11 +6607,11 @@ msgstr ""
|
|
6603 |
msgid "Could not open the backup file for writing"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: src/class-updraftplus.php:
|
6607 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: src/class-updraftplus.php:
|
6611 |
msgid "Could not read the directory"
|
6612 |
msgstr ""
|
6613 |
|
@@ -6619,11 +6623,11 @@ msgstr ""
|
|
6619 |
msgid "WordPress backup is complete"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
-
#: src/class-updraftplus.php:
|
6623 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "The backup apparently succeeded and is now complete"
|
6628 |
msgstr ""
|
6629 |
|
@@ -6631,23 +6635,23 @@ msgstr ""
|
|
6631 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: src/class-updraftplus.php:
|
6635 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "Others"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: src/addons/multisite.php:465, src/class-updraftplus.php:
|
6643 |
msgid "Uploads"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: src/class-updraftplus.php:
|
6647 |
msgid "Themes"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Plugins"
|
6652 |
msgstr ""
|
6653 |
|
11 |
"Language: ca\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/restorer.php:188
|
43 |
+
msgid "Failed to read from the working directory."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/restorer.php:187
|
47 |
+
msgid "Failed to find a manifest file in the backup."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/restorer.php:186
|
51 |
+
msgid "Failed to read the manifest file from backup."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/includes/class-wpadmin-commands.php:207
|
55 |
+
msgid "Select your incremental restore point"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: src/addons/morefiles.php:73
|
59 |
msgid "(None configured)"
|
60 |
msgstr ""
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: src/admin.php:4602
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: src/admin.php:4598
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: src/addons/backblaze.php:475
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/restorer.php:2028
|
143 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
144 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
+
#: src/class-updraftplus.php:4411
|
149 |
msgid "Your chosen replacement collation"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: src/class-updraftplus.php:4388
|
153 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: src/class-updraftplus.php:4388
|
157 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
158 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
159 |
msgstr[0] ""
|
167 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: src/addons/azure.php:631
|
171 |
msgid "%s Prefix"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: src/addons/azure.php:626
|
175 |
msgid "%s Container"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/addons/azure.php:621
|
179 |
msgid "%s Key"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: src/addons/azure.php:617
|
183 |
msgid "%s Account Name"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: src/addons/googlecloud.php:692
|
187 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: src/addons/googlecloud.php:690
|
191 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
192 |
msgstr ""
|
193 |
|
217 |
msgstr[0] ""
|
218 |
msgstr[1] ""
|
219 |
|
220 |
+
#: src/restorer.php:1990
|
221 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: src/class-updraftplus.php:4364
|
225 |
msgid "Your chosen character set to use instead:"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4354
|
229 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4354
|
233 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
234 |
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."
|
235 |
msgstr[0] ""
|
283 |
msgid "Please enter a valid URL e.g http://example.com"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: src/addons/backblaze.php:633
|
287 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/addons/backblaze.php:632
|
291 |
msgid "some/path"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: src/addons/backblaze.php:632
|
295 |
msgid "Bucket name"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: src/addons/backblaze.php:631
|
299 |
msgid "Backup path"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: src/addons/backblaze.php:626
|
303 |
msgid "Application key"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
307 |
msgid "here"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: src/addons/backblaze.php:621
|
311 |
msgid "Get these settings from %s, or sign up %s."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: src/addons/backblaze.php:431
|
315 |
msgid "Account Key"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
319 |
msgid "Account ID"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: src/class-updraftplus.php:4196
|
323 |
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."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
327 |
msgid "the migrator add-on"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: src/class-updraftplus.php:4194
|
331 |
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."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/class-updraftplus.php:4192
|
335 |
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."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/class-updraftplus.php:4187
|
339 |
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."
|
340 |
msgstr ""
|
341 |
|
355 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
359 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
360 |
+
#: src/class-updraftplus.php:2427
|
361 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
365 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
366 |
+
#: src/class-updraftplus.php:2420
|
367 |
msgid "A PHP exception (%s) has occurred: %s"
|
368 |
msgstr ""
|
369 |
|
419 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: src/admin.php:4808
|
423 |
msgid "Value"
|
424 |
msgstr ""
|
425 |
|
431 |
msgid "Encrypted login failed; trying non-encrypted"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: src/addons/azure.php:594
|
435 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
436 |
msgstr ""
|
437 |
|
443 |
msgid "Cloud Files"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: src/admin.php:4553
|
447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: src/admin.php:4512
|
451 |
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."
|
452 |
msgstr ""
|
453 |
|
456 |
msgid "UpdraftVault"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: src/includes/class-wpadmin-commands.php:513
|
460 |
msgid "archive"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: src/includes/class-wpadmin-commands.php:504
|
464 |
msgid "Extra database"
|
465 |
msgstr ""
|
466 |
|
504 |
msgid "Browse contents"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: src/restorer.php:1811
|
508 |
msgid "Skipped tables:"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: src/class-updraftplus.php:4476
|
512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
513 |
msgstr ""
|
514 |
|
717 |
msgid "Recommended: optimize your database with WP-Optimize."
|
718 |
msgstr ""
|
719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
721 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
722 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
764 |
msgid "Europe (Ireland)"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr ""
|
976 |
msgid "Export / import settings"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: src/restorer.php:2030
|
980 |
msgid "Processing table (%s)"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: src/restorer.php:1777
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr ""
|
986 |
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/methods/dropbox.php:785
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/methods/dropbox.php:631
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr ""
|
998 |
|
1060 |
msgid "US East (Ohio)"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/addons/onedrive.php:1051
|
1064 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/addons/onedrive.php:700
|
1068 |
msgid "Account is not authorized (%s)."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1072 |
msgid "Your IP address:"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1076 |
#: src/udaddons/updraftplus-addons.php:887
|
1077 |
msgid "To remove any block, please go here."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr ""
|
1083 |
|
1105 |
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."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: src/addons/webdav.php:216
|
1109 |
msgid "Path"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: src/addons/webdav.php:211
|
1113 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: src/addons/webdav.php:203
|
1117 |
msgid "Enter any path in the field below."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: src/addons/webdav.php:203
|
1121 |
msgid "A host name cannot contain a slash."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: src/addons/webdav.php:178
|
1125 |
msgid "Protocol (SSL or not)"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: src/addons/webdav.php:173
|
1129 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1130 |
msgstr ""
|
1131 |
|
1133 |
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."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: src/methods/s3.php:1129
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: src/methods/s3.php:126
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr ""
|
1143 |
|
1243 |
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."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: src/class-updraftplus.php:1835
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr ""
|
1249 |
|
1255 |
msgid "Now"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr ""
|
1261 |
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: src/admin.php:4548
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr ""
|
1371 |
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: src/restorer.php:1800
|
1435 |
msgid "Uploads URL:"
|
1436 |
msgstr ""
|
1437 |
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: src/class-updraftplus.php:4260
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: src/class-updraftplus.php:4260
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr ""
|
1453 |
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: src/admin.php:4086
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr ""
|
1527 |
|
1553 |
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)."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: src/admin.php:4422
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/admin.php:4420
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/admin.php:4420
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/admin.php:4420
|
1569 |
msgid "settings"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: src/admin.php:4420
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr ""
|
1575 |
|
1626 |
msgid "Advanced Tools"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: src/addons/googlecloud.php:1049
|
1630 |
msgid "Bucket location"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: src/addons/googlecloud.php:1044
|
1634 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1638 |
msgid "This setting applies only when a new bucket is being created."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: src/addons/googlecloud.php:1033
|
1642 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: src/addons/googlecloud.php:979
|
1646 |
msgid "Do not confuse %s with %s - they are separate things."
|
1647 |
msgstr ""
|
1648 |
|
1704 |
msgid "Standard"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: src/addons/azure.php:632
|
1708 |
msgid "container"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: src/addons/azure.php:632
|
1712 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: src/addons/azure.php:631
|
1716 |
msgid "optional"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: src/addons/azure.php:627
|
1720 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: src/addons/azure.php:627
|
1724 |
msgid "Enter the path of the %s you wish to use here."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/addons/azure.php:618
|
1728 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1732 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1733 |
msgid "Azure"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: src/addons/azure.php:598
|
1737 |
msgid "Create Azure credentials in your Azure developer console."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: src/addons/azure.php:562
|
1741 |
msgid "Could not create the container"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: src/addons/azure.php:413
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: src/class-updraftplus.php:2926
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr ""
|
1751 |
|
1773 |
msgid "Not installed"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1777 |
msgid "Storage class"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: src/addons/googlecloud.php:1033
|
1781 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: src/addons/googlecloud.php:1033
|
1785 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: src/addons/googlecloud.php:1032
|
1789 |
msgid "Bucket"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: src/addons/googlecloud.php:1028
|
1793 |
msgid "Otherwise, you can leave it blank."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: src/addons/googlecloud.php:1028
|
1797 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: src/addons/googlecloud.php:1028
|
1801 |
msgid "Enter the ID of the %s project you wish to use here."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: src/addons/googlecloud.php:991
|
1805 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: src/addons/googlecloud.php:902
|
1809 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: src/addons/googlecloud.php:1026
|
1813 |
msgid "Project ID"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: src/addons/googlecloud.php:759
|
1817 |
msgid "You must save and authenticate before you can test your settings."
|
1818 |
msgstr ""
|
1819 |
|
1822 |
msgstr ""
|
1823 |
|
1824 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1825 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1826 |
msgid "You do not have access to this bucket."
|
1827 |
msgstr ""
|
1828 |
|
1829 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1830 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1831 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1832 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1833 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1834 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1835 |
msgid "Google Cloud"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1839 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1840 |
+
#: src/addons/googlecloud.php:941
|
1841 |
msgid "%s Service Exception."
|
1842 |
msgstr ""
|
1843 |
|
1845 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: src/restorer.php:827
|
1849 |
msgid "Deferring..."
|
1850 |
msgstr ""
|
1851 |
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: src/restorer.php:2354
|
1918 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: src/restorer.php:2354
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr ""
|
1924 |
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: src/class-updraftplus.php:4333
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: src/class-updraftplus.php:4333
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr ""
|
1936 |
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2112 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr ""
|
2115 |
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr ""
|
2147 |
|
|
|
|
|
|
|
|
|
2148 |
#: src/addons/migrator.php:2405
|
2149 |
msgid "Your new key:"
|
2150 |
msgstr ""
|
2350 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: src/restorer.php:2356
|
2354 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2355 |
msgstr ""
|
2356 |
|
2382 |
msgid "You have made changes to your settings, and not saved."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: src/addons/onedrive.php:1111
|
2386 |
msgid "N.B. %s is not case-sensitive."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: src/addons/onedrive.php:1101
|
2390 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2394 |
+
#: src/addons/onedrive.php:1074
|
2395 |
msgid "For longer help, including screenshots, follow this link."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: src/addons/onedrive.php:1067
|
2399 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: src/addons/onedrive.php:1059
|
2403 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: src/addons/azure.php:592
|
2407 |
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)."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2411 |
msgid "%s authorisation failed:"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2415 |
+
#: src/addons/onedrive.php:1104
|
2416 |
msgid "OneDrive"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: src/addons/onedrive.php:691
|
2420 |
msgid "Please re-authorize the connection to your %s account."
|
2421 |
msgstr ""
|
2422 |
|
2424 |
msgid "configure it here"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2428 |
msgid "To remove the block, please go here."
|
2429 |
msgstr ""
|
2430 |
|
2569 |
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)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: src/methods/s3.php:910
|
2573 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2577 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2581 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2585 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2586 |
#: src/udaddons/updraftplus-addons.php:887
|
2587 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2591 |
#: src/udaddons/updraftplus-addons.php:887
|
2592 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2596 |
#: src/udaddons/updraftplus-addons.php:887
|
2597 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2601 |
msgid "Premium WooCommerce plugins"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2605 |
msgid "Free two-factor security plugin"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2609 |
+
msgid "More quality plugins"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2613 |
msgid "Go to the shop."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2617 |
msgid "Compare with the free version"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2621 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2622 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2623 |
msgid "UpdraftPlus Premium"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
|
|
|
|
|
|
|
|
2627 |
msgid "Free Newsletter"
|
2628 |
msgstr ""
|
2629 |
|
|
|
|
|
|
|
|
|
2630 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2631 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
|
2632 |
msgid "Dismiss (for %s months)"
|
2633 |
msgstr ""
|
2634 |
|
2669 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: src/methods/s3.php:177, src/methods/s3.php:178, src/methods/s3.php:179,
|
2673 |
+
#: src/methods/s3.php:187, src/methods/s3.php:188, src/methods/s3.php:189
|
2674 |
msgid "%s Error: Failed to initialise"
|
2675 |
msgstr ""
|
2676 |
|
2715 |
msgid "Manual"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: src/restorer.php:2333
|
2719 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2720 |
msgid "An error (%s) occurred:"
|
2721 |
msgstr ""
|
2856 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: src/class-updraftplus.php:4249
|
2860 |
msgid "Backup label:"
|
2861 |
msgstr ""
|
2862 |
|
2880 |
msgid "Your label for this backup (optional)"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1162
|
2884 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2885 |
msgstr ""
|
2886 |
|
2900 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: src/class-updraftplus.php:4268
|
2904 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: src/class-updraftplus.php:4268
|
2908 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2909 |
msgstr ""
|
2910 |
|
2941 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: src/class-updraftplus.php:4241
|
2945 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4241
|
2949 |
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."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4241
|
2953 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/class-updraftplus.php:4241
|
2957 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2958 |
msgstr ""
|
2959 |
|
2998 |
msgid "Start backup"
|
2999 |
msgstr "Iniciar còpia de seguretat"
|
3000 |
|
3001 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
3002 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3003 |
msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
|
3004 |
|
3034 |
msgid "Memory limit"
|
3035 |
msgstr "Límit de memòria"
|
3036 |
|
3037 |
+
#: src/class-updraftplus.php:4682, src/restorer.php:1608
|
3038 |
msgid "restoration"
|
3039 |
msgstr "Restauració"
|
3040 |
|
3097 |
msgid "search term"
|
3098 |
msgstr "terme de cerca"
|
3099 |
|
3100 |
+
#: src/restorer.php:2361
|
3101 |
msgid "Too many database errors have occurred - aborting"
|
3102 |
msgstr "Hi han hagut masses errors amb la base de dades - abortant"
|
3103 |
|
3133 |
msgid "Free disk space in account:"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: src/admin.php:4519, src/templates/wp-admin/settings/tab-status.php:27
|
3137 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3138 |
msgstr ""
|
3139 |
|
3228 |
msgid "user"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: src/class-updraftplus.php:1832
|
3232 |
msgid "External database (%s)"
|
3233 |
msgstr ""
|
3234 |
|
3240 |
msgid "failed to access parent folder"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3244 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:421
|
3245 |
msgid "However, subsequent access attempts failed:"
|
3246 |
msgstr ""
|
3247 |
|
3277 |
msgid "use UpdraftPlus Premium"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: src/class-updraftplus.php:4095
|
3281 |
msgid "Decryption failed. The database file is encrypted."
|
3282 |
msgstr ""
|
3283 |
|
3285 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: src/restorer.php:1876, src/restorer.php:2302, src/restorer.php:2343,
|
3289 |
+
#: src/restorer.php:2356
|
3290 |
msgid "An error occurred on the first %s command - aborting run"
|
3291 |
msgstr ""
|
3292 |
|
3306 |
msgid "In %s, path names are case sensitive."
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: src/addons/azure.php:632, src/addons/google-enhanced.php:76,
|
3310 |
+
#: src/addons/onedrive.php:1111
|
3311 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1033,
|
3315 |
+
#: src/addons/onedrive.php:1111
|
3316 |
msgid "e.g. %s"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1111
|
3320 |
msgid "Enter the path of the %s folder you wish to use here."
|
3321 |
msgstr ""
|
3322 |
|
3360 |
msgid "Failed to upload %s"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
3364 |
msgid "Success:"
|
3365 |
msgstr ""
|
3366 |
|
3368 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:610
|
3372 |
msgid "(You appear to be already authenticated)."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: src/methods/dropbox.php:606
|
3376 |
msgid "Dropbox"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:606
|
3380 |
msgid "Authenticate with %s"
|
3381 |
msgstr ""
|
3382 |
|
3407 |
msgid "%s error - failed to access the container"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3411 |
+
#: src/methods/dropbox.php:663, src/methods/googledrive.php:1248
|
3412 |
msgid "Account holder's name: %s."
|
3413 |
msgstr ""
|
3414 |
|
3424 |
msgid "<strong>This is NOT a folder name</strong>."
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3428 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3429 |
msgid "Folder"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3433 |
#: src/methods/googledrive.php:1122
|
3434 |
msgid "%s download: failed: file not found"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:441
|
3438 |
msgid "Name: %s."
|
3439 |
msgstr ""
|
3440 |
|
3473 |
msgid "Failed to unpack the archive"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: src/class-updraftplus.php:1356
|
3477 |
msgid "Error - failed to download the file"
|
3478 |
msgstr ""
|
3479 |
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3501 |
+
#: src/admin.php:4808
|
3502 |
msgid "Key"
|
3503 |
msgstr ""
|
3504 |
|
3523 |
msgstr ""
|
3524 |
|
3525 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3526 |
+
#: src/includes/class-backup-history.php:349
|
3527 |
msgid "Backup created by: %s."
|
3528 |
msgstr ""
|
3529 |
|
3555 |
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."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: src/admin.php:694, src/includes/class-backup-history.php:356
|
3559 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3560 |
msgstr ""
|
3561 |
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#: src/admin.php:693, src/admin.php:694,
|
3567 |
+
#: src/includes/class-backup-history.php:356
|
3568 |
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))."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3572 |
+
#: src/restorer.php:1577
|
3573 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: src/restorer.php:869, src/restorer.php:917
|
3577 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: src/restorer.php:724
|
3581 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3582 |
msgstr ""
|
3583 |
|
3589 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: src/addons/backblaze.php:557, src/methods/cloudfiles.php:234,
|
3593 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3594 |
msgid "No settings were found"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: src/includes/class-backup-history.php:524
|
3598 |
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."
|
3599 |
msgstr ""
|
3600 |
|
3602 |
msgid "Rescanning remote and local storage for backup sets..."
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049,
|
3606 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3607 |
msgid "(Read more)"
|
3608 |
msgstr ""
|
3620 |
msgid "Remove"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: src/methods/s3.php:861
|
3624 |
msgid "Other %s FAQs."
|
3625 |
msgstr ""
|
3626 |
|
3632 |
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."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330,
|
3636 |
+
#: src/restorer.php:1608
|
3637 |
msgid "Your hosting company must enable these functions before %s can work."
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330
|
3641 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3642 |
msgstr ""
|
3643 |
|
3653 |
msgid "regular non-encrypted FTP"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: src/restorer.php:1784
|
3657 |
msgid "Backup created by:"
|
3658 |
msgstr ""
|
3659 |
|
3707 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: src/class-updraftplus.php:4732
|
3711 |
msgid "The attempt to undo the double-compression succeeded."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: src/class-updraftplus.php:4709, src/class-updraftplus.php:4730
|
3715 |
msgid "The attempt to undo the double-compression failed."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: src/class-updraftplus.php:4702
|
3719 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: src/includes/class-wpadmin-commands.php:313
|
3723 |
msgid "Constants"
|
3724 |
msgstr ""
|
3725 |
|
3768 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: src/restorer.php:717
|
3772 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3773 |
msgstr ""
|
3774 |
|
3789 |
msgid "Messages:"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: src/restorer.php:2196
|
3793 |
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"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: src/restorer.php:490
|
3797 |
msgid "The directory does not exist"
|
3798 |
msgstr ""
|
3799 |
|
3962 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: src/admin.php:679, src/admin.php:4232
|
3966 |
msgid "Error data:"
|
3967 |
msgstr ""
|
3968 |
|
3974 |
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."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: src/restorer.php:1851
|
3978 |
msgid "Split line to avoid exceeding maximum packet size"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: src/restorer.php:1731
|
3982 |
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)"
|
3983 |
msgstr ""
|
3984 |
|
4010 |
msgid "Email reports"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: src/class-updraftplus.php:1840, src/class-updraftplus.php:1845
|
4014 |
msgid "%s checksum: %s"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/class-updraftplus.php:1813, src/class-updraftplus.php:1815
|
4018 |
msgid "files: %s"
|
4019 |
msgstr ""
|
4020 |
|
4067 |
msgid "%d errors, %d warnings"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:748,
|
4071 |
+
#: src/methods/dropbox.php:770
|
4072 |
msgid "%s authentication"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:529,
|
4076 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:748,
|
4077 |
+
#: src/methods/dropbox.php:770, src/methods/dropbox.php:785,
|
4078 |
+
#: src/methods/dropbox.php:798, src/methods/dropbox.php:941
|
4079 |
msgid "%s error: %s"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:575
|
4083 |
msgid "%s logo"
|
4084 |
msgstr ""
|
4085 |
|
4087 |
msgid "%s did not return the expected response - check your log file for more details"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: src/methods/s3.php:307
|
4091 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4092 |
msgstr ""
|
4093 |
|
4108 |
msgid "For more reporting features, use the Reporting add-on."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: src/class-updraftplus.php:4176
|
4112 |
msgid "(version: %s)"
|
4113 |
msgstr ""
|
4114 |
|
4249 |
msgid "Reporting"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: src/admin.php:4805
|
4253 |
msgid "Options (raw)"
|
4254 |
msgstr ""
|
4255 |
|
4257 |
msgid "Send a report only when there are warnings/errors"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: src/restorer.php:1795
|
4261 |
msgid "Content URL:"
|
4262 |
msgstr ""
|
4263 |
|
4401 |
msgid "Your web-server does not have the %s module installed."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1237
|
4405 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4406 |
msgstr ""
|
4407 |
|
4421 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: src/restorer.php:1789
|
4425 |
msgid "Site home:"
|
4426 |
msgstr ""
|
4427 |
|
4437 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:144,
|
4441 |
#: src/methods/stream-base.php:149
|
4442 |
msgid "Upload failed"
|
4443 |
msgstr ""
|
4581 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
+
#: src/restorer.php:702
|
4585 |
msgid "file"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: src/restorer.php:695
|
4589 |
msgid "folder"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: src/restorer.php:695, src/restorer.php:702
|
4593 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: src/class-updraftplus.php:2933
|
4597 |
msgid "The backup has not finished; a resumption is scheduled"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: src/class-updraftplus.php:2117
|
4601 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: src/addons/onedrive.php:966,
|
4605 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4606 |
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)."
|
4607 |
msgstr ""
|
4686 |
msgid "Support"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: src/class-updraftplus.php:4481
|
4690 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: src/class-updraftplus.php:4473
|
4694 |
msgid "This database backup is missing core WordPress tables: %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/class-updraftplus.php:4234
|
4698 |
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."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: src/class-updraftplus.php:4233, src/class-updraftplus.php:4240
|
4702 |
msgid "%s version: %s"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: src/class-updraftplus.php:4112
|
4706 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4707 |
msgstr ""
|
4708 |
|
4787 |
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?"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4791 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4795 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: src/includes/class-wpadmin-commands.php:221
|
4799 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4800 |
msgstr ""
|
4801 |
|
4835 |
msgid "WordPress root directory server path: %s"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: src/methods/dreamobjects.php:88, src/methods/s3generic.php:104
|
4839 |
msgid "%s end-point"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: src/methods/s3.php:838
|
4843 |
msgid "... and many more!"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
|
4847 |
+
#: src/methods/s3generic.php:83
|
4848 |
msgid "S3 (Compatible)"
|
4849 |
msgstr ""
|
4850 |
|
4852 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: src/admin.php:4083
|
4856 |
msgid "Looking for %s archive: file name: %s"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: src/admin.php:4044
|
4860 |
msgid "Final checks"
|
4861 |
msgstr ""
|
4862 |
|
4884 |
msgid "Processing files - please wait..."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: src/admin.php:4234,
|
4888 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4889 |
msgid "Please consult this FAQ for help on what to do about it."
|
4890 |
msgstr ""
|
4893 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: src/class-updraftplus.php:4120
|
4897 |
msgid "Failed to open database file."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
+
#: src/admin.php:4770
|
4901 |
msgid "Known backups (raw)"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: src/restorer.php:1009
|
4905 |
msgid "Files found:"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: src/restorer.php:1977
|
4909 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: src/admin.php:4103
|
4913 |
msgid "file is size:"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:457,
|
4917 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4918 |
+
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:4354,
|
4919 |
+
#: src/class-updraftplus.php:4354, src/updraftplus.php:156
|
4920 |
msgid "Go here for more information."
|
4921 |
msgstr ""
|
4922 |
|
4924 |
msgid "Some files are still downloading or being processed - please wait."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: src/class-updraftplus.php:4203, src/class-updraftplus.php:4224
|
4928 |
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."
|
4929 |
msgstr ""
|
4930 |
|
4968 |
msgid "Error - no such file exists at %s"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4972 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4973 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4974 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
4997 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4998 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4999 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5000 |
+
#: src/class-updraftplus.php:4093, src/class-updraftplus.php:4095,
|
5001 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4264,
|
5002 |
+
#: src/class-updraftplus.php:4333, src/methods/googledrive.php:382,
|
5003 |
+
#: src/methods/s3.php:336
|
5004 |
msgid "Error: %s"
|
5005 |
msgstr ""
|
5006 |
|
5040 |
msgid "Warnings encountered:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: src/class-updraftplus.php:2921
|
5044 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5045 |
msgstr ""
|
5046 |
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
+
#: src/methods/s3.php:847
|
5084 |
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."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: src/methods/s3.php:1150
|
5088 |
msgid "Please check your access credentials."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1128
|
5092 |
msgid "The error reported by %s was:"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: src/restorer.php:1518
|
5096 |
msgid "Please supply the requested information, and then continue."
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: src/class-updraftplus.php:4275, src/restorer.php:1825
|
5100 |
msgid "Site information:"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: src/restorer.php:1692
|
5104 |
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."
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: src/admin.php:2445, src/class-updraftplus.php:4268, src/restorer.php:2196
|
5108 |
msgid "Warning:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4260,
|
5112 |
#: src/restorer.php:184
|
5113 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: src/admin.php:4071
|
5117 |
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."
|
5118 |
msgstr ""
|
5119 |
|
5189 |
msgid "News"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:490
|
5193 |
msgid "Backup set not found"
|
5194 |
msgstr ""
|
5195 |
|
5354 |
msgstr ""
|
5355 |
|
5356 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5357 |
+
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5358 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5359 |
#: src/udaddons/options.php:135
|
5360 |
msgid "Password"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
+
#: src/addons/sftp.php:429, src/addons/webdav.php:207
|
5364 |
msgid "Port"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5368 |
+
#: src/addons/webdav.php:199
|
5369 |
msgid "Host"
|
5370 |
msgstr ""
|
5371 |
|
5413 |
msgid "Over-write wp-config.php"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
+
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:507
|
5417 |
msgid "WordPress Core"
|
5418 |
msgstr ""
|
5419 |
|
5421 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5422 |
msgstr ""
|
5423 |
|
5424 |
+
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5425 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3052,
|
5426 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5427 |
#: src/methods/stream-base.php:353
|
5428 |
msgid "Failed"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: src/addons/webdav.php:169
|
5432 |
msgid "WebDAV URL"
|
5433 |
msgstr ""
|
5434 |
|
5479 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:816
|
5483 |
msgid "Your %s account name: %s"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: src/methods/dropbox.php:806, src/methods/dropbox.php:828
|
5487 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
5491 |
msgid "you have authenticated your %s account"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5495 |
msgid "there's an add-on for that."
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5499 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5503 |
msgid "Backups are saved in"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5507 |
msgid "Need to use sub-folders?"
|
5508 |
msgstr ""
|
5509 |
|
5516 |
msgid "You do not appear to be authenticated with Dropbox"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: src/methods/s3.php:1145
|
5520 |
msgid "The communication with %s was not encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: src/methods/s3.php:1143
|
5524 |
msgid "The communication with %s was encrypted."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1140
|
5528 |
msgid "We accessed the bucket, and were able to create files within it."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5532 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5533 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5537 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5538 |
msgid "Failure"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: src/addons/backblaze.php:472, src/methods/s3.php:1126
|
5542 |
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)."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5546 |
+
#: src/methods/s3.php:1120
|
5547 |
msgid "Region"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5551 |
+
#: src/methods/s3.php:1102
|
5552 |
msgid "Failure: No bucket details were given."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: src/methods/s3.php:1080
|
5556 |
msgid "API secret"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: src/methods/s3.php:928
|
5560 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: src/methods/s3.php:927
|
5564 |
msgid "%s location"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
+
#: src/methods/s3.php:923
|
5568 |
msgid "%s secret key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
+
#: src/methods/s3.php:919
|
5572 |
msgid "%s access key"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: src/methods/s3.php:859
|
5576 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: src/methods/s3.php:857
|
5580 |
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."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: src/methods/s3.php:477, src/methods/s3.php:589, src/methods/s3.php:661,
|
5584 |
+
#: src/methods/s3.php:764
|
5585 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
+
#: src/methods/s3.php:747, src/methods/s3.php:757, src/methods/s3.php:793
|
5589 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
+
#: src/methods/s3.php:455
|
5593 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: src/methods/s3.php:451
|
5597 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: src/methods/s3.php:435
|
5601 |
msgid "%s chunk %s: upload failed"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: src/methods/s3.php:425
|
5605 |
msgid "%s error: file %s was shortened unexpectedly"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
+
#: src/methods/s3.php:403
|
5609 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5610 |
msgstr ""
|
5611 |
|
5630 |
msgstr ""
|
5631 |
|
5632 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5633 |
+
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5634 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5635 |
msgid "Username"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5639 |
+
#: src/methods/s3.php:1076
|
5640 |
msgid "API key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5644 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5645 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5646 |
+
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5647 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5648 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5649 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5650 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5651 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5652 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5653 |
+
#: src/methods/s3.php:1076, src/methods/s3.php:1080
|
5654 |
msgid "Failure: No %s was given."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5658 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5659 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5660 |
msgstr ""
|
5661 |
|
5690 |
msgid "Test %s Settings"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
5694 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5695 |
msgid "Error opening local file: Failed to download"
|
5696 |
msgstr ""
|
5702 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5703 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5704 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5705 |
+
#: src/methods/s3.php:371, src/methods/s3.php:383, src/methods/s3.php:384
|
5706 |
msgid "%s Error: Failed to upload"
|
5707 |
msgstr ""
|
5708 |
|
5728 |
msgid "Authenticate with Google"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5732 |
#: src/methods/googledrive.php:1196
|
5733 |
msgid "Client Secret"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1193
|
5737 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5741 |
#: src/methods/googledrive.php:1192
|
5742 |
msgid "Client ID"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5746 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5750 |
msgid "Select 'Web Application' as the application type."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1167
|
5754 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5758 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:546,
|
5759 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5760 |
#: src/methods/googledrive.php:558
|
5761 |
msgid "Account is not authorized."
|
5775 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5779 |
#: src/methods/googledrive.php:441
|
5780 |
msgid "you have authenticated your %s account."
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5784 |
+
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5785 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5786 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5787 |
+
#: src/methods/s3.php:1140, src/methods/stream-base.php:364
|
5788 |
msgid "Success"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:839,
|
5792 |
+
#: src/methods/dropbox.php:848, src/methods/googledrive.php:415
|
5793 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5794 |
msgstr ""
|
5795 |
|
5821 |
msgstr ""
|
5822 |
|
5823 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5824 |
+
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:4101,
|
5825 |
+
#: src/restorer.php:2437, src/restorer.php:2542
|
5826 |
msgid "OK"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: src/restorer.php:2431, src/restorer.php:2506
|
5830 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: src/addons/migrator.php:1285, src/restorer.php:2333
|
5834 |
msgid "the database query being run was:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
+
#: src/restorer.php:2034
|
5838 |
msgid "will restore as:"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: src/class-updraftplus.php:4246, src/restorer.php:1807,
|
5842 |
+
#: src/restorer.php:1896, src/restorer.php:1922
|
5843 |
msgid "Old table prefix:"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5847 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4176
|
5848 |
msgid "Backup of:"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: src/restorer.php:1614
|
5852 |
msgid "Failed to open database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: src/restorer.php:1593
|
5856 |
msgid "Failed to find database file"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: src/restorer.php:1570
|
5860 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: src/restorer.php:529
|
5864 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: src/restorer.php:524
|
5868 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: src/restorer.php:417
|
5872 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: src/restorer.php:401
|
5876 |
msgid "Failed to create a temporary directory"
|
5877 |
msgstr ""
|
5878 |
|
5916 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: src/admin.php:4109, src/admin.php:4110
|
5920 |
msgid "Could not find one of the files for restoration"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: src/admin.php:4224
|
5924 |
msgid "Error message"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: src/admin.php:4106
|
5928 |
msgid "The backup records do not contain information about the proper size of this file."
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: src/admin.php:4098
|
5932 |
msgid "Archive is expected to be size:"
|
5933 |
msgstr ""
|
5934 |
|
5969 |
msgstr ""
|
5970 |
|
5971 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5972 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5973 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5974 |
msgstr ""
|
5975 |
|
6257 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
+
#: src/class-updraftplus.php:4206
|
6261 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6262 |
msgstr ""
|
6263 |
|
6310 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6311 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6312 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6313 |
+
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6314 |
+
#: src/admin.php:680, src/admin.php:4103, src/admin.php:4133,
|
6315 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6316 |
+
#: src/methods/updraftvault.php:522, src/restorer.php:1523
|
6317 |
msgid "Error:"
|
6318 |
msgstr ""
|
6319 |
|
6387 |
|
6388 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6389 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6390 |
+
#: src/admin.php:3682, src/admin.php:4187,
|
6391 |
#: src/includes/class-wpadmin-commands.php:147,
|
6392 |
+
#: src/includes/class-wpadmin-commands.php:505,
|
6393 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6394 |
msgid "Database"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
+
#: src/admin.php:311, src/admin.php:4777
|
6398 |
msgid "Files"
|
6399 |
msgstr ""
|
6400 |
|
6446 |
msgid "UpdraftPlus.Com"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
+
#: src/admin.php:4669
|
6450 |
msgid "Your settings have been wiped."
|
6451 |
msgstr ""
|
6452 |
|
6507 |
msgstr ""
|
6508 |
|
6509 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6510 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
6511 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6512 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6513 |
+
#: src/methods/stream-base.php:220, src/restorer.php:2433,
|
6514 |
+
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6515 |
msgid "Error"
|
6516 |
msgstr ""
|
6517 |
|
6552 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6553 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6554 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6555 |
+
#: src/methods/s3.php:847, src/methods/s3.php:851,
|
6556 |
#: src/methods/updraftvault.php:301,
|
6557 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6558 |
#: src/udaddons/updraftplus-addons.php:253
|
6584 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3966,
|
6588 |
+
#: src/methods/googledrive.php:1082, src/methods/s3.php:336
|
6589 |
msgid "File not found"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: src/class-updraftplus.php:3873
|
6593 |
msgid "The decryption key used:"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: src/class-updraftplus.php:3873, src/class-updraftplus.php:4105,
|
6597 |
+
#: src/restorer.php:422
|
6598 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6599 |
msgstr ""
|
6600 |
|
6601 |
+
#: src/class-updraftplus.php:3854, src/class-updraftplus.php:4093,
|
6602 |
+
#: src/restorer.php:409
|
6603 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6604 |
msgstr ""
|
6605 |
|
6607 |
msgid "Could not open the backup file for writing"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: src/class-updraftplus.php:3459
|
6611 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: src/class-updraftplus.php:3420
|
6615 |
msgid "Could not read the directory"
|
6616 |
msgstr ""
|
6617 |
|
6623 |
msgid "WordPress backup is complete"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: src/class-updraftplus.php:2930
|
6627 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: src/class-updraftplus.php:2915
|
6631 |
msgid "The backup apparently succeeded and is now complete"
|
6632 |
msgstr ""
|
6633 |
|
6635 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/class-updraftplus.php:2618
|
6639 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: src/class-updraftplus.php:1897
|
6643 |
msgid "Others"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: src/addons/multisite.php:465, src/class-updraftplus.php:1882
|
6647 |
msgid "Uploads"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: src/class-updraftplus.php:1881
|
6651 |
msgid "Themes"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: src/class-updraftplus.php:1880
|
6655 |
msgid "Plugins"
|
6656 |
msgstr ""
|
6657 |
|
Binary file
|
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the UpdraftPlus package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2018-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -11,19 +11,65 @@ msgstr ""
|
|
11 |
"Language: da_DK\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
-
msgstr ""
|
17 |
|
18 |
#: src/methods/backup-module.php:541
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr "Sørg for, at du er logget ind på den rigtige konto, inden du fortsætter."
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr "Fjernlager metode og angivelse af id er nødvendige for godkendelse."
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr "godkendelsesfejl"
|
29 |
|
@@ -91,25 +137,25 @@ msgstr "Ikke flere glemte adgangskoder. Få mere at vide om vores revolutioneren
|
|
91 |
msgid "remote site"
|
92 |
msgstr "ekstern side"
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr "Ugyldigt emne-navn"
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] "Den ønskede tabel-sortering (%1$s) findes ikke - skift til %2$s."
|
102 |
msgstr[1] "De ønskede tabel-sorteringer (%1$s) findes ikke - skift til %2$s."
|
103 |
|
104 |
-
#: src/class-updraftplus.php:
|
105 |
msgid "Your chosen replacement collation"
|
106 |
msgstr "Din valgte alternative sortering"
|
107 |
|
108 |
-
#: src/class-updraftplus.php:
|
109 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
110 |
msgstr "Du kan vælge en anden passende sortering i stedet og fortsætte med genoprettelsen (på egen risiko)."
|
111 |
|
112 |
-
#: src/class-updraftplus.php:
|
113 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
114 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
115 |
msgstr[0] "Database-serveren, som dette WordPress-websted ligger på, understøtter ikke den sortering (%s), der bruges i databasen, som du forsøger at importere."
|
@@ -123,27 +169,27 @@ msgstr "Muligheder ved genskabelse af database:"
|
|
123 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
124 |
msgstr "Dette ligner en migrering (sikkerhedskopien er fra et websted med en anden adresse / URL,%s)."
|
125 |
|
126 |
-
#: src/addons/azure.php:
|
127 |
msgid "%s Prefix"
|
128 |
msgstr "%s forudinstilling"
|
129 |
|
130 |
-
#: src/addons/azure.php:
|
131 |
msgid "%s Container"
|
132 |
msgstr "%s beholder"
|
133 |
|
134 |
-
#: src/addons/azure.php:
|
135 |
msgid "%s Key"
|
136 |
msgstr "%s Nøgle"
|
137 |
|
138 |
-
#: src/addons/azure.php:
|
139 |
msgid "%s Account Name"
|
140 |
msgstr "%s Konto navm"
|
141 |
|
142 |
-
#: src/addons/googlecloud.php:
|
143 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
144 |
msgstr "Men ingen %s indstillinger blev fundet. Udfyld alle felter i %s indstillinger og gem indstillingerne."
|
145 |
|
146 |
-
#: src/addons/googlecloud.php:
|
147 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
148 |
msgstr "Men intet emne blev defineret, så sikkerhedskopieringen er muligvis ikke færdig. Indtast venligst et emnenavn i %s indstillinger og gem indstillinger."
|
149 |
|
@@ -173,19 +219,19 @@ msgid_plural "Your .htaccess has an old site references on line numbers %s. You
|
|
173 |
msgstr[0] "Dit .htaccess har en gammel side-reference på linjenummer %s. Du skal fjerne det manuelt."
|
174 |
msgstr[1] "Dine .htaccess har gamle side-referencer på linjenumrene %s. Du skal fjerne dem manuelt."
|
175 |
|
176 |
-
#: src/restorer.php:
|
177 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
178 |
msgstr "Det ønskede tabel-tegnsæt (%s) findes ikke - ændres til %s."
|
179 |
|
180 |
-
#: src/class-updraftplus.php:
|
181 |
msgid "Your chosen character set to use instead:"
|
182 |
msgstr "Dit valgte tegnsæt, der skal bruges i stedet:"
|
183 |
|
184 |
-
#: src/class-updraftplus.php:
|
185 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
186 |
msgstr "Du kan vælge et andet passende tegnsæt i stedet og erstatte det på egen risiko."
|
187 |
|
188 |
-
#: src/class-updraftplus.php:
|
189 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
190 |
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."
|
191 |
msgstr[0] "Database-serveren, som dette WordPress-websted kører på, understøtter ikke tegnsættet (%s), som du forsøger at importere."
|
@@ -239,59 +285,59 @@ msgstr "Du skal nu kopiere nøglen nedenfor og indtaste den på din %s."
|
|
239 |
msgid "Please enter a valid URL e.g http://example.com"
|
240 |
msgstr "Indtast venligst en gyldig webadresse, fx http://eksempel.dk"
|
241 |
|
242 |
-
#: src/addons/backblaze.php:
|
243 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
244 |
msgstr "Det er begrænset, hvilke stienavne der er gyldige. Mellemrum er ikke tilladt."
|
245 |
|
246 |
-
#: src/addons/backblaze.php:
|
247 |
msgid "some/path"
|
248 |
msgstr "nogle/sti"
|
249 |
|
250 |
-
#: src/addons/backblaze.php:
|
251 |
msgid "Bucket name"
|
252 |
msgstr "Beholder-navn"
|
253 |
|
254 |
-
#: src/addons/backblaze.php:
|
255 |
msgid "Backup path"
|
256 |
msgstr "Backup sti"
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "Application key"
|
260 |
msgstr "Applikationsnøgle"
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "here"
|
264 |
msgstr "her"
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "Get these settings from %s, or sign up %s."
|
268 |
msgstr "Få disse indstillinger fra %s, eller tilmeld %s."
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Account Key"
|
272 |
msgstr "Kontonøgle"
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Account ID"
|
276 |
msgstr "Konto-ID"
|
277 |
|
278 |
-
#: src/class-updraftplus.php:
|
279 |
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."
|
280 |
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."
|
281 |
|
282 |
-
#: src/class-updraftplus.php:
|
283 |
msgid "the migrator add-on"
|
284 |
msgstr "migrator tilføjelsen"
|
285 |
|
286 |
-
#: src/class-updraftplus.php:
|
287 |
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."
|
288 |
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."
|
289 |
|
290 |
-
#: src/class-updraftplus.php:
|
291 |
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."
|
292 |
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."
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
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."
|
297 |
|
@@ -311,15 +357,15 @@ msgstr "UpdraftPlus debug mode er aktivt: Detaljerede debugging data følger."
|
|
311 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
312 |
msgstr "Fejl: Den valgte fil er beskadiget. Vælg venligst en gyldig UpdraftPlus eksportfil."
|
313 |
|
314 |
-
#: src/admin.php:1368, src/admin.php:
|
315 |
-
#: src/class-updraftplus.php:
|
316 |
-
#: src/class-updraftplus.php:
|
317 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
318 |
msgstr "En alvorlig PHP fejl (%s) er opstået: %s"
|
319 |
|
320 |
-
#: src/admin.php:1359, src/admin.php:
|
321 |
-
#: src/class-updraftplus.php:
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "A PHP exception (%s) has occurred: %s"
|
324 |
msgstr "Der er opstået en PHP-undtagelse (%s): %s"
|
325 |
|
@@ -375,7 +421,7 @@ msgstr "Øjeblikkelig og sikker logon ved hjælp af din telefon."
|
|
375 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
376 |
msgstr "Som tidligere oplyst (se:%s), er kryptering ikke længere en mulighed i den gratis udgave af UpdraftPlus"
|
377 |
|
378 |
-
#: src/admin.php:
|
379 |
msgid "Value"
|
380 |
msgstr "Værdi"
|
381 |
|
@@ -387,7 +433,7 @@ msgstr "Ved ikke, hvordan der slettes fra denne cloud service."
|
|
387 |
msgid "Encrypted login failed; trying non-encrypted"
|
388 |
msgstr "Krypteret login mislykkedes. Forsøger nu en ikke-krypteret"
|
389 |
|
390 |
-
#: src/addons/azure.php:
|
391 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
392 |
msgstr "Du skal tilføje følgende som autoriseret omdirigerings-URI i din Azure-konsol (under \"API-indstillinger\"), når du bliver spurgt"
|
393 |
|
@@ -399,11 +445,11 @@ msgstr "Lagret på: %s"
|
|
399 |
msgid "Cloud Files"
|
400 |
msgstr "Cloud filer"
|
401 |
|
402 |
-
#: src/admin.php:
|
403 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
404 |
msgstr "Dine indstillinger kunne ikke gemmes. Opdater siden for indstillingerne og prøv igen."
|
405 |
|
406 |
-
#: src/admin.php:
|
407 |
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."
|
408 |
msgstr "UpdraftPlus ser ud til at være blevet opdateret til version (%s), der er forskellig fra den version, der kørte, da denne indstillingsside blev indlæst. Genindlæs venligst indstillingssiden, før du forsøger at gemme indstillingerne."
|
409 |
|
@@ -412,11 +458,11 @@ msgstr "UpdraftPlus ser ud til at være blevet opdateret til version (%s), der e
|
|
412 |
msgid "UpdraftVault"
|
413 |
msgstr "UpdraftVault"
|
414 |
|
415 |
-
#: src/includes/class-wpadmin-commands.php:
|
416 |
msgid "archive"
|
417 |
msgstr "arkiv"
|
418 |
|
419 |
-
#: src/includes/class-wpadmin-commands.php:
|
420 |
msgid "Extra database"
|
421 |
msgstr "Ekstra database"
|
422 |
|
@@ -460,11 +506,11 @@ msgstr "Med UpdraftPlus Premium kan du hente individuelle filer direkte herfra."
|
|
460 |
msgid "Browse contents"
|
461 |
msgstr "Gennemse indhold"
|
462 |
|
463 |
-
#: src/restorer.php:
|
464 |
msgid "Skipped tables:"
|
465 |
msgstr "Kasserede tabeller:"
|
466 |
|
467 |
-
#: src/class-updraftplus.php:
|
468 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
469 |
msgstr "Denne database backup har følgende WordPress udelukkede tabeller:%s"
|
470 |
|
@@ -673,14 +719,6 @@ msgstr "UpdraftPlus"
|
|
673 |
msgid "Recommended: optimize your database with WP-Optimize."
|
674 |
msgstr "Anbefalet: Optimer din database med WP-Optimize."
|
675 |
|
676 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
677 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
678 |
-
msgstr "Når du har sikkerhedskopieret din database, anbefaler vi, at du installerer vores WP-Optimize-plugin for at strømline det til bedre website-ydelse."
|
679 |
-
|
680 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
681 |
-
msgid "WP-Optimize"
|
682 |
-
msgstr "WP-Optimize"
|
683 |
-
|
684 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
685 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
686 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -728,27 +766,7 @@ msgstr "Europa (London)"
|
|
728 |
msgid "Europe (Ireland)"
|
729 |
msgstr "Europa (Irland)"
|
730 |
|
731 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
732 |
-
msgid "WP-Optimize (free)"
|
733 |
-
msgstr "WP-Optimize (gratis)"
|
734 |
-
|
735 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
736 |
-
msgid "Explore our Cloud and Premium versions."
|
737 |
-
msgstr "Udforsk vores Cloud og Premium versioner."
|
738 |
-
|
739 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
740 |
-
msgid "Download it for free from WordPress.org"
|
741 |
-
msgstr "Download det gratis på WordPress.org"
|
742 |
-
|
743 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
744 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
745 |
-
msgstr "Du kan endda bruge den til centralt at styre og opdatere alle temaer, plugins og WordPress-kerner på alle dine websteder uden at logge på dem!"
|
746 |
-
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
748 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
749 |
-
msgstr "UpdraftCentral er et kraftfuldt fjernbetjenings plugin til WordPress, som giver dig mulighed for at styre alle dine UpdraftPlus installationer og sikkerhedskopier fra en central placering."
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
752 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
753 |
msgid "UpdraftCentral"
|
754 |
msgstr "UpdraftCentral"
|
@@ -960,11 +978,11 @@ msgstr "Her kan du eksportere dine UpdraftPlus indstillinger (%s), enten til bru
|
|
960 |
msgid "Export / import settings"
|
961 |
msgstr "Eksport / import indstillinger"
|
962 |
|
963 |
-
#: src/restorer.php:
|
964 |
msgid "Processing table (%s)"
|
965 |
msgstr "Behandler tabel (%s)"
|
966 |
|
967 |
-
#: src/restorer.php:
|
968 |
msgid "Backup of: %s"
|
969 |
msgstr "Backup af: %s"
|
970 |
|
@@ -972,11 +990,11 @@ msgstr "Backup af: %s"
|
|
972 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
973 |
msgstr "Klienten er blevet slettet fra Google Drive API-konsollen. Opret venligst et nyt Google Drive projekt og genopret forbindelsen med UpdraftPlus."
|
974 |
|
975 |
-
#: src/methods/dropbox.php:
|
976 |
msgid "%s de-authentication"
|
977 |
msgstr "%s af-autentificering"
|
978 |
|
979 |
-
#: src/methods/dropbox.php:
|
980 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
981 |
msgstr "Du skal, når du bliver spurgt, tilføje følgende som den autoriserede omdirigering URI i din Dropbox-konsol (under \"API Indstillinger\")."
|
982 |
|
@@ -1044,24 +1062,24 @@ msgstr "skabelon blev ikke fundet"
|
|
1044 |
msgid "US East (Ohio)"
|
1045 |
msgstr "US East (Ohio)"
|
1046 |
|
1047 |
-
#: src/addons/onedrive.php:
|
1048 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1049 |
msgstr "Dette websted bruger en webadresse, der enten er HTTPS eller er lokalhost eller en 127.0.0.1 URL. Som udgangspunkt skal du bruge %s %s applikationen til at godkende din konto."
|
1050 |
|
1051 |
-
#: src/addons/onedrive.php:
|
1052 |
msgid "Account is not authorized (%s)."
|
1053 |
msgstr "Kontoen er ikke godkendt (%s)."
|
1054 |
|
1055 |
-
#: src/addons/onedrive.php:
|
1056 |
msgid "Your IP address:"
|
1057 |
msgstr "Din IP-adresse:"
|
1058 |
|
1059 |
-
#: src/addons/onedrive.php:
|
1060 |
#: src/udaddons/updraftplus-addons.php:887
|
1061 |
msgid "To remove any block, please go here."
|
1062 |
msgstr "Fjern enhver blok her."
|
1063 |
|
1064 |
-
#: src/addons/onedrive.php:
|
1065 |
msgid "An error response was received; HTTP code:"
|
1066 |
msgstr "En fejlmeddelelse blev modtaget; HTTP kode:"
|
1067 |
|
@@ -1089,27 +1107,27 @@ msgstr "OptimizePress 2.0 koder dens indhold, så søg/erstat virker ikke."
|
|
1089 |
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."
|
1090 |
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."
|
1091 |
|
1092 |
-
#: src/addons/webdav.php:
|
1093 |
msgid "Path"
|
1094 |
msgstr "Sti"
|
1095 |
|
1096 |
-
#: src/addons/webdav.php:
|
1097 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1098 |
msgstr "Lad dette være tomt for at bruge standard (80 for webdav, 443 for webdavs)"
|
1099 |
|
1100 |
-
#: src/addons/webdav.php:
|
1101 |
msgid "Enter any path in the field below."
|
1102 |
msgstr "Indtast en sti i feltet nedenfor."
|
1103 |
|
1104 |
-
#: src/addons/webdav.php:
|
1105 |
msgid "A host name cannot contain a slash."
|
1106 |
msgstr "Et værtsnavn kan ikke indeholde skråstreg."
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "Protocol (SSL or not)"
|
1110 |
msgstr "Protokol (SSL eller ikke)"
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1114 |
msgstr "Denne WebDAV URL genereres ved at udfylde nedenstående muligheder. Hvis du ikke kender detaljerne, bliver du nødt til at spørge din WebDAV udbyder."
|
1115 |
|
@@ -1117,11 +1135,11 @@ msgstr "Denne WebDAV URL genereres ved at udfylde nedenstående muligheder. Hvis
|
|
1117 |
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."
|
1118 |
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."
|
1119 |
|
1120 |
-
#: src/methods/s3.php:
|
1121 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1122 |
msgstr "AWS adgangskoden er tilsyneladende forkert (gyldige %s adgangskoder begynder med \"AK\")"
|
1123 |
|
1124 |
-
#: src/methods/s3.php:
|
1125 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1126 |
msgstr "Indstillinger blev ikke fundet - Gå venligst til Indstillinger knappen og kontroller dine indstillinger"
|
1127 |
|
@@ -1227,7 +1245,7 @@ msgstr "Vær opmærksom på at mailservere ofte har størrelsesbegrænsninger; t
|
|
1227 |
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."
|
1228 |
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."
|
1229 |
|
1230 |
-
#: src/class-updraftplus.php:
|
1231 |
msgid "Size: %s MB"
|
1232 |
msgstr "Størrelse: %s MB"
|
1233 |
|
@@ -1239,7 +1257,7 @@ msgstr "UpdraftPlus vil opdele backup arkiver, når de overskrider denne filstø
|
|
1239 |
msgid "Now"
|
1240 |
msgstr "Nu"
|
1241 |
|
1242 |
-
#: src/class-updraftplus.php:
|
1243 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1244 |
msgstr "Du bør frigøre %s for at pæne permalinks (f.eks. %s) kan virke"
|
1245 |
|
@@ -1345,11 +1363,11 @@ msgstr "En UpdraftCentral forbindelse blev oprettet med succes."
|
|
1345 |
msgid "UpdraftCentral Connection"
|
1346 |
msgstr "UpdraftCentral Connection"
|
1347 |
|
1348 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1349 |
msgid "The backup was aborted by the user"
|
1350 |
msgstr "Backup'en blev afbrudt af brugeren"
|
1351 |
|
1352 |
-
#: src/admin.php:
|
1353 |
msgid "Your settings have been saved."
|
1354 |
msgstr "Dine indstillinger er gemt"
|
1355 |
|
@@ -1415,7 +1433,7 @@ msgstr "Henter..."
|
|
1415 |
msgid "Asia Pacific (Seoul)"
|
1416 |
msgstr "Asia Pacific (Seoul)"
|
1417 |
|
1418 |
-
#: src/restorer.php:
|
1419 |
msgid "Uploads URL:"
|
1420 |
msgstr "Uploads URL:"
|
1421 |
|
@@ -1423,15 +1441,15 @@ msgstr "Uploads URL:"
|
|
1423 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1424 |
msgstr "Det nødvendige %s PHP modul er ikke installeret - bed din webudbyder om at aktivere det."
|
1425 |
|
1426 |
-
#: src/class-updraftplus.php:
|
1427 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1428 |
msgstr "For at importere et almindeligt WordPress site til en multisite installation kræves %s."
|
1429 |
|
1430 |
-
#: src/class-updraftplus.php:
|
1431 |
msgid "Please read this link for important information on this process."
|
1432 |
msgstr "Venligst læs dette link for vigtig information om processen."
|
1433 |
|
1434 |
-
#: src/class-updraftplus.php:
|
1435 |
msgid "It will be imported as a new site."
|
1436 |
msgstr "Vil blive importeret som et nyt site."
|
1437 |
|
@@ -1505,7 +1523,7 @@ msgstr "Udfør WordPress handling:"
|
|
1505 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1506 |
msgstr "Dine gemte indstillinger påvirker også, hvad der oprettes back up af - f.eks. udelukkes filer."
|
1507 |
|
1508 |
-
#: src/admin.php:
|
1509 |
msgid "Skipping: this archive was already restored."
|
1510 |
msgstr "Stopper: Dette arkiv er allerede genskabt."
|
1511 |
|
@@ -1537,23 +1555,23 @@ msgstr "Du skal derefter indtaste alle dine indstillinger igen. Du kan også gø
|
|
1537 |
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)."
|
1538 |
msgstr "Denne knap vil slette alle UpdraftPlus indstillinger og information om igangværende sikkerhedskopier (men ikke slette eksisterende sikkerhedskopier i din sky)."
|
1539 |
|
1540 |
-
#: src/admin.php:
|
1541 |
msgid "Send this backup to remote storage"
|
1542 |
msgstr "Send denne backup til fjernlager"
|
1543 |
|
1544 |
-
#: src/admin.php:
|
1545 |
msgid "Check out UpdraftPlus Vault."
|
1546 |
msgstr "Se UpdraftPlus Vault"
|
1547 |
|
1548 |
-
#: src/admin.php:
|
1549 |
msgid "Not got any remote storage?"
|
1550 |
msgstr "Har du ikke et fjernlager?"
|
1551 |
|
1552 |
-
#: src/admin.php:
|
1553 |
msgid "settings"
|
1554 |
msgstr "Indstillinger"
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1558 |
msgstr "Backup vil ikke blive sendt til noget lager - Intet er blevet gemt i %s"
|
1559 |
|
@@ -1610,23 +1628,23 @@ msgstr "Udviddelser"
|
|
1610 |
msgid "Advanced Tools"
|
1611 |
msgstr "Advancerede værktøjer"
|
1612 |
|
1613 |
-
#: src/addons/googlecloud.php:
|
1614 |
msgid "Bucket location"
|
1615 |
msgstr "Gruppe lokation"
|
1616 |
|
1617 |
-
#: src/addons/googlecloud.php:
|
1618 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1619 |
msgstr "Bemærk, at Google ikke understøtter alle lagringsklasser på enhver placering - Du bør læse deres dokumentation for at lære om aktuel tilgængelighed."
|
1620 |
|
1621 |
-
#: src/addons/googlecloud.php:
|
1622 |
msgid "This setting applies only when a new bucket is being created."
|
1623 |
msgstr "Denne indstilling gælder kun, når en ny gruppe bliver skabt."
|
1624 |
|
1625 |
-
#: src/addons/googlecloud.php:
|
1626 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1627 |
msgstr "Du skal bruge et gruppenavn, der er unikt for alle %s brugere."
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "Do not confuse %s with %s - they are separate things."
|
1631 |
msgstr "%s of %s må ikke forveksles - De er forskellige"
|
1632 |
|
@@ -1688,48 +1706,48 @@ msgstr "Vedværende begrænset tilgængelighed"
|
|
1688 |
msgid "Standard"
|
1689 |
msgstr "Standard"
|
1690 |
|
1691 |
-
#: src/addons/azure.php:
|
1692 |
msgid "container"
|
1693 |
msgstr "mappe"
|
1694 |
|
1695 |
-
#: src/addons/azure.php:
|
1696 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1697 |
msgstr "Du kan indtaste stien til enhver %s virtuel mappe, du ønsker at bruge her."
|
1698 |
|
1699 |
-
#: src/addons/azure.php:
|
1700 |
msgid "optional"
|
1701 |
msgstr "valgfri"
|
1702 |
|
1703 |
-
#: src/addons/azure.php:
|
1704 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1705 |
msgstr "Se Microsofts retningslinjer for mappe-navngivning ved at følge dette link."
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "Enter the path of the %s you wish to use here."
|
1709 |
msgstr "Indtast stien til den %s, du ønsker at bruge her."
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1713 |
msgstr "Dette er ikke din Azure login - se anvisninger, hvis du har brug for mere vejledning."
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
-
#: src/addons/azure.php:
|
1717 |
msgid "Azure"
|
1718 |
msgstr "Azure"
|
1719 |
|
1720 |
-
#: src/addons/azure.php:
|
1721 |
msgid "Create Azure credentials in your Azure developer console."
|
1722 |
msgstr "Opret Azure legitimationsoplysninger i din Azure udviklerkonsol."
|
1723 |
|
1724 |
-
#: src/addons/azure.php:
|
1725 |
msgid "Could not create the container"
|
1726 |
msgstr "Kunne ikke oprette beholderen"
|
1727 |
|
1728 |
-
#: src/addons/azure.php:
|
1729 |
msgid "Could not access container"
|
1730 |
msgstr "Kunne ikke tilgå mappe"
|
1731 |
|
1732 |
-
#: src/class-updraftplus.php:
|
1733 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1734 |
msgstr "For at fuldføre din migrering/kloning, bør du nu logge ind på det eksterne site og genoprette backup sættet."
|
1735 |
|
@@ -1757,47 +1775,47 @@ msgstr "krævet af nogle lager-udbydere"
|
|
1757 |
msgid "Not installed"
|
1758 |
msgstr "Ikke installeret"
|
1759 |
|
1760 |
-
#: src/addons/googlecloud.php:
|
1761 |
msgid "Storage class"
|
1762 |
msgstr "Lager niveau"
|
1763 |
|
1764 |
-
#: src/addons/googlecloud.php:
|
1765 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1766 |
msgstr "Se Google's vejledning vedrørende navngivning af grupper ved at følge dette link."
|
1767 |
|
1768 |
-
#: src/addons/googlecloud.php:
|
1769 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1770 |
msgstr "Indtast navnet på den %s gruppe, du vil bruge her."
|
1771 |
|
1772 |
-
#: src/addons/googlecloud.php:
|
1773 |
msgid "Bucket"
|
1774 |
msgstr "Gruppe"
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Otherwise, you can leave it blank."
|
1778 |
msgstr "Ellers kan du lade det være tomt."
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1782 |
msgstr "N. B. Dette er kun nødvendigt, hvis du ikke allerede har oprettet gruppen, og du ønsker at UpdraftPlus opretter det for dig."
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "Enter the ID of the %s project you wish to use here."
|
1786 |
msgstr "Indtast ID''et til det %s projekt du ønsker at benytte her."
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1790 |
msgstr "Følg dette link til din Google API Console og aktivér Lager API'en og opret et klient ID i API-adgang sektionen."
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1794 |
msgstr "Du skal indtaste et projekt ID for at kunne oprette en nu gruppe."
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "Project ID"
|
1798 |
msgstr "Projekt ID"
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "You must save and authenticate before you can test your settings."
|
1802 |
msgstr "Du skal gemme og godkende, før du kan teste dine indstillinger."
|
1803 |
|
@@ -1806,22 +1824,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1806 |
msgstr "Har endnu ikke fået en adgang token fra Google - du har brug for at tillade eller re-autorisere din forbindelse til Google Cloud."
|
1807 |
|
1808 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1809 |
-
#: src/addons/googlecloud.php:
|
1810 |
msgid "You do not have access to this bucket."
|
1811 |
msgstr "Du har ikke adgang til denne gruppe"
|
1812 |
|
1813 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1814 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1815 |
-
#: src/addons/googlecloud.php:
|
1816 |
-
#: src/addons/googlecloud.php:
|
1817 |
-
#: src/addons/googlecloud.php:
|
1818 |
-
#: src/addons/googlecloud.php:
|
1819 |
msgid "Google Cloud"
|
1820 |
msgstr "Google Cloud"
|
1821 |
|
1822 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1823 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1824 |
-
#: src/addons/googlecloud.php:
|
1825 |
msgid "%s Service Exception."
|
1826 |
msgstr "%s Service undtagelse"
|
1827 |
|
@@ -1829,7 +1847,7 @@ msgstr "%s Service undtagelse"
|
|
1829 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1830 |
msgstr "Du behøver ikke UpdraftPlus fuldt installeret - venligst af-installér og installér det igen. WordPress fejlede muligvis ved kopiering af plugin-filer."
|
1831 |
|
1832 |
-
#: src/restorer.php:
|
1833 |
msgid "Deferring..."
|
1834 |
msgstr "Udskydelse..."
|
1835 |
|
@@ -1898,11 +1916,11 @@ msgstr "(som mange af jer synes om)"
|
|
1898 |
msgid "Add an additional retention rule..."
|
1899 |
msgstr "Tilføj en ekstra tilføjelsesregel..."
|
1900 |
|
1901 |
-
#: src/restorer.php:
|
1902 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1903 |
msgstr "Denne database skal indsættes på MySQL version %s eller nyere."
|
1904 |
|
1905 |
-
#: src/restorer.php:
|
1906 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1907 |
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."
|
1908 |
|
@@ -1910,11 +1928,11 @@ msgstr "Dette problem er forårsaget af forsøg på genskabelse af en database p
|
|
1910 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1911 |
msgstr "Du har ikke på nuværende tidspunkt nogen UpdraftPlus Vault kvote"
|
1912 |
|
1913 |
-
#: src/class-updraftplus.php:
|
1914 |
msgid "You must upgrade MySQL to be able to use this database."
|
1915 |
msgstr "Du skal opgradere MySQL for at kunne bruge denne database."
|
1916 |
|
1917 |
-
#: src/class-updraftplus.php:
|
1918 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1919 |
msgstr "Database-backup'en bruger MySQL funktioner, som ikke findes i den gamle MySQL version (%s), dette websted kører på."
|
1920 |
|
@@ -2092,8 +2110,8 @@ msgstr "Din UpdraftPlus Premium er købt for over et år siden. Du bør forny st
|
|
2092 |
msgid "Updraft Vault"
|
2093 |
msgstr "Updraft Vault"
|
2094 |
|
2095 |
-
#: src/addons/azure.php:
|
2096 |
-
#: src/addons/googlecloud.php:
|
2097 |
msgid "Delete failed:"
|
2098 |
msgstr "Sletning mislykkedes:"
|
2099 |
|
@@ -2129,10 +2147,6 @@ msgstr "Du bør kontrollere, at den eksterne site er online, ikke er bag en fire
|
|
2129 |
msgid "Existing keys"
|
2130 |
msgstr "Eksisterende nøgler"
|
2131 |
|
2132 |
-
#: src/addons/migrator.php:2423
|
2133 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2134 |
-
msgstr "Der er endnu ikke oprettet nøgler, der kan tillade eksterne sites at skabe forbindelse."
|
2135 |
-
|
2136 |
#: src/addons/migrator.php:2405
|
2137 |
msgid "Your new key:"
|
2138 |
msgstr "Din nye nøgle:"
|
@@ -2338,7 +2352,7 @@ msgstr "Tilføjer..."
|
|
2338 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2339 |
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?"
|
2340 |
|
2341 |
-
#: src/restorer.php:
|
2342 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2343 |
msgstr "For at bruge denne backup, skal din database server understøtte %s tegnsæt."
|
2344 |
|
@@ -2370,41 +2384,41 @@ msgstr "Hvis du vil gendanne ved at bruge et af backup-sættene nedenfor, skal d
|
|
2370 |
msgid "You have made changes to your settings, and not saved."
|
2371 |
msgstr "Du har ændret dine indstillinger, men har ikke gemt."
|
2372 |
|
2373 |
-
#: src/addons/onedrive.php:
|
2374 |
msgid "N.B. %s is not case-sensitive."
|
2375 |
msgstr "N.B. %s skelner ikke mellem store og små bogstaver."
|
2376 |
|
2377 |
-
#: src/addons/onedrive.php:
|
2378 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2379 |
msgstr "Hvis OneDrive senere viser meddelelsen \"unauthorized_client\", så har du ikke indtastet en gyldig klient-id her."
|
2380 |
|
2381 |
-
#: src/addons/azure.php:
|
2382 |
-
#: src/addons/onedrive.php:
|
2383 |
msgid "For longer help, including screenshots, follow this link."
|
2384 |
msgstr "Følg dette link for mere uddybende hjælp, der blandt andet indkluderer skærmbilleder."
|
2385 |
|
2386 |
-
#: src/addons/onedrive.php:
|
2387 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2388 |
msgstr "Opret OneDrive legimitation i din OneDrive udviklerkonsol."
|
2389 |
|
2390 |
-
#: src/addons/onedrive.php:
|
2391 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2392 |
msgstr "Du skal tilføje følgende som den autoriserede redirect URI i din OneDrive konsol (under \"API Indstillinger\"), når du bliver spurgt"
|
2393 |
|
2394 |
-
#: src/addons/azure.php:
|
2395 |
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)."
|
2396 |
msgstr "Microsoft Azure er ikke kompatibel med sites, som hostes på en lokal host eller 127.0.0.1 URL - deres udviklerkonsol forbyder disse (aktuelle URL er: %s)."
|
2397 |
|
2398 |
-
#: src/addons/onedrive.php:
|
2399 |
msgid "%s authorisation failed:"
|
2400 |
msgstr "%s godkendelse mislykkedes:"
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
-
#: src/addons/onedrive.php:
|
2404 |
msgid "OneDrive"
|
2405 |
msgstr "OneDrive"
|
2406 |
|
2407 |
-
#: src/addons/onedrive.php:
|
2408 |
msgid "Please re-authorize the connection to your %s account."
|
2409 |
msgstr "Godkend igen forbindelsen til din %s konto."
|
2410 |
|
@@ -2412,7 +2426,7 @@ msgstr "Godkend igen forbindelsen til din %s konto."
|
|
2412 |
msgid "configure it here"
|
2413 |
msgstr "konfigurer her"
|
2414 |
|
2415 |
-
#: src/addons/onedrive.php:
|
2416 |
msgid "To remove the block, please go here."
|
2417 |
msgstr "Klik her for at fjerne block'en."
|
2418 |
|
@@ -2557,74 +2571,66 @@ msgstr "Du skal indtaste en admin adgangsnøgle"
|
|
2557 |
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)"
|
2558 |
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)"
|
2559 |
|
2560 |
-
#: src/methods/s3.php:
|
2561 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2562 |
msgstr "Brug denne tilføjelse for at oprette en ny IAM sub-bruger og adgangsnøgle, der kun har adgang til denne spand."
|
2563 |
|
2564 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2565 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2566 |
msgstr "For personlig support, muligheden for at kopiere sider, flere lagerdestinationer, krypterede sikkerhedskopier, flere backup destinationer, bedre rapportering, ingen reklamer og meget mere, bør du tage et kig på den premium-versionen af UpdraftPlus - verdens mest populære backup plugin."
|
2567 |
|
2568 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2569 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2570 |
msgstr "UpdraftPlus nyheder, høj kvalitet undervisningsmaterialer til WordPress udviklere og site-ejere, og generelle WordPress nyheder. Du kan afmelde abonnement på hvilket som helst tidspunkt."
|
2571 |
|
2572 |
-
#: src/addons/onedrive.php:
|
2573 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2574 |
#: src/udaddons/updraftplus-addons.php:887
|
2575 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2576 |
msgstr "Dette sker ofte, hvis du deler server med en hacked webside som har været brugt i et tidligere angreb."
|
2577 |
|
2578 |
-
#: src/addons/onedrive.php:
|
2579 |
#: src/udaddons/updraftplus-addons.php:887
|
2580 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2581 |
msgstr "Det ser ud til at din web server's IP addresse (%s) er blokeret."
|
2582 |
|
2583 |
-
#: src/addons/onedrive.php:
|
2584 |
#: src/udaddons/updraftplus-addons.php:887
|
2585 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2586 |
msgstr "UpdraftPlus.com har svaret med 'Adgang nægtet'."
|
2587 |
|
2588 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2589 |
msgid "Premium WooCommerce plugins"
|
2590 |
msgstr "Premium WooCommerce plugins"
|
2591 |
|
2592 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2593 |
msgid "Free two-factor security plugin"
|
2594 |
msgstr "Gratis to-faktor sikkerhedsplugin"
|
2595 |
|
2596 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2597 |
-
msgid "More
|
2598 |
-
msgstr "Flere kvalitets
|
2599 |
|
2600 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2601 |
msgid "Go to the shop."
|
2602 |
msgstr "Gå til shoppen."
|
2603 |
|
2604 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2605 |
msgid "Compare with the free version"
|
2606 |
msgstr "Sammenlign med den gratis version"
|
2607 |
|
2608 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2609 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2610 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2611 |
msgid "UpdraftPlus Premium"
|
2612 |
msgstr "UpdraftPlus Premium"
|
2613 |
|
2614 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2615 |
-
msgid "Follow this link to sign up."
|
2616 |
-
msgstr "Følg dette link for at abonnere."
|
2617 |
-
|
2618 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
2619 |
msgid "Free Newsletter"
|
2620 |
msgstr "Gratis nyhedsbrev"
|
2621 |
|
2622 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
2623 |
-
msgid "Thank you for backing up with UpdraftPlus!"
|
2624 |
-
msgstr "Tak for at du laver backup med UpdraftPlus!"
|
2625 |
-
|
2626 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2627 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2628 |
msgid "Dismiss (for %s months)"
|
2629 |
msgstr "Udskyd (i %s måneder)"
|
2630 |
|
@@ -2665,8 +2671,8 @@ msgstr "Komplet liste over funktioner"
|
|
2665 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2666 |
msgstr "Lav backup (hvis relevant) af plugins, temaer og WordPress database med UpdraftPlus før du opdaterer"
|
2667 |
|
2668 |
-
#: src/methods/s3.php:
|
2669 |
-
#: src/methods/s3.php:
|
2670 |
msgid "%s Error: Failed to initialise"
|
2671 |
msgstr "%s Fejl: Kunne ikke initialiseres"
|
2672 |
|
@@ -2711,7 +2717,7 @@ msgctxt "i.e. Non-automatic"
|
|
2711 |
msgid "Manual"
|
2712 |
msgstr "Manual"
|
2713 |
|
2714 |
-
#: src/restorer.php:
|
2715 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2716 |
msgid "An error (%s) occurred:"
|
2717 |
msgstr "En fejl (%s) opstod:"
|
@@ -2852,7 +2858,7 @@ msgstr "Upload filer til UpdraftPlus."
|
|
2852 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2853 |
msgstr "\"Backup Nu\"-knappen er deaktiveret, da din backup mappe er ikke skrivbar (gå til fanen \"Indstillinger\", og find den relevante mulighed)."
|
2854 |
|
2855 |
-
#: src/class-updraftplus.php:
|
2856 |
msgid "Backup label:"
|
2857 |
msgstr "Backup etiket:"
|
2858 |
|
@@ -2876,7 +2882,7 @@ msgstr "En zip fejl opstod"
|
|
2876 |
msgid "Your label for this backup (optional)"
|
2877 |
msgstr "Din label til denne backup (valgfrit)"
|
2878 |
|
2879 |
-
#: src/addons/googlecloud.php:
|
2880 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2881 |
msgstr "%s tillader ikke godkendelse af sider hostet direkte på IP-adresser. Du bliver nødt til at ændre din webstedsadresse (%s), før du kan bruge %s til lagring."
|
2882 |
|
@@ -2896,11 +2902,11 @@ msgstr "Du er nødt til at bruge både en e-mail adresse og en adgangskode"
|
|
2896 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2897 |
msgstr "For at fortsætte, så tryk på 'Backup Nu' og derefter se 'Sidste Log Besked' feltet for aktivitet."
|
2898 |
|
2899 |
-
#: src/class-updraftplus.php:
|
2900 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2901 |
msgstr "Hvis du ønsker at genskabe en multisite backup, så skal du først sætte din WordPress op som en multisite installation."
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2905 |
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."
|
2906 |
|
@@ -2937,19 +2943,19 @@ msgstr "Du har endnu ikke forbundet din UpdraftPlus.Com konto."
|
|
2937 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2938 |
msgstr "Du er nødt til at modtage fremtidige opdateringer UpdraftPlus."
|
2939 |
|
2940 |
-
#: src/class-updraftplus.php:
|
2941 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2942 |
msgstr "Eventuelle support anmodninger som har med %s at gøre bør løses med dit web-hosting firma."
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
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."
|
2946 |
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."
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2950 |
msgstr "Denne er markant nyere end den serverversion, som du nu ønsker at gendanne på (version %s)."
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2954 |
msgstr "Siden i denne backup blev lavet på en webserver med version %s af %s."
|
2955 |
|
@@ -2994,7 +3000,7 @@ msgstr "Klik her for at se i din UpdraftPlus mappe (på dit webhotel) efter nye
|
|
2994 |
msgid "Start backup"
|
2995 |
msgstr "Start backup"
|
2996 |
|
2997 |
-
#: src/class-updraftplus.php:
|
2998 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
2999 |
msgstr "Du bruger %s webserver, men den lader ikke til at have %s modulet indlæst."
|
3000 |
|
@@ -3030,7 +3036,7 @@ msgstr "Fortæl mig mere om trinvis sikkerhedskopiering"
|
|
3030 |
msgid "Memory limit"
|
3031 |
msgstr "hukommelsesgrænse"
|
3032 |
|
3033 |
-
#: src/class-updraftplus.php:
|
3034 |
msgid "restoration"
|
3035 |
msgstr "genoprettelse"
|
3036 |
|
@@ -3093,7 +3099,7 @@ msgstr "Søg / erstat database"
|
|
3093 |
msgid "search term"
|
3094 |
msgstr "søgefrase"
|
3095 |
|
3096 |
-
#: src/restorer.php:
|
3097 |
msgid "Too many database errors have occurred - aborting"
|
3098 |
msgstr "Der har været for mange database fejl - stopper"
|
3099 |
|
@@ -3129,7 +3135,7 @@ msgstr "%s (%s brugt)"
|
|
3129 |
msgid "Free disk space in account:"
|
3130 |
msgstr "Ledig diskplads på konto:"
|
3131 |
|
3132 |
-
#: src/admin.php:
|
3133 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3134 |
msgstr "Denne knap er deaktiveret fordi dit backup-arkiv ikke er skrivbart (se indstillingerne)."
|
3135 |
|
@@ -3224,7 +3230,7 @@ msgstr "vært"
|
|
3224 |
msgid "user"
|
3225 |
msgstr "bruger"
|
3226 |
|
3227 |
-
#: src/class-updraftplus.php:
|
3228 |
msgid "External database (%s)"
|
3229 |
msgstr "Ekstern database (%s)"
|
3230 |
|
@@ -3236,8 +3242,8 @@ msgstr "Følg linket til din Google API konsol og aktivér der Drive API og skab
|
|
3236 |
msgid "failed to access parent folder"
|
3237 |
msgstr "adgang til den overliggende mappe mislykkedes"
|
3238 |
|
3239 |
-
#: src/addons/googlecloud.php:
|
3240 |
-
#: src/addons/onedrive.php:
|
3241 |
msgid "However, subsequent access attempts failed:"
|
3242 |
msgstr "Dog mislykkede adgangsforsøget efterfølgende:"
|
3243 |
|
@@ -3273,7 +3279,7 @@ msgstr "Har du ikke lyst til at blive udspioneret? UpdraftPlus Premium kan krypt
|
|
3273 |
msgid "use UpdraftPlus Premium"
|
3274 |
msgstr "brug UpdraftPlus Premium"
|
3275 |
|
3276 |
-
#: src/class-updraftplus.php:
|
3277 |
msgid "Decryption failed. The database file is encrypted."
|
3278 |
msgstr "Dekryptering mislykkedes. Databasefilen er krypteret."
|
3279 |
|
@@ -3281,8 +3287,8 @@ msgstr "Dekryptering mislykkedes. Databasefilen er krypteret."
|
|
3281 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3282 |
msgstr "Kun WordPress databasen kan gendannes; du bliver nødt til at behandle den eksterne database manuelt."
|
3283 |
|
3284 |
-
#: src/restorer.php:
|
3285 |
-
#: src/restorer.php:
|
3286 |
msgid "An error occurred on the first %s command - aborting run"
|
3287 |
msgstr "Der opstod en fejl med den første %s kommando - afbryder kørelse"
|
3288 |
|
@@ -3302,17 +3308,17 @@ msgstr "Advarsel: Databasens URL (%s) er forskellig fra, hvad vi forventede (%s)
|
|
3302 |
msgid "In %s, path names are case sensitive."
|
3303 |
msgstr "Sti-navne i %s understøtter kun små bogstaver."
|
3304 |
|
3305 |
-
#: src/addons/azure.php:
|
3306 |
-
#: src/addons/onedrive.php:
|
3307 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3308 |
msgstr "Hvis feltet står tomt, vil backup'en placeres i roden af din %s"
|
3309 |
|
3310 |
-
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:
|
3311 |
-
#: src/addons/onedrive.php:
|
3312 |
msgid "e.g. %s"
|
3313 |
msgstr "f.eks. %s"
|
3314 |
|
3315 |
-
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:
|
3316 |
msgid "Enter the path of the %s folder you wish to use here."
|
3317 |
msgstr "Her angives stien til %s mappen du ønsker at bruge."
|
3318 |
|
@@ -3356,7 +3362,7 @@ msgstr "filerne kunne ikke vises"
|
|
3356 |
msgid "Failed to upload %s"
|
3357 |
msgstr "Upload %s mislykkedes"
|
3358 |
|
3359 |
-
#: src/methods/dropbox.php:
|
3360 |
msgid "Success:"
|
3361 |
msgstr "Udført:"
|
3362 |
|
@@ -3364,15 +3370,15 @@ msgstr "Udført:"
|
|
3364 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3365 |
msgstr "<strong>Efter</strong> du har gemt dine indstillinger (ved at klikke på 'Gem ændringer' nedenfor), skal du vende tilbage hertil og klikke på dette link for at færdiggøre godkendelse med %s."
|
3366 |
|
3367 |
-
#: src/addons/onedrive.php:
|
3368 |
msgid "(You appear to be already authenticated)."
|
3369 |
msgstr "(Du er allerede godkendt)."
|
3370 |
|
3371 |
-
#: src/methods/dropbox.php:
|
3372 |
msgid "Dropbox"
|
3373 |
msgstr "Dropbox"
|
3374 |
|
3375 |
-
#: src/addons/onedrive.php:
|
3376 |
msgid "Authenticate with %s"
|
3377 |
msgstr "Godkend med %s"
|
3378 |
|
@@ -3403,8 +3409,8 @@ msgstr "Kunne ikke tilgå %s container"
|
|
3403 |
msgid "%s error - failed to access the container"
|
3404 |
msgstr "%s fejl - Adgang til containeren mislykkedes"
|
3405 |
|
3406 |
-
#: src/addons/googlecloud.php:
|
3407 |
-
#: src/methods/dropbox.php:
|
3408 |
msgid "Account holder's name: %s."
|
3409 |
msgstr "Kontoindehavers navn: %s."
|
3410 |
|
@@ -3420,17 +3426,17 @@ msgstr "Det er et internt Google Drive ID-nummer"
|
|
3420 |
msgid "<strong>This is NOT a folder name</strong>."
|
3421 |
msgstr "<strong>Dette er IKKE et mappenavn</strong>."
|
3422 |
|
3423 |
-
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:
|
3424 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3425 |
msgid "Folder"
|
3426 |
msgstr "Mappe"
|
3427 |
|
3428 |
-
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:
|
3429 |
#: src/methods/googledrive.php:1122
|
3430 |
msgid "%s download: failed: file not found"
|
3431 |
msgstr "%s download: Mislykkedes: Filen blev ikke fundet"
|
3432 |
|
3433 |
-
#: src/addons/googlecloud.php:
|
3434 |
msgid "Name: %s."
|
3435 |
msgstr "Navn: %s."
|
3436 |
|
@@ -3469,7 +3475,7 @@ msgstr "Denne funktion kræver %s version %s eller nyere"
|
|
3469 |
msgid "Failed to unpack the archive"
|
3470 |
msgstr "Kunne ikke udpakke arkivet."
|
3471 |
|
3472 |
-
#: src/class-updraftplus.php:
|
3473 |
msgid "Error - failed to download the file"
|
3474 |
msgstr "Fejl - Kunne ikke downloade filen"
|
3475 |
|
@@ -3494,7 +3500,7 @@ msgid "password/key"
|
|
3494 |
msgstr "password/nøgle"
|
3495 |
|
3496 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3497 |
-
#: src/admin.php:
|
3498 |
msgid "Key"
|
3499 |
msgstr "Nøgle"
|
3500 |
|
@@ -3519,7 +3525,7 @@ msgid "Files and database WordPress backup (created by %s)"
|
|
3519 |
msgstr "Filer og database WordPress backup (lavet af %s)"
|
3520 |
|
3521 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3522 |
-
#: src/includes/class-backup-history.php:
|
3523 |
msgid "Backup created by: %s."
|
3524 |
msgstr "Backup lavet af: %s."
|
3525 |
|
@@ -3551,7 +3557,7 @@ msgstr "Læs denne side for en guide til mulige årsager og løsningsforslag."
|
|
3551 |
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."
|
3552 |
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."
|
3553 |
|
3554 |
-
#: src/admin.php:694, src/includes/class-backup-history.php:
|
3555 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3556 |
msgstr "Hvis dette er en backup skabt af en anden backup plugin, kan UpdraftPlus Premium muligvis hjælpe dig."
|
3557 |
|
@@ -3560,20 +3566,20 @@ msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are
|
|
3560 |
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."
|
3561 |
|
3562 |
#: src/admin.php:693, src/admin.php:694,
|
3563 |
-
#: src/includes/class-backup-history.php:
|
3564 |
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))."
|
3565 |
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))."
|
3566 |
|
3567 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3568 |
-
#: src/restorer.php:
|
3569 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3570 |
msgstr "Backup skabt af ukendt kilde (%s) - Kan ikke genskabes."
|
3571 |
|
3572 |
-
#: src/restorer.php:
|
3573 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3574 |
msgstr "WordPress indholdsmappe (wp-content) blev ikke fundet i denne zip fil."
|
3575 |
|
3576 |
-
#: src/restorer.php:
|
3577 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3578 |
msgstr "Denne version af UpdraftPlus kan ikke håndtere denne type af fremmed backup"
|
3579 |
|
@@ -3585,12 +3591,12 @@ msgstr "%s returnerede et uventet HTTP svar: %s"
|
|
3585 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3586 |
msgstr "UpdraftPlus modulet til denne fil-adgangsmetode (%s) understøtter ikke lister af filer."
|
3587 |
|
3588 |
-
#: src/addons/backblaze.php:
|
3589 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3590 |
msgid "No settings were found"
|
3591 |
msgstr "Indstillinger blev ikke fundet"
|
3592 |
|
3593 |
-
#: src/includes/class-backup-history.php:
|
3594 |
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."
|
3595 |
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."
|
3596 |
|
@@ -3598,7 +3604,7 @@ msgstr "Én eller flere backups er blevet tilføjet efter scanning af fjernlager
|
|
3598 |
msgid "Rescanning remote and local storage for backup sets..."
|
3599 |
msgstr "Scanner igen både fjern- og lokal-lager for backup-sæt..."
|
3600 |
|
3601 |
-
#: src/addons/googlecloud.php:
|
3602 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3603 |
msgid "(Read more)"
|
3604 |
msgstr "(Læs mere)"
|
@@ -3616,7 +3622,7 @@ msgstr "Ingen backup af lokation: Der blev ikke fundet noget at tage backup af"
|
|
3616 |
msgid "Remove"
|
3617 |
msgstr "Fjern"
|
3618 |
|
3619 |
-
#: src/methods/s3.php:
|
3620 |
msgid "Other %s FAQs."
|
3621 |
msgstr "Andre %s FAQ's."
|
3622 |
|
@@ -3628,12 +3634,12 @@ msgstr "Se her for mere information og e-mails om backup-processen - Nyttigt, hv
|
|
3628 |
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."
|
3629 |
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. "
|
3630 |
|
3631 |
-
#: src/class-updraftplus.php:
|
3632 |
-
#: src/restorer.php:
|
3633 |
msgid "Your hosting company must enable these functions before %s can work."
|
3634 |
msgstr "Din hosting udbyder skal slå disse funktioner til inden %s kan virke."
|
3635 |
|
3636 |
-
#: src/class-updraftplus.php:
|
3637 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3638 |
msgstr "Din webservers PHP installation har slået disse funktioner fra: %s."
|
3639 |
|
@@ -3649,7 +3655,7 @@ msgstr "krypteret FTP (implicit kryptering)"
|
|
3649 |
msgid "regular non-encrypted FTP"
|
3650 |
msgstr "almindelig ikke-krypteret FTP"
|
3651 |
|
3652 |
-
#: src/restorer.php:
|
3653 |
msgid "Backup created by:"
|
3654 |
msgstr "Backup udført af:"
|
3655 |
|
@@ -3703,19 +3709,19 @@ msgstr "Din betalte adgang til UpdraftPlus opdateringer til denne side er udløb
|
|
3703 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3704 |
msgstr "Afvis fra hovedoversigten (i %s uger)"
|
3705 |
|
3706 |
-
#: src/class-updraftplus.php:
|
3707 |
msgid "The attempt to undo the double-compression succeeded."
|
3708 |
msgstr "Forsøg på at rette dobbelt-kompresionen lykkedes."
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression failed."
|
3712 |
msgstr "Forsøg på at rette dobbelt-kompresionen mislykkedes."
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3716 |
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."
|
3717 |
|
3718 |
-
#: src/includes/class-wpadmin-commands.php:
|
3719 |
msgid "Constants"
|
3720 |
msgstr "Kontinuerlige"
|
3721 |
|
@@ -3764,7 +3770,7 @@ msgstr "Henter (hvis nødvendigt) og forbereder backup-filer..."
|
|
3764 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3765 |
msgstr "Opsætningen af PHP på denne web-server tillader kun at PHP kører i %s sekunder, og dette tidsinterval kan ikke øges. Hvis du har en stor mængde data, og hvis tiden for genskabelsen udløber, bør du bede din web-udbyder om mulighed for at hæve tidsgrænsen (eller forsøge at genskabe i mindre dele ad gangen)."
|
3766 |
|
3767 |
-
#: src/restorer.php:
|
3768 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3769 |
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"
|
3770 |
|
@@ -3785,11 +3791,11 @@ msgstr "%s forbindelsen udløb. Hvis du angav serveren korrekt, skyldes dette no
|
|
3785 |
msgid "Messages:"
|
3786 |
msgstr "Beskeder:"
|
3787 |
|
3788 |
-
#: src/restorer.php:
|
3789 |
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"
|
3790 |
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"
|
3791 |
|
3792 |
-
#: src/restorer.php:
|
3793 |
msgid "The directory does not exist"
|
3794 |
msgstr "Arkivet eksisterer ikke"
|
3795 |
|
@@ -3958,7 +3964,7 @@ msgstr "Forsøger..."
|
|
3958 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3959 |
msgstr "Den nye brugers RackSpace konsol password er (dette vil ikke blive vist igen):"
|
3960 |
|
3961 |
-
#: src/admin.php:679, src/admin.php:
|
3962 |
msgid "Error data:"
|
3963 |
msgstr "Fejldata:"
|
3964 |
|
@@ -3970,11 +3976,11 @@ msgstr "Backup eksisterer ikke i backup-historie"
|
|
3970 |
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."
|
3971 |
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."
|
3972 |
|
3973 |
-
#: src/restorer.php:
|
3974 |
msgid "Split line to avoid exceeding maximum packet size"
|
3975 |
msgstr "Delt linje for at ungå overskridelse af maksimal pakkestørrelse"
|
3976 |
|
3977 |
-
#: src/restorer.php:
|
3978 |
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)"
|
3979 |
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)"
|
3980 |
|
@@ -4006,11 +4012,11 @@ msgstr "Indtast de ønskede adresser her, som skal modtage en rapport når backu
|
|
4006 |
msgid "Email reports"
|
4007 |
msgstr "E-mail rapporter"
|
4008 |
|
4009 |
-
#: src/class-updraftplus.php:
|
4010 |
msgid "%s checksum: %s"
|
4011 |
msgstr "%s checksum: %s"
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "files: %s"
|
4015 |
msgstr "filer: %s"
|
4016 |
|
@@ -4063,19 +4069,19 @@ msgstr "%d timer, %d minutter, %d sekunder"
|
|
4063 |
msgid "%d errors, %d warnings"
|
4064 |
msgstr "%d fejl, %d advarsler"
|
4065 |
|
4066 |
-
#: src/addons/onedrive.php:
|
4067 |
-
#: src/methods/dropbox.php:
|
4068 |
msgid "%s authentication"
|
4069 |
msgstr "%s godkendelse"
|
4070 |
|
4071 |
-
#: src/addons/onedrive.php:
|
4072 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4073 |
-
#: src/methods/dropbox.php:
|
4074 |
-
#: src/methods/dropbox.php:
|
4075 |
msgid "%s error: %s"
|
4076 |
msgstr "%s fejl: %s"
|
4077 |
|
4078 |
-
#: src/addons/googlecloud.php:
|
4079 |
msgid "%s logo"
|
4080 |
msgstr "%s logo"
|
4081 |
|
@@ -4083,7 +4089,7 @@ msgstr "%s logo"
|
|
4083 |
msgid "%s did not return the expected response - check your log file for more details"
|
4084 |
msgstr "%s returnerede ikke det forventede svar - tjek din logfil for flere detaljer"
|
4085 |
|
4086 |
-
#: src/methods/s3.php:
|
4087 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4088 |
msgstr "Det nødvendige %s PHP modul er ikke installeret - ret henvendelse til dit hostingfirma for at få dette aktiveret"
|
4089 |
|
@@ -4104,7 +4110,7 @@ msgstr "Tilslut"
|
|
4104 |
msgid "For more reporting features, use the Reporting add-on."
|
4105 |
msgstr "For udvidede muligheder for fejlrapportering, brug da Reporting add-on, "
|
4106 |
|
4107 |
-
#: src/class-updraftplus.php:
|
4108 |
msgid "(version: %s)"
|
4109 |
msgstr "(version: %s)"
|
4110 |
|
@@ -4245,7 +4251,7 @@ msgstr "Det lykkedes ikke at skabe forbindelse til UpdraftPlus.Com"
|
|
4245 |
msgid "Reporting"
|
4246 |
msgstr "Rapportering"
|
4247 |
|
4248 |
-
#: src/admin.php:
|
4249 |
msgid "Options (raw)"
|
4250 |
msgstr "Muligheder (raw)"
|
4251 |
|
@@ -4253,7 +4259,7 @@ msgstr "Muligheder (raw)"
|
|
4253 |
msgid "Send a report only when there are warnings/errors"
|
4254 |
msgstr "Send kun en rapport når der er advarsler/fejl"
|
4255 |
|
4256 |
-
#: src/restorer.php:
|
4257 |
msgid "Content URL:"
|
4258 |
msgstr "Indholds-URL:"
|
4259 |
|
@@ -4397,7 +4403,7 @@ msgstr "Uden denne vil kryptering foregå langsommere."
|
|
4397 |
msgid "Your web-server does not have the %s module installed."
|
4398 |
msgstr "Din web-server har ikke %s modulet installeret."
|
4399 |
|
4400 |
-
#: src/addons/googlecloud.php:
|
4401 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4402 |
msgstr "<strong>(Det ser ud til, at du allerede er godkendt,</strong>, men du kan gennemgå godkendelse igen for at genskabe forbindelse, hvis du har oplevet et problem)."
|
4403 |
|
@@ -4417,7 +4423,7 @@ msgstr "Genskabelsen er startet. Tryk ikke på stop, og luk ikke browseren før
|
|
4417 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4418 |
msgstr "Hvis du fravælger både databasen og filerne, har du fravalgt alt!"
|
4419 |
|
4420 |
-
#: src/restorer.php:
|
4421 |
msgid "Site home:"
|
4422 |
msgstr "Sidens forside:"
|
4423 |
|
@@ -4433,7 +4439,7 @@ msgstr "(logs kan findes i UpdraftPlus indstillinger som normalt)..."
|
|
4433 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4434 |
msgstr "Husk dette valg til næste gang (du vil stadig have mulighed for at ændre det)"
|
4435 |
|
4436 |
-
#: src/addons/azure.php:
|
4437 |
#: src/methods/stream-base.php:149
|
4438 |
msgid "Upload failed"
|
4439 |
msgstr "Upload mislykkedes"
|
@@ -4577,27 +4583,27 @@ msgstr "Igangværende backups:"
|
|
4577 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4578 |
msgstr "Planlæggeren er disabled i dine WordPress indstillinger via DISABLE_WP_CRON. Ingen backup's kan køre (selv "Backup Now"), medmindre du manuelt har indstillet muligheden for at kontakte planlæggeren, eller indtil det er slået fra."
|
4579 |
|
4580 |
-
#: src/restorer.php:
|
4581 |
msgid "file"
|
4582 |
msgstr "fil"
|
4583 |
|
4584 |
-
#: src/restorer.php:
|
4585 |
msgid "folder"
|
4586 |
msgstr "mappe"
|
4587 |
|
4588 |
-
#: src/restorer.php:
|
4589 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4590 |
msgstr "UpdraftPlus havde behov for at oprette en %s i dit indholdsarkiv, men mislykkedes - Venligst tjek dine rettigheder og giv adgang (%s)"
|
4591 |
|
4592 |
-
#: src/class-updraftplus.php:
|
4593 |
msgid "The backup has not finished; a resumption is scheduled"
|
4594 |
msgstr "Backup'en er ikke færdig; en genoptagelse er planlagt"
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4598 |
msgstr "Dit website besøges kun sjældent og UpdraftPlus modtager ikke de forventede ressourcer. Læs venligst denne side:"
|
4599 |
|
4600 |
-
#: src/addons/onedrive.php:
|
4601 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4602 |
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)."
|
4603 |
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)."
|
@@ -4682,23 +4688,23 @@ msgstr "Flere plugins"
|
|
4682 |
msgid "Support"
|
4683 |
msgstr "Support"
|
4684 |
|
4685 |
-
#: src/class-updraftplus.php:
|
4686 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4687 |
msgstr "UpdraftPlus kunne ikke finde indstillinger for tabeller ved scanning af database backup'en."
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "This database backup is missing core WordPress tables: %s"
|
4691 |
msgstr "Denne database backup mangler WordPress tabeller: %s"
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
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."
|
4695 |
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."
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
msgid "%s version: %s"
|
4699 |
msgstr "%s version: %s"
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4703 |
msgstr "Databasen er for lille til at være en godkendt WordPress database (størrelse: %s Kb)."
|
4704 |
|
@@ -4783,15 +4789,15 @@ msgstr "Fejl: Serveren sendte et tomt svar. "
|
|
4783 |
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?"
|
4784 |
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?"
|
4785 |
|
4786 |
-
#: src/includes/class-wpadmin-commands.php:
|
4787 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4788 |
msgstr "Backup-arkivfilerne er oprettet, men med nogle fejl. Du må afbryde og rette problemerne, inden du prøver igen."
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4792 |
msgstr "Backup-arkivfilerne er oprettede, men med nogle advarsler. Hvis alt er i orden, så klik igen på Genskab for at fortsætte. Ellers afbryd og ret problemerne først."
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4796 |
msgstr "Backup-filerne er korrekt oprettet. Klik nu på Genskab igen for at fortsætte."
|
4797 |
|
@@ -4831,16 +4837,16 @@ msgstr "Kunne ikke åbne zip-filen (%s) - %s"
|
|
4831 |
msgid "WordPress root directory server path: %s"
|
4832 |
msgstr "Server-sti til WordPress rodmappen: %s"
|
4833 |
|
4834 |
-
#: src/methods/dreamobjects.php:
|
4835 |
msgid "%s end-point"
|
4836 |
msgstr "%s end-point"
|
4837 |
|
4838 |
-
#: src/methods/s3.php:
|
4839 |
msgid "... and many more!"
|
4840 |
msgstr "... og mange flere!"
|
4841 |
|
4842 |
-
#: src/methods/s3generic.php:
|
4843 |
-
#: src/methods/s3generic.php:
|
4844 |
msgid "S3 (Compatible)"
|
4845 |
msgstr "S3 (Kompatibel)"
|
4846 |
|
@@ -4848,11 +4854,11 @@ msgstr "S3 (Kompatibel)"
|
|
4848 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4849 |
msgstr "Filen findes i øjeblikket ikke lokalt - Den skal hentes fra fjernlageret"
|
4850 |
|
4851 |
-
#: src/admin.php:
|
4852 |
msgid "Looking for %s archive: file name: %s"
|
4853 |
msgstr "Leder efter %s arkiv: filnavn: %s"
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Final checks"
|
4857 |
msgstr "Afsluttende kontrol"
|
4858 |
|
@@ -4880,7 +4886,7 @@ msgstr "Vis komplet backup og fil-liste"
|
|
4880 |
msgid "Processing files - please wait..."
|
4881 |
msgstr "Behandler filer - vent venligst..."
|
4882 |
|
4883 |
-
#: src/admin.php:
|
4884 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4885 |
msgid "Please consult this FAQ for help on what to do about it."
|
4886 |
msgstr "Venligst se denne FAQ for hjælp til en løsning."
|
@@ -4889,30 +4895,30 @@ msgstr "Venligst se denne FAQ for hjælp til en løsning."
|
|
4889 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4890 |
msgstr "Din WordPress installation har et problem med at udlæse ekstra whitespace. Dette kan ødelægge backup's, som downloades herfra."
|
4891 |
|
4892 |
-
#: src/class-updraftplus.php:
|
4893 |
msgid "Failed to open database file."
|
4894 |
msgstr "Kunne ikke åbne database filen."
|
4895 |
|
4896 |
-
#: src/admin.php:
|
4897 |
msgid "Known backups (raw)"
|
4898 |
msgstr "Kendte backups (komplette)"
|
4899 |
|
4900 |
-
#: src/restorer.php:
|
4901 |
msgid "Files found:"
|
4902 |
msgstr "Fundne filer:"
|
4903 |
|
4904 |
-
#: src/restorer.php:
|
4905 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4906 |
msgstr "Den ønskede table engine (%s) er ikke tilgængelig - Skifter til MylSAM."
|
4907 |
|
4908 |
-
#: src/admin.php:
|
4909 |
msgid "file is size:"
|
4910 |
msgstr "Filstørrelse:"
|
4911 |
|
4912 |
-
#: src/addons/googlecloud.php:
|
4913 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4914 |
-
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:
|
4915 |
-
#: src/class-updraftplus.php:
|
4916 |
msgid "Go here for more information."
|
4917 |
msgstr "Find mere information her."
|
4918 |
|
@@ -4920,7 +4926,7 @@ msgstr "Find mere information her."
|
|
4920 |
msgid "Some files are still downloading or being processed - please wait."
|
4921 |
msgstr "Nogle filer er stadig ved at downloade eller blive bearbejdet - Vent venligst."
|
4922 |
|
4923 |
-
#: src/class-updraftplus.php:
|
4924 |
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."
|
4925 |
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."
|
4926 |
|
@@ -4964,7 +4970,7 @@ msgstr "Fejl - Kunne ikke downloade filen fra %s"
|
|
4964 |
msgid "Error - no such file exists at %s"
|
4965 |
msgstr "Fejl - Denne fil eksisterer ikke på %s"
|
4966 |
|
4967 |
-
#: src/addons/azure.php:
|
4968 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4969 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4970 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
@@ -4993,10 +4999,10 @@ msgstr "%s tilladelse fejlede"
|
|
4993 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4994 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4995 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
4996 |
-
#: src/class-updraftplus.php:
|
4997 |
-
#: src/class-updraftplus.php:
|
4998 |
-
#: src/class-updraftplus.php:
|
4999 |
-
#: src/methods/s3.php:
|
5000 |
msgid "Error: %s"
|
5001 |
msgstr "Fejl: %s"
|
5002 |
|
@@ -5036,7 +5042,7 @@ msgstr "En fejl opstod ved lukning af den sidste database-fil"
|
|
5036 |
msgid "Warnings encountered:"
|
5037 |
msgstr "Fundne advarsler:"
|
5038 |
|
5039 |
-
#: src/class-updraftplus.php:
|
5040 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5041 |
msgstr "Backup'en ser ud til at være succesfuld (med advarsler) og er nu færdig"
|
5042 |
|
@@ -5076,40 +5082,40 @@ msgstr "Undersøg dine fil-tilladelser: Kunne ikke skabe og tilføje arkivet:"
|
|
5076 |
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."
|
5077 |
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."
|
5078 |
|
5079 |
-
#: src/methods/s3.php:
|
5080 |
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."
|
5081 |
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."
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
msgid "Please check your access credentials."
|
5085 |
msgstr "Venligst tjek dine adgangsindstillinger."
|
5086 |
|
5087 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5088 |
msgid "The error reported by %s was:"
|
5089 |
msgstr "Fejlen meddelt af %s var:"
|
5090 |
|
5091 |
-
#: src/restorer.php:
|
5092 |
msgid "Please supply the requested information, and then continue."
|
5093 |
msgstr "Venligst angiv den anmodede information og fortsæt derefter."
|
5094 |
|
5095 |
-
#: src/class-updraftplus.php:
|
5096 |
msgid "Site information:"
|
5097 |
msgstr "Site information:"
|
5098 |
|
5099 |
-
#: src/restorer.php:
|
5100 |
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."
|
5101 |
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."
|
5102 |
|
5103 |
-
#: src/admin.php:2445, src/class-updraftplus.php:
|
5104 |
msgid "Warning:"
|
5105 |
msgstr "Advarsel:"
|
5106 |
|
5107 |
-
#: src/class-updraftplus.php:
|
5108 |
#: src/restorer.php:184
|
5109 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5110 |
msgstr "Du arbejder via en WordPress multisite - men din backup er ikke af et multisite site."
|
5111 |
|
5112 |
-
#: src/admin.php:
|
5113 |
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."
|
5114 |
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."
|
5115 |
|
@@ -5185,7 +5191,7 @@ msgstr "Premium"
|
|
5185 |
msgid "News"
|
5186 |
msgstr "Nyheder"
|
5187 |
|
5188 |
-
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:
|
5189 |
msgid "Backup set not found"
|
5190 |
msgstr "Bakup sæt ikke fundet"
|
5191 |
|
@@ -5350,18 +5356,18 @@ msgid "Directory path"
|
|
5350 |
msgstr "Sti til arkiv"
|
5351 |
|
5352 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5353 |
-
#: src/addons/sftp.php:443, src/addons/webdav.php:
|
5354 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5355 |
#: src/udaddons/options.php:135
|
5356 |
msgid "Password"
|
5357 |
msgstr "Password"
|
5358 |
|
5359 |
-
#: src/addons/sftp.php:429, src/addons/webdav.php:
|
5360 |
msgid "Port"
|
5361 |
msgstr "Port"
|
5362 |
|
5363 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5364 |
-
#: src/addons/webdav.php:
|
5365 |
msgid "Host"
|
5366 |
msgstr "Vært"
|
5367 |
|
@@ -5409,7 +5415,7 @@ msgstr "Ovenstående filer omfatter alt i en WordPress installation."
|
|
5409 |
msgid "Over-write wp-config.php"
|
5410 |
msgstr "Overskriv wp-config.php"
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:
|
5413 |
msgid "WordPress Core"
|
5414 |
msgstr "WordPress Core"
|
5415 |
|
@@ -5417,14 +5423,14 @@ msgstr "WordPress Core"
|
|
5417 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5418 |
msgstr "Fejl: Vi kunne ikke indsætte en fil i denne mappe - Venligst tjek dine tilladelser."
|
5419 |
|
5420 |
-
#: src/addons/googlecloud.php:
|
5421 |
-
#: src/addons/googlecloud.php:
|
5422 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5423 |
#: src/methods/stream-base.php:353
|
5424 |
msgid "Failed"
|
5425 |
msgstr "Mislykket"
|
5426 |
|
5427 |
-
#: src/addons/webdav.php:
|
5428 |
msgid "WebDAV URL"
|
5429 |
msgstr "WebDAV URL"
|
5430 |
|
@@ -5475,31 +5481,31 @@ msgstr "Skal allerede eksistere"
|
|
5475 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5476 |
msgstr "Hvis du vil have kryptering (f.eks. ved lagring af følsomme data), er der en add-on er til rådighed."
|
5477 |
|
5478 |
-
#: src/addons/onedrive.php:
|
5479 |
msgid "Your %s account name: %s"
|
5480 |
msgstr "Dit %s konto navn: %s"
|
5481 |
|
5482 |
-
#: src/methods/dropbox.php:
|
5483 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5484 |
msgstr "da en del af de returnerede oplysninger ikke var som forventet - kan dit resultat variere"
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "you have authenticated your %s account"
|
5488 |
msgstr "du har autentificeret din %s konto"
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "there's an add-on for that."
|
5492 |
msgstr "der findes en add-on for dette."
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5496 |
msgstr "Hvis du laver backup af adskillige sites i den samme Dropbox og vil organisere den i sub-foldere, så"
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "Backups are saved in"
|
5500 |
msgstr "Backup bliver gemt i"
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Need to use sub-folders?"
|
5504 |
msgstr "Behov for sub-foldere?"
|
5505 |
|
@@ -5512,96 +5518,96 @@ msgstr "fejl: Kunne ikke oploade filer i %s (se log file for yderligere informat
|
|
5512 |
msgid "You do not appear to be authenticated with Dropbox"
|
5513 |
msgstr "Det lader ikke til, at du har adgang til Dropbox"
|
5514 |
|
5515 |
-
#: src/methods/s3.php:
|
5516 |
msgid "The communication with %s was not encrypted."
|
5517 |
msgstr "Kommunikationen med %s var ikke krypteret."
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was encrypted."
|
5521 |
msgstr "Kommunikationen med %s var krypteret."
|
5522 |
|
5523 |
-
#: src/addons/googlecloud.php:
|
5524 |
msgid "We accessed the bucket, and were able to create files within it."
|
5525 |
msgstr "Vi har fået adgang til gruppen, og vi kunne oprette filer i den."
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:
|
5528 |
-
#: src/methods/s3.php:
|
5529 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5530 |
msgstr "Vi har fået adgang til gruppen, men forsøget på at oprette en fil i den mislykkedes."
|
5531 |
|
5532 |
-
#: src/addons/googlecloud.php:
|
5533 |
-
#: src/methods/s3.php:
|
5534 |
msgid "Failure"
|
5535 |
msgstr "Fejl"
|
5536 |
|
5537 |
-
#: src/addons/backblaze.php:
|
5538 |
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)."
|
5539 |
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)."
|
5540 |
|
5541 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5542 |
-
#: src/methods/s3.php:
|
5543 |
msgid "Region"
|
5544 |
msgstr "Region"
|
5545 |
|
5546 |
-
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:
|
5547 |
-
#: src/methods/s3.php:
|
5548 |
msgid "Failure: No bucket details were given."
|
5549 |
msgstr "Fejl: Ingen gruppedetaljer blev oplyst."
|
5550 |
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "API secret"
|
5553 |
msgstr "API hemmelighed"
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5557 |
msgstr "Indtast kun et gruppenavn eller en gruppe og sti. Eksempler: mingruppe, mingruppe/minsti"
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "%s location"
|
5561 |
msgstr "%s lokation"
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s secret key"
|
5565 |
msgstr "%s sikkerhedsnøgle"
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s access key"
|
5569 |
msgstr "%s adgangsnøgle"
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5573 |
msgstr "Hvis du ser fejl vedrørende SSL-certifikater, kan du få hjælp her."
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
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."
|
5577 |
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."
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
-
#: src/methods/s3.php:
|
5581 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5582 |
msgstr "%s Fejl: Kunne ikke få adgang til samling %s. Tjek dine tilladelser og legitimationsoplysninger."
|
5583 |
|
5584 |
-
#: src/methods/s3.php:
|
5585 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5586 |
msgstr "%s Fejl: Kunne ikke downloade %s. Tjek dine tilladelser og person-oplysninger."
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5590 |
msgstr "%s genskabelses-fejl (%s): (Se logfilen for mere info)"
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5594 |
msgstr "%s upload (%s): Genskabelse mislykkedes (se log for flere detaljer)."
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s chunk %s: upload failed"
|
5598 |
msgstr "%s del %s: Upload mislykkedes."
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s error: file %s was shortened unexpectedly"
|
5602 |
msgstr "%s fejl: Filen %s blev forkortet uventet."
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5606 |
msgstr "%s upload: Det mislykkedes af få upload-ID til multi upload - Se logfilen for flere detaljer."
|
5607 |
|
@@ -5626,32 +5632,32 @@ msgid "Failure: No container details were given."
|
|
5626 |
msgstr "Fejl: Der blev ikke oplyst detaljer om mappe."
|
5627 |
|
5628 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5629 |
-
#: src/addons/webdav.php:
|
5630 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5631 |
msgid "Username"
|
5632 |
msgstr "Brugernavn"
|
5633 |
|
5634 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5635 |
-
#: src/methods/s3.php:
|
5636 |
msgid "API key"
|
5637 |
msgstr "API-nøgle"
|
5638 |
|
5639 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5640 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5641 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5642 |
-
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:
|
5643 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5644 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5645 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5646 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5647 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5648 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5649 |
-
#: src/methods/s3.php:
|
5650 |
msgid "Failure: No %s was given."
|
5651 |
msgstr "Fejl: Der blev ikke angivet et %s"
|
5652 |
|
5653 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5654 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5655 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5656 |
msgstr "UpdraftPlus's %s modul <strong>kræver</strong> %s. Vær venlig ikke at kontakte support; der er intet alternativ."
|
5657 |
|
@@ -5686,7 +5692,7 @@ msgstr "Få din API nøgle <a href=\"https://mycloud.rackspace.com/\"> fra din R
|
|
5686 |
msgid "Test %s Settings"
|
5687 |
msgstr "Test %s indstillinger"
|
5688 |
|
5689 |
-
#: src/class-updraftplus.php:
|
5690 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5691 |
msgid "Error opening local file: Failed to download"
|
5692 |
msgstr "Fejl ved åbning af lokal fil: Kunne ikke downloade."
|
@@ -5698,7 +5704,7 @@ msgstr "Cloud Files fejl - Upload af fil mislykkedes."
|
|
5698 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5699 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5700 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5701 |
-
#: src/methods/s3.php:
|
5702 |
msgid "%s Error: Failed to upload"
|
5703 |
msgstr "%s Fejl: Upload mislykkedes."
|
5704 |
|
@@ -5724,34 +5730,34 @@ msgstr "Cloud filer godkendelse mislykkedes"
|
|
5724 |
msgid "Authenticate with Google"
|
5725 |
msgstr "Godkend med Google."
|
5726 |
|
5727 |
-
#: src/addons/googlecloud.php:
|
5728 |
#: src/methods/googledrive.php:1196
|
5729 |
msgid "Client Secret"
|
5730 |
msgstr "Klient hemmelighed"
|
5731 |
|
5732 |
-
#: src/addons/googlecloud.php:
|
5733 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5734 |
msgstr "Hvis Google senere viser dig beskeden \"Invalid_klient\", har du ikke angivet en gældende klient ID her."
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:
|
5737 |
#: src/methods/googledrive.php:1192
|
5738 |
msgid "Client ID"
|
5739 |
msgstr "Klient ID"
|
5740 |
|
5741 |
-
#: src/addons/googlecloud.php:
|
5742 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5743 |
msgstr "Du skal tilføje følgende som gældende URI (under \"Flere indstillinger\") når du bliver spurgt."
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:
|
5746 |
msgid "Select 'Web Application' as the application type."
|
5747 |
msgstr "Vælg 'Web Application\" som program-type."
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:
|
5750 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5751 |
msgstr "Ved yderligere hjælp, inklusiv skærmbilleder, kan du følge dette link. Nedenstående beskrivelse er tilstrækkelig til mere erfarne brugere."
|
5752 |
|
5753 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5754 |
-
#: src/addons/googlecloud.php:
|
5755 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5756 |
#: src/methods/googledrive.php:558
|
5757 |
msgid "Account is not authorized."
|
@@ -5771,21 +5777,21 @@ msgstr "Konto fuld: Din %s konto har kun %d bytes tilbage, men filen, der skal u
|
|
5771 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5772 |
msgstr "Har endnu ikke har modtaget en adgangs-token fra Google - Du skal godkende din forbindelse til Google Drev."
|
5773 |
|
5774 |
-
#: src/addons/googlecloud.php:
|
5775 |
#: src/methods/googledrive.php:441
|
5776 |
msgid "you have authenticated your %s account."
|
5777 |
msgstr "du har autentificeret din %s konto."
|
5778 |
|
5779 |
-
#: src/addons/googlecloud.php:
|
5780 |
-
#: src/addons/onedrive.php:
|
5781 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5782 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5783 |
-
#: src/methods/s3.php:
|
5784 |
msgid "Success"
|
5785 |
msgstr "Succes"
|
5786 |
|
5787 |
-
#: src/addons/onedrive.php:
|
5788 |
-
#: src/methods/dropbox.php:
|
5789 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5790 |
msgstr "Din %s forbrugskvote: %s %% brugt, %s tilgængelig"
|
5791 |
|
@@ -5817,58 +5823,58 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
|
|
5817 |
msgstr "Det er nødvendigt at re-autentificere med %s, da dine eksisterende legitimationsoplysninger ikke fungerer."
|
5818 |
|
5819 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5820 |
-
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:
|
5821 |
-
#: src/restorer.php:
|
5822 |
msgid "OK"
|
5823 |
msgstr "OK"
|
5824 |
|
5825 |
-
#: src/restorer.php:
|
5826 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5827 |
msgstr "Tabel præfiks har ændret sig: Skiftende %s tabel-felt(er) i overensstemmelse hermed:"
|
5828 |
|
5829 |
-
#: src/addons/migrator.php:1285, src/restorer.php:
|
5830 |
msgid "the database query being run was:"
|
5831 |
msgstr "databaseforespørgslen der blev kørt var:"
|
5832 |
|
5833 |
-
#: src/restorer.php:
|
5834 |
msgid "will restore as:"
|
5835 |
msgstr "vil genskabes som:"
|
5836 |
|
5837 |
-
#: src/class-updraftplus.php:
|
5838 |
-
#: src/restorer.php:
|
5839 |
msgid "Old table prefix:"
|
5840 |
msgstr "Gammel tabel præfiks:"
|
5841 |
|
5842 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5843 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5844 |
msgid "Backup of:"
|
5845 |
msgstr "Backup af:"
|
5846 |
|
5847 |
-
#: src/restorer.php:
|
5848 |
msgid "Failed to open database file"
|
5849 |
msgstr "Kunne ikke åbne database-filen"
|
5850 |
|
5851 |
-
#: src/restorer.php:
|
5852 |
msgid "Failed to find database file"
|
5853 |
msgstr "Kunne ikke finde database-filen"
|
5854 |
|
5855 |
-
#: src/restorer.php:
|
5856 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5857 |
msgstr "Advarsel: PHP safe_mode er aktiv på din server. Timeout's er langt mere sandsynlige. Hvis dette sker, bliver du nødt til manuelt at gendanne filen via phpMyAdmin eller en anden metode."
|
5858 |
|
5859 |
-
#: src/restorer.php:
|
5860 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5861 |
msgstr "wp-config.php fra sikkerhedskopi: Genopretter (efter brugers anmodning)"
|
5862 |
|
5863 |
-
#: src/restorer.php:
|
5864 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5865 |
msgstr "wp-config.php fra backuppen: vil blive genskabt som wp-config-backup.php"
|
5866 |
|
5867 |
-
#: src/restorer.php:
|
5868 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5869 |
msgstr "Kunne ikke skrive det dekrypterede database til filsystemet"
|
5870 |
|
5871 |
-
#: src/restorer.php:
|
5872 |
msgid "Failed to create a temporary directory"
|
5873 |
msgstr "Kunne ikke oprette en midlertidig mappe"
|
5874 |
|
@@ -5912,19 +5918,19 @@ msgstr "Backup-fil er ikke tilgængelig."
|
|
5912 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5913 |
msgstr "UpdraftPlus er ikke i stand til direkte at genskabe denne type. Den skal genoprettes manuelt."
|
5914 |
|
5915 |
-
#: src/admin.php:
|
5916 |
msgid "Could not find one of the files for restoration"
|
5917 |
msgstr "Kunne ikke finde en af filerne til genoprettelse"
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Error message"
|
5921 |
msgstr "Fejlmeddelelse"
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "The backup records do not contain information about the proper size of this file."
|
5925 |
msgstr "Backup optegnelser indeholder ikke information om den korrekte størrelse af denne fil."
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "Archive is expected to be size:"
|
5929 |
msgstr "Arkivets forventede størrelse:"
|
5930 |
|
@@ -5965,7 +5971,7 @@ msgid "Your web server's PHP/Curl installation does not support https access. Co
|
|
5965 |
msgstr "Din webservers PHP/Curl-installation understøtter ikke HTTPS-adgang. Kommunikation med %s vil være ukrypteret. Bed din webudbyder installere Curl/SSL for at få mulighed for kryptering (via en add-on)."
|
5966 |
|
5967 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5968 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5969 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5970 |
msgstr "Dit websteds PHP-installation bruger ikke et nødvendigt modul (%s). Kontakt venligst din hostingudbyder's support."
|
5971 |
|
@@ -6253,7 +6259,7 @@ msgstr "Udfør en engangsbackup"
|
|
6253 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6254 |
msgstr "Læs denne artikel af nyttige viden inden du gendanner."
|
6255 |
|
6256 |
-
#: src/class-updraftplus.php:
|
6257 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6258 |
msgstr "Du kan søge og erstatte din database (for at migrere en hjemmeside til en ny placering / URL) med Migrator add-on - følg dette link for mere information"
|
6259 |
|
@@ -6306,10 +6312,10 @@ msgstr "Download fejl: serveren sendte os et svar, som vi ikke forstod."
|
|
6306 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6307 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6308 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6309 |
-
#: src/addons/sftp.php:837, src/addons/webdav.php:
|
6310 |
-
#: src/admin.php:680, src/admin.php:
|
6311 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6312 |
-
#: src/methods/updraftvault.php:522, src/restorer.php:
|
6313 |
msgid "Error:"
|
6314 |
msgstr "Fejl:"
|
6315 |
|
@@ -6383,14 +6389,14 @@ msgstr "Backup Nu"
|
|
6383 |
|
6384 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6385 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6386 |
-
#: src/admin.php:3682, src/admin.php:
|
6387 |
#: src/includes/class-wpadmin-commands.php:147,
|
6388 |
-
#: src/includes/class-wpadmin-commands.php:
|
6389 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6390 |
msgid "Database"
|
6391 |
msgstr "Database"
|
6392 |
|
6393 |
-
#: src/admin.php:311, src/admin.php:
|
6394 |
msgid "Files"
|
6395 |
msgstr "Filer"
|
6396 |
|
@@ -6442,7 +6448,7 @@ msgstr "Udviklerens egen hjemmeside"
|
|
6442 |
msgid "UpdraftPlus.Com"
|
6443 |
msgstr "UpdraftPlus.Com"
|
6444 |
|
6445 |
-
#: src/admin.php:
|
6446 |
msgid "Your settings have been wiped."
|
6447 |
msgstr "Dine indstillinger er blevet slettet."
|
6448 |
|
@@ -6503,11 +6509,11 @@ msgid "Download failed"
|
|
6503 |
msgstr "Download mislykkede"
|
6504 |
|
6505 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6506 |
-
#: src/class-updraftplus.php:
|
6507 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6508 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6509 |
-
#: src/methods/stream-base.php:220, src/restorer.php:
|
6510 |
-
#: src/restorer.php:
|
6511 |
msgid "Error"
|
6512 |
msgstr "Fejl"
|
6513 |
|
@@ -6548,7 +6554,7 @@ msgstr "Du har mindre end %s ledig plads på disken, som UpdraftPlus er konfigur
|
|
6548 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6549 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6550 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6551 |
-
#: src/methods/s3.php:
|
6552 |
#: src/methods/updraftvault.php:301,
|
6553 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6554 |
#: src/udaddons/updraftplus-addons.php:253
|
@@ -6580,22 +6586,22 @@ msgstr "Hjælp UpdraftPlus ved at give en positiv anmeldelse på wordpress.org"
|
|
6580 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6581 |
msgstr "Kan du lide UpdraftPlus og kan undvære et minut?"
|
6582 |
|
6583 |
-
#: src/addons/azure.php:
|
6584 |
-
#: src/methods/googledrive.php:1082, src/methods/s3.php:
|
6585 |
msgid "File not found"
|
6586 |
msgstr "Fil ikke fundet"
|
6587 |
|
6588 |
-
#: src/class-updraftplus.php:
|
6589 |
msgid "The decryption key used:"
|
6590 |
msgstr "Dekrypteringsnøglen som blev anvendt:"
|
6591 |
|
6592 |
-
#: src/class-updraftplus.php:
|
6593 |
-
#: src/restorer.php:
|
6594 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6595 |
msgstr "Dekryptering mislykkedes. Den mest sandsynlige årsag er, at du har brugt den forkerte nøgle."
|
6596 |
|
6597 |
-
#: src/class-updraftplus.php:
|
6598 |
-
#: src/restorer.php:
|
6599 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6600 |
msgstr "Dekryptering mislykkedes. Database-filen er krypteret, men du har ingen krypteringsnøgle indtastet."
|
6601 |
|
@@ -6603,11 +6609,11 @@ msgstr "Dekryptering mislykkedes. Database-filen er krypteret, men du har ingen
|
|
6603 |
msgid "Could not open the backup file for writing"
|
6604 |
msgstr "Kunne ikke åbne backup filen for skrivning"
|
6605 |
|
6606 |
-
#: src/class-updraftplus.php:
|
6607 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6608 |
msgstr "Kunne ikke gemme backup historikken, fordi vi ikke har nogen backup array. Sikkerhedskopiering mislykkedes sandsynligvis."
|
6609 |
|
6610 |
-
#: src/class-updraftplus.php:
|
6611 |
msgid "Could not read the directory"
|
6612 |
msgstr "Kunne ikke læse mappen"
|
6613 |
|
@@ -6619,11 +6625,11 @@ msgstr "Backup mappen (%s) er ikke skrivbar, eller findes ikke."
|
|
6619 |
msgid "WordPress backup is complete"
|
6620 |
msgstr "WordPress backup er fuldført"
|
6621 |
|
6622 |
-
#: src/class-updraftplus.php:
|
6623 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6624 |
msgstr "Sikkerhedskopieringen forsøgte at blive færdig, men uden held"
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "The backup apparently succeeded and is now complete"
|
6628 |
msgstr "Sikkerhedskopieringen lykkedes og er nu færdig"
|
6629 |
|
@@ -6631,23 +6637,23 @@ msgstr "Sikkerhedskopieringen lykkedes og er nu færdig"
|
|
6631 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6632 |
msgstr "Krypteringsfejl ved kryptering af databasen. Kryptering afbrudt."
|
6633 |
|
6634 |
-
#: src/class-updraftplus.php:
|
6635 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6636 |
msgstr "Kunne ikke oprette filer i backup mappen. Backup afbrudt - kontroller dine UpdraftPlus indstillinger."
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "Others"
|
6640 |
msgstr "Andre"
|
6641 |
|
6642 |
-
#: src/addons/multisite.php:465, src/class-updraftplus.php:
|
6643 |
msgid "Uploads"
|
6644 |
msgstr "Uploads"
|
6645 |
|
6646 |
-
#: src/class-updraftplus.php:
|
6647 |
msgid "Themes"
|
6648 |
msgstr "Temaer"
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Plugins"
|
6652 |
msgstr "Plugins"
|
6653 |
|
2 |
# This file is distributed under the same license as the UpdraftPlus package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2018-02-13 22:08:49+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"Language: da_DK\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr "Enkel og sikker login med et signal fra din telefon."
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr "Automatisk oprydning af din WordPress database, så den kører med maksimal effektivitet. 800.000 brugere!"
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr "Tilføj let stil og væk opsigt med smukt designede slidere fra det førende WP slider plugin"
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr "er en yderst effektiv måde at administrere, opdatere og sikkerhedskopiere flere websteder fra ét sted."
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr "Opgradér og sikre dit WordPress-site med vores andre top plugins:"
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr "Tak for, at du installerede UpdraftPlus!"
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
"Ingen nøgler til at tillade fjernwebsites at sende backup data her er endnu blevet oprettet.\n"
|
42 |
+
"Der er endnu ikke oprettet nøgler til at sende backup data hertil fra fjern-websites."
|
43 |
+
|
44 |
+
#: src/restorer.php:188
|
45 |
+
msgid "Failed to read from the working directory."
|
46 |
+
msgstr "Kunne ikke læse fra arbejdsmappen."
|
47 |
+
|
48 |
+
#: src/restorer.php:187
|
49 |
+
msgid "Failed to find a manifest file in the backup."
|
50 |
+
msgstr "Kunne ikke finde en manifest-fil i backup'en."
|
51 |
+
|
52 |
+
#: src/restorer.php:186
|
53 |
+
msgid "Failed to read the manifest file from backup."
|
54 |
+
msgstr "Kunne ikke læse manifest-filen fra backup."
|
55 |
+
|
56 |
+
#: src/includes/class-wpadmin-commands.php:207
|
57 |
+
msgid "Select your incremental restore point"
|
58 |
+
msgstr "Vælg dit trinvise gendannelsespunkt"
|
59 |
+
|
60 |
#: src/addons/morefiles.php:73
|
61 |
msgid "(None configured)"
|
62 |
+
msgstr "(Ingen konfigureret)"
|
63 |
|
64 |
#: src/methods/backup-module.php:541
|
65 |
msgid "Ensure you are logged into the correct account before continuing."
|
66 |
msgstr "Sørg for, at du er logget ind på den rigtige konto, inden du fortsætter."
|
67 |
|
68 |
+
#: src/admin.php:4602
|
69 |
msgid "Remote storage method and instance id are required for authentication."
|
70 |
msgstr "Fjernlager metode og angivelse af id er nødvendige for godkendelse."
|
71 |
|
72 |
+
#: src/admin.php:4598
|
73 |
msgid "authentication error"
|
74 |
msgstr "godkendelsesfejl"
|
75 |
|
137 |
msgid "remote site"
|
138 |
msgstr "ekstern side"
|
139 |
|
140 |
+
#: src/addons/backblaze.php:475
|
141 |
msgid "Invalid bucket name"
|
142 |
msgstr "Ugyldigt emne-navn"
|
143 |
|
144 |
+
#: src/restorer.php:2028
|
145 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
146 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
147 |
msgstr[0] "Den ønskede tabel-sortering (%1$s) findes ikke - skift til %2$s."
|
148 |
msgstr[1] "De ønskede tabel-sorteringer (%1$s) findes ikke - skift til %2$s."
|
149 |
|
150 |
+
#: src/class-updraftplus.php:4411
|
151 |
msgid "Your chosen replacement collation"
|
152 |
msgstr "Din valgte alternative sortering"
|
153 |
|
154 |
+
#: src/class-updraftplus.php:4388
|
155 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
156 |
msgstr "Du kan vælge en anden passende sortering i stedet og fortsætte med genoprettelsen (på egen risiko)."
|
157 |
|
158 |
+
#: src/class-updraftplus.php:4388
|
159 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
160 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
161 |
msgstr[0] "Database-serveren, som dette WordPress-websted ligger på, understøtter ikke den sortering (%s), der bruges i databasen, som du forsøger at importere."
|
169 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
170 |
msgstr "Dette ligner en migrering (sikkerhedskopien er fra et websted med en anden adresse / URL,%s)."
|
171 |
|
172 |
+
#: src/addons/azure.php:631
|
173 |
msgid "%s Prefix"
|
174 |
msgstr "%s forudinstilling"
|
175 |
|
176 |
+
#: src/addons/azure.php:626
|
177 |
msgid "%s Container"
|
178 |
msgstr "%s beholder"
|
179 |
|
180 |
+
#: src/addons/azure.php:621
|
181 |
msgid "%s Key"
|
182 |
msgstr "%s Nøgle"
|
183 |
|
184 |
+
#: src/addons/azure.php:617
|
185 |
msgid "%s Account Name"
|
186 |
msgstr "%s Konto navm"
|
187 |
|
188 |
+
#: src/addons/googlecloud.php:692
|
189 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
190 |
msgstr "Men ingen %s indstillinger blev fundet. Udfyld alle felter i %s indstillinger og gem indstillingerne."
|
191 |
|
192 |
+
#: src/addons/googlecloud.php:690
|
193 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
194 |
msgstr "Men intet emne blev defineret, så sikkerhedskopieringen er muligvis ikke færdig. Indtast venligst et emnenavn i %s indstillinger og gem indstillinger."
|
195 |
|
219 |
msgstr[0] "Dit .htaccess har en gammel side-reference på linjenummer %s. Du skal fjerne det manuelt."
|
220 |
msgstr[1] "Dine .htaccess har gamle side-referencer på linjenumrene %s. Du skal fjerne dem manuelt."
|
221 |
|
222 |
+
#: src/restorer.php:1990
|
223 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
224 |
msgstr "Det ønskede tabel-tegnsæt (%s) findes ikke - ændres til %s."
|
225 |
|
226 |
+
#: src/class-updraftplus.php:4364
|
227 |
msgid "Your chosen character set to use instead:"
|
228 |
msgstr "Dit valgte tegnsæt, der skal bruges i stedet:"
|
229 |
|
230 |
+
#: src/class-updraftplus.php:4354
|
231 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
232 |
msgstr "Du kan vælge et andet passende tegnsæt i stedet og erstatte det på egen risiko."
|
233 |
|
234 |
+
#: src/class-updraftplus.php:4354
|
235 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
236 |
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."
|
237 |
msgstr[0] "Database-serveren, som dette WordPress-websted kører på, understøtter ikke tegnsættet (%s), som du forsøger at importere."
|
285 |
msgid "Please enter a valid URL e.g http://example.com"
|
286 |
msgstr "Indtast venligst en gyldig webadresse, fx http://eksempel.dk"
|
287 |
|
288 |
+
#: src/addons/backblaze.php:633
|
289 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
290 |
msgstr "Det er begrænset, hvilke stienavne der er gyldige. Mellemrum er ikke tilladt."
|
291 |
|
292 |
+
#: src/addons/backblaze.php:632
|
293 |
msgid "some/path"
|
294 |
msgstr "nogle/sti"
|
295 |
|
296 |
+
#: src/addons/backblaze.php:632
|
297 |
msgid "Bucket name"
|
298 |
msgstr "Beholder-navn"
|
299 |
|
300 |
+
#: src/addons/backblaze.php:631
|
301 |
msgid "Backup path"
|
302 |
msgstr "Backup sti"
|
303 |
|
304 |
+
#: src/addons/backblaze.php:626
|
305 |
msgid "Application key"
|
306 |
msgstr "Applikationsnøgle"
|
307 |
|
308 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
309 |
msgid "here"
|
310 |
msgstr "her"
|
311 |
|
312 |
+
#: src/addons/backblaze.php:621
|
313 |
msgid "Get these settings from %s, or sign up %s."
|
314 |
msgstr "Få disse indstillinger fra %s, eller tilmeld %s."
|
315 |
|
316 |
+
#: src/addons/backblaze.php:431
|
317 |
msgid "Account Key"
|
318 |
msgstr "Kontonøgle"
|
319 |
|
320 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
321 |
msgid "Account ID"
|
322 |
msgstr "Konto-ID"
|
323 |
|
324 |
+
#: src/class-updraftplus.php:4196
|
325 |
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."
|
326 |
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."
|
327 |
|
328 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
329 |
msgid "the migrator add-on"
|
330 |
msgstr "migrator tilføjelsen"
|
331 |
|
332 |
+
#: src/class-updraftplus.php:4194
|
333 |
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."
|
334 |
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."
|
335 |
|
336 |
+
#: src/class-updraftplus.php:4192
|
337 |
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."
|
338 |
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."
|
339 |
|
340 |
+
#: src/class-updraftplus.php:4187
|
341 |
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."
|
342 |
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."
|
343 |
|
357 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
358 |
msgstr "Fejl: Den valgte fil er beskadiget. Vælg venligst en gyldig UpdraftPlus eksportfil."
|
359 |
|
360 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
361 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
362 |
+
#: src/class-updraftplus.php:2427
|
363 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
364 |
msgstr "En alvorlig PHP fejl (%s) er opstået: %s"
|
365 |
|
366 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
367 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
368 |
+
#: src/class-updraftplus.php:2420
|
369 |
msgid "A PHP exception (%s) has occurred: %s"
|
370 |
msgstr "Der er opstået en PHP-undtagelse (%s): %s"
|
371 |
|
421 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
422 |
msgstr "Som tidligere oplyst (se:%s), er kryptering ikke længere en mulighed i den gratis udgave af UpdraftPlus"
|
423 |
|
424 |
+
#: src/admin.php:4808
|
425 |
msgid "Value"
|
426 |
msgstr "Værdi"
|
427 |
|
433 |
msgid "Encrypted login failed; trying non-encrypted"
|
434 |
msgstr "Krypteret login mislykkedes. Forsøger nu en ikke-krypteret"
|
435 |
|
436 |
+
#: src/addons/azure.php:594
|
437 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
438 |
msgstr "Du skal tilføje følgende som autoriseret omdirigerings-URI i din Azure-konsol (under \"API-indstillinger\"), når du bliver spurgt"
|
439 |
|
445 |
msgid "Cloud Files"
|
446 |
msgstr "Cloud filer"
|
447 |
|
448 |
+
#: src/admin.php:4553
|
449 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
450 |
msgstr "Dine indstillinger kunne ikke gemmes. Opdater siden for indstillingerne og prøv igen."
|
451 |
|
452 |
+
#: src/admin.php:4512
|
453 |
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."
|
454 |
msgstr "UpdraftPlus ser ud til at være blevet opdateret til version (%s), der er forskellig fra den version, der kørte, da denne indstillingsside blev indlæst. Genindlæs venligst indstillingssiden, før du forsøger at gemme indstillingerne."
|
455 |
|
458 |
msgid "UpdraftVault"
|
459 |
msgstr "UpdraftVault"
|
460 |
|
461 |
+
#: src/includes/class-wpadmin-commands.php:513
|
462 |
msgid "archive"
|
463 |
msgstr "arkiv"
|
464 |
|
465 |
+
#: src/includes/class-wpadmin-commands.php:504
|
466 |
msgid "Extra database"
|
467 |
msgstr "Ekstra database"
|
468 |
|
506 |
msgid "Browse contents"
|
507 |
msgstr "Gennemse indhold"
|
508 |
|
509 |
+
#: src/restorer.php:1811
|
510 |
msgid "Skipped tables:"
|
511 |
msgstr "Kasserede tabeller:"
|
512 |
|
513 |
+
#: src/class-updraftplus.php:4476
|
514 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
515 |
msgstr "Denne database backup har følgende WordPress udelukkede tabeller:%s"
|
516 |
|
719 |
msgid "Recommended: optimize your database with WP-Optimize."
|
720 |
msgstr "Anbefalet: Optimer din database med WP-Optimize."
|
721 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
723 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
724 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
766 |
msgid "Europe (Ireland)"
|
767 |
msgstr "Europa (Irland)"
|
768 |
|
769 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
770 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
771 |
msgid "UpdraftCentral"
|
772 |
msgstr "UpdraftCentral"
|
978 |
msgid "Export / import settings"
|
979 |
msgstr "Eksport / import indstillinger"
|
980 |
|
981 |
+
#: src/restorer.php:2030
|
982 |
msgid "Processing table (%s)"
|
983 |
msgstr "Behandler tabel (%s)"
|
984 |
|
985 |
+
#: src/restorer.php:1777
|
986 |
msgid "Backup of: %s"
|
987 |
msgstr "Backup af: %s"
|
988 |
|
990 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
991 |
msgstr "Klienten er blevet slettet fra Google Drive API-konsollen. Opret venligst et nyt Google Drive projekt og genopret forbindelsen med UpdraftPlus."
|
992 |
|
993 |
+
#: src/methods/dropbox.php:785
|
994 |
msgid "%s de-authentication"
|
995 |
msgstr "%s af-autentificering"
|
996 |
|
997 |
+
#: src/methods/dropbox.php:631
|
998 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
999 |
msgstr "Du skal, når du bliver spurgt, tilføje følgende som den autoriserede omdirigering URI i din Dropbox-konsol (under \"API Indstillinger\")."
|
1000 |
|
1062 |
msgid "US East (Ohio)"
|
1063 |
msgstr "US East (Ohio)"
|
1064 |
|
1065 |
+
#: src/addons/onedrive.php:1051
|
1066 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1067 |
msgstr "Dette websted bruger en webadresse, der enten er HTTPS eller er lokalhost eller en 127.0.0.1 URL. Som udgangspunkt skal du bruge %s %s applikationen til at godkende din konto."
|
1068 |
|
1069 |
+
#: src/addons/onedrive.php:700
|
1070 |
msgid "Account is not authorized (%s)."
|
1071 |
msgstr "Kontoen er ikke godkendt (%s)."
|
1072 |
|
1073 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1074 |
msgid "Your IP address:"
|
1075 |
msgstr "Din IP-adresse:"
|
1076 |
|
1077 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1078 |
#: src/udaddons/updraftplus-addons.php:887
|
1079 |
msgid "To remove any block, please go here."
|
1080 |
msgstr "Fjern enhver blok her."
|
1081 |
|
1082 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1083 |
msgid "An error response was received; HTTP code:"
|
1084 |
msgstr "En fejlmeddelelse blev modtaget; HTTP kode:"
|
1085 |
|
1107 |
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."
|
1108 |
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."
|
1109 |
|
1110 |
+
#: src/addons/webdav.php:216
|
1111 |
msgid "Path"
|
1112 |
msgstr "Sti"
|
1113 |
|
1114 |
+
#: src/addons/webdav.php:211
|
1115 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1116 |
msgstr "Lad dette være tomt for at bruge standard (80 for webdav, 443 for webdavs)"
|
1117 |
|
1118 |
+
#: src/addons/webdav.php:203
|
1119 |
msgid "Enter any path in the field below."
|
1120 |
msgstr "Indtast en sti i feltet nedenfor."
|
1121 |
|
1122 |
+
#: src/addons/webdav.php:203
|
1123 |
msgid "A host name cannot contain a slash."
|
1124 |
msgstr "Et værtsnavn kan ikke indeholde skråstreg."
|
1125 |
|
1126 |
+
#: src/addons/webdav.php:178
|
1127 |
msgid "Protocol (SSL or not)"
|
1128 |
msgstr "Protokol (SSL eller ikke)"
|
1129 |
|
1130 |
+
#: src/addons/webdav.php:173
|
1131 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1132 |
msgstr "Denne WebDAV URL genereres ved at udfylde nedenstående muligheder. Hvis du ikke kender detaljerne, bliver du nødt til at spørge din WebDAV udbyder."
|
1133 |
|
1135 |
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."
|
1136 |
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."
|
1137 |
|
1138 |
+
#: src/methods/s3.php:1129
|
1139 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1140 |
msgstr "AWS adgangskoden er tilsyneladende forkert (gyldige %s adgangskoder begynder med \"AK\")"
|
1141 |
|
1142 |
+
#: src/methods/s3.php:126
|
1143 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1144 |
msgstr "Indstillinger blev ikke fundet - Gå venligst til Indstillinger knappen og kontroller dine indstillinger"
|
1145 |
|
1245 |
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."
|
1246 |
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."
|
1247 |
|
1248 |
+
#: src/class-updraftplus.php:1835
|
1249 |
msgid "Size: %s MB"
|
1250 |
msgstr "Størrelse: %s MB"
|
1251 |
|
1257 |
msgid "Now"
|
1258 |
msgstr "Nu"
|
1259 |
|
1260 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1261 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1262 |
msgstr "Du bør frigøre %s for at pæne permalinks (f.eks. %s) kan virke"
|
1263 |
|
1363 |
msgid "UpdraftCentral Connection"
|
1364 |
msgstr "UpdraftCentral Connection"
|
1365 |
|
1366 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1367 |
msgid "The backup was aborted by the user"
|
1368 |
msgstr "Backup'en blev afbrudt af brugeren"
|
1369 |
|
1370 |
+
#: src/admin.php:4548
|
1371 |
msgid "Your settings have been saved."
|
1372 |
msgstr "Dine indstillinger er gemt"
|
1373 |
|
1433 |
msgid "Asia Pacific (Seoul)"
|
1434 |
msgstr "Asia Pacific (Seoul)"
|
1435 |
|
1436 |
+
#: src/restorer.php:1800
|
1437 |
msgid "Uploads URL:"
|
1438 |
msgstr "Uploads URL:"
|
1439 |
|
1441 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1442 |
msgstr "Det nødvendige %s PHP modul er ikke installeret - bed din webudbyder om at aktivere det."
|
1443 |
|
1444 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1445 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1446 |
msgstr "For at importere et almindeligt WordPress site til en multisite installation kræves %s."
|
1447 |
|
1448 |
+
#: src/class-updraftplus.php:4260
|
1449 |
msgid "Please read this link for important information on this process."
|
1450 |
msgstr "Venligst læs dette link for vigtig information om processen."
|
1451 |
|
1452 |
+
#: src/class-updraftplus.php:4260
|
1453 |
msgid "It will be imported as a new site."
|
1454 |
msgstr "Vil blive importeret som et nyt site."
|
1455 |
|
1523 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1524 |
msgstr "Dine gemte indstillinger påvirker også, hvad der oprettes back up af - f.eks. udelukkes filer."
|
1525 |
|
1526 |
+
#: src/admin.php:4086
|
1527 |
msgid "Skipping: this archive was already restored."
|
1528 |
msgstr "Stopper: Dette arkiv er allerede genskabt."
|
1529 |
|
1555 |
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)."
|
1556 |
msgstr "Denne knap vil slette alle UpdraftPlus indstillinger og information om igangværende sikkerhedskopier (men ikke slette eksisterende sikkerhedskopier i din sky)."
|
1557 |
|
1558 |
+
#: src/admin.php:4422
|
1559 |
msgid "Send this backup to remote storage"
|
1560 |
msgstr "Send denne backup til fjernlager"
|
1561 |
|
1562 |
+
#: src/admin.php:4420
|
1563 |
msgid "Check out UpdraftPlus Vault."
|
1564 |
msgstr "Se UpdraftPlus Vault"
|
1565 |
|
1566 |
+
#: src/admin.php:4420
|
1567 |
msgid "Not got any remote storage?"
|
1568 |
msgstr "Har du ikke et fjernlager?"
|
1569 |
|
1570 |
+
#: src/admin.php:4420
|
1571 |
msgid "settings"
|
1572 |
msgstr "Indstillinger"
|
1573 |
|
1574 |
+
#: src/admin.php:4420
|
1575 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1576 |
msgstr "Backup vil ikke blive sendt til noget lager - Intet er blevet gemt i %s"
|
1577 |
|
1628 |
msgid "Advanced Tools"
|
1629 |
msgstr "Advancerede værktøjer"
|
1630 |
|
1631 |
+
#: src/addons/googlecloud.php:1049
|
1632 |
msgid "Bucket location"
|
1633 |
msgstr "Gruppe lokation"
|
1634 |
|
1635 |
+
#: src/addons/googlecloud.php:1044
|
1636 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1637 |
msgstr "Bemærk, at Google ikke understøtter alle lagringsklasser på enhver placering - Du bør læse deres dokumentation for at lære om aktuel tilgængelighed."
|
1638 |
|
1639 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1640 |
msgid "This setting applies only when a new bucket is being created."
|
1641 |
msgstr "Denne indstilling gælder kun, når en ny gruppe bliver skabt."
|
1642 |
|
1643 |
+
#: src/addons/googlecloud.php:1033
|
1644 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1645 |
msgstr "Du skal bruge et gruppenavn, der er unikt for alle %s brugere."
|
1646 |
|
1647 |
+
#: src/addons/googlecloud.php:979
|
1648 |
msgid "Do not confuse %s with %s - they are separate things."
|
1649 |
msgstr "%s of %s må ikke forveksles - De er forskellige"
|
1650 |
|
1706 |
msgid "Standard"
|
1707 |
msgstr "Standard"
|
1708 |
|
1709 |
+
#: src/addons/azure.php:632
|
1710 |
msgid "container"
|
1711 |
msgstr "mappe"
|
1712 |
|
1713 |
+
#: src/addons/azure.php:632
|
1714 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1715 |
msgstr "Du kan indtaste stien til enhver %s virtuel mappe, du ønsker at bruge her."
|
1716 |
|
1717 |
+
#: src/addons/azure.php:631
|
1718 |
msgid "optional"
|
1719 |
msgstr "valgfri"
|
1720 |
|
1721 |
+
#: src/addons/azure.php:627
|
1722 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1723 |
msgstr "Se Microsofts retningslinjer for mappe-navngivning ved at følge dette link."
|
1724 |
|
1725 |
+
#: src/addons/azure.php:627
|
1726 |
msgid "Enter the path of the %s you wish to use here."
|
1727 |
msgstr "Indtast stien til den %s, du ønsker at bruge her."
|
1728 |
|
1729 |
+
#: src/addons/azure.php:618
|
1730 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1731 |
msgstr "Dette er ikke din Azure login - se anvisninger, hvis du har brug for mere vejledning."
|
1732 |
|
1733 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1734 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1735 |
msgid "Azure"
|
1736 |
msgstr "Azure"
|
1737 |
|
1738 |
+
#: src/addons/azure.php:598
|
1739 |
msgid "Create Azure credentials in your Azure developer console."
|
1740 |
msgstr "Opret Azure legitimationsoplysninger i din Azure udviklerkonsol."
|
1741 |
|
1742 |
+
#: src/addons/azure.php:562
|
1743 |
msgid "Could not create the container"
|
1744 |
msgstr "Kunne ikke oprette beholderen"
|
1745 |
|
1746 |
+
#: src/addons/azure.php:413
|
1747 |
msgid "Could not access container"
|
1748 |
msgstr "Kunne ikke tilgå mappe"
|
1749 |
|
1750 |
+
#: src/class-updraftplus.php:2926
|
1751 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1752 |
msgstr "For at fuldføre din migrering/kloning, bør du nu logge ind på det eksterne site og genoprette backup sættet."
|
1753 |
|
1775 |
msgid "Not installed"
|
1776 |
msgstr "Ikke installeret"
|
1777 |
|
1778 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1779 |
msgid "Storage class"
|
1780 |
msgstr "Lager niveau"
|
1781 |
|
1782 |
+
#: src/addons/googlecloud.php:1033
|
1783 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1784 |
msgstr "Se Google's vejledning vedrørende navngivning af grupper ved at følge dette link."
|
1785 |
|
1786 |
+
#: src/addons/googlecloud.php:1033
|
1787 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1788 |
msgstr "Indtast navnet på den %s gruppe, du vil bruge her."
|
1789 |
|
1790 |
+
#: src/addons/googlecloud.php:1032
|
1791 |
msgid "Bucket"
|
1792 |
msgstr "Gruppe"
|
1793 |
|
1794 |
+
#: src/addons/googlecloud.php:1028
|
1795 |
msgid "Otherwise, you can leave it blank."
|
1796 |
msgstr "Ellers kan du lade det være tomt."
|
1797 |
|
1798 |
+
#: src/addons/googlecloud.php:1028
|
1799 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1800 |
msgstr "N. B. Dette er kun nødvendigt, hvis du ikke allerede har oprettet gruppen, og du ønsker at UpdraftPlus opretter det for dig."
|
1801 |
|
1802 |
+
#: src/addons/googlecloud.php:1028
|
1803 |
msgid "Enter the ID of the %s project you wish to use here."
|
1804 |
msgstr "Indtast ID''et til det %s projekt du ønsker at benytte her."
|
1805 |
|
1806 |
+
#: src/addons/googlecloud.php:991
|
1807 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1808 |
msgstr "Følg dette link til din Google API Console og aktivér Lager API'en og opret et klient ID i API-adgang sektionen."
|
1809 |
|
1810 |
+
#: src/addons/googlecloud.php:902
|
1811 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1812 |
msgstr "Du skal indtaste et projekt ID for at kunne oprette en nu gruppe."
|
1813 |
|
1814 |
+
#: src/addons/googlecloud.php:1026
|
1815 |
msgid "Project ID"
|
1816 |
msgstr "Projekt ID"
|
1817 |
|
1818 |
+
#: src/addons/googlecloud.php:759
|
1819 |
msgid "You must save and authenticate before you can test your settings."
|
1820 |
msgstr "Du skal gemme og godkende, før du kan teste dine indstillinger."
|
1821 |
|
1824 |
msgstr "Har endnu ikke fået en adgang token fra Google - du har brug for at tillade eller re-autorisere din forbindelse til Google Cloud."
|
1825 |
|
1826 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1827 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1828 |
msgid "You do not have access to this bucket."
|
1829 |
msgstr "Du har ikke adgang til denne gruppe"
|
1830 |
|
1831 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1832 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1833 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1834 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1835 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1836 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1837 |
msgid "Google Cloud"
|
1838 |
msgstr "Google Cloud"
|
1839 |
|
1840 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1841 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1842 |
+
#: src/addons/googlecloud.php:941
|
1843 |
msgid "%s Service Exception."
|
1844 |
msgstr "%s Service undtagelse"
|
1845 |
|
1847 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1848 |
msgstr "Du behøver ikke UpdraftPlus fuldt installeret - venligst af-installér og installér det igen. WordPress fejlede muligvis ved kopiering af plugin-filer."
|
1849 |
|
1850 |
+
#: src/restorer.php:827
|
1851 |
msgid "Deferring..."
|
1852 |
msgstr "Udskydelse..."
|
1853 |
|
1916 |
msgid "Add an additional retention rule..."
|
1917 |
msgstr "Tilføj en ekstra tilføjelsesregel..."
|
1918 |
|
1919 |
+
#: src/restorer.php:2354
|
1920 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1921 |
msgstr "Denne database skal indsættes på MySQL version %s eller nyere."
|
1922 |
|
1923 |
+
#: src/restorer.php:2354
|
1924 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1925 |
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."
|
1926 |
|
1928 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1929 |
msgstr "Du har ikke på nuværende tidspunkt nogen UpdraftPlus Vault kvote"
|
1930 |
|
1931 |
+
#: src/class-updraftplus.php:4333
|
1932 |
msgid "You must upgrade MySQL to be able to use this database."
|
1933 |
msgstr "Du skal opgradere MySQL for at kunne bruge denne database."
|
1934 |
|
1935 |
+
#: src/class-updraftplus.php:4333
|
1936 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1937 |
msgstr "Database-backup'en bruger MySQL funktioner, som ikke findes i den gamle MySQL version (%s), dette websted kører på."
|
1938 |
|
2110 |
msgid "Updraft Vault"
|
2111 |
msgstr "Updraft Vault"
|
2112 |
|
2113 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2114 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2115 |
msgid "Delete failed:"
|
2116 |
msgstr "Sletning mislykkedes:"
|
2117 |
|
2147 |
msgid "Existing keys"
|
2148 |
msgstr "Eksisterende nøgler"
|
2149 |
|
|
|
|
|
|
|
|
|
2150 |
#: src/addons/migrator.php:2405
|
2151 |
msgid "Your new key:"
|
2152 |
msgstr "Din nye nøgle:"
|
2352 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2353 |
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?"
|
2354 |
|
2355 |
+
#: src/restorer.php:2356
|
2356 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2357 |
msgstr "For at bruge denne backup, skal din database server understøtte %s tegnsæt."
|
2358 |
|
2384 |
msgid "You have made changes to your settings, and not saved."
|
2385 |
msgstr "Du har ændret dine indstillinger, men har ikke gemt."
|
2386 |
|
2387 |
+
#: src/addons/onedrive.php:1111
|
2388 |
msgid "N.B. %s is not case-sensitive."
|
2389 |
msgstr "N.B. %s skelner ikke mellem store og små bogstaver."
|
2390 |
|
2391 |
+
#: src/addons/onedrive.php:1101
|
2392 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2393 |
msgstr "Hvis OneDrive senere viser meddelelsen \"unauthorized_client\", så har du ikke indtastet en gyldig klient-id her."
|
2394 |
|
2395 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2396 |
+
#: src/addons/onedrive.php:1074
|
2397 |
msgid "For longer help, including screenshots, follow this link."
|
2398 |
msgstr "Følg dette link for mere uddybende hjælp, der blandt andet indkluderer skærmbilleder."
|
2399 |
|
2400 |
+
#: src/addons/onedrive.php:1067
|
2401 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2402 |
msgstr "Opret OneDrive legimitation i din OneDrive udviklerkonsol."
|
2403 |
|
2404 |
+
#: src/addons/onedrive.php:1059
|
2405 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2406 |
msgstr "Du skal tilføje følgende som den autoriserede redirect URI i din OneDrive konsol (under \"API Indstillinger\"), når du bliver spurgt"
|
2407 |
|
2408 |
+
#: src/addons/azure.php:592
|
2409 |
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)."
|
2410 |
msgstr "Microsoft Azure er ikke kompatibel med sites, som hostes på en lokal host eller 127.0.0.1 URL - deres udviklerkonsol forbyder disse (aktuelle URL er: %s)."
|
2411 |
|
2412 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2413 |
msgid "%s authorisation failed:"
|
2414 |
msgstr "%s godkendelse mislykkedes:"
|
2415 |
|
2416 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2417 |
+
#: src/addons/onedrive.php:1104
|
2418 |
msgid "OneDrive"
|
2419 |
msgstr "OneDrive"
|
2420 |
|
2421 |
+
#: src/addons/onedrive.php:691
|
2422 |
msgid "Please re-authorize the connection to your %s account."
|
2423 |
msgstr "Godkend igen forbindelsen til din %s konto."
|
2424 |
|
2426 |
msgid "configure it here"
|
2427 |
msgstr "konfigurer her"
|
2428 |
|
2429 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2430 |
msgid "To remove the block, please go here."
|
2431 |
msgstr "Klik her for at fjerne block'en."
|
2432 |
|
2571 |
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)"
|
2572 |
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)"
|
2573 |
|
2574 |
+
#: src/methods/s3.php:910
|
2575 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2576 |
msgstr "Brug denne tilføjelse for at oprette en ny IAM sub-bruger og adgangsnøgle, der kun har adgang til denne spand."
|
2577 |
|
2578 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2579 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2580 |
msgstr "For personlig support, muligheden for at kopiere sider, flere lagerdestinationer, krypterede sikkerhedskopier, flere backup destinationer, bedre rapportering, ingen reklamer og meget mere, bør du tage et kig på den premium-versionen af UpdraftPlus - verdens mest populære backup plugin."
|
2581 |
|
2582 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2583 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2584 |
msgstr "UpdraftPlus nyheder, høj kvalitet undervisningsmaterialer til WordPress udviklere og site-ejere, og generelle WordPress nyheder. Du kan afmelde abonnement på hvilket som helst tidspunkt."
|
2585 |
|
2586 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2587 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2588 |
#: src/udaddons/updraftplus-addons.php:887
|
2589 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2590 |
msgstr "Dette sker ofte, hvis du deler server med en hacked webside som har været brugt i et tidligere angreb."
|
2591 |
|
2592 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2593 |
#: src/udaddons/updraftplus-addons.php:887
|
2594 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2595 |
msgstr "Det ser ud til at din web server's IP addresse (%s) er blokeret."
|
2596 |
|
2597 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2598 |
#: src/udaddons/updraftplus-addons.php:887
|
2599 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2600 |
msgstr "UpdraftPlus.com har svaret med 'Adgang nægtet'."
|
2601 |
|
2602 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2603 |
msgid "Premium WooCommerce plugins"
|
2604 |
msgstr "Premium WooCommerce plugins"
|
2605 |
|
2606 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2607 |
msgid "Free two-factor security plugin"
|
2608 |
msgstr "Gratis to-faktor sikkerhedsplugin"
|
2609 |
|
2610 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2611 |
+
msgid "More quality plugins"
|
2612 |
+
msgstr "Flere kvalitets-plugins"
|
2613 |
|
2614 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2615 |
msgid "Go to the shop."
|
2616 |
msgstr "Gå til shoppen."
|
2617 |
|
2618 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2619 |
msgid "Compare with the free version"
|
2620 |
msgstr "Sammenlign med den gratis version"
|
2621 |
|
2622 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2623 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2624 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2625 |
msgid "UpdraftPlus Premium"
|
2626 |
msgstr "UpdraftPlus Premium"
|
2627 |
|
2628 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
|
|
|
|
|
|
|
|
2629 |
msgid "Free Newsletter"
|
2630 |
msgstr "Gratis nyhedsbrev"
|
2631 |
|
|
|
|
|
|
|
|
|
2632 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2633 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
|
2634 |
msgid "Dismiss (for %s months)"
|
2635 |
msgstr "Udskyd (i %s måneder)"
|
2636 |
|
2671 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2672 |
msgstr "Lav backup (hvis relevant) af plugins, temaer og WordPress database med UpdraftPlus før du opdaterer"
|
2673 |
|
2674 |
+
#: src/methods/s3.php:177, src/methods/s3.php:178, src/methods/s3.php:179,
|
2675 |
+
#: src/methods/s3.php:187, src/methods/s3.php:188, src/methods/s3.php:189
|
2676 |
msgid "%s Error: Failed to initialise"
|
2677 |
msgstr "%s Fejl: Kunne ikke initialiseres"
|
2678 |
|
2717 |
msgid "Manual"
|
2718 |
msgstr "Manual"
|
2719 |
|
2720 |
+
#: src/restorer.php:2333
|
2721 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2722 |
msgid "An error (%s) occurred:"
|
2723 |
msgstr "En fejl (%s) opstod:"
|
2858 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2859 |
msgstr "\"Backup Nu\"-knappen er deaktiveret, da din backup mappe er ikke skrivbar (gå til fanen \"Indstillinger\", og find den relevante mulighed)."
|
2860 |
|
2861 |
+
#: src/class-updraftplus.php:4249
|
2862 |
msgid "Backup label:"
|
2863 |
msgstr "Backup etiket:"
|
2864 |
|
2882 |
msgid "Your label for this backup (optional)"
|
2883 |
msgstr "Din label til denne backup (valgfrit)"
|
2884 |
|
2885 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1162
|
2886 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2887 |
msgstr "%s tillader ikke godkendelse af sider hostet direkte på IP-adresser. Du bliver nødt til at ændre din webstedsadresse (%s), før du kan bruge %s til lagring."
|
2888 |
|
2902 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2903 |
msgstr "For at fortsætte, så tryk på 'Backup Nu' og derefter se 'Sidste Log Besked' feltet for aktivitet."
|
2904 |
|
2905 |
+
#: src/class-updraftplus.php:4268
|
2906 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2907 |
msgstr "Hvis du ønsker at genskabe en multisite backup, så skal du først sætte din WordPress op som en multisite installation."
|
2908 |
|
2909 |
+
#: src/class-updraftplus.php:4268
|
2910 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2911 |
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."
|
2912 |
|
2943 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2944 |
msgstr "Du er nødt til at modtage fremtidige opdateringer UpdraftPlus."
|
2945 |
|
2946 |
+
#: src/class-updraftplus.php:4241
|
2947 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2948 |
msgstr "Eventuelle support anmodninger som har med %s at gøre bør løses med dit web-hosting firma."
|
2949 |
|
2950 |
+
#: src/class-updraftplus.php:4241
|
2951 |
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."
|
2952 |
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."
|
2953 |
|
2954 |
+
#: src/class-updraftplus.php:4241
|
2955 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2956 |
msgstr "Denne er markant nyere end den serverversion, som du nu ønsker at gendanne på (version %s)."
|
2957 |
|
2958 |
+
#: src/class-updraftplus.php:4241
|
2959 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2960 |
msgstr "Siden i denne backup blev lavet på en webserver med version %s af %s."
|
2961 |
|
3000 |
msgid "Start backup"
|
3001 |
msgstr "Start backup"
|
3002 |
|
3003 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
3004 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3005 |
msgstr "Du bruger %s webserver, men den lader ikke til at have %s modulet indlæst."
|
3006 |
|
3036 |
msgid "Memory limit"
|
3037 |
msgstr "hukommelsesgrænse"
|
3038 |
|
3039 |
+
#: src/class-updraftplus.php:4682, src/restorer.php:1608
|
3040 |
msgid "restoration"
|
3041 |
msgstr "genoprettelse"
|
3042 |
|
3099 |
msgid "search term"
|
3100 |
msgstr "søgefrase"
|
3101 |
|
3102 |
+
#: src/restorer.php:2361
|
3103 |
msgid "Too many database errors have occurred - aborting"
|
3104 |
msgstr "Der har været for mange database fejl - stopper"
|
3105 |
|
3135 |
msgid "Free disk space in account:"
|
3136 |
msgstr "Ledig diskplads på konto:"
|
3137 |
|
3138 |
+
#: src/admin.php:4519, src/templates/wp-admin/settings/tab-status.php:27
|
3139 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3140 |
msgstr "Denne knap er deaktiveret fordi dit backup-arkiv ikke er skrivbart (se indstillingerne)."
|
3141 |
|
3230 |
msgid "user"
|
3231 |
msgstr "bruger"
|
3232 |
|
3233 |
+
#: src/class-updraftplus.php:1832
|
3234 |
msgid "External database (%s)"
|
3235 |
msgstr "Ekstern database (%s)"
|
3236 |
|
3242 |
msgid "failed to access parent folder"
|
3243 |
msgstr "adgang til den overliggende mappe mislykkedes"
|
3244 |
|
3245 |
+
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3246 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:421
|
3247 |
msgid "However, subsequent access attempts failed:"
|
3248 |
msgstr "Dog mislykkede adgangsforsøget efterfølgende:"
|
3249 |
|
3279 |
msgid "use UpdraftPlus Premium"
|
3280 |
msgstr "brug UpdraftPlus Premium"
|
3281 |
|
3282 |
+
#: src/class-updraftplus.php:4095
|
3283 |
msgid "Decryption failed. The database file is encrypted."
|
3284 |
msgstr "Dekryptering mislykkedes. Databasefilen er krypteret."
|
3285 |
|
3287 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3288 |
msgstr "Kun WordPress databasen kan gendannes; du bliver nødt til at behandle den eksterne database manuelt."
|
3289 |
|
3290 |
+
#: src/restorer.php:1876, src/restorer.php:2302, src/restorer.php:2343,
|
3291 |
+
#: src/restorer.php:2356
|
3292 |
msgid "An error occurred on the first %s command - aborting run"
|
3293 |
msgstr "Der opstod en fejl med den første %s kommando - afbryder kørelse"
|
3294 |
|
3308 |
msgid "In %s, path names are case sensitive."
|
3309 |
msgstr "Sti-navne i %s understøtter kun små bogstaver."
|
3310 |
|
3311 |
+
#: src/addons/azure.php:632, src/addons/google-enhanced.php:76,
|
3312 |
+
#: src/addons/onedrive.php:1111
|
3313 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3314 |
msgstr "Hvis feltet står tomt, vil backup'en placeres i roden af din %s"
|
3315 |
|
3316 |
+
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1033,
|
3317 |
+
#: src/addons/onedrive.php:1111
|
3318 |
msgid "e.g. %s"
|
3319 |
msgstr "f.eks. %s"
|
3320 |
|
3321 |
+
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1111
|
3322 |
msgid "Enter the path of the %s folder you wish to use here."
|
3323 |
msgstr "Her angives stien til %s mappen du ønsker at bruge."
|
3324 |
|
3362 |
msgid "Failed to upload %s"
|
3363 |
msgstr "Upload %s mislykkedes"
|
3364 |
|
3365 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
3366 |
msgid "Success:"
|
3367 |
msgstr "Udført:"
|
3368 |
|
3370 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3371 |
msgstr "<strong>Efter</strong> du har gemt dine indstillinger (ved at klikke på 'Gem ændringer' nedenfor), skal du vende tilbage hertil og klikke på dette link for at færdiggøre godkendelse med %s."
|
3372 |
|
3373 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:610
|
3374 |
msgid "(You appear to be already authenticated)."
|
3375 |
msgstr "(Du er allerede godkendt)."
|
3376 |
|
3377 |
+
#: src/methods/dropbox.php:606
|
3378 |
msgid "Dropbox"
|
3379 |
msgstr "Dropbox"
|
3380 |
|
3381 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:606
|
3382 |
msgid "Authenticate with %s"
|
3383 |
msgstr "Godkend med %s"
|
3384 |
|
3409 |
msgid "%s error - failed to access the container"
|
3410 |
msgstr "%s fejl - Adgang til containeren mislykkedes"
|
3411 |
|
3412 |
+
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3413 |
+
#: src/methods/dropbox.php:663, src/methods/googledrive.php:1248
|
3414 |
msgid "Account holder's name: %s."
|
3415 |
msgstr "Kontoindehavers navn: %s."
|
3416 |
|
3426 |
msgid "<strong>This is NOT a folder name</strong>."
|
3427 |
msgstr "<strong>Dette er IKKE et mappenavn</strong>."
|
3428 |
|
3429 |
+
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3430 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3431 |
msgid "Folder"
|
3432 |
msgstr "Mappe"
|
3433 |
|
3434 |
+
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3435 |
#: src/methods/googledrive.php:1122
|
3436 |
msgid "%s download: failed: file not found"
|
3437 |
msgstr "%s download: Mislykkedes: Filen blev ikke fundet"
|
3438 |
|
3439 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:441
|
3440 |
msgid "Name: %s."
|
3441 |
msgstr "Navn: %s."
|
3442 |
|
3475 |
msgid "Failed to unpack the archive"
|
3476 |
msgstr "Kunne ikke udpakke arkivet."
|
3477 |
|
3478 |
+
#: src/class-updraftplus.php:1356
|
3479 |
msgid "Error - failed to download the file"
|
3480 |
msgstr "Fejl - Kunne ikke downloade filen"
|
3481 |
|
3500 |
msgstr "password/nøgle"
|
3501 |
|
3502 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3503 |
+
#: src/admin.php:4808
|
3504 |
msgid "Key"
|
3505 |
msgstr "Nøgle"
|
3506 |
|
3525 |
msgstr "Filer og database WordPress backup (lavet af %s)"
|
3526 |
|
3527 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3528 |
+
#: src/includes/class-backup-history.php:349
|
3529 |
msgid "Backup created by: %s."
|
3530 |
msgstr "Backup lavet af: %s."
|
3531 |
|
3557 |
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."
|
3558 |
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."
|
3559 |
|
3560 |
+
#: src/admin.php:694, src/includes/class-backup-history.php:356
|
3561 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3562 |
msgstr "Hvis dette er en backup skabt af en anden backup plugin, kan UpdraftPlus Premium muligvis hjælpe dig."
|
3563 |
|
3566 |
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."
|
3567 |
|
3568 |
#: src/admin.php:693, src/admin.php:694,
|
3569 |
+
#: src/includes/class-backup-history.php:356
|
3570 |
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))."
|
3571 |
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))."
|
3572 |
|
3573 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3574 |
+
#: src/restorer.php:1577
|
3575 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3576 |
msgstr "Backup skabt af ukendt kilde (%s) - Kan ikke genskabes."
|
3577 |
|
3578 |
+
#: src/restorer.php:869, src/restorer.php:917
|
3579 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3580 |
msgstr "WordPress indholdsmappe (wp-content) blev ikke fundet i denne zip fil."
|
3581 |
|
3582 |
+
#: src/restorer.php:724
|
3583 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3584 |
msgstr "Denne version af UpdraftPlus kan ikke håndtere denne type af fremmed backup"
|
3585 |
|
3591 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3592 |
msgstr "UpdraftPlus modulet til denne fil-adgangsmetode (%s) understøtter ikke lister af filer."
|
3593 |
|
3594 |
+
#: src/addons/backblaze.php:557, src/methods/cloudfiles.php:234,
|
3595 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3596 |
msgid "No settings were found"
|
3597 |
msgstr "Indstillinger blev ikke fundet"
|
3598 |
|
3599 |
+
#: src/includes/class-backup-history.php:524
|
3600 |
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."
|
3601 |
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."
|
3602 |
|
3604 |
msgid "Rescanning remote and local storage for backup sets..."
|
3605 |
msgstr "Scanner igen både fjern- og lokal-lager for backup-sæt..."
|
3606 |
|
3607 |
+
#: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049,
|
3608 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3609 |
msgid "(Read more)"
|
3610 |
msgstr "(Læs mere)"
|
3622 |
msgid "Remove"
|
3623 |
msgstr "Fjern"
|
3624 |
|
3625 |
+
#: src/methods/s3.php:861
|
3626 |
msgid "Other %s FAQs."
|
3627 |
msgstr "Andre %s FAQ's."
|
3628 |
|
3634 |
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."
|
3635 |
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. "
|
3636 |
|
3637 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330,
|
3638 |
+
#: src/restorer.php:1608
|
3639 |
msgid "Your hosting company must enable these functions before %s can work."
|
3640 |
msgstr "Din hosting udbyder skal slå disse funktioner til inden %s kan virke."
|
3641 |
|
3642 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330
|
3643 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3644 |
msgstr "Din webservers PHP installation har slået disse funktioner fra: %s."
|
3645 |
|
3655 |
msgid "regular non-encrypted FTP"
|
3656 |
msgstr "almindelig ikke-krypteret FTP"
|
3657 |
|
3658 |
+
#: src/restorer.php:1784
|
3659 |
msgid "Backup created by:"
|
3660 |
msgstr "Backup udført af:"
|
3661 |
|
3709 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3710 |
msgstr "Afvis fra hovedoversigten (i %s uger)"
|
3711 |
|
3712 |
+
#: src/class-updraftplus.php:4732
|
3713 |
msgid "The attempt to undo the double-compression succeeded."
|
3714 |
msgstr "Forsøg på at rette dobbelt-kompresionen lykkedes."
|
3715 |
|
3716 |
+
#: src/class-updraftplus.php:4709, src/class-updraftplus.php:4730
|
3717 |
msgid "The attempt to undo the double-compression failed."
|
3718 |
msgstr "Forsøg på at rette dobbelt-kompresionen mislykkedes."
|
3719 |
|
3720 |
+
#: src/class-updraftplus.php:4702
|
3721 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3722 |
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."
|
3723 |
|
3724 |
+
#: src/includes/class-wpadmin-commands.php:313
|
3725 |
msgid "Constants"
|
3726 |
msgstr "Kontinuerlige"
|
3727 |
|
3770 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3771 |
msgstr "Opsætningen af PHP på denne web-server tillader kun at PHP kører i %s sekunder, og dette tidsinterval kan ikke øges. Hvis du har en stor mængde data, og hvis tiden for genskabelsen udløber, bør du bede din web-udbyder om mulighed for at hæve tidsgrænsen (eller forsøge at genskabe i mindre dele ad gangen)."
|
3772 |
|
3773 |
+
#: src/restorer.php:717
|
3774 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3775 |
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"
|
3776 |
|
3791 |
msgid "Messages:"
|
3792 |
msgstr "Beskeder:"
|
3793 |
|
3794 |
+
#: src/restorer.php:2196
|
3795 |
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"
|
3796 |
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"
|
3797 |
|
3798 |
+
#: src/restorer.php:490
|
3799 |
msgid "The directory does not exist"
|
3800 |
msgstr "Arkivet eksisterer ikke"
|
3801 |
|
3964 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3965 |
msgstr "Den nye brugers RackSpace konsol password er (dette vil ikke blive vist igen):"
|
3966 |
|
3967 |
+
#: src/admin.php:679, src/admin.php:4232
|
3968 |
msgid "Error data:"
|
3969 |
msgstr "Fejldata:"
|
3970 |
|
3976 |
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."
|
3977 |
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."
|
3978 |
|
3979 |
+
#: src/restorer.php:1851
|
3980 |
msgid "Split line to avoid exceeding maximum packet size"
|
3981 |
msgstr "Delt linje for at ungå overskridelse af maksimal pakkestørrelse"
|
3982 |
|
3983 |
+
#: src/restorer.php:1731
|
3984 |
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)"
|
3985 |
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)"
|
3986 |
|
4012 |
msgid "Email reports"
|
4013 |
msgstr "E-mail rapporter"
|
4014 |
|
4015 |
+
#: src/class-updraftplus.php:1840, src/class-updraftplus.php:1845
|
4016 |
msgid "%s checksum: %s"
|
4017 |
msgstr "%s checksum: %s"
|
4018 |
|
4019 |
+
#: src/class-updraftplus.php:1813, src/class-updraftplus.php:1815
|
4020 |
msgid "files: %s"
|
4021 |
msgstr "filer: %s"
|
4022 |
|
4069 |
msgid "%d errors, %d warnings"
|
4070 |
msgstr "%d fejl, %d advarsler"
|
4071 |
|
4072 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:748,
|
4073 |
+
#: src/methods/dropbox.php:770
|
4074 |
msgid "%s authentication"
|
4075 |
msgstr "%s godkendelse"
|
4076 |
|
4077 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:529,
|
4078 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:748,
|
4079 |
+
#: src/methods/dropbox.php:770, src/methods/dropbox.php:785,
|
4080 |
+
#: src/methods/dropbox.php:798, src/methods/dropbox.php:941
|
4081 |
msgid "%s error: %s"
|
4082 |
msgstr "%s fejl: %s"
|
4083 |
|
4084 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:575
|
4085 |
msgid "%s logo"
|
4086 |
msgstr "%s logo"
|
4087 |
|
4089 |
msgid "%s did not return the expected response - check your log file for more details"
|
4090 |
msgstr "%s returnerede ikke det forventede svar - tjek din logfil for flere detaljer"
|
4091 |
|
4092 |
+
#: src/methods/s3.php:307
|
4093 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4094 |
msgstr "Det nødvendige %s PHP modul er ikke installeret - ret henvendelse til dit hostingfirma for at få dette aktiveret"
|
4095 |
|
4110 |
msgid "For more reporting features, use the Reporting add-on."
|
4111 |
msgstr "For udvidede muligheder for fejlrapportering, brug da Reporting add-on, "
|
4112 |
|
4113 |
+
#: src/class-updraftplus.php:4176
|
4114 |
msgid "(version: %s)"
|
4115 |
msgstr "(version: %s)"
|
4116 |
|
4251 |
msgid "Reporting"
|
4252 |
msgstr "Rapportering"
|
4253 |
|
4254 |
+
#: src/admin.php:4805
|
4255 |
msgid "Options (raw)"
|
4256 |
msgstr "Muligheder (raw)"
|
4257 |
|
4259 |
msgid "Send a report only when there are warnings/errors"
|
4260 |
msgstr "Send kun en rapport når der er advarsler/fejl"
|
4261 |
|
4262 |
+
#: src/restorer.php:1795
|
4263 |
msgid "Content URL:"
|
4264 |
msgstr "Indholds-URL:"
|
4265 |
|
4403 |
msgid "Your web-server does not have the %s module installed."
|
4404 |
msgstr "Din web-server har ikke %s modulet installeret."
|
4405 |
|
4406 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1237
|
4407 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4408 |
msgstr "<strong>(Det ser ud til, at du allerede er godkendt,</strong>, men du kan gennemgå godkendelse igen for at genskabe forbindelse, hvis du har oplevet et problem)."
|
4409 |
|
4423 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4424 |
msgstr "Hvis du fravælger både databasen og filerne, har du fravalgt alt!"
|
4425 |
|
4426 |
+
#: src/restorer.php:1789
|
4427 |
msgid "Site home:"
|
4428 |
msgstr "Sidens forside:"
|
4429 |
|
4439 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4440 |
msgstr "Husk dette valg til næste gang (du vil stadig have mulighed for at ændre det)"
|
4441 |
|
4442 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:144,
|
4443 |
#: src/methods/stream-base.php:149
|
4444 |
msgid "Upload failed"
|
4445 |
msgstr "Upload mislykkedes"
|
4583 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4584 |
msgstr "Planlæggeren er disabled i dine WordPress indstillinger via DISABLE_WP_CRON. Ingen backup's kan køre (selv "Backup Now"), medmindre du manuelt har indstillet muligheden for at kontakte planlæggeren, eller indtil det er slået fra."
|
4585 |
|
4586 |
+
#: src/restorer.php:702
|
4587 |
msgid "file"
|
4588 |
msgstr "fil"
|
4589 |
|
4590 |
+
#: src/restorer.php:695
|
4591 |
msgid "folder"
|
4592 |
msgstr "mappe"
|
4593 |
|
4594 |
+
#: src/restorer.php:695, src/restorer.php:702
|
4595 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4596 |
msgstr "UpdraftPlus havde behov for at oprette en %s i dit indholdsarkiv, men mislykkedes - Venligst tjek dine rettigheder og giv adgang (%s)"
|
4597 |
|
4598 |
+
#: src/class-updraftplus.php:2933
|
4599 |
msgid "The backup has not finished; a resumption is scheduled"
|
4600 |
msgstr "Backup'en er ikke færdig; en genoptagelse er planlagt"
|
4601 |
|
4602 |
+
#: src/class-updraftplus.php:2117
|
4603 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4604 |
msgstr "Dit website besøges kun sjældent og UpdraftPlus modtager ikke de forventede ressourcer. Læs venligst denne side:"
|
4605 |
|
4606 |
+
#: src/addons/onedrive.php:966,
|
4607 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4608 |
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)."
|
4609 |
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)."
|
4688 |
msgid "Support"
|
4689 |
msgstr "Support"
|
4690 |
|
4691 |
+
#: src/class-updraftplus.php:4481
|
4692 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4693 |
msgstr "UpdraftPlus kunne ikke finde indstillinger for tabeller ved scanning af database backup'en."
|
4694 |
|
4695 |
+
#: src/class-updraftplus.php:4473
|
4696 |
msgid "This database backup is missing core WordPress tables: %s"
|
4697 |
msgstr "Denne database backup mangler WordPress tabeller: %s"
|
4698 |
|
4699 |
+
#: src/class-updraftplus.php:4234
|
4700 |
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."
|
4701 |
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."
|
4702 |
|
4703 |
+
#: src/class-updraftplus.php:4233, src/class-updraftplus.php:4240
|
4704 |
msgid "%s version: %s"
|
4705 |
msgstr "%s version: %s"
|
4706 |
|
4707 |
+
#: src/class-updraftplus.php:4112
|
4708 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4709 |
msgstr "Databasen er for lille til at være en godkendt WordPress database (størrelse: %s Kb)."
|
4710 |
|
4789 |
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?"
|
4790 |
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?"
|
4791 |
|
4792 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4793 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4794 |
msgstr "Backup-arkivfilerne er oprettet, men med nogle fejl. Du må afbryde og rette problemerne, inden du prøver igen."
|
4795 |
|
4796 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4797 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4798 |
msgstr "Backup-arkivfilerne er oprettede, men med nogle advarsler. Hvis alt er i orden, så klik igen på Genskab for at fortsætte. Ellers afbryd og ret problemerne først."
|
4799 |
|
4800 |
+
#: src/includes/class-wpadmin-commands.php:221
|
4801 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4802 |
msgstr "Backup-filerne er korrekt oprettet. Klik nu på Genskab igen for at fortsætte."
|
4803 |
|
4837 |
msgid "WordPress root directory server path: %s"
|
4838 |
msgstr "Server-sti til WordPress rodmappen: %s"
|
4839 |
|
4840 |
+
#: src/methods/dreamobjects.php:88, src/methods/s3generic.php:104
|
4841 |
msgid "%s end-point"
|
4842 |
msgstr "%s end-point"
|
4843 |
|
4844 |
+
#: src/methods/s3.php:838
|
4845 |
msgid "... and many more!"
|
4846 |
msgstr "... og mange flere!"
|
4847 |
|
4848 |
+
#: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
|
4849 |
+
#: src/methods/s3generic.php:83
|
4850 |
msgid "S3 (Compatible)"
|
4851 |
msgstr "S3 (Kompatibel)"
|
4852 |
|
4854 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4855 |
msgstr "Filen findes i øjeblikket ikke lokalt - Den skal hentes fra fjernlageret"
|
4856 |
|
4857 |
+
#: src/admin.php:4083
|
4858 |
msgid "Looking for %s archive: file name: %s"
|
4859 |
msgstr "Leder efter %s arkiv: filnavn: %s"
|
4860 |
|
4861 |
+
#: src/admin.php:4044
|
4862 |
msgid "Final checks"
|
4863 |
msgstr "Afsluttende kontrol"
|
4864 |
|
4886 |
msgid "Processing files - please wait..."
|
4887 |
msgstr "Behandler filer - vent venligst..."
|
4888 |
|
4889 |
+
#: src/admin.php:4234,
|
4890 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4891 |
msgid "Please consult this FAQ for help on what to do about it."
|
4892 |
msgstr "Venligst se denne FAQ for hjælp til en løsning."
|
4895 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4896 |
msgstr "Din WordPress installation har et problem med at udlæse ekstra whitespace. Dette kan ødelægge backup's, som downloades herfra."
|
4897 |
|
4898 |
+
#: src/class-updraftplus.php:4120
|
4899 |
msgid "Failed to open database file."
|
4900 |
msgstr "Kunne ikke åbne database filen."
|
4901 |
|
4902 |
+
#: src/admin.php:4770
|
4903 |
msgid "Known backups (raw)"
|
4904 |
msgstr "Kendte backups (komplette)"
|
4905 |
|
4906 |
+
#: src/restorer.php:1009
|
4907 |
msgid "Files found:"
|
4908 |
msgstr "Fundne filer:"
|
4909 |
|
4910 |
+
#: src/restorer.php:1977
|
4911 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4912 |
msgstr "Den ønskede table engine (%s) er ikke tilgængelig - Skifter til MylSAM."
|
4913 |
|
4914 |
+
#: src/admin.php:4103
|
4915 |
msgid "file is size:"
|
4916 |
msgstr "Filstørrelse:"
|
4917 |
|
4918 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:457,
|
4919 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4920 |
+
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:4354,
|
4921 |
+
#: src/class-updraftplus.php:4354, src/updraftplus.php:156
|
4922 |
msgid "Go here for more information."
|
4923 |
msgstr "Find mere information her."
|
4924 |
|
4926 |
msgid "Some files are still downloading or being processed - please wait."
|
4927 |
msgstr "Nogle filer er stadig ved at downloade eller blive bearbejdet - Vent venligst."
|
4928 |
|
4929 |
+
#: src/class-updraftplus.php:4203, src/class-updraftplus.php:4224
|
4930 |
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."
|
4931 |
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."
|
4932 |
|
4970 |
msgid "Error - no such file exists at %s"
|
4971 |
msgstr "Fejl - Denne fil eksisterer ikke på %s"
|
4972 |
|
4973 |
+
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4974 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4975 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4976 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
4999 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
5000 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
5001 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5002 |
+
#: src/class-updraftplus.php:4093, src/class-updraftplus.php:4095,
|
5003 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4264,
|
5004 |
+
#: src/class-updraftplus.php:4333, src/methods/googledrive.php:382,
|
5005 |
+
#: src/methods/s3.php:336
|
5006 |
msgid "Error: %s"
|
5007 |
msgstr "Fejl: %s"
|
5008 |
|
5042 |
msgid "Warnings encountered:"
|
5043 |
msgstr "Fundne advarsler:"
|
5044 |
|
5045 |
+
#: src/class-updraftplus.php:2921
|
5046 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5047 |
msgstr "Backup'en ser ud til at være succesfuld (med advarsler) og er nu færdig"
|
5048 |
|
5082 |
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."
|
5083 |
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."
|
5084 |
|
5085 |
+
#: src/methods/s3.php:847
|
5086 |
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."
|
5087 |
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."
|
5088 |
|
5089 |
+
#: src/methods/s3.php:1150
|
5090 |
msgid "Please check your access credentials."
|
5091 |
msgstr "Venligst tjek dine adgangsindstillinger."
|
5092 |
|
5093 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1128
|
5094 |
msgid "The error reported by %s was:"
|
5095 |
msgstr "Fejlen meddelt af %s var:"
|
5096 |
|
5097 |
+
#: src/restorer.php:1518
|
5098 |
msgid "Please supply the requested information, and then continue."
|
5099 |
msgstr "Venligst angiv den anmodede information og fortsæt derefter."
|
5100 |
|
5101 |
+
#: src/class-updraftplus.php:4275, src/restorer.php:1825
|
5102 |
msgid "Site information:"
|
5103 |
msgstr "Site information:"
|
5104 |
|
5105 |
+
#: src/restorer.php:1692
|
5106 |
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."
|
5107 |
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."
|
5108 |
|
5109 |
+
#: src/admin.php:2445, src/class-updraftplus.php:4268, src/restorer.php:2196
|
5110 |
msgid "Warning:"
|
5111 |
msgstr "Advarsel:"
|
5112 |
|
5113 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4260,
|
5114 |
#: src/restorer.php:184
|
5115 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5116 |
msgstr "Du arbejder via en WordPress multisite - men din backup er ikke af et multisite site."
|
5117 |
|
5118 |
+
#: src/admin.php:4071
|
5119 |
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."
|
5120 |
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."
|
5121 |
|
5191 |
msgid "News"
|
5192 |
msgstr "Nyheder"
|
5193 |
|
5194 |
+
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:490
|
5195 |
msgid "Backup set not found"
|
5196 |
msgstr "Bakup sæt ikke fundet"
|
5197 |
|
5356 |
msgstr "Sti til arkiv"
|
5357 |
|
5358 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5359 |
+
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5360 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5361 |
#: src/udaddons/options.php:135
|
5362 |
msgid "Password"
|
5363 |
msgstr "Password"
|
5364 |
|
5365 |
+
#: src/addons/sftp.php:429, src/addons/webdav.php:207
|
5366 |
msgid "Port"
|
5367 |
msgstr "Port"
|
5368 |
|
5369 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5370 |
+
#: src/addons/webdav.php:199
|
5371 |
msgid "Host"
|
5372 |
msgstr "Vært"
|
5373 |
|
5415 |
msgid "Over-write wp-config.php"
|
5416 |
msgstr "Overskriv wp-config.php"
|
5417 |
|
5418 |
+
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:507
|
5419 |
msgid "WordPress Core"
|
5420 |
msgstr "WordPress Core"
|
5421 |
|
5423 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5424 |
msgstr "Fejl: Vi kunne ikke indsætte en fil i denne mappe - Venligst tjek dine tilladelser."
|
5425 |
|
5426 |
+
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5427 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3052,
|
5428 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5429 |
#: src/methods/stream-base.php:353
|
5430 |
msgid "Failed"
|
5431 |
msgstr "Mislykket"
|
5432 |
|
5433 |
+
#: src/addons/webdav.php:169
|
5434 |
msgid "WebDAV URL"
|
5435 |
msgstr "WebDAV URL"
|
5436 |
|
5481 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5482 |
msgstr "Hvis du vil have kryptering (f.eks. ved lagring af følsomme data), er der en add-on er til rådighed."
|
5483 |
|
5484 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:816
|
5485 |
msgid "Your %s account name: %s"
|
5486 |
msgstr "Dit %s konto navn: %s"
|
5487 |
|
5488 |
+
#: src/methods/dropbox.php:806, src/methods/dropbox.php:828
|
5489 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5490 |
msgstr "da en del af de returnerede oplysninger ikke var som forventet - kan dit resultat variere"
|
5491 |
|
5492 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
5493 |
msgid "you have authenticated your %s account"
|
5494 |
msgstr "du har autentificeret din %s konto"
|
5495 |
|
5496 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5497 |
msgid "there's an add-on for that."
|
5498 |
msgstr "der findes en add-on for dette."
|
5499 |
|
5500 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5501 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5502 |
msgstr "Hvis du laver backup af adskillige sites i den samme Dropbox og vil organisere den i sub-foldere, så"
|
5503 |
|
5504 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5505 |
msgid "Backups are saved in"
|
5506 |
msgstr "Backup bliver gemt i"
|
5507 |
|
5508 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5509 |
msgid "Need to use sub-folders?"
|
5510 |
msgstr "Behov for sub-foldere?"
|
5511 |
|
5518 |
msgid "You do not appear to be authenticated with Dropbox"
|
5519 |
msgstr "Det lader ikke til, at du har adgang til Dropbox"
|
5520 |
|
5521 |
+
#: src/methods/s3.php:1145
|
5522 |
msgid "The communication with %s was not encrypted."
|
5523 |
msgstr "Kommunikationen med %s var ikke krypteret."
|
5524 |
|
5525 |
+
#: src/methods/s3.php:1143
|
5526 |
msgid "The communication with %s was encrypted."
|
5527 |
msgstr "Kommunikationen med %s var krypteret."
|
5528 |
|
5529 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1140
|
5530 |
msgid "We accessed the bucket, and were able to create files within it."
|
5531 |
msgstr "Vi har fået adgang til gruppen, og vi kunne oprette filer i den."
|
5532 |
|
5533 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5534 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5535 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5536 |
msgstr "Vi har fået adgang til gruppen, men forsøget på at oprette en fil i den mislykkedes."
|
5537 |
|
5538 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5539 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5540 |
msgid "Failure"
|
5541 |
msgstr "Fejl"
|
5542 |
|
5543 |
+
#: src/addons/backblaze.php:472, src/methods/s3.php:1126
|
5544 |
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)."
|
5545 |
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)."
|
5546 |
|
5547 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5548 |
+
#: src/methods/s3.php:1120
|
5549 |
msgid "Region"
|
5550 |
msgstr "Region"
|
5551 |
|
5552 |
+
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5553 |
+
#: src/methods/s3.php:1102
|
5554 |
msgid "Failure: No bucket details were given."
|
5555 |
msgstr "Fejl: Ingen gruppedetaljer blev oplyst."
|
5556 |
|
5557 |
+
#: src/methods/s3.php:1080
|
5558 |
msgid "API secret"
|
5559 |
msgstr "API hemmelighed"
|
5560 |
|
5561 |
+
#: src/methods/s3.php:928
|
5562 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5563 |
msgstr "Indtast kun et gruppenavn eller en gruppe og sti. Eksempler: mingruppe, mingruppe/minsti"
|
5564 |
|
5565 |
+
#: src/methods/s3.php:927
|
5566 |
msgid "%s location"
|
5567 |
msgstr "%s lokation"
|
5568 |
|
5569 |
+
#: src/methods/s3.php:923
|
5570 |
msgid "%s secret key"
|
5571 |
msgstr "%s sikkerhedsnøgle"
|
5572 |
|
5573 |
+
#: src/methods/s3.php:919
|
5574 |
msgid "%s access key"
|
5575 |
msgstr "%s adgangsnøgle"
|
5576 |
|
5577 |
+
#: src/methods/s3.php:859
|
5578 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5579 |
msgstr "Hvis du ser fejl vedrørende SSL-certifikater, kan du få hjælp her."
|
5580 |
|
5581 |
+
#: src/methods/s3.php:857
|
5582 |
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."
|
5583 |
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."
|
5584 |
|
5585 |
+
#: src/methods/s3.php:477, src/methods/s3.php:589, src/methods/s3.php:661,
|
5586 |
+
#: src/methods/s3.php:764
|
5587 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5588 |
msgstr "%s Fejl: Kunne ikke få adgang til samling %s. Tjek dine tilladelser og legitimationsoplysninger."
|
5589 |
|
5590 |
+
#: src/methods/s3.php:747, src/methods/s3.php:757, src/methods/s3.php:793
|
5591 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5592 |
msgstr "%s Fejl: Kunne ikke downloade %s. Tjek dine tilladelser og person-oplysninger."
|
5593 |
|
5594 |
+
#: src/methods/s3.php:455
|
5595 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5596 |
msgstr "%s genskabelses-fejl (%s): (Se logfilen for mere info)"
|
5597 |
|
5598 |
+
#: src/methods/s3.php:451
|
5599 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5600 |
msgstr "%s upload (%s): Genskabelse mislykkedes (se log for flere detaljer)."
|
5601 |
|
5602 |
+
#: src/methods/s3.php:435
|
5603 |
msgid "%s chunk %s: upload failed"
|
5604 |
msgstr "%s del %s: Upload mislykkedes."
|
5605 |
|
5606 |
+
#: src/methods/s3.php:425
|
5607 |
msgid "%s error: file %s was shortened unexpectedly"
|
5608 |
msgstr "%s fejl: Filen %s blev forkortet uventet."
|
5609 |
|
5610 |
+
#: src/methods/s3.php:403
|
5611 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5612 |
msgstr "%s upload: Det mislykkedes af få upload-ID til multi upload - Se logfilen for flere detaljer."
|
5613 |
|
5632 |
msgstr "Fejl: Der blev ikke oplyst detaljer om mappe."
|
5633 |
|
5634 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5635 |
+
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5636 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5637 |
msgid "Username"
|
5638 |
msgstr "Brugernavn"
|
5639 |
|
5640 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5641 |
+
#: src/methods/s3.php:1076
|
5642 |
msgid "API key"
|
5643 |
msgstr "API-nøgle"
|
5644 |
|
5645 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5646 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5647 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5648 |
+
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5649 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5650 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5651 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5652 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5653 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5654 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5655 |
+
#: src/methods/s3.php:1076, src/methods/s3.php:1080
|
5656 |
msgid "Failure: No %s was given."
|
5657 |
msgstr "Fejl: Der blev ikke angivet et %s"
|
5658 |
|
5659 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5660 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5661 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5662 |
msgstr "UpdraftPlus's %s modul <strong>kræver</strong> %s. Vær venlig ikke at kontakte support; der er intet alternativ."
|
5663 |
|
5692 |
msgid "Test %s Settings"
|
5693 |
msgstr "Test %s indstillinger"
|
5694 |
|
5695 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
5696 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5697 |
msgid "Error opening local file: Failed to download"
|
5698 |
msgstr "Fejl ved åbning af lokal fil: Kunne ikke downloade."
|
5704 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5705 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5706 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5707 |
+
#: src/methods/s3.php:371, src/methods/s3.php:383, src/methods/s3.php:384
|
5708 |
msgid "%s Error: Failed to upload"
|
5709 |
msgstr "%s Fejl: Upload mislykkedes."
|
5710 |
|
5730 |
msgid "Authenticate with Google"
|
5731 |
msgstr "Godkend med Google."
|
5732 |
|
5733 |
+
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5734 |
#: src/methods/googledrive.php:1196
|
5735 |
msgid "Client Secret"
|
5736 |
msgstr "Klient hemmelighed"
|
5737 |
|
5738 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1193
|
5739 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5740 |
msgstr "Hvis Google senere viser dig beskeden \"Invalid_klient\", har du ikke angivet en gældende klient ID her."
|
5741 |
|
5742 |
+
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5743 |
#: src/methods/googledrive.php:1192
|
5744 |
msgid "Client ID"
|
5745 |
msgstr "Klient ID"
|
5746 |
|
5747 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5748 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5749 |
msgstr "Du skal tilføje følgende som gældende URI (under \"Flere indstillinger\") når du bliver spurgt."
|
5750 |
|
5751 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5752 |
msgid "Select 'Web Application' as the application type."
|
5753 |
msgstr "Vælg 'Web Application\" som program-type."
|
5754 |
|
5755 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1167
|
5756 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5757 |
msgstr "Ved yderligere hjælp, inklusiv skærmbilleder, kan du følge dette link. Nedenstående beskrivelse er tilstrækkelig til mere erfarne brugere."
|
5758 |
|
5759 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5760 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:546,
|
5761 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5762 |
#: src/methods/googledrive.php:558
|
5763 |
msgid "Account is not authorized."
|
5777 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5778 |
msgstr "Har endnu ikke har modtaget en adgangs-token fra Google - Du skal godkende din forbindelse til Google Drev."
|
5779 |
|
5780 |
+
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5781 |
#: src/methods/googledrive.php:441
|
5782 |
msgid "you have authenticated your %s account."
|
5783 |
msgstr "du har autentificeret din %s konto."
|
5784 |
|
5785 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5786 |
+
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5787 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5788 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5789 |
+
#: src/methods/s3.php:1140, src/methods/stream-base.php:364
|
5790 |
msgid "Success"
|
5791 |
msgstr "Succes"
|
5792 |
|
5793 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:839,
|
5794 |
+
#: src/methods/dropbox.php:848, src/methods/googledrive.php:415
|
5795 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5796 |
msgstr "Din %s forbrugskvote: %s %% brugt, %s tilgængelig"
|
5797 |
|
5823 |
msgstr "Det er nødvendigt at re-autentificere med %s, da dine eksisterende legitimationsoplysninger ikke fungerer."
|
5824 |
|
5825 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5826 |
+
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:4101,
|
5827 |
+
#: src/restorer.php:2437, src/restorer.php:2542
|
5828 |
msgid "OK"
|
5829 |
msgstr "OK"
|
5830 |
|
5831 |
+
#: src/restorer.php:2431, src/restorer.php:2506
|
5832 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5833 |
msgstr "Tabel præfiks har ændret sig: Skiftende %s tabel-felt(er) i overensstemmelse hermed:"
|
5834 |
|
5835 |
+
#: src/addons/migrator.php:1285, src/restorer.php:2333
|
5836 |
msgid "the database query being run was:"
|
5837 |
msgstr "databaseforespørgslen der blev kørt var:"
|
5838 |
|
5839 |
+
#: src/restorer.php:2034
|
5840 |
msgid "will restore as:"
|
5841 |
msgstr "vil genskabes som:"
|
5842 |
|
5843 |
+
#: src/class-updraftplus.php:4246, src/restorer.php:1807,
|
5844 |
+
#: src/restorer.php:1896, src/restorer.php:1922
|
5845 |
msgid "Old table prefix:"
|
5846 |
msgstr "Gammel tabel præfiks:"
|
5847 |
|
5848 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5849 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4176
|
5850 |
msgid "Backup of:"
|
5851 |
msgstr "Backup af:"
|
5852 |
|
5853 |
+
#: src/restorer.php:1614
|
5854 |
msgid "Failed to open database file"
|
5855 |
msgstr "Kunne ikke åbne database-filen"
|
5856 |
|
5857 |
+
#: src/restorer.php:1593
|
5858 |
msgid "Failed to find database file"
|
5859 |
msgstr "Kunne ikke finde database-filen"
|
5860 |
|
5861 |
+
#: src/restorer.php:1570
|
5862 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5863 |
msgstr "Advarsel: PHP safe_mode er aktiv på din server. Timeout's er langt mere sandsynlige. Hvis dette sker, bliver du nødt til manuelt at gendanne filen via phpMyAdmin eller en anden metode."
|
5864 |
|
5865 |
+
#: src/restorer.php:529
|
5866 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5867 |
msgstr "wp-config.php fra sikkerhedskopi: Genopretter (efter brugers anmodning)"
|
5868 |
|
5869 |
+
#: src/restorer.php:524
|
5870 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5871 |
msgstr "wp-config.php fra backuppen: vil blive genskabt som wp-config-backup.php"
|
5872 |
|
5873 |
+
#: src/restorer.php:417
|
5874 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5875 |
msgstr "Kunne ikke skrive det dekrypterede database til filsystemet"
|
5876 |
|
5877 |
+
#: src/restorer.php:401
|
5878 |
msgid "Failed to create a temporary directory"
|
5879 |
msgstr "Kunne ikke oprette en midlertidig mappe"
|
5880 |
|
5918 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5919 |
msgstr "UpdraftPlus er ikke i stand til direkte at genskabe denne type. Den skal genoprettes manuelt."
|
5920 |
|
5921 |
+
#: src/admin.php:4109, src/admin.php:4110
|
5922 |
msgid "Could not find one of the files for restoration"
|
5923 |
msgstr "Kunne ikke finde en af filerne til genoprettelse"
|
5924 |
|
5925 |
+
#: src/admin.php:4224
|
5926 |
msgid "Error message"
|
5927 |
msgstr "Fejlmeddelelse"
|
5928 |
|
5929 |
+
#: src/admin.php:4106
|
5930 |
msgid "The backup records do not contain information about the proper size of this file."
|
5931 |
msgstr "Backup optegnelser indeholder ikke information om den korrekte størrelse af denne fil."
|
5932 |
|
5933 |
+
#: src/admin.php:4098
|
5934 |
msgid "Archive is expected to be size:"
|
5935 |
msgstr "Arkivets forventede størrelse:"
|
5936 |
|
5971 |
msgstr "Din webservers PHP/Curl-installation understøtter ikke HTTPS-adgang. Kommunikation med %s vil være ukrypteret. Bed din webudbyder installere Curl/SSL for at få mulighed for kryptering (via en add-on)."
|
5972 |
|
5973 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5974 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5975 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5976 |
msgstr "Dit websteds PHP-installation bruger ikke et nødvendigt modul (%s). Kontakt venligst din hostingudbyder's support."
|
5977 |
|
6259 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6260 |
msgstr "Læs denne artikel af nyttige viden inden du gendanner."
|
6261 |
|
6262 |
+
#: src/class-updraftplus.php:4206
|
6263 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6264 |
msgstr "Du kan søge og erstatte din database (for at migrere en hjemmeside til en ny placering / URL) med Migrator add-on - følg dette link for mere information"
|
6265 |
|
6312 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6313 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6314 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6315 |
+
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6316 |
+
#: src/admin.php:680, src/admin.php:4103, src/admin.php:4133,
|
6317 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6318 |
+
#: src/methods/updraftvault.php:522, src/restorer.php:1523
|
6319 |
msgid "Error:"
|
6320 |
msgstr "Fejl:"
|
6321 |
|
6389 |
|
6390 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6391 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6392 |
+
#: src/admin.php:3682, src/admin.php:4187,
|
6393 |
#: src/includes/class-wpadmin-commands.php:147,
|
6394 |
+
#: src/includes/class-wpadmin-commands.php:505,
|
6395 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6396 |
msgid "Database"
|
6397 |
msgstr "Database"
|
6398 |
|
6399 |
+
#: src/admin.php:311, src/admin.php:4777
|
6400 |
msgid "Files"
|
6401 |
msgstr "Filer"
|
6402 |
|
6448 |
msgid "UpdraftPlus.Com"
|
6449 |
msgstr "UpdraftPlus.Com"
|
6450 |
|
6451 |
+
#: src/admin.php:4669
|
6452 |
msgid "Your settings have been wiped."
|
6453 |
msgstr "Dine indstillinger er blevet slettet."
|
6454 |
|
6509 |
msgstr "Download mislykkede"
|
6510 |
|
6511 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6512 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
6513 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6514 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6515 |
+
#: src/methods/stream-base.php:220, src/restorer.php:2433,
|
6516 |
+
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6517 |
msgid "Error"
|
6518 |
msgstr "Fejl"
|
6519 |
|
6554 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6555 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6556 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6557 |
+
#: src/methods/s3.php:847, src/methods/s3.php:851,
|
6558 |
#: src/methods/updraftvault.php:301,
|
6559 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6560 |
#: src/udaddons/updraftplus-addons.php:253
|
6586 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6587 |
msgstr "Kan du lide UpdraftPlus og kan undvære et minut?"
|
6588 |
|
6589 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3966,
|
6590 |
+
#: src/methods/googledrive.php:1082, src/methods/s3.php:336
|
6591 |
msgid "File not found"
|
6592 |
msgstr "Fil ikke fundet"
|
6593 |
|
6594 |
+
#: src/class-updraftplus.php:3873
|
6595 |
msgid "The decryption key used:"
|
6596 |
msgstr "Dekrypteringsnøglen som blev anvendt:"
|
6597 |
|
6598 |
+
#: src/class-updraftplus.php:3873, src/class-updraftplus.php:4105,
|
6599 |
+
#: src/restorer.php:422
|
6600 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6601 |
msgstr "Dekryptering mislykkedes. Den mest sandsynlige årsag er, at du har brugt den forkerte nøgle."
|
6602 |
|
6603 |
+
#: src/class-updraftplus.php:3854, src/class-updraftplus.php:4093,
|
6604 |
+
#: src/restorer.php:409
|
6605 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6606 |
msgstr "Dekryptering mislykkedes. Database-filen er krypteret, men du har ingen krypteringsnøgle indtastet."
|
6607 |
|
6609 |
msgid "Could not open the backup file for writing"
|
6610 |
msgstr "Kunne ikke åbne backup filen for skrivning"
|
6611 |
|
6612 |
+
#: src/class-updraftplus.php:3459
|
6613 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6614 |
msgstr "Kunne ikke gemme backup historikken, fordi vi ikke har nogen backup array. Sikkerhedskopiering mislykkedes sandsynligvis."
|
6615 |
|
6616 |
+
#: src/class-updraftplus.php:3420
|
6617 |
msgid "Could not read the directory"
|
6618 |
msgstr "Kunne ikke læse mappen"
|
6619 |
|
6625 |
msgid "WordPress backup is complete"
|
6626 |
msgstr "WordPress backup er fuldført"
|
6627 |
|
6628 |
+
#: src/class-updraftplus.php:2930
|
6629 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6630 |
msgstr "Sikkerhedskopieringen forsøgte at blive færdig, men uden held"
|
6631 |
|
6632 |
+
#: src/class-updraftplus.php:2915
|
6633 |
msgid "The backup apparently succeeded and is now complete"
|
6634 |
msgstr "Sikkerhedskopieringen lykkedes og er nu færdig"
|
6635 |
|
6637 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6638 |
msgstr "Krypteringsfejl ved kryptering af databasen. Kryptering afbrudt."
|
6639 |
|
6640 |
+
#: src/class-updraftplus.php:2618
|
6641 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6642 |
msgstr "Kunne ikke oprette filer i backup mappen. Backup afbrudt - kontroller dine UpdraftPlus indstillinger."
|
6643 |
|
6644 |
+
#: src/class-updraftplus.php:1897
|
6645 |
msgid "Others"
|
6646 |
msgstr "Andre"
|
6647 |
|
6648 |
+
#: src/addons/multisite.php:465, src/class-updraftplus.php:1882
|
6649 |
msgid "Uploads"
|
6650 |
msgstr "Uploads"
|
6651 |
|
6652 |
+
#: src/class-updraftplus.php:1881
|
6653 |
msgid "Themes"
|
6654 |
msgstr "Temaer"
|
6655 |
|
6656 |
+
#: src/class-updraftplus.php:1880
|
6657 |
msgid "Plugins"
|
6658 |
msgstr "Plugins"
|
6659 |
|
Binary file
|
@@ -11,6 +11,50 @@ msgstr ""
|
|
11 |
"Language: el_GR\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
msgstr ""
|
@@ -19,11 +63,11 @@ msgstr ""
|
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr ""
|
29 |
|
@@ -91,25 +135,25 @@ msgstr "Τέλος στους ξεχασμένους κωδικούς πρόσβ
|
|
91 |
msgid "remote site"
|
92 |
msgstr "απομακρυσμένη σελίδα"
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr "Μη έγκυρο όνομα φεκέλου"
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] "Η ζητηθήσα ταξινόμηση του πίνακα (%1$s) δεν υπάρχει - αλλαγή σε %2$s."
|
102 |
msgstr[1] "Οι ζητηθήσες ταξινομήσεις του πίνακα (%1$s) δεν υπάρχουν - αλλαγή σε %2$s."
|
103 |
|
104 |
-
#: src/class-updraftplus.php:
|
105 |
msgid "Your chosen replacement collation"
|
106 |
msgstr "Η επιλεγμένη από εσάς ταξινόμηση αντικατάστασης"
|
107 |
|
108 |
-
#: src/class-updraftplus.php:
|
109 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
110 |
msgstr "Μπορείτε να επιλέξετε μια άλλη κατάλληλη ταξινόμηση και να συνεχίσετε με την αποκατάσταση (με δική σας ευθύνη)."
|
111 |
|
112 |
-
#: src/class-updraftplus.php:
|
113 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
114 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
115 |
msgstr[0] "Ο διακομιστής της βάσης δεδομένων στον οποίο αυτός ο ιστότοπος της WordPress βρίσκεται δεν υποστηρίζει την ταξινόμηση (%s) που χρησιμοποιείται στη βάση δεδομένων που προσπαθείτε να εισαγάγετε."
|
@@ -123,27 +167,27 @@ msgstr "Επιλογές αποκατάστασης βάσης δεδομένω
|
|
123 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
124 |
msgstr "Αυτό μοιάζει με μετανάστευση (το αντίγραφο ασφαλείας προέρχεται από έναν ιστότοπο με διαφορετικές διευθύνσεις/URL, %s)."
|
125 |
|
126 |
-
#: src/addons/azure.php:
|
127 |
msgid "%s Prefix"
|
128 |
msgstr "%s Πρόθεμα"
|
129 |
|
130 |
-
#: src/addons/azure.php:
|
131 |
msgid "%s Container"
|
132 |
msgstr "%s Πίνακας περιεχομένου"
|
133 |
|
134 |
-
#: src/addons/azure.php:
|
135 |
msgid "%s Key"
|
136 |
msgstr "%s Κλειδί"
|
137 |
|
138 |
-
#: src/addons/azure.php:
|
139 |
msgid "%s Account Name"
|
140 |
msgstr "%s Όνομα Λογαριασμού"
|
141 |
|
142 |
-
#: src/addons/googlecloud.php:
|
143 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
144 |
msgstr "Οι ρυθμίσεις %s δεν βρέθηκαν. Παρακαλούμε συμπληρώστε όλα τα πεδία στις ρυθμίσεις %s και στη συνέχεια αποθηκεύστε τις."
|
145 |
|
146 |
-
#: src/addons/googlecloud.php:
|
147 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
148 |
msgstr "Ωστόσο, δεν καθορίστηκε κανένας φάκελος, επομένως τα αντίγραφα ασφαλείας ενδέχεται να μην ολοκληρωθούν. Καταχωρίστε ένα όνομα φακέλου στις ρυθμίσεις %s και αποθηκεύστε τις."
|
149 |
|
@@ -173,19 +217,19 @@ msgid_plural "Your .htaccess has an old site references on line numbers %s. You
|
|
173 |
msgstr[0] "Το αρχείο .htaccess έχει μια παλιά αναφορά τοποθεσίας στον αριθμό γραμμής %s. Πρέπει να το αφαιρέσετε χειροκίνητα."
|
174 |
msgstr[1] "Το αρχείο .htaccess έχει παλιές αναφορές τοποθεσίας στους αριθμούς γραμμών %s. Πρέπει να τις αφαιρέσετε χειροκίνητα."
|
175 |
|
176 |
-
#: src/restorer.php:
|
177 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
178 |
msgstr "Το ζητούμενο σετ χαρακτήρων του πίνακα (%s) δεν υπάρχει - αλλαγή σε %s."
|
179 |
|
180 |
-
#: src/class-updraftplus.php:
|
181 |
msgid "Your chosen character set to use instead:"
|
182 |
msgstr "Ο επιλεγμένος χαρακτήρας που θέλετε να χρησιμοποιήσετε αντί:"
|
183 |
|
184 |
-
#: src/class-updraftplus.php:
|
185 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
186 |
msgstr "Μπορείτε να επιλέξετε ένα άλλο κατάλληλο σύνολο χαρακτήρων και να συνεχίσετε την αποκατάσταση με δική σας ευθύνη."
|
187 |
|
188 |
-
#: src/class-updraftplus.php:
|
189 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
190 |
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."
|
191 |
msgstr[0] "Ο διακομιστής βάσης δεδομένων στον οποίο φιλοξενείται αυτός ο ιστότοπος της WordPress δεν υποστηρίζει το σύνολο χαρακτήρων (%s) που προσπαθείτε να εισαγάγετε."
|
@@ -239,59 +283,59 @@ msgstr "Τώρα πρέπει να αντιγράψετε το κλειδί πι
|
|
239 |
msgid "Please enter a valid URL e.g http://example.com"
|
240 |
msgstr "Εισαγάγετε μια έγκυρη διεύθυνση URL, π.χ. http://example.com"
|
241 |
|
242 |
-
#: src/addons/backblaze.php:
|
243 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
244 |
msgstr "Υπάρχουν προϋποθέσεις και όρια στα οποία τα ονόματα διαδρομής και φακέλων είναι έγκυρα. Τα διαστήματα δεν επιτρέπονται."
|
245 |
|
246 |
-
#: src/addons/backblaze.php:
|
247 |
msgid "some/path"
|
248 |
msgstr "κάποια/διαδρομή"
|
249 |
|
250 |
-
#: src/addons/backblaze.php:
|
251 |
msgid "Bucket name"
|
252 |
msgstr "Όνομα κάδου"
|
253 |
|
254 |
-
#: src/addons/backblaze.php:
|
255 |
msgid "Backup path"
|
256 |
msgstr "Διαδρομή φακέλου αντιγράφου ασφαλείας"
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "Application key"
|
260 |
msgstr "Κλειδί εφαρμογής"
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "here"
|
264 |
msgstr "εδώ"
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "Get these settings from %s, or sign up %s."
|
268 |
msgstr "Λάβετε αυτές τις ρυθμίσεις από το %s ή εγγραφείτε στο %s."
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Account Key"
|
272 |
msgstr "Κλειδί Λογαριασμού"
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Account ID"
|
276 |
msgstr "ID Λογαριασμού"
|
277 |
|
278 |
-
#: src/class-updraftplus.php:
|
279 |
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."
|
280 |
msgstr "Όσο η φιλοξενία σας στο διαδίκτυο επιτρέπει την πρόσβαση http (δηλαδή πρόσβαση χωρίς SSL) ή θα προωθεί τα αιτήματα σε https (κάτι που συμβαίνει σχεδόν πάντοτε), αυτό δεν αποτελεί πρόβλημα. Αν αυτό δεν το έχετε ρυθμίσει ακόμα, θα πρέπει να το ορίσετε ή να χρησιμοποιήσετε το %s έτσι ώστε οι σύνδεσμοι που δεν είναι https να αντικατασταθούν αυτόματα."
|
281 |
|
282 |
-
#: src/class-updraftplus.php:
|
283 |
msgid "the migrator add-on"
|
284 |
msgstr "το πρόσθετο μετανάστευσης"
|
285 |
|
286 |
-
#: src/class-updraftplus.php:
|
287 |
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."
|
288 |
msgstr "Αυτή η αποκατάσταση θα λειτουργήσει εάν εξακολουθείτε να έχετε ένα πιστοποιητικό SSL (δηλ. να μπορείτε να χρησιμοποιήσετε το https) για να αποκτήσετε πρόσβαση στον ιστότοπο. Διαφορετικά, θα πρέπει να χρησιμοποιήσετε το %s για να αναζητήσετε/αντικαταστήσετε τη διεύθυνση ιστότοπου έτσι ώστε να μπορέστε να επισκεφθείτε τον ιστότοπο χωρίς https."
|
289 |
|
290 |
-
#: src/class-updraftplus.php:
|
291 |
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."
|
292 |
msgstr "Αυτό το σετ αντιγράφων ασφαλείας είναι αυτού του ιστότοπου, αλλά κατά τη στιγμή της δημιουργίας αντιγράφων ασφαλείας χρησιμοποιούσατε %s, ενώ ο ιστότοπος χρησιμοποιεί τώρα %s."
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
msgstr "Η διεύθυνση ιστότοπου στο αντίγραφο ασφαλείας (%s) είναι ελαφρώς διαφορετική από αυτή του ιστότοπου τώρα (%s). Αυτό δεν αναμένεται να αποτελέσει κάποιο πρόβλημα για την αποκατάσταση του ιστότοπου, εφόσον οι επισκέψεις στην προηγούμενη διεύθυνση εξακολουθούν να φθάνουν στον ιστότοπο."
|
297 |
|
@@ -311,15 +355,15 @@ msgstr "Η λειτουργία αποσφαλμάτωσης του UpdraftPlus
|
|
311 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
312 |
msgstr "Σφάλμα: Το επιλεγμένο αρχείο είναι κατεστραμμένο. Επιλέξτε ένα έγκυρο αρχείο εξαγωγής του UpdraftPlus."
|
313 |
|
314 |
-
#: src/admin.php:1368, src/admin.php:
|
315 |
-
#: src/class-updraftplus.php:
|
316 |
-
#: src/class-updraftplus.php:
|
317 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
318 |
msgstr "Έχει συμβεί ένα καίριο σφάλμα (%s) στην PHP: %s"
|
319 |
|
320 |
-
#: src/admin.php:1359, src/admin.php:
|
321 |
-
#: src/class-updraftplus.php:
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "A PHP exception (%s) has occurred: %s"
|
324 |
msgstr "Έχει γίνει εξαίρεση (%s) στην PHP: %s"
|
325 |
|
@@ -375,7 +419,7 @@ msgstr "Άμεση και ασφαλής σύνδεση με ένα κούνημ
|
|
375 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
376 |
msgstr "Όπως σας προειδοποιήσαμε προηγουμένως (δείτε:%s), η κρυπτογράφηση δεν αποτελεί πλέον χαρακτηριστικό της δωρεάν έκδοσης του UpdraftPlus"
|
377 |
|
378 |
-
#: src/admin.php:
|
379 |
msgid "Value"
|
380 |
msgstr "Αξία"
|
381 |
|
@@ -387,7 +431,7 @@ msgstr "Δεν γνωρίζετε πώς να διαγράψετε από αυτ
|
|
387 |
msgid "Encrypted login failed; trying non-encrypted"
|
388 |
msgstr "Η κρυπτογραφημένη σύνδεση απέτυχε, προσπάθεια μη κρυπτογραφημένης σύνδεσης"
|
389 |
|
390 |
-
#: src/addons/azure.php:
|
391 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
392 |
msgstr "Πρέπει να προσθέσετε τα ακόλουθα ως εξουσιοδοτημένο URI ανακατεύθυνσης στην κονσόλα Azure (κάτω από τις \"Ρυθμίσεις API\") όταν σας ζητηθεί"
|
393 |
|
@@ -399,11 +443,11 @@ msgstr "Αποθήκευση στο: %s"
|
|
399 |
msgid "Cloud Files"
|
400 |
msgstr "Αρχεία στο Σύννεφο"
|
401 |
|
402 |
-
#: src/admin.php:
|
403 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
404 |
msgstr "Οι ρυθμίσεις σας απέτυχαν να αποθηκευτούν. Ανανεώστε τη σελίδα ρυθμίσεων και δοκιμάστε ξανά"
|
405 |
|
406 |
-
#: src/admin.php:
|
407 |
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."
|
408 |
msgstr "Το UpdraftPlus φαίνεται να έχει ενημερωθεί στην έκδοση (%s), η οποία είναι διαφορετική από την εκδοχή που εκτελείται κατά τη φόρτωση αυτής της σελίδας ρυθμίσεων. Παρακαλούμε επαναφορτώστε τη σελίδα ρυθμίσεων πριν επιχειρήσετε να αποθηκεύσετε τις ρυθμίσεις."
|
409 |
|
@@ -412,11 +456,11 @@ msgstr "Το UpdraftPlus φαίνεται να έχει ενημερωθεί σ
|
|
412 |
msgid "UpdraftVault"
|
413 |
msgstr "UpdraftVault"
|
414 |
|
415 |
-
#: src/includes/class-wpadmin-commands.php:
|
416 |
msgid "archive"
|
417 |
msgstr "αρχείο"
|
418 |
|
419 |
-
#: src/includes/class-wpadmin-commands.php:
|
420 |
msgid "Extra database"
|
421 |
msgstr "Επιπρόσθετη βάση δεδομένων"
|
422 |
|
@@ -460,11 +504,11 @@ msgstr "Με το UpdraftPlus Premium, μπορείτε να κατεβάσετ
|
|
460 |
msgid "Browse contents"
|
461 |
msgstr "Περιήγηση περιεχομένων"
|
462 |
|
463 |
-
#: src/restorer.php:
|
464 |
msgid "Skipped tables:"
|
465 |
msgstr "Πίνακες που έχουν παραλειφθεί:"
|
466 |
|
467 |
-
#: src/class-updraftplus.php:
|
468 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
469 |
msgstr "Από αυτό το αντίγραφο ασφαλείας των βάσεων δεδομένων έχουν εξαιρέθει οι παρακάτω πίνακες της WordPress: %s"
|
470 |
|
@@ -673,14 +717,6 @@ msgstr "UpdraftPlus"
|
|
673 |
msgid "Recommended: optimize your database with WP-Optimize."
|
674 |
msgstr "Συνιστούμε: βελτιστοποιήστε τη βάση δεδομένων σας με το WP-Optimize."
|
675 |
|
676 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
677 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
678 |
-
msgstr "Όταν δημιουργήσετε αντίγραφο ασφαλείας της βάσης δεδομένων σας, σας συνιστούμε να εγκαταστήσετε το πρόσθετο WP-Optimize για να την εξομαλύνετε για την καλύτερη απόδοση του ιστότοπου."
|
679 |
-
|
680 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
681 |
-
msgid "WP-Optimize"
|
682 |
-
msgstr "WP-Optimize"
|
683 |
-
|
684 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
685 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
686 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -728,27 +764,7 @@ msgstr "Ευρώπη (Λονδίνο)"
|
|
728 |
msgid "Europe (Ireland)"
|
729 |
msgstr "Ευρώπη (Ιρλανδία)"
|
730 |
|
731 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
732 |
-
msgid "WP-Optimize (free)"
|
733 |
-
msgstr "WP-Optimize (δωρεάν)"
|
734 |
-
|
735 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
736 |
-
msgid "Explore our Cloud and Premium versions."
|
737 |
-
msgstr "Εξερευνήστε τις εκδόσεις Cloud και Premium."
|
738 |
-
|
739 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
740 |
-
msgid "Download it for free from WordPress.org"
|
741 |
-
msgstr "Κατεβάστε το δωρεάν από το WordPress.org"
|
742 |
-
|
743 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
744 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
745 |
-
msgstr "Μπορείτε ακόμη να το χρησιμοποιήσετε για να διαχειριστείτε και να ενημερώσετε κεντρικά όλα τα θέματα, plugins και τον πυρήνα της WordPress σε όλες τις τοποθεσίες σας χωρίς να συνδεθείτε σε αυτές!"
|
746 |
-
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
748 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
749 |
-
msgstr "Το UpdraftCentral είναι ένα ισχυρό πρόσθετο απομακρυσμένου ελέγχου για τη WordPress που σας επιτρέπει να ελέγχετε όλες τις εγκαταστάσεις και τα αντίγραφα ασφαλείας του UpdraftPlus από μια κεντρική τοποθεσία."
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
752 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
753 |
msgid "UpdraftCentral"
|
754 |
msgstr "UpdraftCentral"
|
@@ -960,11 +976,11 @@ msgstr "Εδώ, μπορείτε να εξαγάγετε τις ρυθμίσει
|
|
960 |
msgid "Export / import settings"
|
961 |
msgstr "Ρυθμίσεις εξαγωγής / εισαγωγής"
|
962 |
|
963 |
-
#: src/restorer.php:
|
964 |
msgid "Processing table (%s)"
|
965 |
msgstr "Επεξεργασία πίνακα (%s)"
|
966 |
|
967 |
-
#: src/restorer.php:
|
968 |
msgid "Backup of: %s"
|
969 |
msgstr "Αντίγραφο ασφαλείας του: %s"
|
970 |
|
@@ -972,11 +988,11 @@ msgstr "Αντίγραφο ασφαλείας του: %s"
|
|
972 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
973 |
msgstr "Ο πελάτης έχει διαγραφεί από την κονσόλα API του Google Drive. Δημιουργήστε ένα νέο έργο στο Google Drive και επανασυνδεθείτε με το UpdraftPlus."
|
974 |
|
975 |
-
#: src/methods/dropbox.php:
|
976 |
msgid "%s de-authentication"
|
977 |
msgstr "%s αποεπιβεβαίωση"
|
978 |
|
979 |
-
#: src/methods/dropbox.php:
|
980 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
981 |
msgstr "Πρέπει να προσθέσετε τα παρακάτω ως εξουσιοδοτημένο URI ανακατεύθυνσης στην κονσόλα Dropbox (κάτω από τις \"Ρυθμίσεις API\") όταν σας ζητηθεί"
|
982 |
|
@@ -1044,24 +1060,24 @@ msgstr "το πρότυπο δεν βρέθηκε"
|
|
1044 |
msgid "US East (Ohio)"
|
1045 |
msgstr "ΗΠΑ Ανατολή (Οχάιο)"
|
1046 |
|
1047 |
-
#: src/addons/onedrive.php:
|
1048 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1049 |
msgstr "Αυτός ο ιστότοπος χρησιμοποιεί μια διεύθυνση URL που είναι είτε μη HTTPS, είτε είναι τοπική διεύθυνση URL ή διεύθυνση URL 127.0.0.1. Ως εκ τούτου, πρέπει να χρησιμοποιήσετε την κύρια εφαρμογή %s %s για έλεγχο ταυτότητας με το λογαριασμό σας."
|
1050 |
|
1051 |
-
#: src/addons/onedrive.php:
|
1052 |
msgid "Account is not authorized (%s)."
|
1053 |
msgstr "Ο λογαριασμός δεν ειναι εξουσιοδοτημένος (%s)."
|
1054 |
|
1055 |
-
#: src/addons/onedrive.php:
|
1056 |
msgid "Your IP address:"
|
1057 |
msgstr "Η διεύθυνση IP σας:"
|
1058 |
|
1059 |
-
#: src/addons/onedrive.php:
|
1060 |
#: src/udaddons/updraftplus-addons.php:887
|
1061 |
msgid "To remove any block, please go here."
|
1062 |
msgstr "Για να αρθούν όλα τα εμπόδια, παρακαλώ πηγαίνετε εδώ."
|
1063 |
|
1064 |
-
#: src/addons/onedrive.php:
|
1065 |
msgid "An error response was received; HTTP code:"
|
1066 |
msgstr "Μια απάντηση σφάλματος ελήφθη. Κωδικός HTTP:"
|
1067 |
|
@@ -1089,27 +1105,27 @@ msgstr "Το OptimizePress 2.0 κωδικοποιεί τα περιεχόμεν
|
|
1089 |
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."
|
1090 |
msgstr "Από την εγκατάσταση της PHP λείπει η ενότητα OpenSSL ως εκ τούτου, αυτό μπορεί να πάρει μερικά λεπτά, αν δε γίνει τίποτα μέχρι τότε, τότε θα πρέπει είτε να δοκιμάσετε ένα μικρότερο μέγεθος κλειδιού, ή να ρωτήσετε την εταιρεία που έχετε το web hosting σας πώς να ενεργοποιήσετε αυτήν την ενότητα PHP στην εγκατάστασή σας."
|
1091 |
|
1092 |
-
#: src/addons/webdav.php:
|
1093 |
msgid "Path"
|
1094 |
msgstr "Διαδρομή"
|
1095 |
|
1096 |
-
#: src/addons/webdav.php:
|
1097 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1098 |
msgstr "Αφήστε το κενό για να χρησιμοποιήσετε το προεπιλεγμένο (80 για το WebDAV, 443 για webdavs)"
|
1099 |
|
1100 |
-
#: src/addons/webdav.php:
|
1101 |
msgid "Enter any path in the field below."
|
1102 |
msgstr "Εισάγετε μια διαδρομή στο παρακάτω πεδίο."
|
1103 |
|
1104 |
-
#: src/addons/webdav.php:
|
1105 |
msgid "A host name cannot contain a slash."
|
1106 |
msgstr "Ένα όνομα κεντρικού υπολογιστή δεν μπορεί να περιέχει κάθετο (slash)."
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "Protocol (SSL or not)"
|
1110 |
msgstr "Πρωτόκολλο (SSL ή όχι)"
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1114 |
msgstr "Αυτή η διεύθυνση URL του WebDAV δημιουργείται συμπληρώνοντας τις παρακάτω επιλογές. Αν δεν ξέρετε τις λεπτομέρειες, τότε θα πρέπει να ρωτήσετε τον παροχέα του WebDAV σας."
|
1115 |
|
@@ -1117,11 +1133,11 @@ msgstr "Αυτή η διεύθυνση URL του WebDAV δημιουργείτ
|
|
1117 |
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."
|
1118 |
msgstr "Ελήφθη ως απάντηση πως δεν υπάρχουν δεδομένα. Αυτό φανερώνει συνήθως ένα πρόβλημα σύνδεσης δικτύου (π.χ. ένα εξωτερικό τείχος προστασίας ή ένα υπερφορτωμένο δίκτυο) μεταξύ αυτής της ιστοσελίδας και του UpdraftPlus.com."
|
1119 |
|
1120 |
-
#: src/methods/s3.php:
|
1121 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1122 |
msgstr "Το κλειδί πρόσβασης AWS φαίνεται να είναι λάθος (τα έγκυρα κλειδιά πρόσβασης %s αρχίζουν με \"AK\")"
|
1123 |
|
1124 |
-
#: src/methods/s3.php:
|
1125 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1126 |
msgstr "Δε βρέθηκαν ρυθμίσεις - παρακαλούμε πηγαίνετε στην καρτέλα Ρυθμίσεις και ελέγξτε τις ρυθμίσεις σας"
|
1127 |
|
@@ -1227,7 +1243,7 @@ msgstr "Θα πρέπει να γνωρίζετε ότι οι διακομιστ
|
|
1227 |
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."
|
1228 |
msgstr "Αυτό το αρχείο αντιγράφων ασφαλείας έχει μέγεθος %s MB - η προσπάθεια να το στείλετε αυτό μέσω ηλεκτρονικού ταχυδρομείου είναι πιθανό να αποτύχει (ελάχιστοι e-mail servers επιτρέπουν συνημμένα αρχεία αυτού του μεγέθους). Αν ναι, θα πρέπει να σκεφτείτε να κάνετε χρήση μιας διαφορετικής μεθόδου απομακρυσμένης αποθήκευσης."
|
1229 |
|
1230 |
-
#: src/class-updraftplus.php:
|
1231 |
msgid "Size: %s MB"
|
1232 |
msgstr "Μέγεθος: %s MB"
|
1233 |
|
@@ -1239,7 +1255,7 @@ msgstr "Το UpdraftPlus θα χωρίσει τα αντίγραφα ασφαλ
|
|
1239 |
msgid "Now"
|
1240 |
msgstr "Τώρα"
|
1241 |
|
1242 |
-
#: src/class-updraftplus.php:
|
1243 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1244 |
msgstr "Θα πρέπει να ενεργοποιήσετε το %s για να λειτουργήσουν τα pretty permalinks (e.g. %s)"
|
1245 |
|
@@ -1345,11 +1361,11 @@ msgstr "Η σύνδεση με το UpdraftCentral έγινε επιτυχώς."
|
|
1345 |
msgid "UpdraftCentral Connection"
|
1346 |
msgstr "Σύνδεση στο UpdraftCentral "
|
1347 |
|
1348 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1349 |
msgid "The backup was aborted by the user"
|
1350 |
msgstr "Η λήψη αντιγράφου ασφαλείας ακυρώθηκε από το χρήστη"
|
1351 |
|
1352 |
-
#: src/admin.php:
|
1353 |
msgid "Your settings have been saved."
|
1354 |
msgstr "Οι ρυθμίσεις έχουν αποθηκευτεί."
|
1355 |
|
@@ -1415,7 +1431,7 @@ msgstr "Δημιουργία..."
|
|
1415 |
msgid "Asia Pacific (Seoul)"
|
1416 |
msgstr "Ασίας Ειρηνικού (Σεούλ)"
|
1417 |
|
1418 |
-
#: src/restorer.php:
|
1419 |
msgid "Uploads URL:"
|
1420 |
msgstr "URL Μεταφορτώσεων:"
|
1421 |
|
@@ -1423,15 +1439,15 @@ msgstr "URL Μεταφορτώσεων:"
|
|
1423 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1424 |
msgstr "Το απαραίτητο PHP module %s δεν είναι εγκατεστημένο - επικοινωνήστε με την εταιρεία παροχής web hosting σας για να το ενεργοποιήσετε."
|
1425 |
|
1426 |
-
#: src/class-updraftplus.php:
|
1427 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1428 |
msgstr "Η εισαγωγή ενός συνηθισμένου ιστότοπου WordPress σε μια εγκατάσταση πολλαπλών ιστοτόπων απαιτεί το %s."
|
1429 |
|
1430 |
-
#: src/class-updraftplus.php:
|
1431 |
msgid "Please read this link for important information on this process."
|
1432 |
msgstr "Παρακαλούμε διαβάστε αυτό το σύνδεσμο για σημαντικές πληροφορίες σχετικά με αυτή τη διαδικασία."
|
1433 |
|
1434 |
-
#: src/class-updraftplus.php:
|
1435 |
msgid "It will be imported as a new site."
|
1436 |
msgstr "Θα εισαχθεί σαν καινούριος ιστότοπος."
|
1437 |
|
@@ -1505,7 +1521,7 @@ msgstr "Κλήση ενέργειας του WordPress:"
|
|
1505 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1506 |
msgstr "Οι αποθηκευμένες ρυθμίσεις σας επηρεάζουν και τι θα συμπεριληφθεί στο αντίγραφο ασφαλείας - π.χ. αρχεία που αποκλείονται."
|
1507 |
|
1508 |
-
#: src/admin.php:
|
1509 |
msgid "Skipping: this archive was already restored."
|
1510 |
msgstr "Παράκαμψη: Το αρχείο έχει ήδη αποκατασταθεί."
|
1511 |
|
@@ -1537,23 +1553,23 @@ msgstr "Στη συνέχεια, θα πρέπει να εισάγετε ξαν
|
|
1537 |
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)."
|
1538 |
msgstr "Αυτό το κουμπί θα διαγράψει όλες τις ρυθμίσεις του UpdraftPlus καθώς και τις πληροφορίες προόδου για την δημιουργία αντιγράφων ασφαλείας που βρίσκεται σε εξέλιξη (αλλά όχι οποιοδήποτε από τα υπάρχοντα αντίγραφα ασφαλείας σας από το σημείο αποθήκευσής σας)."
|
1539 |
|
1540 |
-
#: src/admin.php:
|
1541 |
msgid "Send this backup to remote storage"
|
1542 |
msgstr "Αποστολή αυτού του αντιγράφου ασφαλείας στο σημείο απομακρυσμένης αποθήκευσης"
|
1543 |
|
1544 |
-
#: src/admin.php:
|
1545 |
msgid "Check out UpdraftPlus Vault."
|
1546 |
msgstr "Δείτε το UpdraftPlus Vault."
|
1547 |
|
1548 |
-
#: src/admin.php:
|
1549 |
msgid "Not got any remote storage?"
|
1550 |
msgstr "Δεν έχετε ακόμα κανένα λογαριασμό σε σημείο απομακρυσμένης αποθήκευσης;"
|
1551 |
|
1552 |
-
#: src/admin.php:
|
1553 |
msgid "settings"
|
1554 |
msgstr "ρυθμίσεις"
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1558 |
msgstr "Το αντίγραφο ασφαλείας δεν θα αποσταλεί σε κάθε απομακρυσμένη αποθήκευση - καμία δεν έχει αποθηκευτεί στο %s"
|
1559 |
|
@@ -1610,23 +1626,23 @@ msgstr "Επεκτάσεις"
|
|
1610 |
msgid "Advanced Tools"
|
1611 |
msgstr "Προηγμένα εργαλεία"
|
1612 |
|
1613 |
-
#: src/addons/googlecloud.php:
|
1614 |
msgid "Bucket location"
|
1615 |
msgstr "Τοποθεσία φακέλου"
|
1616 |
|
1617 |
-
#: src/addons/googlecloud.php:
|
1618 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1619 |
msgstr "Σημειώστε ότι η Google δεν υποστηρίζει κάθε κατηγορίας αποθήκευσης σε κάθε θέση - θα πρέπει να διαβάσετε την τεκμηρίωσή τους για να ενημερωθείτε για τις τρέχουσες διαθεσιμότητες."
|
1620 |
|
1621 |
-
#: src/addons/googlecloud.php:
|
1622 |
msgid "This setting applies only when a new bucket is being created."
|
1623 |
msgstr "Αυτή η ρύθμιση ισχύει μόνο όταν ένας καινούριος φάκελος δημιουργείται."
|
1624 |
|
1625 |
-
#: src/addons/googlecloud.php:
|
1626 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1627 |
msgstr "Θα πρέπει να χρησιμοποιήσετε ένα όνομα φακέλου που να είναι μοναδικό, για όλους τους %s χρήστες."
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "Do not confuse %s with %s - they are separate things."
|
1631 |
msgstr "Μη συγχέετε το %s με το %s - είναι διαφορετικά πράγματα."
|
1632 |
|
@@ -1688,48 +1704,48 @@ msgstr "Ανθεκτικό μειωμένης διαθεσιμότητας"
|
|
1688 |
msgid "Standard"
|
1689 |
msgstr "Κανονικό"
|
1690 |
|
1691 |
-
#: src/addons/azure.php:
|
1692 |
msgid "container"
|
1693 |
msgstr "φάκελος"
|
1694 |
|
1695 |
-
#: src/addons/azure.php:
|
1696 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1697 |
msgstr "Μπορείτε να εισαγάγετε τη διαδρομή του οποιουδήποτε %s εικονικού φακέλου που θέλετε να χρησιμοποιήσετε εδώ."
|
1698 |
|
1699 |
-
#: src/addons/azure.php:
|
1700 |
msgid "optional"
|
1701 |
msgstr "προαιρετικό"
|
1702 |
|
1703 |
-
#: src/addons/azure.php:
|
1704 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1705 |
msgstr "Δείτε τις οδηγίες της Microsoft σχετικά με την ονομασία του φακέλου ακολουθώντας αυτό το σύνδεσμο."
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "Enter the path of the %s you wish to use here."
|
1709 |
msgstr "Εισάγετε τη διαδρομή του %s που θέλετε να χρησιμοποιήσετε εδώ."
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1713 |
msgstr "Αυτή δεν είναι η σύνδεσή σας στο Azure σας - δείτε τις οδηγίες αν χρειάζεστε περισσότερες πληροφορίες."
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
-
#: src/addons/azure.php:
|
1717 |
msgid "Azure"
|
1718 |
msgstr "Azure"
|
1719 |
|
1720 |
-
#: src/addons/azure.php:
|
1721 |
msgid "Create Azure credentials in your Azure developer console."
|
1722 |
msgstr "Δημιουργία διαπιστευτήριων Azure στην κονσόλα προγραμματιστή του Azure σας."
|
1723 |
|
1724 |
-
#: src/addons/azure.php:
|
1725 |
msgid "Could not create the container"
|
1726 |
msgstr "Αδυναμία δημιουργίας του φακέλου"
|
1727 |
|
1728 |
-
#: src/addons/azure.php:
|
1729 |
msgid "Could not access container"
|
1730 |
msgstr "Αδυναμία πρόσβασης στο φάκελο"
|
1731 |
|
1732 |
-
#: src/class-updraftplus.php:
|
1733 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1734 |
msgstr "Για να ολοκληρωθεί η μετανάστευση/κλωνοποίηση, θα πρέπει τώρα να συνδεθείτε με την απομακρυσμένη τοποθεσία και να αποκαταστήσετε το σύνολο αντιγράφων ασφαλείας."
|
1735 |
|
@@ -1757,47 +1773,47 @@ msgstr "είναι απαραίτητο για μερικούς πάροχους
|
|
1757 |
msgid "Not installed"
|
1758 |
msgstr "Δεν εγκαταστάθηκε"
|
1759 |
|
1760 |
-
#: src/addons/googlecloud.php:
|
1761 |
msgid "Storage class"
|
1762 |
msgstr "Κατηγορία αποθήκευσης"
|
1763 |
|
1764 |
-
#: src/addons/googlecloud.php:
|
1765 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1766 |
msgstr "Δείτε τις οδηγίες της Google σχετικά με την ονοματοθεσία των φακέλων ακολουθώντας αυτό το σύνδεσμο."
|
1767 |
|
1768 |
-
#: src/addons/googlecloud.php:
|
1769 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1770 |
msgstr "Εισάγετε το όνομα του φακέλου %s επιθυμείτε να χρησιμοποιήσετε εδώ."
|
1771 |
|
1772 |
-
#: src/addons/googlecloud.php:
|
1773 |
msgid "Bucket"
|
1774 |
msgstr "Φάκελος"
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Otherwise, you can leave it blank."
|
1778 |
msgstr "Αλλιώς, μπορείτε να το αφήσετε κενό."
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1782 |
msgstr "Σημείωση: Αυτό είναι απαραίτητο μόνο αν δεν έχετε ήδη δημιουργήσει το φάκελο και θέλετε το UpdraftPlus να το δημιουργήσει για εσάς."
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "Enter the ID of the %s project you wish to use here."
|
1786 |
msgstr "Εισάγετε την ταυτότητα του σχεδίου %s που επιθυμείτε να χρησιμοποιήσετε εδώ."
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1790 |
msgstr "Ακολουθήστε αυτό το σύνδεσμο για την Google API Console σας, και εκεί ενεργοποιήστε το API της αποθήκευσης και δημιουργήσετε ένα Αναγνωριστικό Πελάτη στο Τμήμα Πρόσβασης API."
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1794 |
msgstr "Θα πρέπει να εισάγετε την Ταυτότητα Σχεδίου για να μπορέσετε να δημιουργήσετε ένα νέο φάκελο."
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "Project ID"
|
1798 |
msgstr "Ταυτότητα Σχεδίου"
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "You must save and authenticate before you can test your settings."
|
1802 |
msgstr "Θα πρέπει να αποθηκεύσετε και να επικυρώσετε τις ρυθμίσεις σας πριν μπορέσετε να τις ελέγξετε."
|
1803 |
|
@@ -1806,22 +1822,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1806 |
msgstr "Δεν έχετε αποκτήσει ακόμη τεκμήριο πρόσβασης από το Google - θα πρέπει να επιτρέψετε ή να επιτρέψετε εκ νέου τη σύνδεσή σας στο Google Cloud."
|
1807 |
|
1808 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1809 |
-
#: src/addons/googlecloud.php:
|
1810 |
msgid "You do not have access to this bucket."
|
1811 |
msgstr "Δεν έχετε πρόσβαση σε αυτόν το φάκελο."
|
1812 |
|
1813 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1814 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1815 |
-
#: src/addons/googlecloud.php:
|
1816 |
-
#: src/addons/googlecloud.php:
|
1817 |
-
#: src/addons/googlecloud.php:
|
1818 |
-
#: src/addons/googlecloud.php:
|
1819 |
msgid "Google Cloud"
|
1820 |
msgstr "Google Cloud"
|
1821 |
|
1822 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1823 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1824 |
-
#: src/addons/googlecloud.php:
|
1825 |
msgid "%s Service Exception."
|
1826 |
msgstr "%s Εξαίρεση Υπηρεσίας."
|
1827 |
|
@@ -1829,7 +1845,7 @@ msgstr "%s Εξαίρεση Υπηρεσίας."
|
|
1829 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1830 |
msgstr "Το UpdraftPlus δεν έχει εγκατασταθεί πλήρως - παρακαλώ απεγκαταστήσετε και εγκαταστήσετε το ξανά. Το πιο πιθανό είναι πως κάποια δυσλειτουργία συνέβη στη WordPress κατά την αντιγραφή των αρχείων του πρόσθετου."
|
1831 |
|
1832 |
-
#: src/restorer.php:
|
1833 |
msgid "Deferring..."
|
1834 |
msgstr "Αναβολή..."
|
1835 |
|
@@ -1898,11 +1914,11 @@ msgstr "(τόσο όσα επιθυμείτε)"
|
|
1898 |
msgid "Add an additional retention rule..."
|
1899 |
msgstr "Προσθέστε ένα πρόσθετο κανόνα διατήρησης..."
|
1900 |
|
1901 |
-
#: src/restorer.php:
|
1902 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1903 |
msgstr "Αυτή η βάση δεδομένων θα πρέπει να αναπτυχθεί σε μια έκδοση %s της MySQL ή μεταγενέστερη."
|
1904 |
|
1905 |
-
#: src/restorer.php:
|
1906 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1907 |
msgstr "Αυτό το πρόβλημα προκαλείται από την προσπάθεια να αποκατασταθεί μια βάση δεδομένων σε μια πολύ παλιά έκδοση της MySQL η οποία είναι ασύμβατη με τη βάση δεδομένων προέλευσης."
|
1908 |
|
@@ -1910,11 +1926,11 @@ msgstr "Αυτό το πρόβλημα προκαλείται από την πρ
|
|
1910 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1911 |
msgstr "Δεν έχετε επί του παρόντος κανένα ποσοστό χώρου στο UpdraftPlus Vault"
|
1912 |
|
1913 |
-
#: src/class-updraftplus.php:
|
1914 |
msgid "You must upgrade MySQL to be able to use this database."
|
1915 |
msgstr "Θα πρέπει να αναβαθμίσετε τη MySQL να είναι σε θέση να χρησιμοποιήσετε αυτή τη βάση δεδομένων."
|
1916 |
|
1917 |
-
#: src/class-updraftplus.php:
|
1918 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1919 |
msgstr "Η βάση δεδομένων των αντιγράφων ασφαλείας χρησιμοποιεί χαρακτηριστικά της MySQL που δεν είναι διαθέσιμα στην παλιά έκδοση της MySQL (%s) πάνω στην οποία τρέχει αυτή η σελίδα."
|
1920 |
|
@@ -2092,8 +2108,8 @@ msgstr "Η αγορά που κάνατε για το UpdraftPlus Premium έγι
|
|
2092 |
msgid "Updraft Vault"
|
2093 |
msgstr "Updraft Vault"
|
2094 |
|
2095 |
-
#: src/addons/azure.php:
|
2096 |
-
#: src/addons/googlecloud.php:
|
2097 |
msgid "Delete failed:"
|
2098 |
msgstr "Η διαγραφή απέτυχε:"
|
2099 |
|
@@ -2129,10 +2145,6 @@ msgstr "Θα πρέπει να ελέγξετε ότι η απομακρυσμέ
|
|
2129 |
msgid "Existing keys"
|
2130 |
msgstr "Υπάρχοντα κλειδιά"
|
2131 |
|
2132 |
-
#: src/addons/migrator.php:2423
|
2133 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2134 |
-
msgstr "Δεν έχουν δημιουργηθεί ακόμα κλειδιά για να επιτρέψουν σε απομακρυσμένες σελίδες να συνδεθούν."
|
2135 |
-
|
2136 |
#: src/addons/migrator.php:2405
|
2137 |
msgid "Your new key:"
|
2138 |
msgstr "Το νέο σας κλειδί:"
|
@@ -2338,7 +2350,7 @@ msgstr "Προσθήκη..."
|
|
2338 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2339 |
msgstr "Το αίτημά σας δεν μπορεί να ικανοποιηθεί. Μήπως έχετε ήδη χρησιμοποιήσει αυτή την αγορά κάπου αλλού ή η περίοδος για την οποία έχετε πληρώσει για λήψη από updraftplus.com έχει λήξει;"
|
2340 |
|
2341 |
-
#: src/restorer.php:
|
2342 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2343 |
msgstr "Για να χρησιμοποιήσετε αυτό το αντίγραφο ασφαλείας, ο διακομιστής της βάσης δεδομένων πρέπει να υποστηρίζει το σύνολο χαρακτήρων %s."
|
2344 |
|
@@ -2370,41 +2382,41 @@ msgstr "Για να επαναφέρετε τη χρήση οποιουδήπο
|
|
2370 |
msgid "You have made changes to your settings, and not saved."
|
2371 |
msgstr "Έχετε κάνει αλλαγές στις ρυθμίσεις σας και δεν τις έχετε αποθηκεύσει."
|
2372 |
|
2373 |
-
#: src/addons/onedrive.php:
|
2374 |
msgid "N.B. %s is not case-sensitive."
|
2375 |
msgstr "N.B. %s δεν είναι case-sensitive."
|
2376 |
|
2377 |
-
#: src/addons/onedrive.php:
|
2378 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2379 |
msgstr "Αν OneDrive σας δείχνει αργότερα το μήνυμα \"unauthorized_client\", τότε δεν έχετε εισάγετε ένα έγκυρο αναγνωριστικό πελάτη εδώ."
|
2380 |
|
2381 |
-
#: src/addons/azure.php:
|
2382 |
-
#: src/addons/onedrive.php:
|
2383 |
msgid "For longer help, including screenshots, follow this link."
|
2384 |
msgstr "Για μεγαλύτερη βοήθεια, καθώς και στιγμιότυπα οθόνης, ακολουθήστε αυτό το σύνδεσμο."
|
2385 |
|
2386 |
-
#: src/addons/onedrive.php:
|
2387 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2388 |
msgstr "Δημιουργήστε διαπιστευτήρια στο OneDrive στην κονσόλα προγραμματιστή του OneDrive σας."
|
2389 |
|
2390 |
-
#: src/addons/onedrive.php:
|
2391 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2392 |
msgstr "Θα πρέπει να προσθέσετε το ακόλουθο ως εξουσιοδοτημένη ανακατεύθυνση URI στην κονσόλα του OneDrive σας (στις \"Ρυθμίσεις API») όταν ρωτηθείτε"
|
2393 |
|
2394 |
-
#: src/addons/azure.php:
|
2395 |
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)."
|
2396 |
msgstr "Το Microsoft Azure δεν είναι συμβατό με ιστοσελίδες που φιλοξενούνται σε localhost ή URL 127.0.0.1 - οι ρυθμίσεις τους απαγορεύουν την πρόσβαση σε αυτά (η τρέχουσα διεύθυνση URL είναι: %s)."
|
2397 |
|
2398 |
-
#: src/addons/onedrive.php:
|
2399 |
msgid "%s authorisation failed:"
|
2400 |
msgstr "%s η αυθεντικοποίηση απέτυχε:"
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
-
#: src/addons/onedrive.php:
|
2404 |
msgid "OneDrive"
|
2405 |
msgstr "OneDrive"
|
2406 |
|
2407 |
-
#: src/addons/onedrive.php:
|
2408 |
msgid "Please re-authorize the connection to your %s account."
|
2409 |
msgstr "Παρακαλούμε κάντε εκ νέου σύνδεση με το λογαριασμό σας %s."
|
2410 |
|
@@ -2412,7 +2424,7 @@ msgstr "Παρακαλούμε κάντε εκ νέου σύνδεση με το
|
|
2412 |
msgid "configure it here"
|
2413 |
msgstr "κάντε διαμόρφωση εδώ"
|
2414 |
|
2415 |
-
#: src/addons/onedrive.php:
|
2416 |
msgid "To remove the block, please go here."
|
2417 |
msgstr "Για να διαγράψετε αυτό το μπλοκ, παρακαλούμε πηγαίνετε εδώ."
|
2418 |
|
@@ -2557,74 +2569,66 @@ msgstr "Θα πρέπει να εισάγετε ένα κλειδί πρόσβα
|
|
2557 |
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)"
|
2558 |
msgstr "Εάν έχετε ένα διαχειριστή AWS, τότε μπορείτε να χρησιμοποιήσετε αυτόν τον οδηγό για να δημιουργήσετε γρήγορα έναν νέο AWS (ΙΑΜ) χρήστη με πρόσβαση μόνο σε αυτόν το bucket (και όχι ολόκληρο το λογαριασμό σας)"
|
2559 |
|
2560 |
-
#: src/methods/s3.php:
|
2561 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2562 |
msgstr "Για να δημιουργήσετε ένα νέο ΙΑΜ υπο-χρήστη και κλειδί πρόσβασης που έχει πρόσβαση μόνο σε αυτόν το bucket, χρησιμοποιήστε αυτό το πρόσθετο."
|
2563 |
|
2564 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2565 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2566 |
msgstr "Για προσωπική υποστήριξη, τη δυνατότητα να αντιγράψετε ιστοσελίδες, περισσότερους προορισμούς αποθήκευσης, κρυπτογραφημένα αντίγραφα ασφαλείας για ασφάλεια, πολλαπλούς προορισμούς δημιουργίας αντιγράφων ασφαλείας, καλύτερες αναφορές, χωρίς διαφημίσεις και πολλά περισσότερα, ρίξτε μια ματιά στην έκδοση premium της UpdraftPlus - το πιο δημοφιλές πρόσθετο λήψης αντιγράφων ασφαλείας στον κόσμο."
|
2567 |
|
2568 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2569 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2570 |
msgstr "Ειδήσεις του UpdraftPlus, υψηλής ποιότητας εκπαιδευτικό υλικό για προγραμματιστές του WordPress και ιδιοκτήτες ιστοσελίδων, και γενικά ειδήσεις για το WordPress. Μπορείτε να απο-εγγραφείτε οποιαδήποτε χρονική στιγμή."
|
2571 |
|
2572 |
-
#: src/addons/onedrive.php:
|
2573 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2574 |
#: src/udaddons/updraftplus-addons.php:887
|
2575 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2576 |
msgstr "Αυτό πιθανότατα σημαίνει ότι μοιράζεστε ένα διακομιστή με μια παραβιασμένη από χάκερς ιστοσελίδα η οποία έχει χρησιμοποιηθεί σε προηγούμενες επιθέσεις."
|
2577 |
|
2578 |
-
#: src/addons/onedrive.php:
|
2579 |
#: src/udaddons/updraftplus-addons.php:887
|
2580 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2581 |
msgstr "Φαίνεται ότι η διεύθυνση IP του web server σας (%s) είναι μπλοκαρισμένη."
|
2582 |
|
2583 |
-
#: src/addons/onedrive.php:
|
2584 |
#: src/udaddons/updraftplus-addons.php:887
|
2585 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2586 |
msgstr "Το UpdraftPlus.com απάντησε με \"Δεν επιτρέπεται η πρόσβαση\"."
|
2587 |
|
2588 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2589 |
msgid "Premium WooCommerce plugins"
|
2590 |
msgstr "Premium πρόσθετα WooCommerce"
|
2591 |
|
2592 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2593 |
msgid "Free two-factor security plugin"
|
2594 |
msgstr "Δωρεάν πρόσθετο ασφαλείας δύο παραγόντων"
|
2595 |
|
2596 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2597 |
-
msgid "More
|
2598 |
-
msgstr "
|
2599 |
|
2600 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2601 |
msgid "Go to the shop."
|
2602 |
msgstr "Πηγαίνετε στο κατάστημα."
|
2603 |
|
2604 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2605 |
msgid "Compare with the free version"
|
2606 |
msgstr "Συγκρίνετε με την δωρεάν έκδοση"
|
2607 |
|
2608 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2609 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2610 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2611 |
msgid "UpdraftPlus Premium"
|
2612 |
msgstr "UpdraftPlus Premium"
|
2613 |
|
2614 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2615 |
-
msgid "Follow this link to sign up."
|
2616 |
-
msgstr "Ακολουθήστε αυτό το σύνδεσμο για να εγγραφείτε."
|
2617 |
-
|
2618 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
2619 |
msgid "Free Newsletter"
|
2620 |
msgstr "Δωρεάν Newsletter"
|
2621 |
|
2622 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
2623 |
-
msgid "Thank you for backing up with UpdraftPlus!"
|
2624 |
-
msgstr "Σας ευχαριστούμε που δημιουργείτε αντίγραφα ασφαλείας με το UpdraftPlus!"
|
2625 |
-
|
2626 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2627 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2628 |
msgid "Dismiss (for %s months)"
|
2629 |
msgstr "Να απορριφθεί (για %s μήνες)"
|
2630 |
|
@@ -2665,8 +2669,8 @@ msgstr "Πλήρης κατάλογος χαρακτηριστικών"
|
|
2665 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2666 |
msgstr "Δημιουργία αντιγράφων ασφαλείας (κατά περίπτωση) πρόσθετων, θεμάτων και της βάσης δεδομένων της WordPress με το UpdraftPlus πριν από την ενημέρωση"
|
2667 |
|
2668 |
-
#: src/methods/s3.php:
|
2669 |
-
#: src/methods/s3.php:
|
2670 |
msgid "%s Error: Failed to initialise"
|
2671 |
msgstr "%s Σφάλμα: Αποτυχία στην εκκίνηση"
|
2672 |
|
@@ -2711,7 +2715,7 @@ msgctxt "i.e. Non-automatic"
|
|
2711 |
msgid "Manual"
|
2712 |
msgstr "Χειροκίνητα"
|
2713 |
|
2714 |
-
#: src/restorer.php:
|
2715 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2716 |
msgid "An error (%s) occurred:"
|
2717 |
msgstr "Ένα σφάλμα (%s) συνέβη:"
|
@@ -2852,7 +2856,7 @@ msgstr "Ανεβάστε τα αρχεία στο UpdraftPlus."
|
|
2852 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2853 |
msgstr "Το κουμπί «Δημιουργία Αντιγράφων ασφαλείας\" είναι απενεργοποιημένο διότι ο κατάλογος αποθήκευσης των αντιγράφων ασφαλείας σας δεν είναι εγγράψιμος (πηγαίνετε στην καρτέλα «Ρυθμίσεις» όπου θα βρείτε τη σχετική επιλογή)."
|
2854 |
|
2855 |
-
#: src/class-updraftplus.php:
|
2856 |
msgid "Backup label:"
|
2857 |
msgstr "Ετικέτα αντιγράφων ασφαλείας:"
|
2858 |
|
@@ -2876,7 +2880,7 @@ msgstr "Συνέβη ένα σφάλμα κατά τη συμπίεση zip"
|
|
2876 |
msgid "Your label for this backup (optional)"
|
2877 |
msgstr "Η ετικέτα σας για αυτό το αντίγραφο ασφαλείας (προαιρετικό)"
|
2878 |
|
2879 |
-
#: src/addons/googlecloud.php:
|
2880 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2881 |
msgstr "%s δεν επιτρέπει την έγκριση σε σελίδες που φιλοξενούνται σε απευθείας διευθύνσεις IP. Θα πρέπει να αλλάξετε τη διεύθυνση του δικτυακού σας τόπου (%s) για να μπορέσετε να χρησιμοποιήσετε το %s για την αποθήκευση."
|
2882 |
|
@@ -2896,11 +2900,11 @@ msgstr "Πρέπει να εισάγετε και email και κωδικό"
|
|
2896 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2897 |
msgstr "Για να συνεχίσετε, πατήστε το πλήκτρο «Δημιουργία αντιγράφων ασφαλείας τώρα». Στη συνέχεια, παρακολουθήστε το πεδίο «Τελευταίο Μήνυμα Καταγραφής» για να δείτε την εξέλιξη."
|
2898 |
|
2899 |
-
#: src/class-updraftplus.php:
|
2900 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2901 |
msgstr "Εάν θέλετε να επαναφέρετε ένα multisite αντίγραφο ασφαλείας, θα πρέπει πρώτα να ρυθμίσετε αντίστοιχα και την εγκατάσταση του WordPress σας ως multisite."
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2905 |
msgstr "Το αντίγραφο ασφαλείας σας είναι από μια multisite εγκατάσταση του WordPress, αλλά αυτό το site δεν είναι. Μόνο η πρώτη σελίδα του δικτύου θα είναι προσβάσιμη."
|
2906 |
|
@@ -2937,19 +2941,19 @@ msgstr "Δεν έχετε ακόμη συνδεθεί με το λογαριασ
|
|
2937 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2938 |
msgstr "Θα πρέπει να συνδεθείτε για να λαμβάνετε τις μελλοντικές ενημερώσεις για το UpdraftPlus."
|
2939 |
|
2940 |
-
#: src/class-updraftplus.php:
|
2941 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2942 |
msgstr "Όλες οι αιτήσεις υποστήριξης που έχουν να κάνουν με το %s πρέπει να γίνουν προς την εταιρεία web hosting σας."
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
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."
|
2946 |
msgstr "Θα πρέπει να συνεχίσετε μόνο αν δεν μπορείτε να ενημερώσετε τον τρέχοντα server και είστε βέβαιοι (ή διατεθειμένοι να διακινδυνεύσετε) ότι τα πρόσθετα/θέματα/κλπ. είναι συμβατά με την παλαιότερη %s έκδοση."
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2950 |
msgstr "Αυτός είναι πολύ νεότερος από τον server στον οποίο τώρα κάνετε αποκατάσταση (έκδοση %s)."
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2954 |
msgstr "Η ιστοσελίδα σε αυτό το αντίγραφο ασφαλείας έτρεχε σε ένα διακομιστή με έκδοση %s of %s. "
|
2955 |
|
@@ -2994,7 +2998,7 @@ msgstr "Πατήστε εδώ για να κοιτάξετε μέσα στον
|
|
2994 |
msgid "Start backup"
|
2995 |
msgstr "Έναρξη λήψης αντιγράφου ασφαλείας"
|
2996 |
|
2997 |
-
#: src/class-updraftplus.php:
|
2998 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
2999 |
msgstr "Χρησιμοποιείτε το διακομιστή %s, αλλά δεν φαίνεται να έχει φορτωθεί η μονάδα %s."
|
3000 |
|
@@ -3030,7 +3034,7 @@ msgstr "Πες μου περισσότερα για δημιουργία αντ
|
|
3030 |
msgid "Memory limit"
|
3031 |
msgstr "Περιορισμός μνήμης"
|
3032 |
|
3033 |
-
#: src/class-updraftplus.php:
|
3034 |
msgid "restoration"
|
3035 |
msgstr "αποκατάσταση"
|
3036 |
|
@@ -3093,7 +3097,7 @@ msgstr "Εύρεση / αντικατάσταση βάσης δεδομένων"
|
|
3093 |
msgid "search term"
|
3094 |
msgstr "όρος αναζήτησης"
|
3095 |
|
3096 |
-
#: src/restorer.php:
|
3097 |
msgid "Too many database errors have occurred - aborting"
|
3098 |
msgstr "Βρέθηκαν πολλά λάθη στη βάση δεδομένων - γίνεται ματαίωση"
|
3099 |
|
@@ -3129,7 +3133,7 @@ msgstr "%s (%s χρησιμοποιημένος)"
|
|
3129 |
msgid "Free disk space in account:"
|
3130 |
msgstr "Ελεύθερος χώρος στο δίσκο για το λογαριασμό:"
|
3131 |
|
3132 |
-
#: src/admin.php:
|
3133 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3134 |
msgstr "Αυτό το κουμπί είναι απενεργοποιημένο, επειδή ο κατάλογος για την αποθήκευση του αντιγράφου ασφαλείας σας δεν είναι εγγράψιμος (δείτε τις ρυθμίσεις)."
|
3135 |
|
@@ -3224,7 +3228,7 @@ msgstr "πάροχος"
|
|
3224 |
msgid "user"
|
3225 |
msgstr "χρήστης"
|
3226 |
|
3227 |
-
#: src/class-updraftplus.php:
|
3228 |
msgid "External database (%s)"
|
3229 |
msgstr "Εξωτερική βάση δεδομένων (%s)"
|
3230 |
|
@@ -3236,8 +3240,8 @@ msgstr "Ακολουθήστε αυτό το σύνδεσμο για την κο
|
|
3236 |
msgid "failed to access parent folder"
|
3237 |
msgstr "αδυναμία πρόσβασης στο γονικό φάκελο"
|
3238 |
|
3239 |
-
#: src/addons/googlecloud.php:
|
3240 |
-
#: src/addons/onedrive.php:
|
3241 |
msgid "However, subsequent access attempts failed:"
|
3242 |
msgstr "Ωστόσο, οι επόμενες προσπάθειες πρόσβασης απέτυχαν:"
|
3243 |
|
@@ -3273,7 +3277,7 @@ msgstr "Δεν θέλετε να κατασκοπεύουν; Το UpdraftPlus Pr
|
|
3273 |
msgid "use UpdraftPlus Premium"
|
3274 |
msgstr "χρησιμοποιήστε το UpdraftPlus Premium"
|
3275 |
|
3276 |
-
#: src/class-updraftplus.php:
|
3277 |
msgid "Decryption failed. The database file is encrypted."
|
3278 |
msgstr "Η αποκρυπτογράφηση απέτυχε. Η βάση δεδομένων είναι κρυπτογραφημένη."
|
3279 |
|
@@ -3281,8 +3285,8 @@ msgstr "Η αποκρυπτογράφηση απέτυχε. Η βάση δεδο
|
|
3281 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3282 |
msgstr "Μόνο η βάση δεδομένων του WordPress μπορεί να αποκατασταθεί, θα πρέπει να ασχοληθείτε με την εξωτερική βάση δεδομένων με μη αυτόματο τρόπο."
|
3283 |
|
3284 |
-
#: src/restorer.php:
|
3285 |
-
#: src/restorer.php:
|
3286 |
msgid "An error occurred on the first %s command - aborting run"
|
3287 |
msgstr "Παρουσιάστηκε σφάλμα στην πρώτης %s εντολή - ματαίωση εκτέλεσης"
|
3288 |
|
@@ -3302,17 +3306,17 @@ msgstr "Προσοχή: η διεύθυνση URL της βάσης δεδομέ
|
|
3302 |
msgid "In %s, path names are case sensitive."
|
3303 |
msgstr "Στο %s, και στα ονόματα διαδρομής γίνεται διάκριση πεζών - κεφαλαίων."
|
3304 |
|
3305 |
-
#: src/addons/azure.php:
|
3306 |
-
#: src/addons/onedrive.php:
|
3307 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3308 |
msgstr "Αν το αφήσετε κενό, τότε το αντίγραφο ασφαλείας θα τοποθετηθεί στο ριζικό φάκελο του %s σας"
|
3309 |
|
3310 |
-
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:
|
3311 |
-
#: src/addons/onedrive.php:
|
3312 |
msgid "e.g. %s"
|
3313 |
msgstr "π.χ. %s"
|
3314 |
|
3315 |
-
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:
|
3316 |
msgid "Enter the path of the %s folder you wish to use here."
|
3317 |
msgstr "Εισάγετε τη διαδρομή του φακέλου %s που θέλετε να χρησιμοποιήσετε εδώ."
|
3318 |
|
@@ -3356,7 +3360,7 @@ msgstr "αποτυχία δημιουργίας της λίστας αρχείω
|
|
3356 |
msgid "Failed to upload %s"
|
3357 |
msgstr "Αποτυχία ανεβάσματος του %s"
|
3358 |
|
3359 |
-
#: src/methods/dropbox.php:
|
3360 |
msgid "Success:"
|
3361 |
msgstr "Επιτυχία:"
|
3362 |
|
@@ -3364,15 +3368,15 @@ msgstr "Επιτυχία:"
|
|
3364 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3365 |
msgstr "<strong>Αφού</strong> έχετε αποθηκεύσει τις ρυθμίσεις σας (κάνοντας κλικ στο \"Αποθήκευση αλλαγών\" παρακάτω), μετά επιστρέψτε εδώ μια φορά και κάντε κλικ σε αυτό το σύνδεσμο για να ολοκληρώσετε τον έλεγχο ταυτότητας με το %s."
|
3366 |
|
3367 |
-
#: src/addons/onedrive.php:
|
3368 |
msgid "(You appear to be already authenticated)."
|
3369 |
msgstr "(Φαίνεται πως έχετε ήδη ταυτοποιηθεί)."
|
3370 |
|
3371 |
-
#: src/methods/dropbox.php:
|
3372 |
msgid "Dropbox"
|
3373 |
msgstr "Dropbox"
|
3374 |
|
3375 |
-
#: src/addons/onedrive.php:
|
3376 |
msgid "Authenticate with %s"
|
3377 |
msgstr "Ταυτοποίηση με το %s"
|
3378 |
|
@@ -3403,8 +3407,8 @@ msgstr "Αποτυχία πρόσβασης στο φάκελο %s"
|
|
3403 |
msgid "%s error - failed to access the container"
|
3404 |
msgstr "%s σφάλμα- αποτυχία πρόσβασης στο φάκελο"
|
3405 |
|
3406 |
-
#: src/addons/googlecloud.php:
|
3407 |
-
#: src/methods/dropbox.php:
|
3408 |
msgid "Account holder's name: %s."
|
3409 |
msgstr "Όνομα κατόχου λογαριασμού: %s."
|
3410 |
|
@@ -3420,17 +3424,17 @@ msgstr "Πρόκειται για έναν αναγνωριστικό αριθμ
|
|
3420 |
msgid "<strong>This is NOT a folder name</strong>."
|
3421 |
msgstr "<strong>Αυτό ΔΕΝ είναι ένα όνομα φακέλου</strong>."
|
3422 |
|
3423 |
-
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:
|
3424 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3425 |
msgid "Folder"
|
3426 |
msgstr "Φάκελος"
|
3427 |
|
3428 |
-
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:
|
3429 |
#: src/methods/googledrive.php:1122
|
3430 |
msgid "%s download: failed: file not found"
|
3431 |
msgstr "%s μεταφόρτωσης: σφάλμα: το αρχείο δεν βρέθηκε"
|
3432 |
|
3433 |
-
#: src/addons/googlecloud.php:
|
3434 |
msgid "Name: %s."
|
3435 |
msgstr "Όνομα: %s."
|
3436 |
|
@@ -3469,7 +3473,7 @@ msgstr "Αυτή η λειτουργία απαιτεί την έκδοση %s %
|
|
3469 |
msgid "Failed to unpack the archive"
|
3470 |
msgstr "Αποτυχία αποσυμπίεσης του αρχείου"
|
3471 |
|
3472 |
-
#: src/class-updraftplus.php:
|
3473 |
msgid "Error - failed to download the file"
|
3474 |
msgstr "Σφάλμα - αδυναμία μεταφόρτωσης του αρχείου"
|
3475 |
|
@@ -3494,7 +3498,7 @@ msgid "password/key"
|
|
3494 |
msgstr "κωδικός/κλειδί"
|
3495 |
|
3496 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3497 |
-
#: src/admin.php:
|
3498 |
msgid "Key"
|
3499 |
msgstr "Κλειδί"
|
3500 |
|
@@ -3519,7 +3523,7 @@ msgid "Files and database WordPress backup (created by %s)"
|
|
3519 |
msgstr "Αντίγραφο ασφαλείας αρχείων και βάσης δεδομένων του WordPress (δημιουργήθηκε από %s)"
|
3520 |
|
3521 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3522 |
-
#: src/includes/class-backup-history.php:
|
3523 |
msgid "Backup created by: %s."
|
3524 |
msgstr "Το αντίγραφο ασφαλείας δημιουργήθηκε από: %s."
|
3525 |
|
@@ -3551,7 +3555,7 @@ msgstr "Διαβάστε αυτή τη σελίδα για δείτε έναν
|
|
3551 |
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."
|
3552 |
msgstr "Το WordPress έχει έναν αριθμό (%d) των προγραμματισμένων εργασιών που έχουν καθυστερήσει. Αυτό σημαίνει κατά πάσα πιθανότητα ότι το χρονοδιάγραμμα στην εγκατάσταση σας του WordPress δεν λειτουργεί, εκτός κι αν αυτή είναι μια σελίδα εξέλιξης "
|
3553 |
|
3554 |
-
#: src/admin.php:694, src/includes/class-backup-history.php:
|
3555 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3556 |
msgstr "Εάν αυτό είναι ένα αντίγραφο ασφαλείας που δημιουργήθηκε από ένα διαφορετικό πρόσθετο λήψης αντιγράφων ασφαλείας, τότε το UpdraftPlus Premium μπορεί να είναι σε θέση να σας βοηθήσει."
|
3557 |
|
@@ -3560,20 +3564,20 @@ msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are
|
|
3560 |
msgstr "Ωστόσο, τα αρχεία του UpdraftPlus είναι σύμφωνα με το πρότυπο αρχείων zip/SQL - οπότε αν είστε βέβαιοι ότι το αρχείο σας έχει τη σωστή μορφή, τότε μπορείτε να το μετονομάσετε για να ταιριάζει με αυτό το μοτίβο."
|
3561 |
|
3562 |
#: src/admin.php:693, src/admin.php:694,
|
3563 |
-
#: src/includes/class-backup-history.php:
|
3564 |
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))."
|
3565 |
msgstr "Αυτό το αρχείο δε μοιάζει να είναι ένα αρχείο αντιγράφων ασφαλείας του UpdraftPlus (τέτοια είναι τα .zip or .gz αρχεία που μπορεί να έχουν ένα όνομα του τύπου: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
3566 |
|
3567 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3568 |
-
#: src/restorer.php:
|
3569 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3570 |
msgstr "Το αντίγραφο ασφαλείας δημιουργήθηκε από άγνωστη πηγή (%s) - δεν μπορεί να αποκατασταθεί."
|
3571 |
|
3572 |
-
#: src/restorer.php:
|
3573 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3574 |
msgstr "Ο φάκελος περιεχομένων του WordPress (wp-content) δε βρέθηκε σ' αυτό το αρχείο zip."
|
3575 |
|
3576 |
-
#: src/restorer.php:
|
3577 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3578 |
msgstr "Αυτή η έκδοση του UpdraftPlus δεν μπορεί να διαχειριστεί αυτό το είδος των ξένων αντιγράφων ασφαλείας"
|
3579 |
|
@@ -3585,12 +3589,12 @@ msgstr "%s επέστρεψε μη αναμενόμενη απάντηση HTTP:
|
|
3585 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3586 |
msgstr "Η μονάδα του UpdraftPlus γι' αυτή τη μέθοδο πρόσβασης στο αρχείο (%s) δεν υποστηρίζει την καταχώριση αρχείων"
|
3587 |
|
3588 |
-
#: src/addons/backblaze.php:
|
3589 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3590 |
msgid "No settings were found"
|
3591 |
msgstr "Δε βρέθηκαν ρυθμίσεις"
|
3592 |
|
3593 |
-
#: src/includes/class-backup-history.php:
|
3594 |
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."
|
3595 |
msgstr "Ένα ή περισσότερα αντίγραφα ασφαλείας έχουν προστεθεί από τη σάρωση του σημείου απομακρυσμένης αποθήκευσης. Σημειώστε ότι αυτά τα αντίγραφα ασφαλείας δεν θα διαγράφονται αυτόματα μέσω των ρυθμίσεων \"διατήρησης\". Αν ή όταν θέλετε να τα διαγράψετε θα πρέπει να το κάνετε χειροκίνητα."
|
3596 |
|
@@ -3598,7 +3602,7 @@ msgstr "Ένα ή περισσότερα αντίγραφα ασφαλείας
|
|
3598 |
msgid "Rescanning remote and local storage for backup sets..."
|
3599 |
msgstr "Σάρωση ξανά της απομακρυσμένης και τοπικής θέσης αποθήκευσης για εύρεση σετ αντιγράφων ασφαλείας σετ ..."
|
3600 |
|
3601 |
-
#: src/addons/googlecloud.php:
|
3602 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3603 |
msgid "(Read more)"
|
3604 |
msgstr "(Διαβάστε περισσότερα)"
|
@@ -3616,7 +3620,7 @@ msgstr "Δεν υπάρχει αντίγραφο ασφαλείας της το
|
|
3616 |
msgid "Remove"
|
3617 |
msgstr "Αφαίρεση"
|
3618 |
|
3619 |
-
#: src/methods/s3.php:
|
3620 |
msgid "Other %s FAQs."
|
3621 |
msgstr "Άλλες %s ερωτήσεις."
|
3622 |
|
@@ -3628,12 +3632,12 @@ msgstr "Επιλέξτε αυτό για να λαμβάνετε περισσό
|
|
3628 |
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."
|
3629 |
msgstr "Εάν εισαγάγετε πολλαπλά αρχεία/καταλόγους, στη συνέχεια χωρίστε τα με κόμμα. Για τις οντότητες σε ανώτερο επίπεδο, μπορείτε να χρησιμοποιήσετε ένα * στην αρχή ή στο τέλος της καταχώρησης ως μπαλαντέρ."
|
3630 |
|
3631 |
-
#: src/class-updraftplus.php:
|
3632 |
-
#: src/restorer.php:
|
3633 |
msgid "Your hosting company must enable these functions before %s can work."
|
3634 |
msgstr "Η εταιρεία που φιλοξενεί την ιστοσελίδα σας πρέπει να ενεργοποιήσει αυτές τις λειτουργίες πριν το %s να μπορεί να λειτουργήσει."
|
3635 |
|
3636 |
-
#: src/class-updraftplus.php:
|
3637 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3638 |
msgstr "Η εγκατάσταση της PHP στον web server σας έχει απενεργοποιημένες αυτές τις λειτουργίες: %s."
|
3639 |
|
@@ -3649,7 +3653,7 @@ msgstr "κρυπτογραφημένo FTP (σιωπηρή κρυπτογράφη
|
|
3649 |
msgid "regular non-encrypted FTP"
|
3650 |
msgstr "απλό μη κρυπτογραφημένο FTP"
|
3651 |
|
3652 |
-
#: src/restorer.php:
|
3653 |
msgid "Backup created by:"
|
3654 |
msgstr "Το αντίγραφο ασφαλείας δημιουργήθηκε από:"
|
3655 |
|
@@ -3703,19 +3707,19 @@ msgstr "Η επί πληρωμή πρόσβασή σας στις ενημερώ
|
|
3703 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3704 |
msgstr "Απόκρυψη μηνύματος από την κεντρική σελίδα διαχείρισης (για %s εβδομάδες)"
|
3705 |
|
3706 |
-
#: src/class-updraftplus.php:
|
3707 |
msgid "The attempt to undo the double-compression succeeded."
|
3708 |
msgstr "Η προσπάθεια αναίρεσης της διπλής συμπίεσης έγινε επιτυχώς."
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression failed."
|
3712 |
msgstr "Η προσπάθεια αναίρεσης της διπλής συμπίεσης απέτυχε."
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3716 |
msgstr "Το αρχείο της βάσης δεδομένων φαίνεται πως έχει συμπιεσθεί δύο φορές - κατά πάσα πιθανότητα η ιστοσελίδα από την οποία το μεταφορτώσατε είχε λανθασμένες ρυθμίσεις στον webserver της."
|
3717 |
|
3718 |
-
#: src/includes/class-wpadmin-commands.php:
|
3719 |
msgid "Constants"
|
3720 |
msgstr "Σταθερές"
|
3721 |
|
@@ -3764,7 +3768,7 @@ msgstr "Ανάκτηση (αν χρειάζεται) και προετοιμασ
|
|
3764 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3765 |
msgstr "Η εγκατάσταση PHP σε αυτό το διακομιστή επιτρέπει μόνο %s δευτερόλεπτα για να τρέξει η PHP, και δεν επιτρέπει το όριο αυτό να αυξηθεί. Εάν έχετε πολλά δεδομένα για να εισάγετε, κι αν η λειτουργία αποκατάστασης τερματιστεί, τότε θα πρέπει να ζητήσει από την εταιρία του web hosting σας με κάποιο τρόπο να αυξήσουν το όριο αυτό (ή να επιχειρήσετε την αποκατάσταση κομμάτι-κομμάτι)."
|
3766 |
|
3767 |
-
#: src/restorer.php:
|
3768 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3769 |
msgstr "Υπάρχουν μη διαγραμμένοι κατάλογοι από μια προηγούμενη επαναφορά εδώ (παρακαλούμε χρησιμοποιήστε το κουμπί \"Διαγραφή Παλαιών Καταλογών\" για να τους διαγράψετε πριν προσπαθήσετε ξανά): %s"
|
3770 |
|
@@ -3785,11 +3789,11 @@ msgstr "Η διασύνδεση του %s έληξε λόγω time out. Αν έ
|
|
3785 |
msgid "Messages:"
|
3786 |
msgstr "Μηνύματα:"
|
3787 |
|
3788 |
-
#: src/restorer.php:
|
3789 |
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"
|
3790 |
msgstr "Βρέθηκε μια γραμμή SQL που είναι μεγαλύτερη από το μέγιστο μέγεθος πακέτου και δεν μπορεί να κατατμηθεί. η γραμμή αυτή δεν θα υποβληθεί σε επεξεργασία, αλλά θα αφεθεί ως έχει: %s"
|
3791 |
|
3792 |
-
#: src/restorer.php:
|
3793 |
msgid "The directory does not exist"
|
3794 |
msgstr "Ο φάκελος δεν υπάρχει"
|
3795 |
|
@@ -3958,7 +3962,7 @@ msgstr "Προσπάθεια..."
|
|
3958 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3959 |
msgstr "Ο νέος κωδικός χρήστη για την κονσόλα του Rackspace είναι (αυτό δεν θα εμφανιστεί ποτέ ξανά):"
|
3960 |
|
3961 |
-
#: src/admin.php:679, src/admin.php:
|
3962 |
msgid "Error data:"
|
3963 |
msgstr "Σφάλμα δεδομένων:"
|
3964 |
|
@@ -3970,11 +3974,11 @@ msgstr "Δεν υπάρχει αντίγραφο ασφαλείας στο ισ
|
|
3970 |
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."
|
3971 |
msgstr "Η εγκατάσταση σας του WordPress έχει παλιούς καταλόγους από την κατάσταση πριν να γίνει αποκατάσταση/μετανάστευση (τεχνικές πληροφορίες: αυτά επισημαίνονται με το πρόθεμα -old). Θα πρέπει να πατήσετε αυτό το κουμπί για να τα διαγράψετε μόλις διαπιστώσετε ότι η αποκατάσταση έγινε με επιτυχία."
|
3972 |
|
3973 |
-
#: src/restorer.php:
|
3974 |
msgid "Split line to avoid exceeding maximum packet size"
|
3975 |
msgstr "Διαιρέστε τη γραμμή για την αποφυγή της υπέρβασης του μεγίστου μεγέθους πακέτου"
|
3976 |
|
3977 |
-
#: src/restorer.php:
|
3978 |
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)"
|
3979 |
msgstr "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια να διαγράψει τους πίνακες. Εμείς θα προσπαθήσουμε να κάνουμε την αποκατάσταση απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να δουλέψει σωστά αν κάνετε αποκατάσταση από μια έκδοση WordPress με την ίδια δομή της βάσης δεδομένων (%s)"
|
3980 |
|
@@ -4006,11 +4010,11 @@ msgstr "Εισάγετε τις διευθύνσεις εδώ για να σας
|
|
4006 |
msgid "Email reports"
|
4007 |
msgstr "Αναφορές Email"
|
4008 |
|
4009 |
-
#: src/class-updraftplus.php:
|
4010 |
msgid "%s checksum: %s"
|
4011 |
msgstr "%s άθροισμα ελέγχου: %s"
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "files: %s"
|
4015 |
msgstr "αρχεία: %s"
|
4016 |
|
@@ -4063,19 +4067,19 @@ msgstr "%d ώρες, %d λεπτά, %d δευτερόλεπτα"
|
|
4063 |
msgid "%d errors, %d warnings"
|
4064 |
msgstr "%d σφάλματα, %d προειδοποιήσεις"
|
4065 |
|
4066 |
-
#: src/addons/onedrive.php:
|
4067 |
-
#: src/methods/dropbox.php:
|
4068 |
msgid "%s authentication"
|
4069 |
msgstr "%s ταυτοποίηση"
|
4070 |
|
4071 |
-
#: src/addons/onedrive.php:
|
4072 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4073 |
-
#: src/methods/dropbox.php:
|
4074 |
-
#: src/methods/dropbox.php:
|
4075 |
msgid "%s error: %s"
|
4076 |
msgstr "%s σφάλμα: %s"
|
4077 |
|
4078 |
-
#: src/addons/googlecloud.php:
|
4079 |
msgid "%s logo"
|
4080 |
msgstr "%s logo"
|
4081 |
|
@@ -4083,7 +4087,7 @@ msgstr "%s logo"
|
|
4083 |
msgid "%s did not return the expected response - check your log file for more details"
|
4084 |
msgstr "%s δεν επέστρεψε την αναμενόμενη απάντηση - ελέγξτε το αρχείο καταγραφής σας για περισσότερες λεπτομέρειες"
|
4085 |
|
4086 |
-
#: src/methods/s3.php:
|
4087 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4088 |
msgstr "Η απαιτούμενη μονάδα PHP %s δεν είναι εγκατεστημένη - ζητήστε από την εταιρεία web hosting σας να την ενεργοποιήσει"
|
4089 |
|
@@ -4104,7 +4108,7 @@ msgstr "Σύνδεση"
|
|
4104 |
msgid "For more reporting features, use the Reporting add-on."
|
4105 |
msgstr "Για περισσότερες δυνατότητες αναφοράς, χρησιμοποιήστε το πρόσθετο Reporting."
|
4106 |
|
4107 |
-
#: src/class-updraftplus.php:
|
4108 |
msgid "(version: %s)"
|
4109 |
msgstr "(έκδοση: %s)"
|
4110 |
|
@@ -4245,7 +4249,7 @@ msgstr "Αποτυχία σύνδεσης με το UpdraftPlus.Com"
|
|
4245 |
msgid "Reporting"
|
4246 |
msgstr "Υποβολή έκθεσης"
|
4247 |
|
4248 |
-
#: src/admin.php:
|
4249 |
msgid "Options (raw)"
|
4250 |
msgstr "Επιλογές (χωρίς επεξεργασία)"
|
4251 |
|
@@ -4253,7 +4257,7 @@ msgstr "Επιλογές (χωρίς επεξεργασία)"
|
|
4253 |
msgid "Send a report only when there are warnings/errors"
|
4254 |
msgstr "Αποστολή αναφοράς μόνο όταν υπάρχουν προειδοποιήσεις/λάθη"
|
4255 |
|
4256 |
-
#: src/restorer.php:
|
4257 |
msgid "Content URL:"
|
4258 |
msgstr "URL περιεχομένου:"
|
4259 |
|
@@ -4397,7 +4401,7 @@ msgstr "Χωρίς αυτό, η κρυπτογράφηση θα είναι πο
|
|
4397 |
msgid "Your web-server does not have the %s module installed."
|
4398 |
msgstr "Ο εξυπηρετητής σας δεν έχει εγκατεστημένο το πρόσθετο %s."
|
4399 |
|
4400 |
-
#: src/addons/googlecloud.php:
|
4401 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4402 |
msgstr "<strong> (Φαίνεται να έχετε ήδη πιστοποιηθεί,</strong> αν και μπορείτε να πιστοποιηθείτε και πάλι για να ανανεώσετε την πρόσβασή σας, αν αντιμετωπίσατε κάποιο πρόβλημα)."
|
4403 |
|
@@ -4417,7 +4421,7 @@ msgstr "Η διαδικασία επαναφοράς έχει αρχίσει. Μ
|
|
4417 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4418 |
msgstr "Εάν εξαιρέσετε τόσο την βάση δεδομένων και τα αρχεία, τότε έχετε εξαιρέσει τα πάντα!"
|
4419 |
|
4420 |
-
#: src/restorer.php:
|
4421 |
msgid "Site home:"
|
4422 |
msgstr "Αρχική σελίδα:"
|
4423 |
|
@@ -4433,7 +4437,7 @@ msgstr "(τα αρχεία καταγραφής μπορείτε να τα βρ
|
|
4433 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4434 |
msgstr "Να αποθηκευτεί αυτή η επιλογή για την επόμενη φορά (θα εξακολουθήσετε να έχετε τη δυνατότητα να το αλλάξετε)"
|
4435 |
|
4436 |
-
#: src/addons/azure.php:
|
4437 |
#: src/methods/stream-base.php:149
|
4438 |
msgid "Upload failed"
|
4439 |
msgstr "Το ανέβασμα των αρχείων απέτυχε"
|
@@ -4577,27 +4581,27 @@ msgstr "Η δημιουργία αρχείων ασφαλείας βρίσκετ
|
|
4577 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4578 |
msgstr "Ο προγραμματιστής είναι απενεργοποιημένος στην εγκατάσταση του WordPress, μέσω της ρύθμισης DISABLE_WP_CRON. Δεν μπορεί να εκτελεστεί καμία διαδικασία εκτέλεσης δημιουργίας αντιγράφων ασφαλείας (even "Backup Now") εκτός εάν είτε έχετε εγκαταστήσει μια λειτουργία για να λάβετε αντίγραφο ασφαλείας χειροκίνητα, ή μέχρι να ενεργοποιηθεί."
|
4579 |
|
4580 |
-
#: src/restorer.php:
|
4581 |
msgid "file"
|
4582 |
msgstr "αρχείο"
|
4583 |
|
4584 |
-
#: src/restorer.php:
|
4585 |
msgid "folder"
|
4586 |
msgstr "κατάλογος"
|
4587 |
|
4588 |
-
#: src/restorer.php:
|
4589 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4590 |
msgstr "Το UpdraftPlus χρειάζεται να δημιουργήσει ένα %s στον κατάλογο περιεχομένων σας, αλλά απέτυχε - παρακαλώ ελέγξτε τα δικαιώματα αρχείων σας και επιτρέψτε την πρόσβαση (%s)"
|
4591 |
|
4592 |
-
#: src/class-updraftplus.php:
|
4593 |
msgid "The backup has not finished; a resumption is scheduled"
|
4594 |
msgstr "Η δημιουργία αντιγράφων ασφαλείας δεν έχει τελειώσει, έχει προγραμματιστεί επανάληψη της διαδικασίας"
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4598 |
msgstr "Η ιστοσελίδα σας δεν έχει μεγάλη επισκεψιμότητα και το UpdraftPlus δεν μπορεί να πάρει τους πόρους που έλπιζε, παρακαλούμε διαβάστε αυτή τη σελίδα:"
|
4599 |
|
4600 |
-
#: src/addons/onedrive.php:
|
4601 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4602 |
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)."
|
4603 |
msgstr "Η αυθεντικοποίηση του%s δεν μπορεί να προχωρήσει, γιατί κάτι άλλο στην ιστοσελίδας σας δημιουργεί πρόβλημα. Δοκιμάστε να απενεργοποιήσετε άλλα πρόσθετα που έχετε εγκατεστημένα κι ενεργοποιήστε ένα προεπιλεγμένο θέμα. (Συγκεκριμένα, ψάχνετε για το στοιχείο που στέλνει (πιθανότατα προειδοποιήσεις/σφάλματα της PHP) πριν αρχίσει η σελίδα. Απενεργοποίηση των ρυθμίσεων εντοπισμού σφαλμάτων μπορεί επίσης να βοηθήσει)."
|
@@ -4682,23 +4686,23 @@ msgstr "Περισσότερα πρόσθετα"
|
|
4682 |
msgid "Support"
|
4683 |
msgstr "Υποστήριξη"
|
4684 |
|
4685 |
-
#: src/class-updraftplus.php:
|
4686 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4687 |
msgstr "Το UpdraftPlus δεν μπόρεσε να βρει το πρόθεμα πίνακα κατά τη σάρωση του αρχείου ασφαλείας της βάσης δεδομένων."
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "This database backup is missing core WordPress tables: %s"
|
4691 |
msgstr "Από αυτό το αρχείο ασφαλείας της βάσης δεδομένων λείπουν πίνακες του πυρήνα του Wordpress: %s"
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
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."
|
4695 |
msgstr "Κάνετε εισαγωγή από μια νεότερη έκδοση του WordPress (%s) σε μια παλαιότερη (%s). Δεν υπάρχουν εγγυήσεις ότι το WordPress μπορεί να το διαχειριστεί αυτό."
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
msgid "%s version: %s"
|
4699 |
msgstr "%s έκδοση: %s"
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4703 |
msgstr "Η βάση δεδομένων είναι πολύ μικρή για να είναι έγκυρη βάση δεδομένων WordPress (μέγεθος: %s Kb)."
|
4704 |
|
@@ -4783,15 +4787,15 @@ msgstr "Σφάλμα: ο διακομιστής έστειλε κενή απάν
|
|
4783 |
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?"
|
4784 |
msgstr "Αυτό μοιάζει να είναι αρχείο που δημιουργήθηκε με το UpdraftPlus, αλλά αυτή η εγκατάσταση δεν μπορεί να αποφανθεί για αυτό το είδος του αντικειμένου:%s. Μήπως θα πρέπει να εγκαταστήσετε κάποιο πρόσθετο;"
|
4785 |
|
4786 |
-
#: src/includes/class-wpadmin-commands.php:
|
4787 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4788 |
msgstr "Τα αρχεία αντιγράφων ασφαλείας έχουν υποστεί επεξεργασία, αλλά υπάρχουν κάποια λάθη. Θα πρέπει να ακυρώσετε τη διαδικασία και να διορθώσετε τυχόν προβλήματα πριν προσπαθήσετε ξανά."
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4792 |
msgstr "Τα αρχεία αντιγράφων ασφαλείας έχουν υποστεί επεξεργασία, αλλά υπάρχουν κάποιες προειδοποιήσεις. Αν όλα είναι εντάξει, πατήστε ξανά Επαναφορά για να συνεχίσετε. Σε αντίθετη περίπτωση, ακυρώστε τη διαδικασία και διορθώστε τυχόν προβλήματα πρώτα."
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4796 |
msgstr "Έχει γίνει επεξεργασία των αρχείων των αντιγράφων ασφαλείας επιτυχώς. Τώρα πατήστε ξανά Επαναφορά για να συνεχίσετε."
|
4797 |
|
@@ -4831,16 +4835,16 @@ msgstr "Αποτυχία ανοίγματος του αρχείου zip (%s) - %
|
|
4831 |
msgid "WordPress root directory server path: %s"
|
4832 |
msgstr "Η ριζική διαδρομή του Wordpress στον εξυπηρετητή είναι: %s"
|
4833 |
|
4834 |
-
#: src/methods/dreamobjects.php:
|
4835 |
msgid "%s end-point"
|
4836 |
msgstr "%s τελικό σημείο "
|
4837 |
|
4838 |
-
#: src/methods/s3.php:
|
4839 |
msgid "... and many more!"
|
4840 |
msgstr "... και πολλά περισσότερα!"
|
4841 |
|
4842 |
-
#: src/methods/s3generic.php:
|
4843 |
-
#: src/methods/s3generic.php:
|
4844 |
msgid "S3 (Compatible)"
|
4845 |
msgstr "S3 (Συμβατό)"
|
4846 |
|
@@ -4848,11 +4852,11 @@ msgstr "S3 (Συμβατό)"
|
|
4848 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4849 |
msgstr "Το αρχείο δεν είναι αποθηκευμένο τοπικά - πρέπει να ανακτηθεί από την απομακρυσμένη τοποθεσία αποθήκευσης"
|
4850 |
|
4851 |
-
#: src/admin.php:
|
4852 |
msgid "Looking for %s archive: file name: %s"
|
4853 |
msgstr "Αναζήτηση για %s αρχείο: όνομα αρχείου: %s"
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Final checks"
|
4857 |
msgstr "Τελευταίοι έλεγχοι"
|
4858 |
|
@@ -4880,7 +4884,7 @@ msgstr "Προβολή ανεπεξέργαστου ιστορικού αντι
|
|
4880 |
msgid "Processing files - please wait..."
|
4881 |
msgstr "Επεξεργασία αρχείων - παρακαλώ περιμένετε..."
|
4882 |
|
4883 |
-
#: src/admin.php:
|
4884 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4885 |
msgid "Please consult this FAQ for help on what to do about it."
|
4886 |
msgstr "Παρακαλούμε συμβουλευτείτε τις Συχνές Ερωτήσεις για βοήθεια σχετικά με το τι πρέπει να γίνει με αυτό."
|
@@ -4889,30 +4893,30 @@ msgstr "Παρακαλούμε συμβουλευτείτε τις Συχνές
|
|
4889 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4890 |
msgstr "Η εγκατάσταση σας του WordPress έχει ένα πρόβλημα με την έξοδο κενού περιεχομένου. Αυτό μπορεί να καταστρέψει τα αντίγραφα ασφαλείας που θα κατεβάσετε από εδώ."
|
4891 |
|
4892 |
-
#: src/class-updraftplus.php:
|
4893 |
msgid "Failed to open database file."
|
4894 |
msgstr "Αποτυχία ανοίγματος του αρχείου της βάσης δεδομένων."
|
4895 |
|
4896 |
-
#: src/admin.php:
|
4897 |
msgid "Known backups (raw)"
|
4898 |
msgstr "Γνωστά αντίγραφα ασφαλείας (ανεπεξέργαστα)"
|
4899 |
|
4900 |
-
#: src/restorer.php:
|
4901 |
msgid "Files found:"
|
4902 |
msgstr "Αρχεία που βρέθηκαν:"
|
4903 |
|
4904 |
-
#: src/restorer.php:
|
4905 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4906 |
msgstr "Η ζητηθείσα μηχανή του πίνακα (%s) δεν είναι παρούσα - αλλαγή σε MyISAM."
|
4907 |
|
4908 |
-
#: src/admin.php:
|
4909 |
msgid "file is size:"
|
4910 |
msgstr "μέγεθος αρχείου:"
|
4911 |
|
4912 |
-
#: src/addons/googlecloud.php:
|
4913 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4914 |
-
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:
|
4915 |
-
#: src/class-updraftplus.php:
|
4916 |
msgid "Go here for more information."
|
4917 |
msgstr "Πηγαίνετε εδώ για περισσότερες πληροφορίες."
|
4918 |
|
@@ -4920,7 +4924,7 @@ msgstr "Πηγαίνετε εδώ για περισσότερες πληροφο
|
|
4920 |
msgid "Some files are still downloading or being processed - please wait."
|
4921 |
msgstr "Κάποια αρχεία ακόμα κατεβαίνουν ή υπόκεινται σε επεξεργασία - παρακαλώ περιμένετε."
|
4922 |
|
4923 |
-
#: src/class-updraftplus.php:
|
4924 |
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."
|
4925 |
msgstr "Αυτό το σετ αντιγράφων ασφαλείας είναι από διαφορετικό ιστοσελίδα - αυτή δεν είναι μια διαδικασία επαναφοράς αλλά είναι διαδικασία μετανάστευσης. Χρειάζεται και το πρόσθετο Migrator για να γίνει αυτή η λειτουργία."
|
4926 |
|
@@ -4964,7 +4968,7 @@ msgstr "Λάθος - αποτυχία κατεβάσματος του αρχεί
|
|
4964 |
msgid "Error - no such file exists at %s"
|
4965 |
msgstr "Λάθος - δεν υπάρχει αυτό το αρχείο στο %s"
|
4966 |
|
4967 |
-
#: src/addons/azure.php:
|
4968 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4969 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4970 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
@@ -4993,10 +4997,10 @@ msgstr "%s αποτυχία πιστοποίησης"
|
|
4993 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4994 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4995 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
4996 |
-
#: src/class-updraftplus.php:
|
4997 |
-
#: src/class-updraftplus.php:
|
4998 |
-
#: src/class-updraftplus.php:
|
4999 |
-
#: src/methods/s3.php:
|
5000 |
msgid "Error: %s"
|
5001 |
msgstr "Λάθος: %s"
|
5002 |
|
@@ -5036,7 +5040,7 @@ msgstr "Συνέβη ένα λάθος κλείνοντας το τελευτα
|
|
5036 |
msgid "Warnings encountered:"
|
5037 |
msgstr "Προειδοποιήσεις που απαντήθηκαν:"
|
5038 |
|
5039 |
-
#: src/class-updraftplus.php:
|
5040 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5041 |
msgstr "Η δημιουργία αντιγράφων ασφαλείας τελικώς πέτυχε (με προειδοποιήσεις) και είναι πλέον πλήρης"
|
5042 |
|
@@ -5076,40 +5080,40 @@ msgstr "Ελέγξτε τα δικαιώματα των αρχείων σας:
|
|
5076 |
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."
|
5077 |
msgstr "Ορισμένοι διακομιστές διαφημίζουν ως διαθέσιμη το κρυπτογραφημένο FTP αλλά συμβαίνει στη συνέχεια time-out (μετά από αρκετή ώρα) όταν επιχειρείτε να το χρησιμοποιήσετε. Αν συμβαίνει αυτό σε σας πηγαίνετε στο \"Επιλογές για Προχωρημένους\" (παρακάτω) και απενεργοποιήσετε το SSL από εκεί."
|
5078 |
|
5079 |
-
#: src/methods/s3.php:
|
5080 |
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."
|
5081 |
msgstr "Η εγκατάσταση PHP του εξυπηρετητή σας δεν περιελάμβανε μια απαραίτητη μονάδα (%s). Παρακαλούμε επικοινωνήστε με την υποστήριξη του παρόχου του εξυπηρετητή σας και ζητήστε να το ενεργοποιήσουν."
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
msgid "Please check your access credentials."
|
5085 |
msgstr "Παρακαλούμε ελέγξτε τα διαπιστευτήρια πρόσβασης σας."
|
5086 |
|
5087 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5088 |
msgid "The error reported by %s was:"
|
5089 |
msgstr "Το λάθος που αναφέρθηκε από το %s ήταν:"
|
5090 |
|
5091 |
-
#: src/restorer.php:
|
5092 |
msgid "Please supply the requested information, and then continue."
|
5093 |
msgstr "Παρακαλούμε δώστε τις ζητηθείσες πληροφορίες και μετά συνεχίστε."
|
5094 |
|
5095 |
-
#: src/class-updraftplus.php:
|
5096 |
msgid "Site information:"
|
5097 |
msgstr "Πληροφορίες ιστοσελίδας:"
|
5098 |
|
5099 |
-
#: src/restorer.php:
|
5100 |
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."
|
5101 |
msgstr "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια για τη δημιουργία πινάκων. Θα γίνει προσπάθεια επαναφοράς απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να λειτουργήσει για την περίπτωση που α) κάνετε επαναφορά από μια έκδοση του WordPress με την ίδια τη δομή της βάσης δεδομένων και β) η εισαγόμενη βάση δεδομένων σας δεν περιέχει πίνακες που δεν είναι ήδη υπάρχοντες στην ιστοσελίδα εισαγωγής."
|
5102 |
|
5103 |
-
#: src/admin.php:2445, src/class-updraftplus.php:
|
5104 |
msgid "Warning:"
|
5105 |
msgstr "Προειδοποίηση:"
|
5106 |
|
5107 |
-
#: src/class-updraftplus.php:
|
5108 |
#: src/restorer.php:184
|
5109 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5110 |
msgstr "Γίνεται εκτέλεση της διαδικασίας σε μια εγκατάσταση πολλαπλών ιστοσελίδων του Wordpress αλλά το αντίγραφο ασφαλείας σας δεν είναι από μια τέτοια εγκατάσταση. "
|
5111 |
|
5112 |
-
#: src/admin.php:
|
5113 |
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."
|
5114 |
msgstr "Παράκαμψη στην επαναφορά του πυρήνα του WordPress κατά την εισαγωγή μιας ιστοσελίδας σε μια εγκατάσταση πολλαπλών ιστοσελίδων. Αν είχατε κάποια αναγκαία αρχεία στο φάκελο του WordPress, τότε θα πρέπει να τα προσθέσετε χειροκίνητα ξανά από το αρχείο zip."
|
5115 |
|
@@ -5185,7 +5189,7 @@ msgstr "Premium"
|
|
5185 |
msgid "News"
|
5186 |
msgstr "Νέα"
|
5187 |
|
5188 |
-
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:
|
5189 |
msgid "Backup set not found"
|
5190 |
msgstr "Το σετ αντιγράφων ασφαλείας δε βρέθηκε"
|
5191 |
|
@@ -5350,18 +5354,18 @@ msgid "Directory path"
|
|
5350 |
msgstr "Διαδρομή φακέλου"
|
5351 |
|
5352 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5353 |
-
#: src/addons/sftp.php:443, src/addons/webdav.php:
|
5354 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5355 |
#: src/udaddons/options.php:135
|
5356 |
msgid "Password"
|
5357 |
msgstr "Κωδικός"
|
5358 |
|
5359 |
-
#: src/addons/sftp.php:429, src/addons/webdav.php:
|
5360 |
msgid "Port"
|
5361 |
msgstr "Θύρα"
|
5362 |
|
5363 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5364 |
-
#: src/addons/webdav.php:
|
5365 |
msgid "Host"
|
5366 |
msgstr "Host"
|
5367 |
|
@@ -5409,7 +5413,7 @@ msgstr "Τα παραπάνω αρχεία περιλαμβάνουν τα πά
|
|
5409 |
msgid "Over-write wp-config.php"
|
5410 |
msgstr "Αντικατάσταση του wp-config.php"
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:
|
5413 |
msgid "WordPress Core"
|
5414 |
msgstr "Πυρήνας WordPress "
|
5415 |
|
@@ -5417,14 +5421,14 @@ msgstr "Πυρήνας WordPress "
|
|
5417 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5418 |
msgstr "Αποτυχία: Δεν μπορέσαμε να τοποθετήσουμε ένα αρχείο σε αυτόν το φάκελο - παρακαλώ ελέγξτε τα διαπιστευτήριά σας."
|
5419 |
|
5420 |
-
#: src/addons/googlecloud.php:
|
5421 |
-
#: src/addons/googlecloud.php:
|
5422 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5423 |
#: src/methods/stream-base.php:353
|
5424 |
msgid "Failed"
|
5425 |
msgstr "Αποτυχία"
|
5426 |
|
5427 |
-
#: src/addons/webdav.php:
|
5428 |
msgid "WebDAV URL"
|
5429 |
msgstr "WebDAV URL"
|
5430 |
|
@@ -5475,31 +5479,31 @@ msgstr "Πρέπει να υπάρχει ήδη"
|
|
5475 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5476 |
msgstr "Αν θέλετε κρυπτογράφηση (π.χ. έχετε αποθηκευμένα ευαίσθητα επιχειρηματικά δεδομένα), τότε υπάρχει διαθέσιμο ένα πρόσθετο."
|
5477 |
|
5478 |
-
#: src/addons/onedrive.php:
|
5479 |
msgid "Your %s account name: %s"
|
5480 |
msgstr "Το %s όνομα του λογαριασμού σας: %s"
|
5481 |
|
5482 |
-
#: src/methods/dropbox.php:
|
5483 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5484 |
msgstr "αν και μέρος των πληροφοριών που επεστράφησαν δεν ήταν τα αναμενόμενα - η χρέωσή σας μπορεί να ποικίλει"
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "you have authenticated your %s account"
|
5488 |
msgstr "έχετε πιστοποιηθεί για το λογαριασμό %s"
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "there's an add-on for that."
|
5492 |
msgstr "υπάρχει ένα πρόσθετο για αυτό το σκοπό."
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5496 |
msgstr "Εάν κάνετε αντίγραφα ασφαλείας για πολλές ιστοσελίδες στο ίδιο Dropbox και χρειάζεται να τα οργανώσετε σε υπο-φακέλους, τότε "
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "Backups are saved in"
|
5500 |
msgstr "Τα αρχεία ασφαλείας αποθηκεύτηκαν στο "
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Need to use sub-folders?"
|
5504 |
msgstr "Χρειάζεται να χρησιμοποιήσετε υπο-φακέλους;"
|
5505 |
|
@@ -5512,96 +5516,96 @@ msgstr "σφάλμα: αποτυχία ανεβάσματος του αρχεί
|
|
5512 |
msgid "You do not appear to be authenticated with Dropbox"
|
5513 |
msgstr "Δε φαίνεται να είστε πιστοποιημένος στο Dropbox"
|
5514 |
|
5515 |
-
#: src/methods/s3.php:
|
5516 |
msgid "The communication with %s was not encrypted."
|
5517 |
msgstr "Η επικοινωνία με το %s δεν κρυπτογραφήθηκε. "
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was encrypted."
|
5521 |
msgstr "Η επικοινωνία με το %s κρυπτογραφήθηκε."
|
5522 |
|
5523 |
-
#: src/addons/googlecloud.php:
|
5524 |
msgid "We accessed the bucket, and were able to create files within it."
|
5525 |
msgstr "Αποκτήσαμε πρόσβαση με επιτυχία στον κάδο και δημιουργήσαμε επιτυχώς αρχεία μέσα σε αυτόν. "
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:
|
5528 |
-
#: src/methods/s3.php:
|
5529 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5530 |
msgstr "Αποκτήσαμε πρόσβαση με επιτυχία στον κάδο, αλλά η προσπάθεια να δημιουργηθεί ένα αρχείο σε αυτόν απέτυχε."
|
5531 |
|
5532 |
-
#: src/addons/googlecloud.php:
|
5533 |
-
#: src/methods/s3.php:
|
5534 |
msgid "Failure"
|
5535 |
msgstr "Αποτυχία"
|
5536 |
|
5537 |
-
#: src/addons/backblaze.php:
|
5538 |
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)."
|
5539 |
msgstr "Αποτυχία: Δεν μπορέσαμε επιτυχώς να έχουμε πρόσβαση ή να δημιουργήσεουμε ένα τέτοιο κάδο. Παρακαλούμε ελέγξτε τα διαπιστευτήρια πρόσβασης σας, και εάν αυτά είναι σωστά τότε δοκιμάστε με ένα άλλο όνομα κάδου (ενδεχομένως κάποιος άλλος χρήστης %s μπορεί να έχει ήδη πάρει το όνομά σας)."
|
5540 |
|
5541 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5542 |
-
#: src/methods/s3.php:
|
5543 |
msgid "Region"
|
5544 |
msgstr "Περιοχή"
|
5545 |
|
5546 |
-
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:
|
5547 |
-
#: src/methods/s3.php:
|
5548 |
msgid "Failure: No bucket details were given."
|
5549 |
msgstr "Αποτυχία: Δε δόθηκαν στοιχεία για τον κάδο."
|
5550 |
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "API secret"
|
5553 |
msgstr "μυστικό API"
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5557 |
msgstr "Εισάγετε μόνο ένα όνομα κάδου ή έναν κάδο και τη διαδρομή. Παραδείγματα: mybucket, mybucket/mypath"
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "%s location"
|
5561 |
msgstr "%s τοποθεσία"
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s secret key"
|
5565 |
msgstr "%s μυστικό κλειδί"
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s access key"
|
5569 |
msgstr "%s κλειδί πρόσβασης"
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5573 |
msgstr "Εάν δείτε λάθη σχετικά με τα πιστοποιητικά SSL τότε πηγαίνετε εδώ για βοήθεια."
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
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."
|
5577 |
msgstr "Λάβετε το κλειδί πρόσβασης σας και το μυστικό κλειδί <a href=\"%s\"> από την κονσόλα σας %s </a>, στη συνέχεια επιλέξτε ένα (μοναδικό παγκοσμίως - όλοι οι %s χρήστες) όνομα κάδου (γράμματα και αριθμοί) (και προαιρετικά μια διαδρομή) που θα χρησιμοποιηθεί για την αποθήκευση. Η κάδος θα δημιουργηθεί για σας εάν δεν υπάρχει ήδη."
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
-
#: src/methods/s3.php:
|
5581 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5582 |
msgstr "Σφάλμα %s: Αποτυχία πρόσβασης στον κάδο %s. Ελέγξτε τα δικαιώματα και τα διαπιστευτήριά σας."
|
5583 |
|
5584 |
-
#: src/methods/s3.php:
|
5585 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5586 |
msgstr "Σφάλμα %s: Απέτυχε η λήψη του %s. Ελέγξτε τα δικαιώματα και τα διαπιστευτήριά σας."
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5590 |
msgstr "%s λάθος επανασυναρμολόγησης (%s): (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5594 |
msgstr "%s μεταφόρτωσης (%s): η επανασυναρμολόγηση απέτυχε (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s chunk %s: upload failed"
|
5598 |
msgstr "σφάλμα %s: Το αρχείο %s ήταν απροσδόκητα μικρότερο "
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s error: file %s was shortened unexpectedly"
|
5602 |
msgstr "σφάλμα %s: Το αρχείο %s έγινε απροσδόκητα μικρότερο "
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5606 |
msgstr "αποστολή %s: η λήψη uploadID για μεταφόρτωση πολλαπλών αρχείων απέτυχε - δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες"
|
5607 |
|
@@ -5626,32 +5630,32 @@ msgid "Failure: No container details were given."
|
|
5626 |
msgstr "Αποτυχία: Δε δόθηκαν λεπτομέρειες για το σημείο αποθήκευσης."
|
5627 |
|
5628 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5629 |
-
#: src/addons/webdav.php:
|
5630 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5631 |
msgid "Username"
|
5632 |
msgstr "Όνομα χρήστη"
|
5633 |
|
5634 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5635 |
-
#: src/methods/s3.php:
|
5636 |
msgid "API key"
|
5637 |
msgstr "Κλειδί API"
|
5638 |
|
5639 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5640 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5641 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5642 |
-
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:
|
5643 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5644 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5645 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5646 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5647 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5648 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5649 |
-
#: src/methods/s3.php:
|
5650 |
msgid "Failure: No %s was given."
|
5651 |
msgstr "Αποτυχία: Δε δόθηκε κανένα %s."
|
5652 |
|
5653 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5654 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5655 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5656 |
msgstr "Η μονάδα του UpdraftPlus %s <strong>απαιτεί</strong> %s. Παρακαλώ μην υποβάλετε οποιαδήποτε αιτήματα υποστήριξης, δεν υπάρχει εναλλακτική λύση."
|
5657 |
|
@@ -5686,7 +5690,7 @@ msgstr "Αποκτήστε ένα κλειδί API <a href=\"https://mycloud.rac
|
|
5686 |
msgid "Test %s Settings"
|
5687 |
msgstr "Γίνεται έλεγχος %s Ρυθμίσεων"
|
5688 |
|
5689 |
-
#: src/class-updraftplus.php:
|
5690 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5691 |
msgid "Error opening local file: Failed to download"
|
5692 |
msgstr "Λάθος κατά το άνοιγμα του τοπικού αρχείου: Αποτυχία κατεβάσματος"
|
@@ -5698,7 +5702,7 @@ msgstr "Λάθος των Αρχείων στο Σύννεφο - Αποτυχί
|
|
5698 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5699 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5700 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5701 |
-
#: src/methods/s3.php:
|
5702 |
msgid "%s Error: Failed to upload"
|
5703 |
msgstr "Σφάλμα %s: Αποτυχία ανεβάσματος"
|
5704 |
|
@@ -5724,34 +5728,34 @@ msgstr "Αποτυχία πιστοποίησης των Αρχείων στο
|
|
5724 |
msgid "Authenticate with Google"
|
5725 |
msgstr "Έλεγχος ταυτότητας με το Google"
|
5726 |
|
5727 |
-
#: src/addons/googlecloud.php:
|
5728 |
#: src/methods/googledrive.php:1196
|
5729 |
msgid "Client Secret"
|
5730 |
msgstr "Client Secret"
|
5731 |
|
5732 |
-
#: src/addons/googlecloud.php:
|
5733 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5734 |
msgstr "Εάν η Google σας εμφανίσει αργότερα το μήνυμα \"invalid_client\", σημαίνει ότι δεν εισαγάγετε ένα έγκυρο client ID εδώ."
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:
|
5737 |
#: src/methods/googledrive.php:1192
|
5738 |
msgid "Client ID"
|
5739 |
msgstr "Client ID"
|
5740 |
|
5741 |
-
#: src/addons/googlecloud.php:
|
5742 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5743 |
msgstr "Πρέπει να προσθέσετε το ακόλουθο ως εξουσιοδοτημένη ανακατεύθυνση URI (κάτω από το \"Περισσότερες Επιλογές\"), όταν σας ζητηθεί "
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:
|
5746 |
msgid "Select 'Web Application' as the application type."
|
5747 |
msgstr "Επιλέξτε 'Εφαρμογή διαδικτύου' ως τον τύπο εφαρμογής."
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:
|
5750 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5751 |
msgstr "Για περισσότερη βοήθεια, η οποία περιλαμβάνει εικόνες οθόνης, ακολουθήστε αυτό το σύνδεσμο. Η περιγραφή πιο κάτω είναι επαρκής για τους πιο έμπειρους χρήστες."
|
5752 |
|
5753 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5754 |
-
#: src/addons/googlecloud.php:
|
5755 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5756 |
#: src/methods/googledrive.php:558
|
5757 |
msgid "Account is not authorized."
|
@@ -5771,21 +5775,21 @@ msgstr "Ο λογαριασμός σας είναι πλήρης: Ο λογαρ
|
|
5771 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5772 |
msgstr "Δεν έχετε αποκτήσει ακόμη ένα διακριτικό πρόσβασης από το Google - θα πρέπει να πιστοποιήσετε ή να πιστοποιήσετε εκ νέου τη σύνδεσή σας στο Google Drive."
|
5773 |
|
5774 |
-
#: src/addons/googlecloud.php:
|
5775 |
#: src/methods/googledrive.php:441
|
5776 |
msgid "you have authenticated your %s account."
|
5777 |
msgstr "έχετε πιστοποιήσει το λογαριασμό σας %s."
|
5778 |
|
5779 |
-
#: src/addons/googlecloud.php:
|
5780 |
-
#: src/addons/onedrive.php:
|
5781 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5782 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5783 |
-
#: src/methods/s3.php:
|
5784 |
msgid "Success"
|
5785 |
msgstr "Επιτυχία"
|
5786 |
|
5787 |
-
#: src/addons/onedrive.php:
|
5788 |
-
#: src/methods/dropbox.php:
|
5789 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5790 |
msgstr "Χρήση του μεριδίου σας %s: %s %% χρησιμοποιείται,%s διαθέσιμο"
|
5791 |
|
@@ -5817,58 +5821,58 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
|
|
5817 |
msgstr "Θα πρέπει να επαναλάβει την πιστοποίηση με το%s, καθώς τα υφιστάμενα διαπιστευτήρια σας δεν λειτουργούν."
|
5818 |
|
5819 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5820 |
-
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:
|
5821 |
-
#: src/restorer.php:
|
5822 |
msgid "OK"
|
5823 |
msgstr "Εντάξει"
|
5824 |
|
5825 |
-
#: src/restorer.php:
|
5826 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5827 |
msgstr "Το πρόθεμα του πίνακα έχει αλλάξει: γίνεται αλλαγή του-των πεδίου-ων %s του πίνακα αναλόγως:"
|
5828 |
|
5829 |
-
#: src/addons/migrator.php:1285, src/restorer.php:
|
5830 |
msgid "the database query being run was:"
|
5831 |
msgstr "το ερώτημα που τρέχει στη βάση δεδομένων ήταν:"
|
5832 |
|
5833 |
-
#: src/restorer.php:
|
5834 |
msgid "will restore as:"
|
5835 |
msgstr "θα γίνει επαναφορά ως:"
|
5836 |
|
5837 |
-
#: src/class-updraftplus.php:
|
5838 |
-
#: src/restorer.php:
|
5839 |
msgid "Old table prefix:"
|
5840 |
msgstr "Παλιό πρόθεμα πίνακα:"
|
5841 |
|
5842 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5843 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5844 |
msgid "Backup of:"
|
5845 |
msgstr "Αντίγραφο ασφαλείας του:"
|
5846 |
|
5847 |
-
#: src/restorer.php:
|
5848 |
msgid "Failed to open database file"
|
5849 |
msgstr "Αποτυχία ανοίγματος του αρχείου της βάσης δεδομένων "
|
5850 |
|
5851 |
-
#: src/restorer.php:
|
5852 |
msgid "Failed to find database file"
|
5853 |
msgstr "Αποτυχία εύρεσης του αρχείου της βάσης δεδομένων"
|
5854 |
|
5855 |
-
#: src/restorer.php:
|
5856 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5857 |
msgstr "Προειδοποίηση: Είναι ενεργή η ασφαλής λειτουργία της PHP στον εξυπηρετητή σας. Είναι πολύ πιθανόν να έχουν τεθεί χρονικά όρια. Αν συμβαίνει αυτό, τότε θα χρειαστεί να επαναφέρετε το χέρι το αρχείο μέσω phpMyAdmin ή άλλης μεθόδου."
|
5858 |
|
5859 |
-
#: src/restorer.php:
|
5860 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5861 |
msgstr "wp-config.php από το αντίγραφο ασφαλείας: επαναφορά (σύμφωνα με το αίτημα του χρήστη)"
|
5862 |
|
5863 |
-
#: src/restorer.php:
|
5864 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5865 |
msgstr "wp-config.php από το αντίγραφο ασφαλείας: θα γίνει επαναφορά ως wp-config-backup.php"
|
5866 |
|
5867 |
-
#: src/restorer.php:
|
5868 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5869 |
msgstr "Αδυναμία εγγραφής της αποκρυπτογραφημένης βάσης δεδομένων στο σύστημα αρχείων"
|
5870 |
|
5871 |
-
#: src/restorer.php:
|
5872 |
msgid "Failed to create a temporary directory"
|
5873 |
msgstr "Αδυναμία δημιουργίας προσωρινού φακέλου."
|
5874 |
|
@@ -5912,19 +5916,19 @@ msgstr "Δεν είναι διαθέσιμο αντίγραφο ασφαλεία
|
|
5912 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5913 |
msgstr "Το UpdraftPlus δεν μπορεί να επαναφέρει απευθείας αυτού του είδους την οντότητα. Πρέπει να γίνει επαναφορά με το χέρι."
|
5914 |
|
5915 |
-
#: src/admin.php:
|
5916 |
msgid "Could not find one of the files for restoration"
|
5917 |
msgstr "Δεν μπόρεσε να βρεθεί ένα από τα αρχεία για την επαναφορά"
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Error message"
|
5921 |
msgstr "Μήνυμα λάθους"
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "The backup records do not contain information about the proper size of this file."
|
5925 |
msgstr "Τα στοιχεία μητρώου του αντιγράφου ασφαλείας δεν περιέχουν πληροφορίες σχετικά με το κατάλληλο μέγεθος για αυτό το αρχείο."
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "Archive is expected to be size:"
|
5929 |
msgstr "Το αρχείο αναμένεται να έχει μέγεθος:"
|
5930 |
|
@@ -5965,7 +5969,7 @@ msgid "Your web server's PHP/Curl installation does not support https access. Co
|
|
5965 |
msgstr "Η εγκατάσταση της PHP/Curl στον διακομιστή σας δεν υποστηρίζει πρόσβαση https. Η επικοινωνία με το %s δε θα είναι κρυπτογραφημένη. Ζητήστε από τον πάροχό σας να εγκαταστήσει το Curl/SSL για να έχετε τη δυνατότητα κρυπτογράφησης (με χρήση ενός πρόσθετου). "
|
5966 |
|
5967 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5968 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5969 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5970 |
msgstr "Η εγκατάσταση της PHP στον εξυπηρετητή σας δεν συμπεριλαμβάνει μια απαραίτητη μονάδα %s). Παρακαλούμε επικοινωνήστε με το τμήμα υποστήριξης του παρόχου του εξυπηρετητή σας."
|
5971 |
|
@@ -6253,7 +6257,7 @@ msgstr "Εκτέλεση δημιουργίας αντιγράφου ασφαλ
|
|
6253 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6254 |
msgstr "Διαβάστε αυτό το άρθρο το οποίο θα σας βοηθήσει να μάθετε χρήσιμα πράγματα πριν κάνετε επαναφορά. "
|
6255 |
|
6256 |
-
#: src/class-updraftplus.php:
|
6257 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6258 |
msgstr "Μπορείτε να αναζητήσετε και να αντικαταστήσετε τη βάση δεδομένων σας (για τη μετάβαση ενός δικτυακού τόπου σε μια νέα τοποθεσία/διεύθυνση URL) με το πρόσθετο Migrator - ακολουθήστε αυτό το σύνδεσμο για περισσότερες πληροφορίες"
|
6259 |
|
@@ -6306,10 +6310,10 @@ msgstr "Λάθος μεταφόρτωσης: ο εξυπηρετητής έστ
|
|
6306 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6307 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6308 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6309 |
-
#: src/addons/sftp.php:837, src/addons/webdav.php:
|
6310 |
-
#: src/admin.php:680, src/admin.php:
|
6311 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6312 |
-
#: src/methods/updraftvault.php:522, src/restorer.php:
|
6313 |
msgid "Error:"
|
6314 |
msgstr "Λάθος:"
|
6315 |
|
@@ -6383,14 +6387,14 @@ msgstr "Λήψη αντιγράφου ασφαλείας"
|
|
6383 |
|
6384 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6385 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6386 |
-
#: src/admin.php:3682, src/admin.php:
|
6387 |
#: src/includes/class-wpadmin-commands.php:147,
|
6388 |
-
#: src/includes/class-wpadmin-commands.php:
|
6389 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6390 |
msgid "Database"
|
6391 |
msgstr "Βάση δεδομένων"
|
6392 |
|
6393 |
-
#: src/admin.php:311, src/admin.php:
|
6394 |
msgid "Files"
|
6395 |
msgstr "Αρχεία"
|
6396 |
|
@@ -6442,7 +6446,7 @@ msgstr "Ιστοσελίδα του αρχι-προγραμματιστή"
|
|
6442 |
msgid "UpdraftPlus.Com"
|
6443 |
msgstr "UpdraftPlus.Com"
|
6444 |
|
6445 |
-
#: src/admin.php:
|
6446 |
msgid "Your settings have been wiped."
|
6447 |
msgstr "Οι ρυθμίσεις σας διεγράφησαν."
|
6448 |
|
@@ -6503,11 +6507,11 @@ msgid "Download failed"
|
|
6503 |
msgstr "Αποτυχία μεταφόρτωσης "
|
6504 |
|
6505 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6506 |
-
#: src/class-updraftplus.php:
|
6507 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6508 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6509 |
-
#: src/methods/stream-base.php:220, src/restorer.php:
|
6510 |
-
#: src/restorer.php:
|
6511 |
msgid "Error"
|
6512 |
msgstr "Λάθος"
|
6513 |
|
@@ -6548,7 +6552,7 @@ msgstr "Έχετε λιγότερο από %s ελεύθερο χώρο στο
|
|
6548 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6549 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6550 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6551 |
-
#: src/methods/s3.php:
|
6552 |
#: src/methods/updraftvault.php:301,
|
6553 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6554 |
#: src/udaddons/updraftplus-addons.php:253
|
@@ -6580,22 +6584,22 @@ msgstr "Παρακαλώ βοηθήστε το UpdraftPlus δίνοντας μι
|
|
6580 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6581 |
msgstr "Σας αρέσει το UpdraftPlus και μπορείτε να αφιερώσετε ένα λεπτό;"
|
6582 |
|
6583 |
-
#: src/addons/azure.php:
|
6584 |
-
#: src/methods/googledrive.php:1082, src/methods/s3.php:
|
6585 |
msgid "File not found"
|
6586 |
msgstr "Το αρχείο δεν βρέθηκε"
|
6587 |
|
6588 |
-
#: src/class-updraftplus.php:
|
6589 |
msgid "The decryption key used:"
|
6590 |
msgstr "Το κλειδί αποκρυπτογράφησης που χρησιμοποιήθηκε είναι το:"
|
6591 |
|
6592 |
-
#: src/class-updraftplus.php:
|
6593 |
-
#: src/restorer.php:
|
6594 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6595 |
msgstr "Η αποκρυπτογράφηση απέτυχε. Η πιο πιθανή αιτία είναι ότι χρησιμοποιήσατε λάθος κλειδί."
|
6596 |
|
6597 |
-
#: src/class-updraftplus.php:
|
6598 |
-
#: src/restorer.php:
|
6599 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6600 |
msgstr "Η αποκρυπτογράφηση απέτυχε. Το αρχείο της βάσης δεδομένων είναι κρυπτογραφημένο αλλά δεν έχει εισαχθεί κανένα κλειδί κρυπτογράφησης."
|
6601 |
|
@@ -6603,11 +6607,11 @@ msgstr "Η αποκρυπτογράφηση απέτυχε. Το αρχείο τ
|
|
6603 |
msgid "Could not open the backup file for writing"
|
6604 |
msgstr "Αδυναμία ανοίγματος του αρχείου του αντιγράφου ασφαλείας για εγγραφή"
|
6605 |
|
6606 |
-
#: src/class-updraftplus.php:
|
6607 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6608 |
msgstr "Δεν ήταν δυνατή η αποθήκευση του ιστορικού των αντιγράφων ασφαλείας επειδή δεν υπάρχει πίνακας αντιγράφων ασφαλείας. Η δημιουργία αντιγράφων ασφαλείας πιθανώς απέτυχε."
|
6609 |
|
6610 |
-
#: src/class-updraftplus.php:
|
6611 |
msgid "Could not read the directory"
|
6612 |
msgstr "Αδυναμία ανάγνωσης του φακέλου"
|
6613 |
|
@@ -6619,11 +6623,11 @@ msgstr "Ο φάκελος (%s) των αντιγράφων ασφαλείας δ
|
|
6619 |
msgid "WordPress backup is complete"
|
6620 |
msgstr "Η λήψη αντιγράφων ασφαλείας του WordPress ολοκληρώθηκε"
|
6621 |
|
6622 |
-
#: src/class-updraftplus.php:
|
6623 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6624 |
msgstr "Η προσπάθεια για τη λήψη αντιγράφων ασφαλείας τελείωσε, προφανώς όμως ανεπιτυχώς"
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "The backup apparently succeeded and is now complete"
|
6628 |
msgstr "Η διαδικασία λήψης αντιγράφων ασφαλείας ξεκίνησε και ολοκληρώθηκε επιτυχώς"
|
6629 |
|
@@ -6631,23 +6635,23 @@ msgstr "Η διαδικασία λήψης αντιγράφων ασφαλεία
|
|
6631 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6632 |
msgstr "Παρουσιάστηκε σφάλμα κρυπτογράφησης κατά την κρυπτογράφηση της βάσης δεδομένων. Η κρυπτογράφηση ματαιώθηκε."
|
6633 |
|
6634 |
-
#: src/class-updraftplus.php:
|
6635 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6636 |
msgstr "Αδυναμία δημιουργίας αρχείων στο φάκελο των αντιγράφων ασφαλείας. Η δημιουργία αντιγράφων ασφαλείας ματαιώθηκε - ελέγξτε τις ρυθμίσεις του UpdraftPlus."
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "Others"
|
6640 |
msgstr "Άλλα"
|
6641 |
|
6642 |
-
#: src/addons/multisite.php:465, src/class-updraftplus.php:
|
6643 |
msgid "Uploads"
|
6644 |
msgstr "Μεταφορτώσεις"
|
6645 |
|
6646 |
-
#: src/class-updraftplus.php:
|
6647 |
msgid "Themes"
|
6648 |
msgstr "Θέματα"
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Plugins"
|
6652 |
msgstr "Πρόσθετα"
|
6653 |
|
11 |
"Language: el_GR\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/restorer.php:188
|
43 |
+
msgid "Failed to read from the working directory."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/restorer.php:187
|
47 |
+
msgid "Failed to find a manifest file in the backup."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/restorer.php:186
|
51 |
+
msgid "Failed to read the manifest file from backup."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/includes/class-wpadmin-commands.php:207
|
55 |
+
msgid "Select your incremental restore point"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: src/addons/morefiles.php:73
|
59 |
msgid "(None configured)"
|
60 |
msgstr ""
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: src/admin.php:4602
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: src/admin.php:4598
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
135 |
msgid "remote site"
|
136 |
msgstr "απομακρυσμένη σελίδα"
|
137 |
|
138 |
+
#: src/addons/backblaze.php:475
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr "Μη έγκυρο όνομα φεκέλου"
|
141 |
|
142 |
+
#: src/restorer.php:2028
|
143 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
144 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
145 |
msgstr[0] "Η ζητηθήσα ταξινόμηση του πίνακα (%1$s) δεν υπάρχει - αλλαγή σε %2$s."
|
146 |
msgstr[1] "Οι ζητηθήσες ταξινομήσεις του πίνακα (%1$s) δεν υπάρχουν - αλλαγή σε %2$s."
|
147 |
|
148 |
+
#: src/class-updraftplus.php:4411
|
149 |
msgid "Your chosen replacement collation"
|
150 |
msgstr "Η επιλεγμένη από εσάς ταξινόμηση αντικατάστασης"
|
151 |
|
152 |
+
#: src/class-updraftplus.php:4388
|
153 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
154 |
msgstr "Μπορείτε να επιλέξετε μια άλλη κατάλληλη ταξινόμηση και να συνεχίσετε με την αποκατάσταση (με δική σας ευθύνη)."
|
155 |
|
156 |
+
#: src/class-updraftplus.php:4388
|
157 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
158 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
159 |
msgstr[0] "Ο διακομιστής της βάσης δεδομένων στον οποίο αυτός ο ιστότοπος της WordPress βρίσκεται δεν υποστηρίζει την ταξινόμηση (%s) που χρησιμοποιείται στη βάση δεδομένων που προσπαθείτε να εισαγάγετε."
|
167 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
168 |
msgstr "Αυτό μοιάζει με μετανάστευση (το αντίγραφο ασφαλείας προέρχεται από έναν ιστότοπο με διαφορετικές διευθύνσεις/URL, %s)."
|
169 |
|
170 |
+
#: src/addons/azure.php:631
|
171 |
msgid "%s Prefix"
|
172 |
msgstr "%s Πρόθεμα"
|
173 |
|
174 |
+
#: src/addons/azure.php:626
|
175 |
msgid "%s Container"
|
176 |
msgstr "%s Πίνακας περιεχομένου"
|
177 |
|
178 |
+
#: src/addons/azure.php:621
|
179 |
msgid "%s Key"
|
180 |
msgstr "%s Κλειδί"
|
181 |
|
182 |
+
#: src/addons/azure.php:617
|
183 |
msgid "%s Account Name"
|
184 |
msgstr "%s Όνομα Λογαριασμού"
|
185 |
|
186 |
+
#: src/addons/googlecloud.php:692
|
187 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
188 |
msgstr "Οι ρυθμίσεις %s δεν βρέθηκαν. Παρακαλούμε συμπληρώστε όλα τα πεδία στις ρυθμίσεις %s και στη συνέχεια αποθηκεύστε τις."
|
189 |
|
190 |
+
#: src/addons/googlecloud.php:690
|
191 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
192 |
msgstr "Ωστόσο, δεν καθορίστηκε κανένας φάκελος, επομένως τα αντίγραφα ασφαλείας ενδέχεται να μην ολοκληρωθούν. Καταχωρίστε ένα όνομα φακέλου στις ρυθμίσεις %s και αποθηκεύστε τις."
|
193 |
|
217 |
msgstr[0] "Το αρχείο .htaccess έχει μια παλιά αναφορά τοποθεσίας στον αριθμό γραμμής %s. Πρέπει να το αφαιρέσετε χειροκίνητα."
|
218 |
msgstr[1] "Το αρχείο .htaccess έχει παλιές αναφορές τοποθεσίας στους αριθμούς γραμμών %s. Πρέπει να τις αφαιρέσετε χειροκίνητα."
|
219 |
|
220 |
+
#: src/restorer.php:1990
|
221 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
222 |
msgstr "Το ζητούμενο σετ χαρακτήρων του πίνακα (%s) δεν υπάρχει - αλλαγή σε %s."
|
223 |
|
224 |
+
#: src/class-updraftplus.php:4364
|
225 |
msgid "Your chosen character set to use instead:"
|
226 |
msgstr "Ο επιλεγμένος χαρακτήρας που θέλετε να χρησιμοποιήσετε αντί:"
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4354
|
229 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
230 |
msgstr "Μπορείτε να επιλέξετε ένα άλλο κατάλληλο σύνολο χαρακτήρων και να συνεχίσετε την αποκατάσταση με δική σας ευθύνη."
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4354
|
233 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
234 |
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."
|
235 |
msgstr[0] "Ο διακομιστής βάσης δεδομένων στον οποίο φιλοξενείται αυτός ο ιστότοπος της WordPress δεν υποστηρίζει το σύνολο χαρακτήρων (%s) που προσπαθείτε να εισαγάγετε."
|
283 |
msgid "Please enter a valid URL e.g http://example.com"
|
284 |
msgstr "Εισαγάγετε μια έγκυρη διεύθυνση URL, π.χ. http://example.com"
|
285 |
|
286 |
+
#: src/addons/backblaze.php:633
|
287 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
288 |
msgstr "Υπάρχουν προϋποθέσεις και όρια στα οποία τα ονόματα διαδρομής και φακέλων είναι έγκυρα. Τα διαστήματα δεν επιτρέπονται."
|
289 |
|
290 |
+
#: src/addons/backblaze.php:632
|
291 |
msgid "some/path"
|
292 |
msgstr "κάποια/διαδρομή"
|
293 |
|
294 |
+
#: src/addons/backblaze.php:632
|
295 |
msgid "Bucket name"
|
296 |
msgstr "Όνομα κάδου"
|
297 |
|
298 |
+
#: src/addons/backblaze.php:631
|
299 |
msgid "Backup path"
|
300 |
msgstr "Διαδρομή φακέλου αντιγράφου ασφαλείας"
|
301 |
|
302 |
+
#: src/addons/backblaze.php:626
|
303 |
msgid "Application key"
|
304 |
msgstr "Κλειδί εφαρμογής"
|
305 |
|
306 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
307 |
msgid "here"
|
308 |
msgstr "εδώ"
|
309 |
|
310 |
+
#: src/addons/backblaze.php:621
|
311 |
msgid "Get these settings from %s, or sign up %s."
|
312 |
msgstr "Λάβετε αυτές τις ρυθμίσεις από το %s ή εγγραφείτε στο %s."
|
313 |
|
314 |
+
#: src/addons/backblaze.php:431
|
315 |
msgid "Account Key"
|
316 |
msgstr "Κλειδί Λογαριασμού"
|
317 |
|
318 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
319 |
msgid "Account ID"
|
320 |
msgstr "ID Λογαριασμού"
|
321 |
|
322 |
+
#: src/class-updraftplus.php:4196
|
323 |
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."
|
324 |
msgstr "Όσο η φιλοξενία σας στο διαδίκτυο επιτρέπει την πρόσβαση http (δηλαδή πρόσβαση χωρίς SSL) ή θα προωθεί τα αιτήματα σε https (κάτι που συμβαίνει σχεδόν πάντοτε), αυτό δεν αποτελεί πρόβλημα. Αν αυτό δεν το έχετε ρυθμίσει ακόμα, θα πρέπει να το ορίσετε ή να χρησιμοποιήσετε το %s έτσι ώστε οι σύνδεσμοι που δεν είναι https να αντικατασταθούν αυτόματα."
|
325 |
|
326 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
327 |
msgid "the migrator add-on"
|
328 |
msgstr "το πρόσθετο μετανάστευσης"
|
329 |
|
330 |
+
#: src/class-updraftplus.php:4194
|
331 |
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."
|
332 |
msgstr "Αυτή η αποκατάσταση θα λειτουργήσει εάν εξακολουθείτε να έχετε ένα πιστοποιητικό SSL (δηλ. να μπορείτε να χρησιμοποιήσετε το https) για να αποκτήσετε πρόσβαση στον ιστότοπο. Διαφορετικά, θα πρέπει να χρησιμοποιήσετε το %s για να αναζητήσετε/αντικαταστήσετε τη διεύθυνση ιστότοπου έτσι ώστε να μπορέστε να επισκεφθείτε τον ιστότοπο χωρίς https."
|
333 |
|
334 |
+
#: src/class-updraftplus.php:4192
|
335 |
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."
|
336 |
msgstr "Αυτό το σετ αντιγράφων ασφαλείας είναι αυτού του ιστότοπου, αλλά κατά τη στιγμή της δημιουργίας αντιγράφων ασφαλείας χρησιμοποιούσατε %s, ενώ ο ιστότοπος χρησιμοποιεί τώρα %s."
|
337 |
|
338 |
+
#: src/class-updraftplus.php:4187
|
339 |
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."
|
340 |
msgstr "Η διεύθυνση ιστότοπου στο αντίγραφο ασφαλείας (%s) είναι ελαφρώς διαφορετική από αυτή του ιστότοπου τώρα (%s). Αυτό δεν αναμένεται να αποτελέσει κάποιο πρόβλημα για την αποκατάσταση του ιστότοπου, εφόσον οι επισκέψεις στην προηγούμενη διεύθυνση εξακολουθούν να φθάνουν στον ιστότοπο."
|
341 |
|
355 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
356 |
msgstr "Σφάλμα: Το επιλεγμένο αρχείο είναι κατεστραμμένο. Επιλέξτε ένα έγκυρο αρχείο εξαγωγής του UpdraftPlus."
|
357 |
|
358 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
359 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
360 |
+
#: src/class-updraftplus.php:2427
|
361 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
362 |
msgstr "Έχει συμβεί ένα καίριο σφάλμα (%s) στην PHP: %s"
|
363 |
|
364 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
365 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
366 |
+
#: src/class-updraftplus.php:2420
|
367 |
msgid "A PHP exception (%s) has occurred: %s"
|
368 |
msgstr "Έχει γίνει εξαίρεση (%s) στην PHP: %s"
|
369 |
|
419 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
420 |
msgstr "Όπως σας προειδοποιήσαμε προηγουμένως (δείτε:%s), η κρυπτογράφηση δεν αποτελεί πλέον χαρακτηριστικό της δωρεάν έκδοσης του UpdraftPlus"
|
421 |
|
422 |
+
#: src/admin.php:4808
|
423 |
msgid "Value"
|
424 |
msgstr "Αξία"
|
425 |
|
431 |
msgid "Encrypted login failed; trying non-encrypted"
|
432 |
msgstr "Η κρυπτογραφημένη σύνδεση απέτυχε, προσπάθεια μη κρυπτογραφημένης σύνδεσης"
|
433 |
|
434 |
+
#: src/addons/azure.php:594
|
435 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
436 |
msgstr "Πρέπει να προσθέσετε τα ακόλουθα ως εξουσιοδοτημένο URI ανακατεύθυνσης στην κονσόλα Azure (κάτω από τις \"Ρυθμίσεις API\") όταν σας ζητηθεί"
|
437 |
|
443 |
msgid "Cloud Files"
|
444 |
msgstr "Αρχεία στο Σύννεφο"
|
445 |
|
446 |
+
#: src/admin.php:4553
|
447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
448 |
msgstr "Οι ρυθμίσεις σας απέτυχαν να αποθηκευτούν. Ανανεώστε τη σελίδα ρυθμίσεων και δοκιμάστε ξανά"
|
449 |
|
450 |
+
#: src/admin.php:4512
|
451 |
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."
|
452 |
msgstr "Το UpdraftPlus φαίνεται να έχει ενημερωθεί στην έκδοση (%s), η οποία είναι διαφορετική από την εκδοχή που εκτελείται κατά τη φόρτωση αυτής της σελίδας ρυθμίσεων. Παρακαλούμε επαναφορτώστε τη σελίδα ρυθμίσεων πριν επιχειρήσετε να αποθηκεύσετε τις ρυθμίσεις."
|
453 |
|
456 |
msgid "UpdraftVault"
|
457 |
msgstr "UpdraftVault"
|
458 |
|
459 |
+
#: src/includes/class-wpadmin-commands.php:513
|
460 |
msgid "archive"
|
461 |
msgstr "αρχείο"
|
462 |
|
463 |
+
#: src/includes/class-wpadmin-commands.php:504
|
464 |
msgid "Extra database"
|
465 |
msgstr "Επιπρόσθετη βάση δεδομένων"
|
466 |
|
504 |
msgid "Browse contents"
|
505 |
msgstr "Περιήγηση περιεχομένων"
|
506 |
|
507 |
+
#: src/restorer.php:1811
|
508 |
msgid "Skipped tables:"
|
509 |
msgstr "Πίνακες που έχουν παραλειφθεί:"
|
510 |
|
511 |
+
#: src/class-updraftplus.php:4476
|
512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
513 |
msgstr "Από αυτό το αντίγραφο ασφαλείας των βάσεων δεδομένων έχουν εξαιρέθει οι παρακάτω πίνακες της WordPress: %s"
|
514 |
|
717 |
msgid "Recommended: optimize your database with WP-Optimize."
|
718 |
msgstr "Συνιστούμε: βελτιστοποιήστε τη βάση δεδομένων σας με το WP-Optimize."
|
719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
721 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
722 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
764 |
msgid "Europe (Ireland)"
|
765 |
msgstr "Ευρώπη (Ιρλανδία)"
|
766 |
|
767 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr "UpdraftCentral"
|
976 |
msgid "Export / import settings"
|
977 |
msgstr "Ρυθμίσεις εξαγωγής / εισαγωγής"
|
978 |
|
979 |
+
#: src/restorer.php:2030
|
980 |
msgid "Processing table (%s)"
|
981 |
msgstr "Επεξεργασία πίνακα (%s)"
|
982 |
|
983 |
+
#: src/restorer.php:1777
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr "Αντίγραφο ασφαλείας του: %s"
|
986 |
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr "Ο πελάτης έχει διαγραφεί από την κονσόλα API του Google Drive. Δημιουργήστε ένα νέο έργο στο Google Drive και επανασυνδεθείτε με το UpdraftPlus."
|
990 |
|
991 |
+
#: src/methods/dropbox.php:785
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr "%s αποεπιβεβαίωση"
|
994 |
|
995 |
+
#: src/methods/dropbox.php:631
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr "Πρέπει να προσθέσετε τα παρακάτω ως εξουσιοδοτημένο URI ανακατεύθυνσης στην κονσόλα Dropbox (κάτω από τις \"Ρυθμίσεις API\") όταν σας ζητηθεί"
|
998 |
|
1060 |
msgid "US East (Ohio)"
|
1061 |
msgstr "ΗΠΑ Ανατολή (Οχάιο)"
|
1062 |
|
1063 |
+
#: src/addons/onedrive.php:1051
|
1064 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1065 |
msgstr "Αυτός ο ιστότοπος χρησιμοποιεί μια διεύθυνση URL που είναι είτε μη HTTPS, είτε είναι τοπική διεύθυνση URL ή διεύθυνση URL 127.0.0.1. Ως εκ τούτου, πρέπει να χρησιμοποιήσετε την κύρια εφαρμογή %s %s για έλεγχο ταυτότητας με το λογαριασμό σας."
|
1066 |
|
1067 |
+
#: src/addons/onedrive.php:700
|
1068 |
msgid "Account is not authorized (%s)."
|
1069 |
msgstr "Ο λογαριασμός δεν ειναι εξουσιοδοτημένος (%s)."
|
1070 |
|
1071 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1072 |
msgid "Your IP address:"
|
1073 |
msgstr "Η διεύθυνση IP σας:"
|
1074 |
|
1075 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1076 |
#: src/udaddons/updraftplus-addons.php:887
|
1077 |
msgid "To remove any block, please go here."
|
1078 |
msgstr "Για να αρθούν όλα τα εμπόδια, παρακαλώ πηγαίνετε εδώ."
|
1079 |
|
1080 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr "Μια απάντηση σφάλματος ελήφθη. Κωδικός HTTP:"
|
1083 |
|
1105 |
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."
|
1106 |
msgstr "Από την εγκατάσταση της PHP λείπει η ενότητα OpenSSL ως εκ τούτου, αυτό μπορεί να πάρει μερικά λεπτά, αν δε γίνει τίποτα μέχρι τότε, τότε θα πρέπει είτε να δοκιμάσετε ένα μικρότερο μέγεθος κλειδιού, ή να ρωτήσετε την εταιρεία που έχετε το web hosting σας πώς να ενεργοποιήσετε αυτήν την ενότητα PHP στην εγκατάστασή σας."
|
1107 |
|
1108 |
+
#: src/addons/webdav.php:216
|
1109 |
msgid "Path"
|
1110 |
msgstr "Διαδρομή"
|
1111 |
|
1112 |
+
#: src/addons/webdav.php:211
|
1113 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1114 |
msgstr "Αφήστε το κενό για να χρησιμοποιήσετε το προεπιλεγμένο (80 για το WebDAV, 443 για webdavs)"
|
1115 |
|
1116 |
+
#: src/addons/webdav.php:203
|
1117 |
msgid "Enter any path in the field below."
|
1118 |
msgstr "Εισάγετε μια διαδρομή στο παρακάτω πεδίο."
|
1119 |
|
1120 |
+
#: src/addons/webdav.php:203
|
1121 |
msgid "A host name cannot contain a slash."
|
1122 |
msgstr "Ένα όνομα κεντρικού υπολογιστή δεν μπορεί να περιέχει κάθετο (slash)."
|
1123 |
|
1124 |
+
#: src/addons/webdav.php:178
|
1125 |
msgid "Protocol (SSL or not)"
|
1126 |
msgstr "Πρωτόκολλο (SSL ή όχι)"
|
1127 |
|
1128 |
+
#: src/addons/webdav.php:173
|
1129 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1130 |
msgstr "Αυτή η διεύθυνση URL του WebDAV δημιουργείται συμπληρώνοντας τις παρακάτω επιλογές. Αν δεν ξέρετε τις λεπτομέρειες, τότε θα πρέπει να ρωτήσετε τον παροχέα του WebDAV σας."
|
1131 |
|
1133 |
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."
|
1134 |
msgstr "Ελήφθη ως απάντηση πως δεν υπάρχουν δεδομένα. Αυτό φανερώνει συνήθως ένα πρόβλημα σύνδεσης δικτύου (π.χ. ένα εξωτερικό τείχος προστασίας ή ένα υπερφορτωμένο δίκτυο) μεταξύ αυτής της ιστοσελίδας και του UpdraftPlus.com."
|
1135 |
|
1136 |
+
#: src/methods/s3.php:1129
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr "Το κλειδί πρόσβασης AWS φαίνεται να είναι λάθος (τα έγκυρα κλειδιά πρόσβασης %s αρχίζουν με \"AK\")"
|
1139 |
|
1140 |
+
#: src/methods/s3.php:126
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr "Δε βρέθηκαν ρυθμίσεις - παρακαλούμε πηγαίνετε στην καρτέλα Ρυθμίσεις και ελέγξτε τις ρυθμίσεις σας"
|
1143 |
|
1243 |
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."
|
1244 |
msgstr "Αυτό το αρχείο αντιγράφων ασφαλείας έχει μέγεθος %s MB - η προσπάθεια να το στείλετε αυτό μέσω ηλεκτρονικού ταχυδρομείου είναι πιθανό να αποτύχει (ελάχιστοι e-mail servers επιτρέπουν συνημμένα αρχεία αυτού του μεγέθους). Αν ναι, θα πρέπει να σκεφτείτε να κάνετε χρήση μιας διαφορετικής μεθόδου απομακρυσμένης αποθήκευσης."
|
1245 |
|
1246 |
+
#: src/class-updraftplus.php:1835
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr "Μέγεθος: %s MB"
|
1249 |
|
1255 |
msgid "Now"
|
1256 |
msgstr "Τώρα"
|
1257 |
|
1258 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr "Θα πρέπει να ενεργοποιήσετε το %s για να λειτουργήσουν τα pretty permalinks (e.g. %s)"
|
1261 |
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr "Σύνδεση στο UpdraftCentral "
|
1363 |
|
1364 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr "Η λήψη αντιγράφου ασφαλείας ακυρώθηκε από το χρήστη"
|
1367 |
|
1368 |
+
#: src/admin.php:4548
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr "Οι ρυθμίσεις έχουν αποθηκευτεί."
|
1371 |
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr "Ασίας Ειρηνικού (Σεούλ)"
|
1433 |
|
1434 |
+
#: src/restorer.php:1800
|
1435 |
msgid "Uploads URL:"
|
1436 |
msgstr "URL Μεταφορτώσεων:"
|
1437 |
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr "Το απαραίτητο PHP module %s δεν είναι εγκατεστημένο - επικοινωνήστε με την εταιρεία παροχής web hosting σας για να το ενεργοποιήσετε."
|
1441 |
|
1442 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr "Η εισαγωγή ενός συνηθισμένου ιστότοπου WordPress σε μια εγκατάσταση πολλαπλών ιστοτόπων απαιτεί το %s."
|
1445 |
|
1446 |
+
#: src/class-updraftplus.php:4260
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr "Παρακαλούμε διαβάστε αυτό το σύνδεσμο για σημαντικές πληροφορίες σχετικά με αυτή τη διαδικασία."
|
1449 |
|
1450 |
+
#: src/class-updraftplus.php:4260
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr "Θα εισαχθεί σαν καινούριος ιστότοπος."
|
1453 |
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr "Οι αποθηκευμένες ρυθμίσεις σας επηρεάζουν και τι θα συμπεριληφθεί στο αντίγραφο ασφαλείας - π.χ. αρχεία που αποκλείονται."
|
1523 |
|
1524 |
+
#: src/admin.php:4086
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr "Παράκαμψη: Το αρχείο έχει ήδη αποκατασταθεί."
|
1527 |
|
1553 |
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)."
|
1554 |
msgstr "Αυτό το κουμπί θα διαγράψει όλες τις ρυθμίσεις του UpdraftPlus καθώς και τις πληροφορίες προόδου για την δημιουργία αντιγράφων ασφαλείας που βρίσκεται σε εξέλιξη (αλλά όχι οποιοδήποτε από τα υπάρχοντα αντίγραφα ασφαλείας σας από το σημείο αποθήκευσής σας)."
|
1555 |
|
1556 |
+
#: src/admin.php:4422
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr "Αποστολή αυτού του αντιγράφου ασφαλείας στο σημείο απομακρυσμένης αποθήκευσης"
|
1559 |
|
1560 |
+
#: src/admin.php:4420
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr "Δείτε το UpdraftPlus Vault."
|
1563 |
|
1564 |
+
#: src/admin.php:4420
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr "Δεν έχετε ακόμα κανένα λογαριασμό σε σημείο απομακρυσμένης αποθήκευσης;"
|
1567 |
|
1568 |
+
#: src/admin.php:4420
|
1569 |
msgid "settings"
|
1570 |
msgstr "ρυθμίσεις"
|
1571 |
|
1572 |
+
#: src/admin.php:4420
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr "Το αντίγραφο ασφαλείας δεν θα αποσταλεί σε κάθε απομακρυσμένη αποθήκευση - καμία δεν έχει αποθηκευτεί στο %s"
|
1575 |
|
1626 |
msgid "Advanced Tools"
|
1627 |
msgstr "Προηγμένα εργαλεία"
|
1628 |
|
1629 |
+
#: src/addons/googlecloud.php:1049
|
1630 |
msgid "Bucket location"
|
1631 |
msgstr "Τοποθεσία φακέλου"
|
1632 |
|
1633 |
+
#: src/addons/googlecloud.php:1044
|
1634 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1635 |
msgstr "Σημειώστε ότι η Google δεν υποστηρίζει κάθε κατηγορίας αποθήκευσης σε κάθε θέση - θα πρέπει να διαβάσετε την τεκμηρίωσή τους για να ενημερωθείτε για τις τρέχουσες διαθεσιμότητες."
|
1636 |
|
1637 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1638 |
msgid "This setting applies only when a new bucket is being created."
|
1639 |
msgstr "Αυτή η ρύθμιση ισχύει μόνο όταν ένας καινούριος φάκελος δημιουργείται."
|
1640 |
|
1641 |
+
#: src/addons/googlecloud.php:1033
|
1642 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1643 |
msgstr "Θα πρέπει να χρησιμοποιήσετε ένα όνομα φακέλου που να είναι μοναδικό, για όλους τους %s χρήστες."
|
1644 |
|
1645 |
+
#: src/addons/googlecloud.php:979
|
1646 |
msgid "Do not confuse %s with %s - they are separate things."
|
1647 |
msgstr "Μη συγχέετε το %s με το %s - είναι διαφορετικά πράγματα."
|
1648 |
|
1704 |
msgid "Standard"
|
1705 |
msgstr "Κανονικό"
|
1706 |
|
1707 |
+
#: src/addons/azure.php:632
|
1708 |
msgid "container"
|
1709 |
msgstr "φάκελος"
|
1710 |
|
1711 |
+
#: src/addons/azure.php:632
|
1712 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1713 |
msgstr "Μπορείτε να εισαγάγετε τη διαδρομή του οποιουδήποτε %s εικονικού φακέλου που θέλετε να χρησιμοποιήσετε εδώ."
|
1714 |
|
1715 |
+
#: src/addons/azure.php:631
|
1716 |
msgid "optional"
|
1717 |
msgstr "προαιρετικό"
|
1718 |
|
1719 |
+
#: src/addons/azure.php:627
|
1720 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1721 |
msgstr "Δείτε τις οδηγίες της Microsoft σχετικά με την ονομασία του φακέλου ακολουθώντας αυτό το σύνδεσμο."
|
1722 |
|
1723 |
+
#: src/addons/azure.php:627
|
1724 |
msgid "Enter the path of the %s you wish to use here."
|
1725 |
msgstr "Εισάγετε τη διαδρομή του %s που θέλετε να χρησιμοποιήσετε εδώ."
|
1726 |
|
1727 |
+
#: src/addons/azure.php:618
|
1728 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1729 |
msgstr "Αυτή δεν είναι η σύνδεσή σας στο Azure σας - δείτε τις οδηγίες αν χρειάζεστε περισσότερες πληροφορίες."
|
1730 |
|
1731 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1732 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1733 |
msgid "Azure"
|
1734 |
msgstr "Azure"
|
1735 |
|
1736 |
+
#: src/addons/azure.php:598
|
1737 |
msgid "Create Azure credentials in your Azure developer console."
|
1738 |
msgstr "Δημιουργία διαπιστευτήριων Azure στην κονσόλα προγραμματιστή του Azure σας."
|
1739 |
|
1740 |
+
#: src/addons/azure.php:562
|
1741 |
msgid "Could not create the container"
|
1742 |
msgstr "Αδυναμία δημιουργίας του φακέλου"
|
1743 |
|
1744 |
+
#: src/addons/azure.php:413
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr "Αδυναμία πρόσβασης στο φάκελο"
|
1747 |
|
1748 |
+
#: src/class-updraftplus.php:2926
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr "Για να ολοκληρωθεί η μετανάστευση/κλωνοποίηση, θα πρέπει τώρα να συνδεθείτε με την απομακρυσμένη τοποθεσία και να αποκαταστήσετε το σύνολο αντιγράφων ασφαλείας."
|
1751 |
|
1773 |
msgid "Not installed"
|
1774 |
msgstr "Δεν εγκαταστάθηκε"
|
1775 |
|
1776 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1777 |
msgid "Storage class"
|
1778 |
msgstr "Κατηγορία αποθήκευσης"
|
1779 |
|
1780 |
+
#: src/addons/googlecloud.php:1033
|
1781 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1782 |
msgstr "Δείτε τις οδηγίες της Google σχετικά με την ονοματοθεσία των φακέλων ακολουθώντας αυτό το σύνδεσμο."
|
1783 |
|
1784 |
+
#: src/addons/googlecloud.php:1033
|
1785 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1786 |
msgstr "Εισάγετε το όνομα του φακέλου %s επιθυμείτε να χρησιμοποιήσετε εδώ."
|
1787 |
|
1788 |
+
#: src/addons/googlecloud.php:1032
|
1789 |
msgid "Bucket"
|
1790 |
msgstr "Φάκελος"
|
1791 |
|
1792 |
+
#: src/addons/googlecloud.php:1028
|
1793 |
msgid "Otherwise, you can leave it blank."
|
1794 |
msgstr "Αλλιώς, μπορείτε να το αφήσετε κενό."
|
1795 |
|
1796 |
+
#: src/addons/googlecloud.php:1028
|
1797 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1798 |
msgstr "Σημείωση: Αυτό είναι απαραίτητο μόνο αν δεν έχετε ήδη δημιουργήσει το φάκελο και θέλετε το UpdraftPlus να το δημιουργήσει για εσάς."
|
1799 |
|
1800 |
+
#: src/addons/googlecloud.php:1028
|
1801 |
msgid "Enter the ID of the %s project you wish to use here."
|
1802 |
msgstr "Εισάγετε την ταυτότητα του σχεδίου %s που επιθυμείτε να χρησιμοποιήσετε εδώ."
|
1803 |
|
1804 |
+
#: src/addons/googlecloud.php:991
|
1805 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1806 |
msgstr "Ακολουθήστε αυτό το σύνδεσμο για την Google API Console σας, και εκεί ενεργοποιήστε το API της αποθήκευσης και δημιουργήσετε ένα Αναγνωριστικό Πελάτη στο Τμήμα Πρόσβασης API."
|
1807 |
|
1808 |
+
#: src/addons/googlecloud.php:902
|
1809 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1810 |
msgstr "Θα πρέπει να εισάγετε την Ταυτότητα Σχεδίου για να μπορέσετε να δημιουργήσετε ένα νέο φάκελο."
|
1811 |
|
1812 |
+
#: src/addons/googlecloud.php:1026
|
1813 |
msgid "Project ID"
|
1814 |
msgstr "Ταυτότητα Σχεδίου"
|
1815 |
|
1816 |
+
#: src/addons/googlecloud.php:759
|
1817 |
msgid "You must save and authenticate before you can test your settings."
|
1818 |
msgstr "Θα πρέπει να αποθηκεύσετε και να επικυρώσετε τις ρυθμίσεις σας πριν μπορέσετε να τις ελέγξετε."
|
1819 |
|
1822 |
msgstr "Δεν έχετε αποκτήσει ακόμη τεκμήριο πρόσβασης από το Google - θα πρέπει να επιτρέψετε ή να επιτρέψετε εκ νέου τη σύνδεσή σας στο Google Cloud."
|
1823 |
|
1824 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1825 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1826 |
msgid "You do not have access to this bucket."
|
1827 |
msgstr "Δεν έχετε πρόσβαση σε αυτόν το φάκελο."
|
1828 |
|
1829 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1830 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1831 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1832 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1833 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1834 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1835 |
msgid "Google Cloud"
|
1836 |
msgstr "Google Cloud"
|
1837 |
|
1838 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1839 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1840 |
+
#: src/addons/googlecloud.php:941
|
1841 |
msgid "%s Service Exception."
|
1842 |
msgstr "%s Εξαίρεση Υπηρεσίας."
|
1843 |
|
1845 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1846 |
msgstr "Το UpdraftPlus δεν έχει εγκατασταθεί πλήρως - παρακαλώ απεγκαταστήσετε και εγκαταστήσετε το ξανά. Το πιο πιθανό είναι πως κάποια δυσλειτουργία συνέβη στη WordPress κατά την αντιγραφή των αρχείων του πρόσθετου."
|
1847 |
|
1848 |
+
#: src/restorer.php:827
|
1849 |
msgid "Deferring..."
|
1850 |
msgstr "Αναβολή..."
|
1851 |
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr "Προσθέστε ένα πρόσθετο κανόνα διατήρησης..."
|
1916 |
|
1917 |
+
#: src/restorer.php:2354
|
1918 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1919 |
msgstr "Αυτή η βάση δεδομένων θα πρέπει να αναπτυχθεί σε μια έκδοση %s της MySQL ή μεταγενέστερη."
|
1920 |
|
1921 |
+
#: src/restorer.php:2354
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr "Αυτό το πρόβλημα προκαλείται από την προσπάθεια να αποκατασταθεί μια βάση δεδομένων σε μια πολύ παλιά έκδοση της MySQL η οποία είναι ασύμβατη με τη βάση δεδομένων προέλευσης."
|
1924 |
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr "Δεν έχετε επί του παρόντος κανένα ποσοστό χώρου στο UpdraftPlus Vault"
|
1928 |
|
1929 |
+
#: src/class-updraftplus.php:4333
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr "Θα πρέπει να αναβαθμίσετε τη MySQL να είναι σε θέση να χρησιμοποιήσετε αυτή τη βάση δεδομένων."
|
1932 |
|
1933 |
+
#: src/class-updraftplus.php:4333
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr "Η βάση δεδομένων των αντιγράφων ασφαλείας χρησιμοποιεί χαρακτηριστικά της MySQL που δεν είναι διαθέσιμα στην παλιά έκδοση της MySQL (%s) πάνω στην οποία τρέχει αυτή η σελίδα."
|
1936 |
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr "Updraft Vault"
|
2110 |
|
2111 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2112 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr "Η διαγραφή απέτυχε:"
|
2115 |
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr "Υπάρχοντα κλειδιά"
|
2147 |
|
|
|
|
|
|
|
|
|
2148 |
#: src/addons/migrator.php:2405
|
2149 |
msgid "Your new key:"
|
2150 |
msgstr "Το νέο σας κλειδί:"
|
2350 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2351 |
msgstr "Το αίτημά σας δεν μπορεί να ικανοποιηθεί. Μήπως έχετε ήδη χρησιμοποιήσει αυτή την αγορά κάπου αλλού ή η περίοδος για την οποία έχετε πληρώσει για λήψη από updraftplus.com έχει λήξει;"
|
2352 |
|
2353 |
+
#: src/restorer.php:2356
|
2354 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2355 |
msgstr "Για να χρησιμοποιήσετε αυτό το αντίγραφο ασφαλείας, ο διακομιστής της βάσης δεδομένων πρέπει να υποστηρίζει το σύνολο χαρακτήρων %s."
|
2356 |
|
2382 |
msgid "You have made changes to your settings, and not saved."
|
2383 |
msgstr "Έχετε κάνει αλλαγές στις ρυθμίσεις σας και δεν τις έχετε αποθηκεύσει."
|
2384 |
|
2385 |
+
#: src/addons/onedrive.php:1111
|
2386 |
msgid "N.B. %s is not case-sensitive."
|
2387 |
msgstr "N.B. %s δεν είναι case-sensitive."
|
2388 |
|
2389 |
+
#: src/addons/onedrive.php:1101
|
2390 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2391 |
msgstr "Αν OneDrive σας δείχνει αργότερα το μήνυμα \"unauthorized_client\", τότε δεν έχετε εισάγετε ένα έγκυρο αναγνωριστικό πελάτη εδώ."
|
2392 |
|
2393 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2394 |
+
#: src/addons/onedrive.php:1074
|
2395 |
msgid "For longer help, including screenshots, follow this link."
|
2396 |
msgstr "Για μεγαλύτερη βοήθεια, καθώς και στιγμιότυπα οθόνης, ακολουθήστε αυτό το σύνδεσμο."
|
2397 |
|
2398 |
+
#: src/addons/onedrive.php:1067
|
2399 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2400 |
msgstr "Δημιουργήστε διαπιστευτήρια στο OneDrive στην κονσόλα προγραμματιστή του OneDrive σας."
|
2401 |
|
2402 |
+
#: src/addons/onedrive.php:1059
|
2403 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2404 |
msgstr "Θα πρέπει να προσθέσετε το ακόλουθο ως εξουσιοδοτημένη ανακατεύθυνση URI στην κονσόλα του OneDrive σας (στις \"Ρυθμίσεις API») όταν ρωτηθείτε"
|
2405 |
|
2406 |
+
#: src/addons/azure.php:592
|
2407 |
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)."
|
2408 |
msgstr "Το Microsoft Azure δεν είναι συμβατό με ιστοσελίδες που φιλοξενούνται σε localhost ή URL 127.0.0.1 - οι ρυθμίσεις τους απαγορεύουν την πρόσβαση σε αυτά (η τρέχουσα διεύθυνση URL είναι: %s)."
|
2409 |
|
2410 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2411 |
msgid "%s authorisation failed:"
|
2412 |
msgstr "%s η αυθεντικοποίηση απέτυχε:"
|
2413 |
|
2414 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2415 |
+
#: src/addons/onedrive.php:1104
|
2416 |
msgid "OneDrive"
|
2417 |
msgstr "OneDrive"
|
2418 |
|
2419 |
+
#: src/addons/onedrive.php:691
|
2420 |
msgid "Please re-authorize the connection to your %s account."
|
2421 |
msgstr "Παρακαλούμε κάντε εκ νέου σύνδεση με το λογαριασμό σας %s."
|
2422 |
|
2424 |
msgid "configure it here"
|
2425 |
msgstr "κάντε διαμόρφωση εδώ"
|
2426 |
|
2427 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2428 |
msgid "To remove the block, please go here."
|
2429 |
msgstr "Για να διαγράψετε αυτό το μπλοκ, παρακαλούμε πηγαίνετε εδώ."
|
2430 |
|
2569 |
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)"
|
2570 |
msgstr "Εάν έχετε ένα διαχειριστή AWS, τότε μπορείτε να χρησιμοποιήσετε αυτόν τον οδηγό για να δημιουργήσετε γρήγορα έναν νέο AWS (ΙΑΜ) χρήστη με πρόσβαση μόνο σε αυτόν το bucket (και όχι ολόκληρο το λογαριασμό σας)"
|
2571 |
|
2572 |
+
#: src/methods/s3.php:910
|
2573 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2574 |
msgstr "Για να δημιουργήσετε ένα νέο ΙΑΜ υπο-χρήστη και κλειδί πρόσβασης που έχει πρόσβαση μόνο σε αυτόν το bucket, χρησιμοποιήστε αυτό το πρόσθετο."
|
2575 |
|
2576 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2577 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2578 |
msgstr "Για προσωπική υποστήριξη, τη δυνατότητα να αντιγράψετε ιστοσελίδες, περισσότερους προορισμούς αποθήκευσης, κρυπτογραφημένα αντίγραφα ασφαλείας για ασφάλεια, πολλαπλούς προορισμούς δημιουργίας αντιγράφων ασφαλείας, καλύτερες αναφορές, χωρίς διαφημίσεις και πολλά περισσότερα, ρίξτε μια ματιά στην έκδοση premium της UpdraftPlus - το πιο δημοφιλές πρόσθετο λήψης αντιγράφων ασφαλείας στον κόσμο."
|
2579 |
|
2580 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2581 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2582 |
msgstr "Ειδήσεις του UpdraftPlus, υψηλής ποιότητας εκπαιδευτικό υλικό για προγραμματιστές του WordPress και ιδιοκτήτες ιστοσελίδων, και γενικά ειδήσεις για το WordPress. Μπορείτε να απο-εγγραφείτε οποιαδήποτε χρονική στιγμή."
|
2583 |
|
2584 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2585 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2586 |
#: src/udaddons/updraftplus-addons.php:887
|
2587 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2588 |
msgstr "Αυτό πιθανότατα σημαίνει ότι μοιράζεστε ένα διακομιστή με μια παραβιασμένη από χάκερς ιστοσελίδα η οποία έχει χρησιμοποιηθεί σε προηγούμενες επιθέσεις."
|
2589 |
|
2590 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2591 |
#: src/udaddons/updraftplus-addons.php:887
|
2592 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2593 |
msgstr "Φαίνεται ότι η διεύθυνση IP του web server σας (%s) είναι μπλοκαρισμένη."
|
2594 |
|
2595 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2596 |
#: src/udaddons/updraftplus-addons.php:887
|
2597 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2598 |
msgstr "Το UpdraftPlus.com απάντησε με \"Δεν επιτρέπεται η πρόσβαση\"."
|
2599 |
|
2600 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2601 |
msgid "Premium WooCommerce plugins"
|
2602 |
msgstr "Premium πρόσθετα WooCommerce"
|
2603 |
|
2604 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2605 |
msgid "Free two-factor security plugin"
|
2606 |
msgstr "Δωρεάν πρόσθετο ασφαλείας δύο παραγόντων"
|
2607 |
|
2608 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2609 |
+
msgid "More quality plugins"
|
2610 |
+
msgstr ""
|
2611 |
|
2612 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2613 |
msgid "Go to the shop."
|
2614 |
msgstr "Πηγαίνετε στο κατάστημα."
|
2615 |
|
2616 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2617 |
msgid "Compare with the free version"
|
2618 |
msgstr "Συγκρίνετε με την δωρεάν έκδοση"
|
2619 |
|
2620 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2621 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2622 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2623 |
msgid "UpdraftPlus Premium"
|
2624 |
msgstr "UpdraftPlus Premium"
|
2625 |
|
2626 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
|
|
|
|
|
|
|
|
2627 |
msgid "Free Newsletter"
|
2628 |
msgstr "Δωρεάν Newsletter"
|
2629 |
|
|
|
|
|
|
|
|
|
2630 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2631 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
|
2632 |
msgid "Dismiss (for %s months)"
|
2633 |
msgstr "Να απορριφθεί (για %s μήνες)"
|
2634 |
|
2669 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2670 |
msgstr "Δημιουργία αντιγράφων ασφαλείας (κατά περίπτωση) πρόσθετων, θεμάτων και της βάσης δεδομένων της WordPress με το UpdraftPlus πριν από την ενημέρωση"
|
2671 |
|
2672 |
+
#: src/methods/s3.php:177, src/methods/s3.php:178, src/methods/s3.php:179,
|
2673 |
+
#: src/methods/s3.php:187, src/methods/s3.php:188, src/methods/s3.php:189
|
2674 |
msgid "%s Error: Failed to initialise"
|
2675 |
msgstr "%s Σφάλμα: Αποτυχία στην εκκίνηση"
|
2676 |
|
2715 |
msgid "Manual"
|
2716 |
msgstr "Χειροκίνητα"
|
2717 |
|
2718 |
+
#: src/restorer.php:2333
|
2719 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2720 |
msgid "An error (%s) occurred:"
|
2721 |
msgstr "Ένα σφάλμα (%s) συνέβη:"
|
2856 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2857 |
msgstr "Το κουμπί «Δημιουργία Αντιγράφων ασφαλείας\" είναι απενεργοποιημένο διότι ο κατάλογος αποθήκευσης των αντιγράφων ασφαλείας σας δεν είναι εγγράψιμος (πηγαίνετε στην καρτέλα «Ρυθμίσεις» όπου θα βρείτε τη σχετική επιλογή)."
|
2858 |
|
2859 |
+
#: src/class-updraftplus.php:4249
|
2860 |
msgid "Backup label:"
|
2861 |
msgstr "Ετικέτα αντιγράφων ασφαλείας:"
|
2862 |
|
2880 |
msgid "Your label for this backup (optional)"
|
2881 |
msgstr "Η ετικέτα σας για αυτό το αντίγραφο ασφαλείας (προαιρετικό)"
|
2882 |
|
2883 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1162
|
2884 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2885 |
msgstr "%s δεν επιτρέπει την έγκριση σε σελίδες που φιλοξενούνται σε απευθείας διευθύνσεις IP. Θα πρέπει να αλλάξετε τη διεύθυνση του δικτυακού σας τόπου (%s) για να μπορέσετε να χρησιμοποιήσετε το %s για την αποθήκευση."
|
2886 |
|
2900 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2901 |
msgstr "Για να συνεχίσετε, πατήστε το πλήκτρο «Δημιουργία αντιγράφων ασφαλείας τώρα». Στη συνέχεια, παρακολουθήστε το πεδίο «Τελευταίο Μήνυμα Καταγραφής» για να δείτε την εξέλιξη."
|
2902 |
|
2903 |
+
#: src/class-updraftplus.php:4268
|
2904 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2905 |
msgstr "Εάν θέλετε να επαναφέρετε ένα multisite αντίγραφο ασφαλείας, θα πρέπει πρώτα να ρυθμίσετε αντίστοιχα και την εγκατάσταση του WordPress σας ως multisite."
|
2906 |
|
2907 |
+
#: src/class-updraftplus.php:4268
|
2908 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2909 |
msgstr "Το αντίγραφο ασφαλείας σας είναι από μια multisite εγκατάσταση του WordPress, αλλά αυτό το site δεν είναι. Μόνο η πρώτη σελίδα του δικτύου θα είναι προσβάσιμη."
|
2910 |
|
2941 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2942 |
msgstr "Θα πρέπει να συνδεθείτε για να λαμβάνετε τις μελλοντικές ενημερώσεις για το UpdraftPlus."
|
2943 |
|
2944 |
+
#: src/class-updraftplus.php:4241
|
2945 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2946 |
msgstr "Όλες οι αιτήσεις υποστήριξης που έχουν να κάνουν με το %s πρέπει να γίνουν προς την εταιρεία web hosting σας."
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4241
|
2949 |
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."
|
2950 |
msgstr "Θα πρέπει να συνεχίσετε μόνο αν δεν μπορείτε να ενημερώσετε τον τρέχοντα server και είστε βέβαιοι (ή διατεθειμένοι να διακινδυνεύσετε) ότι τα πρόσθετα/θέματα/κλπ. είναι συμβατά με την παλαιότερη %s έκδοση."
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4241
|
2953 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2954 |
msgstr "Αυτός είναι πολύ νεότερος από τον server στον οποίο τώρα κάνετε αποκατάσταση (έκδοση %s)."
|
2955 |
|
2956 |
+
#: src/class-updraftplus.php:4241
|
2957 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2958 |
msgstr "Η ιστοσελίδα σε αυτό το αντίγραφο ασφαλείας έτρεχε σε ένα διακομιστή με έκδοση %s of %s. "
|
2959 |
|
2998 |
msgid "Start backup"
|
2999 |
msgstr "Έναρξη λήψης αντιγράφου ασφαλείας"
|
3000 |
|
3001 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
3002 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3003 |
msgstr "Χρησιμοποιείτε το διακομιστή %s, αλλά δεν φαίνεται να έχει φορτωθεί η μονάδα %s."
|
3004 |
|
3034 |
msgid "Memory limit"
|
3035 |
msgstr "Περιορισμός μνήμης"
|
3036 |
|
3037 |
+
#: src/class-updraftplus.php:4682, src/restorer.php:1608
|
3038 |
msgid "restoration"
|
3039 |
msgstr "αποκατάσταση"
|
3040 |
|
3097 |
msgid "search term"
|
3098 |
msgstr "όρος αναζήτησης"
|
3099 |
|
3100 |
+
#: src/restorer.php:2361
|
3101 |
msgid "Too many database errors have occurred - aborting"
|
3102 |
msgstr "Βρέθηκαν πολλά λάθη στη βάση δεδομένων - γίνεται ματαίωση"
|
3103 |
|
3133 |
msgid "Free disk space in account:"
|
3134 |
msgstr "Ελεύθερος χώρος στο δίσκο για το λογαριασμό:"
|
3135 |
|
3136 |
+
#: src/admin.php:4519, src/templates/wp-admin/settings/tab-status.php:27
|
3137 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3138 |
msgstr "Αυτό το κουμπί είναι απενεργοποιημένο, επειδή ο κατάλογος για την αποθήκευση του αντιγράφου ασφαλείας σας δεν είναι εγγράψιμος (δείτε τις ρυθμίσεις)."
|
3139 |
|
3228 |
msgid "user"
|
3229 |
msgstr "χρήστης"
|
3230 |
|
3231 |
+
#: src/class-updraftplus.php:1832
|
3232 |
msgid "External database (%s)"
|
3233 |
msgstr "Εξωτερική βάση δεδομένων (%s)"
|
3234 |
|
3240 |
msgid "failed to access parent folder"
|
3241 |
msgstr "αδυναμία πρόσβασης στο γονικό φάκελο"
|
3242 |
|
3243 |
+
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3244 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:421
|
3245 |
msgid "However, subsequent access attempts failed:"
|
3246 |
msgstr "Ωστόσο, οι επόμενες προσπάθειες πρόσβασης απέτυχαν:"
|
3247 |
|
3277 |
msgid "use UpdraftPlus Premium"
|
3278 |
msgstr "χρησιμοποιήστε το UpdraftPlus Premium"
|
3279 |
|
3280 |
+
#: src/class-updraftplus.php:4095
|
3281 |
msgid "Decryption failed. The database file is encrypted."
|
3282 |
msgstr "Η αποκρυπτογράφηση απέτυχε. Η βάση δεδομένων είναι κρυπτογραφημένη."
|
3283 |
|
3285 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3286 |
msgstr "Μόνο η βάση δεδομένων του WordPress μπορεί να αποκατασταθεί, θα πρέπει να ασχοληθείτε με την εξωτερική βάση δεδομένων με μη αυτόματο τρόπο."
|
3287 |
|
3288 |
+
#: src/restorer.php:1876, src/restorer.php:2302, src/restorer.php:2343,
|
3289 |
+
#: src/restorer.php:2356
|
3290 |
msgid "An error occurred on the first %s command - aborting run"
|
3291 |
msgstr "Παρουσιάστηκε σφάλμα στην πρώτης %s εντολή - ματαίωση εκτέλεσης"
|
3292 |
|
3306 |
msgid "In %s, path names are case sensitive."
|
3307 |
msgstr "Στο %s, και στα ονόματα διαδρομής γίνεται διάκριση πεζών - κεφαλαίων."
|
3308 |
|
3309 |
+
#: src/addons/azure.php:632, src/addons/google-enhanced.php:76,
|
3310 |
+
#: src/addons/onedrive.php:1111
|
3311 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3312 |
msgstr "Αν το αφήσετε κενό, τότε το αντίγραφο ασφαλείας θα τοποθετηθεί στο ριζικό φάκελο του %s σας"
|
3313 |
|
3314 |
+
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1033,
|
3315 |
+
#: src/addons/onedrive.php:1111
|
3316 |
msgid "e.g. %s"
|
3317 |
msgstr "π.χ. %s"
|
3318 |
|
3319 |
+
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1111
|
3320 |
msgid "Enter the path of the %s folder you wish to use here."
|
3321 |
msgstr "Εισάγετε τη διαδρομή του φακέλου %s που θέλετε να χρησιμοποιήσετε εδώ."
|
3322 |
|
3360 |
msgid "Failed to upload %s"
|
3361 |
msgstr "Αποτυχία ανεβάσματος του %s"
|
3362 |
|
3363 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
3364 |
msgid "Success:"
|
3365 |
msgstr "Επιτυχία:"
|
3366 |
|
3368 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3369 |
msgstr "<strong>Αφού</strong> έχετε αποθηκεύσει τις ρυθμίσεις σας (κάνοντας κλικ στο \"Αποθήκευση αλλαγών\" παρακάτω), μετά επιστρέψτε εδώ μια φορά και κάντε κλικ σε αυτό το σύνδεσμο για να ολοκληρώσετε τον έλεγχο ταυτότητας με το %s."
|
3370 |
|
3371 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:610
|
3372 |
msgid "(You appear to be already authenticated)."
|
3373 |
msgstr "(Φαίνεται πως έχετε ήδη ταυτοποιηθεί)."
|
3374 |
|
3375 |
+
#: src/methods/dropbox.php:606
|
3376 |
msgid "Dropbox"
|
3377 |
msgstr "Dropbox"
|
3378 |
|
3379 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:606
|
3380 |
msgid "Authenticate with %s"
|
3381 |
msgstr "Ταυτοποίηση με το %s"
|
3382 |
|
3407 |
msgid "%s error - failed to access the container"
|
3408 |
msgstr "%s σφάλμα- αποτυχία πρόσβασης στο φάκελο"
|
3409 |
|
3410 |
+
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3411 |
+
#: src/methods/dropbox.php:663, src/methods/googledrive.php:1248
|
3412 |
msgid "Account holder's name: %s."
|
3413 |
msgstr "Όνομα κατόχου λογαριασμού: %s."
|
3414 |
|
3424 |
msgid "<strong>This is NOT a folder name</strong>."
|
3425 |
msgstr "<strong>Αυτό ΔΕΝ είναι ένα όνομα φακέλου</strong>."
|
3426 |
|
3427 |
+
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3428 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3429 |
msgid "Folder"
|
3430 |
msgstr "Φάκελος"
|
3431 |
|
3432 |
+
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3433 |
#: src/methods/googledrive.php:1122
|
3434 |
msgid "%s download: failed: file not found"
|
3435 |
msgstr "%s μεταφόρτωσης: σφάλμα: το αρχείο δεν βρέθηκε"
|
3436 |
|
3437 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:441
|
3438 |
msgid "Name: %s."
|
3439 |
msgstr "Όνομα: %s."
|
3440 |
|
3473 |
msgid "Failed to unpack the archive"
|
3474 |
msgstr "Αποτυχία αποσυμπίεσης του αρχείου"
|
3475 |
|
3476 |
+
#: src/class-updraftplus.php:1356
|
3477 |
msgid "Error - failed to download the file"
|
3478 |
msgstr "Σφάλμα - αδυναμία μεταφόρτωσης του αρχείου"
|
3479 |
|
3498 |
msgstr "κωδικός/κλειδί"
|
3499 |
|
3500 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3501 |
+
#: src/admin.php:4808
|
3502 |
msgid "Key"
|
3503 |
msgstr "Κλειδί"
|
3504 |
|
3523 |
msgstr "Αντίγραφο ασφαλείας αρχείων και βάσης δεδομένων του WordPress (δημιουργήθηκε από %s)"
|
3524 |
|
3525 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3526 |
+
#: src/includes/class-backup-history.php:349
|
3527 |
msgid "Backup created by: %s."
|
3528 |
msgstr "Το αντίγραφο ασφαλείας δημιουργήθηκε από: %s."
|
3529 |
|
3555 |
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."
|
3556 |
msgstr "Το WordPress έχει έναν αριθμό (%d) των προγραμματισμένων εργασιών που έχουν καθυστερήσει. Αυτό σημαίνει κατά πάσα πιθανότητα ότι το χρονοδιάγραμμα στην εγκατάσταση σας του WordPress δεν λειτουργεί, εκτός κι αν αυτή είναι μια σελίδα εξέλιξης "
|
3557 |
|
3558 |
+
#: src/admin.php:694, src/includes/class-backup-history.php:356
|
3559 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3560 |
msgstr "Εάν αυτό είναι ένα αντίγραφο ασφαλείας που δημιουργήθηκε από ένα διαφορετικό πρόσθετο λήψης αντιγράφων ασφαλείας, τότε το UpdraftPlus Premium μπορεί να είναι σε θέση να σας βοηθήσει."
|
3561 |
|
3564 |
msgstr "Ωστόσο, τα αρχεία του UpdraftPlus είναι σύμφωνα με το πρότυπο αρχείων zip/SQL - οπότε αν είστε βέβαιοι ότι το αρχείο σας έχει τη σωστή μορφή, τότε μπορείτε να το μετονομάσετε για να ταιριάζει με αυτό το μοτίβο."
|
3565 |
|
3566 |
#: src/admin.php:693, src/admin.php:694,
|
3567 |
+
#: src/includes/class-backup-history.php:356
|
3568 |
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))."
|
3569 |
msgstr "Αυτό το αρχείο δε μοιάζει να είναι ένα αρχείο αντιγράφων ασφαλείας του UpdraftPlus (τέτοια είναι τα .zip or .gz αρχεία που μπορεί να έχουν ένα όνομα του τύπου: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
3570 |
|
3571 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3572 |
+
#: src/restorer.php:1577
|
3573 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3574 |
msgstr "Το αντίγραφο ασφαλείας δημιουργήθηκε από άγνωστη πηγή (%s) - δεν μπορεί να αποκατασταθεί."
|
3575 |
|
3576 |
+
#: src/restorer.php:869, src/restorer.php:917
|
3577 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3578 |
msgstr "Ο φάκελος περιεχομένων του WordPress (wp-content) δε βρέθηκε σ' αυτό το αρχείο zip."
|
3579 |
|
3580 |
+
#: src/restorer.php:724
|
3581 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3582 |
msgstr "Αυτή η έκδοση του UpdraftPlus δεν μπορεί να διαχειριστεί αυτό το είδος των ξένων αντιγράφων ασφαλείας"
|
3583 |
|
3589 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3590 |
msgstr "Η μονάδα του UpdraftPlus γι' αυτή τη μέθοδο πρόσβασης στο αρχείο (%s) δεν υποστηρίζει την καταχώριση αρχείων"
|
3591 |
|
3592 |
+
#: src/addons/backblaze.php:557, src/methods/cloudfiles.php:234,
|
3593 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3594 |
msgid "No settings were found"
|
3595 |
msgstr "Δε βρέθηκαν ρυθμίσεις"
|
3596 |
|
3597 |
+
#: src/includes/class-backup-history.php:524
|
3598 |
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."
|
3599 |
msgstr "Ένα ή περισσότερα αντίγραφα ασφαλείας έχουν προστεθεί από τη σάρωση του σημείου απομακρυσμένης αποθήκευσης. Σημειώστε ότι αυτά τα αντίγραφα ασφαλείας δεν θα διαγράφονται αυτόματα μέσω των ρυθμίσεων \"διατήρησης\". Αν ή όταν θέλετε να τα διαγράψετε θα πρέπει να το κάνετε χειροκίνητα."
|
3600 |
|
3602 |
msgid "Rescanning remote and local storage for backup sets..."
|
3603 |
msgstr "Σάρωση ξανά της απομακρυσμένης και τοπικής θέσης αποθήκευσης για εύρεση σετ αντιγράφων ασφαλείας σετ ..."
|
3604 |
|
3605 |
+
#: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049,
|
3606 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3607 |
msgid "(Read more)"
|
3608 |
msgstr "(Διαβάστε περισσότερα)"
|
3620 |
msgid "Remove"
|
3621 |
msgstr "Αφαίρεση"
|
3622 |
|
3623 |
+
#: src/methods/s3.php:861
|
3624 |
msgid "Other %s FAQs."
|
3625 |
msgstr "Άλλες %s ερωτήσεις."
|
3626 |
|
3632 |
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."
|
3633 |
msgstr "Εάν εισαγάγετε πολλαπλά αρχεία/καταλόγους, στη συνέχεια χωρίστε τα με κόμμα. Για τις οντότητες σε ανώτερο επίπεδο, μπορείτε να χρησιμοποιήσετε ένα * στην αρχή ή στο τέλος της καταχώρησης ως μπαλαντέρ."
|
3634 |
|
3635 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330,
|
3636 |
+
#: src/restorer.php:1608
|
3637 |
msgid "Your hosting company must enable these functions before %s can work."
|
3638 |
msgstr "Η εταιρεία που φιλοξενεί την ιστοσελίδα σας πρέπει να ενεργοποιήσει αυτές τις λειτουργίες πριν το %s να μπορεί να λειτουργήσει."
|
3639 |
|
3640 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330
|
3641 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3642 |
msgstr "Η εγκατάσταση της PHP στον web server σας έχει απενεργοποιημένες αυτές τις λειτουργίες: %s."
|
3643 |
|
3653 |
msgid "regular non-encrypted FTP"
|
3654 |
msgstr "απλό μη κρυπτογραφημένο FTP"
|
3655 |
|
3656 |
+
#: src/restorer.php:1784
|
3657 |
msgid "Backup created by:"
|
3658 |
msgstr "Το αντίγραφο ασφαλείας δημιουργήθηκε από:"
|
3659 |
|
3707 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3708 |
msgstr "Απόκρυψη μηνύματος από την κεντρική σελίδα διαχείρισης (για %s εβδομάδες)"
|
3709 |
|
3710 |
+
#: src/class-updraftplus.php:4732
|
3711 |
msgid "The attempt to undo the double-compression succeeded."
|
3712 |
msgstr "Η προσπάθεια αναίρεσης της διπλής συμπίεσης έγινε επιτυχώς."
|
3713 |
|
3714 |
+
#: src/class-updraftplus.php:4709, src/class-updraftplus.php:4730
|
3715 |
msgid "The attempt to undo the double-compression failed."
|
3716 |
msgstr "Η προσπάθεια αναίρεσης της διπλής συμπίεσης απέτυχε."
|
3717 |
|
3718 |
+
#: src/class-updraftplus.php:4702
|
3719 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3720 |
msgstr "Το αρχείο της βάσης δεδομένων φαίνεται πως έχει συμπιεσθεί δύο φορές - κατά πάσα πιθανότητα η ιστοσελίδα από την οποία το μεταφορτώσατε είχε λανθασμένες ρυθμίσεις στον webserver της."
|
3721 |
|
3722 |
+
#: src/includes/class-wpadmin-commands.php:313
|
3723 |
msgid "Constants"
|
3724 |
msgstr "Σταθερές"
|
3725 |
|
3768 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3769 |
msgstr "Η εγκατάσταση PHP σε αυτό το διακομιστή επιτρέπει μόνο %s δευτερόλεπτα για να τρέξει η PHP, και δεν επιτρέπει το όριο αυτό να αυξηθεί. Εάν έχετε πολλά δεδομένα για να εισάγετε, κι αν η λειτουργία αποκατάστασης τερματιστεί, τότε θα πρέπει να ζητήσει από την εταιρία του web hosting σας με κάποιο τρόπο να αυξήσουν το όριο αυτό (ή να επιχειρήσετε την αποκατάσταση κομμάτι-κομμάτι)."
|
3770 |
|
3771 |
+
#: src/restorer.php:717
|
3772 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3773 |
msgstr "Υπάρχουν μη διαγραμμένοι κατάλογοι από μια προηγούμενη επαναφορά εδώ (παρακαλούμε χρησιμοποιήστε το κουμπί \"Διαγραφή Παλαιών Καταλογών\" για να τους διαγράψετε πριν προσπαθήσετε ξανά): %s"
|
3774 |
|
3789 |
msgid "Messages:"
|
3790 |
msgstr "Μηνύματα:"
|
3791 |
|
3792 |
+
#: src/restorer.php:2196
|
3793 |
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"
|
3794 |
msgstr "Βρέθηκε μια γραμμή SQL που είναι μεγαλύτερη από το μέγιστο μέγεθος πακέτου και δεν μπορεί να κατατμηθεί. η γραμμή αυτή δεν θα υποβληθεί σε επεξεργασία, αλλά θα αφεθεί ως έχει: %s"
|
3795 |
|
3796 |
+
#: src/restorer.php:490
|
3797 |
msgid "The directory does not exist"
|
3798 |
msgstr "Ο φάκελος δεν υπάρχει"
|
3799 |
|
3962 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3963 |
msgstr "Ο νέος κωδικός χρήστη για την κονσόλα του Rackspace είναι (αυτό δεν θα εμφανιστεί ποτέ ξανά):"
|
3964 |
|
3965 |
+
#: src/admin.php:679, src/admin.php:4232
|
3966 |
msgid "Error data:"
|
3967 |
msgstr "Σφάλμα δεδομένων:"
|
3968 |
|
3974 |
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."
|
3975 |
msgstr "Η εγκατάσταση σας του WordPress έχει παλιούς καταλόγους από την κατάσταση πριν να γίνει αποκατάσταση/μετανάστευση (τεχνικές πληροφορίες: αυτά επισημαίνονται με το πρόθεμα -old). Θα πρέπει να πατήσετε αυτό το κουμπί για να τα διαγράψετε μόλις διαπιστώσετε ότι η αποκατάσταση έγινε με επιτυχία."
|
3976 |
|
3977 |
+
#: src/restorer.php:1851
|
3978 |
msgid "Split line to avoid exceeding maximum packet size"
|
3979 |
msgstr "Διαιρέστε τη γραμμή για την αποφυγή της υπέρβασης του μεγίστου μεγέθους πακέτου"
|
3980 |
|
3981 |
+
#: src/restorer.php:1731
|
3982 |
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)"
|
3983 |
msgstr "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια να διαγράψει τους πίνακες. Εμείς θα προσπαθήσουμε να κάνουμε την αποκατάσταση απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να δουλέψει σωστά αν κάνετε αποκατάσταση από μια έκδοση WordPress με την ίδια δομή της βάσης δεδομένων (%s)"
|
3984 |
|
4010 |
msgid "Email reports"
|
4011 |
msgstr "Αναφορές Email"
|
4012 |
|
4013 |
+
#: src/class-updraftplus.php:1840, src/class-updraftplus.php:1845
|
4014 |
msgid "%s checksum: %s"
|
4015 |
msgstr "%s άθροισμα ελέγχου: %s"
|
4016 |
|
4017 |
+
#: src/class-updraftplus.php:1813, src/class-updraftplus.php:1815
|
4018 |
msgid "files: %s"
|
4019 |
msgstr "αρχεία: %s"
|
4020 |
|
4067 |
msgid "%d errors, %d warnings"
|
4068 |
msgstr "%d σφάλματα, %d προειδοποιήσεις"
|
4069 |
|
4070 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:748,
|
4071 |
+
#: src/methods/dropbox.php:770
|
4072 |
msgid "%s authentication"
|
4073 |
msgstr "%s ταυτοποίηση"
|
4074 |
|
4075 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:529,
|
4076 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:748,
|
4077 |
+
#: src/methods/dropbox.php:770, src/methods/dropbox.php:785,
|
4078 |
+
#: src/methods/dropbox.php:798, src/methods/dropbox.php:941
|
4079 |
msgid "%s error: %s"
|
4080 |
msgstr "%s σφάλμα: %s"
|
4081 |
|
4082 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:575
|
4083 |
msgid "%s logo"
|
4084 |
msgstr "%s logo"
|
4085 |
|
4087 |
msgid "%s did not return the expected response - check your log file for more details"
|
4088 |
msgstr "%s δεν επέστρεψε την αναμενόμενη απάντηση - ελέγξτε το αρχείο καταγραφής σας για περισσότερες λεπτομέρειες"
|
4089 |
|
4090 |
+
#: src/methods/s3.php:307
|
4091 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4092 |
msgstr "Η απαιτούμενη μονάδα PHP %s δεν είναι εγκατεστημένη - ζητήστε από την εταιρεία web hosting σας να την ενεργοποιήσει"
|
4093 |
|
4108 |
msgid "For more reporting features, use the Reporting add-on."
|
4109 |
msgstr "Για περισσότερες δυνατότητες αναφοράς, χρησιμοποιήστε το πρόσθετο Reporting."
|
4110 |
|
4111 |
+
#: src/class-updraftplus.php:4176
|
4112 |
msgid "(version: %s)"
|
4113 |
msgstr "(έκδοση: %s)"
|
4114 |
|
4249 |
msgid "Reporting"
|
4250 |
msgstr "Υποβολή έκθεσης"
|
4251 |
|
4252 |
+
#: src/admin.php:4805
|
4253 |
msgid "Options (raw)"
|
4254 |
msgstr "Επιλογές (χωρίς επεξεργασία)"
|
4255 |
|
4257 |
msgid "Send a report only when there are warnings/errors"
|
4258 |
msgstr "Αποστολή αναφοράς μόνο όταν υπάρχουν προειδοποιήσεις/λάθη"
|
4259 |
|
4260 |
+
#: src/restorer.php:1795
|
4261 |
msgid "Content URL:"
|
4262 |
msgstr "URL περιεχομένου:"
|
4263 |
|
4401 |
msgid "Your web-server does not have the %s module installed."
|
4402 |
msgstr "Ο εξυπηρετητής σας δεν έχει εγκατεστημένο το πρόσθετο %s."
|
4403 |
|
4404 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1237
|
4405 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4406 |
msgstr "<strong> (Φαίνεται να έχετε ήδη πιστοποιηθεί,</strong> αν και μπορείτε να πιστοποιηθείτε και πάλι για να ανανεώσετε την πρόσβασή σας, αν αντιμετωπίσατε κάποιο πρόβλημα)."
|
4407 |
|
4421 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4422 |
msgstr "Εάν εξαιρέσετε τόσο την βάση δεδομένων και τα αρχεία, τότε έχετε εξαιρέσει τα πάντα!"
|
4423 |
|
4424 |
+
#: src/restorer.php:1789
|
4425 |
msgid "Site home:"
|
4426 |
msgstr "Αρχική σελίδα:"
|
4427 |
|
4437 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4438 |
msgstr "Να αποθηκευτεί αυτή η επιλογή για την επόμενη φορά (θα εξακολουθήσετε να έχετε τη δυνατότητα να το αλλάξετε)"
|
4439 |
|
4440 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:144,
|
4441 |
#: src/methods/stream-base.php:149
|
4442 |
msgid "Upload failed"
|
4443 |
msgstr "Το ανέβασμα των αρχείων απέτυχε"
|
4581 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4582 |
msgstr "Ο προγραμματιστής είναι απενεργοποιημένος στην εγκατάσταση του WordPress, μέσω της ρύθμισης DISABLE_WP_CRON. Δεν μπορεί να εκτελεστεί καμία διαδικασία εκτέλεσης δημιουργίας αντιγράφων ασφαλείας (even "Backup Now") εκτός εάν είτε έχετε εγκαταστήσει μια λειτουργία για να λάβετε αντίγραφο ασφαλείας χειροκίνητα, ή μέχρι να ενεργοποιηθεί."
|
4583 |
|
4584 |
+
#: src/restorer.php:702
|
4585 |
msgid "file"
|
4586 |
msgstr "αρχείο"
|
4587 |
|
4588 |
+
#: src/restorer.php:695
|
4589 |
msgid "folder"
|
4590 |
msgstr "κατάλογος"
|
4591 |
|
4592 |
+
#: src/restorer.php:695, src/restorer.php:702
|
4593 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4594 |
msgstr "Το UpdraftPlus χρειάζεται να δημιουργήσει ένα %s στον κατάλογο περιεχομένων σας, αλλά απέτυχε - παρακαλώ ελέγξτε τα δικαιώματα αρχείων σας και επιτρέψτε την πρόσβαση (%s)"
|
4595 |
|
4596 |
+
#: src/class-updraftplus.php:2933
|
4597 |
msgid "The backup has not finished; a resumption is scheduled"
|
4598 |
msgstr "Η δημιουργία αντιγράφων ασφαλείας δεν έχει τελειώσει, έχει προγραμματιστεί επανάληψη της διαδικασίας"
|
4599 |
|
4600 |
+
#: src/class-updraftplus.php:2117
|
4601 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4602 |
msgstr "Η ιστοσελίδα σας δεν έχει μεγάλη επισκεψιμότητα και το UpdraftPlus δεν μπορεί να πάρει τους πόρους που έλπιζε, παρακαλούμε διαβάστε αυτή τη σελίδα:"
|
4603 |
|
4604 |
+
#: src/addons/onedrive.php:966,
|
4605 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4606 |
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)."
|
4607 |
msgstr "Η αυθεντικοποίηση του%s δεν μπορεί να προχωρήσει, γιατί κάτι άλλο στην ιστοσελίδας σας δημιουργεί πρόβλημα. Δοκιμάστε να απενεργοποιήσετε άλλα πρόσθετα που έχετε εγκατεστημένα κι ενεργοποιήστε ένα προεπιλεγμένο θέμα. (Συγκεκριμένα, ψάχνετε για το στοιχείο που στέλνει (πιθανότατα προειδοποιήσεις/σφάλματα της PHP) πριν αρχίσει η σελίδα. Απενεργοποίηση των ρυθμίσεων εντοπισμού σφαλμάτων μπορεί επίσης να βοηθήσει)."
|
4686 |
msgid "Support"
|
4687 |
msgstr "Υποστήριξη"
|
4688 |
|
4689 |
+
#: src/class-updraftplus.php:4481
|
4690 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4691 |
msgstr "Το UpdraftPlus δεν μπόρεσε να βρει το πρόθεμα πίνακα κατά τη σάρωση του αρχείου ασφαλείας της βάσης δεδομένων."
|
4692 |
|
4693 |
+
#: src/class-updraftplus.php:4473
|
4694 |
msgid "This database backup is missing core WordPress tables: %s"
|
4695 |
msgstr "Από αυτό το αρχείο ασφαλείας της βάσης δεδομένων λείπουν πίνακες του πυρήνα του Wordpress: %s"
|
4696 |
|
4697 |
+
#: src/class-updraftplus.php:4234
|
4698 |
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."
|
4699 |
msgstr "Κάνετε εισαγωγή από μια νεότερη έκδοση του WordPress (%s) σε μια παλαιότερη (%s). Δεν υπάρχουν εγγυήσεις ότι το WordPress μπορεί να το διαχειριστεί αυτό."
|
4700 |
|
4701 |
+
#: src/class-updraftplus.php:4233, src/class-updraftplus.php:4240
|
4702 |
msgid "%s version: %s"
|
4703 |
msgstr "%s έκδοση: %s"
|
4704 |
|
4705 |
+
#: src/class-updraftplus.php:4112
|
4706 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4707 |
msgstr "Η βάση δεδομένων είναι πολύ μικρή για να είναι έγκυρη βάση δεδομένων WordPress (μέγεθος: %s Kb)."
|
4708 |
|
4787 |
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?"
|
4788 |
msgstr "Αυτό μοιάζει να είναι αρχείο που δημιουργήθηκε με το UpdraftPlus, αλλά αυτή η εγκατάσταση δεν μπορεί να αποφανθεί για αυτό το είδος του αντικειμένου:%s. Μήπως θα πρέπει να εγκαταστήσετε κάποιο πρόσθετο;"
|
4789 |
|
4790 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4791 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4792 |
msgstr "Τα αρχεία αντιγράφων ασφαλείας έχουν υποστεί επεξεργασία, αλλά υπάρχουν κάποια λάθη. Θα πρέπει να ακυρώσετε τη διαδικασία και να διορθώσετε τυχόν προβλήματα πριν προσπαθήσετε ξανά."
|
4793 |
|
4794 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4795 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4796 |
msgstr "Τα αρχεία αντιγράφων ασφαλείας έχουν υποστεί επεξεργασία, αλλά υπάρχουν κάποιες προειδοποιήσεις. Αν όλα είναι εντάξει, πατήστε ξανά Επαναφορά για να συνεχίσετε. Σε αντίθετη περίπτωση, ακυρώστε τη διαδικασία και διορθώστε τυχόν προβλήματα πρώτα."
|
4797 |
|
4798 |
+
#: src/includes/class-wpadmin-commands.php:221
|
4799 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4800 |
msgstr "Έχει γίνει επεξεργασία των αρχείων των αντιγράφων ασφαλείας επιτυχώς. Τώρα πατήστε ξανά Επαναφορά για να συνεχίσετε."
|
4801 |
|
4835 |
msgid "WordPress root directory server path: %s"
|
4836 |
msgstr "Η ριζική διαδρομή του Wordpress στον εξυπηρετητή είναι: %s"
|
4837 |
|
4838 |
+
#: src/methods/dreamobjects.php:88, src/methods/s3generic.php:104
|
4839 |
msgid "%s end-point"
|
4840 |
msgstr "%s τελικό σημείο "
|
4841 |
|
4842 |
+
#: src/methods/s3.php:838
|
4843 |
msgid "... and many more!"
|
4844 |
msgstr "... και πολλά περισσότερα!"
|
4845 |
|
4846 |
+
#: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
|
4847 |
+
#: src/methods/s3generic.php:83
|
4848 |
msgid "S3 (Compatible)"
|
4849 |
msgstr "S3 (Συμβατό)"
|
4850 |
|
4852 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4853 |
msgstr "Το αρχείο δεν είναι αποθηκευμένο τοπικά - πρέπει να ανακτηθεί από την απομακρυσμένη τοποθεσία αποθήκευσης"
|
4854 |
|
4855 |
+
#: src/admin.php:4083
|
4856 |
msgid "Looking for %s archive: file name: %s"
|
4857 |
msgstr "Αναζήτηση για %s αρχείο: όνομα αρχείου: %s"
|
4858 |
|
4859 |
+
#: src/admin.php:4044
|
4860 |
msgid "Final checks"
|
4861 |
msgstr "Τελευταίοι έλεγχοι"
|
4862 |
|
4884 |
msgid "Processing files - please wait..."
|
4885 |
msgstr "Επεξεργασία αρχείων - παρακαλώ περιμένετε..."
|
4886 |
|
4887 |
+
#: src/admin.php:4234,
|
4888 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4889 |
msgid "Please consult this FAQ for help on what to do about it."
|
4890 |
msgstr "Παρακαλούμε συμβουλευτείτε τις Συχνές Ερωτήσεις για βοήθεια σχετικά με το τι πρέπει να γίνει με αυτό."
|
4893 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4894 |
msgstr "Η εγκατάσταση σας του WordPress έχει ένα πρόβλημα με την έξοδο κενού περιεχομένου. Αυτό μπορεί να καταστρέψει τα αντίγραφα ασφαλείας που θα κατεβάσετε από εδώ."
|
4895 |
|
4896 |
+
#: src/class-updraftplus.php:4120
|
4897 |
msgid "Failed to open database file."
|
4898 |
msgstr "Αποτυχία ανοίγματος του αρχείου της βάσης δεδομένων."
|
4899 |
|
4900 |
+
#: src/admin.php:4770
|
4901 |
msgid "Known backups (raw)"
|
4902 |
msgstr "Γνωστά αντίγραφα ασφαλείας (ανεπεξέργαστα)"
|
4903 |
|
4904 |
+
#: src/restorer.php:1009
|
4905 |
msgid "Files found:"
|
4906 |
msgstr "Αρχεία που βρέθηκαν:"
|
4907 |
|
4908 |
+
#: src/restorer.php:1977
|
4909 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4910 |
msgstr "Η ζητηθείσα μηχανή του πίνακα (%s) δεν είναι παρούσα - αλλαγή σε MyISAM."
|
4911 |
|
4912 |
+
#: src/admin.php:4103
|
4913 |
msgid "file is size:"
|
4914 |
msgstr "μέγεθος αρχείου:"
|
4915 |
|
4916 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:457,
|
4917 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4918 |
+
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:4354,
|
4919 |
+
#: src/class-updraftplus.php:4354, src/updraftplus.php:156
|
4920 |
msgid "Go here for more information."
|
4921 |
msgstr "Πηγαίνετε εδώ για περισσότερες πληροφορίες."
|
4922 |
|
4924 |
msgid "Some files are still downloading or being processed - please wait."
|
4925 |
msgstr "Κάποια αρχεία ακόμα κατεβαίνουν ή υπόκεινται σε επεξεργασία - παρακαλώ περιμένετε."
|
4926 |
|
4927 |
+
#: src/class-updraftplus.php:4203, src/class-updraftplus.php:4224
|
4928 |
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."
|
4929 |
msgstr "Αυτό το σετ αντιγράφων ασφαλείας είναι από διαφορετικό ιστοσελίδα - αυτή δεν είναι μια διαδικασία επαναφοράς αλλά είναι διαδικασία μετανάστευσης. Χρειάζεται και το πρόσθετο Migrator για να γίνει αυτή η λειτουργία."
|
4930 |
|
4968 |
msgid "Error - no such file exists at %s"
|
4969 |
msgstr "Λάθος - δεν υπάρχει αυτό το αρχείο στο %s"
|
4970 |
|
4971 |
+
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4972 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4973 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4974 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
4997 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4998 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4999 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5000 |
+
#: src/class-updraftplus.php:4093, src/class-updraftplus.php:4095,
|
5001 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4264,
|
5002 |
+
#: src/class-updraftplus.php:4333, src/methods/googledrive.php:382,
|
5003 |
+
#: src/methods/s3.php:336
|
5004 |
msgid "Error: %s"
|
5005 |
msgstr "Λάθος: %s"
|
5006 |
|
5040 |
msgid "Warnings encountered:"
|
5041 |
msgstr "Προειδοποιήσεις που απαντήθηκαν:"
|
5042 |
|
5043 |
+
#: src/class-updraftplus.php:2921
|
5044 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5045 |
msgstr "Η δημιουργία αντιγράφων ασφαλείας τελικώς πέτυχε (με προειδοποιήσεις) και είναι πλέον πλήρης"
|
5046 |
|
5080 |
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."
|
5081 |
msgstr "Ορισμένοι διακομιστές διαφημίζουν ως διαθέσιμη το κρυπτογραφημένο FTP αλλά συμβαίνει στη συνέχεια time-out (μετά από αρκετή ώρα) όταν επιχειρείτε να το χρησιμοποιήσετε. Αν συμβαίνει αυτό σε σας πηγαίνετε στο \"Επιλογές για Προχωρημένους\" (παρακάτω) και απενεργοποιήσετε το SSL από εκεί."
|
5082 |
|
5083 |
+
#: src/methods/s3.php:847
|
5084 |
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."
|
5085 |
msgstr "Η εγκατάσταση PHP του εξυπηρετητή σας δεν περιελάμβανε μια απαραίτητη μονάδα (%s). Παρακαλούμε επικοινωνήστε με την υποστήριξη του παρόχου του εξυπηρετητή σας και ζητήστε να το ενεργοποιήσουν."
|
5086 |
|
5087 |
+
#: src/methods/s3.php:1150
|
5088 |
msgid "Please check your access credentials."
|
5089 |
msgstr "Παρακαλούμε ελέγξτε τα διαπιστευτήρια πρόσβασης σας."
|
5090 |
|
5091 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1128
|
5092 |
msgid "The error reported by %s was:"
|
5093 |
msgstr "Το λάθος που αναφέρθηκε από το %s ήταν:"
|
5094 |
|
5095 |
+
#: src/restorer.php:1518
|
5096 |
msgid "Please supply the requested information, and then continue."
|
5097 |
msgstr "Παρακαλούμε δώστε τις ζητηθείσες πληροφορίες και μετά συνεχίστε."
|
5098 |
|
5099 |
+
#: src/class-updraftplus.php:4275, src/restorer.php:1825
|
5100 |
msgid "Site information:"
|
5101 |
msgstr "Πληροφορίες ιστοσελίδας:"
|
5102 |
|
5103 |
+
#: src/restorer.php:1692
|
5104 |
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."
|
5105 |
msgstr "Ο χρήστης της βάσης δεδομένων σας δεν έχει άδεια για τη δημιουργία πινάκων. Θα γίνει προσπάθεια επαναφοράς απλώς αδειάζοντας τους πίνακες. Αυτό θα πρέπει να λειτουργήσει για την περίπτωση που α) κάνετε επαναφορά από μια έκδοση του WordPress με την ίδια τη δομή της βάσης δεδομένων και β) η εισαγόμενη βάση δεδομένων σας δεν περιέχει πίνακες που δεν είναι ήδη υπάρχοντες στην ιστοσελίδα εισαγωγής."
|
5106 |
|
5107 |
+
#: src/admin.php:2445, src/class-updraftplus.php:4268, src/restorer.php:2196
|
5108 |
msgid "Warning:"
|
5109 |
msgstr "Προειδοποίηση:"
|
5110 |
|
5111 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4260,
|
5112 |
#: src/restorer.php:184
|
5113 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5114 |
msgstr "Γίνεται εκτέλεση της διαδικασίας σε μια εγκατάσταση πολλαπλών ιστοσελίδων του Wordpress αλλά το αντίγραφο ασφαλείας σας δεν είναι από μια τέτοια εγκατάσταση. "
|
5115 |
|
5116 |
+
#: src/admin.php:4071
|
5117 |
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."
|
5118 |
msgstr "Παράκαμψη στην επαναφορά του πυρήνα του WordPress κατά την εισαγωγή μιας ιστοσελίδας σε μια εγκατάσταση πολλαπλών ιστοσελίδων. Αν είχατε κάποια αναγκαία αρχεία στο φάκελο του WordPress, τότε θα πρέπει να τα προσθέσετε χειροκίνητα ξανά από το αρχείο zip."
|
5119 |
|
5189 |
msgid "News"
|
5190 |
msgstr "Νέα"
|
5191 |
|
5192 |
+
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:490
|
5193 |
msgid "Backup set not found"
|
5194 |
msgstr "Το σετ αντιγράφων ασφαλείας δε βρέθηκε"
|
5195 |
|
5354 |
msgstr "Διαδρομή φακέλου"
|
5355 |
|
5356 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5357 |
+
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5358 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5359 |
#: src/udaddons/options.php:135
|
5360 |
msgid "Password"
|
5361 |
msgstr "Κωδικός"
|
5362 |
|
5363 |
+
#: src/addons/sftp.php:429, src/addons/webdav.php:207
|
5364 |
msgid "Port"
|
5365 |
msgstr "Θύρα"
|
5366 |
|
5367 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5368 |
+
#: src/addons/webdav.php:199
|
5369 |
msgid "Host"
|
5370 |
msgstr "Host"
|
5371 |
|
5413 |
msgid "Over-write wp-config.php"
|
5414 |
msgstr "Αντικατάσταση του wp-config.php"
|
5415 |
|
5416 |
+
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:507
|
5417 |
msgid "WordPress Core"
|
5418 |
msgstr "Πυρήνας WordPress "
|
5419 |
|
5421 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5422 |
msgstr "Αποτυχία: Δεν μπορέσαμε να τοποθετήσουμε ένα αρχείο σε αυτόν το φάκελο - παρακαλώ ελέγξτε τα διαπιστευτήριά σας."
|
5423 |
|
5424 |
+
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5425 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3052,
|
5426 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5427 |
#: src/methods/stream-base.php:353
|
5428 |
msgid "Failed"
|
5429 |
msgstr "Αποτυχία"
|
5430 |
|
5431 |
+
#: src/addons/webdav.php:169
|
5432 |
msgid "WebDAV URL"
|
5433 |
msgstr "WebDAV URL"
|
5434 |
|
5479 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5480 |
msgstr "Αν θέλετε κρυπτογράφηση (π.χ. έχετε αποθηκευμένα ευαίσθητα επιχειρηματικά δεδομένα), τότε υπάρχει διαθέσιμο ένα πρόσθετο."
|
5481 |
|
5482 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:816
|
5483 |
msgid "Your %s account name: %s"
|
5484 |
msgstr "Το %s όνομα του λογαριασμού σας: %s"
|
5485 |
|
5486 |
+
#: src/methods/dropbox.php:806, src/methods/dropbox.php:828
|
5487 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5488 |
msgstr "αν και μέρος των πληροφοριών που επεστράφησαν δεν ήταν τα αναμενόμενα - η χρέωσή σας μπορεί να ποικίλει"
|
5489 |
|
5490 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
5491 |
msgid "you have authenticated your %s account"
|
5492 |
msgstr "έχετε πιστοποιηθεί για το λογαριασμό %s"
|
5493 |
|
5494 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5495 |
msgid "there's an add-on for that."
|
5496 |
msgstr "υπάρχει ένα πρόσθετο για αυτό το σκοπό."
|
5497 |
|
5498 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5499 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5500 |
msgstr "Εάν κάνετε αντίγραφα ασφαλείας για πολλές ιστοσελίδες στο ίδιο Dropbox και χρειάζεται να τα οργανώσετε σε υπο-φακέλους, τότε "
|
5501 |
|
5502 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5503 |
msgid "Backups are saved in"
|
5504 |
msgstr "Τα αρχεία ασφαλείας αποθηκεύτηκαν στο "
|
5505 |
|
5506 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5507 |
msgid "Need to use sub-folders?"
|
5508 |
msgstr "Χρειάζεται να χρησιμοποιήσετε υπο-φακέλους;"
|
5509 |
|
5516 |
msgid "You do not appear to be authenticated with Dropbox"
|
5517 |
msgstr "Δε φαίνεται να είστε πιστοποιημένος στο Dropbox"
|
5518 |
|
5519 |
+
#: src/methods/s3.php:1145
|
5520 |
msgid "The communication with %s was not encrypted."
|
5521 |
msgstr "Η επικοινωνία με το %s δεν κρυπτογραφήθηκε. "
|
5522 |
|
5523 |
+
#: src/methods/s3.php:1143
|
5524 |
msgid "The communication with %s was encrypted."
|
5525 |
msgstr "Η επικοινωνία με το %s κρυπτογραφήθηκε."
|
5526 |
|
5527 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1140
|
5528 |
msgid "We accessed the bucket, and were able to create files within it."
|
5529 |
msgstr "Αποκτήσαμε πρόσβαση με επιτυχία στον κάδο και δημιουργήσαμε επιτυχώς αρχεία μέσα σε αυτόν. "
|
5530 |
|
5531 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5532 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5533 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5534 |
msgstr "Αποκτήσαμε πρόσβαση με επιτυχία στον κάδο, αλλά η προσπάθεια να δημιουργηθεί ένα αρχείο σε αυτόν απέτυχε."
|
5535 |
|
5536 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5537 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5538 |
msgid "Failure"
|
5539 |
msgstr "Αποτυχία"
|
5540 |
|
5541 |
+
#: src/addons/backblaze.php:472, src/methods/s3.php:1126
|
5542 |
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)."
|
5543 |
msgstr "Αποτυχία: Δεν μπορέσαμε επιτυχώς να έχουμε πρόσβαση ή να δημιουργήσεουμε ένα τέτοιο κάδο. Παρακαλούμε ελέγξτε τα διαπιστευτήρια πρόσβασης σας, και εάν αυτά είναι σωστά τότε δοκιμάστε με ένα άλλο όνομα κάδου (ενδεχομένως κάποιος άλλος χρήστης %s μπορεί να έχει ήδη πάρει το όνομά σας)."
|
5544 |
|
5545 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5546 |
+
#: src/methods/s3.php:1120
|
5547 |
msgid "Region"
|
5548 |
msgstr "Περιοχή"
|
5549 |
|
5550 |
+
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5551 |
+
#: src/methods/s3.php:1102
|
5552 |
msgid "Failure: No bucket details were given."
|
5553 |
msgstr "Αποτυχία: Δε δόθηκαν στοιχεία για τον κάδο."
|
5554 |
|
5555 |
+
#: src/methods/s3.php:1080
|
5556 |
msgid "API secret"
|
5557 |
msgstr "μυστικό API"
|
5558 |
|
5559 |
+
#: src/methods/s3.php:928
|
5560 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5561 |
msgstr "Εισάγετε μόνο ένα όνομα κάδου ή έναν κάδο και τη διαδρομή. Παραδείγματα: mybucket, mybucket/mypath"
|
5562 |
|
5563 |
+
#: src/methods/s3.php:927
|
5564 |
msgid "%s location"
|
5565 |
msgstr "%s τοποθεσία"
|
5566 |
|
5567 |
+
#: src/methods/s3.php:923
|
5568 |
msgid "%s secret key"
|
5569 |
msgstr "%s μυστικό κλειδί"
|
5570 |
|
5571 |
+
#: src/methods/s3.php:919
|
5572 |
msgid "%s access key"
|
5573 |
msgstr "%s κλειδί πρόσβασης"
|
5574 |
|
5575 |
+
#: src/methods/s3.php:859
|
5576 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5577 |
msgstr "Εάν δείτε λάθη σχετικά με τα πιστοποιητικά SSL τότε πηγαίνετε εδώ για βοήθεια."
|
5578 |
|
5579 |
+
#: src/methods/s3.php:857
|
5580 |
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."
|
5581 |
msgstr "Λάβετε το κλειδί πρόσβασης σας και το μυστικό κλειδί <a href=\"%s\"> από την κονσόλα σας %s </a>, στη συνέχεια επιλέξτε ένα (μοναδικό παγκοσμίως - όλοι οι %s χρήστες) όνομα κάδου (γράμματα και αριθμοί) (και προαιρετικά μια διαδρομή) που θα χρησιμοποιηθεί για την αποθήκευση. Η κάδος θα δημιουργηθεί για σας εάν δεν υπάρχει ήδη."
|
5582 |
|
5583 |
+
#: src/methods/s3.php:477, src/methods/s3.php:589, src/methods/s3.php:661,
|
5584 |
+
#: src/methods/s3.php:764
|
5585 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5586 |
msgstr "Σφάλμα %s: Αποτυχία πρόσβασης στον κάδο %s. Ελέγξτε τα δικαιώματα και τα διαπιστευτήριά σας."
|
5587 |
|
5588 |
+
#: src/methods/s3.php:747, src/methods/s3.php:757, src/methods/s3.php:793
|
5589 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5590 |
msgstr "Σφάλμα %s: Απέτυχε η λήψη του %s. Ελέγξτε τα δικαιώματα και τα διαπιστευτήριά σας."
|
5591 |
|
5592 |
+
#: src/methods/s3.php:455
|
5593 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5594 |
msgstr "%s λάθος επανασυναρμολόγησης (%s): (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
|
5595 |
|
5596 |
+
#: src/methods/s3.php:451
|
5597 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5598 |
msgstr "%s μεταφόρτωσης (%s): η επανασυναρμολόγηση απέτυχε (δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες)"
|
5599 |
|
5600 |
+
#: src/methods/s3.php:435
|
5601 |
msgid "%s chunk %s: upload failed"
|
5602 |
msgstr "σφάλμα %s: Το αρχείο %s ήταν απροσδόκητα μικρότερο "
|
5603 |
|
5604 |
+
#: src/methods/s3.php:425
|
5605 |
msgid "%s error: file %s was shortened unexpectedly"
|
5606 |
msgstr "σφάλμα %s: Το αρχείο %s έγινε απροσδόκητα μικρότερο "
|
5607 |
|
5608 |
+
#: src/methods/s3.php:403
|
5609 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5610 |
msgstr "αποστολή %s: η λήψη uploadID για μεταφόρτωση πολλαπλών αρχείων απέτυχε - δείτε το αρχείο καταγραφής για περισσότερες λεπτομέρειες"
|
5611 |
|
5630 |
msgstr "Αποτυχία: Δε δόθηκαν λεπτομέρειες για το σημείο αποθήκευσης."
|
5631 |
|
5632 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5633 |
+
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5634 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5635 |
msgid "Username"
|
5636 |
msgstr "Όνομα χρήστη"
|
5637 |
|
5638 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5639 |
+
#: src/methods/s3.php:1076
|
5640 |
msgid "API key"
|
5641 |
msgstr "Κλειδί API"
|
5642 |
|
5643 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5644 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5645 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5646 |
+
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5647 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5648 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5649 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5650 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5651 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5652 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5653 |
+
#: src/methods/s3.php:1076, src/methods/s3.php:1080
|
5654 |
msgid "Failure: No %s was given."
|
5655 |
msgstr "Αποτυχία: Δε δόθηκε κανένα %s."
|
5656 |
|
5657 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5658 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5659 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5660 |
msgstr "Η μονάδα του UpdraftPlus %s <strong>απαιτεί</strong> %s. Παρακαλώ μην υποβάλετε οποιαδήποτε αιτήματα υποστήριξης, δεν υπάρχει εναλλακτική λύση."
|
5661 |
|
5690 |
msgid "Test %s Settings"
|
5691 |
msgstr "Γίνεται έλεγχος %s Ρυθμίσεων"
|
5692 |
|
5693 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
5694 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5695 |
msgid "Error opening local file: Failed to download"
|
5696 |
msgstr "Λάθος κατά το άνοιγμα του τοπικού αρχείου: Αποτυχία κατεβάσματος"
|
5702 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5703 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5704 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5705 |
+
#: src/methods/s3.php:371, src/methods/s3.php:383, src/methods/s3.php:384
|
5706 |
msgid "%s Error: Failed to upload"
|
5707 |
msgstr "Σφάλμα %s: Αποτυχία ανεβάσματος"
|
5708 |
|
5728 |
msgid "Authenticate with Google"
|
5729 |
msgstr "Έλεγχος ταυτότητας με το Google"
|
5730 |
|
5731 |
+
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5732 |
#: src/methods/googledrive.php:1196
|
5733 |
msgid "Client Secret"
|
5734 |
msgstr "Client Secret"
|
5735 |
|
5736 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1193
|
5737 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5738 |
msgstr "Εάν η Google σας εμφανίσει αργότερα το μήνυμα \"invalid_client\", σημαίνει ότι δεν εισαγάγετε ένα έγκυρο client ID εδώ."
|
5739 |
|
5740 |
+
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5741 |
#: src/methods/googledrive.php:1192
|
5742 |
msgid "Client ID"
|
5743 |
msgstr "Client ID"
|
5744 |
|
5745 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5746 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5747 |
msgstr "Πρέπει να προσθέσετε το ακόλουθο ως εξουσιοδοτημένη ανακατεύθυνση URI (κάτω από το \"Περισσότερες Επιλογές\"), όταν σας ζητηθεί "
|
5748 |
|
5749 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5750 |
msgid "Select 'Web Application' as the application type."
|
5751 |
msgstr "Επιλέξτε 'Εφαρμογή διαδικτύου' ως τον τύπο εφαρμογής."
|
5752 |
|
5753 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1167
|
5754 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5755 |
msgstr "Για περισσότερη βοήθεια, η οποία περιλαμβάνει εικόνες οθόνης, ακολουθήστε αυτό το σύνδεσμο. Η περιγραφή πιο κάτω είναι επαρκής για τους πιο έμπειρους χρήστες."
|
5756 |
|
5757 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5758 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:546,
|
5759 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5760 |
#: src/methods/googledrive.php:558
|
5761 |
msgid "Account is not authorized."
|
5775 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5776 |
msgstr "Δεν έχετε αποκτήσει ακόμη ένα διακριτικό πρόσβασης από το Google - θα πρέπει να πιστοποιήσετε ή να πιστοποιήσετε εκ νέου τη σύνδεσή σας στο Google Drive."
|
5777 |
|
5778 |
+
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5779 |
#: src/methods/googledrive.php:441
|
5780 |
msgid "you have authenticated your %s account."
|
5781 |
msgstr "έχετε πιστοποιήσει το λογαριασμό σας %s."
|
5782 |
|
5783 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5784 |
+
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5785 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5786 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5787 |
+
#: src/methods/s3.php:1140, src/methods/stream-base.php:364
|
5788 |
msgid "Success"
|
5789 |
msgstr "Επιτυχία"
|
5790 |
|
5791 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:839,
|
5792 |
+
#: src/methods/dropbox.php:848, src/methods/googledrive.php:415
|
5793 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5794 |
msgstr "Χρήση του μεριδίου σας %s: %s %% χρησιμοποιείται,%s διαθέσιμο"
|
5795 |
|
5821 |
msgstr "Θα πρέπει να επαναλάβει την πιστοποίηση με το%s, καθώς τα υφιστάμενα διαπιστευτήρια σας δεν λειτουργούν."
|
5822 |
|
5823 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5824 |
+
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:4101,
|
5825 |
+
#: src/restorer.php:2437, src/restorer.php:2542
|
5826 |
msgid "OK"
|
5827 |
msgstr "Εντάξει"
|
5828 |
|
5829 |
+
#: src/restorer.php:2431, src/restorer.php:2506
|
5830 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5831 |
msgstr "Το πρόθεμα του πίνακα έχει αλλάξει: γίνεται αλλαγή του-των πεδίου-ων %s του πίνακα αναλόγως:"
|
5832 |
|
5833 |
+
#: src/addons/migrator.php:1285, src/restorer.php:2333
|
5834 |
msgid "the database query being run was:"
|
5835 |
msgstr "το ερώτημα που τρέχει στη βάση δεδομένων ήταν:"
|
5836 |
|
5837 |
+
#: src/restorer.php:2034
|
5838 |
msgid "will restore as:"
|
5839 |
msgstr "θα γίνει επαναφορά ως:"
|
5840 |
|
5841 |
+
#: src/class-updraftplus.php:4246, src/restorer.php:1807,
|
5842 |
+
#: src/restorer.php:1896, src/restorer.php:1922
|
5843 |
msgid "Old table prefix:"
|
5844 |
msgstr "Παλιό πρόθεμα πίνακα:"
|
5845 |
|
5846 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5847 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4176
|
5848 |
msgid "Backup of:"
|
5849 |
msgstr "Αντίγραφο ασφαλείας του:"
|
5850 |
|
5851 |
+
#: src/restorer.php:1614
|
5852 |
msgid "Failed to open database file"
|
5853 |
msgstr "Αποτυχία ανοίγματος του αρχείου της βάσης δεδομένων "
|
5854 |
|
5855 |
+
#: src/restorer.php:1593
|
5856 |
msgid "Failed to find database file"
|
5857 |
msgstr "Αποτυχία εύρεσης του αρχείου της βάσης δεδομένων"
|
5858 |
|
5859 |
+
#: src/restorer.php:1570
|
5860 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5861 |
msgstr "Προειδοποίηση: Είναι ενεργή η ασφαλής λειτουργία της PHP στον εξυπηρετητή σας. Είναι πολύ πιθανόν να έχουν τεθεί χρονικά όρια. Αν συμβαίνει αυτό, τότε θα χρειαστεί να επαναφέρετε το χέρι το αρχείο μέσω phpMyAdmin ή άλλης μεθόδου."
|
5862 |
|
5863 |
+
#: src/restorer.php:529
|
5864 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5865 |
msgstr "wp-config.php από το αντίγραφο ασφαλείας: επαναφορά (σύμφωνα με το αίτημα του χρήστη)"
|
5866 |
|
5867 |
+
#: src/restorer.php:524
|
5868 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5869 |
msgstr "wp-config.php από το αντίγραφο ασφαλείας: θα γίνει επαναφορά ως wp-config-backup.php"
|
5870 |
|
5871 |
+
#: src/restorer.php:417
|
5872 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5873 |
msgstr "Αδυναμία εγγραφής της αποκρυπτογραφημένης βάσης δεδομένων στο σύστημα αρχείων"
|
5874 |
|
5875 |
+
#: src/restorer.php:401
|
5876 |
msgid "Failed to create a temporary directory"
|
5877 |
msgstr "Αδυναμία δημιουργίας προσωρινού φακέλου."
|
5878 |
|
5916 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5917 |
msgstr "Το UpdraftPlus δεν μπορεί να επαναφέρει απευθείας αυτού του είδους την οντότητα. Πρέπει να γίνει επαναφορά με το χέρι."
|
5918 |
|
5919 |
+
#: src/admin.php:4109, src/admin.php:4110
|
5920 |
msgid "Could not find one of the files for restoration"
|
5921 |
msgstr "Δεν μπόρεσε να βρεθεί ένα από τα αρχεία για την επαναφορά"
|
5922 |
|
5923 |
+
#: src/admin.php:4224
|
5924 |
msgid "Error message"
|
5925 |
msgstr "Μήνυμα λάθους"
|
5926 |
|
5927 |
+
#: src/admin.php:4106
|
5928 |
msgid "The backup records do not contain information about the proper size of this file."
|
5929 |
msgstr "Τα στοιχεία μητρώου του αντιγράφου ασφαλείας δεν περιέχουν πληροφορίες σχετικά με το κατάλληλο μέγεθος για αυτό το αρχείο."
|
5930 |
|
5931 |
+
#: src/admin.php:4098
|
5932 |
msgid "Archive is expected to be size:"
|
5933 |
msgstr "Το αρχείο αναμένεται να έχει μέγεθος:"
|
5934 |
|
5969 |
msgstr "Η εγκατάσταση της PHP/Curl στον διακομιστή σας δεν υποστηρίζει πρόσβαση https. Η επικοινωνία με το %s δε θα είναι κρυπτογραφημένη. Ζητήστε από τον πάροχό σας να εγκαταστήσει το Curl/SSL για να έχετε τη δυνατότητα κρυπτογράφησης (με χρήση ενός πρόσθετου). "
|
5970 |
|
5971 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5972 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5973 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5974 |
msgstr "Η εγκατάσταση της PHP στον εξυπηρετητή σας δεν συμπεριλαμβάνει μια απαραίτητη μονάδα %s). Παρακαλούμε επικοινωνήστε με το τμήμα υποστήριξης του παρόχου του εξυπηρετητή σας."
|
5975 |
|
6257 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6258 |
msgstr "Διαβάστε αυτό το άρθρο το οποίο θα σας βοηθήσει να μάθετε χρήσιμα πράγματα πριν κάνετε επαναφορά. "
|
6259 |
|
6260 |
+
#: src/class-updraftplus.php:4206
|
6261 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6262 |
msgstr "Μπορείτε να αναζητήσετε και να αντικαταστήσετε τη βάση δεδομένων σας (για τη μετάβαση ενός δικτυακού τόπου σε μια νέα τοποθεσία/διεύθυνση URL) με το πρόσθετο Migrator - ακολουθήστε αυτό το σύνδεσμο για περισσότερες πληροφορίες"
|
6263 |
|
6310 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6311 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6312 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6313 |
+
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6314 |
+
#: src/admin.php:680, src/admin.php:4103, src/admin.php:4133,
|
6315 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6316 |
+
#: src/methods/updraftvault.php:522, src/restorer.php:1523
|
6317 |
msgid "Error:"
|
6318 |
msgstr "Λάθος:"
|
6319 |
|
6387 |
|
6388 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6389 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6390 |
+
#: src/admin.php:3682, src/admin.php:4187,
|
6391 |
#: src/includes/class-wpadmin-commands.php:147,
|
6392 |
+
#: src/includes/class-wpadmin-commands.php:505,
|
6393 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6394 |
msgid "Database"
|
6395 |
msgstr "Βάση δεδομένων"
|
6396 |
|
6397 |
+
#: src/admin.php:311, src/admin.php:4777
|
6398 |
msgid "Files"
|
6399 |
msgstr "Αρχεία"
|
6400 |
|
6446 |
msgid "UpdraftPlus.Com"
|
6447 |
msgstr "UpdraftPlus.Com"
|
6448 |
|
6449 |
+
#: src/admin.php:4669
|
6450 |
msgid "Your settings have been wiped."
|
6451 |
msgstr "Οι ρυθμίσεις σας διεγράφησαν."
|
6452 |
|
6507 |
msgstr "Αποτυχία μεταφόρτωσης "
|
6508 |
|
6509 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6510 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
6511 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6512 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6513 |
+
#: src/methods/stream-base.php:220, src/restorer.php:2433,
|
6514 |
+
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6515 |
msgid "Error"
|
6516 |
msgstr "Λάθος"
|
6517 |
|
6552 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6553 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6554 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6555 |
+
#: src/methods/s3.php:847, src/methods/s3.php:851,
|
6556 |
#: src/methods/updraftvault.php:301,
|
6557 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6558 |
#: src/udaddons/updraftplus-addons.php:253
|
6584 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6585 |
msgstr "Σας αρέσει το UpdraftPlus και μπορείτε να αφιερώσετε ένα λεπτό;"
|
6586 |
|
6587 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3966,
|
6588 |
+
#: src/methods/googledrive.php:1082, src/methods/s3.php:336
|
6589 |
msgid "File not found"
|
6590 |
msgstr "Το αρχείο δεν βρέθηκε"
|
6591 |
|
6592 |
+
#: src/class-updraftplus.php:3873
|
6593 |
msgid "The decryption key used:"
|
6594 |
msgstr "Το κλειδί αποκρυπτογράφησης που χρησιμοποιήθηκε είναι το:"
|
6595 |
|
6596 |
+
#: src/class-updraftplus.php:3873, src/class-updraftplus.php:4105,
|
6597 |
+
#: src/restorer.php:422
|
6598 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6599 |
msgstr "Η αποκρυπτογράφηση απέτυχε. Η πιο πιθανή αιτία είναι ότι χρησιμοποιήσατε λάθος κλειδί."
|
6600 |
|
6601 |
+
#: src/class-updraftplus.php:3854, src/class-updraftplus.php:4093,
|
6602 |
+
#: src/restorer.php:409
|
6603 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6604 |
msgstr "Η αποκρυπτογράφηση απέτυχε. Το αρχείο της βάσης δεδομένων είναι κρυπτογραφημένο αλλά δεν έχει εισαχθεί κανένα κλειδί κρυπτογράφησης."
|
6605 |
|
6607 |
msgid "Could not open the backup file for writing"
|
6608 |
msgstr "Αδυναμία ανοίγματος του αρχείου του αντιγράφου ασφαλείας για εγγραφή"
|
6609 |
|
6610 |
+
#: src/class-updraftplus.php:3459
|
6611 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6612 |
msgstr "Δεν ήταν δυνατή η αποθήκευση του ιστορικού των αντιγράφων ασφαλείας επειδή δεν υπάρχει πίνακας αντιγράφων ασφαλείας. Η δημιουργία αντιγράφων ασφαλείας πιθανώς απέτυχε."
|
6613 |
|
6614 |
+
#: src/class-updraftplus.php:3420
|
6615 |
msgid "Could not read the directory"
|
6616 |
msgstr "Αδυναμία ανάγνωσης του φακέλου"
|
6617 |
|
6623 |
msgid "WordPress backup is complete"
|
6624 |
msgstr "Η λήψη αντιγράφων ασφαλείας του WordPress ολοκληρώθηκε"
|
6625 |
|
6626 |
+
#: src/class-updraftplus.php:2930
|
6627 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6628 |
msgstr "Η προσπάθεια για τη λήψη αντιγράφων ασφαλείας τελείωσε, προφανώς όμως ανεπιτυχώς"
|
6629 |
|
6630 |
+
#: src/class-updraftplus.php:2915
|
6631 |
msgid "The backup apparently succeeded and is now complete"
|
6632 |
msgstr "Η διαδικασία λήψης αντιγράφων ασφαλείας ξεκίνησε και ολοκληρώθηκε επιτυχώς"
|
6633 |
|
6635 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6636 |
msgstr "Παρουσιάστηκε σφάλμα κρυπτογράφησης κατά την κρυπτογράφηση της βάσης δεδομένων. Η κρυπτογράφηση ματαιώθηκε."
|
6637 |
|
6638 |
+
#: src/class-updraftplus.php:2618
|
6639 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6640 |
msgstr "Αδυναμία δημιουργίας αρχείων στο φάκελο των αντιγράφων ασφαλείας. Η δημιουργία αντιγράφων ασφαλείας ματαιώθηκε - ελέγξτε τις ρυθμίσεις του UpdraftPlus."
|
6641 |
|
6642 |
+
#: src/class-updraftplus.php:1897
|
6643 |
msgid "Others"
|
6644 |
msgstr "Άλλα"
|
6645 |
|
6646 |
+
#: src/addons/multisite.php:465, src/class-updraftplus.php:1882
|
6647 |
msgid "Uploads"
|
6648 |
msgstr "Μεταφορτώσεις"
|
6649 |
|
6650 |
+
#: src/class-updraftplus.php:1881
|
6651 |
msgid "Themes"
|
6652 |
msgstr "Θέματα"
|
6653 |
|
6654 |
+
#: src/class-updraftplus.php:1880
|
6655 |
msgid "Plugins"
|
6656 |
msgstr "Πρόσθετα"
|
6657 |
|
Binary file
|
@@ -11,6 +11,50 @@ msgstr ""
|
|
11 |
"Language: es_CO\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
msgstr ""
|
@@ -19,11 +63,11 @@ msgstr ""
|
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr ""
|
29 |
|
@@ -91,25 +135,25 @@ msgstr ""
|
|
91 |
msgid "remote site"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] ""
|
102 |
msgstr[1] ""
|
103 |
|
104 |
-
#: src/class-updraftplus.php:
|
105 |
msgid "Your chosen replacement collation"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: src/class-updraftplus.php:
|
109 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: src/class-updraftplus.php:
|
113 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
114 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
115 |
msgstr[0] ""
|
@@ -123,27 +167,27 @@ msgstr ""
|
|
123 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: src/addons/azure.php:
|
127 |
msgid "%s Prefix"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: src/addons/azure.php:
|
131 |
msgid "%s Container"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: src/addons/azure.php:
|
135 |
msgid "%s Key"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/addons/azure.php:
|
139 |
msgid "%s Account Name"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: src/addons/googlecloud.php:
|
143 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: src/addons/googlecloud.php:
|
147 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
148 |
msgstr ""
|
149 |
|
@@ -173,19 +217,19 @@ msgid_plural "Your .htaccess has an old site references on line numbers %s. You
|
|
173 |
msgstr[0] ""
|
174 |
msgstr[1] ""
|
175 |
|
176 |
-
#: src/restorer.php:
|
177 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: src/class-updraftplus.php:
|
181 |
msgid "Your chosen character set to use instead:"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: src/class-updraftplus.php:
|
185 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: src/class-updraftplus.php:
|
189 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
190 |
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."
|
191 |
msgstr[0] ""
|
@@ -239,59 +283,59 @@ msgstr ""
|
|
239 |
msgid "Please enter a valid URL e.g http://example.com"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: src/addons/backblaze.php:
|
243 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: src/addons/backblaze.php:
|
247 |
msgid "some/path"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/addons/backblaze.php:
|
251 |
msgid "Bucket name"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/addons/backblaze.php:
|
255 |
msgid "Backup path"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "Application key"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "here"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "Get these settings from %s, or sign up %s."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Account Key"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Account ID"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/class-updraftplus.php:
|
279 |
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."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/class-updraftplus.php:
|
283 |
msgid "the migrator add-on"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/class-updraftplus.php:
|
287 |
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."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/class-updraftplus.php:
|
291 |
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."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
msgstr ""
|
297 |
|
@@ -311,15 +355,15 @@ msgstr ""
|
|
311 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/admin.php:1368, src/admin.php:
|
315 |
-
#: src/class-updraftplus.php:
|
316 |
-
#: src/class-updraftplus.php:
|
317 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: src/admin.php:1359, src/admin.php:
|
321 |
-
#: src/class-updraftplus.php:
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "A PHP exception (%s) has occurred: %s"
|
324 |
msgstr ""
|
325 |
|
@@ -375,7 +419,7 @@ msgstr ""
|
|
375 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/admin.php:
|
379 |
msgid "Value"
|
380 |
msgstr ""
|
381 |
|
@@ -387,7 +431,7 @@ msgstr ""
|
|
387 |
msgid "Encrypted login failed; trying non-encrypted"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/addons/azure.php:
|
391 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
392 |
msgstr ""
|
393 |
|
@@ -399,11 +443,11 @@ msgstr ""
|
|
399 |
msgid "Cloud Files"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: src/admin.php:
|
403 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: src/admin.php:
|
407 |
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."
|
408 |
msgstr ""
|
409 |
|
@@ -412,11 +456,11 @@ msgstr ""
|
|
412 |
msgid "UpdraftVault"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: src/includes/class-wpadmin-commands.php:
|
416 |
msgid "archive"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: src/includes/class-wpadmin-commands.php:
|
420 |
msgid "Extra database"
|
421 |
msgstr ""
|
422 |
|
@@ -460,11 +504,11 @@ msgstr ""
|
|
460 |
msgid "Browse contents"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: src/restorer.php:
|
464 |
msgid "Skipped tables:"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: src/class-updraftplus.php:
|
468 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
469 |
msgstr ""
|
470 |
|
@@ -673,14 +717,6 @@ msgstr ""
|
|
673 |
msgid "Recommended: optimize your database with WP-Optimize."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
677 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
681 |
-
msgid "WP-Optimize"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
685 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
686 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -728,27 +764,7 @@ msgstr ""
|
|
728 |
msgid "Europe (Ireland)"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
732 |
-
msgid "WP-Optimize (free)"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
736 |
-
msgid "Explore our Cloud and Premium versions."
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
740 |
-
msgid "Download it for free from WordPress.org"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
744 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
748 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
752 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
753 |
msgid "UpdraftCentral"
|
754 |
msgstr ""
|
@@ -960,11 +976,11 @@ msgstr ""
|
|
960 |
msgid "Export / import settings"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: src/restorer.php:
|
964 |
msgid "Processing table (%s)"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: src/restorer.php:
|
968 |
msgid "Backup of: %s"
|
969 |
msgstr ""
|
970 |
|
@@ -972,11 +988,11 @@ msgstr ""
|
|
972 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: src/methods/dropbox.php:
|
976 |
msgid "%s de-authentication"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: src/methods/dropbox.php:
|
980 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
981 |
msgstr ""
|
982 |
|
@@ -1044,24 +1060,24 @@ msgstr ""
|
|
1044 |
msgid "US East (Ohio)"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: src/addons/onedrive.php:
|
1048 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/addons/onedrive.php:
|
1052 |
msgid "Account is not authorized (%s)."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/addons/onedrive.php:
|
1056 |
msgid "Your IP address:"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: src/addons/onedrive.php:
|
1060 |
#: src/udaddons/updraftplus-addons.php:887
|
1061 |
msgid "To remove any block, please go here."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: src/addons/onedrive.php:
|
1065 |
msgid "An error response was received; HTTP code:"
|
1066 |
msgstr ""
|
1067 |
|
@@ -1089,27 +1105,27 @@ msgstr ""
|
|
1089 |
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."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: src/addons/webdav.php:
|
1093 |
msgid "Path"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: src/addons/webdav.php:
|
1097 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: src/addons/webdav.php:
|
1101 |
msgid "Enter any path in the field below."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: src/addons/webdav.php:
|
1105 |
msgid "A host name cannot contain a slash."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "Protocol (SSL or not)"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1114 |
msgstr ""
|
1115 |
|
@@ -1117,11 +1133,11 @@ msgstr ""
|
|
1117 |
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."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: src/methods/s3.php:
|
1121 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: src/methods/s3.php:
|
1125 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1126 |
msgstr ""
|
1127 |
|
@@ -1227,7 +1243,7 @@ msgstr ""
|
|
1227 |
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."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: src/class-updraftplus.php:
|
1231 |
msgid "Size: %s MB"
|
1232 |
msgstr ""
|
1233 |
|
@@ -1239,7 +1255,7 @@ msgstr ""
|
|
1239 |
msgid "Now"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: src/class-updraftplus.php:
|
1243 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1345,11 +1361,11 @@ msgstr ""
|
|
1345 |
msgid "UpdraftCentral Connection"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1349 |
msgid "The backup was aborted by the user"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: src/admin.php:
|
1353 |
msgid "Your settings have been saved."
|
1354 |
msgstr "Tus opciones han sido guardadas"
|
1355 |
|
@@ -1415,7 +1431,7 @@ msgstr ""
|
|
1415 |
msgid "Asia Pacific (Seoul)"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: src/restorer.php:
|
1419 |
msgid "Uploads URL:"
|
1420 |
msgstr ""
|
1421 |
|
@@ -1423,15 +1439,15 @@ msgstr ""
|
|
1423 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/class-updraftplus.php:
|
1427 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/class-updraftplus.php:
|
1431 |
msgid "Please read this link for important information on this process."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: src/class-updraftplus.php:
|
1435 |
msgid "It will be imported as a new site."
|
1436 |
msgstr ""
|
1437 |
|
@@ -1505,7 +1521,7 @@ msgstr ""
|
|
1505 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: src/admin.php:
|
1509 |
msgid "Skipping: this archive was already restored."
|
1510 |
msgstr ""
|
1511 |
|
@@ -1537,23 +1553,23 @@ msgstr ""
|
|
1537 |
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)."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: src/admin.php:
|
1541 |
msgid "Send this backup to remote storage"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: src/admin.php:
|
1545 |
msgid "Check out UpdraftPlus Vault."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: src/admin.php:
|
1549 |
msgid "Not got any remote storage?"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: src/admin.php:
|
1553 |
msgid "settings"
|
1554 |
msgstr "Ajustes"
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1558 |
msgstr ""
|
1559 |
|
@@ -1610,23 +1626,23 @@ msgstr ""
|
|
1610 |
msgid "Advanced Tools"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: src/addons/googlecloud.php:
|
1614 |
msgid "Bucket location"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: src/addons/googlecloud.php:
|
1618 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: src/addons/googlecloud.php:
|
1622 |
msgid "This setting applies only when a new bucket is being created."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: src/addons/googlecloud.php:
|
1626 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "Do not confuse %s with %s - they are separate things."
|
1631 |
msgstr ""
|
1632 |
|
@@ -1688,48 +1704,48 @@ msgstr ""
|
|
1688 |
msgid "Standard"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: src/addons/azure.php:
|
1692 |
msgid "container"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: src/addons/azure.php:
|
1696 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: src/addons/azure.php:
|
1700 |
msgid "optional"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: src/addons/azure.php:
|
1704 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "Enter the path of the %s you wish to use here."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
-
#: src/addons/azure.php:
|
1717 |
msgid "Azure"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: src/addons/azure.php:
|
1721 |
msgid "Create Azure credentials in your Azure developer console."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: src/addons/azure.php:
|
1725 |
msgid "Could not create the container"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: src/addons/azure.php:
|
1729 |
msgid "Could not access container"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: src/class-updraftplus.php:
|
1733 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1734 |
msgstr ""
|
1735 |
|
@@ -1757,47 +1773,47 @@ msgstr ""
|
|
1757 |
msgid "Not installed"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: src/addons/googlecloud.php:
|
1761 |
msgid "Storage class"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: src/addons/googlecloud.php:
|
1765 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: src/addons/googlecloud.php:
|
1769 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: src/addons/googlecloud.php:
|
1773 |
msgid "Bucket"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Otherwise, you can leave it blank."
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "Enter the ID of the %s project you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "Project ID"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "You must save and authenticate before you can test your settings."
|
1802 |
msgstr ""
|
1803 |
|
@@ -1806,22 +1822,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1806 |
msgstr ""
|
1807 |
|
1808 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1809 |
-
#: src/addons/googlecloud.php:
|
1810 |
msgid "You do not have access to this bucket."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1814 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1815 |
-
#: src/addons/googlecloud.php:
|
1816 |
-
#: src/addons/googlecloud.php:
|
1817 |
-
#: src/addons/googlecloud.php:
|
1818 |
-
#: src/addons/googlecloud.php:
|
1819 |
msgid "Google Cloud"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1823 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1824 |
-
#: src/addons/googlecloud.php:
|
1825 |
msgid "%s Service Exception."
|
1826 |
msgstr ""
|
1827 |
|
@@ -1829,7 +1845,7 @@ msgstr ""
|
|
1829 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: src/restorer.php:
|
1833 |
msgid "Deferring..."
|
1834 |
msgstr ""
|
1835 |
|
@@ -1898,11 +1914,11 @@ msgstr ""
|
|
1898 |
msgid "Add an additional retention rule..."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: src/restorer.php:
|
1902 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: src/restorer.php:
|
1906 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1907 |
msgstr ""
|
1908 |
|
@@ -1910,11 +1926,11 @@ msgstr ""
|
|
1910 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: src/class-updraftplus.php:
|
1914 |
msgid "You must upgrade MySQL to be able to use this database."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: src/class-updraftplus.php:
|
1918 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1919 |
msgstr ""
|
1920 |
|
@@ -2092,8 +2108,8 @@ msgstr ""
|
|
2092 |
msgid "Updraft Vault"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: src/addons/azure.php:
|
2096 |
-
#: src/addons/googlecloud.php:
|
2097 |
msgid "Delete failed:"
|
2098 |
msgstr ""
|
2099 |
|
@@ -2129,10 +2145,6 @@ msgstr ""
|
|
2129 |
msgid "Existing keys"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: src/addons/migrator.php:2423
|
2133 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2134 |
-
msgstr ""
|
2135 |
-
|
2136 |
#: src/addons/migrator.php:2405
|
2137 |
msgid "Your new key:"
|
2138 |
msgstr ""
|
@@ -2338,7 +2350,7 @@ msgstr ""
|
|
2338 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: src/restorer.php:
|
2342 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2343 |
msgstr ""
|
2344 |
|
@@ -2370,41 +2382,41 @@ msgstr ""
|
|
2370 |
msgid "You have made changes to your settings, and not saved."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: src/addons/onedrive.php:
|
2374 |
msgid "N.B. %s is not case-sensitive."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: src/addons/onedrive.php:
|
2378 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: src/addons/azure.php:
|
2382 |
-
#: src/addons/onedrive.php:
|
2383 |
msgid "For longer help, including screenshots, follow this link."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: src/addons/onedrive.php:
|
2387 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: src/addons/onedrive.php:
|
2391 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: src/addons/azure.php:
|
2395 |
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)."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: src/addons/onedrive.php:
|
2399 |
msgid "%s authorisation failed:"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
-
#: src/addons/onedrive.php:
|
2404 |
msgid "OneDrive"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: src/addons/onedrive.php:
|
2408 |
msgid "Please re-authorize the connection to your %s account."
|
2409 |
msgstr ""
|
2410 |
|
@@ -2412,7 +2424,7 @@ msgstr ""
|
|
2412 |
msgid "configure it here"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: src/addons/onedrive.php:
|
2416 |
msgid "To remove the block, please go here."
|
2417 |
msgstr ""
|
2418 |
|
@@ -2557,74 +2569,66 @@ msgstr "Necesitas ingresar una clave de acceso de administrador"
|
|
2557 |
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)"
|
2558 |
msgstr "Si tienes un usuario administrador AWS, entonces puedes usar este asistente para crear rápidamente un nuevo usuario AWS (IAM) con acceso a sólo este bucket (en lugar de tu cuenta entera)"
|
2559 |
|
2560 |
-
#: src/methods/s3.php:
|
2561 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2562 |
msgstr "Para crear un nuevo sub-usuario IAM y la llave de acceso que sólo tiene acceso a este bucket, use este complemento."
|
2563 |
|
2564 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2565 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2566 |
msgstr "Para soporte personal, la posibilidad de copiar sitios, mas destinos de almacenamiento, respaldos encriptados para seguridad, varios destinos de respaldo, mejores reportes, sin anuncios y mucho más, verifique las versión premium de UpdraftPlus - el plugin más popular del mundo para respaldos."
|
2567 |
|
2568 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2569 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2570 |
msgstr "Noticias UpdraftPlus, material de entrenamiento de alta calidad para desarrolladores de Wordpress y propietarios de sitios, y noticias generales de Wordpress. Puedes cancelar la suscripción en cualquier momento."
|
2571 |
|
2572 |
-
#: src/addons/onedrive.php:
|
2573 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2574 |
#: src/udaddons/updraftplus-addons.php:887
|
2575 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2576 |
msgstr "Este mayormente significa que compartes un servidor web con un sitio hhacekado que ha sido utilizado en ataques previos."
|
2577 |
|
2578 |
-
#: src/addons/onedrive.php:
|
2579 |
#: src/udaddons/updraftplus-addons.php:887
|
2580 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2581 |
msgstr "Parece que la dirección IP de tu servidor web (%s) está bloqueada."
|
2582 |
|
2583 |
-
#: src/addons/onedrive.php:
|
2584 |
#: src/udaddons/updraftplus-addons.php:887
|
2585 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2586 |
msgstr "UpdraftPlus.com ha contestado con \"Acceso Denegado\""
|
2587 |
|
2588 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2589 |
msgid "Premium WooCommerce plugins"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2593 |
msgid "Free two-factor security plugin"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2597 |
-
msgid "More
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2601 |
msgid "Go to the shop."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2605 |
msgid "Compare with the free version"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2609 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2610 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2611 |
msgid "UpdraftPlus Premium"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2615 |
-
msgid "Follow this link to sign up."
|
2616 |
-
msgstr ""
|
2617 |
-
|
2618 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
2619 |
msgid "Free Newsletter"
|
2620 |
msgstr "Boletín de noticias gratis"
|
2621 |
|
2622 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
2623 |
-
msgid "Thank you for backing up with UpdraftPlus!"
|
2624 |
-
msgstr "Gracias por respaldar con UpdraftPlus!"
|
2625 |
-
|
2626 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2627 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2628 |
msgid "Dismiss (for %s months)"
|
2629 |
msgstr "Descartar (por %s meses)"
|
2630 |
|
@@ -2665,8 +2669,8 @@ msgstr ""
|
|
2665 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: src/methods/s3.php:
|
2669 |
-
#: src/methods/s3.php:
|
2670 |
msgid "%s Error: Failed to initialise"
|
2671 |
msgstr ""
|
2672 |
|
@@ -2711,7 +2715,7 @@ msgctxt "i.e. Non-automatic"
|
|
2711 |
msgid "Manual"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: src/restorer.php:
|
2715 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2716 |
msgid "An error (%s) occurred:"
|
2717 |
msgstr ""
|
@@ -2852,7 +2856,7 @@ msgstr ""
|
|
2852 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: src/class-updraftplus.php:
|
2856 |
msgid "Backup label:"
|
2857 |
msgstr ""
|
2858 |
|
@@ -2876,7 +2880,7 @@ msgstr ""
|
|
2876 |
msgid "Your label for this backup (optional)"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: src/addons/googlecloud.php:
|
2880 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2881 |
msgstr ""
|
2882 |
|
@@ -2896,11 +2900,11 @@ msgstr ""
|
|
2896 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: src/class-updraftplus.php:
|
2900 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/class-updraftplus.php:
|
2904 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2905 |
msgstr ""
|
2906 |
|
@@ -2937,19 +2941,19 @@ msgstr ""
|
|
2937 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: src/class-updraftplus.php:
|
2941 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/class-updraftplus.php:
|
2945 |
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."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: src/class-updraftplus.php:
|
2949 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: src/class-updraftplus.php:
|
2953 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2954 |
msgstr ""
|
2955 |
|
@@ -2994,7 +2998,7 @@ msgstr ""
|
|
2994 |
msgid "Start backup"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: src/class-updraftplus.php:
|
2998 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
2999 |
msgstr ""
|
3000 |
|
@@ -3030,7 +3034,7 @@ msgstr ""
|
|
3030 |
msgid "Memory limit"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: src/class-updraftplus.php:
|
3034 |
msgid "restoration"
|
3035 |
msgstr ""
|
3036 |
|
@@ -3093,7 +3097,7 @@ msgstr ""
|
|
3093 |
msgid "search term"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: src/restorer.php:
|
3097 |
msgid "Too many database errors have occurred - aborting"
|
3098 |
msgstr ""
|
3099 |
|
@@ -3129,7 +3133,7 @@ msgstr ""
|
|
3129 |
msgid "Free disk space in account:"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: src/admin.php:
|
3133 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3134 |
msgstr ""
|
3135 |
|
@@ -3224,7 +3228,7 @@ msgstr ""
|
|
3224 |
msgid "user"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: src/class-updraftplus.php:
|
3228 |
msgid "External database (%s)"
|
3229 |
msgstr ""
|
3230 |
|
@@ -3236,8 +3240,8 @@ msgstr ""
|
|
3236 |
msgid "failed to access parent folder"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: src/addons/googlecloud.php:
|
3240 |
-
#: src/addons/onedrive.php:
|
3241 |
msgid "However, subsequent access attempts failed:"
|
3242 |
msgstr ""
|
3243 |
|
@@ -3273,7 +3277,7 @@ msgstr ""
|
|
3273 |
msgid "use UpdraftPlus Premium"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: src/class-updraftplus.php:
|
3277 |
msgid "Decryption failed. The database file is encrypted."
|
3278 |
msgstr ""
|
3279 |
|
@@ -3281,8 +3285,8 @@ msgstr ""
|
|
3281 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: src/restorer.php:
|
3285 |
-
#: src/restorer.php:
|
3286 |
msgid "An error occurred on the first %s command - aborting run"
|
3287 |
msgstr ""
|
3288 |
|
@@ -3302,17 +3306,17 @@ msgstr ""
|
|
3302 |
msgid "In %s, path names are case sensitive."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: src/addons/azure.php:
|
3306 |
-
#: src/addons/onedrive.php:
|
3307 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:
|
3311 |
-
#: src/addons/onedrive.php:
|
3312 |
msgid "e.g. %s"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:
|
3316 |
msgid "Enter the path of the %s folder you wish to use here."
|
3317 |
msgstr ""
|
3318 |
|
@@ -3356,7 +3360,7 @@ msgstr ""
|
|
3356 |
msgid "Failed to upload %s"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: src/methods/dropbox.php:
|
3360 |
msgid "Success:"
|
3361 |
msgstr ""
|
3362 |
|
@@ -3364,15 +3368,15 @@ msgstr ""
|
|
3364 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: src/addons/onedrive.php:
|
3368 |
msgid "(You appear to be already authenticated)."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: src/methods/dropbox.php:
|
3372 |
msgid "Dropbox"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: src/addons/onedrive.php:
|
3376 |
msgid "Authenticate with %s"
|
3377 |
msgstr ""
|
3378 |
|
@@ -3403,8 +3407,8 @@ msgstr ""
|
|
3403 |
msgid "%s error - failed to access the container"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: src/addons/googlecloud.php:
|
3407 |
-
#: src/methods/dropbox.php:
|
3408 |
msgid "Account holder's name: %s."
|
3409 |
msgstr ""
|
3410 |
|
@@ -3420,17 +3424,17 @@ msgstr ""
|
|
3420 |
msgid "<strong>This is NOT a folder name</strong>."
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:
|
3424 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3425 |
msgid "Folder"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:
|
3429 |
#: src/methods/googledrive.php:1122
|
3430 |
msgid "%s download: failed: file not found"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: src/addons/googlecloud.php:
|
3434 |
msgid "Name: %s."
|
3435 |
msgstr ""
|
3436 |
|
@@ -3469,7 +3473,7 @@ msgstr ""
|
|
3469 |
msgid "Failed to unpack the archive"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: src/class-updraftplus.php:
|
3473 |
msgid "Error - failed to download the file"
|
3474 |
msgstr ""
|
3475 |
|
@@ -3494,7 +3498,7 @@ msgid "password/key"
|
|
3494 |
msgstr ""
|
3495 |
|
3496 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3497 |
-
#: src/admin.php:
|
3498 |
msgid "Key"
|
3499 |
msgstr ""
|
3500 |
|
@@ -3519,7 +3523,7 @@ msgid "Files and database WordPress backup (created by %s)"
|
|
3519 |
msgstr ""
|
3520 |
|
3521 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3522 |
-
#: src/includes/class-backup-history.php:
|
3523 |
msgid "Backup created by: %s."
|
3524 |
msgstr ""
|
3525 |
|
@@ -3551,7 +3555,7 @@ msgstr ""
|
|
3551 |
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."
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: src/admin.php:694, src/includes/class-backup-history.php:
|
3555 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3556 |
msgstr ""
|
3557 |
|
@@ -3560,20 +3564,20 @@ msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are
|
|
3560 |
msgstr ""
|
3561 |
|
3562 |
#: src/admin.php:693, src/admin.php:694,
|
3563 |
-
#: src/includes/class-backup-history.php:
|
3564 |
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))."
|
3565 |
msgstr ""
|
3566 |
|
3567 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3568 |
-
#: src/restorer.php:
|
3569 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: src/restorer.php:
|
3573 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: src/restorer.php:
|
3577 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3578 |
msgstr ""
|
3579 |
|
@@ -3585,12 +3589,12 @@ msgstr ""
|
|
3585 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: src/addons/backblaze.php:
|
3589 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3590 |
msgid "No settings were found"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: src/includes/class-backup-history.php:
|
3594 |
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."
|
3595 |
msgstr ""
|
3596 |
|
@@ -3598,7 +3602,7 @@ msgstr ""
|
|
3598 |
msgid "Rescanning remote and local storage for backup sets..."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: src/addons/googlecloud.php:
|
3602 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3603 |
msgid "(Read more)"
|
3604 |
msgstr ""
|
@@ -3616,7 +3620,7 @@ msgstr ""
|
|
3616 |
msgid "Remove"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: src/methods/s3.php:
|
3620 |
msgid "Other %s FAQs."
|
3621 |
msgstr ""
|
3622 |
|
@@ -3628,12 +3632,12 @@ msgstr ""
|
|
3628 |
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."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/class-updraftplus.php:
|
3632 |
-
#: src/restorer.php:
|
3633 |
msgid "Your hosting company must enable these functions before %s can work."
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: src/class-updraftplus.php:
|
3637 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3638 |
msgstr ""
|
3639 |
|
@@ -3649,7 +3653,7 @@ msgstr ""
|
|
3649 |
msgid "regular non-encrypted FTP"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: src/restorer.php:
|
3653 |
msgid "Backup created by:"
|
3654 |
msgstr ""
|
3655 |
|
@@ -3703,19 +3707,19 @@ msgstr ""
|
|
3703 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: src/class-updraftplus.php:
|
3707 |
msgid "The attempt to undo the double-compression succeeded."
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: src/class-updraftplus.php:
|
3711 |
msgid "The attempt to undo the double-compression failed."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: src/class-updraftplus.php:
|
3715 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: src/includes/class-wpadmin-commands.php:
|
3719 |
msgid "Constants"
|
3720 |
msgstr ""
|
3721 |
|
@@ -3764,7 +3768,7 @@ msgstr ""
|
|
3764 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: src/restorer.php:
|
3768 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3769 |
msgstr ""
|
3770 |
|
@@ -3785,11 +3789,11 @@ msgstr ""
|
|
3785 |
msgid "Messages:"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: src/restorer.php:
|
3789 |
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"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: src/restorer.php:
|
3793 |
msgid "The directory does not exist"
|
3794 |
msgstr ""
|
3795 |
|
@@ -3958,7 +3962,7 @@ msgstr ""
|
|
3958 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:679, src/admin.php:
|
3962 |
msgid "Error data:"
|
3963 |
msgstr ""
|
3964 |
|
@@ -3970,11 +3974,11 @@ msgstr ""
|
|
3970 |
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."
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: src/restorer.php:
|
3974 |
msgid "Split line to avoid exceeding maximum packet size"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: src/restorer.php:
|
3978 |
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)"
|
3979 |
msgstr ""
|
3980 |
|
@@ -4006,11 +4010,11 @@ msgstr ""
|
|
4006 |
msgid "Email reports"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: src/class-updraftplus.php:
|
4010 |
msgid "%s checksum: %s"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: src/class-updraftplus.php:
|
4014 |
msgid "files: %s"
|
4015 |
msgstr ""
|
4016 |
|
@@ -4063,19 +4067,19 @@ msgstr ""
|
|
4063 |
msgid "%d errors, %d warnings"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: src/addons/onedrive.php:
|
4067 |
-
#: src/methods/dropbox.php:
|
4068 |
msgid "%s authentication"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: src/addons/onedrive.php:
|
4072 |
-
#: src/methods/dropbox.php:240, src/methods/dropbox.php:
|
4073 |
-
#: src/methods/dropbox.php:
|
4074 |
-
#: src/methods/dropbox.php:
|
4075 |
msgid "%s error: %s"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: src/addons/googlecloud.php:
|
4079 |
msgid "%s logo"
|
4080 |
msgstr ""
|
4081 |
|
@@ -4083,7 +4087,7 @@ msgstr ""
|
|
4083 |
msgid "%s did not return the expected response - check your log file for more details"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: src/methods/s3.php:
|
4087 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4088 |
msgstr ""
|
4089 |
|
@@ -4104,7 +4108,7 @@ msgstr ""
|
|
4104 |
msgid "For more reporting features, use the Reporting add-on."
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: src/class-updraftplus.php:
|
4108 |
msgid "(version: %s)"
|
4109 |
msgstr ""
|
4110 |
|
@@ -4245,7 +4249,7 @@ msgstr ""
|
|
4245 |
msgid "Reporting"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: src/admin.php:
|
4249 |
msgid "Options (raw)"
|
4250 |
msgstr ""
|
4251 |
|
@@ -4253,7 +4257,7 @@ msgstr ""
|
|
4253 |
msgid "Send a report only when there are warnings/errors"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: src/restorer.php:
|
4257 |
msgid "Content URL:"
|
4258 |
msgstr ""
|
4259 |
|
@@ -4397,7 +4401,7 @@ msgstr ""
|
|
4397 |
msgid "Your web-server does not have the %s module installed."
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: src/addons/googlecloud.php:
|
4401 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4402 |
msgstr ""
|
4403 |
|
@@ -4417,7 +4421,7 @@ msgstr ""
|
|
4417 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: src/restorer.php:
|
4421 |
msgid "Site home:"
|
4422 |
msgstr ""
|
4423 |
|
@@ -4433,7 +4437,7 @@ msgstr ""
|
|
4433 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: src/addons/azure.php:
|
4437 |
#: src/methods/stream-base.php:149
|
4438 |
msgid "Upload failed"
|
4439 |
msgstr ""
|
@@ -4577,27 +4581,27 @@ msgstr ""
|
|
4577 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/restorer.php:
|
4581 |
msgid "file"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: src/restorer.php:
|
4585 |
msgid "folder"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: src/restorer.php:
|
4589 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: src/class-updraftplus.php:
|
4593 |
msgid "The backup has not finished; a resumption is scheduled"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: src/class-updraftplus.php:
|
4597 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: src/addons/onedrive.php:
|
4601 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4602 |
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)."
|
4603 |
msgstr ""
|
@@ -4682,23 +4686,23 @@ msgstr ""
|
|
4682 |
msgid "Support"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: src/class-updraftplus.php:
|
4686 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: src/class-updraftplus.php:
|
4690 |
msgid "This database backup is missing core WordPress tables: %s"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: src/class-updraftplus.php:
|
4694 |
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."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: src/class-updraftplus.php:
|
4698 |
msgid "%s version: %s"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/class-updraftplus.php:
|
4702 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4703 |
msgstr ""
|
4704 |
|
@@ -4783,15 +4787,15 @@ msgstr ""
|
|
4783 |
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?"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: src/includes/class-wpadmin-commands.php:
|
4787 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: src/includes/class-wpadmin-commands.php:
|
4791 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: src/includes/class-wpadmin-commands.php:
|
4795 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4796 |
msgstr ""
|
4797 |
|
@@ -4831,16 +4835,16 @@ msgstr ""
|
|
4831 |
msgid "WordPress root directory server path: %s"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: src/methods/dreamobjects.php:
|
4835 |
msgid "%s end-point"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: src/methods/s3.php:
|
4839 |
msgid "... and many more!"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: src/methods/s3generic.php:
|
4843 |
-
#: src/methods/s3generic.php:
|
4844 |
msgid "S3 (Compatible)"
|
4845 |
msgstr ""
|
4846 |
|
@@ -4848,11 +4852,11 @@ msgstr ""
|
|
4848 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#: src/admin.php:
|
4852 |
msgid "Looking for %s archive: file name: %s"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: src/admin.php:
|
4856 |
msgid "Final checks"
|
4857 |
msgstr ""
|
4858 |
|
@@ -4880,7 +4884,7 @@ msgstr ""
|
|
4880 |
msgid "Processing files - please wait..."
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#: src/admin.php:
|
4884 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4885 |
msgid "Please consult this FAQ for help on what to do about it."
|
4886 |
msgstr ""
|
@@ -4889,30 +4893,30 @@ msgstr ""
|
|
4889 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: src/class-updraftplus.php:
|
4893 |
msgid "Failed to open database file."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: src/admin.php:
|
4897 |
msgid "Known backups (raw)"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#: src/restorer.php:
|
4901 |
msgid "Files found:"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: src/restorer.php:
|
4905 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: src/admin.php:
|
4909 |
msgid "file is size:"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: src/addons/googlecloud.php:
|
4913 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4914 |
-
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:
|
4915 |
-
#: src/class-updraftplus.php:
|
4916 |
msgid "Go here for more information."
|
4917 |
msgstr ""
|
4918 |
|
@@ -4920,7 +4924,7 @@ msgstr ""
|
|
4920 |
msgid "Some files are still downloading or being processed - please wait."
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: src/class-updraftplus.php:
|
4924 |
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."
|
4925 |
msgstr ""
|
4926 |
|
@@ -4964,7 +4968,7 @@ msgstr ""
|
|
4964 |
msgid "Error - no such file exists at %s"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: src/addons/azure.php:
|
4968 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4969 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4970 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
@@ -4993,10 +4997,10 @@ msgstr ""
|
|
4993 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4994 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4995 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
4996 |
-
#: src/class-updraftplus.php:
|
4997 |
-
#: src/class-updraftplus.php:
|
4998 |
-
#: src/class-updraftplus.php:
|
4999 |
-
#: src/methods/s3.php:
|
5000 |
msgid "Error: %s"
|
5001 |
msgstr ""
|
5002 |
|
@@ -5036,7 +5040,7 @@ msgstr ""
|
|
5036 |
msgid "Warnings encountered:"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: src/class-updraftplus.php:
|
5040 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5041 |
msgstr ""
|
5042 |
|
@@ -5076,40 +5080,40 @@ msgstr ""
|
|
5076 |
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."
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: src/methods/s3.php:
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: src/methods/s3.php:
|
5084 |
msgid "Please check your access credentials."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:
|
5088 |
msgid "The error reported by %s was:"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#: src/restorer.php:
|
5092 |
msgid "Please supply the requested information, and then continue."
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: src/class-updraftplus.php:
|
5096 |
msgid "Site information:"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: src/restorer.php:
|
5100 |
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."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: src/admin.php:2445, src/class-updraftplus.php:
|
5104 |
msgid "Warning:"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: src/class-updraftplus.php:
|
5108 |
#: src/restorer.php:184
|
5109 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5110 |
msgstr ""
|
5111 |
|
5112 |
-
#: src/admin.php:
|
5113 |
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."
|
5114 |
msgstr ""
|
5115 |
|
@@ -5185,7 +5189,7 @@ msgstr ""
|
|
5185 |
msgid "News"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:
|
5189 |
msgid "Backup set not found"
|
5190 |
msgstr ""
|
5191 |
|
@@ -5350,18 +5354,18 @@ msgid "Directory path"
|
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5353 |
-
#: src/addons/sftp.php:443, src/addons/webdav.php:
|
5354 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5355 |
#: src/udaddons/options.php:135
|
5356 |
msgid "Password"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: src/addons/sftp.php:429, src/addons/webdav.php:
|
5360 |
msgid "Port"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5364 |
-
#: src/addons/webdav.php:
|
5365 |
msgid "Host"
|
5366 |
msgstr ""
|
5367 |
|
@@ -5409,7 +5413,7 @@ msgstr ""
|
|
5409 |
msgid "Over-write wp-config.php"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:
|
5413 |
msgid "WordPress Core"
|
5414 |
msgstr ""
|
5415 |
|
@@ -5417,14 +5421,14 @@ msgstr ""
|
|
5417 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: src/addons/googlecloud.php:
|
5421 |
-
#: src/addons/googlecloud.php:
|
5422 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5423 |
#: src/methods/stream-base.php:353
|
5424 |
msgid "Failed"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#: src/addons/webdav.php:
|
5428 |
msgid "WebDAV URL"
|
5429 |
msgstr ""
|
5430 |
|
@@ -5475,31 +5479,31 @@ msgstr ""
|
|
5475 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: src/addons/onedrive.php:
|
5479 |
msgid "Your %s account name: %s"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/methods/dropbox.php:
|
5483 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/methods/dropbox.php:
|
5487 |
msgid "you have authenticated your %s account"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/methods/dropbox.php:
|
5491 |
msgid "there's an add-on for that."
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/methods/dropbox.php:
|
5495 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/methods/dropbox.php:
|
5499 |
msgid "Backups are saved in"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/methods/dropbox.php:
|
5503 |
msgid "Need to use sub-folders?"
|
5504 |
msgstr ""
|
5505 |
|
@@ -5512,96 +5516,96 @@ msgstr ""
|
|
5512 |
msgid "You do not appear to be authenticated with Dropbox"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: src/methods/s3.php:
|
5516 |
msgid "The communication with %s was not encrypted."
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/methods/s3.php:
|
5520 |
msgid "The communication with %s was encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/addons/googlecloud.php:
|
5524 |
msgid "We accessed the bucket, and were able to create files within it."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/addons/googlecloud.php:
|
5528 |
-
#: src/methods/s3.php:
|
5529 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5530 |
msgstr ""
|
5531 |
|
5532 |
-
#: src/addons/googlecloud.php:
|
5533 |
-
#: src/methods/s3.php:
|
5534 |
msgid "Failure"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: src/addons/backblaze.php:
|
5538 |
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)."
|
5539 |
msgstr ""
|
5540 |
|
5541 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5542 |
-
#: src/methods/s3.php:
|
5543 |
msgid "Region"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:
|
5547 |
-
#: src/methods/s3.php:
|
5548 |
msgid "Failure: No bucket details were given."
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: src/methods/s3.php:
|
5552 |
msgid "API secret"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: src/methods/s3.php:
|
5556 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/methods/s3.php:
|
5560 |
msgid "%s location"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: src/methods/s3.php:
|
5564 |
msgid "%s secret key"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: src/methods/s3.php:
|
5568 |
msgid "%s access key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: src/methods/s3.php:
|
5572 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: src/methods/s3.php:
|
5576 |
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."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: src/methods/s3.php:
|
5580 |
-
#: src/methods/s3.php:
|
5581 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5582 |
msgstr ""
|
5583 |
|
5584 |
-
#: src/methods/s3.php:
|
5585 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: src/methods/s3.php:
|
5589 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: src/methods/s3.php:
|
5593 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: src/methods/s3.php:
|
5597 |
msgid "%s chunk %s: upload failed"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: src/methods/s3.php:
|
5601 |
msgid "%s error: file %s was shortened unexpectedly"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: src/methods/s3.php:
|
5605 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5606 |
msgstr ""
|
5607 |
|
@@ -5626,32 +5630,32 @@ msgid "Failure: No container details were given."
|
|
5626 |
msgstr ""
|
5627 |
|
5628 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5629 |
-
#: src/addons/webdav.php:
|
5630 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5631 |
msgid "Username"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5635 |
-
#: src/methods/s3.php:
|
5636 |
msgid "API key"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5640 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5641 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5642 |
-
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:
|
5643 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5644 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5645 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5646 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5647 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5648 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5649 |
-
#: src/methods/s3.php:
|
5650 |
msgid "Failure: No %s was given."
|
5651 |
msgstr ""
|
5652 |
|
5653 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5654 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5655 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5656 |
msgstr ""
|
5657 |
|
@@ -5686,7 +5690,7 @@ msgstr ""
|
|
5686 |
msgid "Test %s Settings"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: src/class-updraftplus.php:
|
5690 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5691 |
msgid "Error opening local file: Failed to download"
|
5692 |
msgstr ""
|
@@ -5698,7 +5702,7 @@ msgstr ""
|
|
5698 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5699 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5700 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5701 |
-
#: src/methods/s3.php:
|
5702 |
msgid "%s Error: Failed to upload"
|
5703 |
msgstr ""
|
5704 |
|
@@ -5724,34 +5728,34 @@ msgstr ""
|
|
5724 |
msgid "Authenticate with Google"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: src/addons/googlecloud.php:
|
5728 |
#: src/methods/googledrive.php:1196
|
5729 |
msgid "Client Secret"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
-
#: src/addons/googlecloud.php:
|
5733 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/addons/googlecloud.php:
|
5737 |
#: src/methods/googledrive.php:1192
|
5738 |
msgid "Client ID"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: src/addons/googlecloud.php:
|
5742 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: src/addons/googlecloud.php:
|
5746 |
msgid "Select 'Web Application' as the application type."
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: src/addons/googlecloud.php:
|
5750 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5754 |
-
#: src/addons/googlecloud.php:
|
5755 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5756 |
#: src/methods/googledrive.php:558
|
5757 |
msgid "Account is not authorized."
|
@@ -5771,21 +5775,21 @@ msgstr ""
|
|
5771 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: src/addons/googlecloud.php:
|
5775 |
#: src/methods/googledrive.php:441
|
5776 |
msgid "you have authenticated your %s account."
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: src/addons/googlecloud.php:
|
5780 |
-
#: src/addons/onedrive.php:
|
5781 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5782 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5783 |
-
#: src/methods/s3.php:
|
5784 |
msgid "Success"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: src/addons/onedrive.php:
|
5788 |
-
#: src/methods/dropbox.php:
|
5789 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5790 |
msgstr ""
|
5791 |
|
@@ -5817,58 +5821,58 @@ msgid "You need to re-authenticate with %s, as your existing credentials are not
|
|
5817 |
msgstr ""
|
5818 |
|
5819 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5820 |
-
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:
|
5821 |
-
#: src/restorer.php:
|
5822 |
msgid "OK"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: src/restorer.php:
|
5826 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: src/addons/migrator.php:1285, src/restorer.php:
|
5830 |
msgid "the database query being run was:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: src/restorer.php:
|
5834 |
msgid "will restore as:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: src/class-updraftplus.php:
|
5838 |
-
#: src/restorer.php:
|
5839 |
msgid "Old table prefix:"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5843 |
-
#: src/backup.php:1099, src/class-updraftplus.php:
|
5844 |
msgid "Backup of:"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: src/restorer.php:
|
5848 |
msgid "Failed to open database file"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: src/restorer.php:
|
5852 |
msgid "Failed to find database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: src/restorer.php:
|
5856 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: src/restorer.php:
|
5860 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: src/restorer.php:
|
5864 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: src/restorer.php:
|
5868 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: src/restorer.php:
|
5872 |
msgid "Failed to create a temporary directory"
|
5873 |
msgstr ""
|
5874 |
|
@@ -5912,19 +5916,19 @@ msgstr ""
|
|
5912 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: src/admin.php:
|
5916 |
msgid "Could not find one of the files for restoration"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: src/admin.php:
|
5920 |
msgid "Error message"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: src/admin.php:
|
5924 |
msgid "The backup records do not contain information about the proper size of this file."
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/admin.php:
|
5928 |
msgid "Archive is expected to be size:"
|
5929 |
msgstr ""
|
5930 |
|
@@ -5965,7 +5969,7 @@ msgid "Your web server's PHP/Curl installation does not support https access. Co
|
|
5965 |
msgstr ""
|
5966 |
|
5967 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5968 |
-
#: src/methods/openstack-base.php:571, src/methods/s3.php:
|
5969 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5970 |
msgstr ""
|
5971 |
|
@@ -6253,7 +6257,7 @@ msgstr ""
|
|
6253 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6254 |
msgstr ""
|
6255 |
|
6256 |
-
#: src/class-updraftplus.php:
|
6257 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6258 |
msgstr ""
|
6259 |
|
@@ -6306,10 +6310,10 @@ msgstr ""
|
|
6306 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6307 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6308 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6309 |
-
#: src/addons/sftp.php:837, src/addons/webdav.php:
|
6310 |
-
#: src/admin.php:680, src/admin.php:
|
6311 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6312 |
-
#: src/methods/updraftvault.php:522, src/restorer.php:
|
6313 |
msgid "Error:"
|
6314 |
msgstr ""
|
6315 |
|
@@ -6383,14 +6387,14 @@ msgstr ""
|
|
6383 |
|
6384 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6385 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6386 |
-
#: src/admin.php:3682, src/admin.php:
|
6387 |
#: src/includes/class-wpadmin-commands.php:147,
|
6388 |
-
#: src/includes/class-wpadmin-commands.php:
|
6389 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6390 |
msgid "Database"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: src/admin.php:311, src/admin.php:
|
6394 |
msgid "Files"
|
6395 |
msgstr ""
|
6396 |
|
@@ -6442,7 +6446,7 @@ msgstr ""
|
|
6442 |
msgid "UpdraftPlus.Com"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: src/admin.php:
|
6446 |
msgid "Your settings have been wiped."
|
6447 |
msgstr ""
|
6448 |
|
@@ -6503,11 +6507,11 @@ msgid "Download failed"
|
|
6503 |
msgstr ""
|
6504 |
|
6505 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6506 |
-
#: src/class-updraftplus.php:
|
6507 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6508 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6509 |
-
#: src/methods/stream-base.php:220, src/restorer.php:
|
6510 |
-
#: src/restorer.php:
|
6511 |
msgid "Error"
|
6512 |
msgstr ""
|
6513 |
|
@@ -6548,7 +6552,7 @@ msgstr ""
|
|
6548 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6549 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6550 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6551 |
-
#: src/methods/s3.php:
|
6552 |
#: src/methods/updraftvault.php:301,
|
6553 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6554 |
#: src/udaddons/updraftplus-addons.php:253
|
@@ -6580,22 +6584,22 @@ msgstr ""
|
|
6580 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
-
#: src/addons/azure.php:
|
6584 |
-
#: src/methods/googledrive.php:1082, src/methods/s3.php:
|
6585 |
msgid "File not found"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
-
#: src/class-updraftplus.php:
|
6589 |
msgid "The decryption key used:"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: src/class-updraftplus.php:
|
6593 |
-
#: src/restorer.php:
|
6594 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6595 |
msgstr ""
|
6596 |
|
6597 |
-
#: src/class-updraftplus.php:
|
6598 |
-
#: src/restorer.php:
|
6599 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6600 |
msgstr ""
|
6601 |
|
@@ -6603,11 +6607,11 @@ msgstr ""
|
|
6603 |
msgid "Could not open the backup file for writing"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: src/class-updraftplus.php:
|
6607 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: src/class-updraftplus.php:
|
6611 |
msgid "Could not read the directory"
|
6612 |
msgstr ""
|
6613 |
|
@@ -6619,11 +6623,11 @@ msgstr ""
|
|
6619 |
msgid "WordPress backup is complete"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
-
#: src/class-updraftplus.php:
|
6623 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: src/class-updraftplus.php:
|
6627 |
msgid "The backup apparently succeeded and is now complete"
|
6628 |
msgstr ""
|
6629 |
|
@@ -6631,23 +6635,23 @@ msgstr ""
|
|
6631 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: src/class-updraftplus.php:
|
6635 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: src/class-updraftplus.php:
|
6639 |
msgid "Others"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: src/addons/multisite.php:465, src/class-updraftplus.php:
|
6643 |
msgid "Uploads"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: src/class-updraftplus.php:
|
6647 |
msgid "Themes"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: src/class-updraftplus.php:
|
6651 |
msgid "Plugins"
|
6652 |
msgstr ""
|
6653 |
|
11 |
"Language: es_CO\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/restorer.php:188
|
43 |
+
msgid "Failed to read from the working directory."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/restorer.php:187
|
47 |
+
msgid "Failed to find a manifest file in the backup."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/restorer.php:186
|
51 |
+
msgid "Failed to read the manifest file from backup."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/includes/class-wpadmin-commands.php:207
|
55 |
+
msgid "Select your incremental restore point"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: src/addons/morefiles.php:73
|
59 |
msgid "(None configured)"
|
60 |
msgstr ""
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: src/admin.php:4602
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: src/admin.php:4598
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
135 |
msgid "remote site"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: src/addons/backblaze.php:475
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: src/restorer.php:2028
|
143 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
144 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
+
#: src/class-updraftplus.php:4411
|
149 |
msgid "Your chosen replacement collation"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: src/class-updraftplus.php:4388
|
153 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: src/class-updraftplus.php:4388
|
157 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
158 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
159 |
msgstr[0] ""
|
167 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: src/addons/azure.php:631
|
171 |
msgid "%s Prefix"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: src/addons/azure.php:626
|
175 |
msgid "%s Container"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/addons/azure.php:621
|
179 |
msgid "%s Key"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: src/addons/azure.php:617
|
183 |
msgid "%s Account Name"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: src/addons/googlecloud.php:692
|
187 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: src/addons/googlecloud.php:690
|
191 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
192 |
msgstr ""
|
193 |
|
217 |
msgstr[0] ""
|
218 |
msgstr[1] ""
|
219 |
|
220 |
+
#: src/restorer.php:1990
|
221 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: src/class-updraftplus.php:4364
|
225 |
msgid "Your chosen character set to use instead:"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4354
|
229 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4354
|
233 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
234 |
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."
|
235 |
msgstr[0] ""
|
283 |
msgid "Please enter a valid URL e.g http://example.com"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: src/addons/backblaze.php:633
|
287 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/addons/backblaze.php:632
|
291 |
msgid "some/path"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: src/addons/backblaze.php:632
|
295 |
msgid "Bucket name"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: src/addons/backblaze.php:631
|
299 |
msgid "Backup path"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: src/addons/backblaze.php:626
|
303 |
msgid "Application key"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
307 |
msgid "here"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: src/addons/backblaze.php:621
|
311 |
msgid "Get these settings from %s, or sign up %s."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: src/addons/backblaze.php:431
|
315 |
msgid "Account Key"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
319 |
msgid "Account ID"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: src/class-updraftplus.php:4196
|
323 |
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."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
327 |
msgid "the migrator add-on"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: src/class-updraftplus.php:4194
|
331 |
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."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: src/class-updraftplus.php:4192
|
335 |
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."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: src/class-updraftplus.php:4187
|
339 |
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."
|
340 |
msgstr ""
|
341 |
|
355 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
359 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
360 |
+
#: src/class-updraftplus.php:2427
|
361 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
365 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
366 |
+
#: src/class-updraftplus.php:2420
|
367 |
msgid "A PHP exception (%s) has occurred: %s"
|
368 |
msgstr ""
|
369 |
|
419 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: src/admin.php:4808
|
423 |
msgid "Value"
|
424 |
msgstr ""
|
425 |
|
431 |
msgid "Encrypted login failed; trying non-encrypted"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: src/addons/azure.php:594
|
435 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
436 |
msgstr ""
|
437 |
|
443 |
msgid "Cloud Files"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: src/admin.php:4553
|
447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: src/admin.php:4512
|
451 |
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."
|
452 |
msgstr ""
|
453 |
|
456 |
msgid "UpdraftVault"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: src/includes/class-wpadmin-commands.php:513
|
460 |
msgid "archive"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: src/includes/class-wpadmin-commands.php:504
|
464 |
msgid "Extra database"
|
465 |
msgstr ""
|
466 |
|
504 |
msgid "Browse contents"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: src/restorer.php:1811
|
508 |
msgid "Skipped tables:"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: src/class-updraftplus.php:4476
|
512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
513 |
msgstr ""
|
514 |
|
717 |
msgid "Recommended: optimize your database with WP-Optimize."
|
718 |
msgstr ""
|
719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
721 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
722 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
764 |
msgid "Europe (Ireland)"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr ""
|
976 |
msgid "Export / import settings"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: src/restorer.php:2030
|
980 |
msgid "Processing table (%s)"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: src/restorer.php:1777
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr ""
|
986 |
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/methods/dropbox.php:785
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/methods/dropbox.php:631
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr ""
|
998 |
|
1060 |
msgid "US East (Ohio)"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/addons/onedrive.php:1051
|
1064 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/addons/onedrive.php:700
|
1068 |
msgid "Account is not authorized (%s)."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1072 |
msgid "Your IP address:"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1076 |
#: src/udaddons/updraftplus-addons.php:887
|
1077 |
msgid "To remove any block, please go here."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr ""
|
1083 |
|
1105 |
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."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: src/addons/webdav.php:216
|
1109 |
msgid "Path"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: src/addons/webdav.php:211
|
1113 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: src/addons/webdav.php:203
|
1117 |
msgid "Enter any path in the field below."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: src/addons/webdav.php:203
|
1121 |
msgid "A host name cannot contain a slash."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: src/addons/webdav.php:178
|
1125 |
msgid "Protocol (SSL or not)"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: src/addons/webdav.php:173
|
1129 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1130 |
msgstr ""
|
1131 |
|
1133 |
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."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: src/methods/s3.php:1129
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: src/methods/s3.php:126
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr ""
|
1143 |
|
1243 |
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."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: src/class-updraftplus.php:1835
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr ""
|
1249 |
|
1255 |
msgid "Now"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr ""
|
1261 |
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: src/admin.php:4548
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr "Tus opciones han sido guardadas"
|
1371 |
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: src/restorer.php:1800
|
1435 |
msgid "Uploads URL:"
|
1436 |
msgstr ""
|
1437 |
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: src/class-updraftplus.php:4260
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: src/class-updraftplus.php:4260
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr ""
|
1453 |
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: src/admin.php:4086
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr ""
|
1527 |
|
1553 |
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)."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: src/admin.php:4422
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/admin.php:4420
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/admin.php:4420
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/admin.php:4420
|
1569 |
msgid "settings"
|
1570 |
msgstr "Ajustes"
|
1571 |
|
1572 |
+
#: src/admin.php:4420
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr ""
|
1575 |
|
1626 |
msgid "Advanced Tools"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: src/addons/googlecloud.php:1049
|
1630 |
msgid "Bucket location"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: src/addons/googlecloud.php:1044
|
1634 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1638 |
msgid "This setting applies only when a new bucket is being created."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: src/addons/googlecloud.php:1033
|
1642 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: src/addons/googlecloud.php:979
|
1646 |
msgid "Do not confuse %s with %s - they are separate things."
|
1647 |
msgstr ""
|
1648 |
|
1704 |
msgid "Standard"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: src/addons/azure.php:632
|
1708 |
msgid "container"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: src/addons/azure.php:632
|
1712 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: src/addons/azure.php:631
|
1716 |
msgid "optional"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: src/addons/azure.php:627
|
1720 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: src/addons/azure.php:627
|
1724 |
msgid "Enter the path of the %s you wish to use here."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/addons/azure.php:618
|
1728 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1732 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1733 |
msgid "Azure"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: src/addons/azure.php:598
|
1737 |
msgid "Create Azure credentials in your Azure developer console."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: src/addons/azure.php:562
|
1741 |
msgid "Could not create the container"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: src/addons/azure.php:413
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: src/class-updraftplus.php:2926
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr ""
|
1751 |
|
1773 |
msgid "Not installed"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1777 |
msgid "Storage class"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: src/addons/googlecloud.php:1033
|
1781 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: src/addons/googlecloud.php:1033
|
1785 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: src/addons/googlecloud.php:1032
|
1789 |
msgid "Bucket"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: src/addons/googlecloud.php:1028
|
1793 |
msgid "Otherwise, you can leave it blank."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: src/addons/googlecloud.php:1028
|
1797 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: src/addons/googlecloud.php:1028
|
1801 |
msgid "Enter the ID of the %s project you wish to use here."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: src/addons/googlecloud.php:991
|
1805 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: src/addons/googlecloud.php:902
|
1809 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: src/addons/googlecloud.php:1026
|
1813 |
msgid "Project ID"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: src/addons/googlecloud.php:759
|
1817 |
msgid "You must save and authenticate before you can test your settings."
|
1818 |
msgstr ""
|
1819 |
|
1822 |
msgstr ""
|
1823 |
|
1824 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1825 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1826 |
msgid "You do not have access to this bucket."
|
1827 |
msgstr ""
|
1828 |
|
1829 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1830 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1831 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1832 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1833 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1834 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1835 |
msgid "Google Cloud"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1839 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1840 |
+
#: src/addons/googlecloud.php:941
|
1841 |
msgid "%s Service Exception."
|
1842 |
msgstr ""
|
1843 |
|
1845 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: src/restorer.php:827
|
1849 |
msgid "Deferring..."
|
1850 |
msgstr ""
|
1851 |
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: src/restorer.php:2354
|
1918 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: src/restorer.php:2354
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr ""
|
1924 |
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: src/class-updraftplus.php:4333
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: src/class-updraftplus.php:4333
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr ""
|
1936 |
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2112 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr ""
|
2115 |
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr ""
|
2147 |
|
|
|
|
|
|
|
|
|
2148 |
#: src/addons/migrator.php:2405
|
2149 |
msgid "Your new key:"
|
2150 |
msgstr ""
|
2350 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: src/restorer.php:2356
|
2354 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2355 |
msgstr ""
|
2356 |
|
2382 |
msgid "You have made changes to your settings, and not saved."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: src/addons/onedrive.php:1111
|
2386 |
msgid "N.B. %s is not case-sensitive."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: src/addons/onedrive.php:1101
|
2390 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2394 |
+
#: src/addons/onedrive.php:1074
|
2395 |
msgid "For longer help, including screenshots, follow this link."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: src/addons/onedrive.php:1067
|
2399 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: src/addons/onedrive.php:1059
|
2403 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: src/addons/azure.php:592
|
2407 |
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)."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2411 |
msgid "%s authorisation failed:"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2415 |
+
#: src/addons/onedrive.php:1104
|
2416 |
msgid "OneDrive"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: src/addons/onedrive.php:691
|
2420 |
msgid "Please re-authorize the connection to your %s account."
|
2421 |
msgstr ""
|
2422 |
|
2424 |
msgid "configure it here"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2428 |
msgid "To remove the block, please go here."
|
2429 |
msgstr ""
|
2430 |
|
2569 |
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)"
|
2570 |
msgstr "Si tienes un usuario administrador AWS, entonces puedes usar este asistente para crear rápidamente un nuevo usuario AWS (IAM) con acceso a sólo este bucket (en lugar de tu cuenta entera)"
|
2571 |
|
2572 |
+
#: src/methods/s3.php:910
|
2573 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2574 |
msgstr "Para crear un nuevo sub-usuario IAM y la llave de acceso que sólo tiene acceso a este bucket, use este complemento."
|
2575 |
|
2576 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2577 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2578 |
msgstr "Para soporte personal, la posibilidad de copiar sitios, mas destinos de almacenamiento, respaldos encriptados para seguridad, varios destinos de respaldo, mejores reportes, sin anuncios y mucho más, verifique las versión premium de UpdraftPlus - el plugin más popular del mundo para respaldos."
|
2579 |
|
2580 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2581 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2582 |
msgstr "Noticias UpdraftPlus, material de entrenamiento de alta calidad para desarrolladores de Wordpress y propietarios de sitios, y noticias generales de Wordpress. Puedes cancelar la suscripción en cualquier momento."
|
2583 |
|
2584 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2585 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2586 |
#: src/udaddons/updraftplus-addons.php:887
|
2587 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2588 |
msgstr "Este mayormente significa que compartes un servidor web con un sitio hhacekado que ha sido utilizado en ataques previos."
|
2589 |
|
2590 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2591 |
#: src/udaddons/updraftplus-addons.php:887
|
2592 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2593 |
msgstr "Parece que la dirección IP de tu servidor web (%s) está bloqueada."
|
2594 |
|
2595 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2596 |
#: src/udaddons/updraftplus-addons.php:887
|
2597 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2598 |
msgstr "UpdraftPlus.com ha contestado con \"Acceso Denegado\""
|
2599 |
|
2600 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2601 |
msgid "Premium WooCommerce plugins"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2605 |
msgid "Free two-factor security plugin"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2609 |
+
msgid "More quality plugins"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2613 |
msgid "Go to the shop."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2617 |
msgid "Compare with the free version"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
|
2621 |
#: src/templates/wp-admin/settings/tab-addons.php:37,
|
2622 |
#: src/templates/wp-admin/settings/tab-addons.php:273
|
2623 |
msgid "UpdraftPlus Premium"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
|
|
|
|
|
|
|
|
2627 |
msgid "Free Newsletter"
|
2628 |
msgstr "Boletín de noticias gratis"
|
2629 |
|
|
|
|
|
|
|
|
|
2630 |
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
|
2631 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
|
2632 |
msgid "Dismiss (for %s months)"
|
2633 |
msgstr "Descartar (por %s meses)"
|
2634 |
|
2669 |
msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: src/methods/s3.php:177, src/methods/s3.php:178, src/methods/s3.php:179,
|
2673 |
+
#: src/methods/s3.php:187, src/methods/s3.php:188, src/methods/s3.php:189
|
2674 |
msgid "%s Error: Failed to initialise"
|
2675 |
msgstr ""
|
2676 |
|
2715 |
msgid "Manual"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: src/restorer.php:2333
|
2719 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
2720 |
msgid "An error (%s) occurred:"
|
2721 |
msgstr ""
|
2856 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: src/class-updraftplus.php:4249
|
2860 |
msgid "Backup label:"
|
2861 |
msgstr ""
|
2862 |
|
2880 |
msgid "Your label for this backup (optional)"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: src/addons/googlecloud.php:985, src/methods/googledrive.php:1162
|
2884 |
msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
|
2885 |
msgstr ""
|
2886 |
|
2900 |
msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: src/class-updraftplus.php:4268
|
2904 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: src/class-updraftplus.php:4268
|
2908 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
2909 |
msgstr ""
|
2910 |
|
2941 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: src/class-updraftplus.php:4241
|
2945 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4241
|
2949 |
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."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4241
|
2953 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/class-updraftplus.php:4241
|
2957 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
2958 |
msgstr ""
|
2959 |
|
2998 |
msgid "Start backup"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
3002 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3003 |
msgstr ""
|
3004 |
|
3034 |
msgid "Memory limit"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: src/class-updraftplus.php:4682, src/restorer.php:1608
|
3038 |
msgid "restoration"
|
3039 |
msgstr ""
|
3040 |
|
3097 |
msgid "search term"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: src/restorer.php:2361
|
3101 |
msgid "Too many database errors have occurred - aborting"
|
3102 |
msgstr ""
|
3103 |
|
3133 |
msgid "Free disk space in account:"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: src/admin.php:4519, src/templates/wp-admin/settings/tab-status.php:27
|
3137 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
3138 |
msgstr ""
|
3139 |
|
3228 |
msgid "user"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: src/class-updraftplus.php:1832
|
3232 |
msgid "External database (%s)"
|
3233 |
msgstr ""
|
3234 |
|
3240 |
msgid "failed to access parent folder"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: src/addons/googlecloud.php:698, src/addons/onedrive.php:857,
|
3244 |
+
#: src/addons/onedrive.php:868, src/methods/googledrive.php:421
|
3245 |
msgid "However, subsequent access attempts failed:"
|
3246 |
msgstr ""
|
3247 |
|
3277 |
msgid "use UpdraftPlus Premium"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: src/class-updraftplus.php:4095
|
3281 |
msgid "Decryption failed. The database file is encrypted."
|
3282 |
msgstr ""
|
3283 |
|
3285 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: src/restorer.php:1876, src/restorer.php:2302, src/restorer.php:2343,
|
3289 |
+
#: src/restorer.php:2356
|
3290 |
msgid "An error occurred on the first %s command - aborting run"
|
3291 |
msgstr ""
|
3292 |
|
3306 |
msgid "In %s, path names are case sensitive."
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: src/addons/azure.php:632, src/addons/google-enhanced.php:76,
|
3310 |
+
#: src/addons/onedrive.php:1111
|
3311 |
msgid "If you leave it blank, then the backup will be placed in the root of your %s"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1033,
|
3315 |
+
#: src/addons/onedrive.php:1111
|
3316 |
msgid "e.g. %s"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1111
|
3320 |
msgid "Enter the path of the %s folder you wish to use here."
|
3321 |
msgstr ""
|
3322 |
|
3360 |
msgid "Failed to upload %s"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
3364 |
msgid "Success:"
|
3365 |
msgstr ""
|
3366 |
|
3368 |
msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: src/addons/onedrive.php:1124, src/methods/dropbox.php:610
|
3372 |
msgid "(You appear to be already authenticated)."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: src/methods/dropbox.php:606
|
3376 |
msgid "Dropbox"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: src/addons/onedrive.php:1117, src/methods/dropbox.php:606
|
3380 |
msgid "Authenticate with %s"
|
3381 |
msgstr ""
|
3382 |
|
3407 |
msgid "%s error - failed to access the container"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: src/addons/googlecloud.php:1102, src/addons/onedrive.php:1159,
|
3411 |
+
#: src/methods/dropbox.php:663, src/methods/googledrive.php:1248
|
3412 |
msgid "Account holder's name: %s."
|
3413 |
msgstr ""
|
3414 |
|
3424 |
msgid "<strong>This is NOT a folder name</strong>."
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1109,
|
3428 |
#: src/methods/googledrive.php:1207, src/methods/googledrive.php:1218
|
3429 |
msgid "Folder"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: src/addons/googlecloud.php:296, src/addons/onedrive.php:428,
|
3433 |
#: src/methods/googledrive.php:1122
|
3434 |
msgid "%s download: failed: file not found"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: src/addons/googlecloud.php:718, src/methods/googledrive.php:441
|
3438 |
msgid "Name: %s."
|
3439 |
msgstr ""
|
3440 |
|
3473 |
msgid "Failed to unpack the archive"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: src/class-updraftplus.php:1356
|
3477 |
msgid "Error - failed to download the file"
|
3478 |
msgstr ""
|
3479 |
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: src/addons/migrator.php:2390, src/addons/sftp.php:451, src/admin.php:729,
|
3501 |
+
#: src/admin.php:4808
|
3502 |
msgid "Key"
|
3503 |
msgstr ""
|
3504 |
|
3523 |
msgstr ""
|
3524 |
|
3525 |
#: src/addons/importer.php:276, src/admin.php:3722,
|
3526 |
+
#: src/includes/class-backup-history.php:349
|
3527 |
msgid "Backup created by: %s."
|
3528 |
msgstr ""
|
3529 |
|
3555 |
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."
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: src/admin.php:694, src/includes/class-backup-history.php:356
|
3559 |
msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
|
3560 |
msgstr ""
|
3561 |
|
3564 |
msgstr ""
|
3565 |
|
3566 |
#: src/admin.php:693, src/admin.php:694,
|
3567 |
+
#: src/includes/class-backup-history.php:356
|
3568 |
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))."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#: src/admin.php:3725, src/includes/class-wpadmin-commands.php:152,
|
3572 |
+
#: src/restorer.php:1577
|
3573 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: src/restorer.php:869, src/restorer.php:917
|
3577 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: src/restorer.php:724
|
3581 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
3582 |
msgstr ""
|
3583 |
|
3589 |
msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: src/addons/backblaze.php:557, src/methods/cloudfiles.php:234,
|
3593 |
#: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
|
3594 |
msgid "No settings were found"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: src/includes/class-backup-history.php:524
|
3598 |
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."
|
3599 |
msgstr ""
|
3600 |
|
3602 |
msgid "Rescanning remote and local storage for backup sets..."
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049,
|
3606 |
#: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
|
3607 |
msgid "(Read more)"
|
3608 |
msgstr ""
|
3620 |
msgid "Remove"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: src/methods/s3.php:861
|
3624 |
msgid "Other %s FAQs."
|
3625 |
msgstr ""
|
3626 |
|
3632 |
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."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330,
|
3636 |
+
#: src/restorer.php:1608
|
3637 |
msgid "Your hosting company must enable these functions before %s can work."
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: src/class-updraftplus.php:4682, src/methods/ftp.php:330
|
3641 |
msgid "Your web server's PHP installation has these functions disabled: %s."
|
3642 |
msgstr ""
|
3643 |
|
3653 |
msgid "regular non-encrypted FTP"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: src/restorer.php:1784
|
3657 |
msgid "Backup created by:"
|
3658 |
msgstr ""
|
3659 |
|
3707 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: src/class-updraftplus.php:4732
|
3711 |
msgid "The attempt to undo the double-compression succeeded."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: src/class-updraftplus.php:4709, src/class-updraftplus.php:4730
|
3715 |
msgid "The attempt to undo the double-compression failed."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: src/class-updraftplus.php:4702
|
3719 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: src/includes/class-wpadmin-commands.php:313
|
3723 |
msgid "Constants"
|
3724 |
msgstr ""
|
3725 |
|
3768 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: src/restorer.php:717
|
3772 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
3773 |
msgstr ""
|
3774 |
|
3789 |
msgid "Messages:"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: src/restorer.php:2196
|
3793 |
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"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: src/restorer.php:490
|
3797 |
msgid "The directory does not exist"
|
3798 |
msgstr ""
|
3799 |
|
3962 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: src/admin.php:679, src/admin.php:4232
|
3966 |
msgid "Error data:"
|
3967 |
msgstr ""
|
3968 |
|
3974 |
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."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: src/restorer.php:1851
|
3978 |
msgid "Split line to avoid exceeding maximum packet size"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: src/restorer.php:1731
|
3982 |
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)"
|
3983 |
msgstr ""
|
3984 |
|
4010 |
msgid "Email reports"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: src/class-updraftplus.php:1840, src/class-updraftplus.php:1845
|
4014 |
msgid "%s checksum: %s"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/class-updraftplus.php:1813, src/class-updraftplus.php:1815
|
4018 |
msgid "files: %s"
|
4019 |
msgstr ""
|
4020 |
|
4067 |
msgid "%d errors, %d warnings"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: src/addons/onedrive.php:814, src/methods/dropbox.php:748,
|
4071 |
+
#: src/methods/dropbox.php:770
|
4072 |
msgid "%s authentication"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: src/addons/onedrive.php:814, src/class-updraftplus.php:529,
|
4076 |
+
#: src/methods/dropbox.php:240, src/methods/dropbox.php:748,
|
4077 |
+
#: src/methods/dropbox.php:770, src/methods/dropbox.php:785,
|
4078 |
+
#: src/methods/dropbox.php:798, src/methods/dropbox.php:941
|
4079 |
msgid "%s error: %s"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: src/addons/googlecloud.php:978, src/methods/dropbox.php:575
|
4083 |
msgid "%s logo"
|
4084 |
msgstr ""
|
4085 |
|
4087 |
msgid "%s did not return the expected response - check your log file for more details"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: src/methods/s3.php:307
|
4091 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
|
4092 |
msgstr ""
|
4093 |
|
4108 |
msgid "For more reporting features, use the Reporting add-on."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: src/class-updraftplus.php:4176
|
4112 |
msgid "(version: %s)"
|
4113 |
msgstr ""
|
4114 |
|
4249 |
msgid "Reporting"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: src/admin.php:4805
|
4253 |
msgid "Options (raw)"
|
4254 |
msgstr ""
|
4255 |
|
4257 |
msgid "Send a report only when there are warnings/errors"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: src/restorer.php:1795
|
4261 |
msgid "Content URL:"
|
4262 |
msgstr ""
|
4263 |
|
4401 |
msgid "Your web-server does not have the %s module installed."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: src/addons/googlecloud.php:1068, src/methods/googledrive.php:1237
|
4405 |
msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
|
4406 |
msgstr ""
|
4407 |
|
4421 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: src/restorer.php:1789
|
4425 |
msgid "Site home:"
|
4426 |
msgstr ""
|
4427 |
|
4437 |
msgid "Remember this choice for next time (you will still have the chance to change it)"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: src/addons/azure.php:420, src/methods/stream-base.php:144,
|
4441 |
#: src/methods/stream-base.php:149
|
4442 |
msgid "Upload failed"
|
4443 |
msgstr ""
|
4581 |
msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
+
#: src/restorer.php:702
|
4585 |
msgid "file"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: src/restorer.php:695
|
4589 |
msgid "folder"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: src/restorer.php:695, src/restorer.php:702
|
4593 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: src/class-updraftplus.php:2933
|
4597 |
msgid "The backup has not finished; a resumption is scheduled"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: src/class-updraftplus.php:2117
|
4601 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: src/addons/onedrive.php:966,
|
4605 |
#: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
|
4606 |
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)."
|
4607 |
msgstr ""
|
4686 |
msgid "Support"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: src/class-updraftplus.php:4481
|
4690 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: src/class-updraftplus.php:4473
|
4694 |
msgid "This database backup is missing core WordPress tables: %s"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/class-updraftplus.php:4234
|
4698 |
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."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: src/class-updraftplus.php:4233, src/class-updraftplus.php:4240
|
4702 |
msgid "%s version: %s"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: src/class-updraftplus.php:4112
|
4706 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
4707 |
msgstr ""
|
4708 |
|
4787 |
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?"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: src/includes/class-wpadmin-commands.php:225
|
4791 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: src/includes/class-wpadmin-commands.php:223
|
4795 |
msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: src/includes/class-wpadmin-commands.php:221
|
4799 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
4800 |
msgstr ""
|
4801 |
|
4835 |
msgid "WordPress root directory server path: %s"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: src/methods/dreamobjects.php:88, src/methods/s3generic.php:104
|
4839 |
msgid "%s end-point"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: src/methods/s3.php:838
|
4843 |
msgid "... and many more!"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
|
4847 |
+
#: src/methods/s3generic.php:83
|
4848 |
msgid "S3 (Compatible)"
|
4849 |
msgstr ""
|
4850 |
|
4852 |
msgid "File is not locally present - needs retrieving from remote storage"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: src/admin.php:4083
|
4856 |
msgid "Looking for %s archive: file name: %s"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: src/admin.php:4044
|
4860 |
msgid "Final checks"
|
4861 |
msgstr ""
|
4862 |
|
4884 |
msgid "Processing files - please wait..."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: src/admin.php:4234,
|
4888 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27
|
4889 |
msgid "Please consult this FAQ for help on what to do about it."
|
4890 |
msgstr ""
|
4893 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: src/class-updraftplus.php:4120
|
4897 |
msgid "Failed to open database file."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
+
#: src/admin.php:4770
|
4901 |
msgid "Known backups (raw)"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: src/restorer.php:1009
|
4905 |
msgid "Files found:"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: src/restorer.php:1977
|
4909 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: src/admin.php:4103
|
4913 |
msgid "file is size:"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: src/addons/googlecloud.php:1028, src/addons/migrator.php:457,
|
4917 |
#: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:971,
|
4918 |
+
#: src/admin.php:2450, src/backup.php:3367, src/class-updraftplus.php:4354,
|
4919 |
+
#: src/class-updraftplus.php:4354, src/updraftplus.php:156
|
4920 |
msgid "Go here for more information."
|
4921 |
msgstr ""
|
4922 |
|
4924 |
msgid "Some files are still downloading or being processed - please wait."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: src/class-updraftplus.php:4203, src/class-updraftplus.php:4224
|
4928 |
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."
|
4929 |
msgstr ""
|
4930 |
|
4968 |
msgid "Error - no such file exists at %s"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
|
4972 |
#: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
|
4973 |
#: src/methods/googledrive.php:1082, src/methods/openstack-base.php:455,
|
4974 |
#: src/methods/stream-base.php:298, src/methods/stream-base.php:305,
|
4997 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:555,
|
4998 |
#: src/admin.php:2151, src/admin.php:2172, src/admin.php:2180,
|
4999 |
#: src/class-updraftplus.php:1008, src/class-updraftplus.php:1014,
|
5000 |
+
#: src/class-updraftplus.php:4093, src/class-updraftplus.php:4095,
|
5001 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4264,
|
5002 |
+
#: src/class-updraftplus.php:4333, src/methods/googledrive.php:382,
|
5003 |
+
#: src/methods/s3.php:336
|
5004 |
msgid "Error: %s"
|
5005 |
msgstr ""
|
5006 |
|
5040 |
msgid "Warnings encountered:"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: src/class-updraftplus.php:2921
|
5044 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5045 |
msgstr ""
|
5046 |
|
5080 |
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."
|
5081 |
msgstr ""
|
5082 |
|
5083 |
+
#: src/methods/s3.php:847
|
5084 |
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."
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: src/methods/s3.php:1150
|
5088 |
msgid "Please check your access credentials."
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: src/addons/s3-enhanced.php:211, src/methods/s3.php:1128
|
5092 |
msgid "The error reported by %s was:"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: src/restorer.php:1518
|
5096 |
msgid "Please supply the requested information, and then continue."
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: src/class-updraftplus.php:4275, src/restorer.php:1825
|
5100 |
msgid "Site information:"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: src/restorer.php:1692
|
5104 |
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."
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: src/admin.php:2445, src/class-updraftplus.php:4268, src/restorer.php:2196
|
5108 |
msgid "Warning:"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/class-updraftplus.php:4257, src/class-updraftplus.php:4260,
|
5112 |
#: src/restorer.php:184
|
5113 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: src/admin.php:4071
|
5117 |
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."
|
5118 |
msgstr ""
|
5119 |
|
5189 |
msgid "News"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: src/admin.php:1556, src/includes/class-wpadmin-commands.php:490
|
5193 |
msgid "Backup set not found"
|
5194 |
msgstr ""
|
5195 |
|
5354 |
msgstr ""
|
5355 |
|
5356 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:246,
|
5357 |
+
#: src/addons/sftp.php:443, src/addons/webdav.php:193,
|
5358 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:356,
|
5359 |
#: src/udaddons/options.php:135
|
5360 |
msgid "Password"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
+
#: src/addons/sftp.php:429, src/addons/webdav.php:207
|
5364 |
msgid "Port"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
#: src/addons/moredatabase.php:244, src/addons/sftp.php:422,
|
5368 |
+
#: src/addons/webdav.php:199
|
5369 |
msgid "Host"
|
5370 |
msgstr ""
|
5371 |
|
5413 |
msgid "Over-write wp-config.php"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
+
#: src/addons/morefiles.php:149, src/includes/class-wpadmin-commands.php:507
|
5417 |
msgid "WordPress Core"
|
5418 |
msgstr ""
|
5419 |
|
5421 |
msgid "Failed: We were not able to place a file in that directory - please check your credentials."
|
5422 |
msgstr ""
|
5423 |
|
5424 |
+
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
5425 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:538, src/admin.php:3052,
|
5426 |
#: src/admin.php:3087, src/admin.php:3096, src/methods/addon-base-v2.php:299,
|
5427 |
#: src/methods/stream-base.php:353
|
5428 |
msgid "Failed"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: src/addons/webdav.php:169
|
5432 |
msgid "WebDAV URL"
|
5433 |
msgstr ""
|
5434 |
|
5479 |
msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: src/addons/onedrive.php:851, src/methods/dropbox.php:816
|
5483 |
msgid "Your %s account name: %s"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: src/methods/dropbox.php:806, src/methods/dropbox.php:828
|
5487 |
msgid "though part of the returned information was not as expected - your mileage may vary"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: src/methods/dropbox.php:801, src/methods/dropbox.php:803
|
5491 |
msgid "you have authenticated your %s account"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5495 |
msgid "there's an add-on for that."
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5499 |
msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5503 |
msgid "Backups are saved in"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: src/methods/dropbox.php:598, src/methods/dropbox.php:600
|
5507 |
msgid "Need to use sub-folders?"
|
5508 |
msgstr ""
|
5509 |
|
5516 |
msgid "You do not appear to be authenticated with Dropbox"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: src/methods/s3.php:1145
|
5520 |
msgid "The communication with %s was not encrypted."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: src/methods/s3.php:1143
|
5524 |
msgid "The communication with %s was encrypted."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: src/addons/googlecloud.php:839, src/methods/s3.php:1140
|
5528 |
msgid "We accessed the bucket, and were able to create files within it."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5532 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5533 |
msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
|
5537 |
+
#: src/methods/s3.php:1138, src/methods/s3.php:1150
|
5538 |
msgid "Failure"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: src/addons/backblaze.php:472, src/methods/s3.php:1126
|
5542 |
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)."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
#: src/addons/s3-enhanced.php:184, src/methods/openstack2.php:150,
|
5546 |
+
#: src/methods/s3.php:1120
|
5547 |
msgid "Region"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
|
5551 |
+
#: src/methods/s3.php:1102
|
5552 |
msgid "Failure: No bucket details were given."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: src/methods/s3.php:1080
|
5556 |
msgid "API secret"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: src/methods/s3.php:928
|
5560 |
msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: src/methods/s3.php:927
|
5564 |
msgid "%s location"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
+
#: src/methods/s3.php:923
|
5568 |
msgid "%s secret key"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
+
#: src/methods/s3.php:919
|
5572 |
msgid "%s access key"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: src/methods/s3.php:859
|
5576 |
msgid "If you see errors about SSL certificates, then please go here for help."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: src/methods/s3.php:857
|
5580 |
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."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: src/methods/s3.php:477, src/methods/s3.php:589, src/methods/s3.php:661,
|
5584 |
+
#: src/methods/s3.php:764
|
5585 |
msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
+
#: src/methods/s3.php:747, src/methods/s3.php:757, src/methods/s3.php:793
|
5589 |
msgid "%s Error: Failed to download %s. Check your permissions and credentials."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
+
#: src/methods/s3.php:455
|
5593 |
msgid "%s re-assembly error (%s): (see log file for more)"
|
5594 |
msgstr ""
|
5595 |
|
5596 |
+
#: src/methods/s3.php:451
|
5597 |
msgid "%s upload (%s): re-assembly failed (see log for more details)"
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: src/methods/s3.php:435
|
5601 |
msgid "%s chunk %s: upload failed"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: src/methods/s3.php:425
|
5605 |
msgid "%s error: file %s was shortened unexpectedly"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
+
#: src/methods/s3.php:403
|
5609 |
msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
|
5610 |
msgstr ""
|
5611 |
|
5630 |
msgstr ""
|
5631 |
|
5632 |
#: src/addons/moredatabase.php:245, src/addons/sftp.php:436,
|
5633 |
+
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
5634 |
#: src/methods/cloudfiles.php:525, src/methods/openstack2.php:158
|
5635 |
msgid "Username"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:520,
|
5639 |
+
#: src/methods/s3.php:1076
|
5640 |
msgid "API key"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
#: src/addons/migrator.php:304, src/addons/migrator.php:2043,
|
5644 |
#: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
|
5645 |
#: src/addons/moredatabase.php:86, src/addons/sftp.php:507,
|
5646 |
+
#: src/addons/sftp.php:511, src/addons/sftp.php:515, src/addons/webdav.php:253,
|
5647 |
#: src/admin.php:730, src/methods/addon-base-v2.php:291,
|
5648 |
#: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
|
5649 |
#: src/methods/cloudfiles.php:520, src/methods/cloudfiles.php:525,
|
5650 |
#: src/methods/ftp.php:412, src/methods/ftp.php:416,
|
5651 |
#: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
|
5652 |
#: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
|
5653 |
+
#: src/methods/s3.php:1076, src/methods/s3.php:1080
|
5654 |
msgid "Failure: No %s was given."
|
5655 |
msgstr ""
|
5656 |
|
5657 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5658 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5659 |
msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
|
5660 |
msgstr ""
|
5661 |
|
5690 |
msgid "Test %s Settings"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
5694 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:298
|
5695 |
msgid "Error opening local file: Failed to download"
|
5696 |
msgstr ""
|
5702 |
#: src/addons/sftp.php:136, src/addons/sftp.php:148,
|
5703 |
#: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
|
5704 |
#: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
|
5705 |
+
#: src/methods/s3.php:371, src/methods/s3.php:383, src/methods/s3.php:384
|
5706 |
msgid "%s Error: Failed to upload"
|
5707 |
msgstr ""
|
5708 |
|
5728 |
msgid "Authenticate with Google"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: src/addons/googlecloud.php:1021, src/addons/onedrive.php:1104,
|
5732 |
#: src/methods/googledrive.php:1196
|
5733 |
msgid "Client Secret"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: src/addons/googlecloud.php:1016, src/methods/googledrive.php:1193
|
5737 |
msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1100,
|
5741 |
#: src/methods/googledrive.php:1192
|
5742 |
msgid "Client ID"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5746 |
msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
+
#: src/addons/googlecloud.php:991, src/methods/googledrive.php:1169
|
5750 |
msgid "Select 'Web Application' as the application type."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: src/addons/googlecloud.php:989, src/methods/googledrive.php:1167
|
5754 |
msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
#: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
|
5758 |
+
#: src/addons/googlecloud.php:866, src/methods/googledrive.php:546,
|
5759 |
#: src/methods/googledrive.php:547, src/methods/googledrive.php:557,
|
5760 |
#: src/methods/googledrive.php:558
|
5761 |
msgid "Account is not authorized."
|
5775 |
msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: src/addons/googlecloud.php:718, src/addons/onedrive.php:889,
|
5779 |
#: src/methods/googledrive.php:441
|
5780 |
msgid "you have authenticated your %s account."
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
|
5784 |
+
#: src/addons/onedrive.php:889, src/addons/sftp.php:572,
|
5785 |
#: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:576,
|
5786 |
#: src/methods/googledrive.php:441, src/methods/openstack-base.php:530,
|
5787 |
+
#: src/methods/s3.php:1140, src/methods/stream-base.php:364
|
5788 |
msgid "Success"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: src/addons/onedrive.php:843, src/methods/dropbox.php:839,
|
5792 |
+
#: src/methods/dropbox.php:848, src/methods/googledrive.php:415
|
5793 |
msgid "Your %s quota usage: %s %% used, %s available"
|
5794 |
msgstr ""
|
5795 |
|
5821 |
msgstr ""
|
5822 |
|
5823 |
#: src/addons/migrator.php:1935, src/admin.php:1311, src/admin.php:3055,
|
5824 |
+
#: src/admin.php:3089, src/admin.php:3093, src/admin.php:4101,
|
5825 |
+
#: src/restorer.php:2437, src/restorer.php:2542
|
5826 |
msgid "OK"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: src/restorer.php:2431, src/restorer.php:2506
|
5830 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: src/addons/migrator.php:1285, src/restorer.php:2333
|
5834 |
msgid "the database query being run was:"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
+
#: src/restorer.php:2034
|
5838 |
msgid "will restore as:"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: src/class-updraftplus.php:4246, src/restorer.php:1807,
|
5842 |
+
#: src/restorer.php:1896, src/restorer.php:1922
|
5843 |
msgid "Old table prefix:"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
#: src/addons/reporting.php:70, src/addons/reporting.php:179,
|
5847 |
+
#: src/backup.php:1099, src/class-updraftplus.php:4176
|
5848 |
msgid "Backup of:"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: src/restorer.php:1614
|
5852 |
msgid "Failed to open database file"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: src/restorer.php:1593
|
5856 |
msgid "Failed to find database file"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: src/restorer.php:1570
|
5860 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: src/restorer.php:529
|
5864 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: src/restorer.php:524
|
5868 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: src/restorer.php:417
|
5872 |
msgid "Failed to write out the decrypted database to the filesystem"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: src/restorer.php:401
|
5876 |
msgid "Failed to create a temporary directory"
|
5877 |
msgstr ""
|
5878 |
|
5916 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: src/admin.php:4109, src/admin.php:4110
|
5920 |
msgid "Could not find one of the files for restoration"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: src/admin.php:4224
|
5924 |
msgid "Error message"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: src/admin.php:4106
|
5928 |
msgid "The backup records do not contain information about the proper size of this file."
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: src/admin.php:4098
|
5932 |
msgid "Archive is expected to be size:"
|
5933 |
msgstr ""
|
5934 |
|
5969 |
msgstr ""
|
5970 |
|
5971 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
5972 |
+
#: src/methods/openstack-base.php:571, src/methods/s3.php:851
|
5973 |
msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
|
5974 |
msgstr ""
|
5975 |
|
6257 |
msgid "Do read this helpful article of useful things to know before restoring."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
+
#: src/class-updraftplus.php:4206
|
6261 |
msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
|
6262 |
msgstr ""
|
6263 |
|
6310 |
#: src/addons/migrator.php:2051, src/addons/migrator.php:2061,
|
6311 |
#: src/addons/migrator.php:2066, src/addons/s3-enhanced.php:160,
|
6312 |
#: src/addons/s3-enhanced.php:165, src/addons/s3-enhanced.php:167,
|
6313 |
+
#: src/addons/sftp.php:837, src/addons/webdav.php:203, src/admin.php:87,
|
6314 |
+
#: src/admin.php:680, src/admin.php:4103, src/admin.php:4133,
|
6315 |
#: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
|
6316 |
+
#: src/methods/updraftvault.php:522, src/restorer.php:1523
|
6317 |
msgid "Error:"
|
6318 |
msgstr ""
|
6319 |
|
6387 |
|
6388 |
#: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
|
6389 |
#: src/addons/reporting.php:258, src/admin.php:315, src/admin.php:3602,
|
6390 |
+
#: src/admin.php:3682, src/admin.php:4187,
|
6391 |
#: src/includes/class-wpadmin-commands.php:147,
|
6392 |
+
#: src/includes/class-wpadmin-commands.php:505,
|
6393 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
|
6394 |
msgid "Database"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
+
#: src/admin.php:311, src/admin.php:4777
|
6398 |
msgid "Files"
|
6399 |
msgstr ""
|
6400 |
|
6446 |
msgid "UpdraftPlus.Com"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
+
#: src/admin.php:4669
|
6450 |
msgid "Your settings have been wiped."
|
6451 |
msgstr ""
|
6452 |
|
6507 |
msgstr ""
|
6508 |
|
6509 |
#: src/admin.php:681, src/admin.php:1320, src/admin.php:1799,
|
6510 |
+
#: src/class-updraftplus.php:1288, src/class-updraftplus.php:1332,
|
6511 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
6512 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
6513 |
+
#: src/methods/stream-base.php:220, src/restorer.php:2433,
|
6514 |
+
#: src/restorer.php:2458, src/restorer.php:2539, src/updraftplus.php:156
|
6515 |
msgid "Error"
|
6516 |
msgstr ""
|
6517 |
|
6552 |
#: src/admin.php:3468, src/admin.php:3475, src/admin.php:3477,
|
6553 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
6554 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
6555 |
+
#: src/methods/s3.php:847, src/methods/s3.php:851,
|
6556 |
#: src/methods/updraftvault.php:301,
|
6557 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
6558 |
#: src/udaddons/updraftplus-addons.php:253
|
6584 |
msgid "Like UpdraftPlus and can spare one minute?"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3966,
|
6588 |
+
#: src/methods/googledrive.php:1082, src/methods/s3.php:336
|
6589 |
msgid "File not found"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: src/class-updraftplus.php:3873
|
6593 |
msgid "The decryption key used:"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: src/class-updraftplus.php:3873, src/class-updraftplus.php:4105,
|
6597 |
+
#: src/restorer.php:422
|
6598 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
6599 |
msgstr ""
|
6600 |
|
6601 |
+
#: src/class-updraftplus.php:3854, src/class-updraftplus.php:4093,
|
6602 |
+
#: src/restorer.php:409
|
6603 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
6604 |
msgstr ""
|
6605 |
|
6607 |
msgid "Could not open the backup file for writing"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: src/class-updraftplus.php:3459
|
6611 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: src/class-updraftplus.php:3420
|
6615 |
msgid "Could not read the directory"
|
6616 |
msgstr ""
|
6617 |
|
6623 |
msgid "WordPress backup is complete"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: src/class-updraftplus.php:2930
|
6627 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: src/class-updraftplus.php:2915
|
6631 |
msgid "The backup apparently succeeded and is now complete"
|
6632 |
msgstr ""
|
6633 |
|
6635 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/class-updraftplus.php:2618
|
6639 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: src/class-updraftplus.php:1897
|
6643 |
msgid "Others"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: src/addons/multisite.php:465, src/class-updraftplus.php:1882
|
6647 |
msgid "Uploads"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: src/class-updraftplus.php:1881
|
6651 |
msgid "Themes"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: src/class-updraftplus.php:1880
|
6655 |
msgid "Plugins"
|
6656 |
msgstr ""
|
6657 |
|
Binary file
|
@@ -11,6 +11,50 @@ msgstr ""
|
|
11 |
"Language: es_MX\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/addons/morefiles.php:73
|
15 |
msgid "(None configured)"
|
16 |
msgstr ""
|
@@ -19,11 +63,11 @@ msgstr ""
|
|
19 |
msgid "Ensure you are logged into the correct account before continuing."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/admin.php:
|
23 |
msgid "Remote storage method and instance id are required for authentication."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "authentication error"
|
28 |
msgstr ""
|
29 |
|
@@ -91,25 +135,25 @@ msgstr "No más claves olvidadas. Descubra más acerca de nuestro nuevo revoluci
|
|
91 |
msgid "remote site"
|
92 |
msgstr "sitio remoto"
|
93 |
|
94 |
-
#: src/addons/backblaze.php:
|
95 |
msgid "Invalid bucket name"
|
96 |
msgstr "nombre de bucket incorrecto"
|
97 |
|
98 |
-
#: src/restorer.php:
|
99 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
100 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
101 |
msgstr[0] "Colación de tabla solicitada (%1$s) no está presente - cambiando a %2$s."
|
102 |
msgstr[1] "Colaciones de tablas solicitadas (%1$s) no están presentes - cambiando a %2$s."
|
103 |
|
104 |
-
#: src/class-updraftplus.php:
|
105 |
msgid "Your chosen replacement collation"
|
106 |
msgstr "Su reemplazo de colación seleccionado"
|
107 |
|
108 |
-
#: src/class-updraftplus.php:
|
109 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
110 |
msgstr "Alternativamente usted puede seleccionar otra colación adecuada y continuar con la restauración (a su propio riesgo)"
|
111 |
|
112 |
-
#: src/class-updraftplus.php:
|
113 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
114 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
115 |
msgstr[0] "El servidor de la base de datos en el que corre este sitio de Wordpress no soporta la colación (%s) usada en la base de datos que esta tratando de importar"
|
@@ -123,27 +167,27 @@ msgstr "Opciones de restauración de base de datos"
|
|
123 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
124 |
msgstr "Esto parece ser una migración (el respaldo es de un sitio con una dirección/URL diferente, %s)."
|
125 |
|
126 |
-
#: src/addons/azure.php:
|
127 |
msgid "%s Prefix"
|
128 |
msgstr "%s Prefijo"
|
129 |
|
130 |
-
#: src/addons/azure.php:
|
131 |
msgid "%s Container"
|
132 |
msgstr "%s Contenedor"
|
133 |
|
134 |
-
#: src/addons/azure.php:
|
135 |
msgid "%s Key"
|
136 |
msgstr "%s Llave"
|
137 |
|
138 |
-
#: src/addons/azure.php:
|
139 |
msgid "%s Account Name"
|
140 |
msgstr "%s Nombre de cuenta"
|
141 |
|
142 |
-
#: src/addons/googlecloud.php:
|
143 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
144 |
msgstr "Pero ninguno de los parámetros %s fueron encontrados. Por favor complete los campos en los parámetros %s y guarde los parámetros"
|
145 |
|
146 |
-
#: src/addons/googlecloud.php:
|
147 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
148 |
msgstr "Pero ningún bucket fue definido así que los respaldos pudieran no estar completos. Por favor ingrese el nombre de un bucket en los parámetros %s y guarde los parámetros."
|
149 |
|
@@ -173,19 +217,19 @@ msgid_plural "Your .htaccess has an old site references on line numbers %s. You
|
|
173 |
msgstr[0] "Su .htaccess tiene una referencia a un sitio viejo en la línea %s. Deberá removerla manualmente"
|
174 |
msgstr[1] "Su .htaccess tiene unas referencias a un sitio viejo en la línea %s. Deberá removerlas manualmente"
|
175 |
|
176 |
-
#: src/restorer.php:
|
177 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
178 |
msgstr "El conjunto de caracteres (%s) de la tabla solicitada no está presente - cambiando a %s."
|
179 |
|
180 |
-
#: src/class-updraftplus.php:
|
181 |
msgid "Your chosen character set to use instead:"
|
182 |
msgstr "El conjunto de caracteres alterno que ha seleccionado:"
|
183 |
|
184 |
-
#: src/class-updraftplus.php:
|
185 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
186 |
msgstr "Alternativamente usted puede seleccionar otro group de caracteres adecuado y continuar con la restauración a su propio riesgo"
|
187 |
|
188 |
-
#: src/class-updraftplus.php:
|
189 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
190 |
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."
|
191 |
msgstr[0] "El servidor de la base de datos en el que corre este sitio de Wordpress no soporta el conjunto de caracteres (%s) que usted está tratando de importar."
|
@@ -239,59 +283,59 @@ msgstr "Usted ahora necesita copiar la llave a continuación e ingresarla en su
|
|
239 |
msgid "Please enter a valid URL e.g http://example.com"
|
240 |
msgstr "Por favor ingrese un URL válido. Por ejemplo http://example.com"
|
241 |
|
242 |
-
#: src/addons/backblaze.php:
|
243 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
244 |
msgstr "Hay límites de validez para nombres de ruta de acceso. Espacios no son permitidos"
|
245 |
|
246 |
-
#: src/addons/backblaze.php:
|
247 |
msgid "some/path"
|
248 |
msgstr "una/ruta de acceso"
|
249 |
|
250 |
-
#: src/addons/backblaze.php:
|
251 |
msgid "Bucket name"
|
252 |
msgstr "Nombre de bucket"
|
253 |
|
254 |
-
#: src/addons/backblaze.php:
|
255 |
msgid "Backup path"
|
256 |
msgstr "Ruta de acceso del respaldo"
|
257 |
|
258 |
-
#: src/addons/backblaze.php:
|
259 |
msgid "Application key"
|
260 |
msgstr "Llave de aplicación"
|
261 |
|
262 |
-
#: src/addons/backblaze.php:
|
263 |
msgid "here"
|
264 |
msgstr "aquí"
|
265 |
|
266 |
-
#: src/addons/backblaze.php:
|
267 |
msgid "Get these settings from %s, or sign up %s."
|
268 |
msgstr "Obtenga estos parámetros del %s o inscríbase %s"
|
269 |
|
270 |
-
#: src/addons/backblaze.php:
|
271 |
msgid "Account Key"
|
272 |
msgstr "Llave de cuenta"
|
273 |
|
274 |
-
#: src/addons/backblaze.php:
|
275 |
msgid "Account ID"
|
276 |
msgstr "ID de cuenta"
|
277 |
|
278 |
-
#: src/class-updraftplus.php:
|
279 |
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."
|
280 |
msgstr "Con tal de que su compañia de hospedaje permita http (acceso no-SSL) o haga redireccionar solicitudes a https (el cual es casi siempre el caso) , esto no es problema. Si eso no está configurado todavía entonces usted deberá configurarlo o usar %s para que los vínculos no-https sean automáticamente reemplazados"
|
281 |
|
282 |
-
#: src/class-updraftplus.php:
|
283 |
msgid "the migrator add-on"
|
284 |
msgstr "El componente adicional migrator."
|
285 |
|
286 |
-
#: src/class-updraftplus.php:
|
287 |
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."
|
288 |
msgstr "La restauración funcionará si todavía tiene un certificado SSL (que pueda usar https) para acceder el sitio. Por lo contrario usted deberá usar %s para buscar/reemplazar la dirección del sitio de manera que el sitio pueda ser visitado sin https."
|
289 |
|
290 |
-
#: src/class-updraftplus.php:
|
291 |
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."
|
292 |
msgstr "El set de respaldo es de este sitio pero a la hora de respaldo usted usó %s. El sitio ahora usa %s"
|
293 |
|
294 |
-
#: src/class-updraftplus.php:
|
295 |
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."
|
296 |
msgstr "La dirección del sitio web en el set de respaldo (%s) es un poco distinta a la que el sitio tiene ahora (%s). No se espera que esto sea un problema para restaurar este sitio con tal de que las visitas a la dirección previa sigan alcanzado el sitio."
|
297 |
|
@@ -311,15 +355,15 @@ msgstr "Modo de depuración de UpdraftPlus está activo: A continuación hay det
|
|
311 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
312 |
msgstr "Error: El archivo seleccionado está corrupto. Por favor seleccione un archivo de exportación de UpdraftPlus válido"
|
313 |
|
314 |
-
#: src/admin.php:1368, src/admin.php:
|
315 |
-
#: src/class-updraftplus.php:
|
316 |
-
#: src/class-updraftplus.php:
|
317 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
318 |
msgstr "Un erro fatal de PHP (%s) ha ocurrido: %s"
|
319 |
|
320 |
-
#: src/admin.php:1359, src/admin.php:
|
321 |
-
#: src/class-updraftplus.php:
|
322 |
-
#: src/class-updraftplus.php:
|
323 |
msgid "A PHP exception (%s) has occurred: %s"
|
324 |
msgstr "Una excepción de PHP (%s) a ocurrido: %s "
|
325 |
|
@@ -375,7 +419,7 @@ msgstr "Inicio instantáneo y seguro de sesión con el movimiento de su teléfon
|
|
375 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
376 |
msgstr "Como se le advirtió previamente (ver: %s), encripción ya no es una funcionalidad de la edición gratis de UpdraftPlus"
|
377 |
|
378 |
-
#: src/admin.php:
|
379 |
msgid "Value"
|
380 |
msgstr "Valor"
|
381 |
|
@@ -387,7 +431,7 @@ msgstr "No sabía como borrar de este servicio en la nube"
|
|
387 |
msgid "Encrypted login failed; trying non-encrypted"
|
388 |
msgstr "Inicio de sesión encriptada falló; tratando de forma no-encriptada"
|
389 |
|
390 |
-
#: src/addons/azure.php:
|
391 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
392 |
msgstr "Usted debe añadir el siguiente URI redireccionado en sun cónsola Azure (bajo \"Parámetros de API\") cuando se le pregunte."
|
393 |
|
@@ -399,11 +443,11 @@ msgstr "Guardado en: %s"
|
|
399 |
msgid "Cloud Files"
|
400 |
msgstr "Archivos nube"
|
401 |
|
402 |
-
#: src/admin.php:
|
403 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
404 |
msgstr "Sus parámetros no se guardaron. Por favor refresque la página de parámetros e intente de nuevo"
|
405 |
|
406 |
-
#: src/admin.php:
|
407 |
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."
|
408 |
msgstr "Parece que UpdraftPlus fue actualizado a la versión (%s), la cual es distinta a la versión en ejeccución cuando la página de parámetros fue cargada. Por favor recargar la página de parámetros antes de intentar guardar parámetros."
|
409 |
|
@@ -412,11 +456,11 @@ msgstr "Parece que UpdraftPlus fue actualizado a la versión (%s), la cual es di
|
|
412 |
msgid "UpdraftVault"
|
413 |
msgstr "UpdraftVault"
|
414 |
|
415 |
-
#: src/includes/class-wpadmin-commands.php:
|
416 |
msgid "archive"
|
417 |
msgstr "archivador"
|
418 |
|
419 |
-
#: src/includes/class-wpadmin-commands.php:
|
420 |
msgid "Extra database"
|
421 |
msgstr "Extra base de datos"
|
422 |
|
@@ -460,11 +504,11 @@ msgstr "Con UpdraftPlus Premium, usted puede directamente descargar archivos ind
|
|
460 |
msgid "Browse contents"
|
461 |
msgstr "Dar un vistazo al contenido"
|
462 |
|
463 |
-
#: src/restorer.php:
|
464 |
msgid "Skipped tables:"
|
465 |
msgstr "Tablas saltadas:"
|
466 |
|
467 |
-
#: src/class-updraftplus.php:
|
468 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
469 |
msgstr "Este respaldo de base de datos tiene las siguientes tablas de WordPress excluidas: %s"
|
470 |
|
@@ -673,14 +717,6 @@ msgstr "UpdraftPlus"
|
|
673 |
msgid "Recommended: optimize your database with WP-Optimize."
|
674 |
msgstr "Recomendado: optimize su base de datos con WP-Optimize"
|
675 |
|
676 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
677 |
-
msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
678 |
-
msgstr "Cuando haya respaldado su base de datos, recomendamos que instale nuestro plugin WP-Optimize para simplificarla y tenga mejor rendimiento."
|
679 |
-
|
680 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
|
681 |
-
msgid "WP-Optimize"
|
682 |
-
msgstr "WP-Optimize"
|
683 |
-
|
684 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
685 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
686 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
@@ -728,27 +764,7 @@ msgstr "Europa (Londres)"
|
|
728 |
msgid "Europe (Ireland)"
|
729 |
msgstr "Europa (Irlanda)"
|
730 |
|
731 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
732 |
-
msgid "WP-Optimize (free)"
|
733 |
-
msgstr "WP-Optimize (gratis)"
|
734 |
-
|
735 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
736 |
-
msgid "Explore our Cloud and Premium versions."
|
737 |
-
msgstr "Explore nuestras versiones Cloud y Premium"
|
738 |
-
|
739 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
740 |
-
msgid "Download it for free from WordPress.org"
|
741 |
-
msgstr "Descárguelo gratis de WordPress.org"
|
742 |
-
|
743 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
744 |
-
msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
|
745 |
-
msgstr "¡Usted puede usarlo para administrar y actualizar de forma centralizada las plantillas, plugins y el core de WordPress en todos sus sitios sin tener que entrar a ellos!"
|
746 |
-
|
747 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
748 |
-
msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
|
749 |
-
msgstr "UpdraftCentral es un poderoso plugin de control remoto para WordPress que le permitirá controlar todas sus instalaciones de UpdraftPlus y respaldos desde una ubicación centralizada."
|
750 |
-
|
751 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
|
752 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
753 |
msgid "UpdraftCentral"
|
754 |
msgstr "UpdraftCentral "
|
@@ -960,11 +976,11 @@ msgstr "Aquí, usted puede exportar sus parámetros de UpdraftPlus (%s) para usa
|
|
960 |
msgid "Export / import settings"
|
961 |
msgstr "Parámetros para exportar/importar"
|
962 |
|
963 |
-
#: src/restorer.php:
|
964 |
msgid "Processing table (%s)"
|
965 |
msgstr "Procesando tabla (%s)"
|
966 |
|
967 |
-
#: src/restorer.php:
|
968 |
msgid "Backup of: %s"
|
969 |
msgstr "Respaldo de: %s"
|
970 |
|
@@ -972,11 +988,11 @@ msgstr "Respaldo de: %s"
|
|
972 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
973 |
msgstr "El cliente ha sido eliminado de la cónsola del API de Google Drive. Por favor crear un nuevo proyecto de Google Drive y reconectar con UpdraftPlus"
|
974 |
|
975 |
-
#: src/methods/dropbox.php:
|
976 |
msgid "%s de-authentication"
|
977 |
msgstr "%s desautenticación"
|
978 |
|
979 |
-
#: src/methods/dropbox.php:
|
980 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
981 |
msgstr "Usted debe añadir lo siguiente como el URI de redirección autorizado en su cónsola de Dropbox (bajo los parámetros del API) cuando se le pregunte"
|
982 |
|
@@ -1044,24 +1060,24 @@ msgstr "Plantilla no encontrada"
|
|
1044 |
msgid "US East (Ohio)"
|
1045 |
msgstr "Este de EUA (Ohio)"
|
1046 |
|
1047 |
-
#: src/addons/onedrive.php:
|
1048 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1049 |
msgstr "Este sitio usa un URL que es no-HTTPS o es un host local o URL 127.0.0.1. Por lo tanto usted debe usar el App principal %s %s para autenticar con su cuenta."
|
1050 |
|
1051 |
-
#: src/addons/onedrive.php:
|
1052 |
msgid "Account is not authorized (%s)."
|
1053 |
msgstr "Cuenta no esta autorizada (%s)"
|
1054 |
|
1055 |
-
#: src/addons/onedrive.php:
|
1056 |
msgid "Your IP address:"
|
1057 |
msgstr "Su dirección IP:"
|
1058 |
|
1059 |
-
#: src/addons/onedrive.php:
|
1060 |
#: src/udaddons/updraftplus-addons.php:887
|
1061 |
msgid "To remove any block, please go here."
|
1062 |
msgstr "Para remover cualquier bloque, por favor vaya aquí:"
|
1063 |
|
1064 |
-
#: src/addons/onedrive.php:
|
1065 |
msgid "An error response was received; HTTP code:"
|
1066 |
msgstr "Una respuesta de error fue recibida; código HTTP:"
|
1067 |
|
@@ -1089,27 +1105,27 @@ msgstr "OptimizePress 2.0 hace codificación de su contenido así que buscar/ree
|
|
1089 |
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."
|
1090 |
msgstr "Su instalación de PHP le falta el módulo openssl; por lo tanto esto puede tomar unos minutos; si no pasa nada entonces deberá intentar con una tamaño de llave mas pequeño o preguntarle a su compañía de hospedaje web como habilitar este módulo de PHP en su configuración."
|
1091 |
|
1092 |
-
#: src/addons/webdav.php:
|
1093 |
msgid "Path"
|
1094 |
msgstr "Ruta de acceso"
|
1095 |
|
1096 |
-
#: src/addons/webdav.php:
|
1097 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1098 |
msgstr "Deje este en blanco para usar el valor por defecto (80 para webdav, 443 para webdavs)"
|
1099 |
|
1100 |
-
#: src/addons/webdav.php:
|
1101 |
msgid "Enter any path in the field below."
|
1102 |
msgstr "Ingrese cualquier ruta de acceso en el campo a continuación"
|
1103 |
|
1104 |
-
#: src/addons/webdav.php:
|
1105 |
msgid "A host name cannot contain a slash."
|
1106 |
msgstr "El nombre de un host no puede contener un carácter de barra inclinada (slash)."
|
1107 |
|
1108 |
-
#: src/addons/webdav.php:
|
1109 |
msgid "Protocol (SSL or not)"
|
1110 |
msgstr "Protocolo (SSL o no)"
|
1111 |
|
1112 |
-
#: src/addons/webdav.php:
|
1113 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1114 |
msgstr "El URL WebDAV se genera completando las opciones a continuación. Si no sabe los detalles, entonces necesitará preguntarle a su proveedor WebDAV."
|
1115 |
|
@@ -1117,11 +1133,11 @@ msgstr "El URL WebDAV se genera completando las opciones a continuación. Si no
|
|
1117 |
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."
|
1118 |
msgstr "Datos de respuesta no recibidos. Esto usualmente se debe a un problema de conectividad de red (un firewall de salida o una red sobrecargada) entre este sitio y UpdraftPlus.com."
|
1119 |
|
1120 |
-
#: src/methods/s3.php:
|
1121 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1122 |
msgstr "La llave de acceso AWS parace ser incorrecta (llaves de acceso válidas %s empiezan con \"AK\")"
|
1123 |
|
1124 |
-
#: src/methods/s3.php:
|
1125 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1126 |
msgstr "No se encontraron parámetros - por favor vaya a la pestaña Parámetros y verifique su configuración."
|
1127 |
|
@@ -1227,7 +1243,7 @@ msgstr "Tome en cuenta que los servidores de email tienden a tener limites de ta
|
|
1227 |
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."
|
1228 |
msgstr "El archivador de este respaldo es de %s MB en tamaño. Si se intenta enviar este por email es muy probable que falle (pocos servidores de email permiten anexos de este tamaño). Si esto sucede deberá cambiar a otro método de almacenamiento remoto."
|
1229 |
|
1230 |
-
#: src/class-updraftplus.php:
|
1231 |
msgid "Size: %s MB"
|
1232 |
msgstr "Tamaño : %s MB"
|
1233 |
|
@@ -1239,7 +1255,7 @@ msgstr "UpdraftPlus separará los archivadores de respaldo cuando excedan este t
|
|
1239 |
msgid "Now"
|
1240 |
msgstr "Ahora"
|
1241 |
|
1242 |
-
#: src/class-updraftplus.php:
|
1243 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1244 |
msgstr "Usted deberá habilitar %s para que enlaces permanentes buenos (por ejemplo %s) funcionen."
|
1245 |
|
@@ -1345,11 +1361,11 @@ msgstr "Se ha establecido una nueva conexión exitosa de UpdraftCentral "
|
|
1345 |
msgid "UpdraftCentral Connection"
|
1346 |
msgstr "Conexión de UpdraftCentral "
|
1347 |
|
1348 |
-
#: src/backup.php:1006, src/class-updraftplus.php:
|
1349 |
msgid "The backup was aborted by the user"
|
1350 |
msgstr "Este respaldo fue abortado por el usuario"
|
1351 |
|
1352 |
-
#: src/admin.php:
|
1353 |
msgid "Your settings have been saved."
|
1354 |
msgstr "Su configuración ha sido guardada."
|
1355 |
|
@@ -1415,7 +1431,7 @@ msgstr "Buscando..."
|
|
1415 |
msgid "Asia Pacific (Seoul)"
|
1416 |
msgstr "Asia Pacífico (Seúl)"
|
1417 |
|
1418 |
-
#: src/restorer.php:
|
1419 |
msgid "Uploads URL:"
|
1420 |
msgstr "URL para subir archivos:"
|
1421 |
|
@@ -1423,15 +1439,15 @@ msgstr "URL para subir archivos:"
|
|
1423 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1424 |
msgstr "El módulo de PHP %s requerido no esta instalado - Preguntele a su compañia de hospedaje web para que lo habiliten"
|
1425 |
|
1426 |
-
#: src/class-updraftplus.php:
|
1427 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1428 |
msgstr "Para importar un sitio de WordPress ordinario a una instalación multisitio se requiere %s."
|
1429 |
|
1430 |
-
#: src/class-updraftplus.php:
|
1431 |
msgid "Please read this link for important information on this process."
|
1432 |
msgstr "Por favor lea este vínculo para ver información importante sobre este proceso."
|
1433 |
|
1434 |
-
#: src/class-updraftplus.php:
|
1435 |
msgid "It will be imported as a new site."
|
1436 |
msgstr "será importado como un nuevo sitio"
|
1437 |
|
@@ -1505,7 +1521,7 @@ msgstr "Activar acción de WordPress:"
|
|
1505 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1506 |
msgstr "Sus parámetros guardados también afectan lo que se ha respaldado - por ejemplo archivos excluidos."
|
1507 |
|
1508 |
-
#: src/admin.php:
|
1509 |
msgid "Skipping: this archive was already restored."
|
1510 |
msgstr "Saltando: este archivador ya fue restaurado"
|
1511 |
|
@@ -1537,23 +1553,23 @@ msgstr "Usted necesitará ingresar todos sus parámetros de nuevo. Tambien puede
|
|
1537 |
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)."
|
1538 |
msgstr "Este botón borrará todos los parámetros de UpdraftPlus e información de progreso de respaldos en proceso (pero ninguno de sus respaldos actuales de su almacenamiento en la nube)"
|
1539 |
|
1540 |
-
#: src/admin.php:
|
1541 |
msgid "Send this backup to remote storage"
|
1542 |
msgstr "Envie este resplado a su almacenamiento remoto"
|
1543 |
|
1544 |
-
#: src/admin.php:
|
1545 |
msgid "Check out UpdraftPlus Vault."
|
1546 |
msgstr "Vea UpdraftPlus Vault."
|
1547 |
|
1548 |
-
#: src/admin.php:
|
1549 |
msgid "Not got any remote storage?"
|
1550 |
msgstr "¿No tiene almacenamiento remoto?"
|
1551 |
|
1552 |
-
#: src/admin.php:
|
1553 |
msgid "settings"
|
1554 |
msgstr "parámetros"
|
1555 |
|
1556 |
-
#: src/admin.php:
|
1557 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1558 |
msgstr "El respaldo no se enviará al almacenamiento remoto - nada ha sido guardado en el %s"
|
1559 |
|
@@ -1610,23 +1626,23 @@ msgstr "Extensiones"
|
|
1610 |
msgid "Advanced Tools"
|
1611 |
msgstr "Herramientas avanzadas"
|
1612 |
|
1613 |
-
#: src/addons/googlecloud.php:
|
1614 |
msgid "Bucket location"
|
1615 |
msgstr "Ubicación de bucket"
|
1616 |
|
1617 |
-
#: src/addons/googlecloud.php:
|
1618 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1619 |
msgstr "Favor notar que Google no soporta todas las clases de almacenamiento en cada ubicación - usted debería leer la documentación de ellos para aprender de la disponibilidad actual."
|
1620 |
|
1621 |
-
#: src/addons/googlecloud.php:
|
1622 |
msgid "This setting applies only when a new bucket is being created."
|
1623 |
msgstr "Este parámetro aplica solo cuando se está creando un bucket nuevo."
|
1624 |
|
1625 |
-
#: src/addons/googlecloud.php:
|
1626 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1627 |
msgstr "Usted debe usar un nombre de bucket que sea único para todos usuarios %s"
|
1628 |
|
1629 |
-
#: src/addons/googlecloud.php:
|
1630 |
msgid "Do not confuse %s with %s - they are separate things."
|
1631 |
msgstr "No confunda %s con %s - Son cosas separadas"
|
1632 |
|
@@ -1688,48 +1704,48 @@ msgstr "Disponibilidad reducida durable"
|
|
1688 |
msgid "Standard"
|
1689 |
msgstr "Estándar"
|
1690 |
|
1691 |
-
#: src/addons/azure.php:
|
1692 |
msgid "container"
|
1693 |
msgstr "contenedor"
|
1694 |
|
1695 |
-
#: src/addons/azure.php:
|
1696 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1697 |
msgstr "Usted puede ingresar la ruta de acceso de cualquier carpeta virtual %s que quiera usar aqui."
|
1698 |
|
1699 |
-
#: src/addons/azure.php:
|
1700 |
msgid "optional"
|
1701 |
msgstr "opcional"
|
1702 |
|
1703 |
-
#: src/addons/azure.php:
|
1704 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1705 |
msgstr "Vea la guía para nombrar contenedores de Microsoft siguiendo este vínculo."
|
1706 |
|
1707 |
-
#: src/addons/azure.php:
|
1708 |
msgid "Enter the path of the %s you wish to use here."
|
1709 |
msgstr "Ingrese la ruta de acceso del %s que desea usar aquí."
|
1710 |
|
1711 |
-
#: src/addons/azure.php:
|
1712 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1713 |
msgstr "Este no es su credencial de acceso de Azure - vea las instrucciones si necesita mas ayuda."
|
1714 |
|
1715 |
-
#: src/addons/azure.php:
|
1716 |
-
#: src/addons/azure.php:
|
1717 |
msgid "Azure"
|
1718 |
msgstr "Azure"
|
1719 |
|
1720 |
-
#: src/addons/azure.php:
|
1721 |
msgid "Create Azure credentials in your Azure developer console."
|
1722 |
msgstr "Crear credenciales de acceso en su cónsola de programador de Azure"
|
1723 |
|
1724 |
-
#: src/addons/azure.php:
|
1725 |
msgid "Could not create the container"
|
1726 |
msgstr "No se pudo crear el contenedor"
|
1727 |
|
1728 |
-
#: src/addons/azure.php:
|
1729 |
msgid "Could not access container"
|
1730 |
msgstr "No se pudo acceder el contenedor"
|
1731 |
|
1732 |
-
#: src/class-updraftplus.php:
|
1733 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1734 |
msgstr "Para completar su migración/clone, usted deberá entrar en el sistema remoto y restaurar el set de respaldo"
|
1735 |
|
@@ -1757,47 +1773,47 @@ msgstr "requerido para algunos proveedores de almacenamiento remoto"
|
|
1757 |
msgid "Not installed"
|
1758 |
msgstr "No está instalado"
|
1759 |
|
1760 |
-
#: src/addons/googlecloud.php:
|
1761 |
msgid "Storage class"
|
1762 |
msgstr "Clase de almacenamiento"
|
1763 |
|
1764 |
-
#: src/addons/googlecloud.php:
|
1765 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1766 |
msgstr "Vea la guía de Google sobre nombres de buckets siguiendo este vínculo."
|
1767 |
|
1768 |
-
#: src/addons/googlecloud.php:
|
1769 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1770 |
msgstr "Ingrese el nombre del bucket %s que quiere usar aquí."
|
1771 |
|
1772 |
-
#: src/addons/googlecloud.php:
|
1773 |
msgid "Bucket"
|
1774 |
msgstr "Bucket"
|
1775 |
|
1776 |
-
#: src/addons/googlecloud.php:
|
1777 |
msgid "Otherwise, you can leave it blank."
|
1778 |
msgstr "De otra manera, lo puede dejar en blanco"
|
1779 |
|
1780 |
-
#: src/addons/googlecloud.php:
|
1781 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1782 |
msgstr "Atención. Esto solo se necesita si no ha creado el bucket todavía y desea que UpdraftPlus se lo haga."
|
1783 |
|
1784 |
-
#: src/addons/googlecloud.php:
|
1785 |
msgid "Enter the ID of the %s project you wish to use here."
|
1786 |
msgstr "Ingrese el ID del proyecto %s que desea usar aquí."
|
1787 |
|
1788 |
-
#: src/addons/googlecloud.php:
|
1789 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1790 |
msgstr "Siga este vínculo para la Cónsola de API de Google, y ahi activar el API de Almacenamiento y crear un ID de Cliente en la sección de Acceso de API."
|
1791 |
|
1792 |
-
#: src/addons/googlecloud.php:
|
1793 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1794 |
msgstr "Usted debe ingresar un ID de proyecto para poder crear un bucket nuevo"
|
1795 |
|
1796 |
-
#: src/addons/googlecloud.php:
|
1797 |
msgid "Project ID"
|
1798 |
msgstr "ID de Proyecto"
|
1799 |
|
1800 |
-
#: src/addons/googlecloud.php:
|
1801 |
msgid "You must save and authenticate before you can test your settings."
|
1802 |
msgstr "Debe guardar y autenticar antes de que pueda probar sus parámetros"
|
1803 |
|
@@ -1806,22 +1822,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
|
|
1806 |
msgstr "No ha obtenido un token de acceso de Google todavia - Usted necesita autorizar o volver a autorizar su conexión a Google Cloud."
|
1807 |
|
1808 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1809 |
-
#: src/addons/googlecloud.php:
|
1810 |
msgid "You do not have access to this bucket."
|
1811 |
msgstr "Usted no tine acceso a este bucket"
|
1812 |
|
1813 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1814 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1815 |
-
#: src/addons/googlecloud.php:
|
1816 |
-
#: src/addons/googlecloud.php:
|
1817 |
-
#: src/addons/googlecloud.php:
|
1818 |
-
#: src/addons/googlecloud.php:
|
1819 |
msgid "Google Cloud"
|
1820 |
msgstr "Google Cloud"
|
1821 |
|
1822 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1823 |
-
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:
|
1824 |
-
#: src/addons/googlecloud.php:
|
1825 |
msgid "%s Service Exception."
|
1826 |
msgstr "Excepción de Servicio %s"
|
1827 |
|
@@ -1829,7 +1845,7 @@ msgstr "Excepción de Servicio %s"
|
|
1829 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1830 |
msgstr "Usted no cuenta con UpdraftPlus completamente instalado - favor de desinstalar e instalar de nuevo. Lo mas probable sea que haya habido un mal funcionamiento de WordPress cuando se copiaban los archivos de los plugins."
|
1831 |
|
1832 |
-
#: src/restorer.php:
|
1833 |
msgid "Deferring..."
|
1834 |
msgstr "Difiriendo..."
|
1835 |
|
@@ -1898,11 +1914,11 @@ msgstr "(tantos como quiera)"
|
|
1898 |
msgid "Add an additional retention rule..."
|
1899 |
msgstr "Añadir una regla de retención adicional..."
|
1900 |
|
1901 |
-
#: src/restorer.php:
|
1902 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1903 |
msgstr "Esta base de datos necesita ser colocada en MySQL versión %s o posterior."
|
1904 |
|
1905 |
-
#: src/restorer.php:
|
1906 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1907 |
msgstr "Este problema es causado por intentar restaurar una base de datos de una versión muy antigua de MySQL que es incompatible con la base de datos original."
|
1908 |
|
@@ -1910,11 +1926,11 @@ msgstr "Este problema es causado por intentar restaurar una base de datos de una
|
|
1910 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1911 |
msgstr "Usted por el momento no tiene cuota de UpdraftPlus Vault"
|
1912 |
|
1913 |
-
#: src/class-updraftplus.php:
|
1914 |
msgid "You must upgrade MySQL to be able to use this database."
|
1915 |
msgstr "Usted debe actualizar MySQL para poder usar esta base de datos."
|
1916 |
|
1917 |
-
#: src/class-updraftplus.php:
|
1918 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1919 |
msgstr "El respaldo de la base de datos usa funcionalidad de MySQL no disponibles en la versión antigua (%s) en la que actualmente corre este sitio."
|
1920 |
|
@@ -2092,8 +2108,8 @@ msgstr "Su compra de UpdraftPlus Premium tiene más de un año. Debería renovar
|
|
2092 |
msgid "Updraft Vault"
|
2093 |
msgstr "Updraft Vault"
|
2094 |
|
2095 |
-
#: src/addons/azure.php:
|
2096 |
-
#: src/addons/googlecloud.php:
|
2097 |
msgid "Delete failed:"
|
2098 |
msgstr "Supresión falló:"
|
2099 |
|
@@ -2129,10 +2145,6 @@ msgstr "Usted deberá chequear que el sitio remoto esté en linea, sin firewall,
|
|
2129 |
msgid "Existing keys"
|
2130 |
msgstr "Llaves existentes"
|
2131 |
|
2132 |
-
#: src/addons/migrator.php:2423
|
2133 |
-
msgid "No keys to allow remote sites to connect have yet been created."
|
2134 |
-
msgstr "No hay llaves creadas para permitir que los sitios remotos se conecten."
|
2135 |
-
|
2136 |
#: src/addons/migrator.php:2405
|
2137 |
msgid "Your new key:"
|
2138 |
msgstr "Su nueva llave:"
|
@@ -2338,7 +2350,7 @@ msgstr "Añadiendo..."
|
|
2338 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2339 |
msgstr "Su reclamo no fue aceptado - a lo mejor ya ha usado esta compra en otro lugar o su periodo de pago para descargar de updraftplus.com ha expirado."
|
2340 |
|
2341 |
-
#: src/restorer.php:
|
2342 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2343 |
msgstr "Para usar este respaldo, su servidor de base de datos necesita soportar el set de caracteres %s."
|
2344 |
|
@@ -2370,41 +2382,41 @@ msgstr "Para restaurar usando cualquiera de los sets de respaldo a continuación
|
|
2370 |
msgid "You have made changes to your settings, and not saved."
|
2371 |
msgstr "Usted ha realizado cambios a sus parámetros y no los ha guardado."
|
2372 |
|
2373 |
-
#: src/addons/onedrive.php:
|
2374 |
msgid "N.B. %s is not case-sensitive."
|
2375 |
msgstr "Atención - %s no distingue mayúsculas/minúsculas"
|
2376 |
|
2377 |
-
#: src/addons/onedrive.php:
|
2378 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2379 |
msgstr "Si OneDrive luego despliega el mensaje \"unathorized_client\", entonces no ingresó un ID de cliente válido aquí."
|
2380 |
|
2381 |
-
#: src/addons/azure.php:
|
2382 |
-
#: src/addons/onedrive.php:
|
2383 |
msgid "For longer help, including screenshots, follow this link."
|
2384 |
msgstr "Para más ayuda, incluyendo capturas de pantalla, siga este vínculo."
|
2385 |
|
2386 |
-
#: src/addons/onedrive.php:
|
2387 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2388 |
msgstr "Crear credenciales de OneDrive en su cónsola de desarrollo de OneDrive"
|
2389 |
|
2390 |
-
#: src/addons/onedrive.php:
|
2391 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2392 |
msgstr "Usted debe añadir lo siguiente como el URI redireccionado autorizado en su cónsola de OneDrive (bajo \"Configuración de API\") cuando se le pregunte."
|
2393 |
|
2394 |
-
#: src/addons/azure.php:
|
2395 |
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)."
|
2396 |
msgstr "Microsoft Azure no es compatible con sitios hospedados en un localhost o URL 127.0.0.1 - Su cónsola de desarrollo no los permite ( URL actual es: %s)"
|
2397 |
|
2398 |
-
#: src/addons/onedrive.php:
|
2399 |
msgid "%s authorisation failed:"
|
2400 |
msgstr "autorización %s falló:"
|
2401 |
|
2402 |
-
#: src/addons/onedrive.php:
|
2403 |
-
#: src/addons/onedrive.php:
|
2404 |
msgid "OneDrive"
|
2405 |
msgstr "OneDrive"
|
2406 |
|
2407 |
-
#: src/addons/onedrive.php:
|
2408 |
msgid "Please re-authorize the connection to your %s account."
|
2409 |
msgstr "Por favor reautorizar la conexión a su cuenta %s."
|
2410 |
|
@@ -2412,7 +2424,7 @@ msgstr "Por favor reautorizar la conexión a su cuenta %s."
|
|
2412 |
msgid "configure it here"
|
2413 |
msgstr "configurelo aquí"
|
2414 |
|
2415 |
-
#: src/addons/onedrive.php:
|
2416 |
msgid "To remove the block, please go here."
|
2417 |
msgstr "Para remover el bloqueo, por favor vaya aquí."
|
2418 |
|
@@ -2557,74 +2569,66 @@ msgstr "Usted necesita entrar una llave de acceso de administrador"
|
|
2557 |
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)"
|
2558 |
msgstr "Si tiene un usuario administrador de AWS, entonces puede usar este wizard para rápidamente crear un nuevo usuario AWS (IAM) con acceso a solo este bucket (en vez de la cuenta entera)"
|
2559 |
|
2560 |
-
#: src/methods/s3.php:
|
2561 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2562 |
msgstr "Para crear un nuevo subusuario IAM y llave de acceso que tiene acceso a solo este bucket, use este producto adicional."
|
2563 |
|
2564 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2565 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2566 |
msgstr "Para soporte personal, la habilidad de copiar sitios, más destinos de almacenamiento, respaldos eincriptados para mayor seguridad, mútiples destinos de respaldo, mejor reportes, o propagadas y mucho más dele un vistazo a la versión premium de UpdraftPlus - El plugin de respaldo más popular del mundo."
|
2567 |
|
2568 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2569 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2570 |
msgstr "noticias de UpdraftPlus, materiales de capacitación de alta calidad para ingenieros de WordPress/ dueños de sitios y noticas generales de WordPress. Usted puede cancelar la suscripción en cualquier momento."
|
2571 |
|
2572 |
-
#: src/addons/onedrive.php:
|
2573 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2574 |
#: src/udaddons/updraftplus-addons.php:887
|
2575 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2576 |
msgstr "Lo más probable es que esto signifique que usted comparte un servidor web con un sitio web hackeado que ha sido usado en previos ataques."
|
2577 |
|
2578 |
-
#: src/addons/onedrive.php:
|
2579 |
#: src/udaddons/updraftplus-addons.php:887
|
2580 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2581 |
msgstr "Parece que la dirección IP de su servidor web (%s) está bloqueada"
|
2582 |
|
2583 |
-
#: src/addons/onedrive.php:
|
2584 |
#: src/udaddons/updraftplus-addons.php:887
|
2585 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2586 |
msgstr "UpdraftPlus ha respondido con 'Acceso Negado'."
|
2587 |
|
2588 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2589 |
msgid "Premium WooCommerce plugins"
|
2590 |
msgstr "Plugins premium de WooCommerce"
|
2591 |
|
2592 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2593 |
msgid "Free two-factor security plugin"
|
2594 |
msgstr "Plugin de seguridad de dos factores gratis"
|
2595 |
|
2596 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2597 |
-
msgid "More
|
2598 |
-
msgstr "
|
2599 |
|
2600 |
-
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:
|
2601 |
|
11 |
"Language: es_MX\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
|
15 |
+
msgid "Simple and secure login with a wave of your phone."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
|
19 |
+
msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
|
23 |
+
msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
|
27 |
+
msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
|
31 |
+
msgid "Super-charge and secure your WordPress site with our other top plugins:"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
|
35 |
+
msgid "Thank you for installing UpdraftPlus!"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: src/addons/migrator.php:2423
|
39 |
+
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: src/restorer.php:188
|
43 |
+
msgid "Failed to read from the working directory."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: src/restorer.php:187
|
47 |
+
msgid "Failed to find a manifest file in the backup."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: src/restorer.php:186
|
51 |
+
msgid "Failed to read the manifest file from backup."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/includes/class-wpadmin-commands.php:207
|
55 |
+
msgid "Select your incremental restore point"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: src/addons/morefiles.php:73
|
59 |
msgid "(None configured)"
|
60 |
msgstr ""
|
63 |
msgid "Ensure you are logged into the correct account before continuing."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: src/admin.php:4602
|
67 |
msgid "Remote storage method and instance id are required for authentication."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: src/admin.php:4598
|
71 |
msgid "authentication error"
|
72 |
msgstr ""
|
73 |
|
135 |
msgid "remote site"
|
136 |
msgstr "sitio remoto"
|
137 |
|
138 |
+
#: src/addons/backblaze.php:475
|
139 |
msgid "Invalid bucket name"
|
140 |
msgstr "nombre de bucket incorrecto"
|
141 |
|
142 |
+
#: src/restorer.php:2028
|
143 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
144 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
145 |
msgstr[0] "Colación de tabla solicitada (%1$s) no está presente - cambiando a %2$s."
|
146 |
msgstr[1] "Colaciones de tablas solicitadas (%1$s) no están presentes - cambiando a %2$s."
|
147 |
|
148 |
+
#: src/class-updraftplus.php:4411
|
149 |
msgid "Your chosen replacement collation"
|
150 |
msgstr "Su reemplazo de colación seleccionado"
|
151 |
|
152 |
+
#: src/class-updraftplus.php:4388
|
153 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
154 |
msgstr "Alternativamente usted puede seleccionar otra colación adecuada y continuar con la restauración (a su propio riesgo)"
|
155 |
|
156 |
+
#: src/class-updraftplus.php:4388
|
157 |
msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
|
158 |
msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
|
159 |
msgstr[0] "El servidor de la base de datos en el que corre este sitio de Wordpress no soporta la colación (%s) usada en la base de datos que esta tratando de importar"
|
167 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
168 |
msgstr "Esto parece ser una migración (el respaldo es de un sitio con una dirección/URL diferente, %s)."
|
169 |
|
170 |
+
#: src/addons/azure.php:631
|
171 |
msgid "%s Prefix"
|
172 |
msgstr "%s Prefijo"
|
173 |
|
174 |
+
#: src/addons/azure.php:626
|
175 |
msgid "%s Container"
|
176 |
msgstr "%s Contenedor"
|
177 |
|
178 |
+
#: src/addons/azure.php:621
|
179 |
msgid "%s Key"
|
180 |
msgstr "%s Llave"
|
181 |
|
182 |
+
#: src/addons/azure.php:617
|
183 |
msgid "%s Account Name"
|
184 |
msgstr "%s Nombre de cuenta"
|
185 |
|
186 |
+
#: src/addons/googlecloud.php:692
|
187 |
msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
|
188 |
msgstr "Pero ninguno de los parámetros %s fueron encontrados. Por favor complete los campos en los parámetros %s y guarde los parámetros"
|
189 |
|
190 |
+
#: src/addons/googlecloud.php:690
|
191 |
msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
|
192 |
msgstr "Pero ningún bucket fue definido así que los respaldos pudieran no estar completos. Por favor ingrese el nombre de un bucket en los parámetros %s y guarde los parámetros."
|
193 |
|
217 |
msgstr[0] "Su .htaccess tiene una referencia a un sitio viejo en la línea %s. Deberá removerla manualmente"
|
218 |
msgstr[1] "Su .htaccess tiene unas referencias a un sitio viejo en la línea %s. Deberá removerlas manualmente"
|
219 |
|
220 |
+
#: src/restorer.php:1990
|
221 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
222 |
msgstr "El conjunto de caracteres (%s) de la tabla solicitada no está presente - cambiando a %s."
|
223 |
|
224 |
+
#: src/class-updraftplus.php:4364
|
225 |
msgid "Your chosen character set to use instead:"
|
226 |
msgstr "El conjunto de caracteres alterno que ha seleccionado:"
|
227 |
|
228 |
+
#: src/class-updraftplus.php:4354
|
229 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
230 |
msgstr "Alternativamente usted puede seleccionar otro group de caracteres adecuado y continuar con la restauración a su propio riesgo"
|
231 |
|
232 |
+
#: src/class-updraftplus.php:4354
|
233 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
234 |
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."
|
235 |
msgstr[0] "El servidor de la base de datos en el que corre este sitio de Wordpress no soporta el conjunto de caracteres (%s) que usted está tratando de importar."
|
283 |
msgid "Please enter a valid URL e.g http://example.com"
|
284 |
msgstr "Por favor ingrese un URL válido. Por ejemplo http://example.com"
|
285 |
|
286 |
+
#: src/addons/backblaze.php:633
|
287 |
msgid "There are limits upon which path-names are valid. Spaces are not allowed."
|
288 |
msgstr "Hay límites de validez para nombres de ruta de acceso. Espacios no son permitidos"
|
289 |
|
290 |
+
#: src/addons/backblaze.php:632
|
291 |
msgid "some/path"
|
292 |
msgstr "una/ruta de acceso"
|
293 |
|
294 |
+
#: src/addons/backblaze.php:632
|
295 |
msgid "Bucket name"
|
296 |
msgstr "Nombre de bucket"
|
297 |
|
298 |
+
#: src/addons/backblaze.php:631
|
299 |
msgid "Backup path"
|
300 |
msgstr "Ruta de acceso del respaldo"
|
301 |
|
302 |
+
#: src/addons/backblaze.php:626
|
303 |
msgid "Application key"
|
304 |
msgstr "Llave de aplicación"
|
305 |
|
306 |
+
#: src/addons/backblaze.php:621, src/addons/backblaze.php:621
|
307 |
msgid "here"
|
308 |
msgstr "aquí"
|
309 |
|
310 |
+
#: src/addons/backblaze.php:621
|
311 |
msgid "Get these settings from %s, or sign up %s."
|
312 |
msgstr "Obtenga estos parámetros del %s o inscríbase %s"
|
313 |
|
314 |
+
#: src/addons/backblaze.php:431
|
315 |
msgid "Account Key"
|
316 |
msgstr "Llave de cuenta"
|
317 |
|
318 |
+
#: src/addons/backblaze.php:430, src/addons/backblaze.php:619
|
319 |
msgid "Account ID"
|
320 |
msgstr "ID de cuenta"
|
321 |
|
322 |
+
#: src/class-updraftplus.php:4196
|
323 |
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."
|
324 |
msgstr "Con tal de que su compañia de hospedaje permita http (acceso no-SSL) o haga redireccionar solicitudes a https (el cual es casi siempre el caso) , esto no es problema. Si eso no está configurado todavía entonces usted deberá configurarlo o usar %s para que los vínculos no-https sean automáticamente reemplazados"
|
325 |
|
326 |
+
#: src/class-updraftplus.php:4194, src/class-updraftplus.php:4196
|
327 |
msgid "the migrator add-on"
|
328 |
msgstr "El componente adicional migrator."
|
329 |
|
330 |
+
#: src/class-updraftplus.php:4194
|
331 |
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."
|
332 |
msgstr "La restauración funcionará si todavía tiene un certificado SSL (que pueda usar https) para acceder el sitio. Por lo contrario usted deberá usar %s para buscar/reemplazar la dirección del sitio de manera que el sitio pueda ser visitado sin https."
|
333 |
|
334 |
+
#: src/class-updraftplus.php:4192
|
335 |
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."
|
336 |
msgstr "El set de respaldo es de este sitio pero a la hora de respaldo usted usó %s. El sitio ahora usa %s"
|
337 |
|
338 |
+
#: src/class-updraftplus.php:4187
|
339 |
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."
|
340 |
msgstr "La dirección del sitio web en el set de respaldo (%s) es un poco distinta a la que el sitio tiene ahora (%s). No se espera que esto sea un problema para restaurar este sitio con tal de que las visitas a la dirección previa sigan alcanzado el sitio."
|
341 |
|
355 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
356 |
msgstr "Error: El archivo seleccionado está corrupto. Por favor seleccione un archivo de exportación de UpdraftPlus válido"
|
357 |
|
358 |
+
#: src/admin.php:1368, src/admin.php:4212, src/backup.php:2106,
|
359 |
+
#: src/class-updraftplus.php:2228, src/class-updraftplus.php:2293,
|
360 |
+
#: src/class-updraftplus.php:2427
|
361 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
362 |
msgstr "Un erro fatal de PHP (%s) ha ocurrido: %s"
|
363 |
|
364 |
+
#: src/admin.php:1359, src/admin.php:4198, src/backup.php:2097,
|
365 |
+
#: src/class-updraftplus.php:2219, src/class-updraftplus.php:2286,
|
366 |
+
#: src/class-updraftplus.php:2420
|
367 |
msgid "A PHP exception (%s) has occurred: %s"
|
368 |
msgstr "Una excepción de PHP (%s) a ocurrido: %s "
|
369 |
|
419 |
msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
|
420 |
msgstr "Como se le advirtió previamente (ver: %s), encripción ya no es una funcionalidad de la edición gratis de UpdraftPlus"
|
421 |
|
422 |
+
#: src/admin.php:4808
|
423 |
msgid "Value"
|
424 |
msgstr "Valor"
|
425 |
|
431 |
msgid "Encrypted login failed; trying non-encrypted"
|
432 |
msgstr "Inicio de sesión encriptada falló; tratando de forma no-encriptada"
|
433 |
|
434 |
+
#: src/addons/azure.php:594
|
435 |
msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
|
436 |
msgstr "Usted debe añadir el siguiente URI redireccionado en sun cónsola Azure (bajo \"Parámetros de API\") cuando se le pregunte."
|
437 |
|
443 |
msgid "Cloud Files"
|
444 |
msgstr "Archivos nube"
|
445 |
|
446 |
+
#: src/admin.php:4553
|
447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
448 |
msgstr "Sus parámetros no se guardaron. Por favor refresque la página de parámetros e intente de nuevo"
|
449 |
|
450 |
+
#: src/admin.php:4512
|
451 |
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."
|
452 |
msgstr "Parece que UpdraftPlus fue actualizado a la versión (%s), la cual es distinta a la versión en ejeccución cuando la página de parámetros fue cargada. Por favor recargar la página de parámetros antes de intentar guardar parámetros."
|
453 |
|
456 |
msgid "UpdraftVault"
|
457 |
msgstr "UpdraftVault"
|
458 |
|
459 |
+
#: src/includes/class-wpadmin-commands.php:513
|
460 |
msgid "archive"
|
461 |
msgstr "archivador"
|
462 |
|
463 |
+
#: src/includes/class-wpadmin-commands.php:504
|
464 |
msgid "Extra database"
|
465 |
msgstr "Extra base de datos"
|
466 |
|
504 |
msgid "Browse contents"
|
505 |
msgstr "Dar un vistazo al contenido"
|
506 |
|
507 |
+
#: src/restorer.php:1811
|
508 |
msgid "Skipped tables:"
|
509 |
msgstr "Tablas saltadas:"
|
510 |
|
511 |
+
#: src/class-updraftplus.php:4476
|
512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
513 |
msgstr "Este respaldo de base de datos tiene las siguientes tablas de WordPress excluidas: %s"
|
514 |
|
717 |
msgid "Recommended: optimize your database with WP-Optimize."
|
718 |
msgstr "Recomendado: optimize su base de datos con WP-Optimize"
|
719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
#: src/templates/wp-admin/notices/bottom-notice.php:31,
|
721 |
#: src/templates/wp-admin/notices/horizontal-notice.php:42,
|
722 |
#: src/templates/wp-admin/notices/report-plain.php:33,
|
764 |
msgid "Europe (Ireland)"
|
765 |
msgstr "Europa (Irlanda)"
|
766 |
|
767 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
#: src/templates/wp-admin/settings/tab-addons.php:301
|
769 |
msgid "UpdraftCentral"
|
770 |
msgstr "UpdraftCentral "
|
976 |
msgid "Export / import settings"
|
977 |
msgstr "Parámetros para exportar/importar"
|
978 |
|
979 |
+
#: src/restorer.php:2030
|
980 |
msgid "Processing table (%s)"
|
981 |
msgstr "Procesando tabla (%s)"
|
982 |
|
983 |
+
#: src/restorer.php:1777
|
984 |
msgid "Backup of: %s"
|
985 |
msgstr "Respaldo de: %s"
|
986 |
|
988 |
msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
|
989 |
msgstr "El cliente ha sido eliminado de la cónsola del API de Google Drive. Por favor crear un nuevo proyecto de Google Drive y reconectar con UpdraftPlus"
|
990 |
|
991 |
+
#: src/methods/dropbox.php:785
|
992 |
msgid "%s de-authentication"
|
993 |
msgstr "%s desautenticación"
|
994 |
|
995 |
+
#: src/methods/dropbox.php:631
|
996 |
msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
|
997 |
msgstr "Usted debe añadir lo siguiente como el URI de redirección autorizado en su cónsola de Dropbox (bajo los parámetros del API) cuando se le pregunte"
|
998 |
|
1060 |
msgid "US East (Ohio)"
|
1061 |
msgstr "Este de EUA (Ohio)"
|
1062 |
|
1063 |
+
#: src/addons/onedrive.php:1051
|
1064 |
msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
|
1065 |
msgstr "Este sitio usa un URL que es no-HTTPS o es un host local o URL 127.0.0.1. Por lo tanto usted debe usar el App principal %s %s para autenticar con su cuenta."
|
1066 |
|
1067 |
+
#: src/addons/onedrive.php:700
|
1068 |
msgid "Account is not authorized (%s)."
|
1069 |
msgstr "Cuenta no esta autorizada (%s)"
|
1070 |
|
1071 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873
|
1072 |
msgid "Your IP address:"
|
1073 |
msgstr "Su dirección IP:"
|
1074 |
|
1075 |
+
#: src/addons/onedrive.php:660, src/udaddons/updraftplus-addons.php:873,
|
1076 |
#: src/udaddons/updraftplus-addons.php:887
|
1077 |
msgid "To remove any block, please go here."
|
1078 |
msgstr "Para remover cualquier bloque, por favor vaya aquí:"
|
1079 |
|
1080 |
+
#: src/addons/onedrive.php:645, src/udaddons/updraftplus-addons.php:858
|
1081 |
msgid "An error response was received; HTTP code:"
|
1082 |
msgstr "Una respuesta de error fue recibida; código HTTP:"
|
1083 |
|
1105 |
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."
|
1106 |
msgstr "Su instalación de PHP le falta el módulo openssl; por lo tanto esto puede tomar unos minutos; si no pasa nada entonces deberá intentar con una tamaño de llave mas pequeño o preguntarle a su compañía de hospedaje web como habilitar este módulo de PHP en su configuración."
|
1107 |
|
1108 |
+
#: src/addons/webdav.php:216
|
1109 |
msgid "Path"
|
1110 |
msgstr "Ruta de acceso"
|
1111 |
|
1112 |
+
#: src/addons/webdav.php:211
|
1113 |
msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
|
1114 |
msgstr "Deje este en blanco para usar el valor por defecto (80 para webdav, 443 para webdavs)"
|
1115 |
|
1116 |
+
#: src/addons/webdav.php:203
|
1117 |
msgid "Enter any path in the field below."
|
1118 |
msgstr "Ingrese cualquier ruta de acceso en el campo a continuación"
|
1119 |
|
1120 |
+
#: src/addons/webdav.php:203
|
1121 |
msgid "A host name cannot contain a slash."
|
1122 |
msgstr "El nombre de un host no puede contener un carácter de barra inclinada (slash)."
|
1123 |
|
1124 |
+
#: src/addons/webdav.php:178
|
1125 |
msgid "Protocol (SSL or not)"
|
1126 |
msgstr "Protocolo (SSL o no)"
|
1127 |
|
1128 |
+
#: src/addons/webdav.php:173
|
1129 |
msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
|
1130 |
msgstr "El URL WebDAV se genera completando las opciones a continuación. Si no sabe los detalles, entonces necesitará preguntarle a su proveedor WebDAV."
|
1131 |
|
1133 |
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."
|
1134 |
msgstr "Datos de respuesta no recibidos. Esto usualmente se debe a un problema de conectividad de red (un firewall de salida o una red sobrecargada) entre este sitio y UpdraftPlus.com."
|
1135 |
|
1136 |
+
#: src/methods/s3.php:1129
|
1137 |
msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
|
1138 |
msgstr "La llave de acceso AWS parace ser incorrecta (llaves de acceso válidas %s empiezan con \"AK\")"
|
1139 |
|
1140 |
+
#: src/methods/s3.php:126
|
1141 |
msgid "No settings were found - please go to the Settings tab and check your settings"
|
1142 |
msgstr "No se encontraron parámetros - por favor vaya a la pestaña Parámetros y verifique su configuración."
|
1143 |
|
1243 |
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."
|
1244 |
msgstr "El archivador de este respaldo es de %s MB en tamaño. Si se intenta enviar este por email es muy probable que falle (pocos servidores de email permiten anexos de este tamaño). Si esto sucede deberá cambiar a otro método de almacenamiento remoto."
|
1245 |
|
1246 |
+
#: src/class-updraftplus.php:1835
|
1247 |
msgid "Size: %s MB"
|
1248 |
msgstr "Tamaño : %s MB"
|
1249 |
|
1255 |
msgid "Now"
|
1256 |
msgstr "Ahora"
|
1257 |
|
1258 |
+
#: src/class-updraftplus.php:4213, src/restorer.php:1055
|
1259 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
1260 |
msgstr "Usted deberá habilitar %s para que enlaces permanentes buenos (por ejemplo %s) funcionen."
|
1261 |
|
1361 |
msgid "UpdraftCentral Connection"
|
1362 |
msgstr "Conexión de UpdraftCentral "
|
1363 |
|
1364 |
+
#: src/backup.php:1006, src/class-updraftplus.php:2909
|
1365 |
msgid "The backup was aborted by the user"
|
1366 |
msgstr "Este respaldo fue abortado por el usuario"
|
1367 |
|
1368 |
+
#: src/admin.php:4548
|
1369 |
msgid "Your settings have been saved."
|
1370 |
msgstr "Su configuración ha sido guardada."
|
1371 |
|
1431 |
msgid "Asia Pacific (Seoul)"
|
1432 |
msgstr "Asia Pacífico (Seúl)"
|
1433 |
|
1434 |
+
#: src/restorer.php:1800
|
1435 |
msgid "Uploads URL:"
|
1436 |
msgstr "URL para subir archivos:"
|
1437 |
|
1439 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
1440 |
msgstr "El módulo de PHP %s requerido no esta instalado - Preguntele a su compañia de hospedaje web para que lo habiliten"
|
1441 |
|
1442 |
+
#: src/class-updraftplus.php:4264, src/restorer.php:1819
|
1443 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
1444 |
msgstr "Para importar un sitio de WordPress ordinario a una instalación multisitio se requiere %s."
|
1445 |
|
1446 |
+
#: src/class-updraftplus.php:4260
|
1447 |
msgid "Please read this link for important information on this process."
|
1448 |
msgstr "Por favor lea este vínculo para ver información importante sobre este proceso."
|
1449 |
|
1450 |
+
#: src/class-updraftplus.php:4260
|
1451 |
msgid "It will be imported as a new site."
|
1452 |
msgstr "será importado como un nuevo sitio"
|
1453 |
|
1521 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
1522 |
msgstr "Sus parámetros guardados también afectan lo que se ha respaldado - por ejemplo archivos excluidos."
|
1523 |
|
1524 |
+
#: src/admin.php:4086
|
1525 |
msgid "Skipping: this archive was already restored."
|
1526 |
msgstr "Saltando: este archivador ya fue restaurado"
|
1527 |
|
1553 |
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)."
|
1554 |
msgstr "Este botón borrará todos los parámetros de UpdraftPlus e información de progreso de respaldos en proceso (pero ninguno de sus respaldos actuales de su almacenamiento en la nube)"
|
1555 |
|
1556 |
+
#: src/admin.php:4422
|
1557 |
msgid "Send this backup to remote storage"
|
1558 |
msgstr "Envie este resplado a su almacenamiento remoto"
|
1559 |
|
1560 |
+
#: src/admin.php:4420
|
1561 |
msgid "Check out UpdraftPlus Vault."
|
1562 |
msgstr "Vea UpdraftPlus Vault."
|
1563 |
|
1564 |
+
#: src/admin.php:4420
|
1565 |
msgid "Not got any remote storage?"
|
1566 |
msgstr "¿No tiene almacenamiento remoto?"
|
1567 |
|
1568 |
+
#: src/admin.php:4420
|
1569 |
msgid "settings"
|
1570 |
msgstr "parámetros"
|
1571 |
|
1572 |
+
#: src/admin.php:4420
|
1573 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
1574 |
msgstr "El respaldo no se enviará al almacenamiento remoto - nada ha sido guardado en el %s"
|
1575 |
|
1626 |
msgid "Advanced Tools"
|
1627 |
msgstr "Herramientas avanzadas"
|
1628 |
|
1629 |
+
#: src/addons/googlecloud.php:1049
|
1630 |
msgid "Bucket location"
|
1631 |
msgstr "Ubicación de bucket"
|
1632 |
|
1633 |
+
#: src/addons/googlecloud.php:1044
|
1634 |
msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
|
1635 |
msgstr "Favor notar que Google no soporta todas las clases de almacenamiento en cada ubicación - usted debería leer la documentación de ellos para aprender de la disponibilidad actual."
|
1636 |
|
1637 |
+
#: src/addons/googlecloud.php:1044, src/addons/googlecloud.php:1057
|
1638 |
msgid "This setting applies only when a new bucket is being created."
|
1639 |
msgstr "Este parámetro aplica solo cuando se está creando un bucket nuevo."
|
1640 |
|
1641 |
+
#: src/addons/googlecloud.php:1033
|
1642 |
msgid "You must use a bucket name that is unique, for all %s users."
|
1643 |
msgstr "Usted debe usar un nombre de bucket que sea único para todos usuarios %s"
|
1644 |
|
1645 |
+
#: src/addons/googlecloud.php:979
|
1646 |
msgid "Do not confuse %s with %s - they are separate things."
|
1647 |
msgstr "No confunda %s con %s - Son cosas separadas"
|
1648 |
|
1704 |
msgid "Standard"
|
1705 |
msgstr "Estándar"
|
1706 |
|
1707 |
+
#: src/addons/azure.php:632
|
1708 |
msgid "container"
|
1709 |
msgstr "contenedor"
|
1710 |
|
1711 |
+
#: src/addons/azure.php:632
|
1712 |
msgid "You can enter the path of any %s virtual folder you wish to use here."
|
1713 |
msgstr "Usted puede ingresar la ruta de acceso de cualquier carpeta virtual %s que quiera usar aqui."
|
1714 |
|
1715 |
+
#: src/addons/azure.php:631
|
1716 |
msgid "optional"
|
1717 |
msgstr "opcional"
|
1718 |
|
1719 |
+
#: src/addons/azure.php:627
|
1720 |
msgid "See Microsoft's guidelines on container naming by following this link."
|
1721 |
msgstr "Vea la guía para nombrar contenedores de Microsoft siguiendo este vínculo."
|
1722 |
|
1723 |
+
#: src/addons/azure.php:627
|
1724 |
msgid "Enter the path of the %s you wish to use here."
|
1725 |
msgstr "Ingrese la ruta de acceso del %s que desea usar aquí."
|
1726 |
|
1727 |
+
#: src/addons/azure.php:618
|
1728 |
msgid "This is not your Azure login - see the instructions if needing more guidance."
|
1729 |
msgstr "Este no es su credencial de acceso de Azure - vea las instrucciones si necesita mas ayuda."
|
1730 |
|
1731 |
+
#: src/addons/azure.php:617, src/addons/azure.php:621,
|
1732 |
+
#: src/addons/azure.php:626, src/addons/azure.php:631
|
1733 |
msgid "Azure"
|
1734 |
msgstr "Azure"
|
1735 |
|
1736 |
+
#: src/addons/azure.php:598
|
1737 |
msgid "Create Azure credentials in your Azure developer console."
|
1738 |
msgstr "Crear credenciales de acceso en su cónsola de programador de Azure"
|
1739 |
|
1740 |
+
#: src/addons/azure.php:562
|
1741 |
msgid "Could not create the container"
|
1742 |
msgstr "No se pudo crear el contenedor"
|
1743 |
|
1744 |
+
#: src/addons/azure.php:413
|
1745 |
msgid "Could not access container"
|
1746 |
msgstr "No se pudo acceder el contenedor"
|
1747 |
|
1748 |
+
#: src/class-updraftplus.php:2926
|
1749 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
1750 |
msgstr "Para completar su migración/clone, usted deberá entrar en el sistema remoto y restaurar el set de respaldo"
|
1751 |
|
1773 |
msgid "Not installed"
|
1774 |
msgstr "No está instalado"
|
1775 |
|
1776 |
+
#: src/addons/googlecloud.php:1036, src/addons/s3-enhanced.php:63
|
1777 |
msgid "Storage class"
|
1778 |
msgstr "Clase de almacenamiento"
|
1779 |
|
1780 |
+
#: src/addons/googlecloud.php:1033
|
1781 |
msgid "See Google's guidelines on bucket naming by following this link."
|
1782 |
msgstr "Vea la guía de Google sobre nombres de buckets siguiendo este vínculo."
|
1783 |
|
1784 |
+
#: src/addons/googlecloud.php:1033
|
1785 |
msgid "Enter the name of the %s bucket you wish to use here."
|
1786 |
msgstr "Ingrese el nombre del bucket %s que quiere usar aquí."
|
1787 |
|
1788 |
+
#: src/addons/googlecloud.php:1032
|
1789 |
msgid "Bucket"
|
1790 |
msgstr "Bucket"
|
1791 |
|
1792 |
+
#: src/addons/googlecloud.php:1028
|
1793 |
msgid "Otherwise, you can leave it blank."
|
1794 |
msgstr "De otra manera, lo puede dejar en blanco"
|
1795 |
|
1796 |
+
#: src/addons/googlecloud.php:1028
|
1797 |
msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
|
1798 |
msgstr "Atención. Esto solo se necesita si no ha creado el bucket todavía y desea que UpdraftPlus se lo haga."
|
1799 |
|
1800 |
+
#: src/addons/googlecloud.php:1028
|
1801 |
msgid "Enter the ID of the %s project you wish to use here."
|
1802 |
msgstr "Ingrese el ID del proyecto %s que desea usar aquí."
|
1803 |
|
1804 |
+
#: src/addons/googlecloud.php:991
|
1805 |
msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
|
1806 |
msgstr "Siga este vínculo para la Cónsola de API de Google, y ahi activar el API de Almacenamiento y crear un ID de Cliente en la sección de Acceso de API."
|
1807 |
|
1808 |
+
#: src/addons/googlecloud.php:902
|
1809 |
msgid "You must enter a project ID in order to be able to create a new bucket."
|
1810 |
msgstr "Usted debe ingresar un ID de proyecto para poder crear un bucket nuevo"
|
1811 |
|
1812 |
+
#: src/addons/googlecloud.php:1026
|
1813 |
msgid "Project ID"
|
1814 |
msgstr "ID de Proyecto"
|
1815 |
|
1816 |
+
#: src/addons/googlecloud.php:759
|
1817 |
msgid "You must save and authenticate before you can test your settings."
|
1818 |
msgstr "Debe guardar y autenticar antes de que pueda probar sus parámetros"
|
1819 |
|
1822 |
msgstr "No ha obtenido un token de acceso de Google todavia - Usted necesita autorizar o volver a autorizar su conexión a Google Cloud."
|
1823 |
|
1824 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
|
1825 |
+
#: src/addons/googlecloud.php:894, src/addons/googlecloud.php:941
|
1826 |
msgid "You do not have access to this bucket."
|
1827 |
msgstr "Usted no tine acceso a este bucket"
|
1828 |
|
1829 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1830 |
#: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
|
1831 |
+
#: src/addons/googlecloud.php:718, src/addons/googlecloud.php:894,
|
1832 |
+
#: src/addons/googlecloud.php:941, src/addons/googlecloud.php:985,
|
1833 |
+
#: src/addons/googlecloud.php:985, src/addons/googlecloud.php:1013,
|
1834 |
+
#: src/addons/googlecloud.php:1021, src/addons/googlecloud.php:1033
|
1835 |
msgid "Google Cloud"
|
1836 |
msgstr "Google Cloud"
|
1837 |
|
1838 |
#: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
|
1839 |
+
#: src/addons/googlecloud.php:332, src/addons/googlecloud.php:894,
|
1840 |
+
#: src/addons/googlecloud.php:941
|
1841 |
msgid "%s Service Exception."
|
1842 |
msgstr "Excepción de Servicio %s"
|
1843 |
|
1845 |
msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
|
1846 |
msgstr "Usted no cuenta con UpdraftPlus completamente instalado - favor de desinstalar e instalar de nuevo. Lo mas probable sea que haya habido un mal funcionamiento de WordPress cuando se copiaban los archivos de los plugins."
|
1847 |
|
1848 |
+
#: src/restorer.php:827
|
1849 |
msgid "Deferring..."
|
1850 |
msgstr "Difiriendo..."
|
1851 |
|
1914 |
msgid "Add an additional retention rule..."
|
1915 |
msgstr "Añadir una regla de retención adicional..."
|
1916 |
|
1917 |
+
#: src/restorer.php:2354
|
1918 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
1919 |
msgstr "Esta base de datos necesita ser colocada en MySQL versión %s o posterior."
|
1920 |
|
1921 |
+
#: src/restorer.php:2354
|
1922 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
1923 |
msgstr "Este problema es causado por intentar restaurar una base de datos de una versión muy antigua de MySQL que es incompatible con la base de datos original."
|
1924 |
|
1926 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
1927 |
msgstr "Usted por el momento no tiene cuota de UpdraftPlus Vault"
|
1928 |
|
1929 |
+
#: src/class-updraftplus.php:4333
|
1930 |
msgid "You must upgrade MySQL to be able to use this database."
|
1931 |
msgstr "Usted debe actualizar MySQL para poder usar esta base de datos."
|
1932 |
|
1933 |
+
#: src/class-updraftplus.php:4333
|
1934 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
1935 |
msgstr "El respaldo de la base de datos usa funcionalidad de MySQL no disponibles en la versión antigua (%s) en la que actualmente corre este sitio."
|
1936 |
|
2108 |
msgid "Updraft Vault"
|
2109 |
msgstr "Updraft Vault"
|
2110 |
|
2111 |
+
#: src/addons/azure.php:443, src/addons/backblaze.php:505,
|
2112 |
+
#: src/addons/googlecloud.php:843, src/methods/s3.php:1157
|
2113 |
msgid "Delete failed:"
|
2114 |
msgstr "Supresión falló:"
|
2115 |
|
2145 |
msgid "Existing keys"
|
2146 |
msgstr "Llaves existentes"
|
2147 |
|
|
|
|
|
|
|
|
|
2148 |
#: src/addons/migrator.php:2405
|
2149 |
msgid "Your new key:"
|
2150 |
msgstr "Su nueva llave:"
|
2350 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
2351 |
msgstr "Su reclamo no fue aceptado - a lo mejor ya ha usado esta compra en otro lugar o su periodo de pago para descargar de updraftplus.com ha expirado."
|
2352 |
|
2353 |
+
#: src/restorer.php:2356
|
2354 |
msgid "To use this backup, your database server needs to support the %s character set."
|
2355 |
msgstr "Para usar este respaldo, su servidor de base de datos necesita soportar el set de caracteres %s."
|
2356 |
|
2382 |
msgid "You have made changes to your settings, and not saved."
|
2383 |
msgstr "Usted ha realizado cambios a sus parámetros y no los ha guardado."
|
2384 |
|
2385 |
+
#: src/addons/onedrive.php:1111
|
2386 |
msgid "N.B. %s is not case-sensitive."
|
2387 |
msgstr "Atención - %s no distingue mayúsculas/minúsculas"
|
2388 |
|
2389 |
+
#: src/addons/onedrive.php:1101
|
2390 |
msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
|
2391 |
msgstr "Si OneDrive luego despliega el mensaje \"unathorized_client\", entonces no ingresó un ID de cliente válido aquí."
|
2392 |
|
2393 |
+
#: src/addons/azure.php:599, src/addons/migrator.php:1922,
|
2394 |
+
#: src/addons/onedrive.php:1074
|
2395 |
msgid "For longer help, including screenshots, follow this link."
|
2396 |
msgstr "Para más ayuda, incluyendo capturas de pantalla, siga este vínculo."
|
2397 |
|
2398 |
+
#: src/addons/onedrive.php:1067
|
2399 |
msgid "Create OneDrive credentials in your OneDrive developer console."
|
2400 |
msgstr "Crear credenciales de OneDrive en su cónsola de desarrollo de OneDrive"
|
2401 |
|
2402 |
+
#: src/addons/onedrive.php:1059
|
2403 |
msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
|
2404 |
msgstr "Usted debe añadir lo siguiente como el URI redireccionado autorizado en su cónsola de OneDrive (bajo \"Configuración de API\") cuando se le pregunte."
|
2405 |
|
2406 |
+
#: src/addons/azure.php:592
|
2407 |
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)."
|
2408 |
msgstr "Microsoft Azure no es compatible con sitios hospedados en un localhost o URL 127.0.0.1 - Su cónsola de desarrollo no los permite ( URL actual es: %s)"
|
2409 |
|
2410 |
+
#: src/addons/onedrive.php:1023, src/addons/onedrive.php:1025
|
2411 |
msgid "%s authorisation failed:"
|
2412 |
msgstr "autorización %s falló:"
|
2413 |
|
2414 |
+
#: src/addons/onedrive.php:889, src/addons/onedrive.php:1100,
|
2415 |
+
#: src/addons/onedrive.php:1104
|
2416 |
msgid "OneDrive"
|
2417 |
msgstr "OneDrive"
|
2418 |
|
2419 |
+
#: src/addons/onedrive.php:691
|
2420 |
msgid "Please re-authorize the connection to your %s account."
|
2421 |
msgstr "Por favor reautorizar la conexión a su cuenta %s."
|
2422 |
|
2424 |
msgid "configure it here"
|
2425 |
msgstr "configurelo aquí"
|
2426 |
|
2427 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675
|
2428 |
msgid "To remove the block, please go here."
|
2429 |
msgstr "Para remover el bloqueo, por favor vaya aquí."
|
2430 |
|
2569 |
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)"
|
2570 |
msgstr "Si tiene un usuario administrador de AWS, entonces puede usar este wizard para rápidamente crear un nuevo usuario AWS (IAM) con acceso a solo este bucket (en vez de la cuenta entera)"
|
2571 |
|
2572 |
+
#: src/methods/s3.php:910
|
2573 |
msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
|
2574 |
msgstr "Para crear un nuevo subusuario IAM y llave de acceso que tiene acceso a solo este bucket, use este producto adicional."
|
2575 |
|
2576 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
|
2577 |
msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
|
2578 |
msgstr "Para soporte personal, la habilidad de copiar sitios, más destinos de almacenamiento, respaldos eincriptados para mayor seguridad, mútiples destinos de respaldo, mejor reportes, o propagadas y mucho más dele un vistazo a la versión premium de UpdraftPlus - El plugin de respaldo más popular del mundo."
|
2579 |
|
2580 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
|
2581 |
msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
|
2582 |
msgstr "noticias de UpdraftPlus, materiales de capacitación de alta calidad para ingenieros de WordPress/ dueños de sitios y noticas generales de WordPress. Usted puede cancelar la suscripción en cualquier momento."
|
2583 |
|
2584 |
+
#: src/addons/onedrive.php:660, src/addons/onedrive.php:684,
|
2585 |
#: src/methods/updraftvault.php:675, src/udaddons/updraftplus-addons.php:873,
|
2586 |
#: src/udaddons/updraftplus-addons.php:887
|
2587 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
2588 |
msgstr "Lo más probable es que esto signifique que usted comparte un servidor web con un sitio web hackeado que ha sido usado en previos ataques."
|
2589 |
|
2590 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2591 |
#: src/udaddons/updraftplus-addons.php:887
|
2592 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
2593 |
msgstr "Parece que la dirección IP de su servidor web (%s) está bloqueada"
|
2594 |
|
2595 |
+
#: src/addons/onedrive.php:684, src/methods/updraftvault.php:675,
|
2596 |
#: src/udaddons/updraftplus-addons.php:887
|
2597 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
2598 |
msgstr "UpdraftPlus ha respondido con 'Acceso Negado'."
|
2599 |
|
2600 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2601 |
msgid "Premium WooCommerce plugins"
|
2602 |
msgstr "Plugins premium de WooCommerce"
|
2603 |
|
2604 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
|
2605 |
msgid "Free two-factor security plugin"
|
2606 |
msgstr "Plugin de seguridad de dos factores gratis"
|
2607 |
|
2608 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
|
2609 |
+
msgid "More quality plugins"
|
2610 |
+
msgstr ""
|
2611 |
|
2612 |
+
#: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
|
2613 |
|