Version Description
19/Nov/2018 =
TWEAK: Include the backup set ID in clone ready state file
TWEAK: For Premium users with grand-fathered lifetime updates (i.e. purchased before August 2013), a regression had caused support entitlement expiries to no longer be notified
TWEAK: For Premium users with who have downgraded from unlimited licences to another package, a licence expiry message could show when in fact the real situation was that they just needed to specifically allocate a licence to the site. The relevant message has been adjusted to improve this.
TWEAK: Track "more files" incremental backup locations
TWEAK: Don't show individual add-ons that have not been bought in the account add-ons page if the user has Premium.
TWEAK: Include the raw updates check response information in the internal/advanced dump
TWEAK: Added the UpdraftClone video
Release Info
Developer | DavidAnderson |
Plugin | UpdraftPlus WordPress Backup Plugin |
Version | 1.15.5 |
Comparing to | |
See all releases |
Code changes from version 1.15.3 to 1.15.5
- admin.php +5 -1
- backup.php +33 -5
- class-updraftplus.php +11 -6
- css/updraftplus-admin.css +39 -0
- css/updraftplus-admin.min.css +1 -1
- css/updraftplus-admin.min.css.map +1 -1
- includes/S3.php +16 -16
- includes/class-commands.php +1 -1
- includes/class-remote-send.php +2 -1
- includes/class-wpadmin-commands.php +1 -0
- includes/ftp.class.php +2 -2
- includes/jstree/jstree.js +8 -7
- includes/jstree/jstree.min.js +5 -5
- includes/updraftclone/temporary-clone-restore.php +10 -4
- languages/updraftplus-af.po +563 -489
- languages/updraftplus-ar.po +563 -489
- languages/updraftplus-bg_BG.po +563 -489
- languages/updraftplus-bn_BD.po +563 -489
- languages/updraftplus-bs_BA.po +385 -326
@@ -921,7 +921,7 @@ class UpdraftPlus_Admin {
|
|
921 |
'instance_enabled' => __('Currently enabled', 'updraftplus'),
|
922 |
'instance_disabled' => __('Currently disabled', 'updraftplus'),
|
923 |
'local_upload_started' => __('Local backup upload has started; please check the current status tab to see the upload progress', 'updraftplus'),
|
924 |
-
'local_upload_error' => __('You must select at least one remote storage destination to upload this backup set to.', '
|
925 |
'already_uploaded' => __('(already uploaded)', 'updraftplus'),
|
926 |
'onedrive_folder_url_warning' => __('Please specify the Microsoft OneDrive folder name, not the URL.', 'updraftplus'),
|
927 |
'updraftcentral_cloud' => __('UpdraftCentral Cloud', 'updraftplus'),
|
@@ -5192,6 +5192,10 @@ ENDHERE;
|
|
5192 |
foreach ($opts as $opt) {
|
5193 |
$response['html'] .= '<tr><td>'.htmlspecialchars($opt).'</td><td>'.htmlspecialchars(print_r(UpdraftPlus_Options::get_updraft_option($opt), true)).'</td>';
|
5194 |
}
|
|
|
|
|
|
|
|
|
5195 |
$response['html'] .= '</tbody></table>';
|
5196 |
|
5197 |
ob_start();
|
921 |
'instance_enabled' => __('Currently enabled', 'updraftplus'),
|
922 |
'instance_disabled' => __('Currently disabled', 'updraftplus'),
|
923 |
'local_upload_started' => __('Local backup upload has started; please check the current status tab to see the upload progress', 'updraftplus'),
|
924 |
+
'local_upload_error' => __('You must select at least one remote storage destination to upload this backup set to.', 'updraftplus'),
|
925 |
'already_uploaded' => __('(already uploaded)', 'updraftplus'),
|
926 |
'onedrive_folder_url_warning' => __('Please specify the Microsoft OneDrive folder name, not the URL.', 'updraftplus'),
|
927 |
'updraftcentral_cloud' => __('UpdraftCentral Cloud', 'updraftplus'),
|
5192 |
foreach ($opts as $opt) {
|
5193 |
$response['html'] .= '<tr><td>'.htmlspecialchars($opt).'</td><td>'.htmlspecialchars(print_r(UpdraftPlus_Options::get_updraft_option($opt), true)).'</td>';
|
5194 |
}
|
5195 |
+
|
5196 |
+
// Get the option saved by yahnis-elsts/plugin-update-checker
|
5197 |
+
$response['html'] .= '<tr><td>external_updates-updraftplus</td><td><pre>'.htmlspecialchars(print_r(get_site_option('external_updates-updraftplus'), true)).'</pre></td>';
|
5198 |
+
|
5199 |
$response['html'] .= '</tbody></table>';
|
5200 |
|
5201 |
ob_start();
|
@@ -8,7 +8,7 @@ if (!class_exists('UpdraftPlus_PclZip')) require_once(UPDRAFTPLUS_DIR.'/includes
|
|
8 |
*/
|
9 |
class UpdraftPlus_Backup {
|
10 |
|
11 |
-
|
12 |
|
13 |
private $manifest_path;
|
14 |
|
@@ -114,7 +114,7 @@ class UpdraftPlus_Backup {
|
|
114 |
if (0 === $this->binzip && (!defined('UPDRAFTPLUS_PREFERPCLZIP') || UPDRAFTPLUS_PREFERPCLZIP != true) && (!defined('UPDRAFTPLUS_NO_BINZIP') || !UPDRAFTPLUS_NO_BINZIP) && $updraftplus->current_resumption <9) {
|
115 |
|
116 |
if (@file_exists('/proc/user_beancounters') && @file_exists('/proc/meminfo') && @is_readable('/proc/meminfo')) {
|
117 |
-
$meminfo = @file_get_contents('/proc/meminfo', false, null,
|
118 |
if (is_string($meminfo) && preg_match('/MemTotal:\s+(\d+) kB/', $meminfo, $matches)) {
|
119 |
$memory_mb = $matches[1]/1024;
|
120 |
// If the report is of a large amount, then we're probably getting the total memory on the hypervisor (this has been observed), and don't really know the VPS's memory
|
@@ -305,9 +305,9 @@ class UpdraftPlus_Backup {
|
|
305 |
|
306 |
// Create the results array to send back (just the new ones, not any prior ones)
|
307 |
$files_existing = array();
|
308 |
-
$res_index =
|
309 |
for ($i = $original_index; $i<= $this->index; $i++) {
|
310 |
-
$itext =
|
311 |
$full_path = $this->updraft_dir.'/'.$backup_file_basename.'-'.$whichone.$itext.'.zip';
|
312 |
if (file_exists($full_path)) {
|
313 |
$files_existing[$res_index] = $backup_file_basename.'-'.$whichone.$itext.'.zip';
|
@@ -1478,7 +1478,7 @@ class UpdraftPlus_Backup {
|
|
1478 |
|
1479 |
if ($created != $whichdir && (is_string($created) || is_array($created))) {
|
1480 |
if (is_string($created)) $created =array($created);
|
1481 |
-
foreach ($created as $
|
1482 |
$backup_array[$youwhat][$index] = $fname;
|
1483 |
$itext = (0 == $index) ? '' : $index;
|
1484 |
$index++;
|
@@ -3154,6 +3154,34 @@ class UpdraftPlus_Backup {
|
|
3154 |
|
3155 |
if (!$force_allinone && ($zipfiles_added_thisbatch > UPDRAFTPLUS_MAXBATCHFILES || $reaching_split_limit || $data_added_since_reopen > $maxzipbatch || (time() - $this->zipfiles_lastwritetime) > 2)) {
|
3156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3157 |
@set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
|
3158 |
$something_useful_sizetest = false;
|
3159 |
|
8 |
*/
|
9 |
class UpdraftPlus_Backup {
|
10 |
|
11 |
+
private $index = 0;
|
12 |
|
13 |
private $manifest_path;
|
14 |
|
114 |
if (0 === $this->binzip && (!defined('UPDRAFTPLUS_PREFERPCLZIP') || UPDRAFTPLUS_PREFERPCLZIP != true) && (!defined('UPDRAFTPLUS_NO_BINZIP') || !UPDRAFTPLUS_NO_BINZIP) && $updraftplus->current_resumption <9) {
|
115 |
|
116 |
if (@file_exists('/proc/user_beancounters') && @file_exists('/proc/meminfo') && @is_readable('/proc/meminfo')) {
|
117 |
+
$meminfo = @file_get_contents('/proc/meminfo', false, null, 0, 200);
|
118 |
if (is_string($meminfo) && preg_match('/MemTotal:\s+(\d+) kB/', $meminfo, $matches)) {
|
119 |
$memory_mb = $matches[1]/1024;
|
120 |
// If the report is of a large amount, then we're probably getting the total memory on the hypervisor (this has been observed), and don't really know the VPS's memory
|
305 |
|
306 |
// Create the results array to send back (just the new ones, not any prior ones)
|
307 |
$files_existing = array();
|
308 |
+
$res_index = $original_index;
|
309 |
for ($i = $original_index; $i<= $this->index; $i++) {
|
310 |
+
$itext = empty($i) ? '' : ($i+1);
|
311 |
$full_path = $this->updraft_dir.'/'.$backup_file_basename.'-'.$whichone.$itext.'.zip';
|
312 |
if (file_exists($full_path)) {
|
313 |
$files_existing[$res_index] = $backup_file_basename.'-'.$whichone.$itext.'.zip';
|
1478 |
|
1479 |
if ($created != $whichdir && (is_string($created) || is_array($created))) {
|
1480 |
if (is_string($created)) $created =array($created);
|
1481 |
+
foreach ($created as $fname) {
|
1482 |
$backup_array[$youwhat][$index] = $fname;
|
1483 |
$itext = (0 == $index) ? '' : $index;
|
1484 |
$index++;
|
3154 |
|
3155 |
if (!$force_allinone && ($zipfiles_added_thisbatch > UPDRAFTPLUS_MAXBATCHFILES || $reaching_split_limit || $data_added_since_reopen > $maxzipbatch || (time() - $this->zipfiles_lastwritetime) > 2)) {
|
3156 |
|
3157 |
+
// We are coming towards a limit and about to close the zip, check if this is a more file backup and the manifest file has made it into this zip if not add it
|
3158 |
+
if (apply_filters('updraftplus_include_manifest', false, $this->whichone, $this)) {
|
3159 |
+
|
3160 |
+
$manifest = false;
|
3161 |
+
|
3162 |
+
foreach ($files_zipadded_since_open as $info) {
|
3163 |
+
if ('updraftplus-manifest.json' == $info['file']) $manifest = true;
|
3164 |
+
}
|
3165 |
+
|
3166 |
+
if (!$manifest) {
|
3167 |
+
@touch($zipfile);
|
3168 |
+
$path = array_search('updraftplus-manifest.json', $this->zipfiles_batched);
|
3169 |
+
$zip->addFile($path, 'updraftplus-manifest.json');
|
3170 |
+
$zipfiles_added_thisbatch++;
|
3171 |
+
|
3172 |
+
if (method_exists($zip, 'setCompressionName') && $this->file_should_be_stored_without_compression($this->zipfiles_batched[$path])) {
|
3173 |
+
if (false == ($set_compress = $zip->setCompressionName($this->zipfiles_batched[$path], ZipArchive::CM_STORE))) {
|
3174 |
+
$updraftplus->log("Zip: setCompressionName failed on: $this->zipfiles_batched[$path]");
|
3175 |
+
}
|
3176 |
+
}
|
3177 |
+
|
3178 |
+
// N.B., Since makezip_addfiles() can get called more than once if there were errors detected, potentially $zipfiles_added_thisrun can exceed the total number of batched files (if they get processed twice).
|
3179 |
+
$this->zipfiles_added_thisrun++;
|
3180 |
+
$files_zipadded_since_open[] = array('file' => $path, 'addas' => 'updraftplus-manifest.json');
|
3181 |
+
$data_added_since_reopen += filesize($path);
|
3182 |
+
}
|
3183 |
+
}
|
3184 |
+
|
3185 |
@set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
|
3186 |
$something_useful_sizetest = false;
|
3187 |
|
@@ -1292,7 +1292,7 @@ class UpdraftPlus {
|
|
1292 |
|
1293 |
// Some more remains to download - so let's do it
|
1294 |
// N.B. We use ftell(), which precludes us from using open in append-only ('a') mode - see https://php.net/manual/en/function.fopen.php
|
1295 |
-
if (!($fh = fopen($fullpath, 'c'))) {
|
1296 |
$this->log("Error opening local file: $fullpath");
|
1297 |
$this->log($file.": ".__("Error", 'updraftplus').": ".__('Error opening local file: Failed to download', 'updraftplus'), 'error');
|
1298 |
return false;
|
@@ -1336,7 +1336,7 @@ class UpdraftPlus {
|
|
1336 |
} else {
|
1337 |
$ret = filesize($fullpath);
|
1338 |
// fseek returns - on success
|
1339 |
-
if (false == ($fh = fopen($fullpath, 'c')) || 0 !== fseek($fh, $ret)) {
|
1340 |
$this->log("Error opening local file: $fullpath");
|
1341 |
$this->log($file.": ".__("Error", 'updraftplus').": ".__('Error opening local file: Failed to download', 'updraftplus'), 'error');
|
1342 |
return false;
|
@@ -2404,8 +2404,9 @@ class UpdraftPlus {
|
|
2404 |
|
2405 |
$args = func_num_args();
|
2406 |
|
2407 |
-
|
2408 |
-
|
|
|
2409 |
$this->jobdata[$key] = $value;
|
2410 |
}
|
2411 |
} else {
|
@@ -3532,7 +3533,7 @@ class UpdraftPlus {
|
|
3532 |
return;
|
3533 |
}
|
3534 |
|
3535 |
-
$backup_array['nonce'] = $this->
|
3536 |
$backup_array['service'] = $this->jobdata_get('service');
|
3537 |
$backup_array['service_instance_ids'] = array();
|
3538 |
$backup_array['always_keep'] = $this->jobdata_get('always_keep', false);
|
@@ -3627,7 +3628,11 @@ class UpdraftPlus {
|
|
3627 |
|
3628 |
// Clear schedule so that we don't stack up scheduled backups
|
3629 |
wp_clear_scheduled_hook('updraft_backup');
|
3630 |
-
if ('manual' == $interval)
|
|
|
|
|
|
|
|
|
3631 |
$previous_interval = UpdraftPlus_Options::get_updraft_option('updraft_interval');
|
3632 |
|
3633 |
$valid_schedules = wp_get_schedules();
|
1292 |
|
1293 |
// Some more remains to download - so let's do it
|
1294 |
// N.B. We use ftell(), which precludes us from using open in append-only ('a') mode - see https://php.net/manual/en/function.fopen.php
|
1295 |
+
if (!($fh = fopen($fullpath, 'c'))) {// phpcs:ignore PHPCompatibility.ParameterValues.NewFopenModes.cFound -- Passing "c" as the $mode to fopen() is not supported in PHP 5.2.5 or lower. Found 'c'
|
1296 |
$this->log("Error opening local file: $fullpath");
|
1297 |
$this->log($file.": ".__("Error", 'updraftplus').": ".__('Error opening local file: Failed to download', 'updraftplus'), 'error');
|
1298 |
return false;
|
1336 |
} else {
|
1337 |
$ret = filesize($fullpath);
|
1338 |
// fseek returns - on success
|
1339 |
+
if (false == ($fh = fopen($fullpath, 'c')) || 0 !== fseek($fh, $ret)) {// phpcs:ignore PHPCompatibility.ParameterValues.NewFopenModes.cFound -- Passing "c" as the $mode to fopen() is not supported in PHP 5.2.5 or lower. Found 'c'
|
1340 |
$this->log("Error opening local file: $fullpath");
|
1341 |
$this->log($file.": ".__("Error", 'updraftplus').": ".__('Error opening local file: Failed to download', 'updraftplus'), 'error');
|
1342 |
return false;
|
2404 |
|
2405 |
$args = func_num_args();
|
2406 |
|
2407 |
+
// func_get_arg() could not be used in parameter lists prior to PHP 5.3, so, we get it as a variable
|
2408 |
+
if (1 == $args && null !== ($first_arg = func_get_arg(0)) && is_array($first_arg)) {
|
2409 |
+
foreach ($first_arg as $key => $value) {
|
2410 |
$this->jobdata[$key] = $value;
|
2411 |
}
|
2412 |
} else {
|
3533 |
return;
|
3534 |
}
|
3535 |
|
3536 |
+
$backup_array['nonce'] = $this->file_nonce;
|
3537 |
$backup_array['service'] = $this->jobdata_get('service');
|
3538 |
$backup_array['service_instance_ids'] = array();
|
3539 |
$backup_array['always_keep'] = $this->jobdata_get('always_keep', false);
|
3628 |
|
3629 |
// Clear schedule so that we don't stack up scheduled backups
|
3630 |
wp_clear_scheduled_hook('updraft_backup');
|
3631 |
+
if ('manual' == $interval) {
|
3632 |
+
// Clear increments schedule as the file schedule is manual
|
3633 |
+
wp_clear_scheduled_hook('updraft_backup_increments');
|
3634 |
+
return 'manual';
|
3635 |
+
}
|
3636 |
$previous_interval = UpdraftPlus_Options::get_updraft_option('updraft_interval');
|
3637 |
|
3638 |
$valid_schedules = wp_get_schedules();
|
@@ -238,6 +238,45 @@ span.tokens-number {
|
|
238 |
padding-right: 10px;
|
239 |
}
|
240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons {
|
242 |
text-decoration: none;
|
243 |
font-size: 20px;
|
238 |
padding-right: 10px;
|
239 |
}
|
240 |
|
241 |
+
.updraft_migrate_widget_temporary_clone_stage0_container {
|
242 |
+
display: -ms-flexbox;
|
243 |
+
display: flex;
|
244 |
+
-ms-flex-direction: column;
|
245 |
+
flex-direction: column;
|
246 |
+
}
|
247 |
+
|
248 |
+
.updraft_migrate_widget_temporary_clone_stage0_box {
|
249 |
+
margin-right: 20px;
|
250 |
+
height: 100%;
|
251 |
+
width: 100%;
|
252 |
+
-ms-flex-preferred-size: 100%;
|
253 |
+
flex-basis: 100%;
|
254 |
+
}
|
255 |
+
|
256 |
+
.updraft_migrate_widget_temporary_clone_stage0_box iframe {
|
257 |
+
float: none;
|
258 |
+
}
|
259 |
+
|
260 |
+
@media (min-width: 1024px) {
|
261 |
+
|
262 |
+
.updraft_migrate_widget_temporary_clone_stage0_container {
|
263 |
+
-ms-flex-direction: row;
|
264 |
+
flex-direction: row;
|
265 |
+
-ms-flex-wrap: wrap;
|
266 |
+
flex-wrap: wrap;
|
267 |
+
}
|
268 |
+
|
269 |
+
.updraft_migrate_widget_temporary_clone_stage0_box {
|
270 |
+
-ms-flex-preferred-size: 45%;
|
271 |
+
flex-basis: 45%;
|
272 |
+
}
|
273 |
+
|
274 |
+
.updraft_migrate_widget_temporary_clone_stage0_box iframe {
|
275 |
+
float: right;
|
276 |
+
}
|
277 |
+
|
278 |
+
}
|
279 |
+
|
280 |
.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons {
|
281 |
text-decoration: none;
|
282 |
font-size: 20px;
|
@@ -1,2 +1,2 @@
|
|
1 |
-
@keyframes udp_blink{from{opacity:1;transform:scale(1)}to{opacity:.4;transform:scale(0.85)}}.max-width-600{max-width:600px}.width-900{max-width:900px}.width-80{width:80%}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}.udpdraft__lifted{box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#updraft-wrap a .dashicons{text-decoration:none}.updraft-field-description,table.form-table td p.updraft-field-description{font-size:90%;line-height:1.2;font-style:italic;margin-bottom:5px}label.updraft_checkbox{display:block;margin-bottom:4px;margin-left:26px}label.updraft_checkbox>input[type=checkbox]{margin-left:-25px}div[id*="updraft_include_"]{margin-bottom:9px}.settings_page_updraftplus input[type="file"]{border:0}.settings_page_updraftplus .wipe_settings{padding-bottom:10px}.settings_page_updraftplus input[type="text"]{font-size:14px}.settings_page_updraftplus select{border-radius:4px;max-width:100%}input.updraft_input--wide,textarea.updraft_input--wide{max-width:442px;width:100%}#updraft-wrap .button-large{font-size:1.3em}.main-dashboard-buttons{border-width:4px;border-radius:12px;letter-spacing:0;font-size:17px;font-weight:bold;padding-left:.7em;padding-right:2em;padding:.3em 1em;line-height:1.7em;background:transparent;position:relative;border:2px solid;transition:all .2s;vertical-align:baseline;box-sizing:border-box;text-align:center;line-height:1.3em;margin-left:.3em;text-transform:none;line-height:1;text-decoration:none}.button-restore{border-color:#629ec0;color:#629ec0}.dashboard-main-sizing{border-width:4px;width:190px;line-height:1.7em}p.updraftplus-option{margin-top:0;margin-bottom:5px}p.updraftplus-option-inline{display:inline-block;padding-right:20px}span.updraftplus-option-label{display:block}#updraft-navtab-migrate-content .postbox{padding:18px}.updraftclone-main-row{display:-ms-flexbox;display:flex}.updraftclone-tokens{background:#f5f5f5;padding:20px;border-radius:10px;margin-right:20px;max-width:300px}.updraftclone-tokens p{margin:0}.updraftclone_action_box{background:#f5f5f5;padding:20px;border-radius:10px;-ms-flex:1;flex:1}.updraftclone_action_box p:first-child{margin-top:0}.updraftclone_action_box p:last-child{margin-bottom:0}span.tokens-number{font-size:46px;display:block}.button.updraft_migrate_widget_temporary_clone_show_stage0{display:none;position:absolute;right:0;top:0;height:100%;border-left:1px solid #CCC;padding-left:10px;padding-right:10px}.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons{text-decoration:none;font-size:20px;line-height:inherit}.opened .button.updraft_migrate_widget_temporary_clone_show_stage0{display:inline-block}.opened .updraft_migrate_widget_temporary_clone_stage0{background:#f5f5f5;padding:20px;border-radius:8px;margin-bottom:21px}.clone-list{clear:both;width:100%;margin-top:40px}.clone-list table{width:100%;text-align:left}.clone-list table tr th{background:#e4e4e4}.clone-list table tr td{background:#f5f5f5;word-break:break-word}.clone-list table tr:nth-child(odd) td{background:#fafafa}.clone-list table td,.clone-list table th{padding:6px}.updraftplus-clone .updraft_row{padding-left:0;padding-right:0}button#updraft_migrate_createclone+.updraftplus_spinner{margin-top:13px}.button.button-hero.updraftclone_show_step_1{white-space:normal;height:auto;line-height:14px;padding-top:10px;padding-bottom:10px}.button.button-hero.updraftclone_show_step_1 span.dashicons{height:auto}.updraftplus_clone_status{color:red}a.updraft_migrate_add_site--trigger span.dashicons{text-decoration:none}.button-restore:hover,.button-migrate:hover,.button-backup:hover,.button-view-log:hover,.button-mass-selectors:hover,.button-delete:hover,.button-entity-backup:hover,.udp-button-primary:hover{border-color:#df6926;color:#df6926}.button-migrate{color:#eea920;border-color:#eea920}#updraft_migrate_tab_main{padding:8px}.updraft_migrate_widget_module_content{background:#FFF;border-radius:0;position:relative}body.js #updraft_migrate .updraft_migrate_widget_module_content{display:none}.updraft_migrate_widget_module_content>h3,div[class*="updraft_migrate_widget_temporary_clone_stage"]>h3{margin-top:0}.updraft_migrate_widget_module_content header{position:relative;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-grid-column-align:center;justify-items:center;margin-top:-18px;margin-left:-18px;margin-right:-18px;margin-bottom:15px;border-bottom:1px solid #CCC}.updraft_migrate_widget_module_content header h3,.updraft_migrate_widget_module_content header button.button.close{padding:10px;line-height:20px;height:auto;margin:0}.updraft_migrate_widget_module_content button.button.close{text-decoration:none;padding-left:5px;border-right:1px solid #CCC}.updraft_migrate_widget_module_content button.button.close .dashicons{margin-top:1px}.updraft_migrate_widget_module_content header h3{margin:0}.updraft_migrate_intro button.button.button-primary.button-hero{max-width:235px;word-wrap:normal;white-space:normal;line-height:1;height:auto;padding-top:13px;padding-bottom:13px;text-align:left;position:relative;margin-right:10px;margin-bottom:10px}.updraft_migrate_intro button.button.button-primary.button-hero .dashicons{position:absolute;left:10px;top:calc(50% - 8px)}#updraft_migrate .ui-widget-content a{color:#1c94c4}#updraft-wrap .ui-accordion .ui-accordion-header{background:#f6f6f6;margin:0;border-radius:0;padding-left:.5em;padding-right:.7em}#updraft-wrap .ui-widget{font-family:inherit}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w{background-position:-96px 0}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s{background-position:-64px 0}#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon{left:auto;right:5px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px rgba(91,157,217,0.22),0 0 2px 1px rgba(30,140,190,0.3);background:#FFF}#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons{color:#0572aa;opacity:1}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active{background:#f6f6f6;border-bottom:2px solid #0572aa;box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3)}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus{box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child){border-top:0}#updraft-wrap .ui-accordion .ui-accordion-header .dashicons{opacity:.4;margin-right:10px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:1}.updraft_next_scheduled_backups_wrapper{display:-ms-flexbox;display:flex;background:#FFF;-ms-grid-column-align:center;justify-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_next_scheduled_backups_wrapper>div{width:50%;background:#FFF;height:auto;padding:33px;box-sizing:border-box}.updraft_backup_btn_wrapper{text-align:center;border-left:1px solid #f1f1f1;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}#updraft-delete-waitwarning span.spinner{visibility:visible;float:none;margin:0;margin-right:10px}button#updraft-backupnow-button .spinner,button#updraft-backupnow-button .dashicons-yes{display:none}button#updraft-backupnow-button.loading .spinner{display:inline-block;visibility:visible;margin-top:13px;margin-right:0}button#updraft-backupnow-button.loading{background-color:#efefef;border-color:#CCC;text-shadow:0 -1px 1px #bbc3c7,1px 0 1px #bbc3c7,0 1px 1px #bbc3c7,-1px 0 1px #bbc3c7;box-shadow:none}button#updraft-backupnow-button.finished .dashicons-yes{display:inline-block;visibility:visible;font-size:42px;margin-right:0;margin-top:2px}.updraft_next_scheduled_entity{width:50%;display:inline-block;float:left}.updraft_next_scheduled_entity .dashicons{color:#CCC;font-size:20px}.updraft_next_scheduled_entity strong{font-size:20px}.updraft_next_scheduled_heading{margin-bottom:10px}.updraft_next_scheduled_date_time{color:#46a84b}.updraft_time_now_wrapper{margin-top:68px;width:100%}.updraft_time_now_label,.updraft_time_now{display:inline-block;padding:7px}.updraft_time_now_label{background:#b7b7b7;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#FFF;margin-right:0;text-shadow:0 1px 2px rgba(0,0,0,0.4)}.updraft_time_now{background:#f1f1f1;border-top-right-radius:4px;border-bottom-right-radius:4px;margin-left:-3px}#updraft_lastlogmessagerow{margin:6px 0}#updraft_lastlogmessagerow{clear:both;padding:.25px 0}#updraft_lastlogmessagerow .updraft-log-link{float:right;margin-top:-2.5em;margin-right:2px}#updraft_lastlogmessagerow>div{clear:both;background:#FFF;padding:18px}#updraft_activejobs_table{overflow:hidden;width:100%;background:#fafafa;padding:0}.updraft_requeststart{padding:15px 33px;text-align:center}.updraft_requeststart .spinner{visibility:visible;float:none;vertical-align:middle;margin-top:-2px}a.updraft_jobinfo_delete.disabled{opacity:.4;color:inherit;text-decoration:none}.updraft_row{clear:both;transition:.3s all;padding:15px 33px}.updraft_row.deleting{opacity:.4}.updraft_existing_backups_count{padding:2px 8px;font-size:12px;background:#ca4a1e;color:#FFF;font-weight:bold;border-radius:10px}.form-table .existing-backups-table input[type="checkbox"]{border-radius:0}.form-table .existing-backups-table .check-column{width:40px;padding:0;padding-top:8px}.existing-backups-buttons{font-size:11px;line-height:1.4em;border-width:3px}.existing-backups-restore-buttons{font-size:11px;line-height:1.4em;border-width:3px}.button-delete{color:#e23900;border-color:#e23900;font-size:14px;line-height:1.4em;border-width:2px;margin-right:10px}.button-view-log,.button-mass-selectors{color:darkgrey;border-color:darkgrey;font-size:14px;line-height:1.4em;border-width:2px;margin-top:-1px}.button-view-log{width:120px}.button-existing-restore{font-size:14px;line-height:1.4em;border-width:2px;width:110px}.main-restore{margin-right:3%;margin-left:3%}.button-entity-backup{color:#555;border-color:#555;font-size:11px;line-height:1.4em;border-width:2px;margin-right:5px}.button-select-all{width:122px}.button-deselect{width:92px}#ud_massactions>.display-flex>.mass-selectors-margins,#updraft-delete-waitwarning>.display-flex>.mass-selectors-margins{margin-right:-4px}.udp-button-primary{border-width:4px;color:#0073aa;border-color:#0073aa;font-size:14px;height:40px}#ud_massactions .button-delete{margin-right:0}.stored_local{border-radius:5px;background-color:#007fe7;padding:3px 5px 5px 5px;color:#FFF;font-size:75%}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label>*{vertical-align:middle}.backup_date_label .dashicons{font-size:18px}.backup_date_label .clear-right{clear:right}.existing-backups-table .backup_date_label>div{font-weight:bold}.udp-logo-70{width:70px;height:70px;float:left;padding-right:25px}h3 .thank-you{margin-top:0}.ws_advert{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.dismiss-dash-notice{float:right;position:relative;top:-20px}.updraft_exclude_container,.updraft_include_container{margin-left:24px;margin-top:5px;margin-bottom:10px;padding:15px;border:1px solid #DDD}label.updraft-exclude-label{font-weight:500;margin-bottom:5px;display:block}.updraft_add_exclude_item,#updraft_include_more_paths_another{display:inline-block;margin-top:10px}input.updraft_exclude_entity_field,.form-table td input.updraft_exclude_entity_field,.updraftplus-morefiles-row input[type=text]{width:calc(100% - 70px);max-width:400px}@media screen and (max-width:782px){.form-table td input.updraft_exclude_entity_field,.form-table td .updraftplus-morefiles-row input[type=text]{display:inline-block}}.updraft_exclude_entity_delete.dashicons,.updraft_exclude_entity_edit.dashicons,.updraft_exclude_entity_update.dashicons,.updraftplus-morefiles-row a.dashicons{margin-top:2px;font-size:20px;box-shadow:none;line-height:1;padding:3px;margin-right:4px}.updraft_exclude_entity_delete,.updraft_exclude_entity_delete:hover,.updraftplus-morefiles-row-delete{color:#ff6347}.updraft_exclude_entity_update.dashicons,.updraft_exclude_entity_update.dashicons:hover{color:#008000;font-weight:bold;font-size:22px;margin-left:4px}.updraft_exclude_entity_edit{margin-left:4px}.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete{display:none}.updraft-exclude-panel-heading{margin-bottom:8px}.updraft-exclude-panel-heading h3{margin:.5em 0 .5em 0}.updraft-exclude-submit.button-primary{margin-top:5px}.updraft_exclude_actions_list{font-weight:bold}.updraft-exclude-link{cursor:pointer}#updraft_include_more_options{padding-left:25px}#updraft_report_cell .updraft_reportbox,.updraft_small_box{padding:12px;margin:8px 0;border:1px solid #CCC;position:relative}#updraft_report_cell button.updraft_reportbox_delete,.updraft_box_delete_button,.updraft_small_box .updraft_box_delete_button{padding:4px;padding-top:6px;border:0;background:transparent;position:absolute;top:4px;right:4px;cursor:pointer}#updraft_report_cell button.updraft_reportbox_delete:hover{color:#de3c3c}a.updraft_report_another .dashicons{text-decoration:none;margin-top:2px}.updraft_report_dbbackup.updraft_report_disabled{color:#CCC}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_email{display:block;width:calc(100% - 50px);margin-bottom:9px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td{background-color:#efefef}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td{background-color:#e8e8e8}.updraft_settings_sectionheading{display:none}.updraft-backupentitybutton-disabled{background-color:transparent;border:0;color:#0074a2;text-decoration:underline;cursor:pointer;clear:none;float:left}.updraft-backupentitybutton{margin-left:8px}.updraft-bigbutton{padding:2px 0 !important;margin-right:14px !important;font-size:22px !important;min-height:32px;min-width:180px}tr[class*="_updraft_remote_storage_border"]{border-top:1px solid #CCC}.updraft_multi_storage_options{float:right;clear:right;margin-bottom:5px !important}.updraft_toggle_instance_label{vertical-align:top !important}.updraft_debugrow th{float:right;text-align:right;font-weight:bold;padding-right:8px;min-width:140px}.updraft_debugrow td{min-width:300px;vertical-align:bottom}#updraft_webdav_host_error,.onedrive_folder_error{color:red}.updraft_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}.updraft_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}.updraft_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}.updraft_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}.updraft_jstree_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}.updraft_jstree_info_container p{margin:1px;padding-left:10px;font-size:14px}#updraft_zip_download_item{display:none;color:#0073aa;padding-left:10px}#updraft_zip_download_notice{padding-left:10px}#updraft_exclude_files_folders_jstree{max-height:200px;overflow-y:scroll}.updraft_jstree{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;width:100%;border:1px solid #CCC;background:#fafafa;margin-bottom:5px;margin-top:4px;box-shadow:0 5px 8px rgba(0,0,0,0.1)}div#updraft_more_files_container::before{content:' ';width:11px;height:11px;display:block;background:#fafafa;position:absolute;top:0;left:20px;border-top:1px solid #CCC;border-left:1px solid #CCC;transform:translatey(-7px) rotate(45deg)}input.updraft_more_path_editing{border-color:#0285ba}input.updraft_more_path_editing ~ a.dashicons{display:none}#updraft_jstree_buttons{padding:10px;background:#e6e6e6}#updraft_jstree_container{height:300px;width:100%;overflow:auto}#updraft_more_files_container button{line-height:20px}#updraft_parent_directory{margin:10px 10px 4px 10px;padding-left:3px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete,.updraftplus-morefiles-row-edit{cursor:pointer}#updraft-wrap .form-table th{width:230px}#updraft-wrap .form-table .existing-backups-table th{width:auto}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{display:inline-block}.updraft-viewlogdiv input,.updraft-viewlogdiv a{border:0;background-color:transparent;color:#000;margin:0;padding:3px 4px;font-size:16px;line-height:26px}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.button.button-remove{color:white;background-color:#de3c3c;border-color:#c00000;box-shadow:0 1px 0 #c10100}.button.button-remove:hover,.button.button-remove:focus{border-color:#C00;color:#FFF;background:#C00}body.admin-color-midnight .button.button-remove{color:#de3c3c;background-color:#f7f7f7;border-color:#CCC;box-shadow:0 1px 0 #CCC}body.admin-color-midnight .button.button-remove:hover,body.admin-color-midnight .button.button-remove:focus{border-color:#ba281f}body.admin-color-midnight .button.button-remove:focus{box-shadow:inherit;box-shadow:0 0 3px rgba(0,115,170,0.8)}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file{padding:1px;background:#ececec;border:solid 1px #CCC;margin:4px 0}.updraft_premium section{margin-bottom:20px}.updraft_premium_cta{background:#FFF;margin-top:30px;padding:0;border-left:4px solid #db6a03}.updraft_premium_cta a{font-weight:normal}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase}.updraft_premium_cta__top{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:18px 30px}.updraft_premium_cta__bottom{background:#f9f9f9;padding:5px 30px}.updraft_premium_cta__summary{margin-right:60px}.updraft_premium_cta h2{font-size:28px;font-weight:200;line-height:1;margin:0;margin-bottom:5px;letter-spacing:.05rem;color:#db6a03}.updraft_premium_cta ul li::after{color:#CCC}@media only screen and (max-width:768px){.updraft_premium_cta__top{-ms-flex-direction:column;flex-direction:column;text-align:center;-ms-flex-align:center;align-items:center}.updraft_premium_cta__summary{margin-right:0;margin-bottom:30px}}.udp-box{background:#FFF;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,0.1);text-align:center}.udp-box h3{margin:0}.udp-box__heading{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;background:0;box-shadow:none}.updraft-more-plugins{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;flex-wrap:wrap}.updraft-more-plugins img{max-width:200px;width:100%;display:inline-block}.updraft-more-plugins .udp-box{box-sizing:border-box;width:24%}.updraft-more-plugins .udp-box p:last-child{margin-bottom:0;padding-bottom:0}.updraft_premium_description_list{text-align:left;margin:0;font-size:12px}ul.updraft_premium_description_list,ul#updraft_restore_warnings{list-style:disc inside}ul.updraft_premium_description_list li{display:inline}ul.updraft_premium_description_list li::after{content:" | "}ul.updraft_premium_description_list li:last-child::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraftplus_com_login_status,.updraftplus_com_key_status{display:none;border-left-color:#dc3232 !important;background:#FFF;border-left:4px solid #FFF;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraft_feat_table{border:0;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_th,.updraft_feat_table td{border:1px solid #f1f1f1;border-collapse:collapse;font-size:120%;background-color:white;text-align:center;padding:15px}.updraft_feat_table td{border-bottom-width:4px}.updraft_feat_table td:first-child{border-left:0}.updraft_feat_table td:last-child{border-right:0}.updraft_feat_table tr:last-child td{border-bottom:0}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){background-color:rgba(241,241,241,0.38);width:190px}.updraft_feat_table__header td img{display:block;margin:0 auto}.updraft_feat_table__header td{text-align:center}.updraft_feat_table .installed{font-size:14px}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.updraft_feat_table h4{margin:5px 0}.updraft_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.updraft_feat_table .dashicons-yes,.updraft_feat_table .updraft-yes{color:green}.updraft_feat_table .dashicons-no-alt,.updraft_feat_table .updraft-no{color:red}.updraft_tick_cell{text-align:center}.updraft_tick_cell img{margin:4px 0;height:24px}.ud_downloadstatus__close{border:0;background:transparent;width:auto;font-size:20px;padding:0;cursor:pointer}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#0572aa;height:8px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}div[class^="updraftplus_downloader_container_"]{padding:10px}tr.updraftplusmethod h3{margin:0}tr.updraftplusmethod img{max-width:100%}#updraft_retain_db_rules .updraft_retain_rules_delete,#updraft_retain_files_rules .updraft_retain_rules_delete{cursor:pointer;color:red;font-size:120%;font-weight:bold;border:0;border-radius:3px;padding:2px;margin:0 6px;text-decoration:none;display:inline-block}#updraft_retain_db_rules .updraft_retain_rules_delete:hover,#updraft_retain_files_rules .updraft_retain_rules_delete:hover{cursor:pointer;color:white;background:red}#updraft_backup_started{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.blockUI.blockOverlay.ui-widget-overlay{background:#000}.updraft_success_popup{text-align:center;padding-bottom:30px}.updraft_success_popup>.dashicons{font-size:100px;width:100px;height:100px;line-height:100px;padding:0;border-radius:50%;margin-top:30px;display:block;margin-left:auto;margin-right:auto;background:#e2e6e5}.updraft_success_popup>.dashicons.dashicons-yes{text-indent:-5px}.updraft_success_popup.success>.dashicons{color:green}.updraft_success_popup.warning>.dashicons{color:#888}.updraft_success_popup--message{padding:20px}.button.updraft-close-overlay .dashicons{text-decoration:none;font-size:20px;margin-left:-5px;padding:0}.updraft_saving_popup img{animation-name:udp_blink;animation-duration:610ms;animation-iteration-count:infinite;animation-direction:alternate;animation-timing-function:ease-out}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.updraft_all-files{color:blue}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_activejobsrow th{max-width:112px;margin:0;padding:13px 0 0 0}#updraft_lastlogmessagerow .last-message{padding-top:20px;display:block}.updraft_simplepie{vertical-align:top}.download-backups{margin-top:8px}.download-backups .updraft_download_button{margin-right:6px}.download-backups .ud-whitespace-warning,.download-backups .ud-bom-warning{background-color:pink;padding:8px;margin:4px;border:1px dotted}.download-backups .ul{list-style:none inside;max-width:800px;margin-top:6px;margin-bottom:12px}#updraft-plupload-modal{margin:16px 0}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:100%}.ud_downloadstatus{padding:10px 0}#ud_massactions,#updraft-delete-waitwarning{padding:14px;background:#f1f1f1;position:absolute;left:0;top:100%}#ud_massactions>*,#updraft-delete-waitwarning>*{vertical-align:middle}#ud_massactions .updraftplus-remove{display:inline-block;margin-right:0}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative}small.ud_massactions-tip{display:inline-block;opacity:.5;font-style:italic;margin-left:20px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:35px;position:relative}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}#updraft_restorer_dboptions{padding:12px;margin:8px 0 4px 0;border:dashed 1px}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraft_debugrow th{vertical-align:top;padding-top:6px;max-width:140px}.expertmode p{font-size:125%}.expertmode .call-wp-action{width:300px;height:22px}.updraftplus-lock-advert{clear:left;max-width:600px}.uncompressed-data{clear:left;max-width:600px}.delete-old-directories{padding:8px;padding-bottom:12px}.active-jobs{width:100%;text-align:center;padding:33px}.job-id{margin-top:0;margin-bottom:8px}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#1d8ec2;transition:width .3s}.curstage{z-index:1;border-radius:2px;margin-top:8px;width:100%;height:26px;line-height:26px;position:relative;text-align:center;font-style:italic;color:#FFF;background-color:#b7b7b7;text-shadow:0 1px 2px rgba(0,0,0,0.3)}.curstage-info{display:inline-block;z-index:2}.retain-files{width:48px}.backup-interval-description tr td div{max-width:670px}#updraft-manualdecrypt-modal{width:85%;margin:6px;margin-left:100px}.directory-permissions{font-size:110%;font-weight:bold}.double-warning{border:1px solid;padding:6px}.raw-backup-info{font-style:italic;font-weight:bold;font-size:120%}.updraft_existingbackup_date{width:22%;max-width:140px}.updraft_existing_backups_wrapper{margin-top:20px;border-top:1px solid #DDD}.updraft-no-backups-msg{text-align:center}.tr-bottom-4{margin-bottom:4px}.existing-backups-table th{padding:8px 10px}.form-table .backup-date{width:172px}.form-table .backup-data{width:426px}.form-table .updraft_backup_actions{width:272px}.existing-date{box-sizing:border-box;max-width:140px;width:25%}.line-break-tr{height:2px;padding:1px;margin:0}.line-break-td{margin:0;padding:0}.td-line-color{height:2px;background-color:#888}.raw-backup{max-width:140px}.existing-backups-actions{padding:1px;margin:0}.existing-backups-border{height:2px;padding:1px;margin:0}.existing-backups-border>td{margin:0;padding:0}.existing-backups-border>div{height:2px;background-color:#AAA}.updraft_existing_backup_date{max-width:140px}.updraftplus-upload{margin-right:6px;float:left;clear:none}.before-restore-button{padding:1px;margin:0}.before-restore-button div{float:none;display:inline-block}.table-separator-tr{height:2px;padding:1px;margin:0}.table-separator-td{margin:0;padding:0}.end-of-table-div{height:2px;background-color:#AAA}.last-backup-job{padding-top:3% !important}.line-height-03{line-height:.3 !important}.line-height-13{line-height:1.3 !important}.line-height-23{line-height:2.3 !important}#updraft_diskspaceused{color:#df6926}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}.dashicons{line-height:inherit;font-size:inherit}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important;padding-bottom:20px}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option{float:left;width:33%;text-align:center;padding-top:20px}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3:first-child{margin-top:5px !important}.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools{display:none}.expertmode .advanced_settings_container .advanced_settings_content .site_info{display:block}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:inline-block;cursor:pointer;padding:5px;color:#000}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text{font-size:16px}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover{background-color:#eaeaea}.expertmode .advanced_settings_container .advanced_settings_menu .active{background-color:#3498db;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_menu .active:hover{background-color:#72c5fd;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_content input#import_settings{height:auto !important}div#updraft-wrap a{cursor:pointer !important}.updraftcentral_wizard_option{width:45%;float:left;text-align:center}.updraftcentral_wizard_option label{margin-bottom:8px}#updraftcentral_keys_table{display:none}.create_key_container{border:1px solid;border-radius:4px;padding:0 0 6px 6px;margin-bottom:8px}.updraftcentral_cloud_connect{border-radius:4px;border:1px solid #000;padding:0 20px;margin-top:30px;background-color:#FFF}.updraftcentral_cloud_error{border:1px solid #000;padding:3px 10px;border-left:3px solid #F00;background-color:#FFF;margin-bottom:10px}.updraftcentral_cloud_info{border:1px solid #000;padding:3px 10px;border-left:3px solid #ef8f31;background-color:#FFF;margin-bottom:10px}.updraftplus_spinner.spinner{padding-left:25px;float:none}.updraftplus_spinner.spinner.visible{visibility:visible}.updraftcentral_cloud_notices .updraftplus_spinner{margin-top:-5px}.updraftcentral-subheading{font-size:14px;margin-top:-10px;margin-bottom:20px}#updraftcentral_cloud_form input#email,#updraftcentral_cloud_form input#password{min-width:250px}.updraftcentral-data-consent{font-size:13px;margin-bottom:10px}.updraftcentral_cloud_wizard_image{float:left;min-width:100px;margin-right:25px}.updraftcentral_cloud_wizard{float:left}.updraftcentral_cloud_clear{clear:both}.updraftplus-settings-footer{margin-top:30px}.updraftplus-top-menu{padding:.5em}#updraft_inpage_backup #updraft_activejobs_table{background:transparent}#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link{float:none}#updraft_inpage_backup #updraft_activejobsrow .updraft_row{-ms-flex-direction:column;flex-direction:column;padding-left:20px;padding-right:20px}#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container{width:100%}#updraft_inpage_backup #updraft_activejobs_table{overflow:inherit}#updraft_inpage_backup span#updraft_lastlogcontainer{padding:18px;background:#fafafa;display:block;font-size:90%;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup div#updraft_activejobsrow{background:#fafafa;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup #updraft_lastlogmessagerow>div{background:transparent;padding:0}#updraft_inpage_backup .last-message>strong{display:block;margin-top:13px}@media only screen and (min-width:1024px){#updraft_activejobsrow .updraft_row{display:-ms-flexbox;display:flex;-ms-flex-align:baseline;align-items:baseline}#updraft_activejobsrow .updraft_row .updraft_col{-ms-flex:auto;flex:auto}#updraft_activejobsrow .updraft_progress_container{width:calc(100% - 230px)}}@media only screen and (min-width:782px){.settings_page_updraftplus input[type=text],.settings_page_updraftplus input[type=password],.settings_page_updraftplus input[type=number]{line-height:1.42;height:27px;padding:2px 6px;color:#555}.settings_page_updraftplus input[type="number"]{height:31px}#ud_massactions.active,#updraft-delete-waitwarning.active{position:fixed;bottom:0;left:160px;right:0;top:auto;background:#FFF;z-index:3;box-shadow:0 0 10px rgba(0,0,0,0.2)}body.folded #ud_massactions.active,body.folded #updraft-delete-waitwarning.active{left:36px}.updraft-after-form-table{margin-left:250px}}@media only screen and (min-width:782px) and (max-width:960px){body.auto-fold #ud_massactions.active,body.auto-fold #updraft-delete-waitwarning.active{left:36px}}@media only screen and (max-width:782px){#updraft-wrap{margin-right:0}#updraft-wrap .form-table td{padding-right:0}label.updraft_checkbox{margin-bottom:8px;margin-top:8px;margin-left:36px}.updraft_retain_rules{position:relative;margin-right:0;border:1px solid #CCC;padding:5px;margin-bottom:-1px}.updraft_retain_rules_delete{position:absolute;right:0;top:5px}a[id*=updraft_retain_]{display:block;padding:15px 15px 15px 0}label.updraft_checkbox>input[type=checkbox]{margin-left:-33px}#updraft-backupnow-button{margin:0;display:block;width:100%}.updraft_next_scheduled_backups_wrapper>.updraft_backup_btn_wrapper{padding-top:0}#ud_massactions,#updraft-delete-waitwarning{width:100%;box-sizing:border-box;text-align:center}#ud_massactions.active{position:fixed;top:auto;bottom:0;width:100%;box-sizing:border-box;text-align:center;box-shadow:0 -3px 15px rgba(0,0,0,0.08);background:#FFF;z-index:3}#ud_massactions strong{display:block;margin-bottom:5px}small.ud_massactions-tip{display:block}.existing-backups-table .backup_date_label>div{font-weight:normal}.existing-backups-table .backup_date_label .clear-right{display:inline-block}table.widefat.existing-backups-table{border:0;box-shadow:none;background:transparent}.existing-backups-table thead{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;padding:0;margin:0}.existing-backups-table tr{display:block;margin-bottom:.625em;padding-bottom:16.625px;width:100%;padding:0;margin:0;margin-bottom:10px;background:#FFF;box-shadow:0 2px 3px rgba(0,0,0,0.1)}.existing-backups-table td{border-bottom:1px solid #DDD;display:block;font-size:.9em;text-align:left;width:100%;padding:10px;margin:0}.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before{content:attr(data-label);font-weight:bold;display:block;position:relative;left:auto;padding-bottom:10px;width:auto;text-align:left}.existing-backups-table td:last-child{border-bottom:0}.form-table td.updraft_existingbackup_date{width:inherit;max-width:100%}.existing-backups-table td.before-restore-button{min-height:36px}.updraft_next_scheduled_backups_wrapper{-ms-flex-direction:column;flex-direction:column}.updraft_next_scheduled_backups_wrapper>div{width:100%}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row{position:relative}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#FFF;border-left:4px solid #0572aa}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select){margin-left:50px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select{width:50px !important;position:absolute;left:0;top:0;box-sizing:border-box;height:100%;z-index:1;border:0;border-right:1px solid rgba(0,0,0,0.05)}#updraft-navtab-backups-content .updraft_existing_backups input[type="checkbox"]{height:25px}.updraft_migrate_intro button.button.button-primary.button-hero{display:block;margin-right:0;width:100%;max-width:100%}.updraftclone-main-row{-ms-flex-direction:column;flex-direction:column}.updraftclone-main-row>div{width:auto;max-width:none;margin-right:0;margin-bottom:10px}.form-table th{padding-bottom:10px}}@media screen and (max-width:600px){.updraft_next_scheduled_entity{float:none;width:100%;margin-bottom:2em}.updraft_time_now_wrapper{margin-top:0}#updraft_lastlogmessagerow h3{margin-bottom:5px}#updraft_lastlogmessagerow .updraft-log-link{display:block;float:none;margin:0;margin-bottom:10px}}@media only screen and (min-width:768px){.addon-activation-notice{left:20em}.existing-backups-table tbody tr:hover{background:#f1f1f1}.existing-backups-table tbody tr td.before-restore-button{position:relative}.form-table .existing-backups-table thead th.check-column{padding-left:6px}.existing-backups-table tr td:first-child{border-left:4px solid transparent}.existing-backups-table tr.backuprowselected td:first-child{border-left-color:#0572aa}}@media screen and (min-width:670px){.expertmode .advanced_settings_container .advanced_settings_menu{float:left;width:215px;border-right:1px solid #ccc;border-bottom:0}.expertmode .advanced_settings_container .advanced_settings_content{padding-left:10px;padding-top:0}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:block}}@media only screen and (max-width:1068px){.updraft-more-plugins .udp-box{width:calc(50% - 10px);margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:100px}}@media only screen and (max-width:600px){.updraft-more-plugins .udp-box{width:100%;margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:auto}table.updraft_feat_table{display:block}table.updraft_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.updraft_feat_table td{display:block}table.updraft_feat_table td:first-child{width:100%;border-bottom:0}table.updraft_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.updraft_feat_table td:first-child:empty{display:none}td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}
|
2 |
/*# sourceMappingURL=updraftplus-admin.min.css.map */
|
1 |
+
@keyframes udp_blink{from{opacity:1;transform:scale(1)}to{opacity:.4;transform:scale(0.85)}}.max-width-600{max-width:600px}.width-900{max-width:900px}.width-80{width:80%}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}.udpdraft__lifted{box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#updraft-wrap a .dashicons{text-decoration:none}.updraft-field-description,table.form-table td p.updraft-field-description{font-size:90%;line-height:1.2;font-style:italic;margin-bottom:5px}label.updraft_checkbox{display:block;margin-bottom:4px;margin-left:26px}label.updraft_checkbox>input[type=checkbox]{margin-left:-25px}div[id*="updraft_include_"]{margin-bottom:9px}.settings_page_updraftplus input[type="file"]{border:0}.settings_page_updraftplus .wipe_settings{padding-bottom:10px}.settings_page_updraftplus input[type="text"]{font-size:14px}.settings_page_updraftplus select{border-radius:4px;max-width:100%}input.updraft_input--wide,textarea.updraft_input--wide{max-width:442px;width:100%}#updraft-wrap .button-large{font-size:1.3em}.main-dashboard-buttons{border-width:4px;border-radius:12px;letter-spacing:0;font-size:17px;font-weight:bold;padding-left:.7em;padding-right:2em;padding:.3em 1em;line-height:1.7em;background:transparent;position:relative;border:2px solid;transition:all .2s;vertical-align:baseline;box-sizing:border-box;text-align:center;line-height:1.3em;margin-left:.3em;text-transform:none;line-height:1;text-decoration:none}.button-restore{border-color:#629ec0;color:#629ec0}.dashboard-main-sizing{border-width:4px;width:190px;line-height:1.7em}p.updraftplus-option{margin-top:0;margin-bottom:5px}p.updraftplus-option-inline{display:inline-block;padding-right:20px}span.updraftplus-option-label{display:block}#updraft-navtab-migrate-content .postbox{padding:18px}.updraftclone-main-row{display:-ms-flexbox;display:flex}.updraftclone-tokens{background:#f5f5f5;padding:20px;border-radius:10px;margin-right:20px;max-width:300px}.updraftclone-tokens p{margin:0}.updraftclone_action_box{background:#f5f5f5;padding:20px;border-radius:10px;-ms-flex:1;flex:1}.updraftclone_action_box p:first-child{margin-top:0}.updraftclone_action_box p:last-child{margin-bottom:0}span.tokens-number{font-size:46px;display:block}.button.updraft_migrate_widget_temporary_clone_show_stage0{display:none;position:absolute;right:0;top:0;height:100%;border-left:1px solid #CCC;padding-left:10px;padding-right:10px}.updraft_migrate_widget_temporary_clone_stage0_container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.updraft_migrate_widget_temporary_clone_stage0_box{margin-right:20px;height:100%;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.updraft_migrate_widget_temporary_clone_stage0_box iframe{float:none}@media(min-width:1024px){.updraft_migrate_widget_temporary_clone_stage0_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_migrate_widget_temporary_clone_stage0_box{-ms-flex-preferred-size:45%;flex-basis:45%}.updraft_migrate_widget_temporary_clone_stage0_box iframe{float:right}}.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons{text-decoration:none;font-size:20px;line-height:inherit}.opened .button.updraft_migrate_widget_temporary_clone_show_stage0{display:inline-block}.opened .updraft_migrate_widget_temporary_clone_stage0{background:#f5f5f5;padding:20px;border-radius:8px;margin-bottom:21px}.clone-list{clear:both;width:100%;margin-top:40px}.clone-list table{width:100%;text-align:left}.clone-list table tr th{background:#e4e4e4}.clone-list table tr td{background:#f5f5f5;word-break:break-word}.clone-list table tr:nth-child(odd) td{background:#fafafa}.clone-list table td,.clone-list table th{padding:6px}.updraftplus-clone .updraft_row{padding-left:0;padding-right:0}button#updraft_migrate_createclone+.updraftplus_spinner{margin-top:13px}.button.button-hero.updraftclone_show_step_1{white-space:normal;height:auto;line-height:14px;padding-top:10px;padding-bottom:10px}.button.button-hero.updraftclone_show_step_1 span.dashicons{height:auto}.updraftplus_clone_status{color:red}a.updraft_migrate_add_site--trigger span.dashicons{text-decoration:none}.button-restore:hover,.button-migrate:hover,.button-backup:hover,.button-view-log:hover,.button-mass-selectors:hover,.button-delete:hover,.button-entity-backup:hover,.udp-button-primary:hover{border-color:#df6926;color:#df6926}.button-migrate{color:#eea920;border-color:#eea920}#updraft_migrate_tab_main{padding:8px}.updraft_migrate_widget_module_content{background:#FFF;border-radius:0;position:relative}body.js #updraft_migrate .updraft_migrate_widget_module_content{display:none}.updraft_migrate_widget_module_content>h3,div[class*="updraft_migrate_widget_temporary_clone_stage"]>h3{margin-top:0}.updraft_migrate_widget_module_content header{position:relative;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-grid-column-align:center;justify-items:center;margin-top:-18px;margin-left:-18px;margin-right:-18px;margin-bottom:15px;border-bottom:1px solid #CCC}.updraft_migrate_widget_module_content header h3,.updraft_migrate_widget_module_content header button.button.close{padding:10px;line-height:20px;height:auto;margin:0}.updraft_migrate_widget_module_content button.button.close{text-decoration:none;padding-left:5px;border-right:1px solid #CCC}.updraft_migrate_widget_module_content button.button.close .dashicons{margin-top:1px}.updraft_migrate_widget_module_content header h3{margin:0}.updraft_migrate_intro button.button.button-primary.button-hero{max-width:235px;word-wrap:normal;white-space:normal;line-height:1;height:auto;padding-top:13px;padding-bottom:13px;text-align:left;position:relative;margin-right:10px;margin-bottom:10px}.updraft_migrate_intro button.button.button-primary.button-hero .dashicons{position:absolute;left:10px;top:calc(50% - 8px)}#updraft_migrate .ui-widget-content a{color:#1c94c4}#updraft-wrap .ui-accordion .ui-accordion-header{background:#f6f6f6;margin:0;border-radius:0;padding-left:.5em;padding-right:.7em}#updraft-wrap .ui-widget{font-family:inherit}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w{background-position:-96px 0}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s{background-position:-64px 0}#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon{left:auto;right:5px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px rgba(91,157,217,0.22),0 0 2px 1px rgba(30,140,190,0.3);background:#FFF}#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons{color:#0572aa;opacity:1}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active{background:#f6f6f6;border-bottom:2px solid #0572aa;box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3)}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus{box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child){border-top:0}#updraft-wrap .ui-accordion .ui-accordion-header .dashicons{opacity:.4;margin-right:10px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:1}.updraft_next_scheduled_backups_wrapper{display:-ms-flexbox;display:flex;background:#FFF;-ms-grid-column-align:center;justify-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_next_scheduled_backups_wrapper>div{width:50%;background:#FFF;height:auto;padding:33px;box-sizing:border-box}.updraft_backup_btn_wrapper{text-align:center;border-left:1px solid #f1f1f1;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}#updraft-delete-waitwarning span.spinner{visibility:visible;float:none;margin:0;margin-right:10px}button#updraft-backupnow-button .spinner,button#updraft-backupnow-button .dashicons-yes{display:none}button#updraft-backupnow-button.loading .spinner{display:inline-block;visibility:visible;margin-top:13px;margin-right:0}button#updraft-backupnow-button.loading{background-color:#efefef;border-color:#CCC;text-shadow:0 -1px 1px #bbc3c7,1px 0 1px #bbc3c7,0 1px 1px #bbc3c7,-1px 0 1px #bbc3c7;box-shadow:none}button#updraft-backupnow-button.finished .dashicons-yes{display:inline-block;visibility:visible;font-size:42px;margin-right:0;margin-top:2px}.updraft_next_scheduled_entity{width:50%;display:inline-block;float:left}.updraft_next_scheduled_entity .dashicons{color:#CCC;font-size:20px}.updraft_next_scheduled_entity strong{font-size:20px}.updraft_next_scheduled_heading{margin-bottom:10px}.updraft_next_scheduled_date_time{color:#46a84b}.updraft_time_now_wrapper{margin-top:68px;width:100%}.updraft_time_now_label,.updraft_time_now{display:inline-block;padding:7px}.updraft_time_now_label{background:#b7b7b7;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#FFF;margin-right:0;text-shadow:0 1px 2px rgba(0,0,0,0.4)}.updraft_time_now{background:#f1f1f1;border-top-right-radius:4px;border-bottom-right-radius:4px;margin-left:-3px}#updraft_lastlogmessagerow{margin:6px 0}#updraft_lastlogmessagerow{clear:both;padding:.25px 0}#updraft_lastlogmessagerow .updraft-log-link{float:right;margin-top:-2.5em;margin-right:2px}#updraft_lastlogmessagerow>div{clear:both;background:#FFF;padding:18px}#updraft_activejobs_table{overflow:hidden;width:100%;background:#fafafa;padding:0}.updraft_requeststart{padding:15px 33px;text-align:center}.updraft_requeststart .spinner{visibility:visible;float:none;vertical-align:middle;margin-top:-2px}a.updraft_jobinfo_delete.disabled{opacity:.4;color:inherit;text-decoration:none}.updraft_row{clear:both;transition:.3s all;padding:15px 33px}.updraft_row.deleting{opacity:.4}.updraft_existing_backups_count{padding:2px 8px;font-size:12px;background:#ca4a1e;color:#FFF;font-weight:bold;border-radius:10px}.form-table .existing-backups-table input[type="checkbox"]{border-radius:0}.form-table .existing-backups-table .check-column{width:40px;padding:0;padding-top:8px}.existing-backups-buttons{font-size:11px;line-height:1.4em;border-width:3px}.existing-backups-restore-buttons{font-size:11px;line-height:1.4em;border-width:3px}.button-delete{color:#e23900;border-color:#e23900;font-size:14px;line-height:1.4em;border-width:2px;margin-right:10px}.button-view-log,.button-mass-selectors{color:darkgrey;border-color:darkgrey;font-size:14px;line-height:1.4em;border-width:2px;margin-top:-1px}.button-view-log{width:120px}.button-existing-restore{font-size:14px;line-height:1.4em;border-width:2px;width:110px}.main-restore{margin-right:3%;margin-left:3%}.button-entity-backup{color:#555;border-color:#555;font-size:11px;line-height:1.4em;border-width:2px;margin-right:5px}.button-select-all{width:122px}.button-deselect{width:92px}#ud_massactions>.display-flex>.mass-selectors-margins,#updraft-delete-waitwarning>.display-flex>.mass-selectors-margins{margin-right:-4px}.udp-button-primary{border-width:4px;color:#0073aa;border-color:#0073aa;font-size:14px;height:40px}#ud_massactions .button-delete{margin-right:0}.stored_local{border-radius:5px;background-color:#007fe7;padding:3px 5px 5px 5px;color:#FFF;font-size:75%}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label>*{vertical-align:middle}.backup_date_label .dashicons{font-size:18px}.backup_date_label .clear-right{clear:right}.existing-backups-table .backup_date_label>div{font-weight:bold}.udp-logo-70{width:70px;height:70px;float:left;padding-right:25px}h3 .thank-you{margin-top:0}.ws_advert{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.dismiss-dash-notice{float:right;position:relative;top:-20px}.updraft_exclude_container,.updraft_include_container{margin-left:24px;margin-top:5px;margin-bottom:10px;padding:15px;border:1px solid #DDD}label.updraft-exclude-label{font-weight:500;margin-bottom:5px;display:block}.updraft_add_exclude_item,#updraft_include_more_paths_another{display:inline-block;margin-top:10px}input.updraft_exclude_entity_field,.form-table td input.updraft_exclude_entity_field,.updraftplus-morefiles-row input[type=text]{width:calc(100% - 70px);max-width:400px}@media screen and (max-width:782px){.form-table td input.updraft_exclude_entity_field,.form-table td .updraftplus-morefiles-row input[type=text]{display:inline-block}}.updraft_exclude_entity_delete.dashicons,.updraft_exclude_entity_edit.dashicons,.updraft_exclude_entity_update.dashicons,.updraftplus-morefiles-row a.dashicons{margin-top:2px;font-size:20px;box-shadow:none;line-height:1;padding:3px;margin-right:4px}.updraft_exclude_entity_delete,.updraft_exclude_entity_delete:hover,.updraftplus-morefiles-row-delete{color:#ff6347}.updraft_exclude_entity_update.dashicons,.updraft_exclude_entity_update.dashicons:hover{color:#008000;font-weight:bold;font-size:22px;margin-left:4px}.updraft_exclude_entity_edit{margin-left:4px}.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete{display:none}.updraft-exclude-panel-heading{margin-bottom:8px}.updraft-exclude-panel-heading h3{margin:.5em 0 .5em 0}.updraft-exclude-submit.button-primary{margin-top:5px}.updraft_exclude_actions_list{font-weight:bold}.updraft-exclude-link{cursor:pointer}#updraft_include_more_options{padding-left:25px}#updraft_report_cell .updraft_reportbox,.updraft_small_box{padding:12px;margin:8px 0;border:1px solid #CCC;position:relative}#updraft_report_cell button.updraft_reportbox_delete,.updraft_box_delete_button,.updraft_small_box .updraft_box_delete_button{padding:4px;padding-top:6px;border:0;background:transparent;position:absolute;top:4px;right:4px;cursor:pointer}#updraft_report_cell button.updraft_reportbox_delete:hover{color:#de3c3c}a.updraft_report_another .dashicons{text-decoration:none;margin-top:2px}.updraft_report_dbbackup.updraft_report_disabled{color:#CCC}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_email{display:block;width:calc(100% - 50px);margin-bottom:9px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td{background-color:#efefef}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td{background-color:#e8e8e8}.updraft_settings_sectionheading{display:none}.updraft-backupentitybutton-disabled{background-color:transparent;border:0;color:#0074a2;text-decoration:underline;cursor:pointer;clear:none;float:left}.updraft-backupentitybutton{margin-left:8px}.updraft-bigbutton{padding:2px 0 !important;margin-right:14px !important;font-size:22px !important;min-height:32px;min-width:180px}tr[class*="_updraft_remote_storage_border"]{border-top:1px solid #CCC}.updraft_multi_storage_options{float:right;clear:right;margin-bottom:5px !important}.updraft_toggle_instance_label{vertical-align:top !important}.updraft_debugrow th{float:right;text-align:right;font-weight:bold;padding-right:8px;min-width:140px}.updraft_debugrow td{min-width:300px;vertical-align:bottom}#updraft_webdav_host_error,.onedrive_folder_error{color:red}.updraft_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}.updraft_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}.updraft_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}.updraft_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}.updraft_jstree_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}.updraft_jstree_info_container p{margin:1px;padding-left:10px;font-size:14px}#updraft_zip_download_item{display:none;color:#0073aa;padding-left:10px}#updraft_zip_download_notice{padding-left:10px}#updraft_exclude_files_folders_jstree{max-height:200px;overflow-y:scroll}.updraft_jstree{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;width:100%;border:1px solid #CCC;background:#fafafa;margin-bottom:5px;margin-top:4px;box-shadow:0 5px 8px rgba(0,0,0,0.1)}div#updraft_more_files_container::before{content:' ';width:11px;height:11px;display:block;background:#fafafa;position:absolute;top:0;left:20px;border-top:1px solid #CCC;border-left:1px solid #CCC;transform:translatey(-7px) rotate(45deg)}input.updraft_more_path_editing{border-color:#0285ba}input.updraft_more_path_editing ~ a.dashicons{display:none}#updraft_jstree_buttons{padding:10px;background:#e6e6e6}#updraft_jstree_container{height:300px;width:100%;overflow:auto}#updraft_more_files_container button{line-height:20px}#updraft_parent_directory{margin:10px 10px 4px 10px;padding-left:3px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete,.updraftplus-morefiles-row-edit{cursor:pointer}#updraft-wrap .form-table th{width:230px}#updraft-wrap .form-table .existing-backups-table th{width:auto}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{display:inline-block}.updraft-viewlogdiv input,.updraft-viewlogdiv a{border:0;background-color:transparent;color:#000;margin:0;padding:3px 4px;font-size:16px;line-height:26px}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.button.button-remove{color:white;background-color:#de3c3c;border-color:#c00000;box-shadow:0 1px 0 #c10100}.button.button-remove:hover,.button.button-remove:focus{border-color:#C00;color:#FFF;background:#C00}body.admin-color-midnight .button.button-remove{color:#de3c3c;background-color:#f7f7f7;border-color:#CCC;box-shadow:0 1px 0 #CCC}body.admin-color-midnight .button.button-remove:hover,body.admin-color-midnight .button.button-remove:focus{border-color:#ba281f}body.admin-color-midnight .button.button-remove:focus{box-shadow:inherit;box-shadow:0 0 3px rgba(0,115,170,0.8)}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file{padding:1px;background:#ececec;border:solid 1px #CCC;margin:4px 0}.updraft_premium section{margin-bottom:20px}.updraft_premium_cta{background:#FFF;margin-top:30px;padding:0;border-left:4px solid #db6a03}.updraft_premium_cta a{font-weight:normal}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase}.updraft_premium_cta__top{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:18px 30px}.updraft_premium_cta__bottom{background:#f9f9f9;padding:5px 30px}.updraft_premium_cta__summary{margin-right:60px}.updraft_premium_cta h2{font-size:28px;font-weight:200;line-height:1;margin:0;margin-bottom:5px;letter-spacing:.05rem;color:#db6a03}.updraft_premium_cta ul li::after{color:#CCC}@media only screen and (max-width:768px){.updraft_premium_cta__top{-ms-flex-direction:column;flex-direction:column;text-align:center;-ms-flex-align:center;align-items:center}.updraft_premium_cta__summary{margin-right:0;margin-bottom:30px}}.udp-box{background:#FFF;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,0.1);text-align:center}.udp-box h3{margin:0}.udp-box__heading{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;background:0;box-shadow:none}.updraft-more-plugins{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;flex-wrap:wrap}.updraft-more-plugins img{max-width:200px;width:100%;display:inline-block}.updraft-more-plugins .udp-box{box-sizing:border-box;width:24%}.updraft-more-plugins .udp-box p:last-child{margin-bottom:0;padding-bottom:0}.updraft_premium_description_list{text-align:left;margin:0;font-size:12px}ul.updraft_premium_description_list,ul#updraft_restore_warnings{list-style:disc inside}ul.updraft_premium_description_list li{display:inline}ul.updraft_premium_description_list li::after{content:" | "}ul.updraft_premium_description_list li:last-child::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraftplus_com_login_status,.updraftplus_com_key_status{display:none;border-left-color:#dc3232 !important;background:#FFF;border-left:4px solid #FFF;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraft_feat_table{border:0;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_th,.updraft_feat_table td{border:1px solid #f1f1f1;border-collapse:collapse;font-size:120%;background-color:white;text-align:center;padding:15px}.updraft_feat_table td{border-bottom-width:4px}.updraft_feat_table td:first-child{border-left:0}.updraft_feat_table td:last-child{border-right:0}.updraft_feat_table tr:last-child td{border-bottom:0}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){background-color:rgba(241,241,241,0.38);width:190px}.updraft_feat_table__header td img{display:block;margin:0 auto}.updraft_feat_table__header td{text-align:center}.updraft_feat_table .installed{font-size:14px}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.updraft_feat_table h4{margin:5px 0}.updraft_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.updraft_feat_table .dashicons-yes,.updraft_feat_table .updraft-yes{color:green}.updraft_feat_table .dashicons-no-alt,.updraft_feat_table .updraft-no{color:red}.updraft_tick_cell{text-align:center}.updraft_tick_cell img{margin:4px 0;height:24px}.ud_downloadstatus__close{border:0;background:transparent;width:auto;font-size:20px;padding:0;cursor:pointer}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#0572aa;height:8px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}div[class^="updraftplus_downloader_container_"]{padding:10px}tr.updraftplusmethod h3{margin:0}tr.updraftplusmethod img{max-width:100%}#updraft_retain_db_rules .updraft_retain_rules_delete,#updraft_retain_files_rules .updraft_retain_rules_delete{cursor:pointer;color:red;font-size:120%;font-weight:bold;border:0;border-radius:3px;padding:2px;margin:0 6px;text-decoration:none;display:inline-block}#updraft_retain_db_rules .updraft_retain_rules_delete:hover,#updraft_retain_files_rules .updraft_retain_rules_delete:hover{cursor:pointer;color:white;background:red}#updraft_backup_started{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.blockUI.blockOverlay.ui-widget-overlay{background:#000}.updraft_success_popup{text-align:center;padding-bottom:30px}.updraft_success_popup>.dashicons{font-size:100px;width:100px;height:100px;line-height:100px;padding:0;border-radius:50%;margin-top:30px;display:block;margin-left:auto;margin-right:auto;background:#e2e6e5}.updraft_success_popup>.dashicons.dashicons-yes{text-indent:-5px}.updraft_success_popup.success>.dashicons{color:green}.updraft_success_popup.warning>.dashicons{color:#888}.updraft_success_popup--message{padding:20px}.button.updraft-close-overlay .dashicons{text-decoration:none;font-size:20px;margin-left:-5px;padding:0}.updraft_saving_popup img{animation-name:udp_blink;animation-duration:610ms;animation-iteration-count:infinite;animation-direction:alternate;animation-timing-function:ease-out}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.updraft_all-files{color:blue}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_activejobsrow th{max-width:112px;margin:0;padding:13px 0 0 0}#updraft_lastlogmessagerow .last-message{padding-top:20px;display:block}.updraft_simplepie{vertical-align:top}.download-backups{margin-top:8px}.download-backups .updraft_download_button{margin-right:6px}.download-backups .ud-whitespace-warning,.download-backups .ud-bom-warning{background-color:pink;padding:8px;margin:4px;border:1px dotted}.download-backups .ul{list-style:none inside;max-width:800px;margin-top:6px;margin-bottom:12px}#updraft-plupload-modal{margin:16px 0}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:100%}.ud_downloadstatus{padding:10px 0}#ud_massactions,#updraft-delete-waitwarning{padding:14px;background:#f1f1f1;position:absolute;left:0;top:100%}#ud_massactions>*,#updraft-delete-waitwarning>*{vertical-align:middle}#ud_massactions .updraftplus-remove{display:inline-block;margin-right:0}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative}small.ud_massactions-tip{display:inline-block;opacity:.5;font-style:italic;margin-left:20px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:35px;position:relative}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}#updraft_restorer_dboptions{padding:12px;margin:8px 0 4px 0;border:dashed 1px}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraft_debugrow th{vertical-align:top;padding-top:6px;max-width:140px}.expertmode p{font-size:125%}.expertmode .call-wp-action{width:300px;height:22px}.updraftplus-lock-advert{clear:left;max-width:600px}.uncompressed-data{clear:left;max-width:600px}.delete-old-directories{padding:8px;padding-bottom:12px}.active-jobs{width:100%;text-align:center;padding:33px}.job-id{margin-top:0;margin-bottom:8px}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#1d8ec2;transition:width .3s}.curstage{z-index:1;border-radius:2px;margin-top:8px;width:100%;height:26px;line-height:26px;position:relative;text-align:center;font-style:italic;color:#FFF;background-color:#b7b7b7;text-shadow:0 1px 2px rgba(0,0,0,0.3)}.curstage-info{display:inline-block;z-index:2}.retain-files{width:48px}.backup-interval-description tr td div{max-width:670px}#updraft-manualdecrypt-modal{width:85%;margin:6px;margin-left:100px}.directory-permissions{font-size:110%;font-weight:bold}.double-warning{border:1px solid;padding:6px}.raw-backup-info{font-style:italic;font-weight:bold;font-size:120%}.updraft_existingbackup_date{width:22%;max-width:140px}.updraft_existing_backups_wrapper{margin-top:20px;border-top:1px solid #DDD}.updraft-no-backups-msg{text-align:center}.tr-bottom-4{margin-bottom:4px}.existing-backups-table th{padding:8px 10px}.form-table .backup-date{width:172px}.form-table .backup-data{width:426px}.form-table .updraft_backup_actions{width:272px}.existing-date{box-sizing:border-box;max-width:140px;width:25%}.line-break-tr{height:2px;padding:1px;margin:0}.line-break-td{margin:0;padding:0}.td-line-color{height:2px;background-color:#888}.raw-backup{max-width:140px}.existing-backups-actions{padding:1px;margin:0}.existing-backups-border{height:2px;padding:1px;margin:0}.existing-backups-border>td{margin:0;padding:0}.existing-backups-border>div{height:2px;background-color:#AAA}.updraft_existing_backup_date{max-width:140px}.updraftplus-upload{margin-right:6px;float:left;clear:none}.before-restore-button{padding:1px;margin:0}.before-restore-button div{float:none;display:inline-block}.table-separator-tr{height:2px;padding:1px;margin:0}.table-separator-td{margin:0;padding:0}.end-of-table-div{height:2px;background-color:#AAA}.last-backup-job{padding-top:3% !important}.line-height-03{line-height:.3 !important}.line-height-13{line-height:1.3 !important}.line-height-23{line-height:2.3 !important}#updraft_diskspaceused{color:#df6926}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}.dashicons{line-height:inherit;font-size:inherit}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important;padding-bottom:20px}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option{float:left;width:33%;text-align:center;padding-top:20px}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3:first-child{margin-top:5px !important}.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools{display:none}.expertmode .advanced_settings_container .advanced_settings_content .site_info{display:block}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:inline-block;cursor:pointer;padding:5px;color:#000}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text{font-size:16px}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover{background-color:#eaeaea}.expertmode .advanced_settings_container .advanced_settings_menu .active{background-color:#3498db;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_menu .active:hover{background-color:#72c5fd;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_content input#import_settings{height:auto !important}div#updraft-wrap a{cursor:pointer !important}.updraftcentral_wizard_option{width:45%;float:left;text-align:center}.updraftcentral_wizard_option label{margin-bottom:8px}#updraftcentral_keys_table{display:none}.create_key_container{border:1px solid;border-radius:4px;padding:0 0 6px 6px;margin-bottom:8px}.updraftcentral_cloud_connect{border-radius:4px;border:1px solid #000;padding:0 20px;margin-top:30px;background-color:#FFF}.updraftcentral_cloud_error{border:1px solid #000;padding:3px 10px;border-left:3px solid #F00;background-color:#FFF;margin-bottom:10px}.updraftcentral_cloud_info{border:1px solid #000;padding:3px 10px;border-left:3px solid #ef8f31;background-color:#FFF;margin-bottom:10px}.updraftplus_spinner.spinner{padding-left:25px;float:none}.updraftplus_spinner.spinner.visible{visibility:visible}.updraftcentral_cloud_notices .updraftplus_spinner{margin-top:-5px}.updraftcentral-subheading{font-size:14px;margin-top:-10px;margin-bottom:20px}#updraftcentral_cloud_form input#email,#updraftcentral_cloud_form input#password{min-width:250px}.updraftcentral-data-consent{font-size:13px;margin-bottom:10px}.updraftcentral_cloud_wizard_image{float:left;min-width:100px;margin-right:25px}.updraftcentral_cloud_wizard{float:left}.updraftcentral_cloud_clear{clear:both}.updraftplus-settings-footer{margin-top:30px}.updraftplus-top-menu{padding:.5em}#updraft_inpage_backup #updraft_activejobs_table{background:transparent}#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link{float:none}#updraft_inpage_backup #updraft_activejobsrow .updraft_row{-ms-flex-direction:column;flex-direction:column;padding-left:20px;padding-right:20px}#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container{width:100%}#updraft_inpage_backup #updraft_activejobs_table{overflow:inherit}#updraft_inpage_backup span#updraft_lastlogcontainer{padding:18px;background:#fafafa;display:block;font-size:90%;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup div#updraft_activejobsrow{background:#fafafa;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup #updraft_lastlogmessagerow>div{background:transparent;padding:0}#updraft_inpage_backup .last-message>strong{display:block;margin-top:13px}@media only screen and (min-width:1024px){#updraft_activejobsrow .updraft_row{display:-ms-flexbox;display:flex;-ms-flex-align:baseline;align-items:baseline}#updraft_activejobsrow .updraft_row .updraft_col{-ms-flex:auto;flex:auto}#updraft_activejobsrow .updraft_progress_container{width:calc(100% - 230px)}}@media only screen and (min-width:782px){.settings_page_updraftplus input[type=text],.settings_page_updraftplus input[type=password],.settings_page_updraftplus input[type=number]{line-height:1.42;height:27px;padding:2px 6px;color:#555}.settings_page_updraftplus input[type="number"]{height:31px}#ud_massactions.active,#updraft-delete-waitwarning.active{position:fixed;bottom:0;left:160px;right:0;top:auto;background:#FFF;z-index:3;box-shadow:0 0 10px rgba(0,0,0,0.2)}body.folded #ud_massactions.active,body.folded #updraft-delete-waitwarning.active{left:36px}.updraft-after-form-table{margin-left:250px}}@media only screen and (min-width:782px) and (max-width:960px){body.auto-fold #ud_massactions.active,body.auto-fold #updraft-delete-waitwarning.active{left:36px}}@media only screen and (max-width:782px){#updraft-wrap{margin-right:0}#updraft-wrap .form-table td{padding-right:0}label.updraft_checkbox{margin-bottom:8px;margin-top:8px;margin-left:36px}.updraft_retain_rules{position:relative;margin-right:0;border:1px solid #CCC;padding:5px;margin-bottom:-1px}.updraft_retain_rules_delete{position:absolute;right:0;top:5px}a[id*=updraft_retain_]{display:block;padding:15px 15px 15px 0}label.updraft_checkbox>input[type=checkbox]{margin-left:-33px}#updraft-backupnow-button{margin:0;display:block;width:100%}.updraft_next_scheduled_backups_wrapper>.updraft_backup_btn_wrapper{padding-top:0}#ud_massactions,#updraft-delete-waitwarning{width:100%;box-sizing:border-box;text-align:center}#ud_massactions.active{position:fixed;top:auto;bottom:0;width:100%;box-sizing:border-box;text-align:center;box-shadow:0 -3px 15px rgba(0,0,0,0.08);background:#FFF;z-index:3}#ud_massactions strong{display:block;margin-bottom:5px}small.ud_massactions-tip{display:block}.existing-backups-table .backup_date_label>div{font-weight:normal}.existing-backups-table .backup_date_label .clear-right{display:inline-block}table.widefat.existing-backups-table{border:0;box-shadow:none;background:transparent}.existing-backups-table thead{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;padding:0;margin:0}.existing-backups-table tr{display:block;margin-bottom:.625em;padding-bottom:16.625px;width:100%;padding:0;margin:0;margin-bottom:10px;background:#FFF;box-shadow:0 2px 3px rgba(0,0,0,0.1)}.existing-backups-table td{border-bottom:1px solid #DDD;display:block;font-size:.9em;text-align:left;width:100%;padding:10px;margin:0}.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before{content:attr(data-label);font-weight:bold;display:block;position:relative;left:auto;padding-bottom:10px;width:auto;text-align:left}.existing-backups-table td:last-child{border-bottom:0}.form-table td.updraft_existingbackup_date{width:inherit;max-width:100%}.existing-backups-table td.before-restore-button{min-height:36px}.updraft_next_scheduled_backups_wrapper{-ms-flex-direction:column;flex-direction:column}.updraft_next_scheduled_backups_wrapper>div{width:100%}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row{position:relative}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#FFF;border-left:4px solid #0572aa}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select){margin-left:50px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select{width:50px !important;position:absolute;left:0;top:0;box-sizing:border-box;height:100%;z-index:1;border:0;border-right:1px solid rgba(0,0,0,0.05)}#updraft-navtab-backups-content .updraft_existing_backups input[type="checkbox"]{height:25px}.updraft_migrate_intro button.button.button-primary.button-hero{display:block;margin-right:0;width:100%;max-width:100%}.updraftclone-main-row{-ms-flex-direction:column;flex-direction:column}.updraftclone-main-row>div{width:auto;max-width:none;margin-right:0;margin-bottom:10px}.form-table th{padding-bottom:10px}}@media screen and (max-width:600px){.updraft_next_scheduled_entity{float:none;width:100%;margin-bottom:2em}.updraft_time_now_wrapper{margin-top:0}#updraft_lastlogmessagerow h3{margin-bottom:5px}#updraft_lastlogmessagerow .updraft-log-link{display:block;float:none;margin:0;margin-bottom:10px}}@media only screen and (min-width:768px){.addon-activation-notice{left:20em}.existing-backups-table tbody tr:hover{background:#f1f1f1}.existing-backups-table tbody tr td.before-restore-button{position:relative}.form-table .existing-backups-table thead th.check-column{padding-left:6px}.existing-backups-table tr td:first-child{border-left:4px solid transparent}.existing-backups-table tr.backuprowselected td:first-child{border-left-color:#0572aa}}@media screen and (min-width:670px){.expertmode .advanced_settings_container .advanced_settings_menu{float:left;width:215px;border-right:1px solid #ccc;border-bottom:0}.expertmode .advanced_settings_container .advanced_settings_content{padding-left:10px;padding-top:0}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:block}}@media only screen and (max-width:1068px){.updraft-more-plugins .udp-box{width:calc(50% - 10px);margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:100px}}@media only screen and (max-width:600px){.updraft-more-plugins .udp-box{width:100%;margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:auto}table.updraft_feat_table{display:block}table.updraft_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.updraft_feat_table td{display:block}table.updraft_feat_table td:first-child{width:100%;border-bottom:0}table.updraft_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.updraft_feat_table td:first-child:empty{display:none}td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}
|
2 |
/*# sourceMappingURL=updraftplus-admin.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["css/updraftplus-admin.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,WAAW;EACX,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb,uBAAuB;EACvB;;CAED;;AAED,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,uCAAuC;CACvC;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,eAAe;CACf,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,aAAa;CACb;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;;CAEC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED,qBAAqB;;AAErB,kBAAkB;AAClB;CACC,kBAAkB;CAClB,oBAAoB;CACpB,oBAAoB;CACpB,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,wBAAwB;CACxB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,yBAAyB;CACzB,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,gCAAgC;CAChC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;;EAEE;;AAEF;CACC,cAAc;CACd;;AAED,gBAAgB;;AAEhB;CACC,qBAAc;CAAd,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,YAAQ;KAAR,QAAQ;CACR;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED,yBAAyB;AACzB;CACC,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT,OAAO;CACP,aAAa;CACb,4BAA4B;CAC5B,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,qBAAqB;CACrB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,sBAAsB;AACtB;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,uBAAuB;CACvB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,aAAa;CACb;;AAED,oBAAoB;AACpB;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,qCAAqC;AACrC;CACC,oBAAoB;CACpB,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,aAAa;;AAEb;CACC,sBAAsB;CACtB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,6BAA6B;AAC7B;CACC,mBAAmB;CACnB,qBAAc;CAAd,cAAc;CACd,2BAAsB;KAAtB,sBAAsB;CACtB,8BAAsB;KAAtB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,oBAAoB;CACpB,8BAA8B;CAC9B;;AAED;;CAEC,cAAc;CACd,kBAAkB;CAClB,aAAa;CACb,UAAU;CACV;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,oBAAoB;CACpB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB,qBAAqB;CACrB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB;;AAED;;EAEE;AACF;CACC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB,UAAU;CACV,iBAAiB;CACjB,oBAAoB;CACpB,qBAAqB;CACrB;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,cAAc;CACd,oFAAoF;CACpF,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB,iCAAiC;CACjC,iDAAiD;CACjD;;AAED;CACC,wGAAwG;CACxG;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,kEAAkE;CAClE,WAAW;CACX;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,iBAAiB;CACjB,8BAAsB;KAAtB,sBAAsB;CACtB,oBAAgB;KAAhB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB,aAAa;CACb,yBAAyB;CACzB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,+BAA+B;CAC/B,qBAAc;CAAd,cAAc;CACd,sBAAwB;KAAxB,wBAAwB;CACxB,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,UAAU;CACV,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,0FAA0F;CAC1F,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,gBAAgB;CAChB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,sBAAsB;CACtB,YAAY;CACZ;;GAEE;CACF;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,4BAA4B;CAC5B,+BAA+B;CAC/B,YAAY;CACZ,gBAAgB;CAChB,0CAA0C;CAC1C;;AAED;CACC,oBAAoB;CACpB,6BAA6B;CAC7B,gCAAgC;CAChC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,oBAAoB;CACpB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB,YAAY;CACZ,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;;AAEtB,4BAA4B;;AAE5B;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX;;AAED;;CAEC,kBAAkB;CAClB,gBAAgB;CAChB,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB,iBAAiB;CACjB;;AAED;;;CAGC,yBAAyB;CACzB,iBAAiB;CACjB;;AAED;;CAEC;;EAEC,sBAAsB;EACtB;;CAED;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB;;AAED;;;CAGC,eAAe;CACf;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;;;CAGC,aAAa;CACb,iBAAiB;CACjB,aAAa;CACb,wBAAwB;CACxB,mBAAmB;CACnB,SAAS;CACT,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;;CAEC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb,aAAa;CACb,8BAA8B;CAC9B;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,YAAY;CACZ,uBAAuB;CACvB,oBAAoB;CACpB,mBAAmB;CACnB,gBAAgB;CAChB,yCAAyC;CACzC;;AAED;CACC,aAAa;CACb,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,2BAA2B;CAC3B,4BAA4B;CAC5B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,YAAY;CACZ,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,sBAAsB;CACtB,4BAA4B;CAC5B;;AAED;;CAEC,mBAAmB;CACnB,YAAY;CACZ,iBAAiB;CACjB;;AAED,mDAAmD;AACnD;CACC,eAAe;CACf,0BAA0B;CAC1B,mBAAmB;CACnB,yBAAyB;CACzB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,iBAAiB;CACjB,WAAW;CACX,+BAA+B;CAC/B;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,uBAA+B;KAA/B,+BAA+B;CAC/B,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,UAAU;CACV,mBAAmB;CACnB,wBAAwB;CACxB,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,2BAAuB;MAAvB,uBAAuB;EACvB,mBAAmB;EACnB,uBAAoB;MAApB,oBAAoB;EACpB;;CAED;EACC,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,cAAc;CACd,yCAAyC;CACzC,mBAAmB;CACnB;;AAED;CACC,UAAU;CACV;;AAED;CACC,4BAAmB;KAAnB,2BAAmB;KAAnB,mBAAmB;CACnB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;EAEE;AACF;CACC,qBAAc;CAAd,cAAc;CACd,wBAAoB;KAApB,oBAAoB;CACpB,oBAAgB;KAAhB,gBAAgB;CAChB,uBAA+B;KAA/B,+BAA+B;CAC/B,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,uBAAuB;CACvB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,UAAU;CACV,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,sCAAsC;CACtC,iBAAiB;CACjB,4BAA4B;CAC5B,uCAAuC;CACvC,qBAAqB;CACrB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,4CAA4C;CAC5C,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,aAAa;CACb;;AAED;CACC,aAAa;CACb,wBAAwB;CACxB,YAAY;CACZ,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd,sBAAsB;CACtB,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED,qBAAqB;AACrB;CACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,oCAAoC;CACpC,+BAA+B;CAC/B,oCAAoC;CACpC;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,iBAAiB;CACjB,UAAU;CACV,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,+BAA+B;CAC/B,mBAAmB;CACnB,QAAQ;CACR,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,0BAA0B;CAC1B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CAGC,uBAAuB;CACvB,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED,uCAAuC;AACvC,6CAA6C;AAC7C;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,4CAA4C;CAC5C;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,uBAAuB;CACvB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,4BAA4B;CAC5B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,+BAA+B;CAC/B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAAuB;KAAvB,uBAAuB;CACvB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,eAAe;CACf,eAAe;CACf,2CAA2C;CAC3C;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,WAAW;CACX;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,qBAAc;EAAd,cAAc;EACd,yBAAsB;MAAtB,sBAAsB;EACtB;;CAED;EACC,eAAW;MAAX,WAAW;EACX;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;;;EAGC,yBAAyB;EACzB,kBAAkB;EAClB,6BAA6B;EAC7B,aAAa;EACb,iBAAiB;EACjB,YAAY;EACZ;;CAED;EACC,aAAa;EACb;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,YAAY;EACZ,SAAS;EACT,UAAU;EACV,iBAAiB;EACjB,WAAW;EACX,wCAAwC;EACxC;;CAED;EACC,WAAW;EACX;;CAED;EACC,mBAAmB;EACnB;;CAED;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,kBAAkB;EAClB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,uBAAuB;EACvB,aAAa;EACb,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,SAAS;EACT,SAAS;EACT;;CAED;EACC,eAAe;EACf,0BAA0B;EAC1B;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,UAAU;EACV,eAAe;EACf,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,UAAU;EACV,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB,4CAA4C;EAC5C,iBAAiB;EACjB,WAAW;EACX;;CAED;EACC,eAAe;EACf,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf;;AAEF;;;;;;;;;IASI;;CAEH;EACC,oBAAoB;EACpB;;CAED;EACC,sBAAsB;EACtB;;CAED;EACC,UAAU;EACV,iBAAiB;EACjB,wBAAwB;EACxB;;CAED;EACC,aAAa;EACb,oBAAoB;EACpB,YAAY;EACZ,aAAa;EACb,iBAAiB;EACjB,WAAW;EACX,mBAAmB;EACnB,WAAW;EACX,WAAW;EACX,UAAU;EACV;;CAED;EACC,eAAe;EACf,sBAAsB;EACtB,yBAAyB;EACzB,YAAY;EACZ,WAAW;EACX,UAAU;EACV,oBAAoB;EACpB,iBAAiB;EACjB,yCAAyC;EACzC;;CAED;EACC,8BAA8B;EAC9B,eAAe;EACf,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,cAAc;EACd,UAAU;EACV;;CAED;EACC;;;IAGE;EACF,0BAA0B;EAC1B,kBAAkB;EAClB,eAAe;EACf,mBAAmB;EACnB,WAAW;EACX,qBAAqB;EACrB,YAAY;EACZ,iBAAiB;EACjB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,uBAAuB;EACvB,+BAA+B;EAC/B;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,uBAAuB;EACvB,mBAAmB;EACnB,QAAQ;EACR,OAAO;EACP,uBAAuB;EACvB,aAAa;EACb,WAAW;EACX,aAAa;EACb,4CAA4C;EAC5C;;CAED;EACC,aAAa;EACb;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB,YAAY;EACZ,gBAAgB;EAChB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ,gBAAgB;EAChB,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;EACC,qBAAqB;EACrB;;CAED;;AAED;;CAEC;EACC;;CAED;EACC,YAAY;EACZ,YAAY;EACZ,mBAAmB;EACnB;;CAED;EACC,cAAc;EACd;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf,YAAY;EACZ,UAAU;EACV,oBAAoB;EACpB;;CAED;;AAED;CACC;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,mCAAmC;EACnC;;CAED;EACC,2BAA2B;EAC3B;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED;;AAED;;CAEC;EACC,wBAAwB;EACxB,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,qBAAc;EAAd,cAAc;EACd,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,WAAW;EACX,uBAAuB;EACvB;;CAED;EACC,cAAc;EACd;;CAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAED","file":"updraftplus-admin.min.css","sourcesContent":["@keyframes udp_blink {\n\n\tfrom {\n\t\topacity: 1;\n\t\ttransform: scale(1);\n\t}\n\n\tto {\n\t\topacity: 0.4;\n\t\ttransform: scale(0.85);\n\t}\n\n}\n\n/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.width-900 {\n\tmax-width: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n/* End widths and sizing */\n\n/* Font styling */\n.no-decoration {\n\ttext-decoration: none;\n}\n\n.bold {\n\tfont-weight: bold;\n}\n\n/* End font styling */\n/* Alignment */\n.center-align-td {\n\ttext-align: center;\n}\n\n/* End of Alignment */\n/* Padding */\n.remove-padding {\n\tpadding: 0 !important;\n}\n\n/* End of padding */\n\n.updraft-text-center {\n\ttext-align: center;\n}\n\n.autobackup {\n\tpadding: 6px;\n\tmargin: 8px 0px;\n}\n\nul .disc {\n\tlist-style: disc inside;\n}\n\n.dashicons-log-fix {\n\tdisplay: inherit;\n}\n\n.udpdraft__lifted {\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n}\n\n#updraft-wrap a .dashicons {\n\ttext-decoration: none;\n}\n\n.updraft-field-description,\ntable.form-table td p.updraft-field-description {\n\tfont-size: 90%;\n\tline-height: 1.2;\n\tfont-style: italic;\n\tmargin-bottom: 5px;\n}\n\n/* Input boxes */\nlabel.updraft_checkbox {\n\tdisplay: block;\n\tmargin-bottom: 4px;\n\tmargin-left: 26px;\n}\n\nlabel.updraft_checkbox > input[type=checkbox] {\n\tmargin-left: -25px;\n}\n\ndiv[id*=\"updraft_include_\"] {\n\tmargin-bottom: 9px;\n}\n\n/* Input boxes */\n.settings_page_updraftplus input[type=\"file\"] {\n\tborder: none;\n}\n\n.settings_page_updraftplus .wipe_settings {\n\tpadding-bottom: 10px;\n}\n\n.settings_page_updraftplus input[type=\"text\"] {\n\tfont-size: 14px;\n}\n\n.settings_page_updraftplus select {\n\tborder-radius: 4px;\n\tmax-width: 100%;\n}\n\ninput.updraft_input--wide,\ntextarea.updraft_input--wide {\n\tmax-width: 442px;\n\twidth: 100%;\n}\n\n#updraft-wrap .button-large {\n\tfont-size: 1.3em;\n}\n\n/* End input boxes */\n\n/* Main Buttons */\n.main-dashboard-buttons {\n\tborder-width: 4px;\n\tborder-radius: 12px;\n\tletter-spacing: 0px;\n\tfont-size: 17px;\n\tfont-weight: bold;\n\tpadding-left: 0.7em;\n\tpadding-right: 2em;\n\tpadding: 0.3em 1em;\n\tline-height: 1.7em;\n\tbackground: transparent;\n\tposition: relative;\n\tborder: 2px solid;\n\ttransition: all 0.2s;\n\tvertical-align: baseline;\n\tbox-sizing: border-box;\n\ttext-align: center;\n\tline-height: 1.3em;\n\tmargin-left: .3em;\n\ttext-transform: none;\n\tline-height: 1;\n\ttext-decoration: none;\n}\n\n.button-restore {\n\tborder-color: rgb(98, 158, 192);\n\tcolor: rgb(98, 158, 192);\n}\n\n.dashboard-main-sizing {\n\tborder-width: 4px;\n\twidth: 190px;\n\tline-height: 1.7em;\n}\n\np.updraftplus-option {\n\tmargin-top: 0;\n\tmargin-bottom: 5px;\n}\n\np.updraftplus-option-inline {\n\tdisplay: inline-block;\n\tpadding-right: 20px;\n}\n\nspan.updraftplus-option-label {\n\tdisplay: block;\n}\n\n/*\n* MIGRATE - CLONE\n*/\n\n#updraft-navtab-migrate-content .postbox {\n\tpadding: 18px;\n}\n\n/* Clone Rows */\n\n.updraftclone-main-row {\n\tdisplay: flex;\n}\n\n.updraftclone-tokens {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tmargin-right: 20px;\n\tmax-width: 300px;\n}\n\n.updraftclone-tokens p {\n\tmargin: 0;\n}\n\n.updraftclone_action_box {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tflex: 1;\n}\n\n.updraftclone_action_box p:first-child {\n\tmargin-top: 0;\n}\n\n.updraftclone_action_box p:last-child {\n\tmargin-bottom: 0;\n}\n\nspan.tokens-number {\n\tfont-size: 46px;\n\tdisplay: block;\n}\n\n/* Clone header button */\n.button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: none;\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\theight: 100%;\n\tborder-left: 1px solid #CCC;\n\tpadding-left: 10px;\n\tpadding-right: 10px;\n}\n\n.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tline-height: inherit;\n}\n\n.opened .button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: inline-block;\n}\n\n.opened .updraft_migrate_widget_temporary_clone_stage0 {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 8px;\n\tmargin-bottom: 21px;\n}\n\n/* Clone list table */\n.clone-list {\n\tclear: both;\n\twidth: 100%;\n\tmargin-top: 40px;\n}\n\n.clone-list table {\n\twidth: 100%;\n\ttext-align: left;\n}\n\n.clone-list table tr th {\n\tbackground: #E4E4E4;\n}\n\n.clone-list table tr td {\n\tbackground: #F5F5F5;\n\tword-break: break-word;\n}\n\n.clone-list table tr:nth-child(odd) td {\n\tbackground: #FAFAFA;\n}\n\n.clone-list table td,\n.clone-list table th {\n\tpadding: 6px;\n}\n\n/* Clone Progress */\n.updraftplus-clone .updraft_row {\n\tpadding-left: 0;\n\tpadding-right: 0;\n}\n\nbutton#updraft_migrate_createclone + .updraftplus_spinner {\n\tmargin-top: 13px;\n}\n\n/* Clone - Show step 1 info button */\n.button.button-hero.updraftclone_show_step_1 {\n\twhite-space: normal;\n\theight: auto;\n\tline-height: 14px;\n\tpadding-top: 10px;\n\tpadding-bottom: 10px;\n}\n\n.button.button-hero.updraftclone_show_step_1 span.dashicons {\n\theight: auto;\n}\n\n.updraftplus_clone_status {\n\tcolor: red;\n}\n\n/* MIGRATE */\n\na.updraft_migrate_add_site--trigger span.dashicons {\n\ttext-decoration: none;\n}\n\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\n.button-view-log:hover, .button-mass-selectors:hover,\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\n\tborder-color: #DF6926;\n\tcolor: #DF6926;\n}\n\n.button-migrate {\n\tcolor: rgb(238, 169, 32);\n\tborder-color: rgb(238, 169, 32);\n}\n\n#updraft_migrate_tab_main {\n\tpadding: 8px;\n}\n\n.updraft_migrate_widget_module_content {\n\tbackground: #FFF;\n\tborder-radius: 0;\n\tposition: relative;\n}\n\nbody.js #updraft_migrate .updraft_migrate_widget_module_content {\n\tdisplay: none;\n}\n\n.updraft_migrate_widget_module_content > h3,\ndiv[class*=\"updraft_migrate_widget_temporary_clone_stage\"] > h3 {\n\tmargin-top: 0;\n}\n\n/* Migrate / Clone headers */\n.updraft_migrate_widget_module_content header {\n\tposition: relative;\n\tdisplay: flex;\n\talign-content: center;\n\tjustify-items: center;\n\tmargin-top: -18px;\n\tmargin-left: -18px;\n\tmargin-right: -18px;\n\tmargin-bottom: 15px;\n\tborder-bottom: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content header h3,\n.updraft_migrate_widget_module_content header button.button.close {\n\tpadding: 10px;\n\tline-height: 20px;\n\theight: auto;\n\tmargin: 0;\n}\n\n.updraft_migrate_widget_module_content button.button.close {\n\ttext-decoration: none;\n\tpadding-left: 5px;\n\tborder-right: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content button.button.close .dashicons {\n\tmargin-top: 1px;\n}\n\n.updraft_migrate_widget_module_content header h3 {\n\tmargin: 0;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero {\n\tmax-width: 235px;\n\tword-wrap: normal;\n\twhite-space: normal;\n\tline-height: 1;\n\theight: auto;\n\tpadding-top: 13px;\n\tpadding-bottom: 13px;\n\ttext-align: left;\n\tposition: relative;\n\tmargin-right: 10px;\n\tmargin-bottom: 10px;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero .dashicons {\n\tposition: absolute;\n\tleft: 10px;\n\ttop: calc(50% - 8px);\n}\n\n/*\njquery UI Accordion module\n*/\n#updraft_migrate .ui-widget-content a {\n\tcolor: #1C94C4;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header {\n\tbackground: #F6F6F6;\n\tmargin: 0;\n\tborder-radius: 0;\n\tpadding-left: 0.5em;\n\tpadding-right: 0.7em;\n}\n\n#updraft-wrap .ui-widget {\n\tfont-family: inherit;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w {\n\tbackground-position: -96px 0px;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s {\n\tbackground-position: -64px 0;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tleft: auto;\n\tright: 5px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px rgba(91, 157, 217, 0.22), 0 0 2px 1px rgba(30, 140, 190, 0.3);\n\tbackground: #FFF;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons {\n\tcolor: #0572AA;\n\topacity: 1;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active {\n\tbackground: #F6F6F6;\n\tborder-bottom: 2px solid #0572AA;\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus {\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3), 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child) {\n\tborder-top: none;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .dashicons {\n\topacity: 0.4;\n\tmargin-right: 10px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n\tz-index: 1;\n}\n\n.updraft_next_scheduled_backups_wrapper {\n\tdisplay: flex;\n\tbackground: #FFF;\n\tjustify-items: center;\n\tflex-wrap: wrap;\n}\n\n.updraft_next_scheduled_backups_wrapper > div {\n\twidth: 50%;\n\tbackground: #FFF;\n\theight: auto;\n\t/* padding: 18px 33px; */\n\tpadding: 33px;\n\tbox-sizing: border-box;\n}\n\n.updraft_backup_btn_wrapper {\n\ttext-align: center;\n\tborder-left: 1px solid #F1F1F1;\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n}\n\n#updraft-delete-waitwarning span.spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tmargin: 0;\n\tmargin-right: 10px;\n}\n\nbutton#updraft-backupnow-button .spinner,\nbutton#updraft-backupnow-button .dashicons-yes {\n\tdisplay: none;\n}\n\nbutton#updraft-backupnow-button.loading .spinner {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tmargin-top: 13px;\n\tmargin-right: 0;\n}\n\nbutton#updraft-backupnow-button.loading {\n\tbackground-color: #EFEFEF;\n\tborder-color: #CCC;\n\ttext-shadow: 0 -1px 1px #BBC3C7, 1px 0 1px #BBC3C7, 0 1px 1px #BBC3C7, -1px 0 1px #BBC3C7;\n\tbox-shadow: none;\n}\n\nbutton#updraft-backupnow-button.finished .dashicons-yes {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tfont-size: 42px;\n\tmargin-right: 0;\n\tmargin-top: 2px;\n}\n\n.updraft_next_scheduled_entity {\n\twidth: 50%;\n\tdisplay: inline-block;\n\tfloat: left;\n\t/*\n\tpadding: 20px 20px 10px 20px;\n\t*/\n}\n\n.updraft_next_scheduled_entity .dashicons {\n\tcolor: #CCC;\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_entity strong {\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_heading {\n\tmargin-bottom: 10px;\n}\n\n.updraft_next_scheduled_date_time {\n\tcolor: #46A84B;\n}\n\n.updraft_time_now_wrapper {\n\tmargin-top: 68px;\n\twidth: 100%;\n}\n\n.updraft_time_now_label, .updraft_time_now {\n\tdisplay: inline-block;\n\tpadding: 7px;\n}\n\n.updraft_time_now_label {\n\tbackground: #B7B7B7;\n\tborder-top-left-radius: 4px;\n\tborder-bottom-left-radius: 4px;\n\tcolor: #FFF;\n\tmargin-right: 0;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);\n}\n\n.updraft_time_now {\n\tbackground: #F1F1F1;\n\tborder-top-right-radius: 4px;\n\tborder-bottom-right-radius: 4px;\n\tmargin-left: -3px;\n}\n\n#updraft_lastlogmessagerow {\n\tmargin: 6px 0;\n}\n\n#updraft_lastlogmessagerow {\n\tclear: both;\n\tpadding: 0.25px 0;\n}\n\n#updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: right;\n\tmargin-top: -2.5em;\n\tmargin-right: 2px;\n}\n\n#updraft_lastlogmessagerow > div {\n\tclear: both;\n\tbackground: #FFF;\n\tpadding: 18px;\n}\n\n#updraft_activejobs_table {\n\toverflow: hidden;\n\twidth: 100%;\n\tbackground: #FAFAFA;\n\tpadding: 0;\n}\n\n.updraft_requeststart {\n\tpadding: 15px 33px;\n\ttext-align: center;\n}\n\n.updraft_requeststart .spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tvertical-align: middle;\n\tmargin-top: -2px;\n}\n\na.updraft_jobinfo_delete.disabled {\n\topacity: 0.4;\n\tcolor: inherit;\n\ttext-decoration: none;\n}\n\n.updraft_row {\n\tclear: both;\n\ttransition: 0.3s all;\n\tpadding: 15px 33px;\n}\n\n.updraft_row.deleting {\n\topacity: 0.4;\n}\n\n.updraft_progress_container {\n\t/* width: 83%; */\n}\n\n.updraft_existing_backups_count {\n\tpadding: 2px 8px;\n\tfont-size: 12px;\n\tbackground: #CA4A1E;\n\tcolor: #FFF;\n\tfont-weight: bold;\n\tborder-radius: 10px;\n}\n\n.form-table .existing-backups-table input[type=\"checkbox\"] {\n\tborder-radius: 0;\n}\n\n.form-table .existing-backups-table .check-column {\n\twidth: 40px;\n\tpadding: 0;\n\tpadding-top: 8px;\n}\n\n.existing-backups-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.existing-backups-restore-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.button-delete {\n\tcolor: #E23900;\n\tborder-color: #E23900;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 10px;\n}\n\n.button-view-log, .button-mass-selectors {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-top: -1px;\n}\n\n.button-view-log {\n\twidth: 120px;\n}\n\n.button-existing-restore {\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\twidth: 110px;\n}\n\n.main-restore {\n\tmargin-right: 3%;\n\tmargin-left: 3%;\n}\n\n.button-entity-backup {\n\tcolor: #555;\n\tborder-color: #555;\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 5px;\n}\n\n.button-select-all {\n\twidth: 122px;\n}\n\n.button-deselect {\n\twidth: 92px;\n}\n\n#ud_massactions > .display-flex > .mass-selectors-margins, #updraft-delete-waitwarning > .display-flex > .mass-selectors-margins {\n\tmargin-right: -4px;\n}\n\n.udp-button-primary {\n\tborder-width: 4px;\n\tcolor: #0073AA;\n\tborder-color: #0073AA;\n\tfont-size: 14px;\n\theight: 40px;\n}\n\n#ud_massactions .button-delete {\n\tmargin-right: 0px;\n}\n\n.stored_local {\n\tborder-radius: 5px;\n\tbackground-color: #007FE7;\n\tpadding: 3px 5px 5px 5px;\n\tcolor: #FFF;\n\tfont-size: 75%;\n}\n\nspan#updraft_lastlogcontainer {\n\tword-break: break-all;\n}\n\n.stored_icon {\n\theight: 1.3em;\n\tposition: relative;\n\ttop: 0.2em;\n}\n\n.backup_date_label > * {\n\tvertical-align: middle;\n}\n\n.backup_date_label .dashicons {\n\tfont-size: 18px;\n}\n\n.backup_date_label .clear-right {\n\tclear: right;\n}\n\n.existing-backups-table .backup_date_label > div {\n\tfont-weight: bold;\n}\n\n/* End Main Buttons */\n\n/* End of common elements */\n\n.udp-logo-70 {\n\twidth: 70px;\n\theight: 70px;\n\tfloat: left;\n\tpadding-right: 25px;\n}\n\nh3 .thank-you {\n\tmargin-top: 0px;\n}\n\n.ws_advert {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n.dismiss-dash-notice {\n\tfloat: right;\n\tposition: relative;\n\ttop: -20px;\n}\n\n.updraft_exclude_container,\n.updraft_include_container {\n\tmargin-left: 24px;\n\tmargin-top: 5px;\n\tmargin-bottom: 10px;\n\tpadding: 15px;\n\tborder: 1px solid #DDD;\n}\n\nlabel.updraft-exclude-label {\n\tfont-weight: 500;\n\tmargin-bottom: 5px;\n\tdisplay: block;\n}\n\n.updraft_add_exclude_item,\n#updraft_include_more_paths_another {\n\tdisplay: inline-block;\n\tmargin-top: 10px;\n}\n\ninput.updraft_exclude_entity_field,\n.form-table td input.updraft_exclude_entity_field,\n.updraftplus-morefiles-row input[type=text] {\n\twidth: calc(100% - 70px);\n\tmax-width: 400px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.form-table td input.updraft_exclude_entity_field,\n\t.form-table td .updraftplus-morefiles-row input[type=text] {\n\t\tdisplay: inline-block;\n\t}\n\n}\n\n.updraft_exclude_entity_delete.dashicons, .updraft_exclude_entity_edit.dashicons, .updraft_exclude_entity_update.dashicons, .updraftplus-morefiles-row a.dashicons {\n\tmargin-top: 2px;\n\tfont-size: 20px;\n\tbox-shadow: none;\n\tline-height: 1;\n\tpadding: 3px;\n\tmargin-right: 4px;\n}\n\n.updraft_exclude_entity_delete,\n.updraft_exclude_entity_delete:hover,\n.updraftplus-morefiles-row-delete {\n\tcolor: #FF6347;\n}\n\n.updraft_exclude_entity_update.dashicons, .updraft_exclude_entity_update.dashicons:hover {\n\tcolor: #008000;\n\tfont-weight: bold;\n\tfont-size: 22px;\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_edit {\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete {\n\tdisplay: none;\n}\n\n.updraft-exclude-panel-heading {\n\tmargin-bottom: 8px;\n}\n\n.updraft-exclude-panel-heading h3 {\n\tmargin: 0.5em 0 0.5em 0;\n}\n\n.updraft-exclude-submit.button-primary {\n\tmargin-top: 5px;\n}\n\n.updraft_exclude_actions_list {\n\tfont-weight: bold;\n}\n\n.updraft-exclude-link {\n\tcursor: pointer;\n}\n\n#updraft_include_more_options {\n\tpadding-left: 25px;\n}\n\n#updraft_report_cell .updraft_reportbox,\n.updraft_small_box {\n\tpadding: 12px;\n\tmargin: 8px 0;\n\tborder: 1px solid #CCC;\n\tposition: relative;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete,\n.updraft_box_delete_button,\n.updraft_small_box .updraft_box_delete_button {\n\tpadding: 4px;\n\tpadding-top: 6px;\n\tborder: none;\n\tbackground: transparent;\n\tposition: absolute;\n\ttop: 4px;\n\tright: 4px;\n\tcursor: pointer;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete:hover {\n\tcolor: #DE3C3C;\n}\n\na.updraft_report_another .dashicons {\n\ttext-decoration: none;\n\tmargin-top: 2px;\n}\n\n.updraft_report_dbbackup.updraft_report_disabled {\n\tcolor: #CCC;\n}\n\n#updraft-navtab-settings-content .updraft-test-button {\n\tfont-size: 18px !important;\n}\n\n#updraft_report_cell .updraft_report_email {\n\tdisplay: block;\n\twidth: calc(100% - 50px);\n\tmargin-bottom: 9px;\n}\n\n#updraft_report_cell .updraft_report_another_p {\n\tclear: left;\n}\n\n/* Taken straight from admin.php */\n\n#updraft-navtab-settings-content table.form-table p {\n\tmax-width: 700px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td {\n\tbackground-color: #EFEFEF;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td {\n\tbackground-color: #E8E8E8;\n}\n\n.updraft_settings_sectionheading {\n\tdisplay: none;\n}\n\n.updraft-backupentitybutton-disabled {\n\tbackground-color: transparent;\n\tborder: none;\n\tcolor: #0074A2;\n\ttext-decoration: underline;\n\tcursor: pointer;\n\tclear: none;\n\tfloat: left;\n}\n\n.updraft-backupentitybutton {\n\tmargin-left: 8px;\n}\n\n.updraft-bigbutton {\n\tpadding: 2px 0px !important;\n\tmargin-right: 14px !important;\n\tfont-size: 22px !important;\n\tmin-height: 32px;\n\tmin-width: 180px;\n}\n\ntr[class*=\"_updraft_remote_storage_border\"] {\n\tborder-top: 1px solid #CCC;\n}\n\n.updraft_multi_storage_options {\n\tfloat: right;\n\tclear: right;\n\tmargin-bottom: 5px !important;\n}\n\n.updraft_toggle_instance_label {\n\tvertical-align: top !important;\n}\n\n.updraft_debugrow th {\n\tfloat: right;\n\ttext-align: right;\n\tfont-weight: bold;\n\tpadding-right: 8px;\n\tmin-width: 140px;\n}\n\n.updraft_debugrow td {\n\tmin-width: 300px;\n\tvertical-align: bottom;\n}\n\n#updraft_webdav_host_error, .onedrive_folder_error {\n\tcolor: red;\n}\n\n/* jstree styles */\n\n/* these styles hide the dots from the parent but keep the arrows */\n.updraft_jstree .jstree-container-ul > .jstree-node,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\n\tbackground-position: -36px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\n\tbackground-position: -4px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\n\tbackground: transparent;\n}\n\n/* zip browser jstree styles */\n#updraft_zip_files_container {\n\tposition: relative;\n\theight: 450px;\n\toverflow: none;\n}\n\n.updraft_jstree_info_container {\n\tposition: relative;\n\theight: auto;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n.updraft_jstree_info_container p {\n\tmargin: 1px;\n\tpadding-left: 10px;\n\tfont-size: 14px;\n}\n\n#updraft_zip_download_item {\n\tdisplay: none;\n\tcolor: #0073AA;\n\tpadding-left: 10px;\n}\n\n#updraft_zip_download_notice {\n\tpadding-left: 10px;\n}\n\n#updraft_exclude_files_folders_jstree {\n\tmax-height: 200px;\n\toverflow-y: scroll;\n}\n\n.updraft_jstree {\n\tposition: relative;\n\tborder: 1px dotted;\n\theight: 80%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n/* More files jstree styles */\n#updraft_more_files_container {\n\tposition: relative;\n\tdisplay: none;\n\twidth: 100%;\n\tborder: 1px solid #CCC;\n\tbackground: #FAFAFA;\n\tmargin-bottom: 5px;\n\tmargin-top: 4px;\n\tbox-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);\n}\n\ndiv#updraft_more_files_container::before {\n\tcontent: ' ';\n\twidth: 11px;\n\theight: 11px;\n\tdisplay: block;\n\tbackground: #FAFAFA;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 20px;\n\tborder-top: 1px solid #CCC;\n\tborder-left: 1px solid #CCC;\n\ttransform: translatey(-7px) rotate(45deg);\n}\n\ninput.updraft_more_path_editing {\n\tborder-color: #0285BA;\n}\n\ninput.updraft_more_path_editing ~ a.dashicons {\n\tdisplay: none;\n}\n\n#updraft_jstree_buttons {\n\tpadding: 10px;\n\tbackground: #E6E6E6;\n}\n\n#updraft_jstree_container {\n\theight: 300px;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n#updraft_more_files_container button {\n\tline-height: 20px;\n}\n\n#updraft_parent_directory {\n\tmargin: 10px 10px 4px 10px;\n\tpadding-left: 3px;\n}\n\n#updraft_jstree_confirm, #updraft_jstree_cancel {\n\tdisplay: none;\n}\n\n.updraftplus-morefiles-row-delete,\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n}\n\n#updraft-wrap .form-table th {\n\twidth: 230px;\n}\n\n#updraft-wrap .form-table .existing-backups-table th {\n\twidth: auto;\n}\n\n.updraft-viewlogdiv form {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-viewlogdiv {\n\tdisplay: inline-block;\n}\n\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\n\tborder: none;\n\tbackground-color: transparent;\n\tcolor: #000;\n\tmargin: 0px;\n\tpadding: 3px 4px;\n\tfont-size: 16px;\n\tline-height: 26px;\n}\n\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\n\tcolor: #FFF;\n\tcursor: pointer;\n}\n\n.button.button-remove {\n\tcolor: white;\n\tbackground-color: #DE3C3C;\n\tborder-color: #C00000;\n\tbox-shadow: 0 1px 0 #C10100;\n}\n\n.button.button-remove:hover,\n.button.button-remove:focus {\n\tborder-color: #C00;\n\tcolor: #FFF;\n\tbackground: #C00;\n}\n\n/* button-remove colors for midnight admin theme */\nbody.admin-color-midnight .button.button-remove {\n\tcolor: #DE3C3C;\n\tbackground-color: #F7F7F7;\n\tborder-color: #CCC;\n\tbox-shadow: 0 1px 0 #CCC;\n}\n\nbody.admin-color-midnight .button.button-remove:hover, body.admin-color-midnight .button.button-remove:focus {\n\tborder-color: #BA281F;\n}\n\nbody.admin-color-midnight .button.button-remove:focus {\n\tbox-shadow: inherit;\n\tbox-shadow: 0 0 3px rgba(0, 115, 170, 0.8);\n}\n\n.drag-drop #drag-drop-area2 {\n\tborder: 4px dashed #DDD;\n\theight: 200px;\n}\n\n#drag-drop-area2 .drag-drop-inside {\n\tmargin: 36px auto 0;\n\twidth: 350px;\n}\n\n#filelist, #filelist2 {\n\twidth: 100%;\n}\n\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tpadding: 1px;\n\tbackground: #ECECEC;\n\tborder: solid 1px #CCC;\n\tmargin: 4px 0;\n}\n\n.updraft_premium section {\n\tmargin-bottom: 20px;\n}\n\n/*\n\tCall to action Premium\n*/\n.updraft_premium_cta {\n\tbackground: #FFF;\n\tmargin-top: 30px;\n\tpadding: 0;\n\tborder-left: 4px solid #DB6A03;\n}\n\n.updraft_premium_cta a {\n\tfont-weight: normal;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero {\n\tfont-size: 1.3em;\n\tletter-spacing: 0.03rem;\n\ttext-transform: uppercase;\n}\n\n.updraft_premium_cta__top {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tpadding: 18px 30px;\n}\n\n.updraft_premium_cta__bottom {\n\tbackground: #F9F9F9;\n\tpadding: 5px 30px;\n}\n\n.updraft_premium_cta__summary {\n\tmargin-right: 60px;\n}\n\n.updraft_premium_cta h2 {\n\tfont-size: 28px;\n\tfont-weight: 200;\n\tline-height: 1;\n\tmargin: 0;\n\tmargin-bottom: 5px;\n\tletter-spacing: 0.05rem;\n\tcolor: #DB6A03;\n}\n\n.updraft_premium_cta ul li::after {\n\tcolor: #CCC;\n}\n\n@media only screen and (max-width: 768px) {\n\n\t.updraft_premium_cta__top {\n\t\tflex-direction: column;\n\t\ttext-align: center;\n\t\talign-items: center;\n\t}\n\n\t.updraft_premium_cta__summary {\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 30px;\n\t}\n\n}\n\n/*\n\tBox\n*/\n.udp-box {\n\tbackground: #FFF;\n\tpadding: 20px;\n\tbox-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);\n\ttext-align: center;\n}\n\n.udp-box h3 {\n\tmargin: 0;\n}\n\n.udp-box__heading {\n\talign-self: center;\n\tbackground: none;\n\tbox-shadow: none;\n}\n\n/*\n\tOther Plugins\n*/\n.updraft-more-plugins {\n\tdisplay: flex;\n\tflex-direction: row;\n\tflex-wrap: wrap;\n\tjustify-content: space-between;\n\tflex-wrap: wrap;\n}\n\n.updraft-more-plugins img {\n\tmax-width: 200px;\n\twidth: 100%;\n\tdisplay: inline-block;\n}\n\n.updraft-more-plugins .udp-box {\n\tbox-sizing: border-box;\n\twidth: 24%;\n}\n\n.updraft-more-plugins .udp-box p:last-child {\n\tmargin-bottom: 0;\n\tpadding-bottom: 0;\n}\n\n/*\n\tlinks list\n*/\n.updraft_premium_description_list {\n\ttext-align: left;\n\tmargin: 0;\n\tfont-size: 12px;\n}\n\nul.updraft_premium_description_list, ul#updraft_restore_warnings {\n\tlist-style: disc inside;\n}\n\nul.updraft_premium_description_list li {\n\tdisplay: inline;\n}\n\nul.updraft_premium_description_list li::after {\n\tcontent: \" | \";\n}\n\nul.updraft_premium_description_list li:last-child::after {\n\tcontent: \"\";\n}\n\n.updraft_feature_cell {\n\tbackground-color: #F7D9C9 !important;\n\tpadding: 5px 10px;\n}\n\n.updraftplus_com_login_status, .updraftplus_com_key_status {\n\tdisplay: none;\n\tborder-left-color: #DC3232 !important;\n\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n\tmargin: 5px 0 15px 0;\n\tpadding: 5px 12px;\n}\n\n.updraft_feat_table {\n\tborder: none;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n}\n\n.updraft_feat_th, .updraft_feat_table td {\n\tborder: 1px solid #F1F1F1;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n\tpadding: 15px;\n}\n\n.updraft_feat_table td {\n\tborder-bottom-width: 4px;\n}\n\n.updraft_feat_table td:first-child {\n\tborder-left: none;\n}\n\n.updraft_feat_table td:last-child {\n\tborder-right: none;\n}\n\n.updraft_feat_table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.updraft_feat_table td:nth-child(2),\n.updraft_feat_table td:nth-child(3) {\n\tbackground-color: rgba(241, 241, 241, 0.38);\n\twidth: 190px;\n}\n\n.updraft_feat_table__header td img {\n\tdisplay: block;\n\tmargin: 0 auto;\n}\n\n.updraft_feat_table__header td {\n\ttext-align: center;\n}\n\n.updraft_feat_table .installed {\n\tfont-size: 14px;\n}\n\n.updraft_feat_table p {\n\tpadding: 0px 10px;\n\tmargin: 5px 0px;\n\tfont-size: 13px;\n}\n\n.updraft_feat_table h4 {\n\tmargin: 5px 0px;\n}\n\n.updraft_feat_table .dashicons {\n\twidth: 25px;\n\theight: 25px;\n\tfont-size: 25px;\n\tline-height: 1;\n}\n\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\n\tcolor: green;\n}\n\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\n\tcolor: red;\n}\n\n.updraft_tick_cell {\n\ttext-align: center;\n}\n\n.updraft_tick_cell img {\n\tmargin: 4px 0;\n\theight: 24px;\n}\n\n.ud_downloadstatus__close {\n\tborder: none;\n\tbackground: transparent;\n\twidth: auto;\n\tfont-size: 20px;\n\tpadding: 0;\n\tcursor: pointer;\n}\n\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #0572AA;\n\theight: 8px;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tmargin-top: 8px;\n}\n\ndiv[class^=\"updraftplus_downloader_container_\"] {\n\tpadding: 10px;\n}\n\ntr.updraftplusmethod h3 {\n\tmargin: 0px;\n}\n\ntr.updraftplusmethod img {\n\tmax-width: 100%;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\n\tcursor: pointer;\n\tcolor: red;\n\tfont-size: 120%;\n\tfont-weight: bold;\n\tborder: 0px;\n\tborder-radius: 3px;\n\tpadding: 2px;\n\tmargin: 0 6px;\n\ttext-decoration: none;\n\tdisplay: inline-block;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\n\tcursor: pointer;\n\tcolor: white;\n\tbackground: red;\n}\n\n#updraft_backup_started {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n/* backup finished */\n.blockUI.blockOverlay.ui-widget-overlay {\n\tbackground: #000;\n}\n\n.updraft_success_popup {\n\ttext-align: center;\n\tpadding-bottom: 30px;\n}\n\n.updraft_success_popup > .dashicons {\n\tfont-size: 100px;\n\twidth: 100px;\n\theight: 100px;\n\tline-height: 100px;\n\tpadding: 0px;\n\tborder-radius: 50%;\n\tmargin-top: 30px;\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tbackground: #E2E6E5;\n}\n\n.updraft_success_popup > .dashicons.dashicons-yes {\n\ttext-indent: -5px;\n}\n\n.updraft_success_popup.success > .dashicons {\n\tcolor: green;\n}\n\n.updraft_success_popup.warning > .dashicons {\n\tcolor: #888;\n}\n\n.updraft_success_popup--message {\n\tpadding: 20px;\n}\n\n.button.updraft-close-overlay .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tmargin-left: -5px;\n\tpadding: 0;\n}\n\n.updraft_saving_popup img {\n\tanimation-name: udp_blink;\n\tanimation-duration: 610ms;\n\tanimation-iteration-count: infinite;\n\tanimation-direction: alternate;\n\tanimation-timing-function: ease-out;\n}\n\n.udp-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t.udp-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding-right: 5px;\n\t}\n\n}\n\n/* End stuff already in admin.php */\n#plupload-upload-ui2 {\n\twidth: 80%;\n}\n\n.backup-restored {\n\tpadding: 8px;\n}\n\n.backup-restored span {\n\tfont-size: 120%;\n}\n\n.memory-limit {\n\tpadding: 8px;\n}\n\n.updraft_list_errors {\n\tpadding: 8px;\n}\n\n/*.nav-tab {\n\tborder-radius: 20px 20px 0 0;\n\tborder-color: grey;\n\tborder-width: 2px;\n\tmargin-top: 34px;\n}\n\n.nav-tab:hover {\n\tborder-bottom: 0;\n}\n\n.nav-tab-active, .nav-tab-active:active {\n\tcolor: #df6926;\n\tborder-color: #D3D3D3;\n\tborder-width: 1px;\n\tborder-bottom: 0;\n}\n\n.nav-tab-active:focus {\n\tcolor: #df6926;\n}*/\n\n.nav-tab-wrapper {\n\tmargin: 14px 0px;\n}\n\n#updraft-poplog-content {\n\twhite-space: pre-wrap;\n}\n\n.next-backup {\n\tborder: 0px;\n\tpadding: 0px;\n\tmargin: 0 10px 0 0;\n}\n\n.not-scheduled {\n\tvertical-align: top !important;\n\tmargin: 0px !important;\n\tpadding: 0px !important;\n}\n\n.next-backup .updraft_scheduled {\n\t/* width: 124px;*/\n\tmargin: 0px;\n\tpadding: 2px 4px 2px 0px;\n}\n\n#next-backup-table-inner td {\n\tvertical-align: top;\n}\n\n.updraft_all-files {\n\tcolor: blue;\n}\n\n.multisite-advert-width {\n\twidth: 800px;\n}\n\n.updraft_settings_sectionheading {\n\tmargin-top: 6px;\n}\n\n.premium-upgrade-prompt {\n\t/* font-size: 115%; */\n}\n\n.show_admin_restore_in_progress_notice {\n\tpadding: 8px;\n}\n\n.show_admin_restore_in_progress_notice .unfinished-restoration {\n\tfont-size: 120%;\n}\n\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\n\tmargin: 4px 16px 6px 16px;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n}\n\n#backupnow_database_moreoptions {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.form-table #updraft_activejobsrow .minimum-height {\n\tmin-height: 100px;\n}\n\n#updraft_activejobsrow th {\n\tmax-width: 112px;\n\tmargin: 0;\n\tpadding: 13px 0 0 0;\n}\n\n#updraft_lastlogmessagerow .last-message {\n\tpadding-top: 20px;\n\tdisplay: block;\n}\n\n.updraft_simplepie {\n\tvertical-align: top;\n}\n\n.download-backups {\n\tmargin-top: 8px;\n}\n\n.download-backups .updraft_download_button {\n\tmargin-right: 6px;\n}\n\n.download-backups .ud-whitespace-warning, .download-backups .ud-bom-warning {\n\tbackground-color: pink;\n\tpadding: 8px;\n\tmargin: 4px;\n\tborder: 1px dotted;\n}\n\n.download-backups .ul {\n\tlist-style: none inside;\n\tmax-width: 800px;\n\tmargin-top: 6px;\n\tmargin-bottom: 12px;\n}\n\n#updraft-plupload-modal {\n\tmargin: 16px 0;\n}\n\n.download-backups .upload {\n\tmax-width: 610px;\n}\n\n.download-backups #plupload-upload-ui {\n\twidth: 100%;\n}\n\n.ud_downloadstatus {\n\tpadding: 10px 0;\n}\n\n#ud_massactions, #updraft-delete-waitwarning {\n\tpadding: 14px;\n\tbackground: rgb(241, 241, 241);\n\tposition: absolute;\n\tleft: 0;\n\ttop: 100%;\n}\n\n#ud_massactions > *, #updraft-delete-waitwarning > * {\n\tvertical-align: middle;\n}\n\n#ud_massactions .updraftplus-remove {\n\tdisplay: inline-block;\n\tmargin-right: 0;\n}\n\n#ud_massactions .updraftplus-remove a {\n\ttext-decoration: none;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n}\n\nsmall.ud_massactions-tip {\n\tdisplay: inline-block;\n\topacity: 0.5;\n\tfont-style: italic;\n\tmargin-left: 20px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups {\n\tmargin-bottom: 35px;\n\tposition: relative;\n}\n\n#updraft-message-modal-innards {\n\tpadding: 4px;\n}\n\n#updraft-authenticate-modal {\n\ttext-align: center;\n\tfont-size: 16px !important;\n}\n\n#updraft-authenticate-modal p {\n\tfont-size: 16px;\n}\n\n#updraft_delete_form p {\n\tmargin-top: 3px;\n\tpadding-top: 0;\n}\n\n#updraft_restore_form .cannot-restore {\n\tmargin: 8px 0;\n}\n\n#updraft_restorer_dboptions {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder: dashed 1px;\n}\n\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraft_debugrow th {\n\tvertical-align: top;\n\tpadding-top: 6px;\n\tmax-width: 140px;\n}\n\n.expertmode p {\n\tfont-size: 125%;\n}\n\n.expertmode .call-wp-action {\n\twidth: 300px;\n\theight: 22px;\n}\n\n.updraftplus-lock-advert {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.uncompressed-data {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.delete-old-directories {\n\tpadding: 8px;\n\tpadding-bottom: 12px;\n}\n\n.active-jobs {\n\twidth: 100%;\n\ttext-align: center;\n\tpadding: 33px;\n}\n\n.job-id {\n\tmargin-top: 0;\n\tmargin-bottom: 8px;\n}\n\n.next-resumption {\n\tfont-weight: bold;\n}\n\n.updraft_percentage {\n\tz-index: -1;\n\tposition: absolute;\n\tleft: 0px;\n\ttop: 0px;\n\ttext-align: center;\n\tbackground-color: #1D8EC2;\n\ttransition: width 0.3s;\n}\n\n.curstage {\n\tz-index: 1;\n\tborder-radius: 2px;\n\tmargin-top: 8px;\n\twidth: 100%;\n\theight: 26px;\n\tline-height: 26px;\n\tposition: relative;\n\ttext-align: center;\n\tfont-style: italic;\n\tcolor: #FFF;\n\tbackground-color: #B7B7B7;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n}\n\n.curstage-info {\n\tdisplay: inline-block;\n\tz-index: 2;\n}\n\n.retain-files {\n\twidth: 48px;\n}\n\n.backup-interval-description tr td div {\n\tmax-width: 670px;\n}\n\n#updraft-manualdecrypt-modal {\n\twidth: 85%;\n\tmargin: 6px;\n\tmargin-left: 100px;\n}\n\n.directory-permissions {\n\tfont-size: 110%;\n\tfont-weight: bold;\n}\n\n.double-warning {\n\tborder: 1px solid;\n\tpadding: 6px;\n}\n\n.raw-backup-info {\n\tfont-style: italic;\n\tfont-weight: bold;\n\tfont-size: 120%;\n}\n\n.updraft_existingbackup_date {\n\twidth: 22%;\n\tmax-width: 140px;\n}\n\n.updraft_existing_backups_wrapper {\n\tmargin-top: 20px;\n\tborder-top: 1px solid #DDD;\n}\n\n.updraft-no-backups-msg {\n\ttext-align: center;\n}\n\n.tr-bottom-4 {\n\tmargin-bottom: 4px;\n}\n\n.existing-backups-table th {\n\tpadding: 8px 10px;\n}\n\n.form-table .backup-date {\n\twidth: 172px;\n}\n\n.form-table .backup-data {\n\twidth: 426px;\n}\n\n.form-table .updraft_backup_actions {\n\twidth: 272px;\n}\n\n.existing-date {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n\tmax-width: 140px;\n\twidth: 25%;\n}\n\n.line-break-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.line-break-td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.td-line-color {\n\theight: 2px;\n\tbackground-color: #888;\n}\n\n.raw-backup {\n\tmax-width: 140px;\n}\n\n.existing-backups-actions {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border > td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.existing-backups-border > div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.updraft_existing_backup_date {\n\tmax-width: 140px;\n}\n\n.updraftplus-upload {\n\tmargin-right: 6px;\n\tfloat: left;\n\tclear: none;\n}\n\n.before-restore-button {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.before-restore-button div {\n\tfloat: none;\n\tdisplay: inline-block;\n}\n\n.table-separator-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.table-separator-td {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n.end-of-table-div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.last-backup-job {\n\tpadding-top: 3% !important;\n}\n\n.line-height-03 {\n\tline-height: 0.3 !important;\n}\n\n.line-height-13 {\n\tline-height: 1.3 !important;\n}\n\n.line-height-23 {\n\tline-height: 2.3 !important;\n}\n\n#updraft_diskspaceused {\n\tcolor: #DF6926;\n}\n\n#updraft_delete_old_dirs_pagediv {\n\tpadding-bottom: 10px;\n}\n\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\n\tpadding: 0;\n}*/\n\n/* Time + scheduling add-on*/\n.fix-time {\n\twidth: 70px;\n}\n\n.retain-files {\n\twidth: 70px;\n}\n\n.number-input {\n\tmin-width: 50px;\n\tmax-width: 70px;\n}\n\n.additional-rule-width {\n\tmin-width: 60px;\n\tmax-width: 70px;\n}\n\n/* Add-ons */\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\n\n.dashicons {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n.addon-logo-150 {\n\tmargin-left: 30px;\n\tmargin-top: 33px;\n\theight: 125px;\n\twidth: 150px;\n}\n\n.margin-bottom-50 {\n\tmargin-bottom: 50px;\n}\n\n.premium-container {\n\twidth: 80%;\n}\n\n/* Main Header */\n\n.main-header {\n\tbackground-color: #DF6926;\n\theight: 200px;\n\twidth: 100%;\n}\n\n.button-add-to-cart {\n\tcolor: white;\n\tborder-color: white;\n\tfloat: none;\n\tmargin-right: 17px;\n}\n\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\n\tborder-color: #A0A5AA;\n\tcolor: #A0A5AA;\n}\n\n.addon-title {\n\tmargin-top: 25px;\n}\n\n.addon-text {\n\tmargin-top: 75px;\n}\n\n.image-main-div {\n\twidth: 25%;\n\tfloat: left;\n}\n\n.text-main-div {\n\twidth: 60%;\n\tfloat: left;\n\ttext-align: center;\n\tcolor: white;\n\tmargin-top: 16px;\n}\n\n.text-main-div-title {\n\tfont-weight: bold !important;\n\tcolor: white;\n\ttext-align: center;\n}\n\n.text-main-div-paragraph {\n\tcolor: white;\n}\n\n/* End main header */\n\n/* Vault icons */\n\n.updraftplus-vault-cta {\n\twidth: 100%;\n\ttext-align: center;\n\tmargin-bottom: 50px;\n}\n\n.updraftplus-vault-cta h1 {\n\tfont-weight: bold;\n}\n\n.updraftvault-buy {\n\twidth: 225px;\n\theight: 225px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 50px;\n\tposition: relative;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault {\n\twidth: 275px;\n\theight: 275px;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\n\tright: 21%;\n\tfont-size: 16px;\n\tborder-width: 4px !important;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\n\tfont-size: 16px;\n}\n\n.updraftvault-buy .button-purchase {\n\tright: 24%;\n\tmargin-left: 0;\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.right {\n\tmargin-right: 0px;\n}\n\n.updraftvault-buy .addon-logo-100 {\n\theight: 100px;\n\twidth: 125px;\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .addon-logo-large {\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .button-buy-vault {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 29%;\n\tbottom: 2%;\n}\n\n.premium-addon-div .button-purchase {\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy .button-buy-vault:hover {\n\tborder-color: darkgrey;\n\tcolor: darkgrey;\n}\n\n/* End Vault icons */\n\n/* Premium addons */\n\n.premium-addons {\n\tmargin-top: 80px;\n\twidth: 100%;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.addon-list {\n\t/* margin-left: 32px; */\n\tdisplay: table;\n\ttext-align: center;\n}\n\n.premium-addons h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-addons p {\n\ttext-align: center;\n}\n\n.premium-addons .premium-addon-div {\n\twidth: 200px;\n\theight: 250px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 25px;\n\tmargin-top: 25px;\n\ttext-align: center;\n\tposition: relative;\n}\n\n.premium-addons .premium-addon-div p {\n\tmargin-left: 2px;\n\tmargin-right: 2px;\n}\n\n.premium-addons .premium-addon-div img {\n\twidth: auto;\n\theight: 50px;\n\tmargin-top: 7px;\n}\n\n.premium-addons .premium-addon-div .hr-alignment {\n\tmargin-top: 44px;\n}\n\n.premium-addons .premium-addon-div .dropbox-logo {\n\theight: 39px;\n\twidth: 150px;\n}\n\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\n\twidth: 75%;\n\theight: 24px;\n}\n\n.button-purchase {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 25%;\n\tbottom: 2%;\n}\n\n.button-purchase:hover {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n}\n\n.premium-addons .premium-addon-div hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.premium-addon-div p {\n\tfont-style: italic;\n}\n\n.addon-list > .premium-addon-div > .onedrive-fix,\n.addon-list > .premium-addon-div > .azure-logo {\n\tmargin-top: 33px;\n}\n\n.addon-list > .premium-addon-div > .dropbox-fix {\n\tmargin-top: 18px;\n}\n\n/* End premium addons */\n\n\n/* Forgotton something (that is the name of the div rather than a mental note!) */\n\n.premium-forgotton-something {\n\tmargin-top: 5%;\n}\n\n.premium-forgotton-something h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-forgotton-something p {\n\ttext-align: center;\n\tfont-weight: normal;\n}\n\n.premium-forgotton-something .button-faq {\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.premium-forgotton-something .button-faq:hover {\n\tcolor: #777;\n\tborder-color: #777;\n}\n\n/* End of forgotton something */\n\n.updraftplusmethod.updraftvault #vaultlogo {\n\tpadding-left: 40px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option {\n\tfloat: left;\n\twidth: 50%;\n\ttext-align: center;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option div {\n\tclear: right;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .clear-left {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .padding-top-20px {\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .padding-top-14px {\n\tpadding-top: 14px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\n\tfont-size: 18px !important;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\n\tmargin-top: 8px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\n\tmargin-right: 10px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_email {\n\twidth: 280px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_pass {\n\twidth: 200px;\n}\n\n.updraftplusmethod.updraftvault #vault-is-connected {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\tfloat: left;\n\twidth: 33%;\n\ttext-align: center;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\n\tfont-size: 200%;\n\tfont-weight: bold;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\n\tclear: both;\n\tfont-size: 150%;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\n\tclear: both;\n\tfont-size: 115%;\n\tfont-style: italic;\n}\n\n/* Automation Backup Advert by B */\n.autobackup-image {\n/* \tdisplay: inline-block; */\n/*\tmin-width: 10%;\n\tmax-width:25%;*/\n/*\tfloat: left;*/\n\tclear: left;\n\tfloat: left;\n\twidth: 110px;\n\theight: 110px;\n}\n\n.autobackup-description {\n\twidth: 100%;\n}\n\n.advert-description {\n\tfloat: left;\n\tclear: right;\n\tpadding: 4px 10px 8px 10px;\n\twidth: 70%;\n\tclear: right;\n\tvertical-align: top;\n}\n\n.advert-btn {\n\tdisplay: inline-block;\n\tmin-width: 10%;\n\tvertical-align: top;\n\tmargin-bottom: 8px;\n}\n\n.advert-btn:first-of-type {\n\tmargin-top: 25px;\n}\n\n.advert-btn a {\n\tdisplay: block;\n\tcursor: pointer;\n}\n\na.btn-get-started {\n\tbackground: #FFF;\n\tborder: 2px solid #DF6926;\n\tborder-radius: 4px;\n\tcolor: #DF6926;\n\tdisplay: inline-block;\n\tmargin-left: 10px !important;\n\tmargin-bottom: 7px !important;\n\tfont-size: 18px !important;\n\tline-height: 20px;\n\tmin-height: 28px;\n\tpadding: 11px 10px 5px 10px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n}\n\n.circle-dblarrow {\n\tborder: 1px solid #DF6926;\n\tborder-radius: 100%;\n\tdisplay: inline-block;\n\tfont-size: 17px;\n\tline-height: 17px;\n\tmargin-left: 5px;\n\twidth: 20px;\n\theight: 20px;\n\ttext-align: center;\n}\n\n/* End Automation Backup Advert by B */\n/* New Responsive Pretty Advanced Settings */\n.expertmode .advanced_settings_container {\n\theight: auto;\n\toverflow: hidden;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu {\n\tfloat: none;\n\tborder-bottom: 1px solid rgb(204, 204, 204);\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content {\n\tpadding-top: 5px;\n\tfloat: none;\n\twidth: auto;\n\toverflow: auto;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content h3:first-child {\n\tmargin-top: 5px !important;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\n\tdisplay: none;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\n\tdisplay: block;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tpadding: 5px;\n\tcolor: #000;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\n\tfont-size: 16px;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\n\tbackground-color: #EAEAEA;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\n\tbackground-color: #3498DB;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\n\tbackground-color: #72C5FD;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\n\theight: auto !important;\n}\n\ndiv#updraft-wrap a {\n\tcursor: pointer !important;\n}\n\n.updraftcentral_wizard_option {\n\twidth: 45%;\n\tfloat: left;\n\ttext-align: center;\n}\n\n.updraftcentral_wizard_option label {\n\tmargin-bottom: 8px;\n}\n\n#updraftcentral_keys_table {\n\tdisplay: none;\n}\n\n.create_key_container {\n\tborder: 1px solid;\n\tborder-radius: 4px;\n\tpadding: 0 0 6px 6px;\n\tmargin-bottom: 8px;\n}\n\n.updraftcentral_cloud_connect {\n\tborder-radius: 4px;\n\tborder: 1px solid #000;\n\tpadding: 0 20px;\n\tmargin-top: 30px;\n\tbackground-color: #FFF;\n}\n\n.updraftcentral_cloud_error {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #F00;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_info {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #EF8F31;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftplus_spinner.spinner {\n\tpadding-left: 25px;\n\tfloat: none;\n}\n\n.updraftplus_spinner.spinner.visible {\n\tvisibility: visible;\n}\n\n.updraftcentral_cloud_notices .updraftplus_spinner {\n\tmargin-top: -5px;\n}\n\n.updraftcentral-subheading {\n\tfont-size: 14px;\n\tmargin-top: -10px;\n\tmargin-bottom: 20px;\n}\n\n#updraftcentral_cloud_form input#email,\n#updraftcentral_cloud_form input#password {\n\tmin-width: 250px;\n}\n\n.updraftcentral-data-consent {\n\tfont-size: 13px;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_wizard_image {\n\tfloat: left;\n\tmin-width: 100px;\n\tmargin-right: 25px;\n}\n\n.updraftcentral_cloud_wizard {\n\tfloat: left;\n}\n\n.updraftcentral_cloud_clear {\n\tclear: both;\n}\n\n.updraftplus-settings-footer {\n\tmargin-top: 30px;\n}\n\n.updraftplus-top-menu {\n\tpadding: 0.5em;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\tbackground: transparent;\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: none;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_row {\n\tflex-direction: column;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container {\n\twidth: 100%;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\toverflow: inherit;\n}\n\n#updraft_inpage_backup span#updraft_lastlogcontainer {\n\tpadding: 18px;\n\tbackground: #FAFAFA;\n\tdisplay: block;\n\tfont-size: 90%;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup div#updraft_activejobsrow {\n\tbackground: #FAFAFA;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow > div {\n\tbackground: transparent;\n\tpadding: 0;\n}\n\n#updraft_inpage_backup .last-message > strong {\n\tdisplay: block;\n\tmargin-top: 13px;\n}\n\n@media only screen and (min-width: 1024px) {\n\n\t#updraft_activejobsrow .updraft_row {\n\t\tdisplay: flex;\n\t\talign-items: baseline;\n\t}\n\n\t#updraft_activejobsrow .updraft_row .updraft_col {\n\t\tflex: auto;\n\t}\n\n\t#updraft_activejobsrow .updraft_progress_container {\n\t\twidth: calc(100% - 230px);\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\n\t.settings_page_updraftplus input[type=text],\n\t.settings_page_updraftplus input[type=password],\n\t.settings_page_updraftplus input[type=number] {\n\t\t/* border-radius: 4px; */\n\t\tline-height: 1.42;\n\t\t/* border: 1px solid #CCC; */\n\t\theight: 27px;\n\t\tpadding: 2px 6px;\n\t\tcolor: #555;\n\t}\n\n\t.settings_page_updraftplus input[type=\"number\"] {\n\t\theight: 31px;\n\t}\n\n\t#ud_massactions.active, #updraft-delete-waitwarning.active {\n\t\tposition: fixed;\n\t\tbottom: 0;\n\t\tleft: 160px;\n\t\tright: 0;\n\t\ttop: auto;\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n\t}\n\n\tbody.folded #ud_massactions.active, body.folded #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n\t.updraft-after-form-table {\n\t\tmargin-left: 250px;\n\t}\n\n}\n\n@media only screen and (min-width: 782px) and (max-width: 960px) {\n\n\tbody.auto-fold #ud_massactions.active, body.auto-fold #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n}\n\n@media only screen and (max-width: 782px) {\n\n\t#updraft-wrap {\n\t\tmargin-right: 0;\n\t}\n\n\t#updraft-wrap .form-table td {\n\t\tpadding-right: 0;\n\t}\n\n\tlabel.updraft_checkbox {\n\t\tmargin-bottom: 8px;\n\t\tmargin-top: 8px;\n\t\tmargin-left: 36px;\n\t}\n\n\t.updraft_retain_rules {\n\t\tposition: relative;\n\t\tmargin-right: 0;\n\t\tborder: 1px solid #CCC;\n\t\tpadding: 5px;\n\t\tmargin-bottom: -1px;\n\t}\n\n\t.updraft_retain_rules_delete {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttop: 5px;\n\t}\n\n\ta[id*=updraft_retain_] {\n\t\tdisplay: block;\n\t\tpadding: 15px 15px 15px 0;\n\t}\n\n\tlabel.updraft_checkbox > input[type=checkbox] {\n\t\tmargin-left: -33px;\n\t}\n\n\t#updraft-backupnow-button {\n\t\tmargin: 0;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > .updraft_backup_btn_wrapper {\n\t\tpadding-top: 0;\n\t}\n\n\t#ud_massactions, #updraft-delete-waitwarning {\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t}\n\n\t#ud_massactions.active {\n\t\tposition: fixed;\n\t\ttop: auto;\n\t\tbottom: 0;\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t\tbox-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t}\n\n\t#ud_massactions strong {\n\t\tdisplay: block;\n\t\tmargin-bottom: 5px;\n\t}\n\n\tsmall.ud_massactions-tip {\n\t\tdisplay: block;\n\t}\n\n/*\t.advert-description {\n\t\tmin-width: 75%;\n\t\tmargin-bottom: 5px;\n\t}\n\n\t.advert-btn {\n\t\tmargin-top: 15px;\n\t\tmargin-left:86px;\n\t\tmin-width: 100%;\n\t}*/\n\n\t.existing-backups-table .backup_date_label > div {\n\t\tfont-weight: normal;\n\t}\n\n\t.existing-backups-table .backup_date_label .clear-right {\n\t\tdisplay: inline-block;\n\t}\n\n\ttable.widefat.existing-backups-table {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t\tbackground: transparent;\n\t}\n\n\t.existing-backups-table thead {\n\t\tborder: none;\n\t\tclip: rect(0 0 0 0);\n\t\theight: 1px;\n\t\tmargin: -1px;\n\t\toverflow: hidden;\n\t\tpadding: 0;\n\t\tposition: absolute;\n\t\twidth: 1px;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.existing-backups-table tr {\n\t\tdisplay: block;\n\t\tmargin-bottom: .625em;\n\t\tpadding-bottom: 16.625px;\n\t\twidth: 100%;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);\n\t}\n\n\t.existing-backups-table td {\n\t\tborder-bottom: 1px solid #DDD;\n\t\tdisplay: block;\n\t\tfont-size: .9em;\n\t\ttext-align: left;\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: 0;\n\t}\n\n\t.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {\n\t\t/*\n\t\t* aria-label has no advantage, it won't be read inside a table\n\t\tcontent: attr(aria-label);\n\t\t*/\n\t\tcontent: attr(data-label);\n\t\tfont-weight: bold;\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tleft: auto;\n\t\tpadding-bottom: 10px;\n\t\twidth: auto;\n\t\ttext-align: left;\n\t}\n\n\t.existing-backups-table td:last-child {\n\t\tborder-bottom: 0;\n\t}\n\n\t.form-table td.updraft_existingbackup_date {\n\t\twidth: inherit;\n\t\tmax-width: 100%;\n\t}\n\n\t.existing-backups-table td.before-restore-button {\n\t\tmin-height: 36px;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t\twidth: 100%;\n\t}\n\n\t.updraft_progress_container {\n\t\t/* width: 77%; */\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row {\n\t\tposition: relative;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\n\t\tbackground-color: #FFF;\n\t\tborder-left: 4px solid #0572AA;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select) {\n\t\tmargin-left: 50px;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select {\n\t\twidth: 50px !important;\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbox-sizing: border-box;\n\t\theight: 100%;\n\t\tz-index: 1;\n\t\tborder: none;\n\t\tborder-right: 1px solid rgba(0, 0, 0, 0.05);\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups input[type=\"checkbox\"] {\n\t\theight: 25px;\n\t}\n\n\t.updraft_migrate_intro button.button.button-primary.button-hero {\n\t\tdisplay: block;\n\t\tmargin-right: 0;\n\t\twidth: 100%;\n\t\tmax-width: 100%;\n\t}\n\n\t.updraftclone-main-row {\n\t\tflex-direction: column;\n\t}\n\n\t.updraftclone-main-row > div {\n\t\twidth: auto;\n\t\tmax-width: none;\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.form-table th {\n\t\tpadding-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 600px) {\n\t\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t}\n\n\t.updraft_next_scheduled_entity {\n\t\tfloat: none;\n\t\twidth: 100%;\n\t\tmargin-bottom: 2em;\n\t}\n\n\t.updraft_time_now_wrapper {\n\t\tmargin-top: 0;\n\t}\n\n\t#updraft_lastlogmessagerow h3 {\n\t\tmargin-bottom: 5px;\n\t}\n\n\t#updraft_lastlogmessagerow .updraft-log-link {\n\t\tdisplay: block;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 520px) {\n}\n\n@media only screen and (min-width: 768px) {\n\n\t.addon-activation-notice {\n\t\tleft: 20em;\n\t}\n\n\t.existing-backups-table tbody tr:hover {\n\t\tbackground: #F1F1F1;\n\t}\n\n\t.existing-backups-table tbody tr td.before-restore-button {\n\t\tposition: relative;\n\t}\n\n\t.form-table .existing-backups-table thead th.check-column {\n\t\tpadding-left: 6px;\n\t}\n\n\t.existing-backups-table tr td:first-child {\n\t\tborder-left: 4px solid transparent;\n\t}\n\n\t.existing-backups-table tr.backuprowselected td:first-child {\n\t\tborder-left-color: #0572AA;\n\t}\n\n}\n\n@media screen and (min-width: 670px) {\n\t\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\n\t\tfloat: left;\n\t\twidth: 215px;\n\t\tborder-right: 1px solid rgb(204, 204, 204);\n\t\tborder-bottom: none;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_content {\n\t\tpadding-left: 10px;\n\t\tpadding-top: 0px;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\t\tdisplay: block;\n\t}\n\n}\n\n@media only screen and (max-width: 1068px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: calc(50% - 10px);\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: 100px;\n\t}\n\n}\n\n@media only screen and (max-width: 600px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: 100%;\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: auto;\n\t}\n\n\ttable.updraft_feat_table {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table tr {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t}\n\n\ttable.updraft_feat_table td {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table td:first-child {\n\t\twidth: 100%;\n\t\tborder-bottom: none;\n\t}\n\n\ttable.updraft_feat_table td:not(:first-child) {\n\t\twidth: 50%;\n\t\tbox-sizing: border-box;\n\t}\n\n\ttable.updraft_feat_table td:first-child:empty {\n\t\tdisplay: none;\n\t}\n\n\ttd[data-colname]::before {\n\t\tcontent: attr(data-colname);\n\t\tfont-size: 0.8rem;\n\t\tcolor: #CCC;\n\t\tline-height: 1;\n\t}\n\n}\n"]}
|
1 |
+
{"version":3,"sources":["css/updraftplus-admin.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,WAAW;EACX,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb,uBAAuB;EACvB;;CAED;;AAED,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,uCAAuC;CACvC;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,eAAe;CACf,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,aAAa;CACb;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;;CAEC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED,qBAAqB;;AAErB,kBAAkB;AAClB;CACC,kBAAkB;CAClB,oBAAoB;CACpB,oBAAoB;CACpB,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,wBAAwB;CACxB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,yBAAyB;CACzB,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,gCAAgC;CAChC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;;EAEE;;AAEF;CACC,cAAc;CACd;;AAED,gBAAgB;;AAEhB;CACC,qBAAc;CAAd,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,YAAQ;KAAR,QAAQ;CACR;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED,yBAAyB;AACzB;CACC,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT,OAAO;CACP,aAAa;CACb,4BAA4B;CAC5B,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,2BAAuB;KAAvB,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,8BAAiB;KAAjB,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EACpB,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,6BAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,aAAa;EACb;;CAED;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,qBAAqB;CACrB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,sBAAsB;AACtB;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,uBAAuB;CACvB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,aAAa;CACb;;AAED,oBAAoB;AACpB;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,qCAAqC;AACrC;CACC,oBAAoB;CACpB,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,aAAa;;AAEb;CACC,sBAAsB;CACtB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,6BAA6B;AAC7B;CACC,mBAAmB;CACnB,qBAAc;CAAd,cAAc;CACd,2BAAsB;KAAtB,sBAAsB;CACtB,8BAAsB;KAAtB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,oBAAoB;CACpB,8BAA8B;CAC9B;;AAED;;CAEC,cAAc;CACd,kBAAkB;CAClB,aAAa;CACb,UAAU;CACV;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,oBAAoB;CACpB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB,qBAAqB;CACrB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB;;AAED;;EAEE;AACF;CACC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB,UAAU;CACV,iBAAiB;CACjB,oBAAoB;CACpB,qBAAqB;CACrB;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,cAAc;CACd,oFAAoF;CACpF,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB,iCAAiC;CACjC,iDAAiD;CACjD;;AAED;CACC,wGAAwG;CACxG;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,kEAAkE;CAClE,WAAW;CACX;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,iBAAiB;CACjB,8BAAsB;KAAtB,sBAAsB;CACtB,oBAAgB;KAAhB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB,aAAa;CACb,yBAAyB;CACzB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,+BAA+B;CAC/B,qBAAc;CAAd,cAAc;CACd,sBAAwB;KAAxB,wBAAwB;CACxB,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,UAAU;CACV,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,0FAA0F;CAC1F,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,gBAAgB;CAChB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,sBAAsB;CACtB,YAAY;CACZ;;GAEE;CACF;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,4BAA4B;CAC5B,+BAA+B;CAC/B,YAAY;CACZ,gBAAgB;CAChB,0CAA0C;CAC1C;;AAED;CACC,oBAAoB;CACpB,6BAA6B;CAC7B,gCAAgC;CAChC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,oBAAoB;CACpB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB,YAAY;CACZ,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;;AAEtB,4BAA4B;;AAE5B;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX;;AAED;;CAEC,kBAAkB;CAClB,gBAAgB;CAChB,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB,iBAAiB;CACjB;;AAED;;;CAGC,yBAAyB;CACzB,iBAAiB;CACjB;;AAED;;CAEC;;EAEC,sBAAsB;EACtB;;CAED;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB;;AAED;;;CAGC,eAAe;CACf;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;;;CAGC,aAAa;CACb,iBAAiB;CACjB,aAAa;CACb,wBAAwB;CACxB,mBAAmB;CACnB,SAAS;CACT,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;;CAEC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb,aAAa;CACb,8BAA8B;CAC9B;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,YAAY;CACZ,uBAAuB;CACvB,oBAAoB;CACpB,mBAAmB;CACnB,gBAAgB;CAChB,yCAAyC;CACzC;;AAED;CACC,aAAa;CACb,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,2BAA2B;CAC3B,4BAA4B;CAC5B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,YAAY;CACZ,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,sBAAsB;CACtB,4BAA4B;CAC5B;;AAED;;CAEC,mBAAmB;CACnB,YAAY;CACZ,iBAAiB;CACjB;;AAED,mDAAmD;AACnD;CACC,eAAe;CACf,0BAA0B;CAC1B,mBAAmB;CACnB,yBAAyB;CACzB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,iBAAiB;CACjB,WAAW;CACX,+BAA+B;CAC/B;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,uBAA+B;KAA/B,+BAA+B;CAC/B,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,UAAU;CACV,mBAAmB;CACnB,wBAAwB;CACxB,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,2BAAuB;MAAvB,uBAAuB;EACvB,mBAAmB;EACnB,uBAAoB;MAApB,oBAAoB;EACpB;;CAED;EACC,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,cAAc;CACd,yCAAyC;CACzC,mBAAmB;CACnB;;AAED;CACC,UAAU;CACV;;AAED;CACC,4BAAmB;KAAnB,2BAAmB;KAAnB,mBAAmB;CACnB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;EAEE;AACF;CACC,qBAAc;CAAd,cAAc;CACd,wBAAoB;KAApB,oBAAoB;CACpB,oBAAgB;KAAhB,gBAAgB;CAChB,uBAA+B;KAA/B,+BAA+B;CAC/B,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,uBAAuB;CACvB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,UAAU;CACV,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,sCAAsC;CACtC,iBAAiB;CACjB,4BAA4B;CAC5B,uCAAuC;CACvC,qBAAqB;CACrB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,4CAA4C;CAC5C,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,aAAa;CACb;;AAED;CACC,aAAa;CACb,wBAAwB;CACxB,YAAY;CACZ,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd,sBAAsB;CACtB,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED,qBAAqB;AACrB;CACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,oCAAoC;CACpC,+BAA+B;CAC/B,oCAAoC;CACpC;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,iBAAiB;CACjB,UAAU;CACV,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,+BAA+B;CAC/B,mBAAmB;CACnB,QAAQ;CACR,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,0BAA0B;CAC1B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CAGC,uBAAuB;CACvB,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED,uCAAuC;AACvC,6CAA6C;AAC7C;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,4CAA4C;CAC5C;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,uBAAuB;CACvB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,4BAA4B;CAC5B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,+BAA+B;CAC/B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAAuB;KAAvB,uBAAuB;CACvB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,eAAe;CACf,eAAe;CACf,2CAA2C;CAC3C;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,WAAW;CACX;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,qBAAc;EAAd,cAAc;EACd,yBAAsB;MAAtB,sBAAsB;EACtB;;CAED;EACC,eAAW;MAAX,WAAW;EACX;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;;;EAGC,yBAAyB;EACzB,kBAAkB;EAClB,6BAA6B;EAC7B,aAAa;EACb,iBAAiB;EACjB,YAAY;EACZ;;CAED;EACC,aAAa;EACb;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,YAAY;EACZ,SAAS;EACT,UAAU;EACV,iBAAiB;EACjB,WAAW;EACX,wCAAwC;EACxC;;CAED;EACC,WAAW;EACX;;CAED;EACC,mBAAmB;EACnB;;CAED;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,kBAAkB;EAClB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,uBAAuB;EACvB,aAAa;EACb,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,SAAS;EACT,SAAS;EACT;;CAED;EACC,eAAe;EACf,0BAA0B;EAC1B;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,UAAU;EACV,eAAe;EACf,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,UAAU;EACV,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB,4CAA4C;EAC5C,iBAAiB;EACjB,WAAW;EACX;;CAED;EACC,eAAe;EACf,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf;;AAEF;;;;;;;;;IASI;;CAEH;EACC,oBAAoB;EACpB;;CAED;EACC,sBAAsB;EACtB;;CAED;EACC,UAAU;EACV,iBAAiB;EACjB,wBAAwB;EACxB;;CAED;EACC,aAAa;EACb,oBAAoB;EACpB,YAAY;EACZ,aAAa;EACb,iBAAiB;EACjB,WAAW;EACX,mBAAmB;EACnB,WAAW;EACX,WAAW;EACX,UAAU;EACV;;CAED;EACC,eAAe;EACf,sBAAsB;EACtB,yBAAyB;EACzB,YAAY;EACZ,WAAW;EACX,UAAU;EACV,oBAAoB;EACpB,iBAAiB;EACjB,yCAAyC;EACzC;;CAED;EACC,8BAA8B;EAC9B,eAAe;EACf,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,cAAc;EACd,UAAU;EACV;;CAED;EACC;;;IAGE;EACF,0BAA0B;EAC1B,kBAAkB;EAClB,eAAe;EACf,mBAAmB;EACnB,WAAW;EACX,qBAAqB;EACrB,YAAY;EACZ,iBAAiB;EACjB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,uBAAuB;EACvB,+BAA+B;EAC/B;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,uBAAuB;EACvB,mBAAmB;EACnB,QAAQ;EACR,OAAO;EACP,uBAAuB;EACvB,aAAa;EACb,WAAW;EACX,aAAa;EACb,4CAA4C;EAC5C;;CAED;EACC,aAAa;EACb;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB,YAAY;EACZ,gBAAgB;EAChB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ,gBAAgB;EAChB,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;EACC,qBAAqB;EACrB;;CAED;;AAED;;CAEC;EACC;;CAED;EACC,YAAY;EACZ,YAAY;EACZ,mBAAmB;EACnB;;CAED;EACC,cAAc;EACd;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf,YAAY;EACZ,UAAU;EACV,oBAAoB;EACpB;;CAED;;AAED;CACC;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,mCAAmC;EACnC;;CAED;EACC,2BAA2B;EAC3B;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED;;AAED;;CAEC;EACC,wBAAwB;EACxB,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,qBAAc;EAAd,cAAc;EACd,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,WAAW;EACX,uBAAuB;EACvB;;CAED;EACC,cAAc;EACd;;CAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAED","file":"updraftplus-admin.min.css","sourcesContent":["@keyframes udp_blink {\n\n\tfrom {\n\t\topacity: 1;\n\t\ttransform: scale(1);\n\t}\n\n\tto {\n\t\topacity: 0.4;\n\t\ttransform: scale(0.85);\n\t}\n\n}\n\n/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.width-900 {\n\tmax-width: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n/* End widths and sizing */\n\n/* Font styling */\n.no-decoration {\n\ttext-decoration: none;\n}\n\n.bold {\n\tfont-weight: bold;\n}\n\n/* End font styling */\n/* Alignment */\n.center-align-td {\n\ttext-align: center;\n}\n\n/* End of Alignment */\n/* Padding */\n.remove-padding {\n\tpadding: 0 !important;\n}\n\n/* End of padding */\n\n.updraft-text-center {\n\ttext-align: center;\n}\n\n.autobackup {\n\tpadding: 6px;\n\tmargin: 8px 0px;\n}\n\nul .disc {\n\tlist-style: disc inside;\n}\n\n.dashicons-log-fix {\n\tdisplay: inherit;\n}\n\n.udpdraft__lifted {\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n}\n\n#updraft-wrap a .dashicons {\n\ttext-decoration: none;\n}\n\n.updraft-field-description,\ntable.form-table td p.updraft-field-description {\n\tfont-size: 90%;\n\tline-height: 1.2;\n\tfont-style: italic;\n\tmargin-bottom: 5px;\n}\n\n/* Input boxes */\nlabel.updraft_checkbox {\n\tdisplay: block;\n\tmargin-bottom: 4px;\n\tmargin-left: 26px;\n}\n\nlabel.updraft_checkbox > input[type=checkbox] {\n\tmargin-left: -25px;\n}\n\ndiv[id*=\"updraft_include_\"] {\n\tmargin-bottom: 9px;\n}\n\n/* Input boxes */\n.settings_page_updraftplus input[type=\"file\"] {\n\tborder: none;\n}\n\n.settings_page_updraftplus .wipe_settings {\n\tpadding-bottom: 10px;\n}\n\n.settings_page_updraftplus input[type=\"text\"] {\n\tfont-size: 14px;\n}\n\n.settings_page_updraftplus select {\n\tborder-radius: 4px;\n\tmax-width: 100%;\n}\n\ninput.updraft_input--wide,\ntextarea.updraft_input--wide {\n\tmax-width: 442px;\n\twidth: 100%;\n}\n\n#updraft-wrap .button-large {\n\tfont-size: 1.3em;\n}\n\n/* End input boxes */\n\n/* Main Buttons */\n.main-dashboard-buttons {\n\tborder-width: 4px;\n\tborder-radius: 12px;\n\tletter-spacing: 0px;\n\tfont-size: 17px;\n\tfont-weight: bold;\n\tpadding-left: 0.7em;\n\tpadding-right: 2em;\n\tpadding: 0.3em 1em;\n\tline-height: 1.7em;\n\tbackground: transparent;\n\tposition: relative;\n\tborder: 2px solid;\n\ttransition: all 0.2s;\n\tvertical-align: baseline;\n\tbox-sizing: border-box;\n\ttext-align: center;\n\tline-height: 1.3em;\n\tmargin-left: .3em;\n\ttext-transform: none;\n\tline-height: 1;\n\ttext-decoration: none;\n}\n\n.button-restore {\n\tborder-color: rgb(98, 158, 192);\n\tcolor: rgb(98, 158, 192);\n}\n\n.dashboard-main-sizing {\n\tborder-width: 4px;\n\twidth: 190px;\n\tline-height: 1.7em;\n}\n\np.updraftplus-option {\n\tmargin-top: 0;\n\tmargin-bottom: 5px;\n}\n\np.updraftplus-option-inline {\n\tdisplay: inline-block;\n\tpadding-right: 20px;\n}\n\nspan.updraftplus-option-label {\n\tdisplay: block;\n}\n\n/*\n* MIGRATE - CLONE\n*/\n\n#updraft-navtab-migrate-content .postbox {\n\tpadding: 18px;\n}\n\n/* Clone Rows */\n\n.updraftclone-main-row {\n\tdisplay: flex;\n}\n\n.updraftclone-tokens {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tmargin-right: 20px;\n\tmax-width: 300px;\n}\n\n.updraftclone-tokens p {\n\tmargin: 0;\n}\n\n.updraftclone_action_box {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tflex: 1;\n}\n\n.updraftclone_action_box p:first-child {\n\tmargin-top: 0;\n}\n\n.updraftclone_action_box p:last-child {\n\tmargin-bottom: 0;\n}\n\nspan.tokens-number {\n\tfont-size: 46px;\n\tdisplay: block;\n}\n\n/* Clone header button */\n.button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: none;\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\theight: 100%;\n\tborder-left: 1px solid #CCC;\n\tpadding-left: 10px;\n\tpadding-right: 10px;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_container {\n\tdisplay: flex;\n\tflex-direction: column;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box {\n\tmargin-right: 20px;\n\theight: 100%;\n\twidth: 100%;\n\tflex-basis: 100%;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box iframe {\n\tfloat: none;\n}\n\n@media (min-width: 1024px) {\n\n\t.updraft_migrate_widget_temporary_clone_stage0_container {\n\t\tflex-direction: row;\n\t\tflex-wrap: wrap;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box {\n\t\tflex-basis: 45%;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box iframe {\n\t\tfloat: right;\n\t}\n\n}\n\n.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tline-height: inherit;\n}\n\n.opened .button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: inline-block;\n}\n\n.opened .updraft_migrate_widget_temporary_clone_stage0 {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 8px;\n\tmargin-bottom: 21px;\n}\n\n/* Clone list table */\n.clone-list {\n\tclear: both;\n\twidth: 100%;\n\tmargin-top: 40px;\n}\n\n.clone-list table {\n\twidth: 100%;\n\ttext-align: left;\n}\n\n.clone-list table tr th {\n\tbackground: #E4E4E4;\n}\n\n.clone-list table tr td {\n\tbackground: #F5F5F5;\n\tword-break: break-word;\n}\n\n.clone-list table tr:nth-child(odd) td {\n\tbackground: #FAFAFA;\n}\n\n.clone-list table td,\n.clone-list table th {\n\tpadding: 6px;\n}\n\n/* Clone Progress */\n.updraftplus-clone .updraft_row {\n\tpadding-left: 0;\n\tpadding-right: 0;\n}\n\nbutton#updraft_migrate_createclone + .updraftplus_spinner {\n\tmargin-top: 13px;\n}\n\n/* Clone - Show step 1 info button */\n.button.button-hero.updraftclone_show_step_1 {\n\twhite-space: normal;\n\theight: auto;\n\tline-height: 14px;\n\tpadding-top: 10px;\n\tpadding-bottom: 10px;\n}\n\n.button.button-hero.updraftclone_show_step_1 span.dashicons {\n\theight: auto;\n}\n\n.updraftplus_clone_status {\n\tcolor: red;\n}\n\n/* MIGRATE */\n\na.updraft_migrate_add_site--trigger span.dashicons {\n\ttext-decoration: none;\n}\n\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\n.button-view-log:hover, .button-mass-selectors:hover,\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\n\tborder-color: #DF6926;\n\tcolor: #DF6926;\n}\n\n.button-migrate {\n\tcolor: rgb(238, 169, 32);\n\tborder-color: rgb(238, 169, 32);\n}\n\n#updraft_migrate_tab_main {\n\tpadding: 8px;\n}\n\n.updraft_migrate_widget_module_content {\n\tbackground: #FFF;\n\tborder-radius: 0;\n\tposition: relative;\n}\n\nbody.js #updraft_migrate .updraft_migrate_widget_module_content {\n\tdisplay: none;\n}\n\n.updraft_migrate_widget_module_content > h3,\ndiv[class*=\"updraft_migrate_widget_temporary_clone_stage\"] > h3 {\n\tmargin-top: 0;\n}\n\n/* Migrate / Clone headers */\n.updraft_migrate_widget_module_content header {\n\tposition: relative;\n\tdisplay: flex;\n\talign-content: center;\n\tjustify-items: center;\n\tmargin-top: -18px;\n\tmargin-left: -18px;\n\tmargin-right: -18px;\n\tmargin-bottom: 15px;\n\tborder-bottom: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content header h3,\n.updraft_migrate_widget_module_content header button.button.close {\n\tpadding: 10px;\n\tline-height: 20px;\n\theight: auto;\n\tmargin: 0;\n}\n\n.updraft_migrate_widget_module_content button.button.close {\n\ttext-decoration: none;\n\tpadding-left: 5px;\n\tborder-right: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content button.button.close .dashicons {\n\tmargin-top: 1px;\n}\n\n.updraft_migrate_widget_module_content header h3 {\n\tmargin: 0;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero {\n\tmax-width: 235px;\n\tword-wrap: normal;\n\twhite-space: normal;\n\tline-height: 1;\n\theight: auto;\n\tpadding-top: 13px;\n\tpadding-bottom: 13px;\n\ttext-align: left;\n\tposition: relative;\n\tmargin-right: 10px;\n\tmargin-bottom: 10px;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero .dashicons {\n\tposition: absolute;\n\tleft: 10px;\n\ttop: calc(50% - 8px);\n}\n\n/*\njquery UI Accordion module\n*/\n#updraft_migrate .ui-widget-content a {\n\tcolor: #1C94C4;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header {\n\tbackground: #F6F6F6;\n\tmargin: 0;\n\tborder-radius: 0;\n\tpadding-left: 0.5em;\n\tpadding-right: 0.7em;\n}\n\n#updraft-wrap .ui-widget {\n\tfont-family: inherit;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w {\n\tbackground-position: -96px 0px;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s {\n\tbackground-position: -64px 0;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tleft: auto;\n\tright: 5px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px rgba(91, 157, 217, 0.22), 0 0 2px 1px rgba(30, 140, 190, 0.3);\n\tbackground: #FFF;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons {\n\tcolor: #0572AA;\n\topacity: 1;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active {\n\tbackground: #F6F6F6;\n\tborder-bottom: 2px solid #0572AA;\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus {\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3), 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child) {\n\tborder-top: none;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .dashicons {\n\topacity: 0.4;\n\tmargin-right: 10px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n\tz-index: 1;\n}\n\n.updraft_next_scheduled_backups_wrapper {\n\tdisplay: flex;\n\tbackground: #FFF;\n\tjustify-items: center;\n\tflex-wrap: wrap;\n}\n\n.updraft_next_scheduled_backups_wrapper > div {\n\twidth: 50%;\n\tbackground: #FFF;\n\theight: auto;\n\t/* padding: 18px 33px; */\n\tpadding: 33px;\n\tbox-sizing: border-box;\n}\n\n.updraft_backup_btn_wrapper {\n\ttext-align: center;\n\tborder-left: 1px solid #F1F1F1;\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n}\n\n#updraft-delete-waitwarning span.spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tmargin: 0;\n\tmargin-right: 10px;\n}\n\nbutton#updraft-backupnow-button .spinner,\nbutton#updraft-backupnow-button .dashicons-yes {\n\tdisplay: none;\n}\n\nbutton#updraft-backupnow-button.loading .spinner {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tmargin-top: 13px;\n\tmargin-right: 0;\n}\n\nbutton#updraft-backupnow-button.loading {\n\tbackground-color: #EFEFEF;\n\tborder-color: #CCC;\n\ttext-shadow: 0 -1px 1px #BBC3C7, 1px 0 1px #BBC3C7, 0 1px 1px #BBC3C7, -1px 0 1px #BBC3C7;\n\tbox-shadow: none;\n}\n\nbutton#updraft-backupnow-button.finished .dashicons-yes {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tfont-size: 42px;\n\tmargin-right: 0;\n\tmargin-top: 2px;\n}\n\n.updraft_next_scheduled_entity {\n\twidth: 50%;\n\tdisplay: inline-block;\n\tfloat: left;\n\t/*\n\tpadding: 20px 20px 10px 20px;\n\t*/\n}\n\n.updraft_next_scheduled_entity .dashicons {\n\tcolor: #CCC;\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_entity strong {\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_heading {\n\tmargin-bottom: 10px;\n}\n\n.updraft_next_scheduled_date_time {\n\tcolor: #46A84B;\n}\n\n.updraft_time_now_wrapper {\n\tmargin-top: 68px;\n\twidth: 100%;\n}\n\n.updraft_time_now_label, .updraft_time_now {\n\tdisplay: inline-block;\n\tpadding: 7px;\n}\n\n.updraft_time_now_label {\n\tbackground: #B7B7B7;\n\tborder-top-left-radius: 4px;\n\tborder-bottom-left-radius: 4px;\n\tcolor: #FFF;\n\tmargin-right: 0;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);\n}\n\n.updraft_time_now {\n\tbackground: #F1F1F1;\n\tborder-top-right-radius: 4px;\n\tborder-bottom-right-radius: 4px;\n\tmargin-left: -3px;\n}\n\n#updraft_lastlogmessagerow {\n\tmargin: 6px 0;\n}\n\n#updraft_lastlogmessagerow {\n\tclear: both;\n\tpadding: 0.25px 0;\n}\n\n#updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: right;\n\tmargin-top: -2.5em;\n\tmargin-right: 2px;\n}\n\n#updraft_lastlogmessagerow > div {\n\tclear: both;\n\tbackground: #FFF;\n\tpadding: 18px;\n}\n\n#updraft_activejobs_table {\n\toverflow: hidden;\n\twidth: 100%;\n\tbackground: #FAFAFA;\n\tpadding: 0;\n}\n\n.updraft_requeststart {\n\tpadding: 15px 33px;\n\ttext-align: center;\n}\n\n.updraft_requeststart .spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tvertical-align: middle;\n\tmargin-top: -2px;\n}\n\na.updraft_jobinfo_delete.disabled {\n\topacity: 0.4;\n\tcolor: inherit;\n\ttext-decoration: none;\n}\n\n.updraft_row {\n\tclear: both;\n\ttransition: 0.3s all;\n\tpadding: 15px 33px;\n}\n\n.updraft_row.deleting {\n\topacity: 0.4;\n}\n\n.updraft_progress_container {\n\t/* width: 83%; */\n}\n\n.updraft_existing_backups_count {\n\tpadding: 2px 8px;\n\tfont-size: 12px;\n\tbackground: #CA4A1E;\n\tcolor: #FFF;\n\tfont-weight: bold;\n\tborder-radius: 10px;\n}\n\n.form-table .existing-backups-table input[type=\"checkbox\"] {\n\tborder-radius: 0;\n}\n\n.form-table .existing-backups-table .check-column {\n\twidth: 40px;\n\tpadding: 0;\n\tpadding-top: 8px;\n}\n\n.existing-backups-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.existing-backups-restore-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.button-delete {\n\tcolor: #E23900;\n\tborder-color: #E23900;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 10px;\n}\n\n.button-view-log, .button-mass-selectors {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-top: -1px;\n}\n\n.button-view-log {\n\twidth: 120px;\n}\n\n.button-existing-restore {\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\twidth: 110px;\n}\n\n.main-restore {\n\tmargin-right: 3%;\n\tmargin-left: 3%;\n}\n\n.button-entity-backup {\n\tcolor: #555;\n\tborder-color: #555;\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 5px;\n}\n\n.button-select-all {\n\twidth: 122px;\n}\n\n.button-deselect {\n\twidth: 92px;\n}\n\n#ud_massactions > .display-flex > .mass-selectors-margins, #updraft-delete-waitwarning > .display-flex > .mass-selectors-margins {\n\tmargin-right: -4px;\n}\n\n.udp-button-primary {\n\tborder-width: 4px;\n\tcolor: #0073AA;\n\tborder-color: #0073AA;\n\tfont-size: 14px;\n\theight: 40px;\n}\n\n#ud_massactions .button-delete {\n\tmargin-right: 0px;\n}\n\n.stored_local {\n\tborder-radius: 5px;\n\tbackground-color: #007FE7;\n\tpadding: 3px 5px 5px 5px;\n\tcolor: #FFF;\n\tfont-size: 75%;\n}\n\nspan#updraft_lastlogcontainer {\n\tword-break: break-all;\n}\n\n.stored_icon {\n\theight: 1.3em;\n\tposition: relative;\n\ttop: 0.2em;\n}\n\n.backup_date_label > * {\n\tvertical-align: middle;\n}\n\n.backup_date_label .dashicons {\n\tfont-size: 18px;\n}\n\n.backup_date_label .clear-right {\n\tclear: right;\n}\n\n.existing-backups-table .backup_date_label > div {\n\tfont-weight: bold;\n}\n\n/* End Main Buttons */\n\n/* End of common elements */\n\n.udp-logo-70 {\n\twidth: 70px;\n\theight: 70px;\n\tfloat: left;\n\tpadding-right: 25px;\n}\n\nh3 .thank-you {\n\tmargin-top: 0px;\n}\n\n.ws_advert {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n.dismiss-dash-notice {\n\tfloat: right;\n\tposition: relative;\n\ttop: -20px;\n}\n\n.updraft_exclude_container,\n.updraft_include_container {\n\tmargin-left: 24px;\n\tmargin-top: 5px;\n\tmargin-bottom: 10px;\n\tpadding: 15px;\n\tborder: 1px solid #DDD;\n}\n\nlabel.updraft-exclude-label {\n\tfont-weight: 500;\n\tmargin-bottom: 5px;\n\tdisplay: block;\n}\n\n.updraft_add_exclude_item,\n#updraft_include_more_paths_another {\n\tdisplay: inline-block;\n\tmargin-top: 10px;\n}\n\ninput.updraft_exclude_entity_field,\n.form-table td input.updraft_exclude_entity_field,\n.updraftplus-morefiles-row input[type=text] {\n\twidth: calc(100% - 70px);\n\tmax-width: 400px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.form-table td input.updraft_exclude_entity_field,\n\t.form-table td .updraftplus-morefiles-row input[type=text] {\n\t\tdisplay: inline-block;\n\t}\n\n}\n\n.updraft_exclude_entity_delete.dashicons, .updraft_exclude_entity_edit.dashicons, .updraft_exclude_entity_update.dashicons, .updraftplus-morefiles-row a.dashicons {\n\tmargin-top: 2px;\n\tfont-size: 20px;\n\tbox-shadow: none;\n\tline-height: 1;\n\tpadding: 3px;\n\tmargin-right: 4px;\n}\n\n.updraft_exclude_entity_delete,\n.updraft_exclude_entity_delete:hover,\n.updraftplus-morefiles-row-delete {\n\tcolor: #FF6347;\n}\n\n.updraft_exclude_entity_update.dashicons, .updraft_exclude_entity_update.dashicons:hover {\n\tcolor: #008000;\n\tfont-weight: bold;\n\tfont-size: 22px;\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_edit {\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete {\n\tdisplay: none;\n}\n\n.updraft-exclude-panel-heading {\n\tmargin-bottom: 8px;\n}\n\n.updraft-exclude-panel-heading h3 {\n\tmargin: 0.5em 0 0.5em 0;\n}\n\n.updraft-exclude-submit.button-primary {\n\tmargin-top: 5px;\n}\n\n.updraft_exclude_actions_list {\n\tfont-weight: bold;\n}\n\n.updraft-exclude-link {\n\tcursor: pointer;\n}\n\n#updraft_include_more_options {\n\tpadding-left: 25px;\n}\n\n#updraft_report_cell .updraft_reportbox,\n.updraft_small_box {\n\tpadding: 12px;\n\tmargin: 8px 0;\n\tborder: 1px solid #CCC;\n\tposition: relative;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete,\n.updraft_box_delete_button,\n.updraft_small_box .updraft_box_delete_button {\n\tpadding: 4px;\n\tpadding-top: 6px;\n\tborder: none;\n\tbackground: transparent;\n\tposition: absolute;\n\ttop: 4px;\n\tright: 4px;\n\tcursor: pointer;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete:hover {\n\tcolor: #DE3C3C;\n}\n\na.updraft_report_another .dashicons {\n\ttext-decoration: none;\n\tmargin-top: 2px;\n}\n\n.updraft_report_dbbackup.updraft_report_disabled {\n\tcolor: #CCC;\n}\n\n#updraft-navtab-settings-content .updraft-test-button {\n\tfont-size: 18px !important;\n}\n\n#updraft_report_cell .updraft_report_email {\n\tdisplay: block;\n\twidth: calc(100% - 50px);\n\tmargin-bottom: 9px;\n}\n\n#updraft_report_cell .updraft_report_another_p {\n\tclear: left;\n}\n\n/* Taken straight from admin.php */\n\n#updraft-navtab-settings-content table.form-table p {\n\tmax-width: 700px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td {\n\tbackground-color: #EFEFEF;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td {\n\tbackground-color: #E8E8E8;\n}\n\n.updraft_settings_sectionheading {\n\tdisplay: none;\n}\n\n.updraft-backupentitybutton-disabled {\n\tbackground-color: transparent;\n\tborder: none;\n\tcolor: #0074A2;\n\ttext-decoration: underline;\n\tcursor: pointer;\n\tclear: none;\n\tfloat: left;\n}\n\n.updraft-backupentitybutton {\n\tmargin-left: 8px;\n}\n\n.updraft-bigbutton {\n\tpadding: 2px 0px !important;\n\tmargin-right: 14px !important;\n\tfont-size: 22px !important;\n\tmin-height: 32px;\n\tmin-width: 180px;\n}\n\ntr[class*=\"_updraft_remote_storage_border\"] {\n\tborder-top: 1px solid #CCC;\n}\n\n.updraft_multi_storage_options {\n\tfloat: right;\n\tclear: right;\n\tmargin-bottom: 5px !important;\n}\n\n.updraft_toggle_instance_label {\n\tvertical-align: top !important;\n}\n\n.updraft_debugrow th {\n\tfloat: right;\n\ttext-align: right;\n\tfont-weight: bold;\n\tpadding-right: 8px;\n\tmin-width: 140px;\n}\n\n.updraft_debugrow td {\n\tmin-width: 300px;\n\tvertical-align: bottom;\n}\n\n#updraft_webdav_host_error, .onedrive_folder_error {\n\tcolor: red;\n}\n\n/* jstree styles */\n\n/* these styles hide the dots from the parent but keep the arrows */\n.updraft_jstree .jstree-container-ul > .jstree-node,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\n\tbackground-position: -36px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\n\tbackground-position: -4px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\n\tbackground: transparent;\n}\n\n/* zip browser jstree styles */\n#updraft_zip_files_container {\n\tposition: relative;\n\theight: 450px;\n\toverflow: none;\n}\n\n.updraft_jstree_info_container {\n\tposition: relative;\n\theight: auto;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n.updraft_jstree_info_container p {\n\tmargin: 1px;\n\tpadding-left: 10px;\n\tfont-size: 14px;\n}\n\n#updraft_zip_download_item {\n\tdisplay: none;\n\tcolor: #0073AA;\n\tpadding-left: 10px;\n}\n\n#updraft_zip_download_notice {\n\tpadding-left: 10px;\n}\n\n#updraft_exclude_files_folders_jstree {\n\tmax-height: 200px;\n\toverflow-y: scroll;\n}\n\n.updraft_jstree {\n\tposition: relative;\n\tborder: 1px dotted;\n\theight: 80%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n/* More files jstree styles */\n#updraft_more_files_container {\n\tposition: relative;\n\tdisplay: none;\n\twidth: 100%;\n\tborder: 1px solid #CCC;\n\tbackground: #FAFAFA;\n\tmargin-bottom: 5px;\n\tmargin-top: 4px;\n\tbox-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);\n}\n\ndiv#updraft_more_files_container::before {\n\tcontent: ' ';\n\twidth: 11px;\n\theight: 11px;\n\tdisplay: block;\n\tbackground: #FAFAFA;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 20px;\n\tborder-top: 1px solid #CCC;\n\tborder-left: 1px solid #CCC;\n\ttransform: translatey(-7px) rotate(45deg);\n}\n\ninput.updraft_more_path_editing {\n\tborder-color: #0285BA;\n}\n\ninput.updraft_more_path_editing ~ a.dashicons {\n\tdisplay: none;\n}\n\n#updraft_jstree_buttons {\n\tpadding: 10px;\n\tbackground: #E6E6E6;\n}\n\n#updraft_jstree_container {\n\theight: 300px;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n#updraft_more_files_container button {\n\tline-height: 20px;\n}\n\n#updraft_parent_directory {\n\tmargin: 10px 10px 4px 10px;\n\tpadding-left: 3px;\n}\n\n#updraft_jstree_confirm, #updraft_jstree_cancel {\n\tdisplay: none;\n}\n\n.updraftplus-morefiles-row-delete,\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n}\n\n#updraft-wrap .form-table th {\n\twidth: 230px;\n}\n\n#updraft-wrap .form-table .existing-backups-table th {\n\twidth: auto;\n}\n\n.updraft-viewlogdiv form {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-viewlogdiv {\n\tdisplay: inline-block;\n}\n\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\n\tborder: none;\n\tbackground-color: transparent;\n\tcolor: #000;\n\tmargin: 0px;\n\tpadding: 3px 4px;\n\tfont-size: 16px;\n\tline-height: 26px;\n}\n\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\n\tcolor: #FFF;\n\tcursor: pointer;\n}\n\n.button.button-remove {\n\tcolor: white;\n\tbackground-color: #DE3C3C;\n\tborder-color: #C00000;\n\tbox-shadow: 0 1px 0 #C10100;\n}\n\n.button.button-remove:hover,\n.button.button-remove:focus {\n\tborder-color: #C00;\n\tcolor: #FFF;\n\tbackground: #C00;\n}\n\n/* button-remove colors for midnight admin theme */\nbody.admin-color-midnight .button.button-remove {\n\tcolor: #DE3C3C;\n\tbackground-color: #F7F7F7;\n\tborder-color: #CCC;\n\tbox-shadow: 0 1px 0 #CCC;\n}\n\nbody.admin-color-midnight .button.button-remove:hover, body.admin-color-midnight .button.button-remove:focus {\n\tborder-color: #BA281F;\n}\n\nbody.admin-color-midnight .button.button-remove:focus {\n\tbox-shadow: inherit;\n\tbox-shadow: 0 0 3px rgba(0, 115, 170, 0.8);\n}\n\n.drag-drop #drag-drop-area2 {\n\tborder: 4px dashed #DDD;\n\theight: 200px;\n}\n\n#drag-drop-area2 .drag-drop-inside {\n\tmargin: 36px auto 0;\n\twidth: 350px;\n}\n\n#filelist, #filelist2 {\n\twidth: 100%;\n}\n\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tpadding: 1px;\n\tbackground: #ECECEC;\n\tborder: solid 1px #CCC;\n\tmargin: 4px 0;\n}\n\n.updraft_premium section {\n\tmargin-bottom: 20px;\n}\n\n/*\n\tCall to action Premium\n*/\n.updraft_premium_cta {\n\tbackground: #FFF;\n\tmargin-top: 30px;\n\tpadding: 0;\n\tborder-left: 4px solid #DB6A03;\n}\n\n.updraft_premium_cta a {\n\tfont-weight: normal;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero {\n\tfont-size: 1.3em;\n\tletter-spacing: 0.03rem;\n\ttext-transform: uppercase;\n}\n\n.updraft_premium_cta__top {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tpadding: 18px 30px;\n}\n\n.updraft_premium_cta__bottom {\n\tbackground: #F9F9F9;\n\tpadding: 5px 30px;\n}\n\n.updraft_premium_cta__summary {\n\tmargin-right: 60px;\n}\n\n.updraft_premium_cta h2 {\n\tfont-size: 28px;\n\tfont-weight: 200;\n\tline-height: 1;\n\tmargin: 0;\n\tmargin-bottom: 5px;\n\tletter-spacing: 0.05rem;\n\tcolor: #DB6A03;\n}\n\n.updraft_premium_cta ul li::after {\n\tcolor: #CCC;\n}\n\n@media only screen and (max-width: 768px) {\n\n\t.updraft_premium_cta__top {\n\t\tflex-direction: column;\n\t\ttext-align: center;\n\t\talign-items: center;\n\t}\n\n\t.updraft_premium_cta__summary {\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 30px;\n\t}\n\n}\n\n/*\n\tBox\n*/\n.udp-box {\n\tbackground: #FFF;\n\tpadding: 20px;\n\tbox-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);\n\ttext-align: center;\n}\n\n.udp-box h3 {\n\tmargin: 0;\n}\n\n.udp-box__heading {\n\talign-self: center;\n\tbackground: none;\n\tbox-shadow: none;\n}\n\n/*\n\tOther Plugins\n*/\n.updraft-more-plugins {\n\tdisplay: flex;\n\tflex-direction: row;\n\tflex-wrap: wrap;\n\tjustify-content: space-between;\n\tflex-wrap: wrap;\n}\n\n.updraft-more-plugins img {\n\tmax-width: 200px;\n\twidth: 100%;\n\tdisplay: inline-block;\n}\n\n.updraft-more-plugins .udp-box {\n\tbox-sizing: border-box;\n\twidth: 24%;\n}\n\n.updraft-more-plugins .udp-box p:last-child {\n\tmargin-bottom: 0;\n\tpadding-bottom: 0;\n}\n\n/*\n\tlinks list\n*/\n.updraft_premium_description_list {\n\ttext-align: left;\n\tmargin: 0;\n\tfont-size: 12px;\n}\n\nul.updraft_premium_description_list, ul#updraft_restore_warnings {\n\tlist-style: disc inside;\n}\n\nul.updraft_premium_description_list li {\n\tdisplay: inline;\n}\n\nul.updraft_premium_description_list li::after {\n\tcontent: \" | \";\n}\n\nul.updraft_premium_description_list li:last-child::after {\n\tcontent: \"\";\n}\n\n.updraft_feature_cell {\n\tbackground-color: #F7D9C9 !important;\n\tpadding: 5px 10px;\n}\n\n.updraftplus_com_login_status, .updraftplus_com_key_status {\n\tdisplay: none;\n\tborder-left-color: #DC3232 !important;\n\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n\tmargin: 5px 0 15px 0;\n\tpadding: 5px 12px;\n}\n\n.updraft_feat_table {\n\tborder: none;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n}\n\n.updraft_feat_th, .updraft_feat_table td {\n\tborder: 1px solid #F1F1F1;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n\tpadding: 15px;\n}\n\n.updraft_feat_table td {\n\tborder-bottom-width: 4px;\n}\n\n.updraft_feat_table td:first-child {\n\tborder-left: none;\n}\n\n.updraft_feat_table td:last-child {\n\tborder-right: none;\n}\n\n.updraft_feat_table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.updraft_feat_table td:nth-child(2),\n.updraft_feat_table td:nth-child(3) {\n\tbackground-color: rgba(241, 241, 241, 0.38);\n\twidth: 190px;\n}\n\n.updraft_feat_table__header td img {\n\tdisplay: block;\n\tmargin: 0 auto;\n}\n\n.updraft_feat_table__header td {\n\ttext-align: center;\n}\n\n.updraft_feat_table .installed {\n\tfont-size: 14px;\n}\n\n.updraft_feat_table p {\n\tpadding: 0px 10px;\n\tmargin: 5px 0px;\n\tfont-size: 13px;\n}\n\n.updraft_feat_table h4 {\n\tmargin: 5px 0px;\n}\n\n.updraft_feat_table .dashicons {\n\twidth: 25px;\n\theight: 25px;\n\tfont-size: 25px;\n\tline-height: 1;\n}\n\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\n\tcolor: green;\n}\n\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\n\tcolor: red;\n}\n\n.updraft_tick_cell {\n\ttext-align: center;\n}\n\n.updraft_tick_cell img {\n\tmargin: 4px 0;\n\theight: 24px;\n}\n\n.ud_downloadstatus__close {\n\tborder: none;\n\tbackground: transparent;\n\twidth: auto;\n\tfont-size: 20px;\n\tpadding: 0;\n\tcursor: pointer;\n}\n\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #0572AA;\n\theight: 8px;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tmargin-top: 8px;\n}\n\ndiv[class^=\"updraftplus_downloader_container_\"] {\n\tpadding: 10px;\n}\n\ntr.updraftplusmethod h3 {\n\tmargin: 0px;\n}\n\ntr.updraftplusmethod img {\n\tmax-width: 100%;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\n\tcursor: pointer;\n\tcolor: red;\n\tfont-size: 120%;\n\tfont-weight: bold;\n\tborder: 0px;\n\tborder-radius: 3px;\n\tpadding: 2px;\n\tmargin: 0 6px;\n\ttext-decoration: none;\n\tdisplay: inline-block;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\n\tcursor: pointer;\n\tcolor: white;\n\tbackground: red;\n}\n\n#updraft_backup_started {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n/* backup finished */\n.blockUI.blockOverlay.ui-widget-overlay {\n\tbackground: #000;\n}\n\n.updraft_success_popup {\n\ttext-align: center;\n\tpadding-bottom: 30px;\n}\n\n.updraft_success_popup > .dashicons {\n\tfont-size: 100px;\n\twidth: 100px;\n\theight: 100px;\n\tline-height: 100px;\n\tpadding: 0px;\n\tborder-radius: 50%;\n\tmargin-top: 30px;\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tbackground: #E2E6E5;\n}\n\n.updraft_success_popup > .dashicons.dashicons-yes {\n\ttext-indent: -5px;\n}\n\n.updraft_success_popup.success > .dashicons {\n\tcolor: green;\n}\n\n.updraft_success_popup.warning > .dashicons {\n\tcolor: #888;\n}\n\n.updraft_success_popup--message {\n\tpadding: 20px;\n}\n\n.button.updraft-close-overlay .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tmargin-left: -5px;\n\tpadding: 0;\n}\n\n.updraft_saving_popup img {\n\tanimation-name: udp_blink;\n\tanimation-duration: 610ms;\n\tanimation-iteration-count: infinite;\n\tanimation-direction: alternate;\n\tanimation-timing-function: ease-out;\n}\n\n.udp-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t.udp-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding-right: 5px;\n\t}\n\n}\n\n/* End stuff already in admin.php */\n#plupload-upload-ui2 {\n\twidth: 80%;\n}\n\n.backup-restored {\n\tpadding: 8px;\n}\n\n.backup-restored span {\n\tfont-size: 120%;\n}\n\n.memory-limit {\n\tpadding: 8px;\n}\n\n.updraft_list_errors {\n\tpadding: 8px;\n}\n\n/*.nav-tab {\n\tborder-radius: 20px 20px 0 0;\n\tborder-color: grey;\n\tborder-width: 2px;\n\tmargin-top: 34px;\n}\n\n.nav-tab:hover {\n\tborder-bottom: 0;\n}\n\n.nav-tab-active, .nav-tab-active:active {\n\tcolor: #df6926;\n\tborder-color: #D3D3D3;\n\tborder-width: 1px;\n\tborder-bottom: 0;\n}\n\n.nav-tab-active:focus {\n\tcolor: #df6926;\n}*/\n\n.nav-tab-wrapper {\n\tmargin: 14px 0px;\n}\n\n#updraft-poplog-content {\n\twhite-space: pre-wrap;\n}\n\n.next-backup {\n\tborder: 0px;\n\tpadding: 0px;\n\tmargin: 0 10px 0 0;\n}\n\n.not-scheduled {\n\tvertical-align: top !important;\n\tmargin: 0px !important;\n\tpadding: 0px !important;\n}\n\n.next-backup .updraft_scheduled {\n\t/* width: 124px;*/\n\tmargin: 0px;\n\tpadding: 2px 4px 2px 0px;\n}\n\n#next-backup-table-inner td {\n\tvertical-align: top;\n}\n\n.updraft_all-files {\n\tcolor: blue;\n}\n\n.multisite-advert-width {\n\twidth: 800px;\n}\n\n.updraft_settings_sectionheading {\n\tmargin-top: 6px;\n}\n\n.premium-upgrade-prompt {\n\t/* font-size: 115%; */\n}\n\n.show_admin_restore_in_progress_notice {\n\tpadding: 8px;\n}\n\n.show_admin_restore_in_progress_notice .unfinished-restoration {\n\tfont-size: 120%;\n}\n\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\n\tmargin: 4px 16px 6px 16px;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n}\n\n#backupnow_database_moreoptions {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.form-table #updraft_activejobsrow .minimum-height {\n\tmin-height: 100px;\n}\n\n#updraft_activejobsrow th {\n\tmax-width: 112px;\n\tmargin: 0;\n\tpadding: 13px 0 0 0;\n}\n\n#updraft_lastlogmessagerow .last-message {\n\tpadding-top: 20px;\n\tdisplay: block;\n}\n\n.updraft_simplepie {\n\tvertical-align: top;\n}\n\n.download-backups {\n\tmargin-top: 8px;\n}\n\n.download-backups .updraft_download_button {\n\tmargin-right: 6px;\n}\n\n.download-backups .ud-whitespace-warning, .download-backups .ud-bom-warning {\n\tbackground-color: pink;\n\tpadding: 8px;\n\tmargin: 4px;\n\tborder: 1px dotted;\n}\n\n.download-backups .ul {\n\tlist-style: none inside;\n\tmax-width: 800px;\n\tmargin-top: 6px;\n\tmargin-bottom: 12px;\n}\n\n#updraft-plupload-modal {\n\tmargin: 16px 0;\n}\n\n.download-backups .upload {\n\tmax-width: 610px;\n}\n\n.download-backups #plupload-upload-ui {\n\twidth: 100%;\n}\n\n.ud_downloadstatus {\n\tpadding: 10px 0;\n}\n\n#ud_massactions, #updraft-delete-waitwarning {\n\tpadding: 14px;\n\tbackground: rgb(241, 241, 241);\n\tposition: absolute;\n\tleft: 0;\n\ttop: 100%;\n}\n\n#ud_massactions > *, #updraft-delete-waitwarning > * {\n\tvertical-align: middle;\n}\n\n#ud_massactions .updraftplus-remove {\n\tdisplay: inline-block;\n\tmargin-right: 0;\n}\n\n#ud_massactions .updraftplus-remove a {\n\ttext-decoration: none;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n}\n\nsmall.ud_massactions-tip {\n\tdisplay: inline-block;\n\topacity: 0.5;\n\tfont-style: italic;\n\tmargin-left: 20px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups {\n\tmargin-bottom: 35px;\n\tposition: relative;\n}\n\n#updraft-message-modal-innards {\n\tpadding: 4px;\n}\n\n#updraft-authenticate-modal {\n\ttext-align: center;\n\tfont-size: 16px !important;\n}\n\n#updraft-authenticate-modal p {\n\tfont-size: 16px;\n}\n\n#updraft_delete_form p {\n\tmargin-top: 3px;\n\tpadding-top: 0;\n}\n\n#updraft_restore_form .cannot-restore {\n\tmargin: 8px 0;\n}\n\n#updraft_restorer_dboptions {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder: dashed 1px;\n}\n\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraft_debugrow th {\n\tvertical-align: top;\n\tpadding-top: 6px;\n\tmax-width: 140px;\n}\n\n.expertmode p {\n\tfont-size: 125%;\n}\n\n.expertmode .call-wp-action {\n\twidth: 300px;\n\theight: 22px;\n}\n\n.updraftplus-lock-advert {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.uncompressed-data {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.delete-old-directories {\n\tpadding: 8px;\n\tpadding-bottom: 12px;\n}\n\n.active-jobs {\n\twidth: 100%;\n\ttext-align: center;\n\tpadding: 33px;\n}\n\n.job-id {\n\tmargin-top: 0;\n\tmargin-bottom: 8px;\n}\n\n.next-resumption {\n\tfont-weight: bold;\n}\n\n.updraft_percentage {\n\tz-index: -1;\n\tposition: absolute;\n\tleft: 0px;\n\ttop: 0px;\n\ttext-align: center;\n\tbackground-color: #1D8EC2;\n\ttransition: width 0.3s;\n}\n\n.curstage {\n\tz-index: 1;\n\tborder-radius: 2px;\n\tmargin-top: 8px;\n\twidth: 100%;\n\theight: 26px;\n\tline-height: 26px;\n\tposition: relative;\n\ttext-align: center;\n\tfont-style: italic;\n\tcolor: #FFF;\n\tbackground-color: #B7B7B7;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n}\n\n.curstage-info {\n\tdisplay: inline-block;\n\tz-index: 2;\n}\n\n.retain-files {\n\twidth: 48px;\n}\n\n.backup-interval-description tr td div {\n\tmax-width: 670px;\n}\n\n#updraft-manualdecrypt-modal {\n\twidth: 85%;\n\tmargin: 6px;\n\tmargin-left: 100px;\n}\n\n.directory-permissions {\n\tfont-size: 110%;\n\tfont-weight: bold;\n}\n\n.double-warning {\n\tborder: 1px solid;\n\tpadding: 6px;\n}\n\n.raw-backup-info {\n\tfont-style: italic;\n\tfont-weight: bold;\n\tfont-size: 120%;\n}\n\n.updraft_existingbackup_date {\n\twidth: 22%;\n\tmax-width: 140px;\n}\n\n.updraft_existing_backups_wrapper {\n\tmargin-top: 20px;\n\tborder-top: 1px solid #DDD;\n}\n\n.updraft-no-backups-msg {\n\ttext-align: center;\n}\n\n.tr-bottom-4 {\n\tmargin-bottom: 4px;\n}\n\n.existing-backups-table th {\n\tpadding: 8px 10px;\n}\n\n.form-table .backup-date {\n\twidth: 172px;\n}\n\n.form-table .backup-data {\n\twidth: 426px;\n}\n\n.form-table .updraft_backup_actions {\n\twidth: 272px;\n}\n\n.existing-date {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n\tmax-width: 140px;\n\twidth: 25%;\n}\n\n.line-break-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.line-break-td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.td-line-color {\n\theight: 2px;\n\tbackground-color: #888;\n}\n\n.raw-backup {\n\tmax-width: 140px;\n}\n\n.existing-backups-actions {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border > td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.existing-backups-border > div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.updraft_existing_backup_date {\n\tmax-width: 140px;\n}\n\n.updraftplus-upload {\n\tmargin-right: 6px;\n\tfloat: left;\n\tclear: none;\n}\n\n.before-restore-button {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.before-restore-button div {\n\tfloat: none;\n\tdisplay: inline-block;\n}\n\n.table-separator-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.table-separator-td {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n.end-of-table-div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.last-backup-job {\n\tpadding-top: 3% !important;\n}\n\n.line-height-03 {\n\tline-height: 0.3 !important;\n}\n\n.line-height-13 {\n\tline-height: 1.3 !important;\n}\n\n.line-height-23 {\n\tline-height: 2.3 !important;\n}\n\n#updraft_diskspaceused {\n\tcolor: #DF6926;\n}\n\n#updraft_delete_old_dirs_pagediv {\n\tpadding-bottom: 10px;\n}\n\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\n\tpadding: 0;\n}*/\n\n/* Time + scheduling add-on*/\n.fix-time {\n\twidth: 70px;\n}\n\n.retain-files {\n\twidth: 70px;\n}\n\n.number-input {\n\tmin-width: 50px;\n\tmax-width: 70px;\n}\n\n.additional-rule-width {\n\tmin-width: 60px;\n\tmax-width: 70px;\n}\n\n/* Add-ons */\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\n\n.dashicons {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n.addon-logo-150 {\n\tmargin-left: 30px;\n\tmargin-top: 33px;\n\theight: 125px;\n\twidth: 150px;\n}\n\n.margin-bottom-50 {\n\tmargin-bottom: 50px;\n}\n\n.premium-container {\n\twidth: 80%;\n}\n\n/* Main Header */\n\n.main-header {\n\tbackground-color: #DF6926;\n\theight: 200px;\n\twidth: 100%;\n}\n\n.button-add-to-cart {\n\tcolor: white;\n\tborder-color: white;\n\tfloat: none;\n\tmargin-right: 17px;\n}\n\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\n\tborder-color: #A0A5AA;\n\tcolor: #A0A5AA;\n}\n\n.addon-title {\n\tmargin-top: 25px;\n}\n\n.addon-text {\n\tmargin-top: 75px;\n}\n\n.image-main-div {\n\twidth: 25%;\n\tfloat: left;\n}\n\n.text-main-div {\n\twidth: 60%;\n\tfloat: left;\n\ttext-align: center;\n\tcolor: white;\n\tmargin-top: 16px;\n}\n\n.text-main-div-title {\n\tfont-weight: bold !important;\n\tcolor: white;\n\ttext-align: center;\n}\n\n.text-main-div-paragraph {\n\tcolor: white;\n}\n\n/* End main header */\n\n/* Vault icons */\n\n.updraftplus-vault-cta {\n\twidth: 100%;\n\ttext-align: center;\n\tmargin-bottom: 50px;\n}\n\n.updraftplus-vault-cta h1 {\n\tfont-weight: bold;\n}\n\n.updraftvault-buy {\n\twidth: 225px;\n\theight: 225px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 50px;\n\tposition: relative;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault {\n\twidth: 275px;\n\theight: 275px;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\n\tright: 21%;\n\tfont-size: 16px;\n\tborder-width: 4px !important;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\n\tfont-size: 16px;\n}\n\n.updraftvault-buy .button-purchase {\n\tright: 24%;\n\tmargin-left: 0;\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.right {\n\tmargin-right: 0px;\n}\n\n.updraftvault-buy .addon-logo-100 {\n\theight: 100px;\n\twidth: 125px;\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .addon-logo-large {\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .button-buy-vault {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 29%;\n\tbottom: 2%;\n}\n\n.premium-addon-div .button-purchase {\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy .button-buy-vault:hover {\n\tborder-color: darkgrey;\n\tcolor: darkgrey;\n}\n\n/* End Vault icons */\n\n/* Premium addons */\n\n.premium-addons {\n\tmargin-top: 80px;\n\twidth: 100%;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.addon-list {\n\t/* margin-left: 32px; */\n\tdisplay: table;\n\ttext-align: center;\n}\n\n.premium-addons h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-addons p {\n\ttext-align: center;\n}\n\n.premium-addons .premium-addon-div {\n\twidth: 200px;\n\theight: 250px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 25px;\n\tmargin-top: 25px;\n\ttext-align: center;\n\tposition: relative;\n}\n\n.premium-addons .premium-addon-div p {\n\tmargin-left: 2px;\n\tmargin-right: 2px;\n}\n\n.premium-addons .premium-addon-div img {\n\twidth: auto;\n\theight: 50px;\n\tmargin-top: 7px;\n}\n\n.premium-addons .premium-addon-div .hr-alignment {\n\tmargin-top: 44px;\n}\n\n.premium-addons .premium-addon-div .dropbox-logo {\n\theight: 39px;\n\twidth: 150px;\n}\n\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\n\twidth: 75%;\n\theight: 24px;\n}\n\n.button-purchase {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 25%;\n\tbottom: 2%;\n}\n\n.button-purchase:hover {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n}\n\n.premium-addons .premium-addon-div hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.premium-addon-div p {\n\tfont-style: italic;\n}\n\n.addon-list > .premium-addon-div > .onedrive-fix,\n.addon-list > .premium-addon-div > .azure-logo {\n\tmargin-top: 33px;\n}\n\n.addon-list > .premium-addon-div > .dropbox-fix {\n\tmargin-top: 18px;\n}\n\n/* End premium addons */\n\n\n/* Forgotton something (that is the name of the div rather than a mental note!) */\n\n.premium-forgotton-something {\n\tmargin-top: 5%;\n}\n\n.premium-forgotton-something h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-forgotton-something p {\n\ttext-align: center;\n\tfont-weight: normal;\n}\n\n.premium-forgotton-something .button-faq {\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.premium-forgotton-something .button-faq:hover {\n\tcolor: #777;\n\tborder-color: #777;\n}\n\n/* End of forgotton something */\n\n.updraftplusmethod.updraftvault #vaultlogo {\n\tpadding-left: 40px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option {\n\tfloat: left;\n\twidth: 50%;\n\ttext-align: center;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option div {\n\tclear: right;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .clear-left {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .padding-top-20px {\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .padding-top-14px {\n\tpadding-top: 14px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\n\tfont-size: 18px !important;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\n\tmargin-top: 8px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\n\tmargin-right: 10px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_email {\n\twidth: 280px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_pass {\n\twidth: 200px;\n}\n\n.updraftplusmethod.updraftvault #vault-is-connected {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\tfloat: left;\n\twidth: 33%;\n\ttext-align: center;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\n\tfont-size: 200%;\n\tfont-weight: bold;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\n\tclear: both;\n\tfont-size: 150%;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\n\tclear: both;\n\tfont-size: 115%;\n\tfont-style: italic;\n}\n\n/* Automation Backup Advert by B */\n.autobackup-image {\n/* \tdisplay: inline-block; */\n/*\tmin-width: 10%;\n\tmax-width:25%;*/\n/*\tfloat: left;*/\n\tclear: left;\n\tfloat: left;\n\twidth: 110px;\n\theight: 110px;\n}\n\n.autobackup-description {\n\twidth: 100%;\n}\n\n.advert-description {\n\tfloat: left;\n\tclear: right;\n\tpadding: 4px 10px 8px 10px;\n\twidth: 70%;\n\tclear: right;\n\tvertical-align: top;\n}\n\n.advert-btn {\n\tdisplay: inline-block;\n\tmin-width: 10%;\n\tvertical-align: top;\n\tmargin-bottom: 8px;\n}\n\n.advert-btn:first-of-type {\n\tmargin-top: 25px;\n}\n\n.advert-btn a {\n\tdisplay: block;\n\tcursor: pointer;\n}\n\na.btn-get-started {\n\tbackground: #FFF;\n\tborder: 2px solid #DF6926;\n\tborder-radius: 4px;\n\tcolor: #DF6926;\n\tdisplay: inline-block;\n\tmargin-left: 10px !important;\n\tmargin-bottom: 7px !important;\n\tfont-size: 18px !important;\n\tline-height: 20px;\n\tmin-height: 28px;\n\tpadding: 11px 10px 5px 10px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n}\n\n.circle-dblarrow {\n\tborder: 1px solid #DF6926;\n\tborder-radius: 100%;\n\tdisplay: inline-block;\n\tfont-size: 17px;\n\tline-height: 17px;\n\tmargin-left: 5px;\n\twidth: 20px;\n\theight: 20px;\n\ttext-align: center;\n}\n\n/* End Automation Backup Advert by B */\n/* New Responsive Pretty Advanced Settings */\n.expertmode .advanced_settings_container {\n\theight: auto;\n\toverflow: hidden;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu {\n\tfloat: none;\n\tborder-bottom: 1px solid rgb(204, 204, 204);\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content {\n\tpadding-top: 5px;\n\tfloat: none;\n\twidth: auto;\n\toverflow: auto;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content h3:first-child {\n\tmargin-top: 5px !important;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\n\tdisplay: none;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\n\tdisplay: block;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tpadding: 5px;\n\tcolor: #000;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\n\tfont-size: 16px;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\n\tbackground-color: #EAEAEA;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\n\tbackground-color: #3498DB;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\n\tbackground-color: #72C5FD;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\n\theight: auto !important;\n}\n\ndiv#updraft-wrap a {\n\tcursor: pointer !important;\n}\n\n.updraftcentral_wizard_option {\n\twidth: 45%;\n\tfloat: left;\n\ttext-align: center;\n}\n\n.updraftcentral_wizard_option label {\n\tmargin-bottom: 8px;\n}\n\n#updraftcentral_keys_table {\n\tdisplay: none;\n}\n\n.create_key_container {\n\tborder: 1px solid;\n\tborder-radius: 4px;\n\tpadding: 0 0 6px 6px;\n\tmargin-bottom: 8px;\n}\n\n.updraftcentral_cloud_connect {\n\tborder-radius: 4px;\n\tborder: 1px solid #000;\n\tpadding: 0 20px;\n\tmargin-top: 30px;\n\tbackground-color: #FFF;\n}\n\n.updraftcentral_cloud_error {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #F00;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_info {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #EF8F31;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftplus_spinner.spinner {\n\tpadding-left: 25px;\n\tfloat: none;\n}\n\n.updraftplus_spinner.spinner.visible {\n\tvisibility: visible;\n}\n\n.updraftcentral_cloud_notices .updraftplus_spinner {\n\tmargin-top: -5px;\n}\n\n.updraftcentral-subheading {\n\tfont-size: 14px;\n\tmargin-top: -10px;\n\tmargin-bottom: 20px;\n}\n\n#updraftcentral_cloud_form input#email,\n#updraftcentral_cloud_form input#password {\n\tmin-width: 250px;\n}\n\n.updraftcentral-data-consent {\n\tfont-size: 13px;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_wizard_image {\n\tfloat: left;\n\tmin-width: 100px;\n\tmargin-right: 25px;\n}\n\n.updraftcentral_cloud_wizard {\n\tfloat: left;\n}\n\n.updraftcentral_cloud_clear {\n\tclear: both;\n}\n\n.updraftplus-settings-footer {\n\tmargin-top: 30px;\n}\n\n.updraftplus-top-menu {\n\tpadding: 0.5em;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\tbackground: transparent;\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: none;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_row {\n\tflex-direction: column;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container {\n\twidth: 100%;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\toverflow: inherit;\n}\n\n#updraft_inpage_backup span#updraft_lastlogcontainer {\n\tpadding: 18px;\n\tbackground: #FAFAFA;\n\tdisplay: block;\n\tfont-size: 90%;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup div#updraft_activejobsrow {\n\tbackground: #FAFAFA;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow > div {\n\tbackground: transparent;\n\tpadding: 0;\n}\n\n#updraft_inpage_backup .last-message > strong {\n\tdisplay: block;\n\tmargin-top: 13px;\n}\n\n@media only screen and (min-width: 1024px) {\n\n\t#updraft_activejobsrow .updraft_row {\n\t\tdisplay: flex;\n\t\talign-items: baseline;\n\t}\n\n\t#updraft_activejobsrow .updraft_row .updraft_col {\n\t\tflex: auto;\n\t}\n\n\t#updraft_activejobsrow .updraft_progress_container {\n\t\twidth: calc(100% - 230px);\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\n\t.settings_page_updraftplus input[type=text],\n\t.settings_page_updraftplus input[type=password],\n\t.settings_page_updraftplus input[type=number] {\n\t\t/* border-radius: 4px; */\n\t\tline-height: 1.42;\n\t\t/* border: 1px solid #CCC; */\n\t\theight: 27px;\n\t\tpadding: 2px 6px;\n\t\tcolor: #555;\n\t}\n\n\t.settings_page_updraftplus input[type=\"number\"] {\n\t\theight: 31px;\n\t}\n\n\t#ud_massactions.active, #updraft-delete-waitwarning.active {\n\t\tposition: fixed;\n\t\tbottom: 0;\n\t\tleft: 160px;\n\t\tright: 0;\n\t\ttop: auto;\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n\t}\n\n\tbody.folded #ud_massactions.active, body.folded #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n\t.updraft-after-form-table {\n\t\tmargin-left: 250px;\n\t}\n\n}\n\n@media only screen and (min-width: 782px) and (max-width: 960px) {\n\n\tbody.auto-fold #ud_massactions.active, body.auto-fold #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n}\n\n@media only screen and (max-width: 782px) {\n\n\t#updraft-wrap {\n\t\tmargin-right: 0;\n\t}\n\n\t#updraft-wrap .form-table td {\n\t\tpadding-right: 0;\n\t}\n\n\tlabel.updraft_checkbox {\n\t\tmargin-bottom: 8px;\n\t\tmargin-top: 8px;\n\t\tmargin-left: 36px;\n\t}\n\n\t.updraft_retain_rules {\n\t\tposition: relative;\n\t\tmargin-right: 0;\n\t\tborder: 1px solid #CCC;\n\t\tpadding: 5px;\n\t\tmargin-bottom: -1px;\n\t}\n\n\t.updraft_retain_rules_delete {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttop: 5px;\n\t}\n\n\ta[id*=updraft_retain_] {\n\t\tdisplay: block;\n\t\tpadding: 15px 15px 15px 0;\n\t}\n\n\tlabel.updraft_checkbox > input[type=checkbox] {\n\t\tmargin-left: -33px;\n\t}\n\n\t#updraft-backupnow-button {\n\t\tmargin: 0;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > .updraft_backup_btn_wrapper {\n\t\tpadding-top: 0;\n\t}\n\n\t#ud_massactions, #updraft-delete-waitwarning {\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t}\n\n\t#ud_massactions.active {\n\t\tposition: fixed;\n\t\ttop: auto;\n\t\tbottom: 0;\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t\tbox-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t}\n\n\t#ud_massactions strong {\n\t\tdisplay: block;\n\t\tmargin-bottom: 5px;\n\t}\n\n\tsmall.ud_massactions-tip {\n\t\tdisplay: block;\n\t}\n\n/*\t.advert-description {\n\t\tmin-width: 75%;\n\t\tmargin-bottom: 5px;\n\t}\n\n\t.advert-btn {\n\t\tmargin-top: 15px;\n\t\tmargin-left:86px;\n\t\tmin-width: 100%;\n\t}*/\n\n\t.existing-backups-table .backup_date_label > div {\n\t\tfont-weight: normal;\n\t}\n\n\t.existing-backups-table .backup_date_label .clear-right {\n\t\tdisplay: inline-block;\n\t}\n\n\ttable.widefat.existing-backups-table {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t\tbackground: transparent;\n\t}\n\n\t.existing-backups-table thead {\n\t\tborder: none;\n\t\tclip: rect(0 0 0 0);\n\t\theight: 1px;\n\t\tmargin: -1px;\n\t\toverflow: hidden;\n\t\tpadding: 0;\n\t\tposition: absolute;\n\t\twidth: 1px;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.existing-backups-table tr {\n\t\tdisplay: block;\n\t\tmargin-bottom: .625em;\n\t\tpadding-bottom: 16.625px;\n\t\twidth: 100%;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);\n\t}\n\n\t.existing-backups-table td {\n\t\tborder-bottom: 1px solid #DDD;\n\t\tdisplay: block;\n\t\tfont-size: .9em;\n\t\ttext-align: left;\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: 0;\n\t}\n\n\t.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {\n\t\t/*\n\t\t* aria-label has no advantage, it won't be read inside a table\n\t\tcontent: attr(aria-label);\n\t\t*/\n\t\tcontent: attr(data-label);\n\t\tfont-weight: bold;\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tleft: auto;\n\t\tpadding-bottom: 10px;\n\t\twidth: auto;\n\t\ttext-align: left;\n\t}\n\n\t.existing-backups-table td:last-child {\n\t\tborder-bottom: 0;\n\t}\n\n\t.form-table td.updraft_existingbackup_date {\n\t\twidth: inherit;\n\t\tmax-width: 100%;\n\t}\n\n\t.existing-backups-table td.before-restore-button {\n\t\tmin-height: 36px;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t\twidth: 100%;\n\t}\n\n\t.updraft_progress_container {\n\t\t/* width: 77%; */\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row {\n\t\tposition: relative;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\n\t\tbackground-color: #FFF;\n\t\tborder-left: 4px solid #0572AA;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select) {\n\t\tmargin-left: 50px;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select {\n\t\twidth: 50px !important;\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbox-sizing: border-box;\n\t\theight: 100%;\n\t\tz-index: 1;\n\t\tborder: none;\n\t\tborder-right: 1px solid rgba(0, 0, 0, 0.05);\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups input[type=\"checkbox\"] {\n\t\theight: 25px;\n\t}\n\n\t.updraft_migrate_intro button.button.button-primary.button-hero {\n\t\tdisplay: block;\n\t\tmargin-right: 0;\n\t\twidth: 100%;\n\t\tmax-width: 100%;\n\t}\n\n\t.updraftclone-main-row {\n\t\tflex-direction: column;\n\t}\n\n\t.updraftclone-main-row > div {\n\t\twidth: auto;\n\t\tmax-width: none;\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.form-table th {\n\t\tpadding-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 600px) {\n\t\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t}\n\n\t.updraft_next_scheduled_entity {\n\t\tfloat: none;\n\t\twidth: 100%;\n\t\tmargin-bottom: 2em;\n\t}\n\n\t.updraft_time_now_wrapper {\n\t\tmargin-top: 0;\n\t}\n\n\t#updraft_lastlogmessagerow h3 {\n\t\tmargin-bottom: 5px;\n\t}\n\n\t#updraft_lastlogmessagerow .updraft-log-link {\n\t\tdisplay: block;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 520px) {\n}\n\n@media only screen and (min-width: 768px) {\n\n\t.addon-activation-notice {\n\t\tleft: 20em;\n\t}\n\n\t.existing-backups-table tbody tr:hover {\n\t\tbackground: #F1F1F1;\n\t}\n\n\t.existing-backups-table tbody tr td.before-restore-button {\n\t\tposition: relative;\n\t}\n\n\t.form-table .existing-backups-table thead th.check-column {\n\t\tpadding-left: 6px;\n\t}\n\n\t.existing-backups-table tr td:first-child {\n\t\tborder-left: 4px solid transparent;\n\t}\n\n\t.existing-backups-table tr.backuprowselected td:first-child {\n\t\tborder-left-color: #0572AA;\n\t}\n\n}\n\n@media screen and (min-width: 670px) {\n\t\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\n\t\tfloat: left;\n\t\twidth: 215px;\n\t\tborder-right: 1px solid rgb(204, 204, 204);\n\t\tborder-bottom: none;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_content {\n\t\tpadding-left: 10px;\n\t\tpadding-top: 0px;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\t\tdisplay: block;\n\t}\n\n}\n\n@media only screen and (max-width: 1068px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: calc(50% - 10px);\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: 100px;\n\t}\n\n}\n\n@media only screen and (max-width: 600px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: 100%;\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: auto;\n\t}\n\n\ttable.updraft_feat_table {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table tr {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t}\n\n\ttable.updraft_feat_table td {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table td:first-child {\n\t\twidth: 100%;\n\t\tborder-bottom: none;\n\t}\n\n\ttable.updraft_feat_table td:not(:first-child) {\n\t\twidth: 50%;\n\t\tbox-sizing: border-box;\n\t}\n\n\ttable.updraft_feat_table td:first-child:empty {\n\t\tdisplay: none;\n\t}\n\n\ttd[data-colname]::before {\n\t\tcontent: attr(data-colname);\n\t\tfont-size: 0.8rem;\n\t\tcolor: #CCC;\n\t\tline-height: 1;\n\t}\n\n}\n"]}
|
@@ -304,7 +304,7 @@ class UpdraftPlus_S3 {
|
|
304 |
*
|
305 |
* @return void
|
306 |
*/
|
307 |
-
private function __triggerError($message, $file, $line, $code = 0) {
|
308 |
if ($this->useExceptions) {
|
309 |
throw new UpdraftPlus_S3Exception($message, $file, $line, $code);
|
310 |
} else {
|
@@ -1668,7 +1668,7 @@ class UpdraftPlus_S3 {
|
|
1668 |
*
|
1669 |
* @return string
|
1670 |
*/
|
1671 |
-
private function __getCloudFrontInvalidationBatchXML($paths, $callerReference = '0') {
|
1672 |
$dom = new DOMDocument('1.0', 'UTF-8');
|
1673 |
$dom->formatOutput = true;
|
1674 |
$invalidationBatch = $dom->createElement('InvalidationBatch');
|
@@ -1747,7 +1747,7 @@ class UpdraftPlus_S3 {
|
|
1747 |
*
|
1748 |
* @return string
|
1749 |
*/
|
1750 |
-
private function __getCloudFrontDistributionConfigXML($bucket, $enabled, $comment, $callerReference = '0', $cnames = array(), $defaultRootObject = null, $originAccessIdentity = null, $trustedSigners = array()) {
|
1751 |
$dom = new DOMDocument('1.0', 'UTF-8');
|
1752 |
$dom->formatOutput = true;
|
1753 |
$distributionConfig = $dom->createElement('DistributionConfig');
|
@@ -1791,7 +1791,7 @@ class UpdraftPlus_S3 {
|
|
1791 |
*
|
1792 |
* @return array
|
1793 |
*/
|
1794 |
-
private function __parseCloudFrontDistributionConfig(&$node) {
|
1795 |
if (isset($node->DistributionConfig))
|
1796 |
return $this->__parseCloudFrontDistributionConfig($node->DistributionConfig);
|
1797 |
|
@@ -1849,7 +1849,7 @@ class UpdraftPlus_S3 {
|
|
1849 |
*
|
1850 |
* @return object
|
1851 |
*/
|
1852 |
-
private function __getCloudFrontResponse(&$rest) {
|
1853 |
$rest->getResponse();
|
1854 |
if (false === $rest->response->error && isset($rest->response->body) &&
|
1855 |
is_string($rest->response->body) && '<?xml' == substr($rest->response->body, 0, 5)) {
|
@@ -1877,20 +1877,20 @@ class UpdraftPlus_S3 {
|
|
1877 |
*
|
1878 |
* @return string
|
1879 |
*/
|
1880 |
-
public function __getMimeType(&$file) {
|
1881 |
$type = false;
|
1882 |
// Fileinfo documentation says fileinfo_open() will use the
|
1883 |
// MAGIC env var for the magic file
|
1884 |
if (extension_loaded('fileinfo') && isset($_ENV['MAGIC']) &&
|
1885 |
-
false !== ($finfo = finfo_open(FILEINFO_MIME, $_ENV['MAGIC']))) {
|
1886 |
-
if (false !== ($type = finfo_file($finfo, $file))) {
|
1887 |
// Remove the charset and grab the last content-type
|
1888 |
$type = explode(' ', str_replace('; charset=', ';charset=', $type));
|
1889 |
$type = array_pop($type);
|
1890 |
$type = explode(';', $type);
|
1891 |
$type = trim(array_shift($type));
|
1892 |
}
|
1893 |
-
finfo_close($finfo)
|
1894 |
|
1895 |
// If anyone is still using mime_content_type()
|
1896 |
} elseif (function_exists('mime_content_type')) {
|
@@ -1928,7 +1928,7 @@ class UpdraftPlus_S3 {
|
|
1928 |
*
|
1929 |
* @return string
|
1930 |
*/
|
1931 |
-
public function __getSignature($string) {
|
1932 |
return 'AWS '.$this->__accessKey.':'.$this->__getHash($string);
|
1933 |
}
|
1934 |
|
@@ -1944,7 +1944,7 @@ class UpdraftPlus_S3 {
|
|
1944 |
*
|
1945 |
* @return string
|
1946 |
*/
|
1947 |
-
private function __getHash($string) {
|
1948 |
return base64_encode(extension_loaded('hash') ?
|
1949 |
hash_hmac('sha1', $string, $this->__secretKey, true) : pack('H*', sha1(
|
1950 |
(str_pad($this->__secretKey, 64, chr(0x00)) ^ (str_repeat(chr(0x5c), 64))) .
|
@@ -1964,7 +1964,7 @@ class UpdraftPlus_S3 {
|
|
1964 |
*
|
1965 |
* @return array $headers
|
1966 |
*/
|
1967 |
-
public function __getSignatureV4($aHeaders, $headers, $method = 'GET', $uri = '', $data = '') {
|
1968 |
$service = 's3';
|
1969 |
$region = $this->getRegion();
|
1970 |
|
@@ -2345,7 +2345,7 @@ final class UpdraftPlus_S3Request {
|
|
2345 |
*
|
2346 |
* @return integer
|
2347 |
*/
|
2348 |
-
private function __sortMetaHeadersCmp($a, $b) {
|
2349 |
$lenA = strpos($a, ':');
|
2350 |
$lenB = strpos($b, ':');
|
2351 |
$minLen = min($lenA, $lenB);
|
@@ -2363,7 +2363,7 @@ final class UpdraftPlus_S3Request {
|
|
2363 |
*
|
2364 |
* @return integer
|
2365 |
*/
|
2366 |
-
private function __responseWriteCallback($curl, $data) {
|
2367 |
if (in_array($this->response->code, array(200, 206)) && false !== $this->fp)
|
2368 |
return fwrite($this->fp, $data);
|
2369 |
else
|
@@ -2379,7 +2379,7 @@ final class UpdraftPlus_S3Request {
|
|
2379 |
*
|
2380 |
* @return boolean
|
2381 |
*/
|
2382 |
-
private function __dnsBucketName($bucket) {
|
2383 |
# A DNS bucket name cannot have len>63
|
2384 |
# A DNS bucket name must have a character in other than a-z, 0-9, . -
|
2385 |
# The purpose of this second check is not clear - is it that there's some limitation somewhere on bucket names that match that pattern that means that the bucket must be accessed by hostname?
|
@@ -2402,7 +2402,7 @@ final class UpdraftPlus_S3Request {
|
|
2402 |
* @param string $data Data
|
2403 |
* @return integer
|
2404 |
*/
|
2405 |
-
private function __responseHeaderCallback($curl, $data) {
|
2406 |
if (($strlen = strlen($data)) <= 2) return $strlen;
|
2407 |
if ('HTTP' == substr($data, 0, 4)) {
|
2408 |
$this->response->code = (int)substr($data, 9, 3);
|
304 |
*
|
305 |
* @return void
|
306 |
*/
|
307 |
+
private function __triggerError($message, $file, $line, $code = 0) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
308 |
if ($this->useExceptions) {
|
309 |
throw new UpdraftPlus_S3Exception($message, $file, $line, $code);
|
310 |
} else {
|
1668 |
*
|
1669 |
* @return string
|
1670 |
*/
|
1671 |
+
private function __getCloudFrontInvalidationBatchXML($paths, $callerReference = '0') {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
1672 |
$dom = new DOMDocument('1.0', 'UTF-8');
|
1673 |
$dom->formatOutput = true;
|
1674 |
$invalidationBatch = $dom->createElement('InvalidationBatch');
|
1747 |
*
|
1748 |
* @return string
|
1749 |
*/
|
1750 |
+
private function __getCloudFrontDistributionConfigXML($bucket, $enabled, $comment, $callerReference = '0', $cnames = array(), $defaultRootObject = null, $originAccessIdentity = null, $trustedSigners = array()) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
1751 |
$dom = new DOMDocument('1.0', 'UTF-8');
|
1752 |
$dom->formatOutput = true;
|
1753 |
$distributionConfig = $dom->createElement('DistributionConfig');
|
1791 |
*
|
1792 |
* @return array
|
1793 |
*/
|
1794 |
+
private function __parseCloudFrontDistributionConfig(&$node) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
1795 |
if (isset($node->DistributionConfig))
|
1796 |
return $this->__parseCloudFrontDistributionConfig($node->DistributionConfig);
|
1797 |
|
1849 |
*
|
1850 |
* @return object
|
1851 |
*/
|
1852 |
+
private function __getCloudFrontResponse(&$rest) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
1853 |
$rest->getResponse();
|
1854 |
if (false === $rest->response->error && isset($rest->response->body) &&
|
1855 |
is_string($rest->response->body) && '<?xml' == substr($rest->response->body, 0, 5)) {
|
1877 |
*
|
1878 |
* @return string
|
1879 |
*/
|
1880 |
+
public function __getMimeType(&$file) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
1881 |
$type = false;
|
1882 |
// Fileinfo documentation says fileinfo_open() will use the
|
1883 |
// MAGIC env var for the magic file
|
1884 |
if (extension_loaded('fileinfo') && isset($_ENV['MAGIC']) &&
|
1885 |
+
false !== ($finfo = finfo_open(FILEINFO_MIME, $_ENV['MAGIC']))) {// phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.finfo_openFound -- The function finfo_open() is not present in PHP version 5.2 or earlier
|
1886 |
+
if (false !== ($type = finfo_file($finfo, $file))) {// phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.finfo_fileFound -- The function finfo_file() is not present in PHP version 5.2 or earlier
|
1887 |
// Remove the charset and grab the last content-type
|
1888 |
$type = explode(' ', str_replace('; charset=', ';charset=', $type));
|
1889 |
$type = array_pop($type);
|
1890 |
$type = explode(';', $type);
|
1891 |
$type = trim(array_shift($type));
|
1892 |
}
|
1893 |
+
finfo_close($finfo);// phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.finfo_closeFound -- The function finfo_close() is not present in PHP version 5.2 or earlier
|
1894 |
|
1895 |
// If anyone is still using mime_content_type()
|
1896 |
} elseif (function_exists('mime_content_type')) {
|
1928 |
*
|
1929 |
* @return string
|
1930 |
*/
|
1931 |
+
public function __getSignature($string) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
1932 |
return 'AWS '.$this->__accessKey.':'.$this->__getHash($string);
|
1933 |
}
|
1934 |
|
1944 |
*
|
1945 |
* @return string
|
1946 |
*/
|
1947 |
+
private function __getHash($string) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
1948 |
return base64_encode(extension_loaded('hash') ?
|
1949 |
hash_hmac('sha1', $string, $this->__secretKey, true) : pack('H*', sha1(
|
1950 |
(str_pad($this->__secretKey, 64, chr(0x00)) ^ (str_repeat(chr(0x5c), 64))) .
|
1964 |
*
|
1965 |
* @return array $headers
|
1966 |
*/
|
1967 |
+
public function __getSignatureV4($aHeaders, $headers, $method = 'GET', $uri = '', $data = '') {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
1968 |
$service = 's3';
|
1969 |
$region = $this->getRegion();
|
1970 |
|
2345 |
*
|
2346 |
* @return integer
|
2347 |
*/
|
2348 |
+
private function __sortMetaHeadersCmp($a, $b) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
2349 |
$lenA = strpos($a, ':');
|
2350 |
$lenB = strpos($b, ':');
|
2351 |
$minLen = min($lenA, $lenB);
|
2363 |
*
|
2364 |
* @return integer
|
2365 |
*/
|
2366 |
+
private function __responseWriteCallback($curl, $data) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
2367 |
if (in_array($this->response->code, array(200, 206)) && false !== $this->fp)
|
2368 |
return fwrite($this->fp, $data);
|
2369 |
else
|
2379 |
*
|
2380 |
* @return boolean
|
2381 |
*/
|
2382 |
+
private function __dnsBucketName($bucket) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
2383 |
# A DNS bucket name cannot have len>63
|
2384 |
# A DNS bucket name must have a character in other than a-z, 0-9, . -
|
2385 |
# The purpose of this second check is not clear - is it that there's some limitation somewhere on bucket names that match that pattern that means that the bucket must be accessed by hostname?
|
2402 |
* @param string $data Data
|
2403 |
* @return integer
|
2404 |
*/
|
2405 |
+
private function __responseHeaderCallback($curl, $data) {// phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore -- Method name "UpdraftPlus_S3Request::__responseHeaderCallback" is discouraged; PHP has reserved all method names with a double underscore prefix for future use.
|
2406 |
if (($strlen = strlen($data)) <= 2) return $strlen;
|
2407 |
if ('HTTP' == substr($data, 0, 4)) {
|
2408 |
$this->response->code = (int)substr($data, 9, 3);
|
@@ -57,7 +57,7 @@ class UpdraftPlus_Commands {
|
|
57 |
*
|
58 |
* @param Array $downloader_params - download parameters (findex, type, timestamp, stage)
|
59 |
*
|
60 |
-
* @return Array - as from
|
61 |
*/
|
62 |
public function downloader($downloader_params) {
|
63 |
|
57 |
*
|
58 |
* @param Array $downloader_params - download parameters (findex, type, timestamp, stage)
|
59 |
*
|
60 |
+
* @return Array - as from UpdraftPlus_Admin::do_updraft_download_backup() (with 'request' key added, with value $downloader_params)
|
61 |
*/
|
62 |
public function downloader($downloader_params) {
|
63 |
|
@@ -213,7 +213,8 @@ abstract class UpdraftPlus_RemoteSend {
|
|
213 |
if (!preg_match('/^([a-f0-9]+)\.migrator.updraftplus.com$/', $name_indicator, $matches)) return $response;
|
214 |
|
215 |
if (defined('UPDRAFTPLUS_THIS_IS_CLONE')) {
|
216 |
-
|
|
|
217 |
}
|
218 |
|
219 |
return $this->return_rpc_message(array(
|
213 |
if (!preg_match('/^([a-f0-9]+)\.migrator.updraftplus.com$/', $name_indicator, $matches)) return $response;
|
214 |
|
215 |
if (defined('UPDRAFTPLUS_THIS_IS_CLONE')) {
|
216 |
+
$job_id = (is_array($data) && !empty($data['job_id'])) ? $data['job_id'] : null;
|
217 |
+
do_action('updraftplus_temporary_clone_ready_for_restore', $job_id);
|
218 |
}
|
219 |
|
220 |
return $this->return_rpc_message(array(
|
@@ -216,6 +216,7 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
|
|
216 |
if (1 < count($incremental_sets)) {
|
217 |
$incremental_select_html = '<label>'.__('Select your incremental restore point', 'updraftplus').': </label>';
|
218 |
$incremental_select_html .= '<select name="updraft_incremental_restore_point" id="updraft_incremental_restore_point">';
|
|
|
219 |
$first_timestamp = $incremental_sets[0];
|
220 |
|
221 |
foreach ($incremental_sets as $timestamp) {
|
216 |
if (1 < count($incremental_sets)) {
|
217 |
$incremental_select_html = '<label>'.__('Select your incremental restore point', 'updraftplus').': </label>';
|
218 |
$incremental_select_html .= '<select name="updraft_incremental_restore_point" id="updraft_incremental_restore_point">';
|
219 |
+
$incremental_sets = array_reverse($incremental_sets);
|
220 |
$first_timestamp = $incremental_sets[0];
|
221 |
|
222 |
foreach ($incremental_sets as $timestamp) {
|
@@ -128,7 +128,7 @@ class UpdraftPlus_ftp_wrapper {
|
|
128 |
|
129 |
if ($resume) {
|
130 |
if (!$fh = fopen($local_file_path, 'ab')) return false;
|
131 |
-
clearstatcache($local_file_path)
|
132 |
$file_last_size = filesize($local_file_path);
|
133 |
} else {
|
134 |
if (!$fh = fopen($local_file_path, 'wb')) return false;
|
@@ -146,7 +146,7 @@ class UpdraftPlus_ftp_wrapper {
|
|
146 |
$updraftplus->log("FTP fetch: file size is now: ".sprintf("%0.2f", filesize($local_file_path)/1048576)." Mb");
|
147 |
$file_last_size = $file_now_size;
|
148 |
}
|
149 |
-
clearstatcache($local_file_path)
|
150 |
}
|
151 |
|
152 |
$ret = ftp_nb_continue($this->conn_id);
|
128 |
|
129 |
if ($resume) {
|
130 |
if (!$fh = fopen($local_file_path, 'ab')) return false;
|
131 |
+
clearstatcache($local_file_path);// phpcs:ignore PHPCompatibility.FunctionUse.NewFunctionParameters.clearstatcache_clear_realpath_cacheFound -- The function clearstatcache() does not have a parameter "clear_realpath_cache" in PHP version 5.2 or earlier
|
132 |
$file_last_size = filesize($local_file_path);
|
133 |
} else {
|
134 |
if (!$fh = fopen($local_file_path, 'wb')) return false;
|
146 |
$updraftplus->log("FTP fetch: file size is now: ".sprintf("%0.2f", filesize($local_file_path)/1048576)." Mb");
|
147 |
$file_last_size = $file_now_size;
|
148 |
}
|
149 |
+
clearstatcache($local_file_path);// phpcs:ignore PHPCompatibility.FunctionUse.NewFunctionParameters.clearstatcache_clear_realpath_cacheFound -- The function clearstatcache() does not have a parameter "clear_realpath_cache" in PHP version 5.2 or earlier
|
150 |
}
|
151 |
|
152 |
$ret = ftp_nb_continue($this->conn_id);
|
@@ -13,7 +13,7 @@
|
|
13 |
}(function ($, undefined) {
|
14 |
"use strict";
|
15 |
/*!
|
16 |
-
* jsTree 3.3.
|
17 |
* http://jstree.com/
|
18 |
*
|
19 |
* Copyright (c) 2014 Ivan Bozhanov (http://vakata.com)
|
@@ -54,7 +54,7 @@
|
|
54 |
* specifies the jstree version in use
|
55 |
* @name $.jstree.version
|
56 |
*/
|
57 |
-
version : '3.3.
|
58 |
/**
|
59 |
* holds all the default options used when creating new instances
|
60 |
* @name $.jstree.defaults
|
@@ -1023,6 +1023,9 @@
|
|
1023 |
if(obj && obj.id) {
|
1024 |
obj = obj.id;
|
1025 |
}
|
|
|
|
|
|
|
1026 |
var dom;
|
1027 |
try {
|
1028 |
if(this._model.data[obj]) {
|
@@ -2325,7 +2328,7 @@
|
|
2325 |
this.element.empty().append(f);
|
2326 |
//this.get_container_ul()[0].appendChild(f);
|
2327 |
}
|
2328 |
-
if(fe !== null) {
|
2329 |
tmp = this.get_node(fe, true);
|
2330 |
if(tmp && tmp.length && tmp.children('.jstree-anchor')[0] !== document.activeElement) {
|
2331 |
tmp.children('.jstree-anchor').focus();
|
@@ -4517,6 +4520,7 @@
|
|
4517 |
s.replaceWith(a);
|
4518 |
s.remove();
|
4519 |
t = f ? t : $('<div></div>').append($.parseHTML(t)).html();
|
|
|
4520 |
this.set_text(obj, t);
|
4521 |
nv = !!this.rename_node(obj, f ? $('<div></div>').text(v).text() : $('<div></div>').append($.parseHTML(v)).html());
|
4522 |
if(!nv) {
|
@@ -8573,7 +8577,7 @@
|
|
8573 |
};
|
8574 |
// include the wholerow plugin by default
|
8575 |
// $.jstree.defaults.plugins.push("wholerow");
|
8576 |
-
if(
|
8577 |
var proto = Object.create(HTMLElement.prototype);
|
8578 |
proto.createdCallback = function () {
|
8579 |
var c = { core : {}, plugins : [] }, i;
|
@@ -8596,9 +8600,6 @@
|
|
8596 |
try {
|
8597 |
window.customElements.define("vakata-jstree", function() {}, { prototype: proto });
|
8598 |
} catch (ignore) { }
|
8599 |
-
try {
|
8600 |
-
document.registerElement("vakata-jstree", { prototype: proto });
|
8601 |
-
} catch (ignore) { }
|
8602 |
}
|
8603 |
|
8604 |
}));
|
13 |
}(function ($, undefined) {
|
14 |
"use strict";
|
15 |
/*!
|
16 |
+
* jsTree 3.3.7
|
17 |
* http://jstree.com/
|
18 |
*
|
19 |
* Copyright (c) 2014 Ivan Bozhanov (http://vakata.com)
|
54 |
* specifies the jstree version in use
|
55 |
* @name $.jstree.version
|
56 |
*/
|
57 |
+
version : '3.3.7',
|
58 |
/**
|
59 |
* holds all the default options used when creating new instances
|
60 |
* @name $.jstree.defaults
|
1023 |
if(obj && obj.id) {
|
1024 |
obj = obj.id;
|
1025 |
}
|
1026 |
+
if (obj instanceof jQuery && obj.length && obj[0].id) {
|
1027 |
+
obj = obj[0].id;
|
1028 |
+
}
|
1029 |
var dom;
|
1030 |
try {
|
1031 |
if(this._model.data[obj]) {
|
2328 |
this.element.empty().append(f);
|
2329 |
//this.get_container_ul()[0].appendChild(f);
|
2330 |
}
|
2331 |
+
if(fe !== null && this.settings.core.restore_focus) {
|
2332 |
tmp = this.get_node(fe, true);
|
2333 |
if(tmp && tmp.length && tmp.children('.jstree-anchor')[0] !== document.activeElement) {
|
2334 |
tmp.children('.jstree-anchor').focus();
|
4520 |
s.replaceWith(a);
|
4521 |
s.remove();
|
4522 |
t = f ? t : $('<div></div>').append($.parseHTML(t)).html();
|
4523 |
+
obj = this.get_node(obj);
|
4524 |
this.set_text(obj, t);
|
4525 |
nv = !!this.rename_node(obj, f ? $('<div></div>').text(v).text() : $('<div></div>').append($.parseHTML(v)).html());
|
4526 |
if(!nv) {
|
8577 |
};
|
8578 |
// include the wholerow plugin by default
|
8579 |
// $.jstree.defaults.plugins.push("wholerow");
|
8580 |
+
if(window.customElements && Object && Object.create) {
|
8581 |
var proto = Object.create(HTMLElement.prototype);
|
8582 |
proto.createdCallback = function () {
|
8583 |
var c = { core : {}, plugins : [] }, i;
|
8600 |
try {
|
8601 |
window.customElements.define("vakata-jstree", function() {}, { prototype: proto });
|
8602 |
} catch (ignore) { }
|
|
|
|
|
|
|
8603 |
}
|
8604 |
|
8605 |
}));
|
@@ -1,6 +1,6 @@
|
|
1 |
-
/*! jsTree - v3.3.
|
2 |
-
!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a,b){"use strict";if(!a.jstree){var c=0,d=!1,e=!1,f=!1,g=[],h=a("script:last").attr("src"),i=window.document;a.jstree={version:"3.3.6",defaults:{plugins:[]},plugins:{},path:h&&-1!==h.indexOf("/")?h.replace(/\/[^\/]+$/,""):"",idregex:/[\\:&!^|()\[\]<>@*'+~#";.,=\- \/${}%?`]/g,root:"#"},a.jstree.create=function(b,d){var e=new a.jstree.core(++c),f=d;return d=a.extend(!0,{},a.jstree.defaults,d),f&&f.plugins&&(d.plugins=f.plugins),a.each(d.plugins,function(a,b){"core"!==a&&(e=e.plugin(b,d[b]))}),a(b).data("jstree",e),e.init(b,d),e},a.jstree.destroy=function(){a(".jstree:jstree").jstree("destroy"),a(i).off(".jstree")},a.jstree.core=function(a){this._id=a,this._cnt=0,this._wrk=null,this._data={core:{themes:{name:!1,dots:!1,icons:!1,ellipsis:!1},selected:[],last_error:{},working:!1,worker_queue:[],focused:null}}},a.jstree.reference=function(b){var c=null,d=null;if(!b||!b.id||b.tagName&&b.nodeType||(b=b.id),!d||!d.length)try{d=a(b)}catch(e){}if(!d||!d.length)try{d=a("#"+b.replace(a.jstree.idregex,"\\$&"))}catch(e){}return d&&d.length&&(d=d.closest(".jstree")).length&&(d=d.data("jstree"))?c=d:a(".jstree").each(function(){var d=a(this).data("jstree");return d&&d._model.data[b]?(c=d,!1):void 0}),c},a.fn.jstree=function(c){var d="string"==typeof c,e=Array.prototype.slice.call(arguments,1),f=null;return c!==!0||this.length?(this.each(function(){var g=a.jstree.reference(this),h=d&&g?g[c]:null;return f=d&&h?h.apply(g,e):null,g||d||c!==b&&!a.isPlainObject(c)||a.jstree.create(this,c),(g&&!d||c===!0)&&(f=g||!1),null!==f&&f!==b?!1:void 0}),null!==f&&f!==b?f:this):!1},a.expr.pseudos.jstree=a.expr.createPseudo(function(c){return function(c){return a(c).hasClass("jstree")&&a(c).data("jstree")!==b}}),a.jstree.defaults.core={data:!1,strings:!1,check_callback:!1,error:a.noop,animation:200,multiple:!0,themes:{name:!1,url:!1,dir:!1,dots:!0,icons:!0,ellipsis:!1,stripes:!1,variant:!1,responsive:!1},expand_selected_onload:!0,worker:!0,force_text:!1,dblclick_toggle:!0,loaded_state:!1,restore_focus:!0,keyboard:{"ctrl-space":function(b){b.type="click",a(b.currentTarget).trigger(b)},enter:function(b){b.type="click",a(b.currentTarget).trigger(b)},left:function(b){if(b.preventDefault(),this.is_open(b.currentTarget))this.close_node(b.currentTarget);else{var c=this.get_parent(b.currentTarget);c&&c.id!==a.jstree.root&&this.get_node(c,!0).children(".jstree-anchor").focus()}},up:function(a){a.preventDefault();var b=this.get_prev_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").focus()},right:function(b){if(b.preventDefault(),this.is_closed(b.currentTarget))this.open_node(b.currentTarget,function(a){this.get_node(a,!0).children(".jstree-anchor").focus()});else if(this.is_open(b.currentTarget)){var c=this.get_node(b.currentTarget,!0).children(".jstree-children")[0];c&&a(this._firstChild(c)).children(".jstree-anchor").focus()}},down:function(a){a.preventDefault();var b=this.get_next_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").focus()},"*":function(a){this.open_all()},home:function(b){b.preventDefault();var c=this._firstChild(this.get_container_ul()[0]);c&&a(c).children(".jstree-anchor").filter(":visible").focus()},end:function(a){a.preventDefault(),this.element.find(".jstree-anchor").filter(":visible").last().focus()},f2:function(a){a.preventDefault(),this.edit(a.currentTarget)}}},a.jstree.core.prototype={plugin:function(b,c){var d=a.jstree.plugins[b];return d?(this._data[b]={},d.prototype=this,new d(c,this)):this},init:function(b,c){this._model={data:{},changed:[],force_full_redraw:!1,redraw_timeout:!1,default_state:{loaded:!0,opened:!1,selected:!1,disabled:!1}},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this.element=a(b).addClass("jstree jstree-"+this._id),this.settings=c,this._data.core.ready=!1,this._data.core.loaded=!1,this._data.core.rtl="rtl"===this.element.css("direction"),this.element[this._data.core.rtl?"addClass":"removeClass"]("jstree-rtl"),this.element.attr("role","tree"),this.settings.core.multiple&&this.element.attr("aria-multiselectable",!0),this.element.attr("tabindex")||this.element.attr("tabindex","0"),this.bind(),this.trigger("init"),this._data.core.original_container_html=this.element.find(" > ul > li").clone(!0),this._data.core.original_container_html.find("li").addBack().contents().filter(function(){return 3===this.nodeType&&(!this.nodeValue||/^\s+$/.test(this.nodeValue))}).remove(),this.element.html("<ul class='jstree-container-ul jstree-children' role='group'><li id='j"+this._id+"_loading' class='jstree-initial-node jstree-loading jstree-leaf jstree-last' role='tree-item'><i class='jstree-icon jstree-ocl'></i><a class='jstree-anchor' href='#'><i class='jstree-icon jstree-themeicon-hidden'></i>"+this.get_string("Loading ...")+"</a></li></ul>"),this.element.attr("aria-activedescendant","j"+this._id+"_loading"),this._data.core.li_height=this.get_container_ul().children("li").first().outerHeight()||24,this._data.core.node=this._create_prototype_node(),this.trigger("loading"),this.load_node(a.jstree.root)},destroy:function(a){if(this.trigger("destroy"),this._wrk)try{window.URL.revokeObjectURL(this._wrk),this._wrk=null}catch(b){}a||this.element.empty(),this.teardown()},_create_prototype_node:function(){var a=i.createElement("LI"),b,c;return a.setAttribute("role","treeitem"),b=i.createElement("I"),b.className="jstree-icon jstree-ocl",b.setAttribute("role","presentation"),a.appendChild(b),b=i.createElement("A"),b.className="jstree-anchor",b.setAttribute("href","#"),b.setAttribute("tabindex","-1"),c=i.createElement("I"),c.className="jstree-icon jstree-themeicon",c.setAttribute("role","presentation"),b.appendChild(c),a.appendChild(b),b=c=null,a},_kbevent_to_func:function(a){var b={8:"Backspace",9:"Tab",13:"Return",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"Numlock",145:"Scrolllock",16:"Shift",17:"Ctrl",18:"Alt",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*",173:"-"},c=[];a.ctrlKey&&c.push("ctrl"),a.altKey&&c.push("alt"),a.shiftKey&&c.push("shift"),c.push(b[a.which]||a.which),c=c.sort().join("-").toLowerCase();var d=this.settings.core.keyboard,e,f;for(e in d)if(d.hasOwnProperty(e)&&(f=e,"-"!==f&&"+"!==f&&(f=f.replace("--","-MINUS").replace("+-","-MINUS").replace("++","-PLUS").replace("-+","-PLUS"),f=f.split(/-|\+/).sort().join("-").replace("MINUS","-").replace("PLUS","+").toLowerCase()),f===c))return d[e];return null},teardown:function(){this.unbind(),this.element.removeClass("jstree").removeData("jstree").find("[class^='jstree']").addBack().attr("class",function(){return this.className.replace(/jstree[^ ]*|$/gi,"")}),this.element=null},bind:function(){var b="",c=null,d=0;this.element.on("dblclick.jstree",function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;if(i.selection&&i.selection.empty)i.selection.empty();else if(window.getSelection){var b=window.getSelection();try{b.removeAllRanges(),b.collapse()}catch(c){}}}).on("mousedown.jstree",a.proxy(function(a){a.target===this.element[0]&&(a.preventDefault(),d=+new Date)},this)).on("mousedown.jstree",".jstree-ocl",function(a){a.preventDefault()}).on("click.jstree",".jstree-ocl",a.proxy(function(a){this.toggle_node(a.target)},this)).on("dblclick.jstree",".jstree-anchor",a.proxy(function(a){return a.target.tagName&&"input"===a.target.tagName.toLowerCase()?!0:void(this.settings.core.dblclick_toggle&&this.toggle_node(a.target))},this)).on("click.jstree",".jstree-anchor",a.proxy(function(b){b.preventDefault(),b.currentTarget!==i.activeElement&&a(b.currentTarget).focus(),this.activate_node(b.currentTarget,b)},this)).on("keydown.jstree",".jstree-anchor",a.proxy(function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;this._data.core.rtl&&(37===a.which?a.which=39:39===a.which&&(a.which=37));var b=this._kbevent_to_func(a);if(b){var c=b.call(this,a);if(c===!1||c===!0)return c}},this)).on("load_node.jstree",a.proxy(function(b,c){c.status&&(c.node.id!==a.jstree.root||this._data.core.loaded||(this._data.core.loaded=!0,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.trigger("loaded")),this._data.core.ready||setTimeout(a.proxy(function(){if(this.element&&!this.get_container_ul().find(".jstree-loading").length){if(this._data.core.ready=!0,this._data.core.selected.length){if(this.settings.core.expand_selected_onload){var b=[],c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)b=b.concat(this._model.data[this._data.core.selected[c]].parents);for(b=a.vakata.array_unique(b),c=0,d=b.length;d>c;c++)this.open_node(b[c],!1,0)}this.trigger("changed",{action:"ready",selected:this._data.core.selected})}this.trigger("ready")}},this),0))},this)).on("keypress.jstree",a.proxy(function(d){if(d.target.tagName&&"input"===d.target.tagName.toLowerCase())return!0;c&&clearTimeout(c),c=setTimeout(function(){b=""},500);var e=String.fromCharCode(d.which).toLowerCase(),f=this.element.find(".jstree-anchor").filter(":visible"),g=f.index(i.activeElement)||0,h=!1;if(b+=e,b.length>1){if(f.slice(g).each(a.proxy(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).focus(),h=!0,!1):void 0},this)),h)return;if(f.slice(0,g).each(a.proxy(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).focus(),h=!0,!1):void 0},this)),h)return}if(new RegExp("^"+e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")+"+$").test(b)){if(f.slice(g+1).each(a.proxy(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).focus(),h=!0,!1):void 0},this)),h)return;if(f.slice(0,g+1).each(a.proxy(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).focus(),h=!0,!1):void 0},this)),h)return}},this)).on("init.jstree",a.proxy(function(){var a=this.settings.core.themes;this._data.core.themes.dots=a.dots,this._data.core.themes.stripes=a.stripes,this._data.core.themes.icons=a.icons,this._data.core.themes.ellipsis=a.ellipsis,this.set_theme(a.name||"default",a.url),this.set_theme_variant(a.variant)},this)).on("loading.jstree",a.proxy(function(){this[this._data.core.themes.dots?"show_dots":"hide_dots"](),this[this._data.core.themes.icons?"show_icons":"hide_icons"](),this[this._data.core.themes.stripes?"show_stripes":"hide_stripes"](),this[this._data.core.themes.ellipsis?"show_ellipsis":"hide_ellipsis"]()},this)).on("blur.jstree",".jstree-anchor",a.proxy(function(b){this._data.core.focused=null,a(b.currentTarget).filter(".jstree-hovered").mouseleave(),this.element.attr("tabindex","0")},this)).on("focus.jstree",".jstree-anchor",a.proxy(function(b){var c=this.get_node(b.currentTarget);c&&c.id&&(this._data.core.focused=c.id),this.element.find(".jstree-hovered").not(b.currentTarget).mouseleave(),a(b.currentTarget).mouseenter(),this.element.attr("tabindex","-1")},this)).on("focus.jstree",a.proxy(function(){if(+new Date-d>500&&!this._data.core.focused&&this.settings.core.restore_focus){d=0;var a=this.get_node(this.element.attr("aria-activedescendant"),!0);a&&a.find("> .jstree-anchor").focus()}},this)).on("mouseenter.jstree",".jstree-anchor",a.proxy(function(a){this.hover_node(a.currentTarget)},this)).on("mouseleave.jstree",".jstree-anchor",a.proxy(function(a){this.dehover_node(a.currentTarget)},this))},unbind:function(){this.element.off(".jstree"),a(i).off(".jstree-"+this._id)},trigger:function(a,b){b||(b={}),b.instance=this,this.element.triggerHandler(a.replace(".jstree","")+".jstree",b)},get_container:function(){return this.element},get_container_ul:function(){return this.element.children(".jstree-children").first()},get_string:function(b){var c=this.settings.core.strings;return a.isFunction(c)?c.call(this,b):c&&c[b]?c[b]:b},_firstChild:function(a){a=a?a.firstChild:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_nextSibling:function(a){a=a?a.nextSibling:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_previousSibling:function(a){a=a?a.previousSibling:null;while(null!==a&&1!==a.nodeType)a=a.previousSibling;return a},get_node:function(b,c){b&&b.id&&(b=b.id);var d;try{if(this._model.data[b])b=this._model.data[b];else if("string"==typeof b&&this._model.data[b.replace(/^#/,"")])b=this._model.data[b.replace(/^#/,"")];else if("string"==typeof b&&(d=a("#"+b.replace(a.jstree.idregex,"\\$&"),this.element)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else if((d=this.element.find(b)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else{if(!(d=this.element.find(b)).length||!d.hasClass("jstree"))return!1;b=this._model.data[a.jstree.root]}return c&&(b=b.id===a.jstree.root?this.element:a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)),b}catch(e){return!1}},get_path:function(b,c,d){if(b=b.parents?b:this.get_node(b),!b||b.id===a.jstree.root||!b.parents)return!1;var e,f,g=[];for(g.push(d?b.id:b.text),e=0,f=b.parents.length;f>e;e++)g.push(d?b.parents[e]:this.get_text(b.parents[e]));return g=g.reverse().slice(1),c?g.join(c):g},get_next_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this._firstChild(this.get_container_ul()[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}if(b.hasClass("jstree-open")){d=this._firstChild(b.children(".jstree-children")[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);if(null!==d)return a(d)}d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return null!==d?a(d):b.parentsUntil(".jstree",".jstree-node").nextAll(".jstree-node:visible").first()},get_prev_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this.get_container_ul()[0].lastChild;while(d&&0===d.offsetHeight)d=this._previousSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);if(null!==d){b=a(d);while(b.hasClass("jstree-open"))b=b.children(".jstree-children").first().children(".jstree-node:visible:last");return b}return d=b[0].parentNode.parentNode,d&&d.className&&-1!==d.className.indexOf("jstree-node")?a(d):!1},get_parent:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.parent:!1},get_children_dom:function(a){return a=this.get_node(a,!0),a[0]===this.element[0]?this.get_container_ul().children(".jstree-node"):a&&a.length?a.children(".jstree-children").children(".jstree-node"):!1},is_parent:function(a){return a=this.get_node(a),a&&(a.state.loaded===!1||a.children.length>0)},is_loaded:function(a){return a=this.get_node(a),a&&a.state.loaded},is_loading:function(a){return a=this.get_node(a),a&&a.state&&a.state.loading},is_open:function(a){return a=this.get_node(a),a&&a.state.opened},is_closed:function(a){return a=this.get_node(a),a&&this.is_parent(a)&&!a.state.opened},is_leaf:function(a){return!this.is_parent(a)},load_node:function(b,c){var d,e,f,g,h;if(a.isArray(b))return this._load_nodes(b.slice(),c),!0;if(b=this.get_node(b),!b)return c&&c.call(this,b,!1),!1;if(b.state.loaded){for(b.state.loaded=!1,f=0,g=b.parents.length;g>f;f++)this._model.data[b.parents[f]].children_d=a.vakata.array_filter(this._model.data[b.parents[f]].children_d,function(c){return-1===a.inArray(c,b.children_d)});for(d=0,e=b.children_d.length;e>d;d++)this._model.data[b.children_d[d]].state.selected&&(h=!0),delete this._model.data[b.children_d[d]];h&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(c){return-1===a.inArray(c,b.children_d)})),b.children=[],b.children_d=[],h&&this.trigger("changed",{action:"load_node",node:b,selected:this._data.core.selected})}return b.state.failed=!1,b.state.loading=!0,this.get_node(b,!0).addClass("jstree-loading").attr("aria-busy",!0),this._load_node(b,a.proxy(function(a){b=this._model.data[b.id],b.state.loading=!1,b.state.loaded=a,b.state.failed=!b.state.loaded;var d=this.get_node(b,!0),e=0,f=0,g=this._model.data,h=!1;for(e=0,f=b.children.length;f>e;e++)if(g[b.children[e]]&&!g[b.children[e]].state.hidden){h=!0;break}b.state.loaded&&d&&d.length&&(d.removeClass("jstree-closed jstree-open jstree-leaf"),h?"#"!==b.id&&d.addClass(b.state.opened?"jstree-open":"jstree-closed"):d.addClass("jstree-leaf")),d.removeClass("jstree-loading").attr("aria-busy",!1),this.trigger("load_node",{node:b,status:a}),c&&c.call(this,b,a)},this)),!0},_load_nodes:function(a,b,c,d){var e=!0,f=function(){this._load_nodes(a,b,!0)},g=this._model.data,h,i,j=[];for(h=0,i=a.length;i>h;h++)g[a[h]]&&(!g[a[h]].state.loaded&&!g[a[h]].state.failed||!c&&d)&&(this.is_loading(a[h])||this.load_node(a[h],f),e=!1);if(e){for(h=0,i=a.length;i>h;h++)g[a[h]]&&g[a[h]].state.loaded&&j.push(a[h]);b&&!b.done&&(b.call(this,j),b.done=!0)}},load_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=[],e=this._model.data,f=e[b.id].children_d,g,h;for(b.state&&!b.state.loaded&&d.push(b.id),g=0,h=f.length;h>g;g++)e[f[g]]&&e[f[g]].state&&!e[f[g]].state.loaded&&d.push(f[g]);d.length?this._load_nodes(d,function(){this.load_all(b,c)}):(c&&c.call(this,b),this.trigger("load_all",{node:b}))},_load_node:function(b,c){var d=this.settings.core.data,e,f=function g(){return 3!==this.nodeType&&8!==this.nodeType};return d?a.isFunction(d)?d.call(this,b,a.proxy(function(d){d===!1?c.call(this,!1):this["string"==typeof d?"_append_html_data":"_append_json_data"](b,"string"==typeof d?a(a.parseHTML(d)).filter(f):d,function(a){c.call(this,a)})},this)):"object"==typeof d?d.url?(d=a.extend(!0,{},d),a.isFunction(d.url)&&(d.url=d.url.call(this,b)),a.isFunction(d.data)&&(d.data=d.data.call(this,b)),a.ajax(d).done(a.proxy(function(d,e,g){var h=g.getResponseHeader("Content-Type");return h&&-1!==h.indexOf("json")||"object"==typeof d?this._append_json_data(b,d,function(a){c.call(this,a)}):h&&-1!==h.indexOf("html")||"string"==typeof d?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:g})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))},this)).fail(a.proxy(function(a){this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:a})},c.call(this,!1),this.settings.core.error.call(this,this._data.core.last_error)},this))):(e=a.isArray(d)?a.extend(!0,[],d):a.isPlainObject(d)?a.extend(!0,{},d):d,b.id===a.jstree.root?this._append_json_data(b,e,function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_05",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))):"string"==typeof d?b.id===a.jstree.root?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_06",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1)):c.call(this,!1):b.id===a.jstree.root?this._append_html_data(b,this._data.core.original_container_html.clone(!0),function(a){c.call(this,a)}):c.call(this,!1)},_node_changed:function(b){b=this.get_node(b),b&&-1===a.inArray(b.id,this._model.changed)&&this._model.changed.push(b.id)},_append_html_data:function(b,c,d){b=this.get_node(b),b.children=[],b.children_d=[];var e=c.is("ul")?c.children():c,f=b.id,g=[],h=[],i=this._model.data,j=i[f],k=this._data.core.selected.length,l,m,n;for(e.each(a.proxy(function(b,c){l=this._parse_model_from_html(a(c),f,j.parents.concat()),l&&(g.push(l),h.push(l),i[l].children_d.length&&(h=h.concat(i[l].children_d)))},this)),j.children=g,j.children_d=h,m=0,n=j.parents.length;n>m;m++)i[j.parents[m]].children_d=i[j.parents[m]].children_d.concat(h);this.trigger("model",{nodes:h,parent:f}),f!==a.jstree.root?(this._node_changed(f),this.redraw()):(this.get_container_ul().children(".jstree-initial-node").remove(),this.redraw(!0)),this._data.core.selected.length!==k&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),d.call(this,!0)},_append_json_data:function(b,c,d,e){if(null!==this.element){b=this.get_node(b),b.children=[],b.children_d=[],c.d&&(c=c.d,"string"==typeof c&&(c=JSON.parse(c))),a.isArray(c)||(c=[c]);var f=null,g={df:this._model.default_state,dat:c,par:b.id,m:this._model.data,t_id:this._id,t_cnt:this._cnt,sel:this._data.core.selected},h=function(a,b){a.data&&(a=a.data);var c=a.dat,d=a.par,e=[],f=[],g=[],h=a.df,i=a.t_id,j=a.t_cnt,k=a.m,l=k[d],m=a.sel,n,o,p,q,r=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f,i,j,l,m={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in h)h.hasOwnProperty(f)&&(m.state[f]=h[f]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(m.icon=a.data.jstree.icon),(m.icon===b||null===m.icon||""===m.icon)&&(m.icon=!0),a&&a.data&&(m.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(m.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(m.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(m.li_attr[f]=a.li_attr[f]);if(m.li_attr.id||(m.li_attr.id=e),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(m.a_attr[f]=a.a_attr[f]);for(a&&a.children&&a.children===!0&&(m.state.loaded=!1,m.children=[],m.children_d=[]),k[m.id]=m,f=0,i=m.children.length;i>f;f++)j=r(k[m.children[f]],m.id,d),l=k[j],m.children_d.push(j),l.children_d.length&&(m.children_d=m.children_d.concat(l.children_d));return delete a.data,delete a.children,k[m.id].original=a,m.state.selected&&g.push(m.id),m.id},s=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,l,m,n,o;do e="j"+i+"_"+ ++j;while(k[e]);o={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in h)h.hasOwnProperty(f)&&(o.state[f]=h[f]);if(a&&a.id&&(o.id=a.id.toString()),a&&a.text&&(o.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(o.icon=a.data.jstree.icon),(o.icon===b||null===o.icon||""===o.icon)&&(o.icon=!0),a&&a.data&&(o.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(o.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(o.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(o.li_attr[f]=a.li_attr[f]);if(o.li_attr.id&&!o.id&&(o.id=o.li_attr.id.toString()),o.id||(o.id=e),o.li_attr.id||(o.li_attr.id=o.id),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(o.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,l=a.children.length;l>f;f++)m=s(a.children[f],o.id,d),n=k[m],o.children.push(m),n.children_d.length&&(o.children_d=o.children_d.concat(n.children_d));o.children_d=o.children_d.concat(o.children)}return a&&a.children&&a.children===!0&&(o.state.loaded=!1,o.children=[],o.children_d=[]),delete a.data,delete a.children,o.original=a,k[o.id]=o,o.state.selected&&g.push(o.id),o.id};if(c.length&&c[0].id!==b&&c[0].parent!==b){for(o=0,p=c.length;p>o;o++)c[o].children||(c[o].children=[]),c[o].state||(c[o].state={}),k[c[o].id.toString()]=c[o];for(o=0,p=c.length;p>o;o++)k[c[o].parent.toString()]?(k[c[o].parent.toString()].children.push(c[o].id.toString()),l.children_d.push(c[o].id.toString())):(this._data.core.last_error={error:"parse",plugin:"core",id:"core_07",reason:"Node with invalid parent",data:JSON.stringify({id:c[o].id.toString(),parent:c[o].parent.toString()})},this.settings.core.error.call(this,this._data.core.last_error));for(o=0,p=l.children.length;p>o;o++)n=r(k[l.children[o]],d,l.parents.concat()),f.push(n),k[n].children_d.length&&(f=f.concat(k[n].children_d));for(o=0,p=l.parents.length;p>o;o++)k[l.parents[o]].children_d=k[l.parents[o]].children_d.concat(f);q={cnt:j,mod:k,sel:m,par:d,dpc:f,add:g}}else{for(o=0,p=c.length;p>o;o++)n=s(c[o],d,l.parents.concat()),n&&(e.push(n),f.push(n),k[n].children_d.length&&(f=f.concat(k[n].children_d)));for(l.children=e,l.children_d=f,o=0,p=l.parents.length;p>o;o++)k[l.parents[o]].children_d=k[l.parents[o]].children_d.concat(f);q={cnt:j,mod:k,sel:m,par:d,dpc:f,add:g}}return"undefined"!=typeof window&&"undefined"!=typeof window.document?q:void postMessage(q)},i=function(b,c){if(null!==this.element){this._cnt=b.cnt;var e,f=this._model.data;for(e in f)f.hasOwnProperty(e)&&f[e].state&&f[e].state.loading&&b.mod[e]&&(b.mod[e].state.loading=!0);if(this._model.data=b.mod,c){var g,h=b.add,i=b.sel,j=this._data.core.selected.slice();if(f=this._model.data,i.length!==j.length||a.vakata.array_unique(i.concat(j)).length!==i.length){for(e=0,g=i.length;g>e;e++)-1===a.inArray(i[e],h)&&-1===a.inArray(i[e],j)&&(f[i[e]].state.selected=!1);for(e=0,g=j.length;g>e;e++)-1===a.inArray(j[e],i)&&(f[j[e]].state.selected=!0)}}b.add.length&&(this._data.core.selected=this._data.core.selected.concat(b.add)),this.trigger("model",{nodes:b.dpc,parent:b.par}),b.par!==a.jstree.root?(this._node_changed(b.par),this.redraw()):this.redraw(!0),b.add.length&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),d.call(this,!0)}};if(this.settings.core.worker&&window.Blob&&window.URL&&window.Worker)try{null===this._wrk&&(this._wrk=window.URL.createObjectURL(new window.Blob(["self.onmessage = "+h.toString()],{type:"text/javascript"}))),!this._data.core.working||e?(this._data.core.working=!0,f=new window.Worker(this._wrk),f.onmessage=a.proxy(function(a){i.call(this,a.data,!0);try{f.terminate(),f=null}catch(b){}this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1},this),g.par?f.postMessage(g):this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1):this._data.core.worker_queue.push([b,c,d,!0])}catch(j){i.call(this,h(g),!1),this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1}else i.call(this,h(g),!1)}},_parse_model_from_html:function(c,d,e){e=e?[].concat(e):[],d&&e.unshift(d);var f,g,h=this._model.data,i={id:!1,text:!1,icon:!0,parent:d,parents:e,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1},j,k,l;for(j in this._model.default_state)this._model.default_state.hasOwnProperty(j)&&(i.state[j]=this._model.default_state[j]);if(k=a.vakata.attributes(c,!0),a.each(k,function(b,c){return c=a.trim(c),c.length?(i.li_attr[b]=c,void("id"===b&&(i.id=c.toString()))):!0}),k=c.children("a").first(),k.length&&(k=a.vakata.attributes(k,!0),a.each(k,function(b,c){c=a.trim(c),c.length&&(i.a_attr[b]=c)})),k=c.children("a").first().length?c.children("a").first().clone():c.clone(),k.children("ins, i, ul").remove(),k=k.html(),k=a("<div />").html(k),i.text=this.settings.core.force_text?k.text():k.html(),k=c.data(),i.data=k?a.extend(!0,{},k):null,i.state.opened=c.hasClass("jstree-open"),i.state.selected=c.children("a").hasClass("jstree-clicked"),i.state.disabled=c.children("a").hasClass("jstree-disabled"),i.data&&i.data.jstree)for(j in i.data.jstree)i.data.jstree.hasOwnProperty(j)&&(i.state[j]=i.data.jstree[j]);k=c.children("a").children(".jstree-themeicon"),k.length&&(i.icon=k.hasClass("jstree-themeicon-hidden")?!1:k.attr("rel")),i.state.icon!==b&&(i.icon=i.state.icon),(i.icon===b||null===i.icon||""===i.icon)&&(i.icon=!0),k=c.children("ul").children("li");do l="j"+this._id+"_"+ ++this._cnt;while(h[l]);return i.id=i.li_attr.id?i.li_attr.id.toString():l,k.length?(k.each(a.proxy(function(b,c){f=this._parse_model_from_html(a(c),i.id,e),g=this._model.data[f],i.children.push(f),g.children_d.length&&(i.children_d=i.children_d.concat(g.children_d))},this)),i.children_d=i.children_d.concat(i.children)):c.hasClass("jstree-closed")&&(i.state.loaded=!1),i.li_attr["class"]&&(i.li_attr["class"]=i.li_attr["class"].replace("jstree-closed","").replace("jstree-open","")),i.a_attr["class"]&&(i.a_attr["class"]=i.a_attr["class"].replace("jstree-clicked","").replace("jstree-disabled","")),h[i.id]=i,i.state.selected&&this._data.core.selected.push(i.id),i.id},_parse_model_from_flat_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f=this._model.data,g=this._model.default_state,h,i,j,k,l={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(h in g)g.hasOwnProperty(h)&&(l.state[h]=g[h]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),a&&a.data&&(l.data=a.data,a.data.jstree))for(h in a.data.jstree)a.data.jstree.hasOwnProperty(h)&&(l.state[h]=a.data.jstree[h]);if(a&&"object"==typeof a.state)for(h in a.state)a.state.hasOwnProperty(h)&&(l.state[h]=a.state[h]);if(a&&"object"==typeof a.li_attr)for(h in a.li_attr)a.li_attr.hasOwnProperty(h)&&(l.li_attr[h]=a.li_attr[h]);if(l.li_attr.id||(l.li_attr.id=e),a&&"object"==typeof a.a_attr)for(h in a.a_attr)a.a_attr.hasOwnProperty(h)&&(l.a_attr[h]=a.a_attr[h]);for(a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),f[l.id]=l,h=0,i=l.children.length;i>h;h++)j=this._parse_model_from_flat_json(f[l.children[h]],l.id,d),k=f[j],l.children_d.push(j),k.children_d.length&&(l.children_d=l.children_d.concat(k.children_d));return delete a.data,delete a.children,f[l.id].original=a,l.state.selected&&this._data.core.selected.push(l.id),l.id},_parse_model_from_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,g,h,i,j=this._model.data,k=this._model.default_state,l;do e="j"+this._id+"_"+ ++this._cnt;while(j[e]);l={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in k)k.hasOwnProperty(f)&&(l.state[f]=k[f]);if(a&&a.id&&(l.id=a.id.toString()),a&&a.text&&(l.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),a&&a.data&&(l.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(l.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(l.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(l.li_attr[f]=a.li_attr[f]);if(l.li_attr.id&&!l.id&&(l.id=l.li_attr.id.toString()),l.id||(l.id=e),l.li_attr.id||(l.li_attr.id=l.id),
|
3 |
-
a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(l.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,g=a.children.length;g>f;f++)h=this._parse_model_from_json(a.children[f],l.id,d),i=j[h],l.children.push(h),i.children_d.length&&(l.children_d=l.children_d.concat(i.children_d));l.children_d=l.children_d.concat(l.children)}return a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),delete a.data,delete a.children,l.original=a,j[l.id]=l,l.state.selected&&this._data.core.selected.push(l.id),l.id},_redraw:function(){var b=this._model.force_full_redraw?this._model.data[a.jstree.root].children.concat([]):this._model.changed.concat([]),c=i.createElement("UL"),d,e,f,g=this._data.core.focused;for(e=0,f=b.length;f>e;e++)d=this.redraw_node(b[e],!0,this._model.force_full_redraw),d&&this._model.force_full_redraw&&c.appendChild(d);this._model.force_full_redraw&&(c.className=this.get_container_ul()[0].className,c.setAttribute("role","group"),this.element.empty().append(c)),null!==g&&(d=this.get_node(g,!0),d&&d.length&&d.children(".jstree-anchor")[0]!==i.activeElement?d.children(".jstree-anchor").focus():this._data.core.focused=null),this._model.force_full_redraw=!1,this._model.changed=[],this.trigger("redraw",{nodes:b})},redraw:function(a){a&&(this._model.force_full_redraw=!0),this._redraw()},draw_children:function(b){var c=this.get_node(b),d=!1,e=!1,f=!1,g=i;if(!c)return!1;if(c.id===a.jstree.root)return this.redraw(!0);if(b=this.get_node(b,!0),!b||!b.length)return!1;if(b.children(".jstree-children").remove(),b=b[0],c.children.length&&c.state.loaded){for(f=g.createElement("UL"),f.setAttribute("role","group"),f.className="jstree-children",d=0,e=c.children.length;e>d;d++)f.appendChild(this.redraw_node(c.children[d],!0,!0));b.appendChild(f)}},redraw_node:function(b,c,d,e){var f=this.get_node(b),g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n="",o=i,p=this._model.data,q=!1,r=!1,s=null,t=0,u=0,v=!1,w=!1;if(!f)return!1;if(f.id===a.jstree.root)return this.redraw(!0);if(c=c||0===f.children.length,b=i.querySelector?this.element[0].querySelector("#"+(-1!=="0123456789".indexOf(f.id[0])?"\\3"+f.id[0]+" "+f.id.substr(1).replace(a.jstree.idregex,"\\$&"):f.id.replace(a.jstree.idregex,"\\$&"))):i.getElementById(f.id))b=a(b),d||(g=b.parent().parent()[0],g===this.element[0]&&(g=null),h=b.index()),c||!f.children.length||b.children(".jstree-children").length||(c=!0),c||(j=b.children(".jstree-children")[0]),q=b.children(".jstree-anchor")[0]===i.activeElement,b.remove();else if(c=!0,!d){if(g=f.parent!==a.jstree.root?a("#"+f.parent.replace(a.jstree.idregex,"\\$&"),this.element)[0]:null,!(null===g||g&&p[f.parent].state.opened))return!1;h=a.inArray(f.id,null===g?p[a.jstree.root].children:p[f.parent].children)}b=this._data.core.node.cloneNode(!0),n="jstree-node ";for(k in f.li_attr)if(f.li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"!==k?b.setAttribute(k,f.li_attr[k]):n+=f.li_attr[k]}for(f.a_attr.id||(f.a_attr.id=f.id+"_anchor"),b.setAttribute("aria-selected",!!f.state.selected),b.setAttribute("aria-level",f.parents.length),b.setAttribute("aria-labelledby",f.a_attr.id),f.state.disabled&&b.setAttribute("aria-disabled",!0),k=0,l=f.children.length;l>k;k++)if(!p[f.children[k]].state.hidden){v=!0;break}if(null!==f.parent&&p[f.parent]&&!f.state.hidden&&(k=a.inArray(f.id,p[f.parent].children),w=f.id,-1!==k))for(k++,l=p[f.parent].children.length;l>k;k++)if(p[p[f.parent].children[k]].state.hidden||(w=p[f.parent].children[k]),w!==f.id)break;f.state.hidden&&(n+=" jstree-hidden"),f.state.loading&&(n+=" jstree-loading"),f.state.loaded&&!v?n+=" jstree-leaf":(n+=f.state.opened&&f.state.loaded?" jstree-open":" jstree-closed",b.setAttribute("aria-expanded",f.state.opened&&f.state.loaded)),w===f.id&&(n+=" jstree-last"),b.id=f.id,b.className=n,n=(f.state.selected?" jstree-clicked":"")+(f.state.disabled?" jstree-disabled":"");for(l in f.a_attr)if(f.a_attr.hasOwnProperty(l)){if("href"===l&&"#"===f.a_attr[l])continue;"class"!==l?b.childNodes[1].setAttribute(l,f.a_attr[l]):n+=" "+f.a_attr[l]}if(n.length&&(b.childNodes[1].className="jstree-anchor "+n),(f.icon&&f.icon!==!0||f.icon===!1)&&(f.icon===!1?b.childNodes[1].childNodes[0].className+=" jstree-themeicon-hidden":-1===f.icon.indexOf("/")&&-1===f.icon.indexOf(".")?b.childNodes[1].childNodes[0].className+=" "+f.icon+" jstree-themeicon-custom":(b.childNodes[1].childNodes[0].style.backgroundImage='url("'+f.icon+'")',b.childNodes[1].childNodes[0].style.backgroundPosition="center center",b.childNodes[1].childNodes[0].style.backgroundSize="auto",b.childNodes[1].childNodes[0].className+=" jstree-themeicon-custom")),this.settings.core.force_text?b.childNodes[1].appendChild(o.createTextNode(f.text)):b.childNodes[1].innerHTML+=f.text,c&&f.children.length&&(f.state.opened||e)&&f.state.loaded){for(m=o.createElement("UL"),m.setAttribute("role","group"),m.className="jstree-children",k=0,l=f.children.length;l>k;k++)m.appendChild(this.redraw_node(f.children[k],c,!0));b.appendChild(m)}if(j&&b.appendChild(j),!d){for(g||(g=this.element[0]),k=0,l=g.childNodes.length;l>k;k++)if(g.childNodes[k]&&g.childNodes[k].className&&-1!==g.childNodes[k].className.indexOf("jstree-children")){s=g.childNodes[k];break}s||(s=o.createElement("UL"),s.setAttribute("role","group"),s.className="jstree-children",g.appendChild(s)),g=s,h<g.childNodes.length?g.insertBefore(b,g.childNodes[h]):g.appendChild(b),q&&(t=this.element[0].scrollTop,u=this.element[0].scrollLeft,b.childNodes[1].focus(),this.element[0].scrollTop=t,this.element[0].scrollLeft=u)}return f.state.opened&&!f.state.loaded&&(f.state.opened=!1,setTimeout(a.proxy(function(){this.open_node(f.id,!1,0)},this),0)),b},open_node:function(c,d,e){var f,g,h,i;if(a.isArray(c)){for(c=c.slice(),f=0,g=c.length;g>f;f++)this.open_node(c[f],d,e);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(e=e===b?this.settings.core.animation:e,this.is_closed(c)?this.is_loaded(c)?(h=this.get_node(c,!0),i=this,h.length&&(e&&h.children(".jstree-children").length&&h.children(".jstree-children").stop(!0,!0),c.children.length&&!this._firstChild(h.children(".jstree-children")[0])&&this.draw_children(c),e?(this.trigger("before_open",{node:c}),h.children(".jstree-children").css("display","none").end().removeClass("jstree-closed").addClass("jstree-open").attr("aria-expanded",!0).children(".jstree-children").stop(!0,!0).slideDown(e,function(){this.style.display="",i.element&&i.trigger("after_open",{node:c})})):(this.trigger("before_open",{node:c}),h[0].className=h[0].className.replace("jstree-closed","jstree-open"),h[0].setAttribute("aria-expanded",!0))),c.state.opened=!0,d&&d.call(this,c,!0),h.length||this.trigger("before_open",{node:c}),this.trigger("open_node",{node:c}),e&&h.length||this.trigger("after_open",{node:c}),!0):this.is_loading(c)?setTimeout(a.proxy(function(){this.open_node(c,d,e)},this),500):void this.load_node(c,function(a,b){return b?this.open_node(a,d,e):d?d.call(this,a,!1):!1}):(d&&d.call(this,c,!1),!1)):!1},_open_to:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c,d,e=b.parents;for(c=0,d=e.length;d>c;c+=1)c!==a.jstree.root&&this.open_node(e[c],!1,0);return a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)},close_node:function(c,d){var e,f,g,h;if(a.isArray(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.close_node(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?this.is_closed(c)?!1:(d=d===b?this.settings.core.animation:d,g=this,h=this.get_node(c,!0),c.state.opened=!1,this.trigger("close_node",{node:c}),void(h.length?d?h.children(".jstree-children").attr("style","display:block !important").end().removeClass("jstree-open").addClass("jstree-closed").attr("aria-expanded",!1).children(".jstree-children").stop(!0,!0).slideUp(d,function(){this.style.display="",h.children(".jstree-children").remove(),g.element&&g.trigger("after_close",{node:c})}):(h[0].className=h[0].className.replace("jstree-open","jstree-closed"),h.attr("aria-expanded",!1).children(".jstree-children").remove(),this.trigger("after_close",{node:c})):this.trigger("after_close",{node:c}))):!1},toggle_node:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.toggle_node(b[c]);return!0}return this.is_closed(b)?this.open_node(b):this.is_open(b)?this.close_node(b):void 0},open_all:function(b,c,d){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var e=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),f,g,h;if(!e.length){for(f=0,g=b.children_d.length;g>f;f++)this.is_closed(this._model.data[b.children_d[f]])&&(this._model.data[b.children_d[f]].state.opened=!0);return this.trigger("open_all",{node:b})}d=d||e,h=this,e=this.is_closed(b)?e.find(".jstree-closed").addBack():e.find(".jstree-closed"),e.each(function(){h.open_node(this,function(a,b){b&&this.is_parent(a)&&this.open_all(a,c,d)},c||0)}),0===d.find(".jstree-closed").length&&this.trigger("open_all",{node:this.get_node(d)})},close_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),e=this,f,g;for(d.length&&(d=this.is_open(b)?d.find(".jstree-open").addBack():d.find(".jstree-open"),a(d.get().reverse()).each(function(){e.close_node(this,c||0)})),f=0,g=b.children_d.length;g>f;f++)this._model.data[b.children_d[f]].state.opened=!1;this.trigger("close_all",{node:b})},is_disabled:function(a){return a=this.get_node(a),a&&a.state&&a.state.disabled},enable_node:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!1,this.get_node(b,!0).children(".jstree-anchor").removeClass("jstree-disabled").attr("aria-disabled",!1),void this.trigger("enable_node",{node:b})):!1},disable_node:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!0,this.get_node(b,!0).children(".jstree-anchor").addClass("jstree-disabled").attr("aria-disabled",!0),void this.trigger("disable_node",{node:b})):!1},is_hidden:function(a){return a=this.get_node(a),a.state.hidden===!0},hide_node:function(b,c){var d,e;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.hide_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden||(b.state.hidden=!0,this._node_changed(b.parent),c||this.redraw(),this.trigger("hide_node",{node:b}))):!1},show_node:function(b,c){var d,e;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.show_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden&&(b.state.hidden=!1,this._node_changed(b.parent),c||this.redraw(),this.trigger("show_node",{node:b}))):!1},hide_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&!d[c].state.hidden&&(d[c].state.hidden=!0,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("hide_all",{nodes:e}),e},show_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&d[c].state.hidden&&(d[c].state.hidden=!1,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("show_all",{nodes:e}),e},activate_node:function(a,c){if(this.is_disabled(a))return!1;if(c&&"object"==typeof c||(c={}),this._data.core.last_clicked=this._data.core.last_clicked&&this._data.core.last_clicked.id!==b?this.get_node(this._data.core.last_clicked.id):null,this._data.core.last_clicked&&!this._data.core.last_clicked.state.selected&&(this._data.core.last_clicked=null),!this._data.core.last_clicked&&this._data.core.selected.length&&(this._data.core.last_clicked=this.get_node(this._data.core.selected[this._data.core.selected.length-1])),this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&(!c.shiftKey||this._data.core.last_clicked&&this.get_parent(a)&&this.get_parent(a)===this._data.core.last_clicked.parent))if(c.shiftKey){var d=this.get_node(a).id,e=this._data.core.last_clicked.id,f=this.get_node(this._data.core.last_clicked.parent).children,g=!1,h,i;for(h=0,i=f.length;i>h;h+=1)f[h]===d&&(g=!g),f[h]===e&&(g=!g),this.is_disabled(f[h])||!g&&f[h]!==d&&f[h]!==e?this.deselect_node(f[h],!0,c):this.is_hidden(f[h])||this.select_node(f[h],!0,!1,c);this.trigger("changed",{action:"select_node",node:this.get_node(a),selected:this._data.core.selected,event:c})}else this.is_selected(a)?this.deselect_node(a,!1,c):this.select_node(a,!1,!1,c);else!this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&this.is_selected(a)?this.deselect_node(a,!1,c):(this.deselect_all(!0),this.select_node(a,!1,!1,c),this._data.core.last_clicked=this.get_node(a));this.trigger("activate_node",{node:this.get_node(a),event:c})},hover_node:function(a){if(a=this.get_node(a,!0),!a||!a.length||a.children(".jstree-hovered").length)return!1;var b=this.element.find(".jstree-hovered"),c=this.element;b&&b.length&&this.dehover_node(b),a.children(".jstree-anchor").addClass("jstree-hovered"),this.trigger("hover_node",{node:this.get_node(a)}),setTimeout(function(){c.attr("aria-activedescendant",a[0].id)},0)},dehover_node:function(a){return a=this.get_node(a,!0),a&&a.length&&a.children(".jstree-hovered").length?(a.children(".jstree-anchor").removeClass("jstree-hovered"),void this.trigger("dehover_node",{node:this.get_node(a)})):!1},select_node:function(b,c,d,e){var f,g,h,i;if(a.isArray(b)){for(b=b.slice(),g=0,h=b.length;h>g;g++)this.select_node(b[g],c,d,e);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.selected||(b.state.selected=!0,this._data.core.selected.push(b.id),d||(f=this._open_to(b)),f&&f.length&&f.attr("aria-selected",!0).children(".jstree-anchor").addClass("jstree-clicked"),this.trigger("select_node",{node:b,selected:this._data.core.selected,event:e}),c||this.trigger("changed",{action:"select_node",node:b,selected:this._data.core.selected,event:e})))):!1},deselect_node:function(b,c,d){var e,f,g;if(a.isArray(b)){for(b=b.slice(),e=0,f=b.length;f>e;e++)this.deselect_node(b[e],c,d);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(g=this.get_node(b,!0),void(b.state.selected&&(b.state.selected=!1,this._data.core.selected=a.vakata.array_remove_item(this._data.core.selected,b.id),g.length&&g.attr("aria-selected",!1).children(".jstree-anchor").removeClass("jstree-clicked"),this.trigger("deselect_node",{node:b,selected:this._data.core.selected,event:d}),c||this.trigger("changed",{action:"deselect_node",node:b,selected:this._data.core.selected,event:d})))):!1},select_all:function(b){var c=this._data.core.selected.concat([]),d,e;for(this._data.core.selected=this._model.data[a.jstree.root].children_d.concat(),d=0,e=this._data.core.selected.length;e>d;d++)this._model.data[this._data.core.selected[d]]&&(this._model.data[this._data.core.selected[d]].state.selected=!0);this.redraw(!0),this.trigger("select_all",{selected:this._data.core.selected}),b||this.trigger("changed",{action:"select_all",selected:this._data.core.selected,old_selection:c})},deselect_all:function(a){var b=this._data.core.selected.concat([]),c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)this._model.data[this._data.core.selected[c]]&&(this._model.data[this._data.core.selected[c]].state.selected=!1);this._data.core.selected=[],this.element.find(".jstree-clicked").removeClass("jstree-clicked").parent().attr("aria-selected",!1),this.trigger("deselect_all",{selected:this._data.core.selected,node:b}),a||this.trigger("changed",{action:"deselect_all",selected:this._data.core.selected,old_selection:b})},is_selected:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.selected:!1},get_selected:function(b){return b?a.map(this._data.core.selected,a.proxy(function(a){return this.get_node(a)},this)):this._data.core.selected.slice()},get_top_selected:function(b){var c=this.get_selected(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,a.proxy(function(a){return this.get_node(a)},this)):c},get_bottom_selected:function(b){var c=this.get_selected(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,a.proxy(function(a){return this.get_node(a)},this)):d},get_state:function(){var b={core:{open:[],loaded:[],scroll:{left:this.element.scrollLeft(),top:this.element.scrollTop()},selected:[]}},c;for(c in this._model.data)this._model.data.hasOwnProperty(c)&&c!==a.jstree.root&&(this._model.data[c].state.loaded&&this.settings.core.loaded_state&&b.core.loaded.push(c),this._model.data[c].state.opened&&b.core.open.push(c),this._model.data[c].state.selected&&b.core.selected.push(c));return b},set_state:function(c,d){if(c){if(c.core&&c.core.selected&&c.core.initial_selection===b&&(c.core.initial_selection=this._data.core.selected.concat([]).sort().join(",")),c.core){var e,f,g,h,i;if(c.core.loaded)return this.settings.core.loaded_state&&a.isArray(c.core.loaded)&&c.core.loaded.length?this._load_nodes(c.core.loaded,function(a){delete c.core.loaded,this.set_state(c,d)}):(delete c.core.loaded,this.set_state(c,d)),!1;if(c.core.open)return a.isArray(c.core.open)&&c.core.open.length?this._load_nodes(c.core.open,function(a){this.open_node(a,!1,0),delete c.core.open,this.set_state(c,d)}):(delete c.core.open,this.set_state(c,d)),!1;if(c.core.scroll)return c.core.scroll&&c.core.scroll.left!==b&&this.element.scrollLeft(c.core.scroll.left),c.core.scroll&&c.core.scroll.top!==b&&this.element.scrollTop(c.core.scroll.top),delete c.core.scroll,this.set_state(c,d),!1;if(c.core.selected)return h=this,(c.core.initial_selection===b||c.core.initial_selection===this._data.core.selected.concat([]).sort().join(","))&&(this.deselect_all(),a.each(c.core.selected,function(a,b){h.select_node(b,!1,!0)})),delete c.core.initial_selection,delete c.core.selected,this.set_state(c,d),!1;for(i in c)c.hasOwnProperty(i)&&"core"!==i&&-1===a.inArray(i,this.settings.plugins)&&delete c[i];if(a.isEmptyObject(c.core))return delete c.core,this.set_state(c,d),!1}return a.isEmptyObject(c)?(c=null,d&&d.call(this),this.trigger("set_state"),!1):!0}return!1},refresh:function(b,c){this._data.core.state=c===!0?{}:this.get_state(),c&&a.isFunction(c)&&(this._data.core.state=c.call(this,this._data.core.state)),this._cnt=0,this._model.data={},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this._data.core.selected=[],this._data.core.last_clicked=null,this._data.core.focused=null;var d=this.get_container_ul()[0].className;b||(this.element.html("<ul class='"+d+"' role='group'><li class='jstree-initial-node jstree-loading jstree-leaf jstree-last' role='treeitem' id='j"+this._id+"_loading'><i class='jstree-icon jstree-ocl'></i><a class='jstree-anchor' href='#'><i class='jstree-icon jstree-themeicon-hidden'></i>"+this.get_string("Loading ...")+"</a></li></ul>"),this.element.attr("aria-activedescendant","j"+this._id+"_loading")),this.load_node(a.jstree.root,function(b,c){c&&(this.get_container_ul()[0].className=d,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.set_state(a.extend(!0,{},this._data.core.state),function(){this.trigger("refresh")})),this._data.core.state=null})},refresh_node:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c=[],d=[],e=this._data.core.selected.concat([]);d.push(b.id),b.state.opened===!0&&c.push(b.id),this.get_node(b,!0).find(".jstree-open").each(function(){d.push(this.id),c.push(this.id)}),this._load_nodes(d,a.proxy(function(a){this.open_node(c,!1,0),this.select_node(e),this.trigger("refresh_node",{node:b,nodes:a})},this),!1,!0)},set_id:function(b,c){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var d,e,f=this._model.data,g=b.id;for(c=c.toString(),f[b.parent].children[a.inArray(b.id,f[b.parent].children)]=c,d=0,e=b.parents.length;e>d;d++)f[b.parents[d]].children_d[a.inArray(b.id,f[b.parents[d]].children_d)]=c;for(d=0,e=b.children.length;e>d;d++)f[b.children[d]].parent=c;for(d=0,e=b.children_d.length;e>d;d++)f[b.children_d[d]].parents[a.inArray(b.id,f[b.children_d[d]].parents)]=c;return d=a.inArray(b.id,this._data.core.selected),-1!==d&&(this._data.core.selected[d]=c),d=this.get_node(b.id,!0),d&&(d.attr("id",c),this.element.attr("aria-activedescendant")===b.id&&this.element.attr("aria-activedescendant",c)),delete f[b.id],b.id=c,b.li_attr.id=c,f[c]=b,this.trigger("set_id",{node:b,"new":b.id,old:g}),!0},get_text:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.text:!1},set_text:function(b,c){var d,e;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.set_text(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.text=c,this.get_node(b,!0).length&&this.redraw_node(b.id),this.trigger("set_text",{obj:b,text:c}),!0):!1},get_json:function(b,c,d){if(b=this.get_node(b||a.jstree.root),!b)return!1;c&&c.flat&&!d&&(d=[]);var e={id:b.id,text:b.text,icon:this.get_icon(b),li_attr:a.extend(!0,{},b.li_attr),a_attr:a.extend(!0,{},b.a_attr),state:{},data:c&&c.no_data?!1:a.extend(!0,a.isArray(b.data)?[]:{},b.data)},f,g;if(c&&c.flat?e.parent=b.parent:e.children=[],c&&c.no_state)delete e.state;else for(f in b.state)b.state.hasOwnProperty(f)&&(e.state[f]=b.state[f]);if(c&&c.no_li_attr&&delete e.li_attr,c&&c.no_a_attr&&delete e.a_attr,c&&c.no_id&&(delete e.id,e.li_attr&&e.li_attr.id&&delete e.li_attr.id,e.a_attr&&e.a_attr.id&&delete e.a_attr.id),c&&c.flat&&b.id!==a.jstree.root&&d.push(e),!c||!c.no_children)for(f=0,g=b.children.length;g>f;f++)c&&c.flat?this.get_json(b.children[f],c,d):e.children.push(this.get_json(b.children[f],c));return c&&c.flat?d:b.id===a.jstree.root?e.children:e},create_node:function(c,d,e,f,g){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return!1;if(e=e===b?"last":e,!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(c))return this.load_node(c,function(){this.create_node(c,d,e,f,!0)});d||(d={text:this.get_string("New node")}),d="string"==typeof d?{text:d}:a.extend(!0,{},d),d.text===b&&(d.text=this.get_string("New node"));var h,i,j,k;switch(c.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":h=this.get_node(c.parent),e=a.inArray(c.id,h.children),c=h;break;case"after":h=this.get_node(c.parent),e=a.inArray(c.id,h.children)+1,c=h;break;case"inside":case"first":e=0;break;case"last":e=c.children.length;break;default:e||(e=0)}if(e>c.children.length&&(e=c.children.length),d.id||(d.id=!0),!this.check("create_node",d,c,e))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(d.id===!0&&delete d.id,d=this._parse_model_from_json(d,c.id,c.parents.concat()),!d)return!1;for(h=this.get_node(d),i=[],i.push(d),i=i.concat(h.children_d),this.trigger("model",{nodes:i,parent:c.id}),c.children_d=c.children_d.concat(i),j=0,k=c.parents.length;k>j;j++)this._model.data[c.parents[j]].children_d=this._model.data[c.parents[j]].children_d.concat(i);for(d=h,h=[],j=0,k=c.children.length;k>j;j++)h[j>=e?j+1:j]=c.children[j];return h[e]=d.id,c.children=h,this.redraw_node(c,!0),this.trigger("create_node",{node:this.get_node(d),parent:c.id,position:e}),f&&f.call(this,this.get_node(d)),d.id},rename_node:function(b,c){var d,e,f;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.rename_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=b.text,this.check("rename_node",b,this.get_parent(b),c)?(this.set_text(b,c),this.trigger("rename_node",{node:b,text:c,old:f}),!0):(this.settings.core.error.call(this,this._data.core.last_error),!1)):!1},delete_node:function(b){var c,d,e,f,g,h,i,j,k,l,m,n;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.delete_node(b[c]);return!0}if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;if(e=this.get_node(b.parent),f=a.inArray(b.id,e.children),l=!1,!this.check("delete_node",b,e,f))return this.settings.core.error.call(this,this._data.core.last_error),!1;for(-1!==f&&(e.children=a.vakata.array_remove(e.children,f)),g=b.children_d.concat([]),g.push(b.id),h=0,i=b.parents.length;i>h;h++)this._model.data[b.parents[h]].children_d=a.vakata.array_filter(this._model.data[b.parents[h]].children_d,function(b){return-1===a.inArray(b,g)});for(j=0,k=g.length;k>j;j++)if(this._model.data[g[j]].state.selected){l=!0;break}for(l&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(b){return-1===a.inArray(b,g)})),this.trigger("delete_node",{node:b,parent:e.id}),l&&this.trigger("changed",{action:"delete_node",node:b,selected:this._data.core.selected,parent:e.id}),j=0,k=g.length;k>j;j++)delete this._model.data[g[j]];return-1!==a.inArray(this._data.core.focused,g)&&(this._data.core.focused=null,m=this.element[0].scrollTop,n=this.element[0].scrollLeft,e.id===a.jstree.root?this._model.data[a.jstree.root].children[0]&&this.get_node(this._model.data[a.jstree.root].children[0],!0).children(".jstree-anchor").focus():this.get_node(e,!0).children(".jstree-anchor").focus(),this.element[0].scrollTop=m,this.element[0].scrollLeft=n),this.redraw_node(e,!0),!0},check:function(b,c,d,e,f){c=c&&c.id?c:this.get_node(c),d=d&&d.id?d:this.get_node(d);var g=b.match(/^move_node|copy_node|create_node$/i)?d:c,h=this.settings.core.check_callback;return"move_node"!==b&&"copy_node"!==b||f&&f.is_multi||c.id!==d.id&&("move_node"!==b||a.inArray(c.id,d.children)!==e)&&-1===a.inArray(d.id,c.children_d)?(g&&g.data&&(g=g.data),g&&g.functions&&(g.functions[b]===!1||g.functions[b]===!0)?(g.functions[b]===!1&&(this._data.core.last_error={error:"check",plugin:"core",id:"core_02",reason:"Node data prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})}),g.functions[b]):h===!1||a.isFunction(h)&&h.call(this,b,c,d,e,f)===!1||h&&h[b]===!1?(this._data.core.last_error={error:"check",plugin:"core",id:"core_03",reason:"User config for core.check_callback prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1):!0):(this._data.core.last_error={error:"check",plugin:"core",id:"core_01",reason:"Moving parent inside child",data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1)},last_error:function(){return this._data.core.last_error},move_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t,u,v,w;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.move_node(c,d,e,f,!0,!1,i)});if(a.isArray(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(r=this.move_node(c[j],d,e,f,g,!1,i))&&(d=r,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;if(l=(c.parent||a.jstree.root).toString(),n=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,o=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),p=!o||!o._id||this._id!==o._id,m=o&&o._id&&l&&o._model.data[l]&&o._model.data[l].children?a.inArray(c.id,o._model.data[l].children):-1,o&&o._id&&(c=o._model.data[c.id]),p)return(r=this.copy_node(c,d,e,f,g,!1,i))?(o&&o.delete_node(c),r):!1;switch(d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,n.children);break;case"after":e=a.inArray(d.id,n.children)+1;break;case"inside":case"first":e=0;break;case"last":e=n.children.length;break;default:e||(e=0)}if(e>n.children.length&&(e=n.children.length),!this.check("move_node",c,n,e,{core:!0,origin:i,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(c.parent===n.id){for(q=n.children.concat(),r=a.inArray(c.id,q),-1!==r&&(q=a.vakata.array_remove(q,r),e>r&&e--),r=[],s=0,t=q.length;t>s;s++)r[s>=e?s+1:s]=q[s];r[e]=c.id,n.children=r,this._node_changed(n.id),this.redraw(n.id===a.jstree.root)}else{for(r=c.children_d.concat(),r.push(c.id),s=0,t=c.parents.length;t>s;s++){for(q=[],w=o._model.data[c.parents[s]].children_d,u=0,v=w.length;v>u;u++)-1===a.inArray(w[u],r)&&q.push(w[u]);o._model.data[c.parents[s]].children_d=q}for(o._model.data[l].children=a.vakata.array_remove_item(o._model.data[l].children,c.id),s=0,t=n.parents.length;t>s;s++)this._model.data[n.parents[s]].children_d=this._model.data[n.parents[s]].children_d.concat(r);for(q=[],s=0,t=n.children.length;t>s;s++)q[s>=e?s+1:s]=n.children[s];for(q[e]=c.id,n.children=q,n.children_d.push(c.id),n.children_d=n.children_d.concat(c.children_d),c.parent=n.id,r=n.parents.concat(),r.unshift(n.id),w=c.parents.length,c.parents=r,r=r.concat(),s=0,t=c.children_d.length;t>s;s++)this._model.data[c.children_d[s]].parents=this._model.data[c.children_d[s]].parents.slice(0,-1*w),Array.prototype.push.apply(this._model.data[c.children_d[s]].parents,r);(l===a.jstree.root||n.id===a.jstree.root)&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||(this._node_changed(l),this._node_changed(n.id)),h||this.redraw()}return f&&f.call(this,c,n,e),this.trigger("move_node",{node:c,parent:n.id,position:e,old_parent:l,old_position:m,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id,old_instance:o,new_instance:this}),c.id},copy_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.copy_node(c,d,e,f,!0,!1,i)});if(a.isArray(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(m=this.copy_node(c[j],d,e,f,g,!0,i))&&(d=m,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;switch(q=(c.parent||a.jstree.root).toString(),r=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,s=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),t=!s||!s._id||this._id!==s._id,s&&s._id&&(c=s._model.data[c.id]),d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,r.children);break;case"after":e=a.inArray(d.id,r.children)+1;break;case"inside":case"first":e=0;break;case"last":e=r.children.length;break;default:e||(e=0)}if(e>r.children.length&&(e=r.children.length),!this.check("copy_node",c,r,e,{core:!0,origin:i,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(p=s?s.get_json(c,{no_id:!0,no_data:!0,no_state:!0}):c,!p)return!1;if(p.id===!0&&delete p.id,p=this._parse_model_from_json(p,r.id,r.parents.concat()),!p)return!1;for(m=this.get_node(p),c&&c.state&&c.state.loaded===!1&&(m.state.loaded=!1),l=[],l.push(p),l=l.concat(m.children_d),this.trigger("model",{nodes:l,parent:r.id}),n=0,o=r.parents.length;o>n;n++)this._model.data[r.parents[n]].children_d=this._model.data[r.parents[n]].children_d.concat(l);for(l=[],n=0,o=r.children.length;o>n;n++)l[n>=e?n+1:n]=r.children[n];return l[e]=m.id,r.children=l,r.children_d.push(m.id),r.children_d=r.children_d.concat(m.children_d),r.id===a.jstree.root&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||this._node_changed(r.id),h||this.redraw(r.id===a.jstree.root),f&&f.call(this,m,r,e),this.trigger("copy_node",{node:m,original:c,parent:r.id,position:e,old_parent:q,old_position:s&&s._id&&q&&s._model.data[q]&&s._model.data[q].children?a.inArray(c.id,s._model.data[q].children):-1,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id,old_instance:s,new_instance:this}),m.id},cut:function(b){if(b||(b=this._data.core.selected.concat()),a.isArray(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);return c.length?(d=c,f=this,e="move_node",void this.trigger("cut",{
|
4 |
-
node:b})):!1},copy:function(b){if(b||(b=this._data.core.selected.concat()),a.isArray(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);return c.length?(d=c,f=this,e="copy_node",void this.trigger("copy",{node:b})):!1},get_buffer:function(){return{mode:e,node:d,inst:f}},can_paste:function(){return e!==!1&&d!==!1},paste:function(a,b){return a=this.get_node(a),a&&e&&e.match(/^(copy_node|move_node)$/)&&d?(this[e](d,a,b,!1,!1,!1,f)&&this.trigger("paste",{parent:a.id,node:d,mode:e}),d=!1,e=!1,void(f=!1)):!1},clear_buffer:function(){d=!1,e=!1,f=!1,this.trigger("clear_buffer")},edit:function(b,c,d){var e,f,g,h,j,k,l,m,n,o=!1;return(b=this.get_node(b))?this.check("edit",b,this.get_parent(b))?(n=b,c="string"==typeof c?c:b.text,this.set_text(b,""),b=this._open_to(b),n.text=c,e=this._data.core.rtl,f=this.element.width(),this._data.core.focused=n.id,g=b.children(".jstree-anchor").focus(),h=a("<span>"),j=c,k=a("<div />",{css:{position:"absolute",top:"-200px",left:e?"0px":"-1000px",visibility:"hidden"}}).appendTo(i.body),l=a("<input />",{value:j,"class":"jstree-rename-input",css:{padding:"0",border:"1px solid silver","box-sizing":"border-box",display:"inline-block",height:this._data.core.li_height+"px",lineHeight:this._data.core.li_height+"px",width:"150px"},blur:a.proxy(function(c){c.stopImmediatePropagation(),c.preventDefault();var e=h.children(".jstree-rename-input"),f=e.val(),i=this.settings.core.force_text,m;""===f&&(f=j),k.remove(),h.replaceWith(g),h.remove(),j=i?j:a("<div></div>").append(a.parseHTML(j)).html(),this.set_text(b,j),m=!!this.rename_node(b,i?a("<div></div>").text(f).text():a("<div></div>").append(a.parseHTML(f)).html()),m||this.set_text(b,j),this._data.core.focused=n.id,setTimeout(a.proxy(function(){var a=this.get_node(n.id,!0);a.length&&(this._data.core.focused=n.id,a.children(".jstree-anchor").focus())},this),0),d&&d.call(this,n,m,o),l=null},this),keydown:function(a){var b=a.which;27===b&&(o=!0,this.value=j),(27===b||13===b||37===b||38===b||39===b||40===b||32===b)&&a.stopImmediatePropagation(),(27===b||13===b)&&(a.preventDefault(),this.blur())},click:function(a){a.stopImmediatePropagation()},mousedown:function(a){a.stopImmediatePropagation()},keyup:function(a){l.width(Math.min(k.text("pW"+this.value).width(),f))},keypress:function(a){return 13===a.which?!1:void 0}}),m={fontFamily:g.css("fontFamily")||"",fontSize:g.css("fontSize")||"",fontWeight:g.css("fontWeight")||"",fontStyle:g.css("fontStyle")||"",fontStretch:g.css("fontStretch")||"",fontVariant:g.css("fontVariant")||"",letterSpacing:g.css("letterSpacing")||"",wordSpacing:g.css("wordSpacing")||""},h.attr("class",g.attr("class")).append(g.contents().clone()).append(l),g.replaceWith(h),k.css(m),l.css(m).width(Math.min(k.text("pW"+l[0].value).width(),f))[0].select(),void a(i).one("mousedown.jstree touchstart.jstree dnd_start.vakata",function(b){l&&b.target!==l&&a(l).blur()})):(this.settings.core.error.call(this,this._data.core.last_error),!1):!1},set_theme:function(b,c){if(!b)return!1;if(c===!0){var d=this.settings.core.themes.dir;d||(d=a.jstree.path+"/themes"),c=d+"/"+b+"/style.css"}c&&-1===a.inArray(c,g)&&(a("head").append('<link rel="stylesheet" href="'+c+'" type="text/css" />'),g.push(c)),this._data.core.themes.name&&this.element.removeClass("jstree-"+this._data.core.themes.name),this._data.core.themes.name=b,this.element.addClass("jstree-"+b),this.element[this.settings.core.themes.responsive?"addClass":"removeClass"]("jstree-"+b+"-responsive"),this.trigger("set_theme",{theme:b})},get_theme:function(){return this._data.core.themes.name},set_theme_variant:function(a){this._data.core.themes.variant&&this.element.removeClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant),this._data.core.themes.variant=a,a&&this.element.addClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant)},get_theme_variant:function(){return this._data.core.themes.variant},show_stripes:function(){this._data.core.themes.stripes=!0,this.get_container_ul().addClass("jstree-striped"),this.trigger("show_stripes")},hide_stripes:function(){this._data.core.themes.stripes=!1,this.get_container_ul().removeClass("jstree-striped"),this.trigger("hide_stripes")},toggle_stripes:function(){this._data.core.themes.stripes?this.hide_stripes():this.show_stripes()},show_dots:function(){this._data.core.themes.dots=!0,this.get_container_ul().removeClass("jstree-no-dots"),this.trigger("show_dots")},hide_dots:function(){this._data.core.themes.dots=!1,this.get_container_ul().addClass("jstree-no-dots"),this.trigger("hide_dots")},toggle_dots:function(){this._data.core.themes.dots?this.hide_dots():this.show_dots()},show_icons:function(){this._data.core.themes.icons=!0,this.get_container_ul().removeClass("jstree-no-icons"),this.trigger("show_icons")},hide_icons:function(){this._data.core.themes.icons=!1,this.get_container_ul().addClass("jstree-no-icons"),this.trigger("hide_icons")},toggle_icons:function(){this._data.core.themes.icons?this.hide_icons():this.show_icons()},show_ellipsis:function(){this._data.core.themes.ellipsis=!0,this.get_container_ul().addClass("jstree-ellipsis"),this.trigger("show_ellipsis")},hide_ellipsis:function(){this._data.core.themes.ellipsis=!1,this.get_container_ul().removeClass("jstree-ellipsis"),this.trigger("hide_ellipsis")},toggle_ellipsis:function(){this._data.core.themes.ellipsis?this.hide_ellipsis():this.show_ellipsis()},set_icon:function(c,d){var e,f,g,h;if(a.isArray(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.set_icon(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(h=c.icon,c.icon=d===!0||null===d||d===b||""===d?!0:d,g=this.get_node(c,!0).children(".jstree-anchor").children(".jstree-themeicon"),d===!1?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),this.hide_icon(c)):d===!0||null===d||d===b||""===d?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),h===!1&&this.show_icon(c)):-1===d.indexOf("/")&&-1===d.indexOf(".")?(g.removeClass(h).css("background",""),g.addClass(d+" jstree-themeicon-custom").attr("rel",d),h===!1&&this.show_icon(c)):(g.removeClass(h).css("background",""),g.addClass("jstree-themeicon-custom").css("background","url('"+d+"') center center no-repeat").attr("rel",d),h===!1&&this.show_icon(c)),!0):!1},get_icon:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.icon:!1},hide_icon:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.hide_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(b.icon=!1,this.get_node(b,!0).children(".jstree-anchor").children(".jstree-themeicon").addClass("jstree-themeicon-hidden"),!0):!1},show_icon:function(b){var c,d,e;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.show_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(e=this.get_node(b,!0),b.icon=e.length?e.children(".jstree-anchor").children(".jstree-themeicon").attr("rel"):!0,b.icon||(b.icon=!0),e.children(".jstree-anchor").children(".jstree-themeicon").removeClass("jstree-themeicon-hidden"),!0):!1}},a.vakata={},a.vakata.attributes=function(b,c){b=a(b)[0];var d=c?{}:[];return b&&b.attributes&&a.each(b.attributes,function(b,e){-1===a.inArray(e.name.toLowerCase(),["style","contenteditable","hasfocus","tabindex"])&&null!==e.value&&""!==a.trim(e.value)&&(c?d[e.name]=e.value:d.push(e.name))}),d},a.vakata.array_unique=function(a){var c=[],d,e,f,g={};for(d=0,f=a.length;f>d;d++)g[a[d]]===b&&(c.push(a[d]),g[a[d]]=!0);return c},a.vakata.array_remove=function(a,b){return a.splice(b,1),a},a.vakata.array_remove_item=function(b,c){var d=a.inArray(c,b);return-1!==d?a.vakata.array_remove(b,d):b},a.vakata.array_filter=function(a,b,c,d,e){if(a.filter)return a.filter(b,c);d=[];for(e in a)~~e+""==e+""&&e>=0&&b.call(c,a[e],+e,a)&&d.push(a[e]);return d},a.jstree.plugins.changed=function(a,b){var c=[];this.trigger=function(a,d){var e,f;if(d||(d={}),"changed"===a.replace(".jstree","")){d.changed={selected:[],deselected:[]};var g={};for(e=0,f=c.length;f>e;e++)g[c[e]]=1;for(e=0,f=d.selected.length;f>e;e++)g[d.selected[e]]?g[d.selected[e]]=2:d.changed.selected.push(d.selected[e]);for(e=0,f=c.length;f>e;e++)1===g[c[e]]&&d.changed.deselected.push(c[e]);c=d.selected.slice()}b.trigger.call(this,a,d)},this.refresh=function(a,d){return c=[],b.refresh.apply(this,arguments)}};var j=i.createElement("I");j.className="jstree-icon jstree-checkbox",j.setAttribute("role","presentation"),a.jstree.defaults.checkbox={visible:!0,three_state:!0,whole_node:!0,keep_selected_style:!0,cascade:"",tie_selection:!0,cascade_to_disabled:!0,cascade_to_hidden:!0},a.jstree.plugins.checkbox=function(c,d){this.bind=function(){d.bind.call(this),this._data.checkbox.uto=!1,this._data.checkbox.selected=[],this.settings.checkbox.three_state&&(this.settings.checkbox.cascade="up+down+undetermined"),this.element.on("init.jstree",a.proxy(function(){this._data.checkbox.visible=this.settings.checkbox.visible,this.settings.checkbox.keep_selected_style||this.element.addClass("jstree-checkbox-no-clicked"),this.settings.checkbox.tie_selection&&this.element.addClass("jstree-checkbox-selection")},this)).on("loading.jstree",a.proxy(function(){this[this._data.checkbox.visible?"show_checkboxes":"hide_checkboxes"]()},this)),-1!==this.settings.checkbox.cascade.indexOf("undetermined")&&this.element.on("changed.jstree uncheck_node.jstree check_node.jstree uncheck_all.jstree check_all.jstree move_node.jstree copy_node.jstree redraw.jstree open_node.jstree",a.proxy(function(){this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(a.proxy(this._undetermined,this),50)},this)),this.settings.checkbox.tie_selection||this.element.on("model.jstree",a.proxy(function(a,b){var c=this._model.data,d=c[b.parent],e=b.nodes,f,g;for(f=0,g=e.length;g>f;f++)c[e[f]].state.checked=c[e[f]].state.checked||c[e[f]].original&&c[e[f]].original.state&&c[e[f]].original.state.checked,c[e[f]].state.checked&&this._data.checkbox.selected.push(e[f])},this)),(-1!==this.settings.checkbox.cascade.indexOf("up")||-1!==this.settings.checkbox.cascade.indexOf("down"))&&this.element.on("model.jstree",a.proxy(function(b,c){var d=this._model.data,e=d[c.parent],f=c.nodes,g=[],h,i,j,k,l,m,n=this.settings.checkbox.cascade,o=this.settings.checkbox.tie_selection;if(-1!==n.indexOf("down"))if(e.state[o?"selected":"checked"]){for(i=0,j=f.length;j>i;i++)d[f[i]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(f)}else for(i=0,j=f.length;j>i;i++)if(d[f[i]].state[o?"selected":"checked"]){for(k=0,l=d[f[i]].children_d.length;l>k;k++)d[d[f[i]].children_d[k]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(d[f[i]].children_d)}if(-1!==n.indexOf("up")){for(i=0,j=e.children_d.length;j>i;i++)d[e.children_d[i]].children.length||g.push(d[e.children_d[i]].parent);for(g=a.vakata.array_unique(g),k=0,l=g.length;l>k;k++){e=d[g[k]];while(e&&e.id!==a.jstree.root){for(h=0,i=0,j=e.children.length;j>i;i++)h+=d[e.children[i]].state[o?"selected":"checked"];if(h!==j)break;e.state[o?"selected":"checked"]=!0,this._data[o?"core":"checkbox"].selected.push(e.id),m=this.get_node(e,!0),m&&m.length&&m.attr("aria-selected",!0).children(".jstree-anchor").addClass(o?"jstree-clicked":"jstree-checked"),e=this.get_node(e.parent)}}}this._data[o?"core":"checkbox"].selected=a.vakata.array_unique(this._data[o?"core":"checkbox"].selected)},this)).on(this.settings.checkbox.tie_selection?"select_node.jstree":"check_node.jstree",a.proxy(function(b,c){var d=this,e=c.node,f=this._model.data,g=this.get_node(e.parent),h,i,j,k,l=this.settings.checkbox.cascade,m=this.settings.checkbox.tie_selection,n={},o=this._data[m?"core":"checkbox"].selected;for(h=0,i=o.length;i>h;h++)n[o[h]]=!0;if(-1!==l.indexOf("down")){var p=this._cascade_new_checked_state(e.id,!0),q=e.children_d.concat(e.id);for(h=0,i=q.length;i>h;h++)p.indexOf(q[h])>-1?n[q[h]]=!0:delete n[q[h]]}if(-1!==l.indexOf("up"))while(g&&g.id!==a.jstree.root){for(j=0,h=0,i=g.children.length;i>h;h++)j+=f[g.children[h]].state[m?"selected":"checked"];if(j!==i)break;g.state[m?"selected":"checked"]=!0,n[g.id]=!0,k=this.get_node(g,!0),k&&k.length&&k.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),g=this.get_node(g.parent)}o=[];for(h in n)n.hasOwnProperty(h)&&o.push(h);this._data[m?"core":"checkbox"].selected=o},this)).on(this.settings.checkbox.tie_selection?"deselect_all.jstree":"uncheck_all.jstree",a.proxy(function(b,c){var d=this.get_node(a.jstree.root),e=this._model.data,f,g,h;for(f=0,g=d.children_d.length;g>f;f++)h=e[d.children_d[f]],h&&h.original&&h.original.state&&h.original.state.undetermined&&(h.original.state.undetermined=!1)},this)).on(this.settings.checkbox.tie_selection?"deselect_node.jstree":"uncheck_node.jstree",a.proxy(function(a,b){var c=this,d=b.node,e=this.get_node(d,!0),f,g,h,i=this.settings.checkbox.cascade,j=this.settings.checkbox.tie_selection,k=this._data[j?"core":"checkbox"].selected,l={},m=[],n=d.children_d.concat(d.id);if(-1!==i.indexOf("down")){var o=this._cascade_new_checked_state(d.id,!1);k=k.filter(function(a){return-1===n.indexOf(a)||o.indexOf(a)>-1})}if(-1!==i.indexOf("up")&&-1===k.indexOf(d.id)){for(f=0,g=d.parents.length;g>f;f++)h=this._model.data[d.parents[f]],h.state[j?"selected":"checked"]=!1,h&&h.original&&h.original.state&&h.original.state.undetermined&&(h.original.state.undetermined=!1),h=this.get_node(d.parents[f],!0),h&&h.length&&h.attr("aria-selected",!1).children(".jstree-anchor").removeClass(j?"jstree-clicked":"jstree-checked");k=k.filter(function(a){return-1===d.parents.indexOf(a)})}this._data[j?"core":"checkbox"].selected=k},this)),-1!==this.settings.checkbox.cascade.indexOf("up")&&this.element.on("delete_node.jstree",a.proxy(function(b,c){var d=this.get_node(c.parent),e=this._model.data,f,g,h,i,j=this.settings.checkbox.tie_selection;while(d&&d.id!==a.jstree.root&&!d.state[j?"selected":"checked"]){for(h=0,f=0,g=d.children.length;g>f;f++)h+=e[d.children[f]].state[j?"selected":"checked"];if(!(g>0&&h===g))break;d.state[j?"selected":"checked"]=!0,this._data[j?"core":"checkbox"].selected.push(d.id),i=this.get_node(d,!0),i&&i.length&&i.attr("aria-selected",!0).children(".jstree-anchor").addClass(j?"jstree-clicked":"jstree-checked"),d=this.get_node(d.parent)}},this)).on("move_node.jstree",a.proxy(function(b,c){var d=c.is_multi,e=c.old_parent,f=this.get_node(c.parent),g=this._model.data,h,i,j,k,l,m=this.settings.checkbox.tie_selection;if(!d){h=this.get_node(e);while(h&&h.id!==a.jstree.root&&!h.state[m?"selected":"checked"]){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(!(k>0&&i===k))break;h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),h=this.get_node(h.parent)}}h=f;while(h&&h.id!==a.jstree.root){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(i===k)h.state[m?"selected":"checked"]||(h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"));else{if(!h.state[m?"selected":"checked"])break;h.state[m?"selected":"checked"]=!1,this._data[m?"core":"checkbox"].selected=a.vakata.array_remove_item(this._data[m?"core":"checkbox"].selected,h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(m?"jstree-clicked":"jstree-checked")}h=this.get_node(h.parent)}},this))},this.get_undetermined=function(c){if(-1===this.settings.checkbox.cascade.indexOf("undetermined"))return[];var d,e,f,g,h={},i=this._model.data,j=this.settings.checkbox.tie_selection,k=this._data[j?"core":"checkbox"].selected,l=[],m=this,n=[];for(d=0,e=k.length;e>d;d++)if(i[k[d]]&&i[k[d]].parents)for(f=0,g=i[k[d]].parents.length;g>f;f++){if(h[i[k[d]].parents[f]]!==b)break;i[k[d]].parents[f]!==a.jstree.root&&(h[i[k[d]].parents[f]]=!0,l.push(i[k[d]].parents[f]))}for(this.element.find(".jstree-closed").not(":has(.jstree-children)").each(function(){var c=m.get_node(this),j;if(c)if(c.state.loaded){for(d=0,e=c.children_d.length;e>d;d++)if(j=i[c.children_d[d]],!j.state.loaded&&j.original&&j.original.state&&j.original.state.undetermined&&j.original.state.undetermined===!0)for(h[j.id]===b&&j.id!==a.jstree.root&&(h[j.id]=!0,l.push(j.id)),f=0,g=j.parents.length;g>f;f++)h[j.parents[f]]===b&&j.parents[f]!==a.jstree.root&&(h[j.parents[f]]=!0,l.push(j.parents[f]))}else if(c.original&&c.original.state&&c.original.state.undetermined&&c.original.state.undetermined===!0)for(h[c.id]===b&&c.id!==a.jstree.root&&(h[c.id]=!0,l.push(c.id)),f=0,g=c.parents.length;g>f;f++)h[c.parents[f]]===b&&c.parents[f]!==a.jstree.root&&(h[c.parents[f]]=!0,l.push(c.parents[f]))}),d=0,e=l.length;e>d;d++)i[l[d]].state[j?"selected":"checked"]||n.push(c?i[l[d]]:l[d]);return n},this._undetermined=function(){if(null!==this.element){var a=this.get_undetermined(!1),b,c,d;for(this.element.find(".jstree-undetermined").removeClass("jstree-undetermined"),b=0,c=a.length;c>b;b++)d=this.get_node(a[b],!0),d&&d.length&&d.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-undetermined")}},this.redraw_node=function(b,c,e,f){if(b=d.redraw_node.apply(this,arguments)){var g,h,i=null,k=null;for(g=0,h=b.childNodes.length;h>g;g++)if(b.childNodes[g]&&b.childNodes[g].className&&-1!==b.childNodes[g].className.indexOf("jstree-anchor")){i=b.childNodes[g];break}i&&(!this.settings.checkbox.tie_selection&&this._model.data[b.id].state.checked&&(i.className+=" jstree-checked"),k=j.cloneNode(!1),this._model.data[b.id].state.checkbox_disabled&&(k.className+=" jstree-checkbox-disabled"),i.insertBefore(k,i.childNodes[0]))}return e||-1===this.settings.checkbox.cascade.indexOf("undetermined")||(this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(a.proxy(this._undetermined,this),50)),b},this.show_checkboxes=function(){this._data.core.themes.checkboxes=!0,this.get_container_ul().removeClass("jstree-no-checkboxes")},this.hide_checkboxes=function(){this._data.core.themes.checkboxes=!1,this.get_container_ul().addClass("jstree-no-checkboxes")},this.toggle_checkboxes=function(){this._data.core.themes.checkboxes?this.hide_checkboxes():this.show_checkboxes()},this.is_undetermined=function(b){b=this.get_node(b);var c=this.settings.checkbox.cascade,d,e,f=this.settings.checkbox.tie_selection,g=this._data[f?"core":"checkbox"].selected,h=this._model.data;if(!b||b.state[f?"selected":"checked"]===!0||-1===c.indexOf("undetermined")||-1===c.indexOf("down")&&-1===c.indexOf("up"))return!1;if(!b.state.loaded&&b.original.state.undetermined===!0)return!0;for(d=0,e=b.children_d.length;e>d;d++)if(-1!==a.inArray(b.children_d[d],g)||!h[b.children_d[d]].state.loaded&&h[b.children_d[d]].original.state.undetermined)return!0;return!1},this.disable_checkbox=function(b){var c,d,e;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled||(b.state.checkbox_disabled=!0,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-checkbox-disabled"),this.trigger("disable_checkbox",{node:b})))):!1},this.enable_checkbox=function(b){var c,d,e;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled&&(b.state.checkbox_disabled=!1,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").removeClass("jstree-checkbox-disabled"),this.trigger("enable_checkbox",{node:b})))):!1},this.activate_node=function(b,c){return a(c.target).hasClass("jstree-checkbox-disabled")?!1:(this.settings.checkbox.tie_selection&&(this.settings.checkbox.whole_node||a(c.target).hasClass("jstree-checkbox"))&&(c.ctrlKey=!0),this.settings.checkbox.tie_selection||!this.settings.checkbox.whole_node&&!a(c.target).hasClass("jstree-checkbox")?d.activate_node.call(this,b,c):this.is_disabled(b)?!1:(this.is_checked(b)?this.uncheck_node(b,c):this.check_node(b,c),void this.trigger("activate_node",{node:this.get_node(b)})))},this._cascade_new_checked_state=function(a,b){var c=this,d=this.settings.checkbox.tie_selection,e=this._model.data[a],f=[],g=[],h,i,j;if(!this.settings.checkbox.cascade_to_disabled&&e.state.disabled||!this.settings.checkbox.cascade_to_hidden&&e.state.hidden)j=this.get_checked_descendants(a),e.state[d?"selected":"checked"]&&j.push(e.id),f=f.concat(j);else{if(e.children)for(h=0,i=e.children.length;i>h;h++){var k=e.children[h];j=c._cascade_new_checked_state(k,b),f=f.concat(j),j.indexOf(k)>-1&&g.push(k)}var l=c.get_node(e,!0),m=g.length>0&&g.length<e.children.length;e.original&&e.original.state&&e.original.state.undetermined&&(e.original.state.undetermined=m),m?(e.state[d?"selected":"checked"]=!1,l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(d?"jstree-clicked":"jstree-checked")):b&&g.length===e.children.length?(e.state[d?"selected":"checked"]=b,f.push(e.id),l.attr("aria-selected",!0).children(".jstree-anchor").addClass(d?"jstree-clicked":"jstree-checked")):(e.state[d?"selected":"checked"]=!1,l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(d?"jstree-clicked":"jstree-checked"))}return f},this.get_checked_descendants=function(a){var b=this,c=b.settings.checkbox.tie_selection,d=b._model.data[a];return d.children_d.filter(function(a){return b._model.data[a].state[c?"selected":"checked"]})},this.check_node=function(b,c){if(this.settings.checkbox.tie_selection)return this.select_node(b,!1,!0,c);var d,e,f,g;if(a.isArray(b)){for(b=b.slice(),e=0,f=b.length;f>e;e++)this.check_node(b[e],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(d=this.get_node(b,!0),void(b.state.checked||(b.state.checked=!0,this._data.checkbox.selected.push(b.id),d&&d.length&&d.children(".jstree-anchor").addClass("jstree-checked"),this.trigger("check_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.uncheck_node=function(b,c){if(this.settings.checkbox.tie_selection)return this.deselect_node(b,!1,c);var d,e,f;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.uncheck_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.checked&&(b.state.checked=!1,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,b.id),f.length&&f.children(".jstree-anchor").removeClass("jstree-checked"),this.trigger("uncheck_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.check_all=function(){if(this.settings.checkbox.tie_selection)return this.select_all();var b=this._data.checkbox.selected.concat([]),c,d;for(this._data.checkbox.selected=this._model.data[a.jstree.root].children_d.concat(),c=0,d=this._data.checkbox.selected.length;d>c;c++)this._model.data[this._data.checkbox.selected[c]]&&(this._model.data[this._data.checkbox.selected[c]].state.checked=!0);this.redraw(!0),this.trigger("check_all",{selected:this._data.checkbox.selected})},this.uncheck_all=function(){if(this.settings.checkbox.tie_selection)return this.deselect_all();var a=this._data.checkbox.selected.concat([]),b,c;for(b=0,c=this._data.checkbox.selected.length;c>b;b++)this._model.data[this._data.checkbox.selected[b]]&&(this._model.data[this._data.checkbox.selected[b]].state.checked=!1);this._data.checkbox.selected=[],this.element.find(".jstree-checked").removeClass("jstree-checked"),this.trigger("uncheck_all",{selected:this._data.checkbox.selected,node:a})},this.is_checked=function(b){return this.settings.checkbox.tie_selection?this.is_selected(b):(b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.checked:!1)},this.get_checked=function(b){return this.settings.checkbox.tie_selection?this.get_selected(b):b?a.map(this._data.checkbox.selected,a.proxy(function(a){return this.get_node(a)},this)):this._data.checkbox.selected},this.get_top_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_top_selected(b);var c=this.get_checked(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,a.proxy(function(a){return this.get_node(a)},this)):c},this.get_bottom_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_bottom_selected(b);var c=this.get_checked(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,a.proxy(function(a){return this.get_node(a)},this)):d},this.load_node=function(b,c){var e,f,g,h,i,j;if(!a.isArray(b)&&!this.settings.checkbox.tie_selection&&(j=this.get_node(b),j&&j.state.loaded))for(e=0,f=j.children_d.length;f>e;e++)this._model.data[j.children_d[e]].state.checked&&(i=!0,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,j.children_d[e]));return d.load_node.apply(this,arguments)},this.get_state=function(){var a=d.get_state.apply(this,arguments);return this.settings.checkbox.tie_selection?a:(a.checkbox=this._data.checkbox.selected.slice(),a)},this.set_state=function(b,c){var e=d.set_state.apply(this,arguments);if(e&&b.checkbox){if(!this.settings.checkbox.tie_selection){this.uncheck_all();var f=this;a.each(b.checkbox,function(a,b){f.check_node(b)})}return delete b.checkbox,this.set_state(b,c),!1}return e},this.refresh=function(a,b){return this.settings.checkbox.tie_selection&&(this._data.checkbox.selected=[]),d.refresh.apply(this,arguments)}},a.jstree.defaults.conditionalselect=function(){return!0},a.jstree.plugins.conditionalselect=function(a,b){this.activate_node=function(a,c){return this.settings.conditionalselect.call(this,this.get_node(a),c)?b.activate_node.call(this,a,c):void 0}},a.jstree.defaults.contextmenu={select_node:!0,show_at_node:!0,items:function(b,c){return{create:{separator_before:!1,separator_after:!0,_disabled:!1,label:"Create",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.create_node(d,{},"last",function(a){try{c.edit(a)}catch(b){setTimeout(function(){c.edit(a)},0)}})}},rename:{separator_before:!1,separator_after:!1,_disabled:!1,label:"Rename",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.edit(d)}},remove:{separator_before:!1,icon:!1,separator_after:!1,_disabled:!1,label:"Delete",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.delete_node(c.get_selected()):c.delete_node(d)}},ccp:{separator_before:!0,icon:!1,separator_after:!1,label:"Edit",action:!1,submenu:{cut:{separator_before:!1,separator_after:!1,label:"Cut",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.cut(c.get_top_selected()):c.cut(d)}},copy:{separator_before:!1,icon:!1,separator_after:!1,label:"Copy",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.copy(c.get_top_selected()):c.copy(d)}},paste:{separator_before:!1,icon:!1,_disabled:function(b){return!a.jstree.reference(b.reference).can_paste()},separator_after:!1,label:"Paste",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.paste(d)}}}}}}},a.jstree.plugins.contextmenu=function(c,d){this.bind=function(){d.bind.call(this);var b=0,c=null,e,f;this.element.on("init.jstree loading.jstree ready.jstree",a.proxy(function(){this.get_container_ul().addClass("jstree-contextmenu")},this)).on("contextmenu.jstree",".jstree-anchor",a.proxy(function(a,d){"input"!==a.target.tagName.toLowerCase()&&(a.preventDefault(),b=a.ctrlKey?+new Date:0,(d||c)&&(b=+new Date+1e4),c&&clearTimeout(c),this.is_loading(a.currentTarget)||this.show_contextmenu(a.currentTarget,a.pageX,a.pageY,a))},this)).on("click.jstree",".jstree-anchor",a.proxy(function(c){this._data.contextmenu.visible&&(!b||+new Date-b>250)&&a.vakata.context.hide(),b=0},this)).on("touchstart.jstree",".jstree-anchor",function(b){b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(e=b.originalEvent.changedTouches[0].clientX,f=b.originalEvent.changedTouches[0].clientY,c=setTimeout(function(){a(b.currentTarget).trigger("contextmenu",!0)},750))}).on("touchmove.vakata.jstree",function(b){c&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(Math.abs(e-b.originalEvent.changedTouches[0].clientX)>10||Math.abs(f-b.originalEvent.changedTouches[0].clientY)>10)&&(clearTimeout(c),a.vakata.context.hide())}).on("touchend.vakata.jstree",function(a){c&&clearTimeout(c)}),a(i).on("context_hide.vakata.jstree",a.proxy(function(b,c){this._data.contextmenu.visible=!1,a(c.reference).removeClass("jstree-context")},this))},this.teardown=function(){this._data.contextmenu.visible&&a.vakata.context.hide(),d.teardown.call(this)},this.show_contextmenu=function(c,d,e,f){if(c=this.get_node(c),!c||c.id===a.jstree.root)return!1;var g=this.settings.contextmenu,h=this.get_node(c,!0),i=h.children(".jstree-anchor"),j=!1,k=!1;(g.show_at_node||d===b||e===b)&&(j=i.offset(),d=j.left,e=j.top+this._data.core.li_height),this.settings.contextmenu.select_node&&!this.is_selected(c)&&this.activate_node(c,f),k=g.items,a.isFunction(k)&&(k=k.call(this,c,a.proxy(function(a){this._show_contextmenu(c,d,e,a)},this))),a.isPlainObject(k)&&this._show_contextmenu(c,d,e,k)},this._show_contextmenu=function(b,c,d,e){var f=this.get_node(b,!0),g=f.children(".jstree-anchor");a(i).one("context_show.vakata.jstree",a.proxy(function(b,c){var d="jstree-contextmenu jstree-"+this.get_theme()+"-contextmenu";a(c.element).addClass(d),g.addClass("jstree-context")},this)),this._data.contextmenu.visible=!0,a.vakata.context.show(g,{x:c,y:d},e),this.trigger("show_contextmenu",{node:b,x:c,y:d})}},function(a){var b=!1,c={element:!1,reference:!1,position_x:0,position_y:0,items:[],html:"",is_visible:!1};a.vakata.context={settings:{hide_onmouseleave:0,icons:!0},_trigger:function(b){a(i).triggerHandler("context_"+b+".vakata",{reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}})},_execute:function(b){return b=c.items[b],b&&(!b._disabled||a.isFunction(b._disabled)&&!b._disabled({item:b,reference:c.reference,element:c.element}))&&b.action?b.action.call(null,{item:b,reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}}):!1},_parse:function(b,d){if(!b)return!1;d||(c.html="",c.items=[]);var e="",f=!1,g;return d&&(e+="<ul>"),a.each(b,function(b,d){return d?(c.items.push(d),!f&&d.separator_before&&(e+="<li class='vakata-context-separator'><a href='#' "+(a.vakata.context.settings.icons?"":'style="margin-left:0px;"')+"> </a></li>"),f=!1,e+="<li class='"+(d._class||"")+(d._disabled===!0||a.isFunction(d._disabled)&&d._disabled({item:d,reference:c.reference,element:c.element})?" vakata-contextmenu-disabled ":"")+"' "+(d.shortcut?" data-shortcut='"+d.shortcut+"' ":"")+">",e+="<a href='#' rel='"+(c.items.length-1)+"' "+(d.title?"title='"+d.title+"'":"")+">",a.vakata.context.settings.icons&&(e+="<i ",d.icon&&(e+=-1!==d.icon.indexOf("/")||-1!==d.icon.indexOf(".")?" style='background:url(\""+d.icon+"\") center center no-repeat' ":" class='"+d.icon+"' "),e+="></i><span class='vakata-contextmenu-sep'> </span>"),e+=(a.isFunction(d.label)?d.label({item:b,reference:c.reference,element:c.element}):d.label)+(d.shortcut?' <span class="vakata-contextmenu-shortcut vakata-contextmenu-shortcut-'+d.shortcut+'">'+(d.shortcut_label||"")+"</span>":"")+"</a>",
|
5 |
d.submenu&&(g=a.vakata.context._parse(d.submenu,!0),g&&(e+=g)),e+="</li>",void(d.separator_after&&(e+="<li class='vakata-context-separator'><a href='#' "+(a.vakata.context.settings.icons?"":'style="margin-left:0px;"')+"> </a></li>",f=!0))):!0}),e=e.replace(/<li class\='vakata-context-separator'\><\/li\>$/,""),d&&(e+="</ul>"),d||(c.html=e,a.vakata.context._trigger("parse")),e.length>10?e:!1},_show_submenu:function(c){if(c=a(c),c.length&&c.children("ul").length){var d=c.children("ul"),e=c.offset().left,f=e+c.outerWidth(),g=c.offset().top,h=d.width(),i=d.height(),j=a(window).width()+a(window).scrollLeft(),k=a(window).height()+a(window).scrollTop();b?c[f-(h+10+c.outerWidth())<0?"addClass":"removeClass"]("vakata-context-left"):c[f+h>j&&e>j-f?"addClass":"removeClass"]("vakata-context-right"),g+i+10>k&&d.css("bottom","-1px"),c.hasClass("vakata-context-right")?h>e&&d.css("margin-right",e-h):h>j-f&&d.css("margin-left",j-f-h),d.show()}},show:function(d,e,f){var g,h,j,k,l,m,n,o,p=!0;switch(c.element&&c.element.length&&c.element.width(""),p){case!e&&!d:return!1;case!!e&&!!d:c.reference=d,c.position_x=e.x,c.position_y=e.y;break;case!e&&!!d:c.reference=d,g=d.offset(),c.position_x=g.left+d.outerHeight(),c.position_y=g.top;break;case!!e&&!d:c.position_x=e.x,c.position_y=e.y}d&&!f&&a(d).data("vakata_contextmenu")&&(f=a(d).data("vakata_contextmenu")),a.vakata.context._parse(f)&&c.element.html(c.html),c.items.length&&(c.element.appendTo(i.body),h=c.element,j=c.position_x,k=c.position_y,l=h.width(),m=h.height(),n=a(window).width()+a(window).scrollLeft(),o=a(window).height()+a(window).scrollTop(),b&&(j-=h.outerWidth()-a(d).outerWidth(),j<a(window).scrollLeft()+20&&(j=a(window).scrollLeft()+20)),j+l+20>n&&(j=n-(l+20)),k+m+20>o&&(k=o-(m+20)),c.element.css({left:j,top:k}).show().find("a").first().focus().parent().addClass("vakata-context-hover"),c.is_visible=!0,a.vakata.context._trigger("show"))},hide:function(){c.is_visible&&(c.element.hide().find("ul").hide().end().find(":focus").blur().end().detach(),c.is_visible=!1,a.vakata.context._trigger("hide"))}},a(function(){b="rtl"===a(i.body).css("direction");var d=!1;c.element=a("<ul class='vakata-context'></ul>"),c.element.on("mouseenter","li",function(b){b.stopImmediatePropagation(),a.contains(this,b.relatedTarget)||(d&&clearTimeout(d),c.element.find(".vakata-context-hover").removeClass("vakata-context-hover").end(),a(this).siblings().find("ul").hide().end().end().parentsUntil(".vakata-context","li").addBack().addClass("vakata-context-hover"),a.vakata.context._show_submenu(this))}).on("mouseleave","li",function(b){a.contains(this,b.relatedTarget)||a(this).find(".vakata-context-hover").addBack().removeClass("vakata-context-hover")}).on("mouseleave",function(b){a(this).find(".vakata-context-hover").removeClass("vakata-context-hover"),a.vakata.context.settings.hide_onmouseleave&&(d=setTimeout(function(b){return function(){a.vakata.context.hide()}}(this),a.vakata.context.settings.hide_onmouseleave))}).on("click","a",function(b){b.preventDefault(),a(this).blur().parent().hasClass("vakata-context-disabled")||a.vakata.context._execute(a(this).attr("rel"))===!1||a.vakata.context.hide()}).on("keydown","a",function(b){var d=null;switch(b.which){case 13:case 32:b.type="click",b.preventDefault(),a(b.currentTarget).trigger(b);break;case 37:c.is_visible&&(c.element.find(".vakata-context-hover").last().closest("li").first().find("ul").hide().find(".vakata-context-hover").removeClass("vakata-context-hover").end().end().children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 38:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").prevAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").last()),d.addClass("vakata-context-hover").children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 39:c.is_visible&&(c.element.find(".vakata-context-hover").last().children("ul").show().children("li:not(.vakata-context-separator)").removeClass("vakata-context-hover").first().addClass("vakata-context-hover").children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 40:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").nextAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").first()),d.addClass("vakata-context-hover").children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 27:a.vakata.context.hide(),b.preventDefault()}}).on("keydown",function(a){a.preventDefault();var b=c.element.find(".vakata-contextmenu-shortcut-"+a.which).parent();b.parent().not(".vakata-context-disabled")&&b.click()}),a(i).on("mousedown.vakata.jstree",function(b){c.is_visible&&c.element[0]!==b.target&&!a.contains(c.element[0],b.target)&&a.vakata.context.hide()}).on("context_show.vakata.jstree",function(a,d){c.element.find("li:has(ul)").children("a").addClass("vakata-context-parent"),b&&c.element.addClass("vakata-context-rtl").css("direction","rtl"),c.element.find("ul").hide().end()})})}(a),a.jstree.defaults.dnd={copy:!0,open_timeout:500,is_draggable:!0,check_while_dragging:!0,always_copy:!1,inside_pos:0,drag_selection:!0,touch:!0,large_drop_target:!1,large_drag_target:!1,use_html5:!1};var k,l;a.jstree.plugins.dnd=function(b,c){this.init=function(a,b){c.init.call(this,a,b),this.settings.dnd.use_html5=this.settings.dnd.use_html5&&"draggable"in i.createElement("span")},this.bind=function(){c.bind.call(this),this.element.on(this.settings.dnd.use_html5?"dragstart.jstree":"mousedown.jstree touchstart.jstree",this.settings.dnd.large_drag_target?".jstree-node":".jstree-anchor",a.proxy(function(b){if(this.settings.dnd.large_drag_target&&a(b.target).closest(".jstree-node")[0]!==b.currentTarget)return!0;if("touchstart"===b.type&&(!this.settings.dnd.touch||"selected"===this.settings.dnd.touch&&!a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").hasClass("jstree-clicked")))return!0;var c=this.get_node(b.target),d=this.is_selected(c)&&this.settings.dnd.drag_selection?this.get_top_selected().length:1,e=d>1?d+" "+this.get_string("nodes"):this.get_text(b.currentTarget);if(this.settings.core.force_text&&(e=a.vakata.html.escape(e)),c&&c.id&&c.id!==a.jstree.root&&(1===b.which||"touchstart"===b.type||"dragstart"===b.type)&&(this.settings.dnd.is_draggable===!0||a.isFunction(this.settings.dnd.is_draggable)&&this.settings.dnd.is_draggable.call(this,d>1?this.get_top_selected(!0):[c],b))){if(k={jstree:!0,origin:this,obj:this.get_node(c,!0),nodes:d>1?this.get_top_selected():[c.id]},l=b.currentTarget,!this.settings.dnd.use_html5)return this.element.trigger("mousedown.jstree"),a.vakata.dnd.start(b,k,'<div id="jstree-dnd" class="jstree-'+this.get_theme()+" jstree-"+this.get_theme()+"-"+this.get_theme_variant()+" "+(this.settings.core.themes.responsive?" jstree-dnd-responsive":"")+'"><i class="jstree-icon jstree-er"></i>'+e+'<ins class="jstree-copy" style="display:none;">+</ins></div>');a.vakata.dnd._trigger("start",b,{helper:a(),element:l,data:k})}},this)),this.settings.dnd.use_html5&&this.element.on("dragover.jstree",function(b){return b.preventDefault(),a.vakata.dnd._trigger("move",b,{helper:a(),element:l,data:k}),!1}).on("drop.jstree",a.proxy(function(b){return b.preventDefault(),a.vakata.dnd._trigger("stop",b,{helper:a(),element:l,data:k}),!1},this))},this.redraw_node=function(a,b,d,e){if(a=c.redraw_node.apply(this,arguments),a&&this.settings.dnd.use_html5)if(this.settings.dnd.large_drag_target)a.setAttribute("draggable",!0);else{var f,g,h=null;for(f=0,g=a.childNodes.length;g>f;f++)if(a.childNodes[f]&&a.childNodes[f].className&&-1!==a.childNodes[f].className.indexOf("jstree-anchor")){h=a.childNodes[f];break}h&&h.setAttribute("draggable",!0)}return a}},a(function(){var c=!1,d=!1,e=!1,f=!1,g=a('<div id="jstree-marker"> </div>').hide();a(i).on("dragover.vakata.jstree",function(b){l&&a.vakata.dnd._trigger("move",b,{helper:a(),element:l,data:k})}).on("drop.vakata.jstree",function(b){l&&(a.vakata.dnd._trigger("stop",b,{helper:a(),element:l,data:k}),l=null,k=null)}).on("dnd_start.vakata.jstree",function(a,b){c=!1,e=!1,b&&b.data&&b.data.jstree&&g.appendTo(i.body)}).on("dnd_move.vakata.jstree",function(h,i){var j=i.event.target!==e.target;if(f&&(!i.event||"dragover"!==i.event.type||j)&&clearTimeout(f),i&&i.data&&i.data.jstree&&(!i.event.target.id||"jstree-marker"!==i.event.target.id)){e=i.event;var k=a.jstree.reference(i.event.target),l=!1,m=!1,n=!1,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E;if(k&&k._data&&k._data.dnd)if(g.attr("class","jstree-"+k.get_theme()+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")),D=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey)),i.helper.children().attr("class","jstree-"+k.get_theme()+" jstree-"+k.get_theme()+"-"+k.get_theme_variant()+" "+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")).find(".jstree-copy").first()[D?"show":"hide"](),i.event.target!==k.element[0]&&i.event.target!==k.get_container_ul()[0]||0!==k.get_container_ul().children().length){if(l=k.settings.dnd.large_drop_target?a(i.event.target).closest(".jstree-node").children(".jstree-anchor"):a(i.event.target).closest(".jstree-anchor"),l&&l.length&&l.parent().is(".jstree-closed, .jstree-open, .jstree-leaf")&&(m=l.offset(),n=(i.event.pageY!==b?i.event.pageY:i.event.originalEvent.pageY)-m.top,r=l.outerHeight(),u=r/3>n?["b","i","a"]:n>r-r/3?["a","i","b"]:n>r/2?["i","a","b"]:["i","b","a"],a.each(u,function(b,e){switch(e){case"b":p=m.left-6,q=m.top,s=k.get_parent(l),t=l.parent().index();break;case"i":B=k.settings.dnd.inside_pos,C=k.get_node(l.parent()),p=m.left-2,q=m.top+r/2+1,s=C.id,t="first"===B?0:"last"===B?C.children.length:Math.min(B,C.children.length);break;case"a":p=m.left-6,q=m.top+r,s=k.get_parent(l),t=l.parent().index()+1}for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(y=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",z=t,"move_node"===y&&"a"===e&&i.data.origin&&i.data.origin===k&&s===k.get_parent(i.data.nodes[w])&&(A=k.get_node(s),z>a.inArray(i.data.nodes[w],A.children)&&(z-=1)),v=v&&(k&&k.settings&&k.settings.dnd&&k.settings.dnd.check_while_dragging===!1||k.check(y,i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],s,z,{dnd:!0,ref:k.get_node(l.parent()),pos:e,origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin})),!v){k&&k.last_error&&(d=k.last_error());break}return"i"===e&&l.parent().is(".jstree-closed")&&k.settings.dnd.open_timeout&&(!i.event||"dragover"!==i.event.type||j)&&(f&&clearTimeout(f),f=setTimeout(function(a,b){return function(){a.open_node(b)}}(k,l),k.settings.dnd.open_timeout)),v?(E=k.get_node(s,!0),E.hasClass(".jstree-dnd-parent")||(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),E.addClass("jstree-dnd-parent")),c={ins:k,par:s,pos:"i"!==e||"last"!==B||0!==t||k.is_loaded(C)?t:"last"},g.css({left:p+"px",top:q+"px"}).show(),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"),d={},u=!0,!1):void 0}),u===!0))return}else{for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(v=v&&k.check(i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],a.jstree.root,"last",{dnd:!0,ref:k.get_node(a.jstree.root),pos:"i",origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin}),!v)break;if(v)return c={ins:k,par:a.jstree.root,pos:"last"},g.hide(),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),void(i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"))}a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),c=!1,i.helper.find(".jstree-icon").removeClass("jstree-ok").addClass("jstree-er"),i.event.originalEvent&&i.event.originalEvent.dataTransfer,g.hide()}}).on("dnd_scroll.vakata.jstree",function(a,b){b&&b.data&&b.data.jstree&&(g.hide(),c=!1,e=!1,b.helper.find(".jstree-icon").first().removeClass("jstree-ok").addClass("jstree-er"))}).on("dnd_stop.vakata.jstree",function(b,h){if(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),f&&clearTimeout(f),h&&h.data&&h.data.jstree){g.hide().detach();var i,j,k=[];if(c){for(i=0,j=h.data.nodes.length;j>i;i++)k[i]=h.data.origin?h.data.origin.get_node(h.data.nodes[i]):h.data.nodes[i];c.ins[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(h.event.metaKey||h.event.ctrlKey))?"copy_node":"move_node"](k,c.par,c.pos,!1,!1,!1,h.data.origin)}else i=a(h.event.target).closest(".jstree"),i.length&&d&&d.error&&"check"===d.error&&(i=i.jstree(!0),i&&i.settings.core.error.call(this,d));e=!1,c=!1}}).on("keyup.jstree keydown.jstree",function(b,h){h=a.vakata.dnd._get(),h&&h.data&&h.data.jstree&&("keyup"===b.type&&27===b.which?(f&&clearTimeout(f),c=!1,d=!1,e=!1,f=!1,g.hide().detach(),a.vakata.dnd._clean()):(h.helper.find(".jstree-copy").first()[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(b.metaKey||b.ctrlKey))?"show":"hide"](),e&&(e.metaKey=b.metaKey,e.ctrlKey=b.ctrlKey,a.vakata.dnd._trigger("move",e))))})}),function(a){a.vakata.html={div:a("<div />"),escape:function(b){return a.vakata.html.div.text(b).html()},strip:function(b){return a.vakata.html.div.empty().append(a.parseHTML(b)).text()}};var c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1};a.vakata.dnd={settings:{scroll_speed:10,scroll_proximity:20,helper_left:5,helper_top:10,threshold:5,threshold_touch:10},_trigger:function(c,d,e){e===b&&(e=a.vakata.dnd._get()),e.event=d,a(i).triggerHandler("dnd_"+c+".vakata",e)},_get:function(){return{data:c.data,element:c.element,helper:c.helper}},_clean:function(){c.helper&&c.helper.remove(),c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1},a(i).off("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).off("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop)},_scroll:function(b){if(!c.scroll_e||!c.scroll_l&&!c.scroll_t)return c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),!1;if(!c.scroll_i)return c.scroll_i=setInterval(a.vakata.dnd._scroll,100),!1;if(b===!0)return!1;var d=c.scroll_e.scrollTop(),e=c.scroll_e.scrollLeft();c.scroll_e.scrollTop(d+c.scroll_t*a.vakata.dnd.settings.scroll_speed),c.scroll_e.scrollLeft(e+c.scroll_l*a.vakata.dnd.settings.scroll_speed),(d!==c.scroll_e.scrollTop()||e!==c.scroll_e.scrollLeft())&&a.vakata.dnd._trigger("scroll",c.scroll_e)},start:function(b,d,e){"touchstart"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag&&a.vakata.dnd.stop({});try{b.currentTarget.unselectable="on",b.currentTarget.onselectstart=function(){return!1},b.currentTarget.style&&(b.currentTarget.style.touchAction="none",b.currentTarget.style.msTouchAction="none",b.currentTarget.style.MozUserSelect="none")}catch(f){}return c.init_x=b.pageX,c.init_y=b.pageY,c.data=d,c.is_down=!0,c.element=b.currentTarget,c.target=b.target,c.is_touch="touchstart"===b.type,e!==!1&&(c.helper=a("<div id='vakata-dnd'></div>").html(e).css({display:"block",margin:"0",padding:"0",position:"absolute",top:"-2000px",lineHeight:"16px",zIndex:"10000"})),a(i).on("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).on("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop),!1},drag:function(b){if("touchmove"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_down){if(!c.is_drag){if(!(Math.abs(b.pageX-c.init_x)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)||Math.abs(b.pageY-c.init_y)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)))return;c.helper&&(c.helper.appendTo(i.body),c.helper_w=c.helper.outerWidth()),c.is_drag=!0,a(c.target).one("click.vakata",!1),a.vakata.dnd._trigger("start",b)}var d=!1,e=!1,f=!1,g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n=!1;return c.scroll_t=0,c.scroll_l=0,c.scroll_e=!1,a(a(b.target).parentsUntil("body").addBack().get().reverse()).filter(function(){return/^auto|scroll$/.test(a(this).css("overflow"))&&(this.scrollHeight>this.offsetHeight||this.scrollWidth>this.offsetWidth)}).each(function(){var d=a(this),e=d.offset();return this.scrollHeight>this.offsetHeight&&(e.top+d.height()-b.pageY<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=1),b.pageY-e.top<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=-1)),this.scrollWidth>this.offsetWidth&&(e.left+d.width()-b.pageX<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=1),b.pageX-e.left<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=-1)),c.scroll_t||c.scroll_l?(c.scroll_e=a(this),!1):void 0}),c.scroll_e||(d=a(i),e=a(window),f=d.height(),g=e.height(),h=d.width(),j=e.width(),k=d.scrollTop(),l=d.scrollLeft(),f>g&&b.pageY-k<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=-1),f>g&&g-(b.pageY-k)<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=1),h>j&&b.pageX-l<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=-1),h>j&&j-(b.pageX-l)<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=1),(c.scroll_t||c.scroll_l)&&(c.scroll_e=d)),c.scroll_e&&a.vakata.dnd._scroll(!0),c.helper&&(m=parseInt(b.pageY+a.vakata.dnd.settings.helper_top,10),n=parseInt(b.pageX+a.vakata.dnd.settings.helper_left,10),f&&m+25>f&&(m=f-50),h&&n+c.helper_w>h&&(n=h-(c.helper_w+2)),c.helper.css({left:n+"px",top:m+"px"})),a.vakata.dnd._trigger("move",b),!1}},stop:function(b){if("touchend"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag)b.target!==c.target&&a(c.target).off("click.vakata"),a.vakata.dnd._trigger("stop",b);else if("touchend"===b.type&&b.target===c.target){var d=setTimeout(function(){a(b.target).click()},100);a(b.target).one("click",function(){d&&clearTimeout(d)})}return a.vakata.dnd._clean(),!1}}}(a),a.jstree.defaults.massload=null,a.jstree.plugins.massload=function(b,c){this.init=function(a,b){this._data.massload={},c.init.call(this,a,b)},this._load_nodes=function(b,d,e,f){var g=this.settings.massload,h=JSON.stringify(b),i=[],j=this._model.data,k,l,m;if(!e){for(k=0,l=b.length;l>k;k++)(!j[b[k]]||!j[b[k]].state.loaded&&!j[b[k]].state.failed||f)&&(i.push(b[k]),m=this.get_node(b[k],!0),m&&m.length&&m.addClass("jstree-loading").attr("aria-busy",!0));if(this._data.massload={},i.length){if(a.isFunction(g))return g.call(this,i,a.proxy(function(a){var g,h;if(a)for(g in a)a.hasOwnProperty(g)&&(this._data.massload[g]=a[g]);for(g=0,h=b.length;h>g;g++)m=this.get_node(b[g],!0),m&&m.length&&m.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)},this));if("object"==typeof g&&g&&g.url)return g=a.extend(!0,{},g),a.isFunction(g.url)&&(g.url=g.url.call(this,i)),a.isFunction(g.data)&&(g.data=g.data.call(this,i)),a.ajax(g).done(a.proxy(function(a,g,h){var i,j;if(a)for(i in a)a.hasOwnProperty(i)&&(this._data.massload[i]=a[i]);for(i=0,j=b.length;j>i;i++)m=this.get_node(b[i],!0),m&&m.length&&m.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)},this)).fail(a.proxy(function(a){c._load_nodes.call(this,b,d,e,f)},this))}}return c._load_nodes.call(this,b,d,e,f)},this._load_node=function(b,d){var e=this._data.massload[b.id],f=null,g;return e?(f=this["string"==typeof e?"_append_html_data":"_append_json_data"](b,"string"==typeof e?a(a.parseHTML(e)).filter(function(){return 3!==this.nodeType}):e,function(a){d.call(this,a)}),g=this.get_node(b.id,!0),g&&g.length&&g.removeClass("jstree-loading").attr("aria-busy",!1),delete this._data.massload[b.id],f):c._load_node.call(this,b,d)}},a.jstree.defaults.search={ajax:!1,fuzzy:!1,case_sensitive:!1,show_only_matches:!1,show_only_matches_children:!1,close_opened_onclear:!0,search_leaves_only:!1,search_callback:!1},a.jstree.plugins.search=function(c,d){this.bind=function(){d.bind.call(this),this._data.search.str="",this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=!1,this._data.search.smc=!1,this._data.search.hdn=[],this.element.on("search.jstree",a.proxy(function(b,c){if(this._data.search.som&&c.res.length){var d=this._model.data,e,f,g=[],h,i;for(e=0,f=c.res.length;f>e;e++)if(d[c.res[e]]&&!d[c.res[e]].state.hidden&&(g.push(c.res[e]),g=g.concat(d[c.res[e]].parents),this._data.search.smc))for(h=0,i=d[c.res[e]].children_d.length;i>h;h++)d[d[c.res[e]].children_d[h]]&&!d[d[c.res[e]].children_d[h]].state.hidden&&g.push(d[c.res[e]].children_d[h]);g=a.vakata.array_remove_item(a.vakata.array_unique(g),a.jstree.root),this._data.search.hdn=this.hide_all(!0),this.show_node(g,!0),this.redraw(!0)}},this)).on("clear_search.jstree",a.proxy(function(a,b){this._data.search.som&&b.res.length&&(this.show_node(this._data.search.hdn,!0),this.redraw(!0))},this))},this.search=function(c,d,e,f,g,h){if(c===!1||""===a.trim(c.toString()))return this.clear_search();f=this.get_node(f),f=f&&f.id?f.id:null,c=c.toString();var i=this.settings.search,j=i.ajax?i.ajax:!1,k=this._model.data,l=null,m=[],n=[],o,p;if(this._data.search.res.length&&!g&&this.clear_search(),e===b&&(e=i.show_only_matches),h===b&&(h=i.show_only_matches_children),!d&&j!==!1)return a.isFunction(j)?j.call(this,c,a.proxy(function(b){b&&b.d&&(b=b.d),this._load_nodes(a.isArray(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})},this),f):(j=a.extend({},j),j.data||(j.data={}),j.data.str=c,f&&(j.data.inside=f),this._data.search.lastRequest&&this._data.search.lastRequest.abort(),this._data.search.lastRequest=a.ajax(j).fail(a.proxy(function(){this._data.core.last_error={error:"ajax",plugin:"search",id:"search_01",reason:"Could not load search parents",data:JSON.stringify(j)},this.settings.core.error.call(this,this._data.core.last_error)},this)).done(a.proxy(function(b){b&&b.d&&(b=b.d),this._load_nodes(a.isArray(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})},this)),this._data.search.lastRequest);if(g||(this._data.search.str=c,this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=e,this._data.search.smc=h),l=new a.vakata.search(c,!0,{caseSensitive:i.case_sensitive,fuzzy:i.fuzzy}),a.each(k[f?f:a.jstree.root].children_d,function(a,b){var d=k[b];d.text&&!d.state.hidden&&(!i.search_leaves_only||d.state.loaded&&0===d.children.length)&&(i.search_callback&&i.search_callback.call(this,c,d)||!i.search_callback&&l.search(d.text).isMatch)&&(m.push(b),n=n.concat(d.parents))}),m.length){for(n=a.vakata.array_unique(n),o=0,p=n.length;p>o;o++)n[o]!==a.jstree.root&&k[n[o]]&&this.open_node(n[o],null,0)===!0&&this._data.search.opn.push(n[o]);g?(this._data.search.dom=this._data.search.dom.add(a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #")))),this._data.search.res=a.vakata.array_unique(this._data.search.res.concat(m))):(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.res=m),this._data.search.dom.children(".jstree-anchor").addClass("jstree-search")}this.trigger("search",{nodes:this._data.search.dom,str:c,res:this._data.search.res,show_only_matches:e})},this.clear_search=function(){this.settings.search.close_opened_onclear&&this.close_node(this._data.search.opn,0),this.trigger("clear_search",{nodes:this._data.search.dom,str:this._data.search.str,res:this._data.search.res}),this._data.search.res.length&&(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(this._data.search.res,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.dom.children(".jstree-anchor").removeClass("jstree-search")),this._data.search.str="",this._data.search.res=[],this._data.search.opn=[],this._data.search.dom=a()},this.redraw_node=function(b,c,e,f){if(b=d.redraw_node.apply(this,arguments),b&&-1!==a.inArray(b.id,this._data.search.res)){var g,h,i=null;for(g=0,h=b.childNodes.length;h>g;g++)if(b.childNodes[g]&&b.childNodes[g].className&&-1!==b.childNodes[g].className.indexOf("jstree-anchor")){i=b.childNodes[g];break}i&&(i.className+=" jstree-search")}return b}},function(a){a.vakata.search=function(b,c,d){d=d||{},d=a.extend({},a.vakata.search.defaults,d),d.fuzzy!==!1&&(d.fuzzy=!0),b=d.caseSensitive?b:b.toLowerCase();var e=d.location,f=d.distance,g=d.threshold,h=b.length,i,j,k,l;return h>32&&(d.fuzzy=!1),d.fuzzy&&(i=1<<h-1,j=function(){var a={},c=0;for(c=0;h>c;c++)a[b.charAt(c)]=0;for(c=0;h>c;c++)a[b.charAt(c)]|=1<<h-c-1;return a}(),k=function(a,b){var c=a/h,d=Math.abs(e-b);return f?c+d/f:d?1:c}),l=function(a){if(a=d.caseSensitive?a:a.toLowerCase(),b===a||-1!==a.indexOf(b))return{isMatch:!0,score:0};if(!d.fuzzy)return{isMatch:!1,score:1};var c,f,l=a.length,m=g,n=a.indexOf(b,e),o,p,q=h+l,r,s,t,u,v,w=1,x=[];for(-1!==n&&(m=Math.min(k(0,n),m),n=a.lastIndexOf(b,e+h),-1!==n&&(m=Math.min(k(0,n),m))),n=-1,c=0;h>c;c++){o=0,p=q;while(p>o)k(c,e+p)<=m?o=p:q=p,p=Math.floor((q-o)/2+o);for(q=p,s=Math.max(1,e-p+1),t=Math.min(e+p,l)+h,u=new Array(t+2),u[t+1]=(1<<c)-1,f=t;f>=s;f--)if(v=j[a.charAt(f-1)],0===c?u[f]=(u[f+1]<<1|1)&v:u[f]=(u[f+1]<<1|1)&v|((r[f+1]|r[f])<<1|1)|r[f+1],u[f]&i&&(w=k(c,f-1),m>=w)){if(m=w,n=f-1,x.push(n),!(n>e))break;s=Math.max(1,2*e-n)}if(k(c+1,e)>m)break;r=u}return{isMatch:n>=0,score:w}},c===!0?{search:l}:l(c)},a.vakata.search.defaults={location:0,distance:100,threshold:.6,fuzzy:!1,caseSensitive:!1}}(a),a.jstree.defaults.sort=function(a,b){return this.get_text(a)>this.get_text(b)?1:-1},a.jstree.plugins.sort=function(b,c){this.bind=function(){c.bind.call(this),this.element.on("model.jstree",a.proxy(function(a,b){this.sort(b.parent,!0)},this)).on("rename_node.jstree create_node.jstree",a.proxy(function(a,b){this.sort(b.parent||b.node.parent,!1),this.redraw_node(b.parent||b.node.parent,!0)},this)).on("move_node.jstree copy_node.jstree",a.proxy(function(a,b){this.sort(b.parent,!1),this.redraw_node(b.parent,!0)},this))},this.sort=function(b,c){var d,e;if(b=this.get_node(b),b&&b.children&&b.children.length&&(b.children.sort(a.proxy(this.settings.sort,this)),c))for(d=0,e=b.children_d.length;e>d;d++)this.sort(b.children_d[d],!1)}};var m=!1;a.jstree.defaults.state={key:"jstree",events:"changed.jstree open_node.jstree close_node.jstree check_node.jstree uncheck_node.jstree",ttl:!1,filter:!1,preserve_loaded:!1},a.jstree.plugins.state=function(b,c){this.bind=function(){c.bind.call(this);var b=a.proxy(function(){this.element.on(this.settings.state.events,a.proxy(function(){m&&clearTimeout(m),m=setTimeout(a.proxy(function(){this.save_state()},this),100)},this)),this.trigger("state_ready")},this);this.element.on("ready.jstree",a.proxy(function(a,c){this.element.one("restore_state.jstree",b),this.restore_state()||b()},this))},this.save_state=function(){var b=this.get_state();this.settings.state.preserve_loaded||delete b.core.loaded;var c={state:b,ttl:this.settings.state.ttl,sec:+new Date};a.vakata.storage.set(this.settings.state.key,JSON.stringify(c))},this.restore_state=function(){var b=a.vakata.storage.get(this.settings.state.key);if(b)try{b=JSON.parse(b)}catch(c){return!1}return b&&b.ttl&&b.sec&&+new Date-b.sec>b.ttl?!1:(b&&b.state&&(b=b.state),b&&a.isFunction(this.settings.state.filter)&&(b=this.settings.state.filter.call(this,b)),b?(this.settings.state.preserve_loaded||delete b.core.loaded,this.element.one("set_state.jstree",function(c,d){d.instance.trigger("restore_state",{state:a.extend(!0,{},b)})}),this.set_state(b),!0):!1)},this.clear_state=function(){return a.vakata.storage.del(this.settings.state.key)}},function(a,b){a.vakata.storage={set:function(a,b){return window.localStorage.setItem(a,b)},get:function(a){return window.localStorage.getItem(a)},del:function(a){return window.localStorage.removeItem(a)}}}(a),a.jstree.defaults.types={"default":{}},a.jstree.defaults.types[a.jstree.root]={},a.jstree.plugins.types=function(c,d){this.init=function(c,e){var f,g;if(e&&e.types&&e.types["default"])for(f in e.types)if("default"!==f&&f!==a.jstree.root&&e.types.hasOwnProperty(f))for(g in e.types["default"])e.types["default"].hasOwnProperty(g)&&e.types[f][g]===b&&(e.types[f][g]=e.types["default"][g]);d.init.call(this,c,e),this._model.data[a.jstree.root].type=a.jstree.root},this.refresh=function(b,c){d.refresh.call(this,b,c),this._model.data[a.jstree.root].type=a.jstree.root},this.bind=function(){this.element.on("model.jstree",a.proxy(function(c,d){var e=this._model.data,f=d.nodes,g=this.settings.types,h,i,j="default",k;for(h=0,i=f.length;i>h;h++){if(j="default",e[f[h]].original&&e[f[h]].original.type&&g[e[f[h]].original.type]&&(j=e[f[h]].original.type),e[f[h]].data&&e[f[h]].data.jstree&&e[f[h]].data.jstree.type&&g[e[f[h]].data.jstree.type]&&(j=e[f[h]].data.jstree.type),e[f[h]].type=j,e[f[h]].icon===!0&&g[j].icon!==b&&(e[f[h]].icon=g[j].icon),g[j].li_attr!==b&&"object"==typeof g[j].li_attr)for(k in g[j].li_attr)if(g[j].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].li_attr[k]===b?e[f[h]].li_attr[k]=g[j].li_attr[k]:"class"===k&&(e[f[h]].li_attr["class"]=g[j].li_attr["class"]+" "+e[f[h]].li_attr["class"])}if(g[j].a_attr!==b&&"object"==typeof g[j].a_attr)for(k in g[j].a_attr)if(g[j].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].a_attr[k]===b?e[f[h]].a_attr[k]=g[j].a_attr[k]:"href"===k&&"#"===e[f[h]].a_attr[k]?e[f[h]].a_attr.href=g[j].a_attr.href:"class"===k&&(e[f[h]].a_attr["class"]=g[j].a_attr["class"]+" "+e[f[h]].a_attr["class"])}}e[a.jstree.root].type=a.jstree.root},this)),d.bind.call(this)},this.get_json=function(b,c,e){var f,g,h=this._model.data,i=c?a.extend(!0,{},c,{no_id:!1}):{},j=d.get_json.call(this,b,i,e);if(j===!1)return!1;if(a.isArray(j))for(f=0,g=j.length;g>f;f++)j[f].type=j[f].id&&h[j[f].id]&&h[j[f].id].type?h[j[f].id].type:"default",c&&c.no_id&&(delete j[f].id,j[f].li_attr&&j[f].li_attr.id&&delete j[f].li_attr.id,j[f].a_attr&&j[f].a_attr.id&&delete j[f].a_attr.id);else j.type=j.id&&h[j.id]&&h[j.id].type?h[j.id].type:"default",c&&c.no_id&&(j=this._delete_ids(j));return j},this._delete_ids=function(b){if(a.isArray(b)){for(var c=0,d=b.length;d>c;c++)b[c]=this._delete_ids(b[c]);return b}return delete b.id,
|
6 |
-
b.li_attr&&b.li_attr.id&&delete b.li_attr.id,b.a_attr&&b.a_attr.id&&delete b.a_attr.id,b.children&&a.isArray(b.children)&&(b.children=this._delete_ids(b.children)),b},this.check=function(c,e,f,g,h){if(d.check.call(this,c,e,f,g,h)===!1)return!1;e=e&&e.id?e:this.get_node(e),f=f&&f.id?f:this.get_node(f);var i=e&&e.id?h&&h.origin?h.origin:a.jstree.reference(e.id):null,j,k,l,m;switch(i=i&&i._model&&i._model.data?i._model.data:null,c){case"create_node":case"move_node":case"copy_node":if("move_node"!==c||-1===a.inArray(e.id,f.children)){if(j=this.get_rules(f),j.max_children!==b&&-1!==j.max_children&&j.max_children===f.children.length)return this._data.core.last_error={error:"check",plugin:"types",id:"types_01",reason:"max_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(j.valid_children!==b&&-1!==j.valid_children&&-1===a.inArray(e.type||"default",j.valid_children))return this._data.core.last_error={error:"check",plugin:"types",id:"types_02",reason:"valid_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(i&&e.children_d&&e.parents){for(k=0,l=0,m=e.children_d.length;m>l;l++)k=Math.max(k,i[e.children_d[l]].parents.length);k=k-e.parents.length+1}(0>=k||k===b)&&(k=1);do{if(j.max_depth!==b&&-1!==j.max_depth&&j.max_depth<k)return this._data.core.last_error={error:"check",plugin:"types",id:"types_03",reason:"max_depth prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;f=this.get_node(f.parent),j=this.get_rules(f),k++}while(f)}}return!0},this.get_rules=function(a){if(a=this.get_node(a),!a)return!1;var c=this.get_type(a,!0);return c.max_depth===b&&(c.max_depth=-1),c.max_children===b&&(c.max_children=-1),c.valid_children===b&&(c.valid_children=-1),c},this.get_type=function(b,c){return b=this.get_node(b),b?c?a.extend({type:b.type},this.settings.types[b.type]):b.type:!1},this.set_type=function(c,d){var e=this._model.data,f,g,h,i,j,k,l,m;if(a.isArray(c)){for(c=c.slice(),g=0,h=c.length;h>g;g++)this.set_type(c[g],d);return!0}if(f=this.settings.types,c=this.get_node(c),!f[d]||!c)return!1;if(l=this.get_node(c,!0),l&&l.length&&(m=l.children(".jstree-anchor")),i=c.type,j=this.get_icon(c),c.type=d,(j===!0||!f[i]||f[i].icon!==b&&j===f[i].icon)&&this.set_icon(c,f[d].icon!==b?f[d].icon:!0),f[i]&&f[i].li_attr!==b&&"object"==typeof f[i].li_attr)for(k in f[i].li_attr)if(f[i].li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].li_attr["class"]=(e[c.id].li_attr["class"]||"").replace(f[i].li_attr[k],""),l&&l.removeClass(f[i].li_attr[k])):e[c.id].li_attr[k]===f[i].li_attr[k]&&(e[c.id].li_attr[k]=null,l&&l.removeAttr(k))}if(f[i]&&f[i].a_attr!==b&&"object"==typeof f[i].a_attr)for(k in f[i].a_attr)if(f[i].a_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].a_attr["class"]=(e[c.id].a_attr["class"]||"").replace(f[i].a_attr[k],""),m&&m.removeClass(f[i].a_attr[k])):e[c.id].a_attr[k]===f[i].a_attr[k]&&("href"===k?(e[c.id].a_attr[k]="#",m&&m.attr("href","#")):(delete e[c.id].a_attr[k],m&&m.removeAttr(k)))}if(f[d].li_attr!==b&&"object"==typeof f[d].li_attr)for(k in f[d].li_attr)if(f[d].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].li_attr[k]===b?(e[c.id].li_attr[k]=f[d].li_attr[k],l&&("class"===k?l.addClass(f[d].li_attr[k]):l.attr(k,f[d].li_attr[k]))):"class"===k&&(e[c.id].li_attr["class"]=f[d].li_attr[k]+" "+e[c.id].li_attr["class"],l&&l.addClass(f[d].li_attr[k]))}if(f[d].a_attr!==b&&"object"==typeof f[d].a_attr)for(k in f[d].a_attr)if(f[d].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].a_attr[k]===b?(e[c.id].a_attr[k]=f[d].a_attr[k],m&&("class"===k?m.addClass(f[d].a_attr[k]):m.attr(k,f[d].a_attr[k]))):"href"===k&&"#"===e[c.id].a_attr[k]?(e[c.id].a_attr.href=f[d].a_attr.href,m&&m.attr("href",f[d].a_attr.href)):"class"===k&&(e[c.id].a_attr["class"]=f[d].a_attr["class"]+" "+e[c.id].a_attr["class"],m&&m.addClass(f[d].a_attr[k]))}return!0}},a.jstree.defaults.unique={case_sensitive:!1,trim_whitespace:!1,duplicate:function(a,b){return a+" ("+b+")"}},a.jstree.plugins.unique=function(c,d){this.check=function(b,c,e,f,g){if(d.check.call(this,b,c,e,f,g)===!1)return!1;if(c=c&&c.id?c:this.get_node(c),e=e&&e.id?e:this.get_node(e),!e||!e.children)return!0;var h="rename_node"===b?f:c.text,i=[],j=this.settings.unique.case_sensitive,k=this.settings.unique.trim_whitespace,l=this._model.data,m,n,o;for(m=0,n=e.children.length;n>m;m++)o=l[e.children[m]].text,j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),i.push(o);switch(j||(h=h.toLowerCase()),k&&(h=h.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),b){case"delete_node":return!0;case"rename_node":return o=c.text||"",j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),m=-1===a.inArray(h,i)||c.text&&o===h,m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_01",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"create_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_04",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"copy_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_02",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"move_node":return m=c.parent===e.id&&(!g||!g.is_multi)||-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_03",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m}return!0},this.create_node=function(c,e,f,g,h){if(!e||e.text===b){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return d.create_node.call(this,c,e,f,g,h);if(f=f===b?"last":f,!f.toString().match(/^(before|after)$/)&&!h&&!this.is_loaded(c))return d.create_node.call(this,c,e,f,g,h);e||(e={});var i,j,k,l,m,n=this._model.data,o=this.settings.unique.case_sensitive,p=this.settings.unique.trim_whitespace,q=this.settings.unique.duplicate,r;for(j=i=this.get_string("New node"),k=[],l=0,m=c.children.length;m>l;l++)r=n[c.children[l]].text,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),k.push(r);l=1,r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));while(-1!==a.inArray(r,k))j=q.call(this,i,++l).toString(),r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));e.text=j}return d.create_node.call(this,c,e,f,g,h)}};var n=i.createElement("DIV");if(n.setAttribute("unselectable","on"),n.setAttribute("role","presentation"),n.className="jstree-wholerow",n.innerHTML=" ",a.jstree.plugins.wholerow=function(b,c){this.bind=function(){c.bind.call(this),this.element.on("ready.jstree set_state.jstree",a.proxy(function(){this.hide_dots()},this)).on("init.jstree loading.jstree ready.jstree",a.proxy(function(){this.get_container_ul().addClass("jstree-wholerow-ul")},this)).on("deselect_all.jstree",a.proxy(function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked")},this)).on("changed.jstree",a.proxy(function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked");var c=!1,d,e;for(d=0,e=b.selected.length;e>d;d++)c=this.get_node(b.selected[d],!0),c&&c.length&&c.children(".jstree-wholerow").addClass("jstree-wholerow-clicked")},this)).on("open_node.jstree",a.proxy(function(a,b){this.get_node(b.node,!0).find(".jstree-clicked").parent().children(".jstree-wholerow").addClass("jstree-wholerow-clicked")},this)).on("hover_node.jstree dehover_node.jstree",a.proxy(function(a,b){"hover_node"===a.type&&this.is_disabled(b.node)||this.get_node(b.node,!0).children(".jstree-wholerow")["hover_node"===a.type?"addClass":"removeClass"]("jstree-wholerow-hovered")},this)).on("contextmenu.jstree",".jstree-wholerow",a.proxy(function(b){if(this._data.contextmenu){b.preventDefault();var c=a.Event("contextmenu",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey,pageX:b.pageX,pageY:b.pageY});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c)}},this)).on("click.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).focus()}).on("dblclick.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("dblclick",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).focus()}).on("click.jstree",".jstree-leaf > .jstree-ocl",a.proxy(function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).focus()},this)).on("mouseover.jstree",".jstree-wholerow, .jstree-icon",a.proxy(function(a){return a.stopImmediatePropagation(),this.is_disabled(a.currentTarget)||this.hover_node(a.currentTarget),!1},this)).on("mouseleave.jstree",".jstree-node",a.proxy(function(a){this.dehover_node(a.currentTarget)},this))},this.teardown=function(){this.settings.wholerow&&this.element.find(".jstree-wholerow").remove(),c.teardown.call(this)},this.redraw_node=function(b,d,e,f){if(b=c.redraw_node.apply(this,arguments)){var g=n.cloneNode(!0);-1!==a.inArray(b.id,this._data.core.selected)&&(g.className+=" jstree-wholerow-clicked"),this._data.core.focused&&this._data.core.focused===b.id&&(g.className+=" jstree-wholerow-hovered"),b.insertBefore(g,b.childNodes[0])}return b}},(window.customElements||i.registerElement)&&Object&&Object.create){var o=Object.create(HTMLElement.prototype);o.createdCallback=function(){var b={core:{},plugins:[]},c;for(c in a.jstree.plugins)a.jstree.plugins.hasOwnProperty(c)&&this.attributes[c]&&(b.plugins.push(c),this.getAttribute(c)&&JSON.parse(this.getAttribute(c))&&(b[c]=JSON.parse(this.getAttribute(c))));for(c in a.jstree.defaults.core)a.jstree.defaults.core.hasOwnProperty(c)&&this.attributes[c]&&(b.core[c]=JSON.parse(this.getAttribute(c))||this.getAttribute(c));a(this).jstree(b)};try{window.customElements.define("vakata-jstree",function(){},{prototype:o})}catch(p){}try{i.registerElement("vakata-jstree",{prototype:o})}catch(p){}}}});
|
1 |
+
/*! jsTree - v3.3.7 - 2018-11-06 - (MIT) */
|
2 |
+
!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a,b){"use strict";if(!a.jstree){var c=0,d=!1,e=!1,f=!1,g=[],h=a("script:last").attr("src"),i=window.document;a.jstree={version:"3.3.7",defaults:{plugins:[]},plugins:{},path:h&&-1!==h.indexOf("/")?h.replace(/\/[^\/]+$/,""):"",idregex:/[\\:&!^|()\[\]<>@*'+~#";.,=\- \/${}%?`]/g,root:"#"},a.jstree.create=function(b,d){var e=new a.jstree.core(++c),f=d;return d=a.extend(!0,{},a.jstree.defaults,d),f&&f.plugins&&(d.plugins=f.plugins),a.each(d.plugins,function(a,b){"core"!==a&&(e=e.plugin(b,d[b]))}),a(b).data("jstree",e),e.init(b,d),e},a.jstree.destroy=function(){a(".jstree:jstree").jstree("destroy"),a(i).off(".jstree")},a.jstree.core=function(a){this._id=a,this._cnt=0,this._wrk=null,this._data={core:{themes:{name:!1,dots:!1,icons:!1,ellipsis:!1},selected:[],last_error:{},working:!1,worker_queue:[],focused:null}}},a.jstree.reference=function(b){var c=null,d=null;if(!b||!b.id||b.tagName&&b.nodeType||(b=b.id),!d||!d.length)try{d=a(b)}catch(e){}if(!d||!d.length)try{d=a("#"+b.replace(a.jstree.idregex,"\\$&"))}catch(e){}return d&&d.length&&(d=d.closest(".jstree")).length&&(d=d.data("jstree"))?c=d:a(".jstree").each(function(){var d=a(this).data("jstree");return d&&d._model.data[b]?(c=d,!1):void 0}),c},a.fn.jstree=function(c){var d="string"==typeof c,e=Array.prototype.slice.call(arguments,1),f=null;return c!==!0||this.length?(this.each(function(){var g=a.jstree.reference(this),h=d&&g?g[c]:null;return f=d&&h?h.apply(g,e):null,g||d||c!==b&&!a.isPlainObject(c)||a.jstree.create(this,c),(g&&!d||c===!0)&&(f=g||!1),null!==f&&f!==b?!1:void 0}),null!==f&&f!==b?f:this):!1},a.expr.pseudos.jstree=a.expr.createPseudo(function(c){return function(c){return a(c).hasClass("jstree")&&a(c).data("jstree")!==b}}),a.jstree.defaults.core={data:!1,strings:!1,check_callback:!1,error:a.noop,animation:200,multiple:!0,themes:{name:!1,url:!1,dir:!1,dots:!0,icons:!0,ellipsis:!1,stripes:!1,variant:!1,responsive:!1},expand_selected_onload:!0,worker:!0,force_text:!1,dblclick_toggle:!0,loaded_state:!1,restore_focus:!0,keyboard:{"ctrl-space":function(b){b.type="click",a(b.currentTarget).trigger(b)},enter:function(b){b.type="click",a(b.currentTarget).trigger(b)},left:function(b){if(b.preventDefault(),this.is_open(b.currentTarget))this.close_node(b.currentTarget);else{var c=this.get_parent(b.currentTarget);c&&c.id!==a.jstree.root&&this.get_node(c,!0).children(".jstree-anchor").focus()}},up:function(a){a.preventDefault();var b=this.get_prev_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").focus()},right:function(b){if(b.preventDefault(),this.is_closed(b.currentTarget))this.open_node(b.currentTarget,function(a){this.get_node(a,!0).children(".jstree-anchor").focus()});else if(this.is_open(b.currentTarget)){var c=this.get_node(b.currentTarget,!0).children(".jstree-children")[0];c&&a(this._firstChild(c)).children(".jstree-anchor").focus()}},down:function(a){a.preventDefault();var b=this.get_next_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").focus()},"*":function(a){this.open_all()},home:function(b){b.preventDefault();var c=this._firstChild(this.get_container_ul()[0]);c&&a(c).children(".jstree-anchor").filter(":visible").focus()},end:function(a){a.preventDefault(),this.element.find(".jstree-anchor").filter(":visible").last().focus()},f2:function(a){a.preventDefault(),this.edit(a.currentTarget)}}},a.jstree.core.prototype={plugin:function(b,c){var d=a.jstree.plugins[b];return d?(this._data[b]={},d.prototype=this,new d(c,this)):this},init:function(b,c){this._model={data:{},changed:[],force_full_redraw:!1,redraw_timeout:!1,default_state:{loaded:!0,opened:!1,selected:!1,disabled:!1}},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this.element=a(b).addClass("jstree jstree-"+this._id),this.settings=c,this._data.core.ready=!1,this._data.core.loaded=!1,this._data.core.rtl="rtl"===this.element.css("direction"),this.element[this._data.core.rtl?"addClass":"removeClass"]("jstree-rtl"),this.element.attr("role","tree"),this.settings.core.multiple&&this.element.attr("aria-multiselectable",!0),this.element.attr("tabindex")||this.element.attr("tabindex","0"),this.bind(),this.trigger("init"),this._data.core.original_container_html=this.element.find(" > ul > li").clone(!0),this._data.core.original_container_html.find("li").addBack().contents().filter(function(){return 3===this.nodeType&&(!this.nodeValue||/^\s+$/.test(this.nodeValue))}).remove(),this.element.html("<ul class='jstree-container-ul jstree-children' role='group'><li id='j"+this._id+"_loading' class='jstree-initial-node jstree-loading jstree-leaf jstree-last' role='tree-item'><i class='jstree-icon jstree-ocl'></i><a class='jstree-anchor' href='#'><i class='jstree-icon jstree-themeicon-hidden'></i>"+this.get_string("Loading ...")+"</a></li></ul>"),this.element.attr("aria-activedescendant","j"+this._id+"_loading"),this._data.core.li_height=this.get_container_ul().children("li").first().outerHeight()||24,this._data.core.node=this._create_prototype_node(),this.trigger("loading"),this.load_node(a.jstree.root)},destroy:function(a){if(this.trigger("destroy"),this._wrk)try{window.URL.revokeObjectURL(this._wrk),this._wrk=null}catch(b){}a||this.element.empty(),this.teardown()},_create_prototype_node:function(){var a=i.createElement("LI"),b,c;return a.setAttribute("role","treeitem"),b=i.createElement("I"),b.className="jstree-icon jstree-ocl",b.setAttribute("role","presentation"),a.appendChild(b),b=i.createElement("A"),b.className="jstree-anchor",b.setAttribute("href","#"),b.setAttribute("tabindex","-1"),c=i.createElement("I"),c.className="jstree-icon jstree-themeicon",c.setAttribute("role","presentation"),b.appendChild(c),a.appendChild(b),b=c=null,a},_kbevent_to_func:function(a){var b={8:"Backspace",9:"Tab",13:"Return",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"Numlock",145:"Scrolllock",16:"Shift",17:"Ctrl",18:"Alt",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*",173:"-"},c=[];a.ctrlKey&&c.push("ctrl"),a.altKey&&c.push("alt"),a.shiftKey&&c.push("shift"),c.push(b[a.which]||a.which),c=c.sort().join("-").toLowerCase();var d=this.settings.core.keyboard,e,f;for(e in d)if(d.hasOwnProperty(e)&&(f=e,"-"!==f&&"+"!==f&&(f=f.replace("--","-MINUS").replace("+-","-MINUS").replace("++","-PLUS").replace("-+","-PLUS"),f=f.split(/-|\+/).sort().join("-").replace("MINUS","-").replace("PLUS","+").toLowerCase()),f===c))return d[e];return null},teardown:function(){this.unbind(),this.element.removeClass("jstree").removeData("jstree").find("[class^='jstree']").addBack().attr("class",function(){return this.className.replace(/jstree[^ ]*|$/gi,"")}),this.element=null},bind:function(){var b="",c=null,d=0;this.element.on("dblclick.jstree",function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;if(i.selection&&i.selection.empty)i.selection.empty();else if(window.getSelection){var b=window.getSelection();try{b.removeAllRanges(),b.collapse()}catch(c){}}}).on("mousedown.jstree",a.proxy(function(a){a.target===this.element[0]&&(a.preventDefault(),d=+new Date)},this)).on("mousedown.jstree",".jstree-ocl",function(a){a.preventDefault()}).on("click.jstree",".jstree-ocl",a.proxy(function(a){this.toggle_node(a.target)},this)).on("dblclick.jstree",".jstree-anchor",a.proxy(function(a){return a.target.tagName&&"input"===a.target.tagName.toLowerCase()?!0:void(this.settings.core.dblclick_toggle&&this.toggle_node(a.target))},this)).on("click.jstree",".jstree-anchor",a.proxy(function(b){b.preventDefault(),b.currentTarget!==i.activeElement&&a(b.currentTarget).focus(),this.activate_node(b.currentTarget,b)},this)).on("keydown.jstree",".jstree-anchor",a.proxy(function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;this._data.core.rtl&&(37===a.which?a.which=39:39===a.which&&(a.which=37));var b=this._kbevent_to_func(a);if(b){var c=b.call(this,a);if(c===!1||c===!0)return c}},this)).on("load_node.jstree",a.proxy(function(b,c){c.status&&(c.node.id!==a.jstree.root||this._data.core.loaded||(this._data.core.loaded=!0,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.trigger("loaded")),this._data.core.ready||setTimeout(a.proxy(function(){if(this.element&&!this.get_container_ul().find(".jstree-loading").length){if(this._data.core.ready=!0,this._data.core.selected.length){if(this.settings.core.expand_selected_onload){var b=[],c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)b=b.concat(this._model.data[this._data.core.selected[c]].parents);for(b=a.vakata.array_unique(b),c=0,d=b.length;d>c;c++)this.open_node(b[c],!1,0)}this.trigger("changed",{action:"ready",selected:this._data.core.selected})}this.trigger("ready")}},this),0))},this)).on("keypress.jstree",a.proxy(function(d){if(d.target.tagName&&"input"===d.target.tagName.toLowerCase())return!0;c&&clearTimeout(c),c=setTimeout(function(){b=""},500);var e=String.fromCharCode(d.which).toLowerCase(),f=this.element.find(".jstree-anchor").filter(":visible"),g=f.index(i.activeElement)||0,h=!1;if(b+=e,b.length>1){if(f.slice(g).each(a.proxy(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).focus(),h=!0,!1):void 0},this)),h)return;if(f.slice(0,g).each(a.proxy(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).focus(),h=!0,!1):void 0},this)),h)return}if(new RegExp("^"+e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")+"+$").test(b)){if(f.slice(g+1).each(a.proxy(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).focus(),h=!0,!1):void 0},this)),h)return;if(f.slice(0,g+1).each(a.proxy(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).focus(),h=!0,!1):void 0},this)),h)return}},this)).on("init.jstree",a.proxy(function(){var a=this.settings.core.themes;this._data.core.themes.dots=a.dots,this._data.core.themes.stripes=a.stripes,this._data.core.themes.icons=a.icons,this._data.core.themes.ellipsis=a.ellipsis,this.set_theme(a.name||"default",a.url),this.set_theme_variant(a.variant)},this)).on("loading.jstree",a.proxy(function(){this[this._data.core.themes.dots?"show_dots":"hide_dots"](),this[this._data.core.themes.icons?"show_icons":"hide_icons"](),this[this._data.core.themes.stripes?"show_stripes":"hide_stripes"](),this[this._data.core.themes.ellipsis?"show_ellipsis":"hide_ellipsis"]()},this)).on("blur.jstree",".jstree-anchor",a.proxy(function(b){this._data.core.focused=null,a(b.currentTarget).filter(".jstree-hovered").mouseleave(),this.element.attr("tabindex","0")},this)).on("focus.jstree",".jstree-anchor",a.proxy(function(b){var c=this.get_node(b.currentTarget);c&&c.id&&(this._data.core.focused=c.id),this.element.find(".jstree-hovered").not(b.currentTarget).mouseleave(),a(b.currentTarget).mouseenter(),this.element.attr("tabindex","-1")},this)).on("focus.jstree",a.proxy(function(){if(+new Date-d>500&&!this._data.core.focused&&this.settings.core.restore_focus){d=0;var a=this.get_node(this.element.attr("aria-activedescendant"),!0);a&&a.find("> .jstree-anchor").focus()}},this)).on("mouseenter.jstree",".jstree-anchor",a.proxy(function(a){this.hover_node(a.currentTarget)},this)).on("mouseleave.jstree",".jstree-anchor",a.proxy(function(a){this.dehover_node(a.currentTarget)},this))},unbind:function(){this.element.off(".jstree"),a(i).off(".jstree-"+this._id)},trigger:function(a,b){b||(b={}),b.instance=this,this.element.triggerHandler(a.replace(".jstree","")+".jstree",b)},get_container:function(){return this.element},get_container_ul:function(){return this.element.children(".jstree-children").first()},get_string:function(b){var c=this.settings.core.strings;return a.isFunction(c)?c.call(this,b):c&&c[b]?c[b]:b},_firstChild:function(a){a=a?a.firstChild:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_nextSibling:function(a){a=a?a.nextSibling:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_previousSibling:function(a){a=a?a.previousSibling:null;while(null!==a&&1!==a.nodeType)a=a.previousSibling;return a},get_node:function(b,c){b&&b.id&&(b=b.id),b instanceof jQuery&&b.length&&b[0].id&&(b=b[0].id);var d;try{if(this._model.data[b])b=this._model.data[b];else if("string"==typeof b&&this._model.data[b.replace(/^#/,"")])b=this._model.data[b.replace(/^#/,"")];else if("string"==typeof b&&(d=a("#"+b.replace(a.jstree.idregex,"\\$&"),this.element)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else if((d=this.element.find(b)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else{if(!(d=this.element.find(b)).length||!d.hasClass("jstree"))return!1;b=this._model.data[a.jstree.root]}return c&&(b=b.id===a.jstree.root?this.element:a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)),b}catch(e){return!1}},get_path:function(b,c,d){if(b=b.parents?b:this.get_node(b),!b||b.id===a.jstree.root||!b.parents)return!1;var e,f,g=[];for(g.push(d?b.id:b.text),e=0,f=b.parents.length;f>e;e++)g.push(d?b.parents[e]:this.get_text(b.parents[e]));return g=g.reverse().slice(1),c?g.join(c):g},get_next_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this._firstChild(this.get_container_ul()[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}if(b.hasClass("jstree-open")){d=this._firstChild(b.children(".jstree-children")[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);if(null!==d)return a(d)}d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return null!==d?a(d):b.parentsUntil(".jstree",".jstree-node").nextAll(".jstree-node:visible").first()},get_prev_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this.get_container_ul()[0].lastChild;while(d&&0===d.offsetHeight)d=this._previousSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);if(null!==d){b=a(d);while(b.hasClass("jstree-open"))b=b.children(".jstree-children").first().children(".jstree-node:visible:last");return b}return d=b[0].parentNode.parentNode,d&&d.className&&-1!==d.className.indexOf("jstree-node")?a(d):!1},get_parent:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.parent:!1},get_children_dom:function(a){return a=this.get_node(a,!0),a[0]===this.element[0]?this.get_container_ul().children(".jstree-node"):a&&a.length?a.children(".jstree-children").children(".jstree-node"):!1},is_parent:function(a){return a=this.get_node(a),a&&(a.state.loaded===!1||a.children.length>0)},is_loaded:function(a){return a=this.get_node(a),a&&a.state.loaded},is_loading:function(a){return a=this.get_node(a),a&&a.state&&a.state.loading},is_open:function(a){return a=this.get_node(a),a&&a.state.opened},is_closed:function(a){return a=this.get_node(a),a&&this.is_parent(a)&&!a.state.opened},is_leaf:function(a){return!this.is_parent(a)},load_node:function(b,c){var d,e,f,g,h;if(a.isArray(b))return this._load_nodes(b.slice(),c),!0;if(b=this.get_node(b),!b)return c&&c.call(this,b,!1),!1;if(b.state.loaded){for(b.state.loaded=!1,f=0,g=b.parents.length;g>f;f++)this._model.data[b.parents[f]].children_d=a.vakata.array_filter(this._model.data[b.parents[f]].children_d,function(c){return-1===a.inArray(c,b.children_d)});for(d=0,e=b.children_d.length;e>d;d++)this._model.data[b.children_d[d]].state.selected&&(h=!0),delete this._model.data[b.children_d[d]];h&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(c){return-1===a.inArray(c,b.children_d)})),b.children=[],b.children_d=[],h&&this.trigger("changed",{action:"load_node",node:b,selected:this._data.core.selected})}return b.state.failed=!1,b.state.loading=!0,this.get_node(b,!0).addClass("jstree-loading").attr("aria-busy",!0),this._load_node(b,a.proxy(function(a){b=this._model.data[b.id],b.state.loading=!1,b.state.loaded=a,b.state.failed=!b.state.loaded;var d=this.get_node(b,!0),e=0,f=0,g=this._model.data,h=!1;for(e=0,f=b.children.length;f>e;e++)if(g[b.children[e]]&&!g[b.children[e]].state.hidden){h=!0;break}b.state.loaded&&d&&d.length&&(d.removeClass("jstree-closed jstree-open jstree-leaf"),h?"#"!==b.id&&d.addClass(b.state.opened?"jstree-open":"jstree-closed"):d.addClass("jstree-leaf")),d.removeClass("jstree-loading").attr("aria-busy",!1),this.trigger("load_node",{node:b,status:a}),c&&c.call(this,b,a)},this)),!0},_load_nodes:function(a,b,c,d){var e=!0,f=function(){this._load_nodes(a,b,!0)},g=this._model.data,h,i,j=[];for(h=0,i=a.length;i>h;h++)g[a[h]]&&(!g[a[h]].state.loaded&&!g[a[h]].state.failed||!c&&d)&&(this.is_loading(a[h])||this.load_node(a[h],f),e=!1);if(e){for(h=0,i=a.length;i>h;h++)g[a[h]]&&g[a[h]].state.loaded&&j.push(a[h]);b&&!b.done&&(b.call(this,j),b.done=!0)}},load_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=[],e=this._model.data,f=e[b.id].children_d,g,h;for(b.state&&!b.state.loaded&&d.push(b.id),g=0,h=f.length;h>g;g++)e[f[g]]&&e[f[g]].state&&!e[f[g]].state.loaded&&d.push(f[g]);d.length?this._load_nodes(d,function(){this.load_all(b,c)}):(c&&c.call(this,b),this.trigger("load_all",{node:b}))},_load_node:function(b,c){var d=this.settings.core.data,e,f=function g(){return 3!==this.nodeType&&8!==this.nodeType};return d?a.isFunction(d)?d.call(this,b,a.proxy(function(d){d===!1?c.call(this,!1):this["string"==typeof d?"_append_html_data":"_append_json_data"](b,"string"==typeof d?a(a.parseHTML(d)).filter(f):d,function(a){c.call(this,a)})},this)):"object"==typeof d?d.url?(d=a.extend(!0,{},d),a.isFunction(d.url)&&(d.url=d.url.call(this,b)),a.isFunction(d.data)&&(d.data=d.data.call(this,b)),a.ajax(d).done(a.proxy(function(d,e,g){var h=g.getResponseHeader("Content-Type");return h&&-1!==h.indexOf("json")||"object"==typeof d?this._append_json_data(b,d,function(a){c.call(this,a)}):h&&-1!==h.indexOf("html")||"string"==typeof d?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:g})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))},this)).fail(a.proxy(function(a){this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:a})},c.call(this,!1),this.settings.core.error.call(this,this._data.core.last_error)},this))):(e=a.isArray(d)?a.extend(!0,[],d):a.isPlainObject(d)?a.extend(!0,{},d):d,b.id===a.jstree.root?this._append_json_data(b,e,function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_05",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))):"string"==typeof d?b.id===a.jstree.root?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_06",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1)):c.call(this,!1):b.id===a.jstree.root?this._append_html_data(b,this._data.core.original_container_html.clone(!0),function(a){c.call(this,a)}):c.call(this,!1)},_node_changed:function(b){b=this.get_node(b),b&&-1===a.inArray(b.id,this._model.changed)&&this._model.changed.push(b.id)},_append_html_data:function(b,c,d){b=this.get_node(b),b.children=[],b.children_d=[];var e=c.is("ul")?c.children():c,f=b.id,g=[],h=[],i=this._model.data,j=i[f],k=this._data.core.selected.length,l,m,n;for(e.each(a.proxy(function(b,c){l=this._parse_model_from_html(a(c),f,j.parents.concat()),l&&(g.push(l),h.push(l),i[l].children_d.length&&(h=h.concat(i[l].children_d)))},this)),j.children=g,j.children_d=h,m=0,n=j.parents.length;n>m;m++)i[j.parents[m]].children_d=i[j.parents[m]].children_d.concat(h);this.trigger("model",{nodes:h,parent:f}),f!==a.jstree.root?(this._node_changed(f),this.redraw()):(this.get_container_ul().children(".jstree-initial-node").remove(),this.redraw(!0)),this._data.core.selected.length!==k&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),d.call(this,!0)},_append_json_data:function(b,c,d,e){if(null!==this.element){b=this.get_node(b),b.children=[],b.children_d=[],c.d&&(c=c.d,"string"==typeof c&&(c=JSON.parse(c))),a.isArray(c)||(c=[c]);var f=null,g={df:this._model.default_state,dat:c,par:b.id,m:this._model.data,t_id:this._id,t_cnt:this._cnt,sel:this._data.core.selected},h=function(a,b){a.data&&(a=a.data);var c=a.dat,d=a.par,e=[],f=[],g=[],h=a.df,i=a.t_id,j=a.t_cnt,k=a.m,l=k[d],m=a.sel,n,o,p,q,r=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f,i,j,l,m={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in h)h.hasOwnProperty(f)&&(m.state[f]=h[f]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(m.icon=a.data.jstree.icon),(m.icon===b||null===m.icon||""===m.icon)&&(m.icon=!0),a&&a.data&&(m.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(m.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(m.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(m.li_attr[f]=a.li_attr[f]);if(m.li_attr.id||(m.li_attr.id=e),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(m.a_attr[f]=a.a_attr[f]);for(a&&a.children&&a.children===!0&&(m.state.loaded=!1,m.children=[],m.children_d=[]),k[m.id]=m,f=0,i=m.children.length;i>f;f++)j=r(k[m.children[f]],m.id,d),l=k[j],m.children_d.push(j),l.children_d.length&&(m.children_d=m.children_d.concat(l.children_d));return delete a.data,delete a.children,k[m.id].original=a,m.state.selected&&g.push(m.id),m.id},s=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,l,m,n,o;do e="j"+i+"_"+ ++j;while(k[e]);o={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in h)h.hasOwnProperty(f)&&(o.state[f]=h[f]);if(a&&a.id&&(o.id=a.id.toString()),a&&a.text&&(o.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(o.icon=a.data.jstree.icon),(o.icon===b||null===o.icon||""===o.icon)&&(o.icon=!0),a&&a.data&&(o.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(o.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(o.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(o.li_attr[f]=a.li_attr[f]);if(o.li_attr.id&&!o.id&&(o.id=o.li_attr.id.toString()),o.id||(o.id=e),o.li_attr.id||(o.li_attr.id=o.id),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(o.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,l=a.children.length;l>f;f++)m=s(a.children[f],o.id,d),n=k[m],o.children.push(m),n.children_d.length&&(o.children_d=o.children_d.concat(n.children_d));o.children_d=o.children_d.concat(o.children)}return a&&a.children&&a.children===!0&&(o.state.loaded=!1,o.children=[],o.children_d=[]),delete a.data,delete a.children,o.original=a,k[o.id]=o,o.state.selected&&g.push(o.id),o.id};if(c.length&&c[0].id!==b&&c[0].parent!==b){for(o=0,p=c.length;p>o;o++)c[o].children||(c[o].children=[]),c[o].state||(c[o].state={}),k[c[o].id.toString()]=c[o];for(o=0,p=c.length;p>o;o++)k[c[o].parent.toString()]?(k[c[o].parent.toString()].children.push(c[o].id.toString()),l.children_d.push(c[o].id.toString())):(this._data.core.last_error={error:"parse",plugin:"core",id:"core_07",reason:"Node with invalid parent",data:JSON.stringify({id:c[o].id.toString(),parent:c[o].parent.toString()})},this.settings.core.error.call(this,this._data.core.last_error));for(o=0,p=l.children.length;p>o;o++)n=r(k[l.children[o]],d,l.parents.concat()),f.push(n),k[n].children_d.length&&(f=f.concat(k[n].children_d));for(o=0,p=l.parents.length;p>o;o++)k[l.parents[o]].children_d=k[l.parents[o]].children_d.concat(f);q={cnt:j,mod:k,sel:m,par:d,dpc:f,add:g}}else{for(o=0,p=c.length;p>o;o++)n=s(c[o],d,l.parents.concat()),n&&(e.push(n),f.push(n),k[n].children_d.length&&(f=f.concat(k[n].children_d)));for(l.children=e,l.children_d=f,o=0,p=l.parents.length;p>o;o++)k[l.parents[o]].children_d=k[l.parents[o]].children_d.concat(f);q={cnt:j,mod:k,sel:m,par:d,dpc:f,add:g}}return"undefined"!=typeof window&&"undefined"!=typeof window.document?q:void postMessage(q)},i=function(b,c){if(null!==this.element){this._cnt=b.cnt;var e,f=this._model.data;for(e in f)f.hasOwnProperty(e)&&f[e].state&&f[e].state.loading&&b.mod[e]&&(b.mod[e].state.loading=!0);if(this._model.data=b.mod,c){var g,h=b.add,i=b.sel,j=this._data.core.selected.slice();if(f=this._model.data,i.length!==j.length||a.vakata.array_unique(i.concat(j)).length!==i.length){for(e=0,g=i.length;g>e;e++)-1===a.inArray(i[e],h)&&-1===a.inArray(i[e],j)&&(f[i[e]].state.selected=!1);for(e=0,g=j.length;g>e;e++)-1===a.inArray(j[e],i)&&(f[j[e]].state.selected=!0)}}b.add.length&&(this._data.core.selected=this._data.core.selected.concat(b.add)),this.trigger("model",{nodes:b.dpc,parent:b.par}),b.par!==a.jstree.root?(this._node_changed(b.par),this.redraw()):this.redraw(!0),b.add.length&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),d.call(this,!0)}};if(this.settings.core.worker&&window.Blob&&window.URL&&window.Worker)try{null===this._wrk&&(this._wrk=window.URL.createObjectURL(new window.Blob(["self.onmessage = "+h.toString()],{type:"text/javascript"}))),!this._data.core.working||e?(this._data.core.working=!0,f=new window.Worker(this._wrk),f.onmessage=a.proxy(function(a){i.call(this,a.data,!0);try{f.terminate(),f=null}catch(b){}this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1},this),g.par?f.postMessage(g):this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1):this._data.core.worker_queue.push([b,c,d,!0])}catch(j){i.call(this,h(g),!1),this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1}else i.call(this,h(g),!1)}},_parse_model_from_html:function(c,d,e){e=e?[].concat(e):[],d&&e.unshift(d);var f,g,h=this._model.data,i={id:!1,text:!1,icon:!0,parent:d,parents:e,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1},j,k,l;for(j in this._model.default_state)this._model.default_state.hasOwnProperty(j)&&(i.state[j]=this._model.default_state[j]);if(k=a.vakata.attributes(c,!0),a.each(k,function(b,c){return c=a.trim(c),c.length?(i.li_attr[b]=c,void("id"===b&&(i.id=c.toString()))):!0}),k=c.children("a").first(),k.length&&(k=a.vakata.attributes(k,!0),a.each(k,function(b,c){c=a.trim(c),c.length&&(i.a_attr[b]=c)})),k=c.children("a").first().length?c.children("a").first().clone():c.clone(),k.children("ins, i, ul").remove(),k=k.html(),k=a("<div />").html(k),i.text=this.settings.core.force_text?k.text():k.html(),k=c.data(),i.data=k?a.extend(!0,{},k):null,i.state.opened=c.hasClass("jstree-open"),i.state.selected=c.children("a").hasClass("jstree-clicked"),i.state.disabled=c.children("a").hasClass("jstree-disabled"),i.data&&i.data.jstree)for(j in i.data.jstree)i.data.jstree.hasOwnProperty(j)&&(i.state[j]=i.data.jstree[j]);k=c.children("a").children(".jstree-themeicon"),k.length&&(i.icon=k.hasClass("jstree-themeicon-hidden")?!1:k.attr("rel")),i.state.icon!==b&&(i.icon=i.state.icon),(i.icon===b||null===i.icon||""===i.icon)&&(i.icon=!0),k=c.children("ul").children("li");do l="j"+this._id+"_"+ ++this._cnt;while(h[l]);return i.id=i.li_attr.id?i.li_attr.id.toString():l,k.length?(k.each(a.proxy(function(b,c){f=this._parse_model_from_html(a(c),i.id,e),g=this._model.data[f],i.children.push(f),g.children_d.length&&(i.children_d=i.children_d.concat(g.children_d))},this)),i.children_d=i.children_d.concat(i.children)):c.hasClass("jstree-closed")&&(i.state.loaded=!1),i.li_attr["class"]&&(i.li_attr["class"]=i.li_attr["class"].replace("jstree-closed","").replace("jstree-open","")),i.a_attr["class"]&&(i.a_attr["class"]=i.a_attr["class"].replace("jstree-clicked","").replace("jstree-disabled","")),h[i.id]=i,i.state.selected&&this._data.core.selected.push(i.id),i.id},_parse_model_from_flat_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f=this._model.data,g=this._model.default_state,h,i,j,k,l={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(h in g)g.hasOwnProperty(h)&&(l.state[h]=g[h]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),a&&a.data&&(l.data=a.data,a.data.jstree))for(h in a.data.jstree)a.data.jstree.hasOwnProperty(h)&&(l.state[h]=a.data.jstree[h]);if(a&&"object"==typeof a.state)for(h in a.state)a.state.hasOwnProperty(h)&&(l.state[h]=a.state[h]);if(a&&"object"==typeof a.li_attr)for(h in a.li_attr)a.li_attr.hasOwnProperty(h)&&(l.li_attr[h]=a.li_attr[h]);if(l.li_attr.id||(l.li_attr.id=e),a&&"object"==typeof a.a_attr)for(h in a.a_attr)a.a_attr.hasOwnProperty(h)&&(l.a_attr[h]=a.a_attr[h]);for(a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),f[l.id]=l,h=0,i=l.children.length;i>h;h++)j=this._parse_model_from_flat_json(f[l.children[h]],l.id,d),k=f[j],l.children_d.push(j),k.children_d.length&&(l.children_d=l.children_d.concat(k.children_d));return delete a.data,delete a.children,f[l.id].original=a,l.state.selected&&this._data.core.selected.push(l.id),l.id},_parse_model_from_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,g,h,i,j=this._model.data,k=this._model.default_state,l;do e="j"+this._id+"_"+ ++this._cnt;while(j[e]);l={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in k)k.hasOwnProperty(f)&&(l.state[f]=k[f]);if(a&&a.id&&(l.id=a.id.toString()),a&&a.text&&(l.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),a&&a.data&&(l.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(l.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(l.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(l.li_attr[f]=a.li_attr[f]);if(l.li_attr.id&&!l.id&&(l.id=l.li_attr.id.toString()),
|
3 |
+
l.id||(l.id=e),l.li_attr.id||(l.li_attr.id=l.id),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(l.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,g=a.children.length;g>f;f++)h=this._parse_model_from_json(a.children[f],l.id,d),i=j[h],l.children.push(h),i.children_d.length&&(l.children_d=l.children_d.concat(i.children_d));l.children_d=l.children_d.concat(l.children)}return a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),delete a.data,delete a.children,l.original=a,j[l.id]=l,l.state.selected&&this._data.core.selected.push(l.id),l.id},_redraw:function(){var b=this._model.force_full_redraw?this._model.data[a.jstree.root].children.concat([]):this._model.changed.concat([]),c=i.createElement("UL"),d,e,f,g=this._data.core.focused;for(e=0,f=b.length;f>e;e++)d=this.redraw_node(b[e],!0,this._model.force_full_redraw),d&&this._model.force_full_redraw&&c.appendChild(d);this._model.force_full_redraw&&(c.className=this.get_container_ul()[0].className,c.setAttribute("role","group"),this.element.empty().append(c)),null!==g&&this.settings.core.restore_focus&&(d=this.get_node(g,!0),d&&d.length&&d.children(".jstree-anchor")[0]!==i.activeElement?d.children(".jstree-anchor").focus():this._data.core.focused=null),this._model.force_full_redraw=!1,this._model.changed=[],this.trigger("redraw",{nodes:b})},redraw:function(a){a&&(this._model.force_full_redraw=!0),this._redraw()},draw_children:function(b){var c=this.get_node(b),d=!1,e=!1,f=!1,g=i;if(!c)return!1;if(c.id===a.jstree.root)return this.redraw(!0);if(b=this.get_node(b,!0),!b||!b.length)return!1;if(b.children(".jstree-children").remove(),b=b[0],c.children.length&&c.state.loaded){for(f=g.createElement("UL"),f.setAttribute("role","group"),f.className="jstree-children",d=0,e=c.children.length;e>d;d++)f.appendChild(this.redraw_node(c.children[d],!0,!0));b.appendChild(f)}},redraw_node:function(b,c,d,e){var f=this.get_node(b),g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n="",o=i,p=this._model.data,q=!1,r=!1,s=null,t=0,u=0,v=!1,w=!1;if(!f)return!1;if(f.id===a.jstree.root)return this.redraw(!0);if(c=c||0===f.children.length,b=i.querySelector?this.element[0].querySelector("#"+(-1!=="0123456789".indexOf(f.id[0])?"\\3"+f.id[0]+" "+f.id.substr(1).replace(a.jstree.idregex,"\\$&"):f.id.replace(a.jstree.idregex,"\\$&"))):i.getElementById(f.id))b=a(b),d||(g=b.parent().parent()[0],g===this.element[0]&&(g=null),h=b.index()),c||!f.children.length||b.children(".jstree-children").length||(c=!0),c||(j=b.children(".jstree-children")[0]),q=b.children(".jstree-anchor")[0]===i.activeElement,b.remove();else if(c=!0,!d){if(g=f.parent!==a.jstree.root?a("#"+f.parent.replace(a.jstree.idregex,"\\$&"),this.element)[0]:null,!(null===g||g&&p[f.parent].state.opened))return!1;h=a.inArray(f.id,null===g?p[a.jstree.root].children:p[f.parent].children)}b=this._data.core.node.cloneNode(!0),n="jstree-node ";for(k in f.li_attr)if(f.li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"!==k?b.setAttribute(k,f.li_attr[k]):n+=f.li_attr[k]}for(f.a_attr.id||(f.a_attr.id=f.id+"_anchor"),b.setAttribute("aria-selected",!!f.state.selected),b.setAttribute("aria-level",f.parents.length),b.setAttribute("aria-labelledby",f.a_attr.id),f.state.disabled&&b.setAttribute("aria-disabled",!0),k=0,l=f.children.length;l>k;k++)if(!p[f.children[k]].state.hidden){v=!0;break}if(null!==f.parent&&p[f.parent]&&!f.state.hidden&&(k=a.inArray(f.id,p[f.parent].children),w=f.id,-1!==k))for(k++,l=p[f.parent].children.length;l>k;k++)if(p[p[f.parent].children[k]].state.hidden||(w=p[f.parent].children[k]),w!==f.id)break;f.state.hidden&&(n+=" jstree-hidden"),f.state.loading&&(n+=" jstree-loading"),f.state.loaded&&!v?n+=" jstree-leaf":(n+=f.state.opened&&f.state.loaded?" jstree-open":" jstree-closed",b.setAttribute("aria-expanded",f.state.opened&&f.state.loaded)),w===f.id&&(n+=" jstree-last"),b.id=f.id,b.className=n,n=(f.state.selected?" jstree-clicked":"")+(f.state.disabled?" jstree-disabled":"");for(l in f.a_attr)if(f.a_attr.hasOwnProperty(l)){if("href"===l&&"#"===f.a_attr[l])continue;"class"!==l?b.childNodes[1].setAttribute(l,f.a_attr[l]):n+=" "+f.a_attr[l]}if(n.length&&(b.childNodes[1].className="jstree-anchor "+n),(f.icon&&f.icon!==!0||f.icon===!1)&&(f.icon===!1?b.childNodes[1].childNodes[0].className+=" jstree-themeicon-hidden":-1===f.icon.indexOf("/")&&-1===f.icon.indexOf(".")?b.childNodes[1].childNodes[0].className+=" "+f.icon+" jstree-themeicon-custom":(b.childNodes[1].childNodes[0].style.backgroundImage='url("'+f.icon+'")',b.childNodes[1].childNodes[0].style.backgroundPosition="center center",b.childNodes[1].childNodes[0].style.backgroundSize="auto",b.childNodes[1].childNodes[0].className+=" jstree-themeicon-custom")),this.settings.core.force_text?b.childNodes[1].appendChild(o.createTextNode(f.text)):b.childNodes[1].innerHTML+=f.text,c&&f.children.length&&(f.state.opened||e)&&f.state.loaded){for(m=o.createElement("UL"),m.setAttribute("role","group"),m.className="jstree-children",k=0,l=f.children.length;l>k;k++)m.appendChild(this.redraw_node(f.children[k],c,!0));b.appendChild(m)}if(j&&b.appendChild(j),!d){for(g||(g=this.element[0]),k=0,l=g.childNodes.length;l>k;k++)if(g.childNodes[k]&&g.childNodes[k].className&&-1!==g.childNodes[k].className.indexOf("jstree-children")){s=g.childNodes[k];break}s||(s=o.createElement("UL"),s.setAttribute("role","group"),s.className="jstree-children",g.appendChild(s)),g=s,h<g.childNodes.length?g.insertBefore(b,g.childNodes[h]):g.appendChild(b),q&&(t=this.element[0].scrollTop,u=this.element[0].scrollLeft,b.childNodes[1].focus(),this.element[0].scrollTop=t,this.element[0].scrollLeft=u)}return f.state.opened&&!f.state.loaded&&(f.state.opened=!1,setTimeout(a.proxy(function(){this.open_node(f.id,!1,0)},this),0)),b},open_node:function(c,d,e){var f,g,h,i;if(a.isArray(c)){for(c=c.slice(),f=0,g=c.length;g>f;f++)this.open_node(c[f],d,e);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(e=e===b?this.settings.core.animation:e,this.is_closed(c)?this.is_loaded(c)?(h=this.get_node(c,!0),i=this,h.length&&(e&&h.children(".jstree-children").length&&h.children(".jstree-children").stop(!0,!0),c.children.length&&!this._firstChild(h.children(".jstree-children")[0])&&this.draw_children(c),e?(this.trigger("before_open",{node:c}),h.children(".jstree-children").css("display","none").end().removeClass("jstree-closed").addClass("jstree-open").attr("aria-expanded",!0).children(".jstree-children").stop(!0,!0).slideDown(e,function(){this.style.display="",i.element&&i.trigger("after_open",{node:c})})):(this.trigger("before_open",{node:c}),h[0].className=h[0].className.replace("jstree-closed","jstree-open"),h[0].setAttribute("aria-expanded",!0))),c.state.opened=!0,d&&d.call(this,c,!0),h.length||this.trigger("before_open",{node:c}),this.trigger("open_node",{node:c}),e&&h.length||this.trigger("after_open",{node:c}),!0):this.is_loading(c)?setTimeout(a.proxy(function(){this.open_node(c,d,e)},this),500):void this.load_node(c,function(a,b){return b?this.open_node(a,d,e):d?d.call(this,a,!1):!1}):(d&&d.call(this,c,!1),!1)):!1},_open_to:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c,d,e=b.parents;for(c=0,d=e.length;d>c;c+=1)c!==a.jstree.root&&this.open_node(e[c],!1,0);return a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)},close_node:function(c,d){var e,f,g,h;if(a.isArray(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.close_node(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?this.is_closed(c)?!1:(d=d===b?this.settings.core.animation:d,g=this,h=this.get_node(c,!0),c.state.opened=!1,this.trigger("close_node",{node:c}),void(h.length?d?h.children(".jstree-children").attr("style","display:block !important").end().removeClass("jstree-open").addClass("jstree-closed").attr("aria-expanded",!1).children(".jstree-children").stop(!0,!0).slideUp(d,function(){this.style.display="",h.children(".jstree-children").remove(),g.element&&g.trigger("after_close",{node:c})}):(h[0].className=h[0].className.replace("jstree-open","jstree-closed"),h.attr("aria-expanded",!1).children(".jstree-children").remove(),this.trigger("after_close",{node:c})):this.trigger("after_close",{node:c}))):!1},toggle_node:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.toggle_node(b[c]);return!0}return this.is_closed(b)?this.open_node(b):this.is_open(b)?this.close_node(b):void 0},open_all:function(b,c,d){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var e=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),f,g,h;if(!e.length){for(f=0,g=b.children_d.length;g>f;f++)this.is_closed(this._model.data[b.children_d[f]])&&(this._model.data[b.children_d[f]].state.opened=!0);return this.trigger("open_all",{node:b})}d=d||e,h=this,e=this.is_closed(b)?e.find(".jstree-closed").addBack():e.find(".jstree-closed"),e.each(function(){h.open_node(this,function(a,b){b&&this.is_parent(a)&&this.open_all(a,c,d)},c||0)}),0===d.find(".jstree-closed").length&&this.trigger("open_all",{node:this.get_node(d)})},close_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),e=this,f,g;for(d.length&&(d=this.is_open(b)?d.find(".jstree-open").addBack():d.find(".jstree-open"),a(d.get().reverse()).each(function(){e.close_node(this,c||0)})),f=0,g=b.children_d.length;g>f;f++)this._model.data[b.children_d[f]].state.opened=!1;this.trigger("close_all",{node:b})},is_disabled:function(a){return a=this.get_node(a),a&&a.state&&a.state.disabled},enable_node:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!1,this.get_node(b,!0).children(".jstree-anchor").removeClass("jstree-disabled").attr("aria-disabled",!1),void this.trigger("enable_node",{node:b})):!1},disable_node:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!0,this.get_node(b,!0).children(".jstree-anchor").addClass("jstree-disabled").attr("aria-disabled",!0),void this.trigger("disable_node",{node:b})):!1},is_hidden:function(a){return a=this.get_node(a),a.state.hidden===!0},hide_node:function(b,c){var d,e;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.hide_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden||(b.state.hidden=!0,this._node_changed(b.parent),c||this.redraw(),this.trigger("hide_node",{node:b}))):!1},show_node:function(b,c){var d,e;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.show_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden&&(b.state.hidden=!1,this._node_changed(b.parent),c||this.redraw(),this.trigger("show_node",{node:b}))):!1},hide_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&!d[c].state.hidden&&(d[c].state.hidden=!0,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("hide_all",{nodes:e}),e},show_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&d[c].state.hidden&&(d[c].state.hidden=!1,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("show_all",{nodes:e}),e},activate_node:function(a,c){if(this.is_disabled(a))return!1;if(c&&"object"==typeof c||(c={}),this._data.core.last_clicked=this._data.core.last_clicked&&this._data.core.last_clicked.id!==b?this.get_node(this._data.core.last_clicked.id):null,this._data.core.last_clicked&&!this._data.core.last_clicked.state.selected&&(this._data.core.last_clicked=null),!this._data.core.last_clicked&&this._data.core.selected.length&&(this._data.core.last_clicked=this.get_node(this._data.core.selected[this._data.core.selected.length-1])),this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&(!c.shiftKey||this._data.core.last_clicked&&this.get_parent(a)&&this.get_parent(a)===this._data.core.last_clicked.parent))if(c.shiftKey){var d=this.get_node(a).id,e=this._data.core.last_clicked.id,f=this.get_node(this._data.core.last_clicked.parent).children,g=!1,h,i;for(h=0,i=f.length;i>h;h+=1)f[h]===d&&(g=!g),f[h]===e&&(g=!g),this.is_disabled(f[h])||!g&&f[h]!==d&&f[h]!==e?this.deselect_node(f[h],!0,c):this.is_hidden(f[h])||this.select_node(f[h],!0,!1,c);this.trigger("changed",{action:"select_node",node:this.get_node(a),selected:this._data.core.selected,event:c})}else this.is_selected(a)?this.deselect_node(a,!1,c):this.select_node(a,!1,!1,c);else!this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&this.is_selected(a)?this.deselect_node(a,!1,c):(this.deselect_all(!0),this.select_node(a,!1,!1,c),this._data.core.last_clicked=this.get_node(a));this.trigger("activate_node",{node:this.get_node(a),event:c})},hover_node:function(a){if(a=this.get_node(a,!0),!a||!a.length||a.children(".jstree-hovered").length)return!1;var b=this.element.find(".jstree-hovered"),c=this.element;b&&b.length&&this.dehover_node(b),a.children(".jstree-anchor").addClass("jstree-hovered"),this.trigger("hover_node",{node:this.get_node(a)}),setTimeout(function(){c.attr("aria-activedescendant",a[0].id)},0)},dehover_node:function(a){return a=this.get_node(a,!0),a&&a.length&&a.children(".jstree-hovered").length?(a.children(".jstree-anchor").removeClass("jstree-hovered"),void this.trigger("dehover_node",{node:this.get_node(a)})):!1},select_node:function(b,c,d,e){var f,g,h,i;if(a.isArray(b)){for(b=b.slice(),g=0,h=b.length;h>g;g++)this.select_node(b[g],c,d,e);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.selected||(b.state.selected=!0,this._data.core.selected.push(b.id),d||(f=this._open_to(b)),f&&f.length&&f.attr("aria-selected",!0).children(".jstree-anchor").addClass("jstree-clicked"),this.trigger("select_node",{node:b,selected:this._data.core.selected,event:e}),c||this.trigger("changed",{action:"select_node",node:b,selected:this._data.core.selected,event:e})))):!1},deselect_node:function(b,c,d){var e,f,g;if(a.isArray(b)){for(b=b.slice(),e=0,f=b.length;f>e;e++)this.deselect_node(b[e],c,d);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(g=this.get_node(b,!0),void(b.state.selected&&(b.state.selected=!1,this._data.core.selected=a.vakata.array_remove_item(this._data.core.selected,b.id),g.length&&g.attr("aria-selected",!1).children(".jstree-anchor").removeClass("jstree-clicked"),this.trigger("deselect_node",{node:b,selected:this._data.core.selected,event:d}),c||this.trigger("changed",{action:"deselect_node",node:b,selected:this._data.core.selected,event:d})))):!1},select_all:function(b){var c=this._data.core.selected.concat([]),d,e;for(this._data.core.selected=this._model.data[a.jstree.root].children_d.concat(),d=0,e=this._data.core.selected.length;e>d;d++)this._model.data[this._data.core.selected[d]]&&(this._model.data[this._data.core.selected[d]].state.selected=!0);this.redraw(!0),this.trigger("select_all",{selected:this._data.core.selected}),b||this.trigger("changed",{action:"select_all",selected:this._data.core.selected,old_selection:c})},deselect_all:function(a){var b=this._data.core.selected.concat([]),c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)this._model.data[this._data.core.selected[c]]&&(this._model.data[this._data.core.selected[c]].state.selected=!1);this._data.core.selected=[],this.element.find(".jstree-clicked").removeClass("jstree-clicked").parent().attr("aria-selected",!1),this.trigger("deselect_all",{selected:this._data.core.selected,node:b}),a||this.trigger("changed",{action:"deselect_all",selected:this._data.core.selected,old_selection:b})},is_selected:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.selected:!1},get_selected:function(b){return b?a.map(this._data.core.selected,a.proxy(function(a){return this.get_node(a)},this)):this._data.core.selected.slice()},get_top_selected:function(b){var c=this.get_selected(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,a.proxy(function(a){return this.get_node(a)},this)):c},get_bottom_selected:function(b){var c=this.get_selected(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,a.proxy(function(a){return this.get_node(a)},this)):d},get_state:function(){var b={core:{open:[],loaded:[],scroll:{left:this.element.scrollLeft(),top:this.element.scrollTop()},selected:[]}},c;for(c in this._model.data)this._model.data.hasOwnProperty(c)&&c!==a.jstree.root&&(this._model.data[c].state.loaded&&this.settings.core.loaded_state&&b.core.loaded.push(c),this._model.data[c].state.opened&&b.core.open.push(c),this._model.data[c].state.selected&&b.core.selected.push(c));return b},set_state:function(c,d){if(c){if(c.core&&c.core.selected&&c.core.initial_selection===b&&(c.core.initial_selection=this._data.core.selected.concat([]).sort().join(",")),c.core){var e,f,g,h,i;if(c.core.loaded)return this.settings.core.loaded_state&&a.isArray(c.core.loaded)&&c.core.loaded.length?this._load_nodes(c.core.loaded,function(a){delete c.core.loaded,this.set_state(c,d)}):(delete c.core.loaded,this.set_state(c,d)),!1;if(c.core.open)return a.isArray(c.core.open)&&c.core.open.length?this._load_nodes(c.core.open,function(a){this.open_node(a,!1,0),delete c.core.open,this.set_state(c,d)}):(delete c.core.open,this.set_state(c,d)),!1;if(c.core.scroll)return c.core.scroll&&c.core.scroll.left!==b&&this.element.scrollLeft(c.core.scroll.left),c.core.scroll&&c.core.scroll.top!==b&&this.element.scrollTop(c.core.scroll.top),delete c.core.scroll,this.set_state(c,d),!1;if(c.core.selected)return h=this,(c.core.initial_selection===b||c.core.initial_selection===this._data.core.selected.concat([]).sort().join(","))&&(this.deselect_all(),a.each(c.core.selected,function(a,b){h.select_node(b,!1,!0)})),delete c.core.initial_selection,delete c.core.selected,this.set_state(c,d),!1;for(i in c)c.hasOwnProperty(i)&&"core"!==i&&-1===a.inArray(i,this.settings.plugins)&&delete c[i];if(a.isEmptyObject(c.core))return delete c.core,this.set_state(c,d),!1}return a.isEmptyObject(c)?(c=null,d&&d.call(this),this.trigger("set_state"),!1):!0}return!1},refresh:function(b,c){this._data.core.state=c===!0?{}:this.get_state(),c&&a.isFunction(c)&&(this._data.core.state=c.call(this,this._data.core.state)),this._cnt=0,this._model.data={},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this._data.core.selected=[],this._data.core.last_clicked=null,this._data.core.focused=null;var d=this.get_container_ul()[0].className;b||(this.element.html("<ul class='"+d+"' role='group'><li class='jstree-initial-node jstree-loading jstree-leaf jstree-last' role='treeitem' id='j"+this._id+"_loading'><i class='jstree-icon jstree-ocl'></i><a class='jstree-anchor' href='#'><i class='jstree-icon jstree-themeicon-hidden'></i>"+this.get_string("Loading ...")+"</a></li></ul>"),this.element.attr("aria-activedescendant","j"+this._id+"_loading")),this.load_node(a.jstree.root,function(b,c){c&&(this.get_container_ul()[0].className=d,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.set_state(a.extend(!0,{},this._data.core.state),function(){this.trigger("refresh")})),this._data.core.state=null})},refresh_node:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c=[],d=[],e=this._data.core.selected.concat([]);d.push(b.id),b.state.opened===!0&&c.push(b.id),this.get_node(b,!0).find(".jstree-open").each(function(){d.push(this.id),c.push(this.id)}),this._load_nodes(d,a.proxy(function(a){this.open_node(c,!1,0),this.select_node(e),this.trigger("refresh_node",{node:b,nodes:a})},this),!1,!0)},set_id:function(b,c){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var d,e,f=this._model.data,g=b.id;for(c=c.toString(),f[b.parent].children[a.inArray(b.id,f[b.parent].children)]=c,d=0,e=b.parents.length;e>d;d++)f[b.parents[d]].children_d[a.inArray(b.id,f[b.parents[d]].children_d)]=c;for(d=0,e=b.children.length;e>d;d++)f[b.children[d]].parent=c;for(d=0,e=b.children_d.length;e>d;d++)f[b.children_d[d]].parents[a.inArray(b.id,f[b.children_d[d]].parents)]=c;return d=a.inArray(b.id,this._data.core.selected),-1!==d&&(this._data.core.selected[d]=c),d=this.get_node(b.id,!0),d&&(d.attr("id",c),this.element.attr("aria-activedescendant")===b.id&&this.element.attr("aria-activedescendant",c)),delete f[b.id],b.id=c,b.li_attr.id=c,f[c]=b,this.trigger("set_id",{node:b,"new":b.id,old:g}),!0},get_text:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.text:!1},set_text:function(b,c){var d,e;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.set_text(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.text=c,this.get_node(b,!0).length&&this.redraw_node(b.id),this.trigger("set_text",{obj:b,text:c}),!0):!1},get_json:function(b,c,d){if(b=this.get_node(b||a.jstree.root),!b)return!1;c&&c.flat&&!d&&(d=[]);var e={id:b.id,text:b.text,icon:this.get_icon(b),li_attr:a.extend(!0,{},b.li_attr),a_attr:a.extend(!0,{},b.a_attr),state:{},data:c&&c.no_data?!1:a.extend(!0,a.isArray(b.data)?[]:{},b.data)},f,g;if(c&&c.flat?e.parent=b.parent:e.children=[],c&&c.no_state)delete e.state;else for(f in b.state)b.state.hasOwnProperty(f)&&(e.state[f]=b.state[f]);if(c&&c.no_li_attr&&delete e.li_attr,c&&c.no_a_attr&&delete e.a_attr,c&&c.no_id&&(delete e.id,e.li_attr&&e.li_attr.id&&delete e.li_attr.id,e.a_attr&&e.a_attr.id&&delete e.a_attr.id),c&&c.flat&&b.id!==a.jstree.root&&d.push(e),!c||!c.no_children)for(f=0,g=b.children.length;g>f;f++)c&&c.flat?this.get_json(b.children[f],c,d):e.children.push(this.get_json(b.children[f],c));return c&&c.flat?d:b.id===a.jstree.root?e.children:e},create_node:function(c,d,e,f,g){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return!1;if(e=e===b?"last":e,!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(c))return this.load_node(c,function(){this.create_node(c,d,e,f,!0)});d||(d={text:this.get_string("New node")}),d="string"==typeof d?{text:d}:a.extend(!0,{},d),d.text===b&&(d.text=this.get_string("New node"));var h,i,j,k;switch(c.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":h=this.get_node(c.parent),e=a.inArray(c.id,h.children),c=h;break;case"after":h=this.get_node(c.parent),e=a.inArray(c.id,h.children)+1,c=h;break;case"inside":case"first":e=0;break;case"last":e=c.children.length;break;default:e||(e=0)}if(e>c.children.length&&(e=c.children.length),d.id||(d.id=!0),!this.check("create_node",d,c,e))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(d.id===!0&&delete d.id,d=this._parse_model_from_json(d,c.id,c.parents.concat()),!d)return!1;for(h=this.get_node(d),i=[],i.push(d),i=i.concat(h.children_d),this.trigger("model",{nodes:i,parent:c.id}),c.children_d=c.children_d.concat(i),j=0,k=c.parents.length;k>j;j++)this._model.data[c.parents[j]].children_d=this._model.data[c.parents[j]].children_d.concat(i);for(d=h,h=[],j=0,k=c.children.length;k>j;j++)h[j>=e?j+1:j]=c.children[j];return h[e]=d.id,c.children=h,this.redraw_node(c,!0),this.trigger("create_node",{node:this.get_node(d),parent:c.id,position:e}),f&&f.call(this,this.get_node(d)),d.id},rename_node:function(b,c){var d,e,f;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.rename_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=b.text,this.check("rename_node",b,this.get_parent(b),c)?(this.set_text(b,c),this.trigger("rename_node",{node:b,text:c,old:f}),!0):(this.settings.core.error.call(this,this._data.core.last_error),!1)):!1},delete_node:function(b){var c,d,e,f,g,h,i,j,k,l,m,n;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.delete_node(b[c]);return!0}if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;if(e=this.get_node(b.parent),f=a.inArray(b.id,e.children),l=!1,!this.check("delete_node",b,e,f))return this.settings.core.error.call(this,this._data.core.last_error),!1;for(-1!==f&&(e.children=a.vakata.array_remove(e.children,f)),g=b.children_d.concat([]),g.push(b.id),h=0,i=b.parents.length;i>h;h++)this._model.data[b.parents[h]].children_d=a.vakata.array_filter(this._model.data[b.parents[h]].children_d,function(b){return-1===a.inArray(b,g)});for(j=0,k=g.length;k>j;j++)if(this._model.data[g[j]].state.selected){l=!0;break}for(l&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(b){return-1===a.inArray(b,g)})),this.trigger("delete_node",{node:b,parent:e.id}),l&&this.trigger("changed",{action:"delete_node",node:b,selected:this._data.core.selected,parent:e.id}),j=0,k=g.length;k>j;j++)delete this._model.data[g[j]];return-1!==a.inArray(this._data.core.focused,g)&&(this._data.core.focused=null,m=this.element[0].scrollTop,n=this.element[0].scrollLeft,e.id===a.jstree.root?this._model.data[a.jstree.root].children[0]&&this.get_node(this._model.data[a.jstree.root].children[0],!0).children(".jstree-anchor").focus():this.get_node(e,!0).children(".jstree-anchor").focus(),this.element[0].scrollTop=m,this.element[0].scrollLeft=n),this.redraw_node(e,!0),!0},check:function(b,c,d,e,f){c=c&&c.id?c:this.get_node(c),d=d&&d.id?d:this.get_node(d);var g=b.match(/^move_node|copy_node|create_node$/i)?d:c,h=this.settings.core.check_callback;return"move_node"!==b&&"copy_node"!==b||f&&f.is_multi||c.id!==d.id&&("move_node"!==b||a.inArray(c.id,d.children)!==e)&&-1===a.inArray(d.id,c.children_d)?(g&&g.data&&(g=g.data),g&&g.functions&&(g.functions[b]===!1||g.functions[b]===!0)?(g.functions[b]===!1&&(this._data.core.last_error={error:"check",plugin:"core",id:"core_02",reason:"Node data prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})}),g.functions[b]):h===!1||a.isFunction(h)&&h.call(this,b,c,d,e,f)===!1||h&&h[b]===!1?(this._data.core.last_error={error:"check",plugin:"core",id:"core_03",reason:"User config for core.check_callback prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1):!0):(this._data.core.last_error={error:"check",plugin:"core",id:"core_01",reason:"Moving parent inside child",data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1)},last_error:function(){return this._data.core.last_error},move_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t,u,v,w;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.move_node(c,d,e,f,!0,!1,i)});if(a.isArray(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(r=this.move_node(c[j],d,e,f,g,!1,i))&&(d=r,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;if(l=(c.parent||a.jstree.root).toString(),n=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,o=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),p=!o||!o._id||this._id!==o._id,m=o&&o._id&&l&&o._model.data[l]&&o._model.data[l].children?a.inArray(c.id,o._model.data[l].children):-1,o&&o._id&&(c=o._model.data[c.id]),p)return(r=this.copy_node(c,d,e,f,g,!1,i))?(o&&o.delete_node(c),r):!1;switch(d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,n.children);break;case"after":e=a.inArray(d.id,n.children)+1;break;case"inside":case"first":e=0;break;case"last":e=n.children.length;break;default:e||(e=0)}if(e>n.children.length&&(e=n.children.length),!this.check("move_node",c,n,e,{core:!0,origin:i,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(c.parent===n.id){for(q=n.children.concat(),r=a.inArray(c.id,q),-1!==r&&(q=a.vakata.array_remove(q,r),e>r&&e--),r=[],s=0,t=q.length;t>s;s++)r[s>=e?s+1:s]=q[s];r[e]=c.id,n.children=r,this._node_changed(n.id),this.redraw(n.id===a.jstree.root)}else{for(r=c.children_d.concat(),r.push(c.id),s=0,t=c.parents.length;t>s;s++){for(q=[],w=o._model.data[c.parents[s]].children_d,u=0,v=w.length;v>u;u++)-1===a.inArray(w[u],r)&&q.push(w[u]);o._model.data[c.parents[s]].children_d=q}for(o._model.data[l].children=a.vakata.array_remove_item(o._model.data[l].children,c.id),s=0,t=n.parents.length;t>s;s++)this._model.data[n.parents[s]].children_d=this._model.data[n.parents[s]].children_d.concat(r);for(q=[],s=0,t=n.children.length;t>s;s++)q[s>=e?s+1:s]=n.children[s];for(q[e]=c.id,n.children=q,n.children_d.push(c.id),n.children_d=n.children_d.concat(c.children_d),c.parent=n.id,r=n.parents.concat(),r.unshift(n.id),w=c.parents.length,c.parents=r,r=r.concat(),s=0,t=c.children_d.length;t>s;s++)this._model.data[c.children_d[s]].parents=this._model.data[c.children_d[s]].parents.slice(0,-1*w),Array.prototype.push.apply(this._model.data[c.children_d[s]].parents,r);(l===a.jstree.root||n.id===a.jstree.root)&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||(this._node_changed(l),this._node_changed(n.id)),h||this.redraw()}return f&&f.call(this,c,n,e),this.trigger("move_node",{node:c,parent:n.id,position:e,old_parent:l,old_position:m,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id,old_instance:o,new_instance:this}),c.id},copy_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.copy_node(c,d,e,f,!0,!1,i)});if(a.isArray(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(m=this.copy_node(c[j],d,e,f,g,!0,i))&&(d=m,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;switch(q=(c.parent||a.jstree.root).toString(),r=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,s=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),t=!s||!s._id||this._id!==s._id,s&&s._id&&(c=s._model.data[c.id]),d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,r.children);break;case"after":e=a.inArray(d.id,r.children)+1;break;case"inside":case"first":e=0;break;case"last":e=r.children.length;break;default:e||(e=0)}if(e>r.children.length&&(e=r.children.length),!this.check("copy_node",c,r,e,{core:!0,origin:i,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(p=s?s.get_json(c,{no_id:!0,no_data:!0,no_state:!0}):c,!p)return!1;if(p.id===!0&&delete p.id,p=this._parse_model_from_json(p,r.id,r.parents.concat()),!p)return!1;for(m=this.get_node(p),c&&c.state&&c.state.loaded===!1&&(m.state.loaded=!1),l=[],l.push(p),l=l.concat(m.children_d),this.trigger("model",{nodes:l,parent:r.id}),n=0,o=r.parents.length;o>n;n++)this._model.data[r.parents[n]].children_d=this._model.data[r.parents[n]].children_d.concat(l);for(l=[],n=0,o=r.children.length;o>n;n++)l[n>=e?n+1:n]=r.children[n];return l[e]=m.id,r.children=l,r.children_d.push(m.id),r.children_d=r.children_d.concat(m.children_d),r.id===a.jstree.root&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||this._node_changed(r.id),h||this.redraw(r.id===a.jstree.root),f&&f.call(this,m,r,e),this.trigger("copy_node",{node:m,original:c,parent:r.id,position:e,old_parent:q,old_position:s&&s._id&&q&&s._model.data[q]&&s._model.data[q].children?a.inArray(c.id,s._model.data[q].children):-1,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id,old_instance:s,new_instance:this}),m.id},cut:function(b){if(b||(b=this._data.core.selected.concat()),a.isArray(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);
|
4 |
+
return c.length?(d=c,f=this,e="move_node",void this.trigger("cut",{node:b})):!1},copy:function(b){if(b||(b=this._data.core.selected.concat()),a.isArray(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);return c.length?(d=c,f=this,e="copy_node",void this.trigger("copy",{node:b})):!1},get_buffer:function(){return{mode:e,node:d,inst:f}},can_paste:function(){return e!==!1&&d!==!1},paste:function(a,b){return a=this.get_node(a),a&&e&&e.match(/^(copy_node|move_node)$/)&&d?(this[e](d,a,b,!1,!1,!1,f)&&this.trigger("paste",{parent:a.id,node:d,mode:e}),d=!1,e=!1,void(f=!1)):!1},clear_buffer:function(){d=!1,e=!1,f=!1,this.trigger("clear_buffer")},edit:function(b,c,d){var e,f,g,h,j,k,l,m,n,o=!1;return(b=this.get_node(b))?this.check("edit",b,this.get_parent(b))?(n=b,c="string"==typeof c?c:b.text,this.set_text(b,""),b=this._open_to(b),n.text=c,e=this._data.core.rtl,f=this.element.width(),this._data.core.focused=n.id,g=b.children(".jstree-anchor").focus(),h=a("<span>"),j=c,k=a("<div />",{css:{position:"absolute",top:"-200px",left:e?"0px":"-1000px",visibility:"hidden"}}).appendTo(i.body),l=a("<input />",{value:j,"class":"jstree-rename-input",css:{padding:"0",border:"1px solid silver","box-sizing":"border-box",display:"inline-block",height:this._data.core.li_height+"px",lineHeight:this._data.core.li_height+"px",width:"150px"},blur:a.proxy(function(c){c.stopImmediatePropagation(),c.preventDefault();var e=h.children(".jstree-rename-input"),f=e.val(),i=this.settings.core.force_text,m;""===f&&(f=j),k.remove(),h.replaceWith(g),h.remove(),j=i?j:a("<div></div>").append(a.parseHTML(j)).html(),b=this.get_node(b),this.set_text(b,j),m=!!this.rename_node(b,i?a("<div></div>").text(f).text():a("<div></div>").append(a.parseHTML(f)).html()),m||this.set_text(b,j),this._data.core.focused=n.id,setTimeout(a.proxy(function(){var a=this.get_node(n.id,!0);a.length&&(this._data.core.focused=n.id,a.children(".jstree-anchor").focus())},this),0),d&&d.call(this,n,m,o),l=null},this),keydown:function(a){var b=a.which;27===b&&(o=!0,this.value=j),(27===b||13===b||37===b||38===b||39===b||40===b||32===b)&&a.stopImmediatePropagation(),(27===b||13===b)&&(a.preventDefault(),this.blur())},click:function(a){a.stopImmediatePropagation()},mousedown:function(a){a.stopImmediatePropagation()},keyup:function(a){l.width(Math.min(k.text("pW"+this.value).width(),f))},keypress:function(a){return 13===a.which?!1:void 0}}),m={fontFamily:g.css("fontFamily")||"",fontSize:g.css("fontSize")||"",fontWeight:g.css("fontWeight")||"",fontStyle:g.css("fontStyle")||"",fontStretch:g.css("fontStretch")||"",fontVariant:g.css("fontVariant")||"",letterSpacing:g.css("letterSpacing")||"",wordSpacing:g.css("wordSpacing")||""},h.attr("class",g.attr("class")).append(g.contents().clone()).append(l),g.replaceWith(h),k.css(m),l.css(m).width(Math.min(k.text("pW"+l[0].value).width(),f))[0].select(),void a(i).one("mousedown.jstree touchstart.jstree dnd_start.vakata",function(b){l&&b.target!==l&&a(l).blur()})):(this.settings.core.error.call(this,this._data.core.last_error),!1):!1},set_theme:function(b,c){if(!b)return!1;if(c===!0){var d=this.settings.core.themes.dir;d||(d=a.jstree.path+"/themes"),c=d+"/"+b+"/style.css"}c&&-1===a.inArray(c,g)&&(a("head").append('<link rel="stylesheet" href="'+c+'" type="text/css" />'),g.push(c)),this._data.core.themes.name&&this.element.removeClass("jstree-"+this._data.core.themes.name),this._data.core.themes.name=b,this.element.addClass("jstree-"+b),this.element[this.settings.core.themes.responsive?"addClass":"removeClass"]("jstree-"+b+"-responsive"),this.trigger("set_theme",{theme:b})},get_theme:function(){return this._data.core.themes.name},set_theme_variant:function(a){this._data.core.themes.variant&&this.element.removeClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant),this._data.core.themes.variant=a,a&&this.element.addClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant)},get_theme_variant:function(){return this._data.core.themes.variant},show_stripes:function(){this._data.core.themes.stripes=!0,this.get_container_ul().addClass("jstree-striped"),this.trigger("show_stripes")},hide_stripes:function(){this._data.core.themes.stripes=!1,this.get_container_ul().removeClass("jstree-striped"),this.trigger("hide_stripes")},toggle_stripes:function(){this._data.core.themes.stripes?this.hide_stripes():this.show_stripes()},show_dots:function(){this._data.core.themes.dots=!0,this.get_container_ul().removeClass("jstree-no-dots"),this.trigger("show_dots")},hide_dots:function(){this._data.core.themes.dots=!1,this.get_container_ul().addClass("jstree-no-dots"),this.trigger("hide_dots")},toggle_dots:function(){this._data.core.themes.dots?this.hide_dots():this.show_dots()},show_icons:function(){this._data.core.themes.icons=!0,this.get_container_ul().removeClass("jstree-no-icons"),this.trigger("show_icons")},hide_icons:function(){this._data.core.themes.icons=!1,this.get_container_ul().addClass("jstree-no-icons"),this.trigger("hide_icons")},toggle_icons:function(){this._data.core.themes.icons?this.hide_icons():this.show_icons()},show_ellipsis:function(){this._data.core.themes.ellipsis=!0,this.get_container_ul().addClass("jstree-ellipsis"),this.trigger("show_ellipsis")},hide_ellipsis:function(){this._data.core.themes.ellipsis=!1,this.get_container_ul().removeClass("jstree-ellipsis"),this.trigger("hide_ellipsis")},toggle_ellipsis:function(){this._data.core.themes.ellipsis?this.hide_ellipsis():this.show_ellipsis()},set_icon:function(c,d){var e,f,g,h;if(a.isArray(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.set_icon(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(h=c.icon,c.icon=d===!0||null===d||d===b||""===d?!0:d,g=this.get_node(c,!0).children(".jstree-anchor").children(".jstree-themeicon"),d===!1?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),this.hide_icon(c)):d===!0||null===d||d===b||""===d?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),h===!1&&this.show_icon(c)):-1===d.indexOf("/")&&-1===d.indexOf(".")?(g.removeClass(h).css("background",""),g.addClass(d+" jstree-themeicon-custom").attr("rel",d),h===!1&&this.show_icon(c)):(g.removeClass(h).css("background",""),g.addClass("jstree-themeicon-custom").css("background","url('"+d+"') center center no-repeat").attr("rel",d),h===!1&&this.show_icon(c)),!0):!1},get_icon:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.icon:!1},hide_icon:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.hide_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(b.icon=!1,this.get_node(b,!0).children(".jstree-anchor").children(".jstree-themeicon").addClass("jstree-themeicon-hidden"),!0):!1},show_icon:function(b){var c,d,e;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.show_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(e=this.get_node(b,!0),b.icon=e.length?e.children(".jstree-anchor").children(".jstree-themeicon").attr("rel"):!0,b.icon||(b.icon=!0),e.children(".jstree-anchor").children(".jstree-themeicon").removeClass("jstree-themeicon-hidden"),!0):!1}},a.vakata={},a.vakata.attributes=function(b,c){b=a(b)[0];var d=c?{}:[];return b&&b.attributes&&a.each(b.attributes,function(b,e){-1===a.inArray(e.name.toLowerCase(),["style","contenteditable","hasfocus","tabindex"])&&null!==e.value&&""!==a.trim(e.value)&&(c?d[e.name]=e.value:d.push(e.name))}),d},a.vakata.array_unique=function(a){var c=[],d,e,f,g={};for(d=0,f=a.length;f>d;d++)g[a[d]]===b&&(c.push(a[d]),g[a[d]]=!0);return c},a.vakata.array_remove=function(a,b){return a.splice(b,1),a},a.vakata.array_remove_item=function(b,c){var d=a.inArray(c,b);return-1!==d?a.vakata.array_remove(b,d):b},a.vakata.array_filter=function(a,b,c,d,e){if(a.filter)return a.filter(b,c);d=[];for(e in a)~~e+""==e+""&&e>=0&&b.call(c,a[e],+e,a)&&d.push(a[e]);return d},a.jstree.plugins.changed=function(a,b){var c=[];this.trigger=function(a,d){var e,f;if(d||(d={}),"changed"===a.replace(".jstree","")){d.changed={selected:[],deselected:[]};var g={};for(e=0,f=c.length;f>e;e++)g[c[e]]=1;for(e=0,f=d.selected.length;f>e;e++)g[d.selected[e]]?g[d.selected[e]]=2:d.changed.selected.push(d.selected[e]);for(e=0,f=c.length;f>e;e++)1===g[c[e]]&&d.changed.deselected.push(c[e]);c=d.selected.slice()}b.trigger.call(this,a,d)},this.refresh=function(a,d){return c=[],b.refresh.apply(this,arguments)}};var j=i.createElement("I");j.className="jstree-icon jstree-checkbox",j.setAttribute("role","presentation"),a.jstree.defaults.checkbox={visible:!0,three_state:!0,whole_node:!0,keep_selected_style:!0,cascade:"",tie_selection:!0,cascade_to_disabled:!0,cascade_to_hidden:!0},a.jstree.plugins.checkbox=function(c,d){this.bind=function(){d.bind.call(this),this._data.checkbox.uto=!1,this._data.checkbox.selected=[],this.settings.checkbox.three_state&&(this.settings.checkbox.cascade="up+down+undetermined"),this.element.on("init.jstree",a.proxy(function(){this._data.checkbox.visible=this.settings.checkbox.visible,this.settings.checkbox.keep_selected_style||this.element.addClass("jstree-checkbox-no-clicked"),this.settings.checkbox.tie_selection&&this.element.addClass("jstree-checkbox-selection")},this)).on("loading.jstree",a.proxy(function(){this[this._data.checkbox.visible?"show_checkboxes":"hide_checkboxes"]()},this)),-1!==this.settings.checkbox.cascade.indexOf("undetermined")&&this.element.on("changed.jstree uncheck_node.jstree check_node.jstree uncheck_all.jstree check_all.jstree move_node.jstree copy_node.jstree redraw.jstree open_node.jstree",a.proxy(function(){this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(a.proxy(this._undetermined,this),50)},this)),this.settings.checkbox.tie_selection||this.element.on("model.jstree",a.proxy(function(a,b){var c=this._model.data,d=c[b.parent],e=b.nodes,f,g;for(f=0,g=e.length;g>f;f++)c[e[f]].state.checked=c[e[f]].state.checked||c[e[f]].original&&c[e[f]].original.state&&c[e[f]].original.state.checked,c[e[f]].state.checked&&this._data.checkbox.selected.push(e[f])},this)),(-1!==this.settings.checkbox.cascade.indexOf("up")||-1!==this.settings.checkbox.cascade.indexOf("down"))&&this.element.on("model.jstree",a.proxy(function(b,c){var d=this._model.data,e=d[c.parent],f=c.nodes,g=[],h,i,j,k,l,m,n=this.settings.checkbox.cascade,o=this.settings.checkbox.tie_selection;if(-1!==n.indexOf("down"))if(e.state[o?"selected":"checked"]){for(i=0,j=f.length;j>i;i++)d[f[i]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(f)}else for(i=0,j=f.length;j>i;i++)if(d[f[i]].state[o?"selected":"checked"]){for(k=0,l=d[f[i]].children_d.length;l>k;k++)d[d[f[i]].children_d[k]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(d[f[i]].children_d)}if(-1!==n.indexOf("up")){for(i=0,j=e.children_d.length;j>i;i++)d[e.children_d[i]].children.length||g.push(d[e.children_d[i]].parent);for(g=a.vakata.array_unique(g),k=0,l=g.length;l>k;k++){e=d[g[k]];while(e&&e.id!==a.jstree.root){for(h=0,i=0,j=e.children.length;j>i;i++)h+=d[e.children[i]].state[o?"selected":"checked"];if(h!==j)break;e.state[o?"selected":"checked"]=!0,this._data[o?"core":"checkbox"].selected.push(e.id),m=this.get_node(e,!0),m&&m.length&&m.attr("aria-selected",!0).children(".jstree-anchor").addClass(o?"jstree-clicked":"jstree-checked"),e=this.get_node(e.parent)}}}this._data[o?"core":"checkbox"].selected=a.vakata.array_unique(this._data[o?"core":"checkbox"].selected)},this)).on(this.settings.checkbox.tie_selection?"select_node.jstree":"check_node.jstree",a.proxy(function(b,c){var d=this,e=c.node,f=this._model.data,g=this.get_node(e.parent),h,i,j,k,l=this.settings.checkbox.cascade,m=this.settings.checkbox.tie_selection,n={},o=this._data[m?"core":"checkbox"].selected;for(h=0,i=o.length;i>h;h++)n[o[h]]=!0;if(-1!==l.indexOf("down")){var p=this._cascade_new_checked_state(e.id,!0),q=e.children_d.concat(e.id);for(h=0,i=q.length;i>h;h++)p.indexOf(q[h])>-1?n[q[h]]=!0:delete n[q[h]]}if(-1!==l.indexOf("up"))while(g&&g.id!==a.jstree.root){for(j=0,h=0,i=g.children.length;i>h;h++)j+=f[g.children[h]].state[m?"selected":"checked"];if(j!==i)break;g.state[m?"selected":"checked"]=!0,n[g.id]=!0,k=this.get_node(g,!0),k&&k.length&&k.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),g=this.get_node(g.parent)}o=[];for(h in n)n.hasOwnProperty(h)&&o.push(h);this._data[m?"core":"checkbox"].selected=o},this)).on(this.settings.checkbox.tie_selection?"deselect_all.jstree":"uncheck_all.jstree",a.proxy(function(b,c){var d=this.get_node(a.jstree.root),e=this._model.data,f,g,h;for(f=0,g=d.children_d.length;g>f;f++)h=e[d.children_d[f]],h&&h.original&&h.original.state&&h.original.state.undetermined&&(h.original.state.undetermined=!1)},this)).on(this.settings.checkbox.tie_selection?"deselect_node.jstree":"uncheck_node.jstree",a.proxy(function(a,b){var c=this,d=b.node,e=this.get_node(d,!0),f,g,h,i=this.settings.checkbox.cascade,j=this.settings.checkbox.tie_selection,k=this._data[j?"core":"checkbox"].selected,l={},m=[],n=d.children_d.concat(d.id);if(-1!==i.indexOf("down")){var o=this._cascade_new_checked_state(d.id,!1);k=k.filter(function(a){return-1===n.indexOf(a)||o.indexOf(a)>-1})}if(-1!==i.indexOf("up")&&-1===k.indexOf(d.id)){for(f=0,g=d.parents.length;g>f;f++)h=this._model.data[d.parents[f]],h.state[j?"selected":"checked"]=!1,h&&h.original&&h.original.state&&h.original.state.undetermined&&(h.original.state.undetermined=!1),h=this.get_node(d.parents[f],!0),h&&h.length&&h.attr("aria-selected",!1).children(".jstree-anchor").removeClass(j?"jstree-clicked":"jstree-checked");k=k.filter(function(a){return-1===d.parents.indexOf(a)})}this._data[j?"core":"checkbox"].selected=k},this)),-1!==this.settings.checkbox.cascade.indexOf("up")&&this.element.on("delete_node.jstree",a.proxy(function(b,c){var d=this.get_node(c.parent),e=this._model.data,f,g,h,i,j=this.settings.checkbox.tie_selection;while(d&&d.id!==a.jstree.root&&!d.state[j?"selected":"checked"]){for(h=0,f=0,g=d.children.length;g>f;f++)h+=e[d.children[f]].state[j?"selected":"checked"];if(!(g>0&&h===g))break;d.state[j?"selected":"checked"]=!0,this._data[j?"core":"checkbox"].selected.push(d.id),i=this.get_node(d,!0),i&&i.length&&i.attr("aria-selected",!0).children(".jstree-anchor").addClass(j?"jstree-clicked":"jstree-checked"),d=this.get_node(d.parent)}},this)).on("move_node.jstree",a.proxy(function(b,c){var d=c.is_multi,e=c.old_parent,f=this.get_node(c.parent),g=this._model.data,h,i,j,k,l,m=this.settings.checkbox.tie_selection;if(!d){h=this.get_node(e);while(h&&h.id!==a.jstree.root&&!h.state[m?"selected":"checked"]){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(!(k>0&&i===k))break;h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),h=this.get_node(h.parent)}}h=f;while(h&&h.id!==a.jstree.root){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(i===k)h.state[m?"selected":"checked"]||(h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"));else{if(!h.state[m?"selected":"checked"])break;h.state[m?"selected":"checked"]=!1,this._data[m?"core":"checkbox"].selected=a.vakata.array_remove_item(this._data[m?"core":"checkbox"].selected,h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(m?"jstree-clicked":"jstree-checked")}h=this.get_node(h.parent)}},this))},this.get_undetermined=function(c){if(-1===this.settings.checkbox.cascade.indexOf("undetermined"))return[];var d,e,f,g,h={},i=this._model.data,j=this.settings.checkbox.tie_selection,k=this._data[j?"core":"checkbox"].selected,l=[],m=this,n=[];for(d=0,e=k.length;e>d;d++)if(i[k[d]]&&i[k[d]].parents)for(f=0,g=i[k[d]].parents.length;g>f;f++){if(h[i[k[d]].parents[f]]!==b)break;i[k[d]].parents[f]!==a.jstree.root&&(h[i[k[d]].parents[f]]=!0,l.push(i[k[d]].parents[f]))}for(this.element.find(".jstree-closed").not(":has(.jstree-children)").each(function(){var c=m.get_node(this),j;if(c)if(c.state.loaded){for(d=0,e=c.children_d.length;e>d;d++)if(j=i[c.children_d[d]],!j.state.loaded&&j.original&&j.original.state&&j.original.state.undetermined&&j.original.state.undetermined===!0)for(h[j.id]===b&&j.id!==a.jstree.root&&(h[j.id]=!0,l.push(j.id)),f=0,g=j.parents.length;g>f;f++)h[j.parents[f]]===b&&j.parents[f]!==a.jstree.root&&(h[j.parents[f]]=!0,l.push(j.parents[f]))}else if(c.original&&c.original.state&&c.original.state.undetermined&&c.original.state.undetermined===!0)for(h[c.id]===b&&c.id!==a.jstree.root&&(h[c.id]=!0,l.push(c.id)),f=0,g=c.parents.length;g>f;f++)h[c.parents[f]]===b&&c.parents[f]!==a.jstree.root&&(h[c.parents[f]]=!0,l.push(c.parents[f]))}),d=0,e=l.length;e>d;d++)i[l[d]].state[j?"selected":"checked"]||n.push(c?i[l[d]]:l[d]);return n},this._undetermined=function(){if(null!==this.element){var a=this.get_undetermined(!1),b,c,d;for(this.element.find(".jstree-undetermined").removeClass("jstree-undetermined"),b=0,c=a.length;c>b;b++)d=this.get_node(a[b],!0),d&&d.length&&d.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-undetermined")}},this.redraw_node=function(b,c,e,f){if(b=d.redraw_node.apply(this,arguments)){var g,h,i=null,k=null;for(g=0,h=b.childNodes.length;h>g;g++)if(b.childNodes[g]&&b.childNodes[g].className&&-1!==b.childNodes[g].className.indexOf("jstree-anchor")){i=b.childNodes[g];break}i&&(!this.settings.checkbox.tie_selection&&this._model.data[b.id].state.checked&&(i.className+=" jstree-checked"),k=j.cloneNode(!1),this._model.data[b.id].state.checkbox_disabled&&(k.className+=" jstree-checkbox-disabled"),i.insertBefore(k,i.childNodes[0]))}return e||-1===this.settings.checkbox.cascade.indexOf("undetermined")||(this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(a.proxy(this._undetermined,this),50)),b},this.show_checkboxes=function(){this._data.core.themes.checkboxes=!0,this.get_container_ul().removeClass("jstree-no-checkboxes")},this.hide_checkboxes=function(){this._data.core.themes.checkboxes=!1,this.get_container_ul().addClass("jstree-no-checkboxes")},this.toggle_checkboxes=function(){this._data.core.themes.checkboxes?this.hide_checkboxes():this.show_checkboxes()},this.is_undetermined=function(b){b=this.get_node(b);var c=this.settings.checkbox.cascade,d,e,f=this.settings.checkbox.tie_selection,g=this._data[f?"core":"checkbox"].selected,h=this._model.data;if(!b||b.state[f?"selected":"checked"]===!0||-1===c.indexOf("undetermined")||-1===c.indexOf("down")&&-1===c.indexOf("up"))return!1;if(!b.state.loaded&&b.original.state.undetermined===!0)return!0;for(d=0,e=b.children_d.length;e>d;d++)if(-1!==a.inArray(b.children_d[d],g)||!h[b.children_d[d]].state.loaded&&h[b.children_d[d]].original.state.undetermined)return!0;return!1},this.disable_checkbox=function(b){var c,d,e;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled||(b.state.checkbox_disabled=!0,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-checkbox-disabled"),this.trigger("disable_checkbox",{node:b})))):!1},this.enable_checkbox=function(b){var c,d,e;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled&&(b.state.checkbox_disabled=!1,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").removeClass("jstree-checkbox-disabled"),this.trigger("enable_checkbox",{node:b})))):!1},this.activate_node=function(b,c){return a(c.target).hasClass("jstree-checkbox-disabled")?!1:(this.settings.checkbox.tie_selection&&(this.settings.checkbox.whole_node||a(c.target).hasClass("jstree-checkbox"))&&(c.ctrlKey=!0),this.settings.checkbox.tie_selection||!this.settings.checkbox.whole_node&&!a(c.target).hasClass("jstree-checkbox")?d.activate_node.call(this,b,c):this.is_disabled(b)?!1:(this.is_checked(b)?this.uncheck_node(b,c):this.check_node(b,c),void this.trigger("activate_node",{node:this.get_node(b)})))},this._cascade_new_checked_state=function(a,b){var c=this,d=this.settings.checkbox.tie_selection,e=this._model.data[a],f=[],g=[],h,i,j;if(!this.settings.checkbox.cascade_to_disabled&&e.state.disabled||!this.settings.checkbox.cascade_to_hidden&&e.state.hidden)j=this.get_checked_descendants(a),e.state[d?"selected":"checked"]&&j.push(e.id),f=f.concat(j);else{if(e.children)for(h=0,i=e.children.length;i>h;h++){var k=e.children[h];j=c._cascade_new_checked_state(k,b),f=f.concat(j),j.indexOf(k)>-1&&g.push(k)}var l=c.get_node(e,!0),m=g.length>0&&g.length<e.children.length;e.original&&e.original.state&&e.original.state.undetermined&&(e.original.state.undetermined=m),m?(e.state[d?"selected":"checked"]=!1,l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(d?"jstree-clicked":"jstree-checked")):b&&g.length===e.children.length?(e.state[d?"selected":"checked"]=b,f.push(e.id),l.attr("aria-selected",!0).children(".jstree-anchor").addClass(d?"jstree-clicked":"jstree-checked")):(e.state[d?"selected":"checked"]=!1,l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(d?"jstree-clicked":"jstree-checked"))}return f},this.get_checked_descendants=function(a){var b=this,c=b.settings.checkbox.tie_selection,d=b._model.data[a];return d.children_d.filter(function(a){return b._model.data[a].state[c?"selected":"checked"]})},this.check_node=function(b,c){if(this.settings.checkbox.tie_selection)return this.select_node(b,!1,!0,c);var d,e,f,g;if(a.isArray(b)){for(b=b.slice(),e=0,f=b.length;f>e;e++)this.check_node(b[e],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(d=this.get_node(b,!0),void(b.state.checked||(b.state.checked=!0,this._data.checkbox.selected.push(b.id),d&&d.length&&d.children(".jstree-anchor").addClass("jstree-checked"),this.trigger("check_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.uncheck_node=function(b,c){if(this.settings.checkbox.tie_selection)return this.deselect_node(b,!1,c);var d,e,f;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.uncheck_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.checked&&(b.state.checked=!1,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,b.id),f.length&&f.children(".jstree-anchor").removeClass("jstree-checked"),this.trigger("uncheck_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.check_all=function(){if(this.settings.checkbox.tie_selection)return this.select_all();var b=this._data.checkbox.selected.concat([]),c,d;for(this._data.checkbox.selected=this._model.data[a.jstree.root].children_d.concat(),c=0,d=this._data.checkbox.selected.length;d>c;c++)this._model.data[this._data.checkbox.selected[c]]&&(this._model.data[this._data.checkbox.selected[c]].state.checked=!0);this.redraw(!0),this.trigger("check_all",{selected:this._data.checkbox.selected})},this.uncheck_all=function(){if(this.settings.checkbox.tie_selection)return this.deselect_all();var a=this._data.checkbox.selected.concat([]),b,c;for(b=0,c=this._data.checkbox.selected.length;c>b;b++)this._model.data[this._data.checkbox.selected[b]]&&(this._model.data[this._data.checkbox.selected[b]].state.checked=!1);this._data.checkbox.selected=[],this.element.find(".jstree-checked").removeClass("jstree-checked"),this.trigger("uncheck_all",{selected:this._data.checkbox.selected,node:a})},this.is_checked=function(b){return this.settings.checkbox.tie_selection?this.is_selected(b):(b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.checked:!1)},this.get_checked=function(b){return this.settings.checkbox.tie_selection?this.get_selected(b):b?a.map(this._data.checkbox.selected,a.proxy(function(a){return this.get_node(a)},this)):this._data.checkbox.selected},this.get_top_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_top_selected(b);var c=this.get_checked(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,a.proxy(function(a){return this.get_node(a)},this)):c},this.get_bottom_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_bottom_selected(b);var c=this.get_checked(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,a.proxy(function(a){return this.get_node(a)},this)):d},this.load_node=function(b,c){var e,f,g,h,i,j;if(!a.isArray(b)&&!this.settings.checkbox.tie_selection&&(j=this.get_node(b),j&&j.state.loaded))for(e=0,f=j.children_d.length;f>e;e++)this._model.data[j.children_d[e]].state.checked&&(i=!0,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,j.children_d[e]));return d.load_node.apply(this,arguments)},this.get_state=function(){var a=d.get_state.apply(this,arguments);return this.settings.checkbox.tie_selection?a:(a.checkbox=this._data.checkbox.selected.slice(),a)},this.set_state=function(b,c){var e=d.set_state.apply(this,arguments);if(e&&b.checkbox){if(!this.settings.checkbox.tie_selection){this.uncheck_all();var f=this;a.each(b.checkbox,function(a,b){f.check_node(b)})}return delete b.checkbox,this.set_state(b,c),!1}return e},this.refresh=function(a,b){return this.settings.checkbox.tie_selection&&(this._data.checkbox.selected=[]),d.refresh.apply(this,arguments)}},a.jstree.defaults.conditionalselect=function(){return!0},a.jstree.plugins.conditionalselect=function(a,b){this.activate_node=function(a,c){return this.settings.conditionalselect.call(this,this.get_node(a),c)?b.activate_node.call(this,a,c):void 0}},a.jstree.defaults.contextmenu={select_node:!0,show_at_node:!0,items:function(b,c){return{create:{separator_before:!1,separator_after:!0,_disabled:!1,label:"Create",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.create_node(d,{},"last",function(a){try{c.edit(a)}catch(b){setTimeout(function(){c.edit(a)},0)}})}},rename:{separator_before:!1,separator_after:!1,_disabled:!1,label:"Rename",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.edit(d)}},remove:{separator_before:!1,icon:!1,separator_after:!1,_disabled:!1,label:"Delete",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.delete_node(c.get_selected()):c.delete_node(d)}},ccp:{separator_before:!0,icon:!1,separator_after:!1,label:"Edit",action:!1,submenu:{cut:{separator_before:!1,separator_after:!1,label:"Cut",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.cut(c.get_top_selected()):c.cut(d)}},copy:{separator_before:!1,icon:!1,separator_after:!1,label:"Copy",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.copy(c.get_top_selected()):c.copy(d)}},paste:{separator_before:!1,icon:!1,_disabled:function(b){return!a.jstree.reference(b.reference).can_paste()},separator_after:!1,label:"Paste",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.paste(d)}}}}}}},a.jstree.plugins.contextmenu=function(c,d){this.bind=function(){d.bind.call(this);var b=0,c=null,e,f;this.element.on("init.jstree loading.jstree ready.jstree",a.proxy(function(){this.get_container_ul().addClass("jstree-contextmenu")},this)).on("contextmenu.jstree",".jstree-anchor",a.proxy(function(a,d){"input"!==a.target.tagName.toLowerCase()&&(a.preventDefault(),b=a.ctrlKey?+new Date:0,(d||c)&&(b=+new Date+1e4),c&&clearTimeout(c),this.is_loading(a.currentTarget)||this.show_contextmenu(a.currentTarget,a.pageX,a.pageY,a))},this)).on("click.jstree",".jstree-anchor",a.proxy(function(c){this._data.contextmenu.visible&&(!b||+new Date-b>250)&&a.vakata.context.hide(),b=0},this)).on("touchstart.jstree",".jstree-anchor",function(b){b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(e=b.originalEvent.changedTouches[0].clientX,f=b.originalEvent.changedTouches[0].clientY,c=setTimeout(function(){a(b.currentTarget).trigger("contextmenu",!0)},750))}).on("touchmove.vakata.jstree",function(b){c&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(Math.abs(e-b.originalEvent.changedTouches[0].clientX)>10||Math.abs(f-b.originalEvent.changedTouches[0].clientY)>10)&&(clearTimeout(c),a.vakata.context.hide())}).on("touchend.vakata.jstree",function(a){c&&clearTimeout(c)}),a(i).on("context_hide.vakata.jstree",a.proxy(function(b,c){this._data.contextmenu.visible=!1,a(c.reference).removeClass("jstree-context")},this))},this.teardown=function(){this._data.contextmenu.visible&&a.vakata.context.hide(),d.teardown.call(this)},this.show_contextmenu=function(c,d,e,f){if(c=this.get_node(c),!c||c.id===a.jstree.root)return!1;var g=this.settings.contextmenu,h=this.get_node(c,!0),i=h.children(".jstree-anchor"),j=!1,k=!1;(g.show_at_node||d===b||e===b)&&(j=i.offset(),d=j.left,e=j.top+this._data.core.li_height),this.settings.contextmenu.select_node&&!this.is_selected(c)&&this.activate_node(c,f),k=g.items,a.isFunction(k)&&(k=k.call(this,c,a.proxy(function(a){this._show_contextmenu(c,d,e,a)},this))),a.isPlainObject(k)&&this._show_contextmenu(c,d,e,k)},this._show_contextmenu=function(b,c,d,e){var f=this.get_node(b,!0),g=f.children(".jstree-anchor");a(i).one("context_show.vakata.jstree",a.proxy(function(b,c){var d="jstree-contextmenu jstree-"+this.get_theme()+"-contextmenu";a(c.element).addClass(d),g.addClass("jstree-context")},this)),this._data.contextmenu.visible=!0,a.vakata.context.show(g,{x:c,y:d},e),this.trigger("show_contextmenu",{node:b,x:c,y:d})}},function(a){var b=!1,c={element:!1,reference:!1,position_x:0,position_y:0,items:[],html:"",is_visible:!1};a.vakata.context={settings:{hide_onmouseleave:0,icons:!0},_trigger:function(b){a(i).triggerHandler("context_"+b+".vakata",{reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}})},_execute:function(b){return b=c.items[b],b&&(!b._disabled||a.isFunction(b._disabled)&&!b._disabled({item:b,reference:c.reference,element:c.element}))&&b.action?b.action.call(null,{item:b,reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}}):!1},_parse:function(b,d){if(!b)return!1;d||(c.html="",c.items=[]);var e="",f=!1,g;return d&&(e+="<ul>"),a.each(b,function(b,d){return d?(c.items.push(d),!f&&d.separator_before&&(e+="<li class='vakata-context-separator'><a href='#' "+(a.vakata.context.settings.icons?"":'style="margin-left:0px;"')+"> </a></li>"),f=!1,e+="<li class='"+(d._class||"")+(d._disabled===!0||a.isFunction(d._disabled)&&d._disabled({item:d,reference:c.reference,element:c.element})?" vakata-contextmenu-disabled ":"")+"' "+(d.shortcut?" data-shortcut='"+d.shortcut+"' ":"")+">",e+="<a href='#' rel='"+(c.items.length-1)+"' "+(d.title?"title='"+d.title+"'":"")+">",a.vakata.context.settings.icons&&(e+="<i ",d.icon&&(e+=-1!==d.icon.indexOf("/")||-1!==d.icon.indexOf(".")?" style='background:url(\""+d.icon+"\") center center no-repeat' ":" class='"+d.icon+"' "),e+="></i><span class='vakata-contextmenu-sep'> </span>"),e+=(a.isFunction(d.label)?d.label({item:b,reference:c.reference,element:c.element}):d.label)+(d.shortcut?' <span class="vakata-contextmenu-shortcut vakata-contextmenu-shortcut-'+d.shortcut+'">'+(d.shortcut_label||"")+"</span>":"")+"</a>",
|
5 |
d.submenu&&(g=a.vakata.context._parse(d.submenu,!0),g&&(e+=g)),e+="</li>",void(d.separator_after&&(e+="<li class='vakata-context-separator'><a href='#' "+(a.vakata.context.settings.icons?"":'style="margin-left:0px;"')+"> </a></li>",f=!0))):!0}),e=e.replace(/<li class\='vakata-context-separator'\><\/li\>$/,""),d&&(e+="</ul>"),d||(c.html=e,a.vakata.context._trigger("parse")),e.length>10?e:!1},_show_submenu:function(c){if(c=a(c),c.length&&c.children("ul").length){var d=c.children("ul"),e=c.offset().left,f=e+c.outerWidth(),g=c.offset().top,h=d.width(),i=d.height(),j=a(window).width()+a(window).scrollLeft(),k=a(window).height()+a(window).scrollTop();b?c[f-(h+10+c.outerWidth())<0?"addClass":"removeClass"]("vakata-context-left"):c[f+h>j&&e>j-f?"addClass":"removeClass"]("vakata-context-right"),g+i+10>k&&d.css("bottom","-1px"),c.hasClass("vakata-context-right")?h>e&&d.css("margin-right",e-h):h>j-f&&d.css("margin-left",j-f-h),d.show()}},show:function(d,e,f){var g,h,j,k,l,m,n,o,p=!0;switch(c.element&&c.element.length&&c.element.width(""),p){case!e&&!d:return!1;case!!e&&!!d:c.reference=d,c.position_x=e.x,c.position_y=e.y;break;case!e&&!!d:c.reference=d,g=d.offset(),c.position_x=g.left+d.outerHeight(),c.position_y=g.top;break;case!!e&&!d:c.position_x=e.x,c.position_y=e.y}d&&!f&&a(d).data("vakata_contextmenu")&&(f=a(d).data("vakata_contextmenu")),a.vakata.context._parse(f)&&c.element.html(c.html),c.items.length&&(c.element.appendTo(i.body),h=c.element,j=c.position_x,k=c.position_y,l=h.width(),m=h.height(),n=a(window).width()+a(window).scrollLeft(),o=a(window).height()+a(window).scrollTop(),b&&(j-=h.outerWidth()-a(d).outerWidth(),j<a(window).scrollLeft()+20&&(j=a(window).scrollLeft()+20)),j+l+20>n&&(j=n-(l+20)),k+m+20>o&&(k=o-(m+20)),c.element.css({left:j,top:k}).show().find("a").first().focus().parent().addClass("vakata-context-hover"),c.is_visible=!0,a.vakata.context._trigger("show"))},hide:function(){c.is_visible&&(c.element.hide().find("ul").hide().end().find(":focus").blur().end().detach(),c.is_visible=!1,a.vakata.context._trigger("hide"))}},a(function(){b="rtl"===a(i.body).css("direction");var d=!1;c.element=a("<ul class='vakata-context'></ul>"),c.element.on("mouseenter","li",function(b){b.stopImmediatePropagation(),a.contains(this,b.relatedTarget)||(d&&clearTimeout(d),c.element.find(".vakata-context-hover").removeClass("vakata-context-hover").end(),a(this).siblings().find("ul").hide().end().end().parentsUntil(".vakata-context","li").addBack().addClass("vakata-context-hover"),a.vakata.context._show_submenu(this))}).on("mouseleave","li",function(b){a.contains(this,b.relatedTarget)||a(this).find(".vakata-context-hover").addBack().removeClass("vakata-context-hover")}).on("mouseleave",function(b){a(this).find(".vakata-context-hover").removeClass("vakata-context-hover"),a.vakata.context.settings.hide_onmouseleave&&(d=setTimeout(function(b){return function(){a.vakata.context.hide()}}(this),a.vakata.context.settings.hide_onmouseleave))}).on("click","a",function(b){b.preventDefault(),a(this).blur().parent().hasClass("vakata-context-disabled")||a.vakata.context._execute(a(this).attr("rel"))===!1||a.vakata.context.hide()}).on("keydown","a",function(b){var d=null;switch(b.which){case 13:case 32:b.type="click",b.preventDefault(),a(b.currentTarget).trigger(b);break;case 37:c.is_visible&&(c.element.find(".vakata-context-hover").last().closest("li").first().find("ul").hide().find(".vakata-context-hover").removeClass("vakata-context-hover").end().end().children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 38:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").prevAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").last()),d.addClass("vakata-context-hover").children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 39:c.is_visible&&(c.element.find(".vakata-context-hover").last().children("ul").show().children("li:not(.vakata-context-separator)").removeClass("vakata-context-hover").first().addClass("vakata-context-hover").children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 40:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").nextAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").first()),d.addClass("vakata-context-hover").children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 27:a.vakata.context.hide(),b.preventDefault()}}).on("keydown",function(a){a.preventDefault();var b=c.element.find(".vakata-contextmenu-shortcut-"+a.which).parent();b.parent().not(".vakata-context-disabled")&&b.click()}),a(i).on("mousedown.vakata.jstree",function(b){c.is_visible&&c.element[0]!==b.target&&!a.contains(c.element[0],b.target)&&a.vakata.context.hide()}).on("context_show.vakata.jstree",function(a,d){c.element.find("li:has(ul)").children("a").addClass("vakata-context-parent"),b&&c.element.addClass("vakata-context-rtl").css("direction","rtl"),c.element.find("ul").hide().end()})})}(a),a.jstree.defaults.dnd={copy:!0,open_timeout:500,is_draggable:!0,check_while_dragging:!0,always_copy:!1,inside_pos:0,drag_selection:!0,touch:!0,large_drop_target:!1,large_drag_target:!1,use_html5:!1};var k,l;a.jstree.plugins.dnd=function(b,c){this.init=function(a,b){c.init.call(this,a,b),this.settings.dnd.use_html5=this.settings.dnd.use_html5&&"draggable"in i.createElement("span")},this.bind=function(){c.bind.call(this),this.element.on(this.settings.dnd.use_html5?"dragstart.jstree":"mousedown.jstree touchstart.jstree",this.settings.dnd.large_drag_target?".jstree-node":".jstree-anchor",a.proxy(function(b){if(this.settings.dnd.large_drag_target&&a(b.target).closest(".jstree-node")[0]!==b.currentTarget)return!0;if("touchstart"===b.type&&(!this.settings.dnd.touch||"selected"===this.settings.dnd.touch&&!a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").hasClass("jstree-clicked")))return!0;var c=this.get_node(b.target),d=this.is_selected(c)&&this.settings.dnd.drag_selection?this.get_top_selected().length:1,e=d>1?d+" "+this.get_string("nodes"):this.get_text(b.currentTarget);if(this.settings.core.force_text&&(e=a.vakata.html.escape(e)),c&&c.id&&c.id!==a.jstree.root&&(1===b.which||"touchstart"===b.type||"dragstart"===b.type)&&(this.settings.dnd.is_draggable===!0||a.isFunction(this.settings.dnd.is_draggable)&&this.settings.dnd.is_draggable.call(this,d>1?this.get_top_selected(!0):[c],b))){if(k={jstree:!0,origin:this,obj:this.get_node(c,!0),nodes:d>1?this.get_top_selected():[c.id]},l=b.currentTarget,!this.settings.dnd.use_html5)return this.element.trigger("mousedown.jstree"),a.vakata.dnd.start(b,k,'<div id="jstree-dnd" class="jstree-'+this.get_theme()+" jstree-"+this.get_theme()+"-"+this.get_theme_variant()+" "+(this.settings.core.themes.responsive?" jstree-dnd-responsive":"")+'"><i class="jstree-icon jstree-er"></i>'+e+'<ins class="jstree-copy" style="display:none;">+</ins></div>');a.vakata.dnd._trigger("start",b,{helper:a(),element:l,data:k})}},this)),this.settings.dnd.use_html5&&this.element.on("dragover.jstree",function(b){return b.preventDefault(),a.vakata.dnd._trigger("move",b,{helper:a(),element:l,data:k}),!1}).on("drop.jstree",a.proxy(function(b){return b.preventDefault(),a.vakata.dnd._trigger("stop",b,{helper:a(),element:l,data:k}),!1},this))},this.redraw_node=function(a,b,d,e){if(a=c.redraw_node.apply(this,arguments),a&&this.settings.dnd.use_html5)if(this.settings.dnd.large_drag_target)a.setAttribute("draggable",!0);else{var f,g,h=null;for(f=0,g=a.childNodes.length;g>f;f++)if(a.childNodes[f]&&a.childNodes[f].className&&-1!==a.childNodes[f].className.indexOf("jstree-anchor")){h=a.childNodes[f];break}h&&h.setAttribute("draggable",!0)}return a}},a(function(){var c=!1,d=!1,e=!1,f=!1,g=a('<div id="jstree-marker"> </div>').hide();a(i).on("dragover.vakata.jstree",function(b){l&&a.vakata.dnd._trigger("move",b,{helper:a(),element:l,data:k})}).on("drop.vakata.jstree",function(b){l&&(a.vakata.dnd._trigger("stop",b,{helper:a(),element:l,data:k}),l=null,k=null)}).on("dnd_start.vakata.jstree",function(a,b){c=!1,e=!1,b&&b.data&&b.data.jstree&&g.appendTo(i.body)}).on("dnd_move.vakata.jstree",function(h,i){var j=i.event.target!==e.target;if(f&&(!i.event||"dragover"!==i.event.type||j)&&clearTimeout(f),i&&i.data&&i.data.jstree&&(!i.event.target.id||"jstree-marker"!==i.event.target.id)){e=i.event;var k=a.jstree.reference(i.event.target),l=!1,m=!1,n=!1,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E;if(k&&k._data&&k._data.dnd)if(g.attr("class","jstree-"+k.get_theme()+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")),D=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey)),i.helper.children().attr("class","jstree-"+k.get_theme()+" jstree-"+k.get_theme()+"-"+k.get_theme_variant()+" "+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")).find(".jstree-copy").first()[D?"show":"hide"](),i.event.target!==k.element[0]&&i.event.target!==k.get_container_ul()[0]||0!==k.get_container_ul().children().length){if(l=k.settings.dnd.large_drop_target?a(i.event.target).closest(".jstree-node").children(".jstree-anchor"):a(i.event.target).closest(".jstree-anchor"),l&&l.length&&l.parent().is(".jstree-closed, .jstree-open, .jstree-leaf")&&(m=l.offset(),n=(i.event.pageY!==b?i.event.pageY:i.event.originalEvent.pageY)-m.top,r=l.outerHeight(),u=r/3>n?["b","i","a"]:n>r-r/3?["a","i","b"]:n>r/2?["i","a","b"]:["i","b","a"],a.each(u,function(b,e){switch(e){case"b":p=m.left-6,q=m.top,s=k.get_parent(l),t=l.parent().index();break;case"i":B=k.settings.dnd.inside_pos,C=k.get_node(l.parent()),p=m.left-2,q=m.top+r/2+1,s=C.id,t="first"===B?0:"last"===B?C.children.length:Math.min(B,C.children.length);break;case"a":p=m.left-6,q=m.top+r,s=k.get_parent(l),t=l.parent().index()+1}for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(y=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",z=t,"move_node"===y&&"a"===e&&i.data.origin&&i.data.origin===k&&s===k.get_parent(i.data.nodes[w])&&(A=k.get_node(s),z>a.inArray(i.data.nodes[w],A.children)&&(z-=1)),v=v&&(k&&k.settings&&k.settings.dnd&&k.settings.dnd.check_while_dragging===!1||k.check(y,i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],s,z,{dnd:!0,ref:k.get_node(l.parent()),pos:e,origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin})),!v){k&&k.last_error&&(d=k.last_error());break}return"i"===e&&l.parent().is(".jstree-closed")&&k.settings.dnd.open_timeout&&(!i.event||"dragover"!==i.event.type||j)&&(f&&clearTimeout(f),f=setTimeout(function(a,b){return function(){a.open_node(b)}}(k,l),k.settings.dnd.open_timeout)),v?(E=k.get_node(s,!0),E.hasClass(".jstree-dnd-parent")||(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),E.addClass("jstree-dnd-parent")),c={ins:k,par:s,pos:"i"!==e||"last"!==B||0!==t||k.is_loaded(C)?t:"last"},g.css({left:p+"px",top:q+"px"}).show(),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"),d={},u=!0,!1):void 0}),u===!0))return}else{for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(v=v&&k.check(i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],a.jstree.root,"last",{dnd:!0,ref:k.get_node(a.jstree.root),pos:"i",origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin}),!v)break;if(v)return c={ins:k,par:a.jstree.root,pos:"last"},g.hide(),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),void(i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"))}a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),c=!1,i.helper.find(".jstree-icon").removeClass("jstree-ok").addClass("jstree-er"),i.event.originalEvent&&i.event.originalEvent.dataTransfer,g.hide()}}).on("dnd_scroll.vakata.jstree",function(a,b){b&&b.data&&b.data.jstree&&(g.hide(),c=!1,e=!1,b.helper.find(".jstree-icon").first().removeClass("jstree-ok").addClass("jstree-er"))}).on("dnd_stop.vakata.jstree",function(b,h){if(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),f&&clearTimeout(f),h&&h.data&&h.data.jstree){g.hide().detach();var i,j,k=[];if(c){for(i=0,j=h.data.nodes.length;j>i;i++)k[i]=h.data.origin?h.data.origin.get_node(h.data.nodes[i]):h.data.nodes[i];c.ins[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(h.event.metaKey||h.event.ctrlKey))?"copy_node":"move_node"](k,c.par,c.pos,!1,!1,!1,h.data.origin)}else i=a(h.event.target).closest(".jstree"),i.length&&d&&d.error&&"check"===d.error&&(i=i.jstree(!0),i&&i.settings.core.error.call(this,d));e=!1,c=!1}}).on("keyup.jstree keydown.jstree",function(b,h){h=a.vakata.dnd._get(),h&&h.data&&h.data.jstree&&("keyup"===b.type&&27===b.which?(f&&clearTimeout(f),c=!1,d=!1,e=!1,f=!1,g.hide().detach(),a.vakata.dnd._clean()):(h.helper.find(".jstree-copy").first()[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(b.metaKey||b.ctrlKey))?"show":"hide"](),e&&(e.metaKey=b.metaKey,e.ctrlKey=b.ctrlKey,a.vakata.dnd._trigger("move",e))))})}),function(a){a.vakata.html={div:a("<div />"),escape:function(b){return a.vakata.html.div.text(b).html()},strip:function(b){return a.vakata.html.div.empty().append(a.parseHTML(b)).text()}};var c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1};a.vakata.dnd={settings:{scroll_speed:10,scroll_proximity:20,helper_left:5,helper_top:10,threshold:5,threshold_touch:10},_trigger:function(c,d,e){e===b&&(e=a.vakata.dnd._get()),e.event=d,a(i).triggerHandler("dnd_"+c+".vakata",e)},_get:function(){return{data:c.data,element:c.element,helper:c.helper}},_clean:function(){c.helper&&c.helper.remove(),c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1},a(i).off("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).off("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop)},_scroll:function(b){if(!c.scroll_e||!c.scroll_l&&!c.scroll_t)return c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),!1;if(!c.scroll_i)return c.scroll_i=setInterval(a.vakata.dnd._scroll,100),!1;if(b===!0)return!1;var d=c.scroll_e.scrollTop(),e=c.scroll_e.scrollLeft();c.scroll_e.scrollTop(d+c.scroll_t*a.vakata.dnd.settings.scroll_speed),c.scroll_e.scrollLeft(e+c.scroll_l*a.vakata.dnd.settings.scroll_speed),(d!==c.scroll_e.scrollTop()||e!==c.scroll_e.scrollLeft())&&a.vakata.dnd._trigger("scroll",c.scroll_e)},start:function(b,d,e){"touchstart"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag&&a.vakata.dnd.stop({});try{b.currentTarget.unselectable="on",b.currentTarget.onselectstart=function(){return!1},b.currentTarget.style&&(b.currentTarget.style.touchAction="none",b.currentTarget.style.msTouchAction="none",b.currentTarget.style.MozUserSelect="none")}catch(f){}return c.init_x=b.pageX,c.init_y=b.pageY,c.data=d,c.is_down=!0,c.element=b.currentTarget,c.target=b.target,c.is_touch="touchstart"===b.type,e!==!1&&(c.helper=a("<div id='vakata-dnd'></div>").html(e).css({display:"block",margin:"0",padding:"0",position:"absolute",top:"-2000px",lineHeight:"16px",zIndex:"10000"})),a(i).on("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).on("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop),!1},drag:function(b){if("touchmove"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_down){if(!c.is_drag){if(!(Math.abs(b.pageX-c.init_x)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)||Math.abs(b.pageY-c.init_y)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)))return;c.helper&&(c.helper.appendTo(i.body),c.helper_w=c.helper.outerWidth()),c.is_drag=!0,a(c.target).one("click.vakata",!1),a.vakata.dnd._trigger("start",b)}var d=!1,e=!1,f=!1,g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n=!1;return c.scroll_t=0,c.scroll_l=0,c.scroll_e=!1,a(a(b.target).parentsUntil("body").addBack().get().reverse()).filter(function(){return/^auto|scroll$/.test(a(this).css("overflow"))&&(this.scrollHeight>this.offsetHeight||this.scrollWidth>this.offsetWidth)}).each(function(){var d=a(this),e=d.offset();return this.scrollHeight>this.offsetHeight&&(e.top+d.height()-b.pageY<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=1),b.pageY-e.top<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=-1)),this.scrollWidth>this.offsetWidth&&(e.left+d.width()-b.pageX<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=1),b.pageX-e.left<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=-1)),c.scroll_t||c.scroll_l?(c.scroll_e=a(this),!1):void 0}),c.scroll_e||(d=a(i),e=a(window),f=d.height(),g=e.height(),h=d.width(),j=e.width(),k=d.scrollTop(),l=d.scrollLeft(),f>g&&b.pageY-k<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=-1),f>g&&g-(b.pageY-k)<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=1),h>j&&b.pageX-l<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=-1),h>j&&j-(b.pageX-l)<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=1),(c.scroll_t||c.scroll_l)&&(c.scroll_e=d)),c.scroll_e&&a.vakata.dnd._scroll(!0),c.helper&&(m=parseInt(b.pageY+a.vakata.dnd.settings.helper_top,10),n=parseInt(b.pageX+a.vakata.dnd.settings.helper_left,10),f&&m+25>f&&(m=f-50),h&&n+c.helper_w>h&&(n=h-(c.helper_w+2)),c.helper.css({left:n+"px",top:m+"px"})),a.vakata.dnd._trigger("move",b),!1}},stop:function(b){if("touchend"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag)b.target!==c.target&&a(c.target).off("click.vakata"),a.vakata.dnd._trigger("stop",b);else if("touchend"===b.type&&b.target===c.target){var d=setTimeout(function(){a(b.target).click()},100);a(b.target).one("click",function(){d&&clearTimeout(d)})}return a.vakata.dnd._clean(),!1}}}(a),a.jstree.defaults.massload=null,a.jstree.plugins.massload=function(b,c){this.init=function(a,b){this._data.massload={},c.init.call(this,a,b)},this._load_nodes=function(b,d,e,f){var g=this.settings.massload,h=JSON.stringify(b),i=[],j=this._model.data,k,l,m;if(!e){for(k=0,l=b.length;l>k;k++)(!j[b[k]]||!j[b[k]].state.loaded&&!j[b[k]].state.failed||f)&&(i.push(b[k]),m=this.get_node(b[k],!0),m&&m.length&&m.addClass("jstree-loading").attr("aria-busy",!0));if(this._data.massload={},i.length){if(a.isFunction(g))return g.call(this,i,a.proxy(function(a){var g,h;if(a)for(g in a)a.hasOwnProperty(g)&&(this._data.massload[g]=a[g]);for(g=0,h=b.length;h>g;g++)m=this.get_node(b[g],!0),m&&m.length&&m.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)},this));if("object"==typeof g&&g&&g.url)return g=a.extend(!0,{},g),a.isFunction(g.url)&&(g.url=g.url.call(this,i)),a.isFunction(g.data)&&(g.data=g.data.call(this,i)),a.ajax(g).done(a.proxy(function(a,g,h){var i,j;if(a)for(i in a)a.hasOwnProperty(i)&&(this._data.massload[i]=a[i]);for(i=0,j=b.length;j>i;i++)m=this.get_node(b[i],!0),m&&m.length&&m.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)},this)).fail(a.proxy(function(a){c._load_nodes.call(this,b,d,e,f)},this))}}return c._load_nodes.call(this,b,d,e,f)},this._load_node=function(b,d){var e=this._data.massload[b.id],f=null,g;return e?(f=this["string"==typeof e?"_append_html_data":"_append_json_data"](b,"string"==typeof e?a(a.parseHTML(e)).filter(function(){return 3!==this.nodeType}):e,function(a){d.call(this,a)}),g=this.get_node(b.id,!0),g&&g.length&&g.removeClass("jstree-loading").attr("aria-busy",!1),delete this._data.massload[b.id],f):c._load_node.call(this,b,d)}},a.jstree.defaults.search={ajax:!1,fuzzy:!1,case_sensitive:!1,show_only_matches:!1,show_only_matches_children:!1,close_opened_onclear:!0,search_leaves_only:!1,search_callback:!1},a.jstree.plugins.search=function(c,d){this.bind=function(){d.bind.call(this),this._data.search.str="",this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=!1,this._data.search.smc=!1,this._data.search.hdn=[],this.element.on("search.jstree",a.proxy(function(b,c){if(this._data.search.som&&c.res.length){var d=this._model.data,e,f,g=[],h,i;for(e=0,f=c.res.length;f>e;e++)if(d[c.res[e]]&&!d[c.res[e]].state.hidden&&(g.push(c.res[e]),g=g.concat(d[c.res[e]].parents),this._data.search.smc))for(h=0,i=d[c.res[e]].children_d.length;i>h;h++)d[d[c.res[e]].children_d[h]]&&!d[d[c.res[e]].children_d[h]].state.hidden&&g.push(d[c.res[e]].children_d[h]);g=a.vakata.array_remove_item(a.vakata.array_unique(g),a.jstree.root),this._data.search.hdn=this.hide_all(!0),this.show_node(g,!0),this.redraw(!0)}},this)).on("clear_search.jstree",a.proxy(function(a,b){this._data.search.som&&b.res.length&&(this.show_node(this._data.search.hdn,!0),this.redraw(!0))},this))},this.search=function(c,d,e,f,g,h){if(c===!1||""===a.trim(c.toString()))return this.clear_search();f=this.get_node(f),f=f&&f.id?f.id:null,c=c.toString();var i=this.settings.search,j=i.ajax?i.ajax:!1,k=this._model.data,l=null,m=[],n=[],o,p;if(this._data.search.res.length&&!g&&this.clear_search(),e===b&&(e=i.show_only_matches),h===b&&(h=i.show_only_matches_children),!d&&j!==!1)return a.isFunction(j)?j.call(this,c,a.proxy(function(b){b&&b.d&&(b=b.d),this._load_nodes(a.isArray(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})},this),f):(j=a.extend({},j),j.data||(j.data={}),j.data.str=c,f&&(j.data.inside=f),this._data.search.lastRequest&&this._data.search.lastRequest.abort(),this._data.search.lastRequest=a.ajax(j).fail(a.proxy(function(){this._data.core.last_error={error:"ajax",plugin:"search",id:"search_01",reason:"Could not load search parents",data:JSON.stringify(j)},this.settings.core.error.call(this,this._data.core.last_error)},this)).done(a.proxy(function(b){b&&b.d&&(b=b.d),this._load_nodes(a.isArray(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})},this)),this._data.search.lastRequest);if(g||(this._data.search.str=c,this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=e,this._data.search.smc=h),l=new a.vakata.search(c,!0,{caseSensitive:i.case_sensitive,fuzzy:i.fuzzy}),a.each(k[f?f:a.jstree.root].children_d,function(a,b){var d=k[b];d.text&&!d.state.hidden&&(!i.search_leaves_only||d.state.loaded&&0===d.children.length)&&(i.search_callback&&i.search_callback.call(this,c,d)||!i.search_callback&&l.search(d.text).isMatch)&&(m.push(b),n=n.concat(d.parents))}),m.length){for(n=a.vakata.array_unique(n),o=0,p=n.length;p>o;o++)n[o]!==a.jstree.root&&k[n[o]]&&this.open_node(n[o],null,0)===!0&&this._data.search.opn.push(n[o]);g?(this._data.search.dom=this._data.search.dom.add(a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #")))),this._data.search.res=a.vakata.array_unique(this._data.search.res.concat(m))):(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.res=m),this._data.search.dom.children(".jstree-anchor").addClass("jstree-search")}this.trigger("search",{nodes:this._data.search.dom,str:c,res:this._data.search.res,show_only_matches:e})},this.clear_search=function(){this.settings.search.close_opened_onclear&&this.close_node(this._data.search.opn,0),this.trigger("clear_search",{nodes:this._data.search.dom,str:this._data.search.str,res:this._data.search.res}),this._data.search.res.length&&(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(this._data.search.res,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.dom.children(".jstree-anchor").removeClass("jstree-search")),this._data.search.str="",this._data.search.res=[],this._data.search.opn=[],this._data.search.dom=a()},this.redraw_node=function(b,c,e,f){if(b=d.redraw_node.apply(this,arguments),b&&-1!==a.inArray(b.id,this._data.search.res)){var g,h,i=null;for(g=0,h=b.childNodes.length;h>g;g++)if(b.childNodes[g]&&b.childNodes[g].className&&-1!==b.childNodes[g].className.indexOf("jstree-anchor")){i=b.childNodes[g];break}i&&(i.className+=" jstree-search")}return b}},function(a){a.vakata.search=function(b,c,d){d=d||{},d=a.extend({},a.vakata.search.defaults,d),d.fuzzy!==!1&&(d.fuzzy=!0),b=d.caseSensitive?b:b.toLowerCase();var e=d.location,f=d.distance,g=d.threshold,h=b.length,i,j,k,l;return h>32&&(d.fuzzy=!1),d.fuzzy&&(i=1<<h-1,j=function(){var a={},c=0;for(c=0;h>c;c++)a[b.charAt(c)]=0;for(c=0;h>c;c++)a[b.charAt(c)]|=1<<h-c-1;return a}(),k=function(a,b){var c=a/h,d=Math.abs(e-b);return f?c+d/f:d?1:c}),l=function(a){if(a=d.caseSensitive?a:a.toLowerCase(),b===a||-1!==a.indexOf(b))return{isMatch:!0,score:0};if(!d.fuzzy)return{isMatch:!1,score:1};var c,f,l=a.length,m=g,n=a.indexOf(b,e),o,p,q=h+l,r,s,t,u,v,w=1,x=[];for(-1!==n&&(m=Math.min(k(0,n),m),n=a.lastIndexOf(b,e+h),-1!==n&&(m=Math.min(k(0,n),m))),n=-1,c=0;h>c;c++){o=0,p=q;while(p>o)k(c,e+p)<=m?o=p:q=p,p=Math.floor((q-o)/2+o);for(q=p,s=Math.max(1,e-p+1),t=Math.min(e+p,l)+h,u=new Array(t+2),u[t+1]=(1<<c)-1,f=t;f>=s;f--)if(v=j[a.charAt(f-1)],0===c?u[f]=(u[f+1]<<1|1)&v:u[f]=(u[f+1]<<1|1)&v|((r[f+1]|r[f])<<1|1)|r[f+1],u[f]&i&&(w=k(c,f-1),m>=w)){if(m=w,n=f-1,x.push(n),!(n>e))break;s=Math.max(1,2*e-n)}if(k(c+1,e)>m)break;r=u}return{isMatch:n>=0,score:w}},c===!0?{search:l}:l(c)},a.vakata.search.defaults={location:0,distance:100,threshold:.6,fuzzy:!1,caseSensitive:!1}}(a),a.jstree.defaults.sort=function(a,b){return this.get_text(a)>this.get_text(b)?1:-1},a.jstree.plugins.sort=function(b,c){this.bind=function(){c.bind.call(this),this.element.on("model.jstree",a.proxy(function(a,b){this.sort(b.parent,!0)},this)).on("rename_node.jstree create_node.jstree",a.proxy(function(a,b){this.sort(b.parent||b.node.parent,!1),this.redraw_node(b.parent||b.node.parent,!0)},this)).on("move_node.jstree copy_node.jstree",a.proxy(function(a,b){this.sort(b.parent,!1),this.redraw_node(b.parent,!0)},this))},this.sort=function(b,c){var d,e;if(b=this.get_node(b),b&&b.children&&b.children.length&&(b.children.sort(a.proxy(this.settings.sort,this)),c))for(d=0,e=b.children_d.length;e>d;d++)this.sort(b.children_d[d],!1)}};var m=!1;a.jstree.defaults.state={key:"jstree",events:"changed.jstree open_node.jstree close_node.jstree check_node.jstree uncheck_node.jstree",ttl:!1,filter:!1,preserve_loaded:!1},a.jstree.plugins.state=function(b,c){this.bind=function(){c.bind.call(this);var b=a.proxy(function(){this.element.on(this.settings.state.events,a.proxy(function(){m&&clearTimeout(m),m=setTimeout(a.proxy(function(){this.save_state()},this),100)},this)),this.trigger("state_ready")},this);this.element.on("ready.jstree",a.proxy(function(a,c){this.element.one("restore_state.jstree",b),this.restore_state()||b()},this))},this.save_state=function(){var b=this.get_state();this.settings.state.preserve_loaded||delete b.core.loaded;var c={state:b,ttl:this.settings.state.ttl,sec:+new Date};a.vakata.storage.set(this.settings.state.key,JSON.stringify(c))},this.restore_state=function(){var b=a.vakata.storage.get(this.settings.state.key);if(b)try{b=JSON.parse(b)}catch(c){return!1}return b&&b.ttl&&b.sec&&+new Date-b.sec>b.ttl?!1:(b&&b.state&&(b=b.state),b&&a.isFunction(this.settings.state.filter)&&(b=this.settings.state.filter.call(this,b)),b?(this.settings.state.preserve_loaded||delete b.core.loaded,this.element.one("set_state.jstree",function(c,d){d.instance.trigger("restore_state",{state:a.extend(!0,{},b)})}),this.set_state(b),!0):!1)},this.clear_state=function(){return a.vakata.storage.del(this.settings.state.key)}},function(a,b){a.vakata.storage={set:function(a,b){return window.localStorage.setItem(a,b)},get:function(a){return window.localStorage.getItem(a)},del:function(a){return window.localStorage.removeItem(a)}}}(a),a.jstree.defaults.types={"default":{}},a.jstree.defaults.types[a.jstree.root]={},a.jstree.plugins.types=function(c,d){this.init=function(c,e){var f,g;if(e&&e.types&&e.types["default"])for(f in e.types)if("default"!==f&&f!==a.jstree.root&&e.types.hasOwnProperty(f))for(g in e.types["default"])e.types["default"].hasOwnProperty(g)&&e.types[f][g]===b&&(e.types[f][g]=e.types["default"][g]);d.init.call(this,c,e),this._model.data[a.jstree.root].type=a.jstree.root},this.refresh=function(b,c){d.refresh.call(this,b,c),this._model.data[a.jstree.root].type=a.jstree.root},this.bind=function(){this.element.on("model.jstree",a.proxy(function(c,d){var e=this._model.data,f=d.nodes,g=this.settings.types,h,i,j="default",k;for(h=0,i=f.length;i>h;h++){if(j="default",e[f[h]].original&&e[f[h]].original.type&&g[e[f[h]].original.type]&&(j=e[f[h]].original.type),e[f[h]].data&&e[f[h]].data.jstree&&e[f[h]].data.jstree.type&&g[e[f[h]].data.jstree.type]&&(j=e[f[h]].data.jstree.type),e[f[h]].type=j,e[f[h]].icon===!0&&g[j].icon!==b&&(e[f[h]].icon=g[j].icon),g[j].li_attr!==b&&"object"==typeof g[j].li_attr)for(k in g[j].li_attr)if(g[j].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].li_attr[k]===b?e[f[h]].li_attr[k]=g[j].li_attr[k]:"class"===k&&(e[f[h]].li_attr["class"]=g[j].li_attr["class"]+" "+e[f[h]].li_attr["class"])}if(g[j].a_attr!==b&&"object"==typeof g[j].a_attr)for(k in g[j].a_attr)if(g[j].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].a_attr[k]===b?e[f[h]].a_attr[k]=g[j].a_attr[k]:"href"===k&&"#"===e[f[h]].a_attr[k]?e[f[h]].a_attr.href=g[j].a_attr.href:"class"===k&&(e[f[h]].a_attr["class"]=g[j].a_attr["class"]+" "+e[f[h]].a_attr["class"])}}e[a.jstree.root].type=a.jstree.root},this)),d.bind.call(this)},this.get_json=function(b,c,e){var f,g,h=this._model.data,i=c?a.extend(!0,{},c,{no_id:!1}):{},j=d.get_json.call(this,b,i,e);if(j===!1)return!1;if(a.isArray(j))for(f=0,g=j.length;g>f;f++)j[f].type=j[f].id&&h[j[f].id]&&h[j[f].id].type?h[j[f].id].type:"default",c&&c.no_id&&(delete j[f].id,j[f].li_attr&&j[f].li_attr.id&&delete j[f].li_attr.id,j[f].a_attr&&j[f].a_attr.id&&delete j[f].a_attr.id);else j.type=j.id&&h[j.id]&&h[j.id].type?h[j.id].type:"default",c&&c.no_id&&(j=this._delete_ids(j));return j},this._delete_ids=function(b){if(a.isArray(b)){for(var c=0,d=b.length;d>c;c++)b[c]=this._delete_ids(b[c]);return b}return delete b.id,
|
6 |
+
b.li_attr&&b.li_attr.id&&delete b.li_attr.id,b.a_attr&&b.a_attr.id&&delete b.a_attr.id,b.children&&a.isArray(b.children)&&(b.children=this._delete_ids(b.children)),b},this.check=function(c,e,f,g,h){if(d.check.call(this,c,e,f,g,h)===!1)return!1;e=e&&e.id?e:this.get_node(e),f=f&&f.id?f:this.get_node(f);var i=e&&e.id?h&&h.origin?h.origin:a.jstree.reference(e.id):null,j,k,l,m;switch(i=i&&i._model&&i._model.data?i._model.data:null,c){case"create_node":case"move_node":case"copy_node":if("move_node"!==c||-1===a.inArray(e.id,f.children)){if(j=this.get_rules(f),j.max_children!==b&&-1!==j.max_children&&j.max_children===f.children.length)return this._data.core.last_error={error:"check",plugin:"types",id:"types_01",reason:"max_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(j.valid_children!==b&&-1!==j.valid_children&&-1===a.inArray(e.type||"default",j.valid_children))return this._data.core.last_error={error:"check",plugin:"types",id:"types_02",reason:"valid_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(i&&e.children_d&&e.parents){for(k=0,l=0,m=e.children_d.length;m>l;l++)k=Math.max(k,i[e.children_d[l]].parents.length);k=k-e.parents.length+1}(0>=k||k===b)&&(k=1);do{if(j.max_depth!==b&&-1!==j.max_depth&&j.max_depth<k)return this._data.core.last_error={error:"check",plugin:"types",id:"types_03",reason:"max_depth prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;f=this.get_node(f.parent),j=this.get_rules(f),k++}while(f)}}return!0},this.get_rules=function(a){if(a=this.get_node(a),!a)return!1;var c=this.get_type(a,!0);return c.max_depth===b&&(c.max_depth=-1),c.max_children===b&&(c.max_children=-1),c.valid_children===b&&(c.valid_children=-1),c},this.get_type=function(b,c){return b=this.get_node(b),b?c?a.extend({type:b.type},this.settings.types[b.type]):b.type:!1},this.set_type=function(c,d){var e=this._model.data,f,g,h,i,j,k,l,m;if(a.isArray(c)){for(c=c.slice(),g=0,h=c.length;h>g;g++)this.set_type(c[g],d);return!0}if(f=this.settings.types,c=this.get_node(c),!f[d]||!c)return!1;if(l=this.get_node(c,!0),l&&l.length&&(m=l.children(".jstree-anchor")),i=c.type,j=this.get_icon(c),c.type=d,(j===!0||!f[i]||f[i].icon!==b&&j===f[i].icon)&&this.set_icon(c,f[d].icon!==b?f[d].icon:!0),f[i]&&f[i].li_attr!==b&&"object"==typeof f[i].li_attr)for(k in f[i].li_attr)if(f[i].li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].li_attr["class"]=(e[c.id].li_attr["class"]||"").replace(f[i].li_attr[k],""),l&&l.removeClass(f[i].li_attr[k])):e[c.id].li_attr[k]===f[i].li_attr[k]&&(e[c.id].li_attr[k]=null,l&&l.removeAttr(k))}if(f[i]&&f[i].a_attr!==b&&"object"==typeof f[i].a_attr)for(k in f[i].a_attr)if(f[i].a_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].a_attr["class"]=(e[c.id].a_attr["class"]||"").replace(f[i].a_attr[k],""),m&&m.removeClass(f[i].a_attr[k])):e[c.id].a_attr[k]===f[i].a_attr[k]&&("href"===k?(e[c.id].a_attr[k]="#",m&&m.attr("href","#")):(delete e[c.id].a_attr[k],m&&m.removeAttr(k)))}if(f[d].li_attr!==b&&"object"==typeof f[d].li_attr)for(k in f[d].li_attr)if(f[d].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].li_attr[k]===b?(e[c.id].li_attr[k]=f[d].li_attr[k],l&&("class"===k?l.addClass(f[d].li_attr[k]):l.attr(k,f[d].li_attr[k]))):"class"===k&&(e[c.id].li_attr["class"]=f[d].li_attr[k]+" "+e[c.id].li_attr["class"],l&&l.addClass(f[d].li_attr[k]))}if(f[d].a_attr!==b&&"object"==typeof f[d].a_attr)for(k in f[d].a_attr)if(f[d].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].a_attr[k]===b?(e[c.id].a_attr[k]=f[d].a_attr[k],m&&("class"===k?m.addClass(f[d].a_attr[k]):m.attr(k,f[d].a_attr[k]))):"href"===k&&"#"===e[c.id].a_attr[k]?(e[c.id].a_attr.href=f[d].a_attr.href,m&&m.attr("href",f[d].a_attr.href)):"class"===k&&(e[c.id].a_attr["class"]=f[d].a_attr["class"]+" "+e[c.id].a_attr["class"],m&&m.addClass(f[d].a_attr[k]))}return!0}},a.jstree.defaults.unique={case_sensitive:!1,trim_whitespace:!1,duplicate:function(a,b){return a+" ("+b+")"}},a.jstree.plugins.unique=function(c,d){this.check=function(b,c,e,f,g){if(d.check.call(this,b,c,e,f,g)===!1)return!1;if(c=c&&c.id?c:this.get_node(c),e=e&&e.id?e:this.get_node(e),!e||!e.children)return!0;var h="rename_node"===b?f:c.text,i=[],j=this.settings.unique.case_sensitive,k=this.settings.unique.trim_whitespace,l=this._model.data,m,n,o;for(m=0,n=e.children.length;n>m;m++)o=l[e.children[m]].text,j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),i.push(o);switch(j||(h=h.toLowerCase()),k&&(h=h.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),b){case"delete_node":return!0;case"rename_node":return o=c.text||"",j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),m=-1===a.inArray(h,i)||c.text&&o===h,m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_01",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"create_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_04",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"copy_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_02",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"move_node":return m=c.parent===e.id&&(!g||!g.is_multi)||-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_03",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m}return!0},this.create_node=function(c,e,f,g,h){if(!e||e.text===b){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return d.create_node.call(this,c,e,f,g,h);if(f=f===b?"last":f,!f.toString().match(/^(before|after)$/)&&!h&&!this.is_loaded(c))return d.create_node.call(this,c,e,f,g,h);e||(e={});var i,j,k,l,m,n=this._model.data,o=this.settings.unique.case_sensitive,p=this.settings.unique.trim_whitespace,q=this.settings.unique.duplicate,r;for(j=i=this.get_string("New node"),k=[],l=0,m=c.children.length;m>l;l++)r=n[c.children[l]].text,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),k.push(r);l=1,r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));while(-1!==a.inArray(r,k))j=q.call(this,i,++l).toString(),r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));e.text=j}return d.create_node.call(this,c,e,f,g,h)}};var n=i.createElement("DIV");if(n.setAttribute("unselectable","on"),n.setAttribute("role","presentation"),n.className="jstree-wholerow",n.innerHTML=" ",a.jstree.plugins.wholerow=function(b,c){this.bind=function(){c.bind.call(this),this.element.on("ready.jstree set_state.jstree",a.proxy(function(){this.hide_dots()},this)).on("init.jstree loading.jstree ready.jstree",a.proxy(function(){this.get_container_ul().addClass("jstree-wholerow-ul")},this)).on("deselect_all.jstree",a.proxy(function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked")},this)).on("changed.jstree",a.proxy(function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked");var c=!1,d,e;for(d=0,e=b.selected.length;e>d;d++)c=this.get_node(b.selected[d],!0),c&&c.length&&c.children(".jstree-wholerow").addClass("jstree-wholerow-clicked")},this)).on("open_node.jstree",a.proxy(function(a,b){this.get_node(b.node,!0).find(".jstree-clicked").parent().children(".jstree-wholerow").addClass("jstree-wholerow-clicked")},this)).on("hover_node.jstree dehover_node.jstree",a.proxy(function(a,b){"hover_node"===a.type&&this.is_disabled(b.node)||this.get_node(b.node,!0).children(".jstree-wholerow")["hover_node"===a.type?"addClass":"removeClass"]("jstree-wholerow-hovered")},this)).on("contextmenu.jstree",".jstree-wholerow",a.proxy(function(b){if(this._data.contextmenu){b.preventDefault();var c=a.Event("contextmenu",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey,pageX:b.pageX,pageY:b.pageY});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c)}},this)).on("click.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).focus()}).on("dblclick.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("dblclick",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).focus()}).on("click.jstree",".jstree-leaf > .jstree-ocl",a.proxy(function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).focus()},this)).on("mouseover.jstree",".jstree-wholerow, .jstree-icon",a.proxy(function(a){return a.stopImmediatePropagation(),this.is_disabled(a.currentTarget)||this.hover_node(a.currentTarget),!1},this)).on("mouseleave.jstree",".jstree-node",a.proxy(function(a){this.dehover_node(a.currentTarget)},this))},this.teardown=function(){this.settings.wholerow&&this.element.find(".jstree-wholerow").remove(),c.teardown.call(this)},this.redraw_node=function(b,d,e,f){if(b=c.redraw_node.apply(this,arguments)){var g=n.cloneNode(!0);-1!==a.inArray(b.id,this._data.core.selected)&&(g.className+=" jstree-wholerow-clicked"),this._data.core.focused&&this._data.core.focused===b.id&&(g.className+=" jstree-wholerow-hovered"),b.insertBefore(g,b.childNodes[0])}return b}},window.customElements&&Object&&Object.create){var o=Object.create(HTMLElement.prototype);o.createdCallback=function(){var b={core:{},plugins:[]},c;for(c in a.jstree.plugins)a.jstree.plugins.hasOwnProperty(c)&&this.attributes[c]&&(b.plugins.push(c),this.getAttribute(c)&&JSON.parse(this.getAttribute(c))&&(b[c]=JSON.parse(this.getAttribute(c))));for(c in a.jstree.defaults.core)a.jstree.defaults.core.hasOwnProperty(c)&&this.attributes[c]&&(b.core[c]=JSON.parse(this.getAttribute(c))||this.getAttribute(c));a(this).jstree(b)};try{window.customElements.define("vakata-jstree",function(){},{prototype:o})}catch(p){}}}});
|
@@ -15,14 +15,20 @@ class UpdraftPlus_Temporary_Clone_Restore {
|
|
15 |
/**
|
16 |
* This function will add a ready_for_restore file in the updraft backup directory to indicate that we are ready to restore the received backup set
|
17 |
*
|
|
|
|
|
18 |
* @return void
|
19 |
*/
|
20 |
-
public function clone_ready_for_restore() {
|
21 |
global $updraftplus, $wp_filesystem;
|
22 |
|
23 |
-
$
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
|
27 |
if (!function_exists('WP_Filesystem')) require_once ABSPATH.'wp-admin/includes/file.php';
|
28 |
WP_Filesystem();
|
15 |
/**
|
16 |
* This function will add a ready_for_restore file in the updraft backup directory to indicate that we are ready to restore the received backup set
|
17 |
*
|
18 |
+
* @param String|Null $job_id - the job that is ready to restore, if known.
|
19 |
+
*
|
20 |
* @return void
|
21 |
*/
|
22 |
+
public function clone_ready_for_restore($job_id = null) {
|
23 |
global $updraftplus, $wp_filesystem;
|
24 |
|
25 |
+
$state_file = trailingslashit($updraftplus->backups_dir_location()). 'ready_for_restore';
|
26 |
+
|
27 |
+
if ($job_id) {
|
28 |
+
file_put_contents($state_file, $job_id);
|
29 |
+
} else {
|
30 |
+
touch($state_file);
|
31 |
+
}
|
32 |
|
33 |
if (!function_exists('WP_Filesystem')) require_once ABSPATH.'wp-admin/includes/file.php';
|
34 |
WP_Filesystem();
|
@@ -11,6 +11,52 @@ msgstr ""
|
|
11 |
"Language: af_ZA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
15 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
16 |
msgstr ""
|
@@ -23,7 +69,7 @@ msgstr ""
|
|
23 |
msgid "Your database user does not have permission to drop tables"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
28 |
msgstr ""
|
29 |
|
@@ -191,11 +237,11 @@ msgstr ""
|
|
191 |
msgid "WordPress installed"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: src/admin.php:
|
195 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: src/admin.php:
|
199 |
msgid "Exclude these from"
|
200 |
msgstr ""
|
201 |
|
@@ -235,7 +281,7 @@ msgstr ""
|
|
235 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
239 |
msgid "To create a temporary clone you need credit in your account."
|
240 |
msgstr ""
|
241 |
|
@@ -247,15 +293,15 @@ msgstr ""
|
|
247 |
msgid "failed to upload file to %s (see log file for more)"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/admin.php:
|
251 |
msgid "Dashboard:"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/admin.php:
|
255 |
msgid "Front page:"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/admin.php:
|
259 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
260 |
msgstr ""
|
261 |
|
@@ -267,14 +313,10 @@ msgstr ""
|
|
267 |
msgid "Current clones"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/class-updraftplus.php:
|
271 |
msgid "Your clone will now deploy this data to re-create your site."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/admin.php:942
|
275 |
-
msgid "The backup for the clone has been aborted."
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
#: src/admin.php:941
|
279 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
280 |
msgstr ""
|
@@ -337,70 +379,71 @@ msgstr ""
|
|
337 |
msgid "Account type"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
|
|
341 |
msgid "I accept the UpdraftClone terms and conditions"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
345 |
msgid "Not got an account? Get one by buying some tokens here."
|
346 |
msgstr ""
|
347 |
|
348 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
349 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
350 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
351 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
355 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
359 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
363 |
msgid "Flexible"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
367 |
msgid "Takes just the time needed to create a backup and send it."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
371 |
msgid "Fast"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
375 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
379 |
msgid "Secure"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
383 |
msgid "Runs on capacity from a leading cloud computing provider."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
387 |
msgid "Reliable"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
391 |
msgid "Press the buttons... UpdraftClone does the work."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
395 |
msgid "Easy"
|
396 |
msgstr ""
|
397 |
|
398 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
399 |
-
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test
|
400 |
msgstr ""
|
401 |
|
402 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
403 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
404 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
405 |
msgstr ""
|
406 |
|
@@ -574,11 +617,11 @@ msgstr ""
|
|
574 |
msgid "You can buy more temporary clone tokens here."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: src/admin.php:
|
578 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
582 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
583 |
msgstr ""
|
584 |
|
@@ -590,19 +633,19 @@ msgstr ""
|
|
590 |
msgid "Other great plugins"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: src/admin.php:
|
594 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: src/class-updraftplus.php:
|
598 |
msgid "Choose a default for each table"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: src/admin.php:
|
602 |
msgid "Sending files to remote site"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: src/admin.php:
|
606 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
607 |
msgstr ""
|
608 |
|
@@ -614,7 +657,7 @@ msgstr ""
|
|
614 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: src/admin.php:
|
618 |
msgid "Backup / Restore"
|
619 |
msgstr ""
|
620 |
|
@@ -638,7 +681,7 @@ msgstr ""
|
|
638 |
msgid "No previous backup found to add an increment to."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: src/restorer.php:
|
642 |
msgid "Requested character set (%s) is not present - changing to %s."
|
643 |
msgstr ""
|
644 |
|
@@ -662,7 +705,7 @@ msgstr ""
|
|
662 |
msgid "Refresh connection"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: src/addons/reporting.php:
|
666 |
msgid "Log all messages to syslog"
|
667 |
msgstr ""
|
668 |
|
@@ -690,11 +733,11 @@ msgstr ""
|
|
690 |
msgid "More information here."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: src/admin.php:669, src/admin.php:
|
694 |
msgid "Migrate / Clone"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: src/admin.php:
|
698 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
699 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
700 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
@@ -720,11 +763,11 @@ msgstr ""
|
|
720 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: src/admin.php:
|
724 |
msgid "(current version)"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: src/admin.php:
|
728 |
msgid "press here"
|
729 |
msgstr ""
|
730 |
|
@@ -738,15 +781,15 @@ msgstr ""
|
|
738 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: src/addons/incremental.php:
|
742 |
msgid "Tell me more"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: src/addons/incremental.php:
|
746 |
msgid "And then add an incremental backup"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: src/addons/incremental.php:
|
750 |
msgid "Every hour"
|
751 |
msgstr ""
|
752 |
|
@@ -758,8 +801,9 @@ msgstr ""
|
|
758 |
msgid "Available temporary clone tokens:"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: src/admin.php:
|
762 |
#: src/includes/class-commands.php:949,
|
|
|
763 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
764 |
msgid "Processing"
|
765 |
msgstr ""
|
@@ -776,7 +820,7 @@ msgstr ""
|
|
776 |
msgid "I consent to %s"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: src/admin.php:
|
780 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
781 |
msgid "One Time Password (check your OTP app to get this password)"
|
782 |
msgstr ""
|
@@ -825,7 +869,7 @@ msgstr ""
|
|
825 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: src/admin.php:
|
829 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
830 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
831 |
msgstr[0] ""
|
@@ -928,7 +972,7 @@ msgstr ""
|
|
928 |
msgid "Upload backup"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: src/admin.php:
|
932 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
933 |
msgstr ""
|
934 |
|
@@ -940,19 +984,19 @@ msgstr ""
|
|
940 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: src/admin.php:844, src/admin.php:
|
944 |
msgid "Upload"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: src/addons/reporting.php:
|
948 |
msgid "Only email the database backup"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: src/addons/reporting.php:
|
952 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: src/addons/reporting.php:
|
956 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
957 |
msgstr ""
|
958 |
|
@@ -1066,7 +1110,7 @@ msgstr ""
|
|
1066 |
msgid "Select your incremental restore point"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: src/addons/morefiles.php:
|
1070 |
msgid "(None configured)"
|
1071 |
msgstr ""
|
1072 |
|
@@ -1074,11 +1118,11 @@ msgstr ""
|
|
1074 |
msgid "Ensure you are logged into the correct account before continuing."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: src/admin.php:
|
1078 |
msgid "Remote storage method and instance id are required for authentication."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: src/admin.php:
|
1082 |
msgid "authentication error"
|
1083 |
msgstr ""
|
1084 |
|
@@ -1156,15 +1200,15 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
|
|
1156 |
msgstr[0] ""
|
1157 |
msgstr[1] ""
|
1158 |
|
1159 |
-
#: src/class-updraftplus.php:
|
1160 |
msgid "Your chosen replacement collation"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: src/class-updraftplus.php:
|
1164 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: src/class-updraftplus.php:
|
1168 |
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."
|
1169 |
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."
|
1170 |
msgstr[0] ""
|
@@ -1232,15 +1276,15 @@ msgstr[1] ""
|
|
1232 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: src/class-updraftplus.php:
|
1236 |
msgid "Your chosen character set to use instead:"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: src/class-updraftplus.php:
|
1240 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: src/class-updraftplus.php:
|
1244 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1245 |
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."
|
1246 |
msgstr[0] ""
|
@@ -1330,23 +1374,23 @@ msgstr ""
|
|
1330 |
msgid "Account ID"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: src/class-updraftplus.php:
|
1334 |
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."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: src/class-updraftplus.php:
|
1338 |
msgid "the migrator add-on"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: src/class-updraftplus.php:
|
1342 |
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."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: src/class-updraftplus.php:
|
1346 |
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."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: src/class-updraftplus.php:
|
1350 |
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."
|
1351 |
msgstr ""
|
1352 |
|
@@ -1362,14 +1406,14 @@ msgstr ""
|
|
1362 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: src/backup.php:456, src/backup.php:
|
1366 |
-
#: src/class-updraftplus.php:
|
1367 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1368 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: src/backup.php:450, src/backup.php:
|
1372 |
-
#: src/class-updraftplus.php:
|
1373 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1374 |
msgid "A PHP exception (%s) has occurred: %s"
|
1375 |
msgstr ""
|
@@ -1423,11 +1467,11 @@ msgstr ""
|
|
1423 |
msgid "Instant and secure logon with a wave of your phone."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/admin.php:
|
1427 |
msgid "Value"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/admin.php:
|
1431 |
msgid "Did not know how to delete from this cloud service."
|
1432 |
msgstr ""
|
1433 |
|
@@ -1443,11 +1487,11 @@ msgstr ""
|
|
1443 |
msgid "Cloud Files"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: src/admin.php:
|
1447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: src/admin.php:
|
1451 |
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."
|
1452 |
msgstr ""
|
1453 |
|
@@ -1456,23 +1500,23 @@ msgstr ""
|
|
1456 |
msgid "UpdraftVault"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: src/includes/class-wpadmin-commands.php:
|
1460 |
msgid "archive"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: src/includes/class-wpadmin-commands.php:
|
1464 |
msgid "Extra database"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: src/admin.php:
|
1468 |
msgid "Press here to download or browse"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: src/admin.php:
|
1472 |
msgid "Error: invalid path"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: src/admin.php:
|
1476 |
msgid "An error occurred when fetching storage module options: "
|
1477 |
msgstr ""
|
1478 |
|
@@ -1508,15 +1552,15 @@ msgstr ""
|
|
1508 |
msgid "Skipped tables:"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: src/class-updraftplus.php:
|
1512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: src/admin.php:
|
1516 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: src/admin.php:
|
1520 |
msgid "All WordPress tables will be backed up."
|
1521 |
msgstr ""
|
1522 |
|
@@ -1548,15 +1592,15 @@ msgstr ""
|
|
1548 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: src/addons/moredatabase.php:
|
1552 |
msgid "tables"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: src/addons/moredatabase.php:
|
1556 |
msgid "WordPress database"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: src/addons/moredatabase.php:
|
1560 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1561 |
msgstr ""
|
1562 |
|
@@ -1675,7 +1719,22 @@ msgstr ""
|
|
1675 |
msgid "Installed"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: src/templates/wp-admin/settings/tab-addons.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1679 |
msgid "Free"
|
1680 |
msgstr ""
|
1681 |
|
@@ -1698,28 +1757,28 @@ msgstr ""
|
|
1698 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: src/addons/morefiles.php:
|
1702 |
msgid "Please choose a file or directory"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: src/addons/morefiles.php:
|
1706 |
msgid "Confirm"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: src/addons/morefiles.php:
|
1710 |
msgid "Go up a directory"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: src/addons/morefiles.php:
|
1714 |
msgid "Add directory..."
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: src/addons/morefiles.php:
|
1718 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1719 |
msgid "Edit"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: src/addons/morefiles.php:
|
1723 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1724 |
msgstr ""
|
1725 |
|
@@ -1792,7 +1851,7 @@ msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
|
|
1792 |
msgstr ""
|
1793 |
|
1794 |
#: src/includes/updraftplus-notices.php:238
|
1795 |
-
msgid "Happy New Year - 20% off UpdraftPlus Premium until January
|
1796 |
msgstr ""
|
1797 |
|
1798 |
#: src/includes/updraftplus-notices.php:225
|
@@ -1978,11 +2037,11 @@ msgstr ""
|
|
1978 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: src/admin.php:
|
1982 |
msgid "Remote files deleted:"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: src/admin.php:
|
1986 |
msgid "Local files deleted:"
|
1987 |
msgstr ""
|
1988 |
|
@@ -2038,16 +2097,16 @@ msgstr ""
|
|
2038 |
msgid "Account is not authorized (%s)."
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2042 |
msgid "Your IP address:"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2046 |
-
#: src/udaddons/updraftplus-addons.php:
|
2047 |
msgid "To remove any block, please go here."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:
|
2051 |
msgid "An error response was received; HTTP code:"
|
2052 |
msgstr ""
|
2053 |
|
@@ -2063,11 +2122,11 @@ msgstr ""
|
|
2063 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: src/admin.php:
|
2067 |
msgid "To fix this problem go here."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: src/admin.php:
|
2071 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2072 |
msgstr ""
|
2073 |
|
@@ -2099,7 +2158,7 @@ msgstr ""
|
|
2099 |
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."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: src/udaddons/updraftplus-addons.php:
|
2103 |
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."
|
2104 |
msgstr ""
|
2105 |
|
@@ -2143,11 +2202,11 @@ msgstr ""
|
|
2143 |
msgid "Public key was sent to:"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: src/backup.php:
|
2147 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: src/backup.php:
|
2151 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2152 |
msgstr ""
|
2153 |
|
@@ -2205,8 +2264,8 @@ msgstr ""
|
|
2205 |
msgid "login"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: src/addons/reporting.php:
|
2209 |
-
#: src/addons/reporting.php:
|
2210 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2211 |
msgstr ""
|
2212 |
|
@@ -2214,7 +2273,7 @@ msgstr ""
|
|
2214 |
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."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: src/class-updraftplus.php:
|
2218 |
msgid "Size: %s MB"
|
2219 |
msgstr ""
|
2220 |
|
@@ -2222,7 +2281,7 @@ msgstr ""
|
|
2222 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: src/class-updraftplus.php:
|
2226 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2227 |
msgstr ""
|
2228 |
|
@@ -2328,23 +2387,23 @@ msgstr ""
|
|
2328 |
msgid "UpdraftCentral Connection"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: src/backup.php:1042, src/class-updraftplus.php:
|
2332 |
msgid "The backup was aborted by the user"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: src/admin.php:
|
2336 |
msgid "Your settings have been saved."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: src/admin.php:
|
2340 |
msgid "Total backup size:"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: src/admin.php:
|
2344 |
msgid "stop"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: src/admin.php:903, src/admin.php:
|
2348 |
msgid "The backup has finished running"
|
2349 |
msgstr ""
|
2350 |
|
@@ -2406,19 +2465,19 @@ msgstr ""
|
|
2406 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: src/class-updraftplus.php:
|
2410 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: src/class-updraftplus.php:
|
2414 |
msgid "Please read this link for important information on this process."
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: src/class-updraftplus.php:
|
2418 |
msgid "It will be imported as a new site."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: src/admin.php:
|
2422 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2423 |
msgid "Dismiss"
|
2424 |
msgstr ""
|
@@ -2484,7 +2543,7 @@ msgstr ""
|
|
2484 |
msgid "Call WordPress action:"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: src/admin.php:
|
2488 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2489 |
msgstr ""
|
2490 |
|
@@ -2516,63 +2575,63 @@ msgstr ""
|
|
2516 |
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)."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: src/admin.php:
|
2520 |
msgid "Send this backup to remote storage"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: src/admin.php:
|
2524 |
msgid "Check out UpdraftPlus Vault."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: src/admin.php:
|
2528 |
msgid "Not got any remote storage?"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: src/admin.php:
|
2532 |
msgid "settings"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: src/admin.php:
|
2536 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: src/admin.php:
|
2540 |
msgid "Include any files in the backup"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: src/admin.php:
|
2544 |
msgid "Include the database in the backup"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: src/admin.php:
|
2548 |
msgid "Continue restoration"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: src/admin.php:
|
2552 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: src/admin.php:
|
2556 |
msgid "Unfinished restoration"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: src/admin.php:
|
2560 |
msgid "%s minutes, %s seconds"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: src/admin.php:
|
2564 |
msgid "Backup Contents And Schedule"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: src/admin.php:
|
2568 |
msgid "Premium / Extensions"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: src/admin.php:
|
2572 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: src/addons/morefiles.php:
|
2576 |
msgctxt "(verb)"
|
2577 |
msgid "Download"
|
2578 |
msgstr ""
|
@@ -2585,7 +2644,7 @@ msgstr ""
|
|
2585 |
msgid "Extensions"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: src/admin.php:685, src/admin.php:
|
2589 |
msgid "Advanced Tools"
|
2590 |
msgstr ""
|
2591 |
|
@@ -2704,7 +2763,7 @@ msgstr ""
|
|
2704 |
msgid "Could not access container"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: src/class-updraftplus.php:
|
2708 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2709 |
msgstr ""
|
2710 |
|
@@ -2834,7 +2893,7 @@ msgstr ""
|
|
2834 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: src/admin.php:
|
2838 |
msgid "Backup sets removed:"
|
2839 |
msgstr ""
|
2840 |
|
@@ -2874,11 +2933,11 @@ msgstr ""
|
|
2874 |
msgid "Add an additional retention rule..."
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: src/restorer.php:
|
2878 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: src/restorer.php:
|
2882 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2883 |
msgstr ""
|
2884 |
|
@@ -2886,15 +2945,15 @@ msgstr ""
|
|
2886 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: src/class-updraftplus.php:
|
2890 |
msgid "You must upgrade MySQL to be able to use this database."
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: src/class-updraftplus.php:
|
2894 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: src/admin.php:
|
2898 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2899 |
msgstr ""
|
2900 |
|
@@ -2922,11 +2981,11 @@ msgstr ""
|
|
2922 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: src/admin.php:
|
2926 |
msgid "Go to the remote storage settings in order to connect."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: src/admin.php:
|
2930 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2931 |
msgstr ""
|
2932 |
|
@@ -3070,7 +3129,7 @@ msgstr ""
|
|
3070 |
msgid "Delete failed:"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: src/backup.php:
|
3074 |
msgid "The zip engine returned the message: %s."
|
3075 |
msgstr ""
|
3076 |
|
@@ -3150,7 +3209,7 @@ msgstr ""
|
|
3150 |
msgid "This storage method does not allow downloading"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: src/admin.php:
|
3154 |
msgid "(backup set imported from remote location)"
|
3155 |
msgstr ""
|
3156 |
|
@@ -3296,23 +3355,23 @@ msgstr ""
|
|
3296 |
msgid "Adding..."
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: src/udaddons/options.php:
|
3300 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: src/restorer.php:
|
3304 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: src/udaddons/updraftplus-addons.php:
|
3308 |
msgid "go here to change your password on updraftplus.com."
|
3309 |
msgstr ""
|
3310 |
|
3311 |
-
#: src/udaddons/updraftplus-addons.php:
|
3312 |
msgid "If you have forgotten your password "
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: src/udaddons/updraftplus-addons.php:
|
3316 |
msgid "Go here to re-enter your password."
|
3317 |
msgstr ""
|
3318 |
|
@@ -3350,7 +3409,7 @@ msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127
|
|
3350 |
msgstr ""
|
3351 |
|
3352 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3353 |
-
msgid "
|
3354 |
msgstr ""
|
3355 |
|
3356 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
@@ -3526,18 +3585,18 @@ msgstr ""
|
|
3526 |
|
3527 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3528 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3529 |
-
#: src/udaddons/updraftplus-addons.php:
|
3530 |
-
#: src/udaddons/updraftplus-addons.php:
|
3531 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3532 |
msgstr ""
|
3533 |
|
3534 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3535 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3536 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3540 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3541 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3542 |
msgstr ""
|
3543 |
|
@@ -3575,11 +3634,11 @@ msgstr ""
|
|
3575 |
msgid "Dismiss (for %s months)"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: src/addons/fixtime.php:
|
3579 |
msgid "(at same time as files backup)"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: src/admin.php:
|
3583 |
msgid "No backup has been completed"
|
3584 |
msgstr ""
|
3585 |
|
@@ -3653,12 +3712,12 @@ msgstr ""
|
|
3653 |
msgid "Check this box to have a basic report sent to"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: src/admin.php:
|
3657 |
msgctxt "i.e. Non-automatic"
|
3658 |
msgid "Manual"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: src/restorer.php:
|
3662 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3663 |
msgid "An error (%s) occurred:"
|
3664 |
msgstr ""
|
@@ -3667,11 +3726,11 @@ msgstr ""
|
|
3667 |
msgid "Change Lock Settings"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: src/addons/morefiles.php:
|
3671 |
msgid "Any other file/directory on your server that you wish to backup"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: src/admin.php:
|
3675 |
msgid "For even more features and personal support, check out "
|
3676 |
msgstr ""
|
3677 |
|
@@ -3757,15 +3816,15 @@ msgstr ""
|
|
3757 |
msgid "The admin password has now been removed."
|
3758 |
msgstr ""
|
3759 |
|
3760 |
-
#: src/addons/morefiles.php:
|
3761 |
msgid "(learn more about this significant option)"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: src/udaddons/options.php:
|
3765 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3766 |
msgstr ""
|
3767 |
|
3768 |
-
#: src/admin.php:
|
3769 |
msgid "View Log"
|
3770 |
msgstr ""
|
3771 |
|
@@ -3784,7 +3843,7 @@ msgstr ""
|
|
3784 |
msgid "and retain this many scheduled backups"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: src/admin.php:
|
3788 |
msgid "incremental backup; base backup: %s"
|
3789 |
msgstr ""
|
3790 |
|
@@ -3797,28 +3856,28 @@ msgstr ""
|
|
3797 |
msgid "Upload files into UpdraftPlus."
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: src/admin.php:
|
3801 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3802 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: src/class-updraftplus.php:
|
3806 |
msgid "Backup label:"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: src/addons/backblaze.php:205, src/admin.php:
|
3810 |
msgid "Error: unexpected file read fail"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: src/backup.php:
|
3814 |
msgid "check your log for more details."
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: src/backup.php:
|
3818 |
msgid "your web hosting account appears to be full; please see: %s"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: src/backup.php:
|
3822 |
msgid "A zip error occurred"
|
3823 |
msgstr ""
|
3824 |
|
@@ -3830,23 +3889,23 @@ msgstr ""
|
|
3830 |
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."
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:
|
3834 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:
|
3838 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:
|
3842 |
msgid "You need to supply both an email address and a password"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: src/class-updraftplus.php:
|
3846 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: src/class-updraftplus.php:
|
3850 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3851 |
msgstr ""
|
3852 |
|
@@ -3883,19 +3942,19 @@ msgstr ""
|
|
3883 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: src/class-updraftplus.php:
|
3887 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: src/class-updraftplus.php:
|
3891 |
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."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: src/class-updraftplus.php:
|
3895 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: src/class-updraftplus.php:
|
3899 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3900 |
msgstr ""
|
3901 |
|
@@ -3924,7 +3983,7 @@ msgstr ""
|
|
3924 |
msgid "UpdraftPlus is on social media - check us out!"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: src/addons/wp-cli.php:907, src/admin.php:
|
3928 |
msgid "Why am I seeing this?"
|
3929 |
msgstr ""
|
3930 |
|
@@ -3938,15 +3997,15 @@ msgstr ""
|
|
3938 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: src/admin.php:
|
3942 |
msgid "Start backup"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: src/class-updraftplus.php:
|
3946 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: src/admin.php:
|
3950 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
3951 |
msgstr ""
|
3952 |
|
@@ -3954,11 +4013,11 @@ msgstr ""
|
|
3954 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#: src/admin.php:
|
3958 |
msgid "This file could not be uploaded"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:
|
3962 |
msgid "You will find more information about this in the Settings section."
|
3963 |
msgstr ""
|
3964 |
|
@@ -3998,9 +4057,9 @@ msgstr ""
|
|
3998 |
msgid "Backup succeeded"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: src/addons/incremental.php:
|
4002 |
-
#: src/addons/incremental.php:
|
4003 |
-
#: src/admin.php:
|
4004 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4005 |
msgid "Every %s hours"
|
4006 |
msgstr ""
|
@@ -4039,7 +4098,7 @@ msgstr ""
|
|
4039 |
msgid "search term"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: src/restorer.php:
|
4043 |
msgid "Too many database errors have occurred - aborting"
|
4044 |
msgstr ""
|
4045 |
|
@@ -4075,11 +4134,11 @@ msgstr ""
|
|
4075 |
msgid "Free disk space in account:"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: src/admin.php:
|
4079 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: src/admin.php:817, src/admin.php:
|
4083 |
#: src/includes/deprecated-actions.php:29,
|
4084 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4085 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
@@ -4087,35 +4146,35 @@ msgstr ""
|
|
4087 |
msgid "Existing Backups"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: src/admin.php:
|
4091 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: src/admin.php:
|
4095 |
msgid "To make a backup, just press the Backup Now button."
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: src/admin.php:
|
4099 |
msgid "Welcome to UpdraftPlus!"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: src/addons/moredatabase.php:
|
4103 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: src/addons/moredatabase.php:
|
4107 |
msgid "Testing..."
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: src/addons/moredatabase.php:
|
4111 |
msgid "Test connection..."
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: src/addons/moredatabase.php:
|
4115 |
msgid "Table prefix"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: src/addons/moredatabase.php:
|
4119 |
msgid "Backup external database"
|
4120 |
msgstr ""
|
4121 |
|
@@ -4167,7 +4226,7 @@ msgstr ""
|
|
4167 |
msgid "user"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: src/class-updraftplus.php:
|
4171 |
msgid "External database (%s)"
|
4172 |
msgstr ""
|
4173 |
|
@@ -4185,7 +4244,7 @@ msgstr ""
|
|
4185 |
msgid "However, subsequent access attempts failed:"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: src/addons/wp-cli.php:437, src/admin.php:
|
4189 |
msgid "External database"
|
4190 |
msgstr ""
|
4191 |
|
@@ -4217,7 +4276,7 @@ msgstr ""
|
|
4217 |
msgid "use UpdraftPlus Premium"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: src/class-updraftplus.php:
|
4221 |
msgid "Decryption failed. The database file is encrypted."
|
4222 |
msgstr ""
|
4223 |
|
@@ -4225,8 +4284,8 @@ msgstr ""
|
|
4225 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4226 |
msgstr ""
|
4227 |
|
4228 |
-
#: src/restorer.php:2284, src/restorer.php:
|
4229 |
-
#: src/restorer.php:
|
4230 |
msgid "An error occurred on the first %s command - aborting run"
|
4231 |
msgstr ""
|
4232 |
|
@@ -4272,7 +4331,7 @@ msgstr ""
|
|
4272 |
msgid "Tenant"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
-
#: src/addons/wp-cli.php:800, src/admin.php:
|
4276 |
#: src/methods/openstack2.php:144,
|
4277 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4278 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
@@ -4418,7 +4477,7 @@ msgstr ""
|
|
4418 |
msgid "Failed to unpack the archive"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: src/class-updraftplus.php:
|
4422 |
msgid "Error - failed to download the file"
|
4423 |
msgstr ""
|
4424 |
|
@@ -4427,15 +4486,15 @@ msgstr ""
|
|
4427 |
msgid "Rescan local folder for new backup sets"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: src/udaddons/updraftplus-addons.php:
|
4431 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: src/udaddons/updraftplus-addons.php:
|
4435 |
msgid "It has been tested up to version %s."
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: src/udaddons/updraftplus-addons.php:
|
4439 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4440 |
msgstr ""
|
4441 |
|
@@ -4444,7 +4503,7 @@ msgid "password/key"
|
|
4444 |
msgstr ""
|
4445 |
|
4446 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4447 |
-
#: src/admin.php:
|
4448 |
msgid "Key"
|
4449 |
msgstr ""
|
4450 |
|
@@ -4460,24 +4519,24 @@ msgstr ""
|
|
4460 |
msgid "SCP/SFTP password/key"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4464 |
msgid "Files backup (created by %s)"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4468 |
msgid "Files and database WordPress backup (created by %s)"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: src/addons/importer.php:276, src/admin.php:
|
4472 |
#: src/includes/class-backup-history.php:435
|
4473 |
msgid "Backup created by: %s."
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: src/addons/wp-cli.php:431, src/admin.php:
|
4477 |
msgid "Database (created by %s)"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
-
#: src/addons/wp-cli.php:429, src/admin.php:
|
4481 |
msgid "unknown source"
|
4482 |
msgstr ""
|
4483 |
|
@@ -4492,15 +4551,15 @@ msgstr ""
|
|
4492 |
msgid "Upload backup files"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: src/admin.php:
|
4496 |
msgid "This backup was created by %s, and can be imported."
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: src/admin.php:
|
4500 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: src/admin.php:
|
4504 |
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."
|
4505 |
msgstr ""
|
4506 |
|
@@ -4517,7 +4576,7 @@ msgstr ""
|
|
4517 |
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))."
|
4518 |
msgstr ""
|
4519 |
|
4520 |
-
#: src/admin.php:
|
4521 |
#: src/restorer.php:1975
|
4522 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4523 |
msgstr ""
|
@@ -4556,16 +4615,16 @@ msgstr ""
|
|
4556 |
msgid "(Read more)"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#: src/addons/reporting.php:
|
4560 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#: src/addons/morefiles.php:
|
4564 |
msgid "No backup of location: there was nothing found to back up"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#: src/addons/moredatabase.php:
|
4568 |
-
#: src/addons/morefiles.php:
|
4569 |
msgid "Remove"
|
4570 |
msgstr ""
|
4571 |
|
@@ -4577,7 +4636,7 @@ msgstr ""
|
|
4577 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/addons/morefiles.php:
|
4581 |
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."
|
4582 |
msgstr ""
|
4583 |
|
@@ -4606,53 +4665,53 @@ msgstr ""
|
|
4606 |
msgid "Backup created by:"
|
4607 |
msgstr ""
|
4608 |
|
4609 |
-
#: src/udaddons/options.php:
|
4610 |
msgid "Available to claim on this site"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: src/udaddons/updraftplus-addons.php:
|
4614 |
msgid "To maintain your access to support, please renew."
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: src/udaddons/updraftplus-addons.php:
|
4618 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: src/udaddons/updraftplus-addons.php:
|
4622 |
msgid "To regain your access, please renew."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: src/udaddons/updraftplus-addons.php:
|
4626 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: src/udaddons/updraftplus-addons.php:
|
4630 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4631 |
msgstr ""
|
4632 |
|
4633 |
-
#: src/udaddons/updraftplus-addons.php:
|
4634 |
-
#: src/udaddons/updraftplus-addons.php:
|
4635 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: src/udaddons/updraftplus-addons.php:
|
4639 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: src/udaddons/updraftplus-addons.php:
|
4643 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: src/udaddons/updraftplus-addons.php:
|
4647 |
-
#: src/udaddons/updraftplus-addons.php:
|
4648 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4649 |
msgstr ""
|
4650 |
|
4651 |
-
#: src/udaddons/updraftplus-addons.php:
|
4652 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4653 |
msgstr ""
|
4654 |
|
4655 |
-
#: src/udaddons/updraftplus-addons.php:
|
4656 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4657 |
msgstr ""
|
4658 |
|
@@ -4669,7 +4728,7 @@ msgstr ""
|
|
4669 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: src/includes/class-wpadmin-commands.php:
|
4673 |
msgid "Constants"
|
4674 |
msgstr ""
|
4675 |
|
@@ -4693,12 +4752,12 @@ msgstr ""
|
|
4693 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: src/udaddons/updraftplus-addons.php:
|
4697 |
-
#: src/udaddons/updraftplus-addons.php:
|
4698 |
msgid "Errors occurred:"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/addons/wp-cli.php:664, src/admin.php:
|
4702 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4703 |
msgstr ""
|
4704 |
|
@@ -4722,7 +4781,7 @@ msgstr ""
|
|
4722 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: src/admin.php:
|
4726 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4727 |
msgstr ""
|
4728 |
|
@@ -4735,11 +4794,11 @@ msgstr ""
|
|
4735 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: src/addons/moredatabase.php:144, src/admin.php:
|
4739 |
msgid "Messages:"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: src/restorer.php:
|
4743 |
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"
|
4744 |
msgstr ""
|
4745 |
|
@@ -4897,7 +4956,7 @@ msgid "Authorisation failed (check your credentials)"
|
|
4897 |
msgstr ""
|
4898 |
|
4899 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4900 |
-
#: src/udaddons/options.php:
|
4901 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4902 |
msgstr ""
|
4903 |
|
@@ -4913,15 +4972,15 @@ msgstr ""
|
|
4913 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:
|
4917 |
msgid "Error data:"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#: src/admin.php:
|
4921 |
msgid "Backup does not exist in the backup history"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
-
#: src/admin.php:
|
4925 |
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."
|
4926 |
msgstr ""
|
4927 |
|
@@ -4949,23 +5008,23 @@ msgstr ""
|
|
4949 |
msgid "Moving old data out of the way..."
|
4950 |
msgstr ""
|
4951 |
|
4952 |
-
#: src/addons/reporting.php:
|
4953 |
msgid "Add another address..."
|
4954 |
msgstr ""
|
4955 |
|
4956 |
-
#: src/addons/reporting.php:
|
4957 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4958 |
msgstr ""
|
4959 |
|
4960 |
-
#: src/addons/reporting.php:
|
4961 |
msgid "Email reports"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: src/class-updraftplus.php:
|
4965 |
msgid "%s checksum: %s"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#: src/class-updraftplus.php:
|
4969 |
msgid "files: %s"
|
4970 |
msgstr ""
|
4971 |
|
@@ -4977,7 +5036,7 @@ msgstr ""
|
|
4977 |
msgid "Debugging information"
|
4978 |
msgstr ""
|
4979 |
|
4980 |
-
#: src/addons/reporting.php:223, src/admin.php:
|
4981 |
msgid "Uploaded to:"
|
4982 |
msgstr ""
|
4983 |
|
@@ -4997,7 +5056,7 @@ msgstr ""
|
|
4997 |
msgid "Errors / warnings:"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
-
#: src/addons/morefiles.php:
|
5001 |
#: src/addons/reporting.php:184
|
5002 |
msgid "Contains:"
|
5003 |
msgstr ""
|
@@ -5018,8 +5077,7 @@ msgstr ""
|
|
5018 |
msgid "%d errors, %d warnings"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
-
#: src/
|
5022 |
-
#: src/methods/dropbox.php:775
|
5023 |
msgid "%s authentication"
|
5024 |
msgstr ""
|
5025 |
|
@@ -5050,8 +5108,9 @@ msgstr ""
|
|
5050 |
msgid "Your site's admin email address (%s) will be used."
|
5051 |
msgstr ""
|
5052 |
|
5053 |
-
#: src/admin.php:853, src/admin.php:
|
5054 |
-
#: src/methods/updraftvault.php:362
|
|
|
5055 |
msgid "Connect"
|
5056 |
msgstr ""
|
5057 |
|
@@ -5059,7 +5118,7 @@ msgstr ""
|
|
5059 |
msgid "For more reporting features, use the Reporting add-on."
|
5060 |
msgstr ""
|
5061 |
|
5062 |
-
#: src/class-updraftplus.php:
|
5063 |
msgid "(version: %s)"
|
5064 |
msgstr ""
|
5065 |
|
@@ -5067,7 +5126,7 @@ msgstr ""
|
|
5067 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: src/addons/reporting.php:
|
5071 |
msgid "When the Email storage method is enabled, also send the backup"
|
5072 |
msgstr ""
|
5073 |
|
@@ -5131,7 +5190,7 @@ msgstr ""
|
|
5131 |
msgid "UpdraftPlus warning:"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: src/udaddons/options.php:
|
5135 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5136 |
msgstr ""
|
5137 |
|
@@ -5159,11 +5218,11 @@ msgstr ""
|
|
5159 |
msgid "UpdraftPlus Support"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: src/udaddons/options.php:
|
5163 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#: src/udaddons/options.php:
|
5167 |
msgid "UpdraftPlus Addons"
|
5168 |
msgstr ""
|
5169 |
|
@@ -5172,24 +5231,24 @@ msgid "An update is available for UpdraftPlus - please follow this link to get i
|
|
5172 |
msgstr ""
|
5173 |
|
5174 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5175 |
-
#: src/udaddons/updraftplus-addons.php:
|
5176 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:
|
5180 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5184 |
-
#: src/udaddons/updraftplus-addons.php:
|
5185 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: src/udaddons/updraftplus-addons.php:
|
5189 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
-
#: src/udaddons/updraftplus-addons.php:
|
5193 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5194 |
msgstr ""
|
5195 |
|
@@ -5200,11 +5259,11 @@ msgstr ""
|
|
5200 |
msgid "Reporting"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
-
#: src/admin.php:
|
5204 |
msgid "Options (raw)"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: src/addons/reporting.php:
|
5208 |
msgid "Send a report only when there are warnings/errors"
|
5209 |
msgstr ""
|
5210 |
|
@@ -5220,31 +5279,31 @@ msgstr ""
|
|
5220 |
msgid "See also the \"More Files\" add-on from our shop."
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
#: src/backup.php:
|
5224 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
-
#: src/class-updraftplus.php:
|
5228 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
-
#: src/udaddons/options.php:
|
5232 |
msgid "Manage Addons"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#: src/udaddons/options.php:
|
5236 |
msgid "Buy It"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#: src/udaddons/options.php:
|
5240 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
#: src/udaddons/options.php:
|
5244 |
msgid "activate it on this site"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: src/udaddons/options.php:
|
5248 |
msgid "You have an inactive purchase"
|
5249 |
msgstr ""
|
5250 |
|
@@ -5272,47 +5331,47 @@ msgstr ""
|
|
5272 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: src/udaddons/options.php:
|
5276 |
msgid "An unknown response was received. Response was:"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: src/udaddons/options.php:
|
5280 |
msgid "Claim not granted - your account login details were wrong"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#: src/udaddons/options.php:
|
5284 |
msgid "Please wait whilst we make the claim..."
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: src/udaddons/options.php:
|
5288 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
-
#: src/udaddons/options.php:
|
5292 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5293 |
msgstr ""
|
5294 |
|
5295 |
-
#: src/udaddons/options.php:
|
5296 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#: src/udaddons/options.php:
|
5300 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5301 |
msgstr ""
|
5302 |
|
5303 |
-
#: src/admin.php:
|
5304 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5305 |
msgstr ""
|
5306 |
|
5307 |
-
#: src/admin.php:
|
5308 |
msgid "Forgotten your details?"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
-
#: src/admin.php:
|
5312 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
-
#: src/admin.php:
|
5316 |
msgid "Connect with your UpdraftPlus.Com account"
|
5317 |
msgstr ""
|
5318 |
|
@@ -5344,12 +5403,12 @@ msgstr ""
|
|
5344 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: src/addons/moredatabase.php:
|
5348 |
#: src/includes/class-updraftplus-encryption.php:148
|
5349 |
msgid "Without it, encryption will be a lot slower."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: src/addons/moredatabase.php:
|
5353 |
#: src/includes/class-updraftplus-encryption.php:148
|
5354 |
msgid "Your web-server does not have the %s module installed."
|
5355 |
msgstr ""
|
@@ -5400,11 +5459,11 @@ msgstr ""
|
|
5400 |
msgid "You can send a backup to more than one destination with an add-on."
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#: src/admin.php:
|
5404 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#: src/admin.php:
|
5408 |
msgid "(%s%%, file %s of %s)"
|
5409 |
msgstr ""
|
5410 |
|
@@ -5445,11 +5504,11 @@ msgstr ""
|
|
5445 |
msgid "%s settings test result:"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: src/admin.php:
|
5449 |
msgid "(Not finished)"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: src/admin.php:
|
5453 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5454 |
msgstr ""
|
5455 |
|
@@ -5461,73 +5520,73 @@ msgstr ""
|
|
5461 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: src/admin.php:
|
5465 |
msgid "Job ID: %s"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: src/admin.php:
|
5469 |
msgid "last activity: %ss ago"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: src/admin.php:
|
5473 |
msgid "next resumption: %d (after %ss)"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: src/admin.php:
|
5477 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5478 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5479 |
msgid "Unknown"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/admin.php:
|
5483 |
msgid "Backup finished"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/admin.php:
|
5487 |
msgid "Waiting until scheduled time to retry because of errors"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/admin.php:
|
5491 |
msgid "Pruning old backup sets"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/admin.php:
|
5495 |
msgid "Uploading files to remote storage"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/admin.php:
|
5499 |
msgid "Encrypted database"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/admin.php:
|
5503 |
msgid "Encrypting database"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: src/admin.php:
|
5507 |
msgid "Created database backup"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
-
#: src/admin.php:
|
5511 |
msgid "table: %s"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: src/admin.php:
|
5515 |
msgid "Creating database backup"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: src/admin.php:
|
5519 |
msgid "Created file backup zips"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: src/admin.php:
|
5523 |
msgid "Creating file backup zips"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: src/admin.php:
|
5527 |
msgid "Backup begun"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: src/admin.php:
|
5531 |
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."
|
5532 |
msgstr ""
|
5533 |
|
@@ -5543,11 +5602,11 @@ msgstr ""
|
|
5543 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: src/class-updraftplus.php:
|
5547 |
msgid "The backup has not finished; a resumption is scheduled"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: src/class-updraftplus.php:
|
5551 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5552 |
msgstr ""
|
5553 |
|
@@ -5556,7 +5615,7 @@ msgstr ""
|
|
5556 |
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)."
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/admin.php:
|
5560 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5561 |
msgstr ""
|
5562 |
|
@@ -5609,19 +5668,19 @@ msgstr ""
|
|
5609 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: src/addons/morefiles.php:
|
5613 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
#: src/addons/morefiles.php:
|
5617 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#: src/addons/morefiles.php:
|
5621 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5622 |
msgstr ""
|
5623 |
|
5624 |
-
#: src/addons/morefiles.php:
|
5625 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5626 |
msgstr ""
|
5627 |
|
@@ -5636,32 +5695,32 @@ msgstr ""
|
|
5636 |
msgid "Support"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
-
#: src/class-updraftplus.php:
|
5640 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: src/class-updraftplus.php:
|
5644 |
msgid "This database backup is missing core WordPress tables: %s"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
-
#: src/class-updraftplus.php:
|
5648 |
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."
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#: src/class-updraftplus.php:
|
5652 |
msgid "%s version: %s"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: src/class-updraftplus.php:
|
5656 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: src/addons/autobackup.php:1067, src/admin.php:
|
5660 |
#: src/includes/updraftplus-notices.php:171
|
5661 |
msgid "Be safe with an automatic backup"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: src/admin.php:
|
5665 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
5666 |
msgstr ""
|
5667 |
|
@@ -5709,11 +5768,11 @@ msgstr ""
|
|
5709 |
msgid "Delete from your web server"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: src/admin.php:
|
5713 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: src/admin.php:
|
5717 |
msgid "(%d archive(s) in set)."
|
5718 |
msgstr ""
|
5719 |
|
@@ -5721,7 +5780,7 @@ msgstr ""
|
|
5721 |
msgid "Split archives every:"
|
5722 |
msgstr ""
|
5723 |
|
5724 |
-
#: src/addons/moredatabase.php:
|
5725 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
5726 |
msgstr ""
|
5727 |
|
@@ -5733,19 +5792,19 @@ msgstr ""
|
|
5733 |
msgid "Error: the server sent an empty response."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/admin.php:
|
5737 |
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?"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#: src/includes/class-wpadmin-commands.php:
|
5741 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
5742 |
msgstr ""
|
5743 |
|
5744 |
-
#: src/includes/class-wpadmin-commands.php:
|
5745 |
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."
|
5746 |
msgstr ""
|
5747 |
|
5748 |
-
#: src/includes/class-wpadmin-commands.php:
|
5749 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
5750 |
msgstr ""
|
5751 |
|
@@ -5778,11 +5837,11 @@ msgstr ""
|
|
5778 |
msgid "Moving unpacked backup into place..."
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: src/backup.php:
|
5782 |
msgid "Failed to open the zip file (%s) - %s"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: src/addons/morefiles.php:
|
5786 |
msgid "WordPress root directory server path: %s"
|
5787 |
msgstr ""
|
5788 |
|
@@ -5807,7 +5866,7 @@ msgstr ""
|
|
5807 |
msgid "Looking for %s archive: file name: %s"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: src/addons/wp-cli.php:784, src/admin.php:
|
5811 |
msgid "Final checks"
|
5812 |
msgstr ""
|
5813 |
|
@@ -5819,7 +5878,7 @@ msgstr ""
|
|
5819 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: src/admin.php:
|
5823 |
msgid "Your wp-content directory server path: %s"
|
5824 |
msgstr ""
|
5825 |
|
@@ -5840,11 +5899,11 @@ msgstr ""
|
|
5840 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: src/class-updraftplus.php:
|
5844 |
msgid "Failed to open database file."
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: src/admin.php:
|
5848 |
msgid "Known backups (raw)"
|
5849 |
msgstr ""
|
5850 |
|
@@ -5862,8 +5921,8 @@ msgstr ""
|
|
5862 |
|
5863 |
#: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
|
5864 |
#: src/addons/migrator.php:493, src/addons/migrator.php:496,
|
5865 |
-
#: src/admin.php:
|
5866 |
-
#: src/class-updraftplus.php:
|
5867 |
#: src/updraftplus.php:157
|
5868 |
msgid "Go here for more information."
|
5869 |
msgstr ""
|
@@ -5872,15 +5931,15 @@ msgstr ""
|
|
5872 |
msgid "Some files are still downloading or being processed - please wait."
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: src/class-updraftplus.php:
|
5876 |
msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: src/addons/fixtime.php:
|
5880 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#: src/addons/fixtime.php:
|
5884 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5885 |
msgstr ""
|
5886 |
|
@@ -5924,7 +5983,7 @@ msgstr ""
|
|
5924 |
msgid "%s error - failed to upload file"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/class-updraftplus.php:
|
5928 |
msgid "%s error - failed to re-assemble chunks"
|
5929 |
msgstr ""
|
5930 |
|
@@ -5939,32 +5998,32 @@ msgid "%s authentication failed"
|
|
5939 |
msgstr ""
|
5940 |
|
5941 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
|
5942 |
-
#: src/admin.php:
|
5943 |
-
#: src/class-updraftplus.php:
|
5944 |
-
#: src/class-updraftplus.php:
|
5945 |
-
#: src/class-updraftplus.php:
|
5946 |
-
#: src/class-updraftplus.php:
|
5947 |
#: src/methods/s3.php:341
|
5948 |
msgid "Error: %s"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: src/admin.php:
|
5952 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: src/admin.php:
|
5956 |
msgid "Backup directory specified does <b>not</b> exist."
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: src/admin.php:
|
5960 |
msgid "Warning: %s"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: src/backup.php:
|
5964 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: src/backup.php:
|
5968 |
msgid "%s: unreadable file - could not be backed up"
|
5969 |
msgstr ""
|
5970 |
|
@@ -5972,7 +6031,7 @@ msgstr ""
|
|
5972 |
msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: src/backup.php:
|
5976 |
msgid "An error occurred whilst closing the final database file"
|
5977 |
msgstr ""
|
5978 |
|
@@ -5980,11 +6039,11 @@ msgstr ""
|
|
5980 |
msgid "Warnings encountered:"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: src/class-updraftplus.php:
|
5984 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#: src/class-updraftplus.php:
|
5988 |
msgid "Your free disk space is very low - only %s Mb remain"
|
5989 |
msgstr ""
|
5990 |
|
@@ -6036,7 +6095,7 @@ msgstr ""
|
|
6036 |
msgid "Please supply the requested information, and then continue."
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: src/class-updraftplus.php:
|
6040 |
msgid "Site information:"
|
6041 |
msgstr ""
|
6042 |
|
@@ -6044,11 +6103,11 @@ msgstr ""
|
|
6044 |
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."
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: src/admin.php:
|
6048 |
msgid "Warning:"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: src/class-updraftplus.php:
|
6052 |
#: src/restorer.php:530
|
6053 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
6054 |
msgstr ""
|
@@ -6057,7 +6116,7 @@ msgstr ""
|
|
6057 |
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."
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: src/addons/azure.php:601, src/admin.php:
|
6061 |
#: src/methods/updraftvault.php:306
|
6062 |
msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
6063 |
msgstr ""
|
@@ -6073,7 +6132,7 @@ msgstr ""
|
|
6073 |
msgid "Unexpected response:"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: src/addons/reporting.php:
|
6077 |
msgid "To send to more than one address, separate each address with a comma."
|
6078 |
msgstr ""
|
6079 |
|
@@ -6101,12 +6160,27 @@ msgstr ""
|
|
6101 |
msgid "Also delete from remote storage"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: src/admin.php:
|
6105 |
msgid "Latest UpdraftPlus.com news:"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
#: src/templates/wp-admin/settings/header.php:11,
|
6109 |
-
#: src/templates/wp-admin/settings/tab-addons.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6110 |
msgid "Premium"
|
6111 |
msgstr ""
|
6112 |
|
@@ -6114,7 +6188,7 @@ msgstr ""
|
|
6114 |
msgid "News"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: src/admin.php:
|
6118 |
msgid "Backup set not found"
|
6119 |
msgstr ""
|
6120 |
|
@@ -6145,11 +6219,11 @@ msgstr ""
|
|
6145 |
msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
|
6146 |
msgstr ""
|
6147 |
|
6148 |
-
#: src/admin.php:
|
6149 |
msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
|
6150 |
msgstr ""
|
6151 |
|
6152 |
-
#: src/admin.php:
|
6153 |
msgid "Notice"
|
6154 |
msgstr ""
|
6155 |
|
@@ -6255,7 +6329,7 @@ msgstr ""
|
|
6255 |
msgid "Multisite Install"
|
6256 |
msgstr ""
|
6257 |
|
6258 |
-
#: src/addons/fixtime.php:
|
6259 |
msgid "starting from next time it is"
|
6260 |
msgstr ""
|
6261 |
|
@@ -6283,8 +6357,8 @@ msgstr ""
|
|
6283 |
msgid "Directory path"
|
6284 |
msgstr ""
|
6285 |
|
6286 |
-
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:
|
6287 |
-
#: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:
|
6288 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
6289 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
6290 |
msgid "Password"
|
@@ -6294,7 +6368,7 @@ msgstr ""
|
|
6294 |
msgid "Port"
|
6295 |
msgstr ""
|
6296 |
|
6297 |
-
#: src/addons/moredatabase.php:
|
6298 |
#: src/addons/webdav.php:199
|
6299 |
msgid "Host"
|
6300 |
msgstr ""
|
@@ -6315,35 +6389,35 @@ msgstr ""
|
|
6315 |
msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
|
6316 |
msgstr ""
|
6317 |
|
6318 |
-
#: src/addons/morefiles.php:
|
6319 |
msgid "No backup of %s directories: there was nothing found to back up"
|
6320 |
msgstr ""
|
6321 |
|
6322 |
-
#: src/addons/morefiles.php:
|
6323 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
6324 |
msgstr ""
|
6325 |
|
6326 |
-
#: src/addons/morefiles.php:
|
6327 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#: src/addons/morefiles.php:
|
6331 |
msgid "More Files"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: src/addons/morefiles.php:
|
6335 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: src/addons/morefiles.php:
|
6339 |
msgid "The above files comprise everything in a WordPress installation."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: src/addons/morefiles.php:
|
6343 |
msgid "Over-write wp-config.php"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
-
#: src/addons/morefiles.php:
|
6347 |
msgid "WordPress Core"
|
6348 |
msgstr ""
|
6349 |
|
@@ -6352,8 +6426,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
|
|
6352 |
msgstr ""
|
6353 |
|
6354 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
6355 |
-
#: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:
|
6356 |
-
#: src/admin.php:
|
6357 |
#: src/methods/stream-base.php:356
|
6358 |
msgid "Failed"
|
6359 |
msgstr ""
|
@@ -6561,7 +6635,7 @@ msgstr ""
|
|
6561 |
msgid "Failure: No container details were given."
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: src/addons/moredatabase.php:
|
6565 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
6566 |
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
6567 |
msgid "Username"
|
@@ -6622,7 +6696,7 @@ msgstr ""
|
|
6622 |
msgid "Test %s Settings"
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: src/class-updraftplus.php:
|
6626 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
6627 |
msgid "Error opening local file: Failed to download"
|
6628 |
msgstr ""
|
@@ -6639,7 +6713,7 @@ msgid "%s Error: Failed to upload"
|
|
6639 |
msgstr ""
|
6640 |
|
6641 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
6642 |
-
#: src/class-updraftplus.php:
|
6643 |
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
6644 |
msgid "%s Error: Failed to open local file"
|
6645 |
msgstr ""
|
@@ -6753,18 +6827,18 @@ msgstr ""
|
|
6753 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: src/admin.php:
|
6757 |
#: src/includes/class-remote-send.php:326,
|
6758 |
#: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
|
6759 |
-
#: src/restorer.php:
|
6760 |
msgid "OK"
|
6761 |
msgstr ""
|
6762 |
|
6763 |
-
#: src/restorer.php:
|
6764 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
6765 |
msgstr ""
|
6766 |
|
6767 |
-
#: src/addons/migrator.php:1317, src/restorer.php:
|
6768 |
msgid "the database query being run was:"
|
6769 |
msgstr ""
|
6770 |
|
@@ -6772,13 +6846,13 @@ msgstr ""
|
|
6772 |
msgid "will restore as:"
|
6773 |
msgstr ""
|
6774 |
|
6775 |
-
#: src/class-updraftplus.php:
|
6776 |
#: src/restorer.php:2304, src/restorer.php:2330
|
6777 |
msgid "Old table prefix:"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
#: src/addons/reporting.php:72, src/addons/reporting.php:181,
|
6781 |
-
#: src/backup.php:1135, src/class-updraftplus.php:
|
6782 |
msgid "Backup of:"
|
6783 |
msgstr ""
|
6784 |
|
@@ -6866,39 +6940,39 @@ msgstr ""
|
|
6866 |
msgid "Archive is expected to be size:"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
-
#: src/admin.php:
|
6870 |
msgid "If making a request for support, please include this information:"
|
6871 |
msgstr ""
|
6872 |
|
6873 |
-
#: src/admin.php:
|
6874 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6875 |
msgstr ""
|
6876 |
|
6877 |
-
#: src/addons/wp-cli.php:647, src/admin.php:
|
6878 |
msgid "UpdraftPlus Restoration: Progress"
|
6879 |
msgstr ""
|
6880 |
|
6881 |
-
#: src/admin.php:
|
6882 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#: src/admin.php:
|
6886 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6887 |
msgstr ""
|
6888 |
|
6889 |
-
#: src/admin.php:
|
6890 |
msgid "Delete this backup set"
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#: src/admin.php:
|
6894 |
msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
|
6895 |
msgstr ""
|
6896 |
|
6897 |
-
#: src/admin.php:
|
6898 |
msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
|
6899 |
msgstr ""
|
6900 |
|
6901 |
-
#: src/admin.php:
|
6902 |
msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
|
6903 |
msgstr ""
|
6904 |
|
@@ -6939,19 +7013,19 @@ msgstr ""
|
|
6939 |
msgid "Use the server's SSL certificates"
|
6940 |
msgstr ""
|
6941 |
|
6942 |
-
#: src/admin.php:
|
6943 |
msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
|
6944 |
msgstr ""
|
6945 |
|
6946 |
-
#: src/admin.php:
|
6947 |
msgid "or, to reset this option"
|
6948 |
msgstr ""
|
6949 |
|
6950 |
-
#: src/admin.php:
|
6951 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6952 |
msgstr ""
|
6953 |
|
6954 |
-
#: src/admin.php:
|
6955 |
msgid "Backup directory specified is writable, which is good."
|
6956 |
msgstr ""
|
6957 |
|
@@ -6987,12 +7061,12 @@ msgstr ""
|
|
6987 |
msgid "Requesting start of backup..."
|
6988 |
msgstr ""
|
6989 |
|
6990 |
-
#: src/addons/morefiles.php:
|
6991 |
msgid "Cancel"
|
6992 |
msgstr ""
|
6993 |
|
6994 |
-
#: src/addons/incremental.php:
|
6995 |
-
#: src/admin.php:
|
6996 |
msgid "None"
|
6997 |
msgstr ""
|
6998 |
|
@@ -7008,7 +7082,7 @@ msgstr ""
|
|
7008 |
msgid "Database encryption phrase"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
-
#: src/admin.php:
|
7012 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
7013 |
msgid "Email"
|
7014 |
msgstr ""
|
@@ -7017,11 +7091,11 @@ msgstr ""
|
|
7017 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
7018 |
msgstr ""
|
7019 |
|
7020 |
-
#: src/addons/morefiles.php:
|
7021 |
msgid "Exclude these:"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
-
#: src/admin.php:
|
7025 |
msgid "Any other directories found inside wp-content"
|
7026 |
msgstr ""
|
7027 |
|
@@ -7037,46 +7111,46 @@ msgstr ""
|
|
7037 |
msgid "To fix the time at which a backup should take place,"
|
7038 |
msgstr ""
|
7039 |
|
7040 |
-
#: src/addons/incremental.php:
|
7041 |
msgid "Monthly"
|
7042 |
msgstr ""
|
7043 |
|
7044 |
-
#: src/addons/incremental.php:
|
7045 |
msgid "Fortnightly"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
-
#: src/addons/incremental.php:
|
7049 |
msgid "Weekly"
|
7050 |
msgstr ""
|
7051 |
|
7052 |
-
#: src/addons/incremental.php:
|
7053 |
msgid "Daily"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#: src/admin.php:849, src/admin.php:
|
7057 |
msgid "Download log file"
|
7058 |
msgstr ""
|
7059 |
|
7060 |
-
#: src/admin.php:
|
7061 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
7062 |
msgstr ""
|
7063 |
|
7064 |
-
#: src/admin.php:
|
7065 |
msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
-
#: src/admin.php:
|
7069 |
msgid "The request to the filesystem to create the directory failed."
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: src/admin.php:842, src/admin.php:
|
7073 |
-
#: src/admin.php:
|
7074 |
#: src/templates/wp-admin/settings/existing-backups-table.php:155,
|
7075 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
7076 |
msgid "Delete"
|
7077 |
msgstr ""
|
7078 |
|
7079 |
-
#: src/admin.php:
|
7080 |
msgid "show log"
|
7081 |
msgstr ""
|
7082 |
|
@@ -7137,7 +7211,7 @@ msgstr ""
|
|
7137 |
msgid "Yes"
|
7138 |
msgstr ""
|
7139 |
|
7140 |
-
#: src/admin.php:
|
7141 |
#: src/templates/wp-admin/advanced/site-info.php:45,
|
7142 |
#: src/templates/wp-admin/advanced/site-info.php:51,
|
7143 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
@@ -7177,11 +7251,11 @@ msgstr ""
|
|
7177 |
msgid "Do read this helpful article of useful things to know before restoring."
|
7178 |
msgstr ""
|
7179 |
|
7180 |
-
#: src/class-updraftplus.php:
|
7181 |
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"
|
7182 |
msgstr ""
|
7183 |
|
7184 |
-
#: src/addons/morefiles.php:
|
7185 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
|
7186 |
msgid "%s restoration options:"
|
7187 |
msgstr ""
|
@@ -7292,7 +7366,7 @@ msgstr ""
|
|
7292 |
msgid "More tasks:"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
-
#: src/admin.php:
|
7296 |
msgid "Download most recently modified log file"
|
7297 |
msgstr ""
|
7298 |
|
@@ -7301,13 +7375,13 @@ msgid "(Nothing yet logged)"
|
|
7301 |
msgstr ""
|
7302 |
|
7303 |
#: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
|
7304 |
-
#: src/admin.php:
|
7305 |
#: src/templates/wp-admin/settings/take-backup.php:64
|
7306 |
msgid "Last log message"
|
7307 |
msgstr ""
|
7308 |
|
7309 |
#: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
|
7310 |
-
#: src/admin.php:
|
7311 |
msgid "Restore"
|
7312 |
msgstr ""
|
7313 |
|
@@ -7319,18 +7393,18 @@ msgstr ""
|
|
7319 |
msgid "Time now"
|
7320 |
msgstr ""
|
7321 |
|
7322 |
-
#: src/addons/moredatabase.php:
|
7323 |
-
#: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:
|
7324 |
-
#: src/admin.php:
|
7325 |
#: src/includes/class-wpadmin-commands.php:157,
|
7326 |
-
#: src/includes/class-wpadmin-commands.php:
|
7327 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
|
7328 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75,
|
7329 |
#: src/templates/wp-admin/settings/take-backup.php:33
|
7330 |
msgid "Database"
|
7331 |
msgstr ""
|
7332 |
|
7333 |
-
#: src/admin.php:332, src/admin.php:
|
7334 |
#: src/templates/wp-admin/settings/take-backup.php:23
|
7335 |
msgid "Files"
|
7336 |
msgstr ""
|
@@ -7356,15 +7430,15 @@ msgstr ""
|
|
7356 |
msgid "JavaScript warning"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
-
#: src/admin.php:826, src/admin.php:
|
7360 |
msgid "Delete Old Directories"
|
7361 |
msgstr ""
|
7362 |
|
7363 |
-
#: src/admin.php:
|
7364 |
msgid "Current limit is:"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
-
#: src/admin.php:
|
7368 |
msgid "Your backup has been restored."
|
7369 |
msgstr ""
|
7370 |
|
@@ -7380,87 +7454,87 @@ msgstr ""
|
|
7380 |
msgid "UpdraftPlus.Com"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
-
#: src/admin.php:
|
7384 |
msgid "Your settings have been wiped."
|
7385 |
msgstr ""
|
7386 |
|
7387 |
-
#: src/admin.php:
|
7388 |
msgid "Backup directory successfully created."
|
7389 |
msgstr ""
|
7390 |
|
7391 |
-
#: src/admin.php:
|
7392 |
msgid "Backup directory could not be created"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: src/admin.php:
|
7396 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
7397 |
msgstr ""
|
7398 |
|
7399 |
-
#: src/admin.php:
|
7400 |
msgid "Old directories successfully removed."
|
7401 |
msgstr ""
|
7402 |
|
7403 |
-
#: src/admin.php:
|
7404 |
msgid "Remove old directories"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
#: src/addons/migrator.php:340, src/addons/migrator.php:355,
|
7408 |
-
#: src/admin.php:
|
7409 |
-
#: src/admin.php:
|
7410 |
msgid "Return to UpdraftPlus Configuration"
|
7411 |
msgstr ""
|
7412 |
|
7413 |
-
#: src/admin.php:819, src/admin.php:
|
7414 |
-
#: src/admin.php:
|
7415 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
7416 |
#: src/templates/wp-admin/settings/existing-backups-table.php:139
|
7417 |
msgid "Actions"
|
7418 |
msgstr ""
|
7419 |
|
7420 |
-
#: src/admin.php:
|
7421 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
7422 |
msgstr ""
|
7423 |
|
7424 |
-
#: src/admin.php:
|
7425 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
7426 |
msgstr ""
|
7427 |
|
7428 |
-
#: src/admin.php:
|
7429 |
msgid "No local copy present."
|
7430 |
msgstr ""
|
7431 |
|
7432 |
-
#: src/admin.php:
|
7433 |
msgid "Download in progress"
|
7434 |
msgstr ""
|
7435 |
|
7436 |
-
#: src/admin.php:818, src/admin.php:
|
7437 |
msgid "File ready."
|
7438 |
msgstr ""
|
7439 |
|
7440 |
-
#: src/admin.php:
|
7441 |
msgid "Download failed"
|
7442 |
msgstr ""
|
7443 |
|
7444 |
#: src/addons/wp-cli.php:518, src/admin.php:816,
|
7445 |
-
#: src/class-updraftplus.php:
|
7446 |
#: src/includes/class-filesystem-functions.php:368,
|
7447 |
#: src/includes/class-storage-methods-interface.php:324,
|
7448 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
7449 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
7450 |
-
#: src/methods/stream-base.php:219, src/restorer.php:
|
7451 |
-
#: src/restorer.php:
|
7452 |
msgid "Error"
|
7453 |
msgstr ""
|
7454 |
|
7455 |
-
#: src/admin.php:
|
7456 |
msgid "Could not find that job - perhaps it has already finished?"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
-
#: src/admin.php:
|
7460 |
msgid "Job deleted"
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: src/admin.php:
|
7464 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
7465 |
msgstr ""
|
7466 |
|
@@ -7468,41 +7542,41 @@ msgstr ""
|
|
7468 |
msgid "Nothing yet logged"
|
7469 |
msgstr ""
|
7470 |
|
7471 |
-
#: src/admin.php:
|
7472 |
msgid "Please consult this FAQ if you have problems backing up."
|
7473 |
msgstr ""
|
7474 |
|
7475 |
-
#: src/admin.php:
|
7476 |
msgid "Your website is hosted using the %s web server."
|
7477 |
msgstr ""
|
7478 |
|
7479 |
-
#: src/admin.php:
|
7480 |
msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
|
7481 |
msgstr ""
|
7482 |
|
7483 |
-
#: src/admin.php:
|
7484 |
msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
|
7485 |
msgstr ""
|
7486 |
|
7487 |
-
#: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:
|
7488 |
-
#: src/admin.php:
|
7489 |
-
#: src/admin.php:
|
7490 |
-
#: src/admin.php:
|
7491 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
7492 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
7493 |
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
7494 |
#: src/methods/updraftvault.php:306,
|
7495 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
7496 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
7497 |
-
#: src/udaddons/updraftplus-addons.php:
|
7498 |
msgid "Warning"
|
7499 |
msgstr ""
|
7500 |
|
7501 |
-
#: src/admin.php:
|
7502 |
msgid "Add-Ons / Pro Support"
|
7503 |
msgstr ""
|
7504 |
|
7505 |
-
#: src/admin.php:677, src/admin.php:
|
7506 |
msgid "Settings"
|
7507 |
msgstr ""
|
7508 |
|
@@ -7510,7 +7584,7 @@ msgstr ""
|
|
7510 |
msgid "Could not create %s zip. Consult the log file for more information."
|
7511 |
msgstr ""
|
7512 |
|
7513 |
-
#: src/backup.php:
|
7514 |
msgid "Infinite recursion: consult your log for more information"
|
7515 |
msgstr ""
|
7516 |
|
@@ -7522,7 +7596,7 @@ msgstr ""
|
|
7522 |
msgid "Like UpdraftPlus and can spare one minute?"
|
7523 |
msgstr ""
|
7524 |
|
7525 |
-
#: src/addons/azure.php:268, src/class-updraftplus.php:
|
7526 |
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
7527 |
msgid "File not found"
|
7528 |
msgstr ""
|
@@ -7531,29 +7605,29 @@ msgstr ""
|
|
7531 |
msgid "The decryption key used:"
|
7532 |
msgstr ""
|
7533 |
|
7534 |
-
#: src/class-updraftplus.php:
|
7535 |
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
|
7536 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
7537 |
msgstr ""
|
7538 |
|
7539 |
-
#: src/class-updraftplus.php:
|
7540 |
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
|
7541 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#: src/backup.php:
|
7545 |
msgid "Could not open the backup file for writing"
|
7546 |
msgstr ""
|
7547 |
|
7548 |
-
#: src/class-updraftplus.php:
|
7549 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#: src/class-updraftplus.php:
|
7553 |
msgid "Could not read the directory"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
-
#: src/admin.php:
|
7557 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
7558 |
msgstr ""
|
7559 |
|
@@ -7561,35 +7635,35 @@ msgstr ""
|
|
7561 |
msgid "WordPress backup is complete"
|
7562 |
msgstr ""
|
7563 |
|
7564 |
-
#: src/class-updraftplus.php:
|
7565 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
7566 |
msgstr ""
|
7567 |
|
7568 |
-
#: src/class-updraftplus.php:
|
7569 |
msgid "The backup apparently succeeded and is now complete"
|
7570 |
msgstr ""
|
7571 |
|
7572 |
-
#: src/addons/moredatabase.php:
|
7573 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: src/class-updraftplus.php:
|
7577 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
7578 |
msgstr ""
|
7579 |
|
7580 |
-
#: src/class-updraftplus.php:
|
7581 |
msgid "Others"
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: src/addons/multisite.php:500, src/class-updraftplus.php:
|
7585 |
msgid "Uploads"
|
7586 |
msgstr ""
|
7587 |
|
7588 |
-
#: src/class-updraftplus.php:
|
7589 |
msgid "Themes"
|
7590 |
msgstr ""
|
7591 |
|
7592 |
-
#: src/class-updraftplus.php:
|
7593 |
msgid "Plugins"
|
7594 |
msgstr ""
|
7595 |
|
@@ -7597,11 +7671,11 @@ msgstr ""
|
|
7597 |
msgid "No log files were found."
|
7598 |
msgstr ""
|
7599 |
|
7600 |
-
#: src/admin.php:
|
7601 |
msgid "The log file could not be read."
|
7602 |
msgstr ""
|
7603 |
|
7604 |
-
#: src/admin.php:
|
7605 |
#: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
|
7606 |
#: src/class-updraftplus.php:623, src/class-updraftplus.php:628
|
7607 |
msgid "UpdraftPlus notice:"
|
11 |
"Language: af_ZA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
15 |
+
#: src/udaddons/updraftplus-addons.php:280
|
16 |
+
msgid "go here"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
20 |
+
#: src/udaddons/updraftplus-addons.php:280
|
21 |
+
msgid "If you have already renewed, then you need to allocate a licence to this site - %s"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: src/addons/onedrive.php:864
|
25 |
+
msgid "Authentication"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: src/admin.php:924
|
29 |
+
msgid "You must select at least one remote storage destination to upload this backup set to."
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: src/templates/wp-admin/settings/form-contents.php:350
|
33 |
+
msgid "Read more about Easy Updates Manager"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:68
|
37 |
+
msgid "You can find out more about clone keys here."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:57
|
41 |
+
msgid "Or, use an UpdraftClone key"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: src/restorer.php:2493
|
45 |
+
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: src/admin.php:951
|
49 |
+
msgid "UpdraftClone key is required."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: src/admin.php:942
|
53 |
+
msgid "The preparation of the clone data has been aborted."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: src/addons/azure.php:646
|
57 |
+
msgid "Azure Government"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
61 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
62 |
msgstr ""
|
69 |
msgid "Your database user does not have permission to drop tables"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: src/admin.php:2960
|
73 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
74 |
msgstr ""
|
75 |
|
237 |
msgid "WordPress installed"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: src/admin.php:5422
|
241 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: src/admin.php:3826
|
245 |
msgid "Exclude these from"
|
246 |
msgstr ""
|
247 |
|
281 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41
|
285 |
msgid "To create a temporary clone you need credit in your account."
|
286 |
msgstr ""
|
287 |
|
293 |
msgid "failed to upload file to %s (see log file for more)"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: src/admin.php:5418
|
297 |
msgid "Dashboard:"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: src/admin.php:5417
|
301 |
msgid "Front page:"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: src/admin.php:5416
|
305 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
306 |
msgstr ""
|
307 |
|
313 |
msgid "Current clones"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: src/class-updraftplus.php:3045
|
317 |
msgid "Your clone will now deploy this data to re-create your site."
|
318 |
msgstr ""
|
319 |
|
|
|
|
|
|
|
|
|
320 |
#: src/admin.php:941
|
321 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
322 |
msgstr ""
|
379 |
msgid "Account type"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56,
|
383 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:76
|
384 |
msgid "I accept the UpdraftClone terms and conditions"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56
|
388 |
msgid "Not got an account? Get one by buying some tokens here."
|
389 |
msgstr ""
|
390 |
|
391 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
392 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41,
|
393 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
394 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
398 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
402 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
406 |
msgid "Flexible"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
410 |
msgid "Takes just the time needed to create a backup and send it."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
414 |
msgid "Fast"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
418 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
422 |
msgid "Secure"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
426 |
msgid "Runs on capacity from a leading cloud computing provider."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
430 |
msgid "Reliable"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
434 |
msgid "Press the buttons... UpdraftClone does the work."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
438 |
msgid "Easy"
|
439 |
msgstr ""
|
440 |
|
441 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
442 |
+
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test things on your live site, you can UpdraftClone it, and then throw away your clone when done."
|
443 |
msgstr ""
|
444 |
|
445 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
446 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:39
|
447 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
448 |
msgstr ""
|
449 |
|
617 |
msgid "You can buy more temporary clone tokens here."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: src/admin.php:5373
|
621 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:35
|
625 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
626 |
msgstr ""
|
627 |
|
633 |
msgid "Other great plugins"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: src/admin.php:5420, src/admin.php:5423
|
637 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: src/class-updraftplus.php:4310
|
641 |
msgid "Choose a default for each table"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: src/admin.php:3274
|
645 |
msgid "Sending files to remote site"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: src/admin.php:3269
|
649 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
650 |
msgstr ""
|
651 |
|
657 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: src/admin.php:2796
|
661 |
msgid "Backup / Restore"
|
662 |
msgstr ""
|
663 |
|
681 |
msgid "No previous backup found to add an increment to."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: src/restorer.php:2499
|
685 |
msgid "Requested character set (%s) is not present - changing to %s."
|
686 |
msgstr ""
|
687 |
|
705 |
msgid "Refresh connection"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: src/addons/reporting.php:495
|
709 |
msgid "Log all messages to syslog"
|
710 |
msgstr ""
|
711 |
|
733 |
msgid "More information here."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: src/admin.php:669, src/admin.php:2797
|
737 |
msgid "Migrate / Clone"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: src/admin.php:3034, src/admin.php:3959,
|
741 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
742 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
743 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
763 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: src/admin.php:5396
|
767 |
msgid "(current version)"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: src/admin.php:3736
|
771 |
msgid "press here"
|
772 |
msgstr ""
|
773 |
|
781 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: src/addons/incremental.php:270
|
785 |
msgid "Tell me more"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: src/addons/incremental.php:258
|
789 |
msgid "And then add an incremental backup"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: src/addons/incremental.php:236, src/updraftplus.php:99
|
793 |
msgid "Every hour"
|
794 |
msgstr ""
|
795 |
|
801 |
msgid "Available temporary clone tokens:"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: src/admin.php:2884, src/includes/class-commands.php:901,
|
805 |
#: src/includes/class-commands.php:949,
|
806 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
807 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
808 |
msgid "Processing"
|
809 |
msgstr ""
|
820 |
msgid "I consent to %s"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: src/admin.php:2982,
|
824 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
825 |
msgid "One Time Password (check your OTP app to get this password)"
|
826 |
msgstr ""
|
869 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: src/admin.php:5342
|
873 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
874 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
875 |
msgstr[0] ""
|
972 |
msgid "Upload backup"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: src/admin.php:4246
|
976 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
977 |
msgstr ""
|
978 |
|
984 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: src/admin.php:844, src/admin.php:4246
|
988 |
msgid "Upload"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/addons/reporting.php:529, src/admin.php:794
|
992 |
msgid "Only email the database backup"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/addons/reporting.php:529
|
996 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: src/addons/reporting.php:529
|
1000 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
1001 |
msgstr ""
|
1002 |
|
1110 |
msgid "Select your incremental restore point"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: src/addons/morefiles.php:67
|
1114 |
msgid "(None configured)"
|
1115 |
msgstr ""
|
1116 |
|
1118 |
msgid "Ensure you are logged into the correct account before continuing."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: src/admin.php:4984
|
1122 |
msgid "Remote storage method and instance id are required for authentication."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: src/admin.php:4980
|
1126 |
msgid "authentication error"
|
1127 |
msgstr ""
|
1128 |
|
1200 |
msgstr[0] ""
|
1201 |
msgstr[1] ""
|
1202 |
|
1203 |
+
#: src/class-updraftplus.php:4287
|
1204 |
msgid "Your chosen replacement collation"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: src/class-updraftplus.php:4264
|
1208 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: src/class-updraftplus.php:4264
|
1212 |
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."
|
1213 |
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."
|
1214 |
msgstr[0] ""
|
1276 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: src/class-updraftplus.php:4240
|
1280 |
msgid "Your chosen character set to use instead:"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: src/class-updraftplus.php:4230
|
1284 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: src/class-updraftplus.php:4230
|
1288 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1289 |
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."
|
1290 |
msgstr[0] ""
|
1374 |
msgid "Account ID"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: src/class-updraftplus.php:4069
|
1378 |
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."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
|
1382 |
msgid "the migrator add-on"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: src/class-updraftplus.php:4067
|
1386 |
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."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: src/class-updraftplus.php:4065
|
1390 |
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."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: src/class-updraftplus.php:4060
|
1394 |
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."
|
1395 |
msgstr ""
|
1396 |
|
1406 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
|
1410 |
+
#: src/class-updraftplus.php:2252,
|
1411 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1412 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
|
1416 |
+
#: src/class-updraftplus.php:2245,
|
1417 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1418 |
msgid "A PHP exception (%s) has occurred: %s"
|
1419 |
msgstr ""
|
1467 |
msgid "Instant and secure logon with a wave of your phone."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: src/admin.php:5190
|
1471 |
msgid "Value"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: src/admin.php:1779
|
1475 |
msgid "Did not know how to delete from this cloud service."
|
1476 |
msgstr ""
|
1477 |
|
1487 |
msgid "Cloud Files"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: src/admin.php:4932
|
1491 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: src/admin.php:4891
|
1495 |
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."
|
1496 |
msgstr ""
|
1497 |
|
1500 |
msgid "UpdraftVault"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: src/includes/class-wpadmin-commands.php:529
|
1504 |
msgid "archive"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: src/includes/class-wpadmin-commands.php:520
|
1508 |
msgid "Extra database"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: src/admin.php:4102
|
1512 |
msgid "Press here to download or browse"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: src/admin.php:1332, src/admin.php:1342
|
1516 |
msgid "Error: invalid path"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: src/admin.php:1131
|
1520 |
msgid "An error occurred when fetching storage module options: "
|
1521 |
msgstr ""
|
1522 |
|
1552 |
msgid "Skipped tables:"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: src/class-updraftplus.php:4365
|
1556 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: src/admin.php:3020
|
1560 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: src/admin.php:3020
|
1564 |
msgid "All WordPress tables will be backed up."
|
1565 |
msgstr ""
|
1566 |
|
1592 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: src/addons/moredatabase.php:414
|
1596 |
msgid "tables"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: src/addons/moredatabase.php:413
|
1600 |
msgid "WordPress database"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: src/addons/moredatabase.php:406
|
1604 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1605 |
msgstr ""
|
1606 |
|
1719 |
msgid "Installed"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: src/templates/wp-admin/settings/tab-addons.php:43,
|
1723 |
+
#: src/templates/wp-admin/settings/tab-addons.php:65,
|
1724 |
+
#: src/templates/wp-admin/settings/tab-addons.php:78,
|
1725 |
+
#: src/templates/wp-admin/settings/tab-addons.php:91,
|
1726 |
+
#: src/templates/wp-admin/settings/tab-addons.php:104,
|
1727 |
+
#: src/templates/wp-admin/settings/tab-addons.php:117,
|
1728 |
+
#: src/templates/wp-admin/settings/tab-addons.php:130,
|
1729 |
+
#: src/templates/wp-admin/settings/tab-addons.php:143,
|
1730 |
+
#: src/templates/wp-admin/settings/tab-addons.php:156,
|
1731 |
+
#: src/templates/wp-admin/settings/tab-addons.php:169,
|
1732 |
+
#: src/templates/wp-admin/settings/tab-addons.php:182,
|
1733 |
+
#: src/templates/wp-admin/settings/tab-addons.php:195,
|
1734 |
+
#: src/templates/wp-admin/settings/tab-addons.php:208,
|
1735 |
+
#: src/templates/wp-admin/settings/tab-addons.php:221,
|
1736 |
+
#: src/templates/wp-admin/settings/tab-addons.php:234,
|
1737 |
+
#: src/templates/wp-admin/settings/tab-addons.php:251
|
1738 |
msgid "Free"
|
1739 |
msgstr ""
|
1740 |
|
1757 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: src/addons/morefiles.php:319
|
1761 |
msgid "Please choose a file or directory"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: src/addons/morefiles.php:312
|
1765 |
msgid "Confirm"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: src/addons/morefiles.php:307, src/addons/morefiles.php:307
|
1769 |
msgid "Go up a directory"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: src/addons/morefiles.php:304
|
1773 |
msgid "Add directory..."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: src/addons/morefiles.php:297, src/addons/morefiles.php:317,
|
1777 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1778 |
msgid "Edit"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: src/addons/morefiles.php:280
|
1782 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1783 |
msgstr ""
|
1784 |
|
1851 |
msgstr ""
|
1852 |
|
1853 |
#: src/includes/updraftplus-notices.php:238
|
1854 |
+
msgid "Happy New Year - 20% off UpdraftPlus Premium until January 14th"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
#: src/includes/updraftplus-notices.php:225
|
2037 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: src/admin.php:1862
|
2041 |
msgid "Remote files deleted:"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: src/admin.php:1861
|
2045 |
msgid "Local files deleted:"
|
2046 |
msgstr ""
|
2047 |
|
2097 |
msgid "Account is not authorized (%s)."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
|
2101 |
msgid "Your IP address:"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
|
2105 |
+
#: src/udaddons/updraftplus-addons.php:903
|
2106 |
msgid "To remove any block, please go here."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
|
2110 |
msgid "An error response was received; HTTP code:"
|
2111 |
msgstr ""
|
2112 |
|
2122 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: src/admin.php:2607
|
2126 |
msgid "To fix this problem go here."
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: src/admin.php:2607
|
2130 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2131 |
msgstr ""
|
2132 |
|
2158 |
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."
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: src/udaddons/updraftplus-addons.php:906
|
2162 |
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."
|
2163 |
msgstr ""
|
2164 |
|
2202 |
msgid "Public key was sent to:"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: src/backup.php:2353
|
2206 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: src/backup.php:2331
|
2210 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2211 |
msgstr ""
|
2212 |
|
2264 |
msgid "login"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: src/addons/reporting.php:527, src/addons/reporting.php:527,
|
2268 |
+
#: src/addons/reporting.php:529, src/methods/email.php:100
|
2269 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2270 |
msgstr ""
|
2271 |
|
2273 |
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."
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: src/class-updraftplus.php:1793
|
2277 |
msgid "Size: %s MB"
|
2278 |
msgstr ""
|
2279 |
|
2281 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
2285 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2286 |
msgstr ""
|
2287 |
|
2387 |
msgid "UpdraftCentral Connection"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: src/backup.php:1042, src/class-updraftplus.php:3026
|
2391 |
msgid "The backup was aborted by the user"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: src/admin.php:4927
|
2395 |
msgid "Your settings have been saved."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: src/admin.php:4007
|
2399 |
msgid "Total backup size:"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: src/admin.php:3414
|
2403 |
msgid "stop"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: src/admin.php:903, src/admin.php:3207
|
2407 |
msgid "The backup has finished running"
|
2408 |
msgstr ""
|
2409 |
|
2465 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: src/class-updraftplus.php:4138, src/restorer.php:2227
|
2469 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: src/class-updraftplus.php:4134
|
2473 |
msgid "Please read this link for important information on this process."
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: src/class-updraftplus.php:4134
|
2477 |
msgid "It will be imported as a new site."
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
|
2481 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2482 |
msgid "Dismiss"
|
2483 |
msgstr ""
|
2543 |
msgid "Call WordPress action:"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: src/admin.php:3030
|
2547 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2548 |
msgstr ""
|
2549 |
|
2575 |
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)."
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: src/admin.php:4801
|
2579 |
msgid "Send this backup to remote storage"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: src/admin.php:4799
|
2583 |
msgid "Check out UpdraftPlus Vault."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: src/admin.php:4799
|
2587 |
msgid "Not got any remote storage?"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: src/admin.php:4799
|
2591 |
msgid "settings"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: src/admin.php:4799
|
2595 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: src/admin.php:3028
|
2599 |
msgid "Include any files in the backup"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: src/admin.php:3012
|
2603 |
msgid "Include the database in the backup"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: src/admin.php:2839
|
2607 |
msgid "Continue restoration"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: src/admin.php:2834
|
2611 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: src/admin.php:2833
|
2615 |
msgid "Unfinished restoration"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: src/admin.php:2831
|
2619 |
msgid "%s minutes, %s seconds"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: src/admin.php:2697
|
2623 |
msgid "Backup Contents And Schedule"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/admin.php:2800
|
2627 |
msgid "Premium / Extensions"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: src/admin.php:2474, src/admin.php:2483
|
2631 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: src/addons/morefiles.php:71, src/admin.php:875
|
2635 |
msgctxt "(verb)"
|
2636 |
msgid "Download"
|
2637 |
msgstr ""
|
2644 |
msgid "Extensions"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: src/admin.php:685, src/admin.php:2799
|
2648 |
msgid "Advanced Tools"
|
2649 |
msgstr ""
|
2650 |
|
2763 |
msgid "Could not access container"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: src/class-updraftplus.php:3045
|
2767 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2768 |
msgstr ""
|
2769 |
|
2893 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: src/admin.php:1860
|
2897 |
msgid "Backup sets removed:"
|
2898 |
msgstr ""
|
2899 |
|
2933 |
msgid "Add an additional retention rule..."
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: src/restorer.php:2805
|
2937 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: src/restorer.php:2805
|
2941 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2942 |
msgstr ""
|
2943 |
|
2945 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4209
|
2949 |
msgid "You must upgrade MySQL to be able to use this database."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4209
|
2953 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/admin.php:2592
|
2957 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2958 |
msgstr ""
|
2959 |
|
2981 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: src/admin.php:1190
|
2985 |
msgid "Go to the remote storage settings in order to connect."
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: src/admin.php:1190
|
2989 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2990 |
msgstr ""
|
2991 |
|
3129 |
msgid "Delete failed:"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: src/backup.php:3431
|
3133 |
msgid "The zip engine returned the message: %s."
|
3134 |
msgstr ""
|
3135 |
|
3209 |
msgid "This storage method does not allow downloading"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: src/admin.php:4165
|
3213 |
msgid "(backup set imported from remote location)"
|
3214 |
msgstr ""
|
3215 |
|
3355 |
msgid "Adding..."
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: src/udaddons/options.php:294
|
3359 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: src/restorer.php:2807
|
3363 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3367 |
msgid "go here to change your password on updraftplus.com."
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3371 |
msgid "If you have forgotten your password "
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: src/udaddons/updraftplus-addons.php:938
|
3375 |
msgid "Go here to re-enter your password."
|
3376 |
msgstr ""
|
3377 |
|
3409 |
msgstr ""
|
3410 |
|
3411 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3412 |
+
msgid "authorization failed:"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
3585 |
|
3586 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3587 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3588 |
+
#: src/udaddons/updraftplus-addons.php:889,
|
3589 |
+
#: src/udaddons/updraftplus-addons.php:903
|
3590 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3591 |
msgstr ""
|
3592 |
|
3593 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3594 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3595 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3596 |
msgstr ""
|
3597 |
|
3598 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3599 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3600 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3601 |
msgstr ""
|
3602 |
|
3634 |
msgid "Dismiss (for %s months)"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: src/addons/fixtime.php:448
|
3638 |
msgid "(at same time as files backup)"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: src/admin.php:3701
|
3642 |
msgid "No backup has been completed"
|
3643 |
msgstr ""
|
3644 |
|
3712 |
msgid "Check this box to have a basic report sent to"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: src/admin.php:3715
|
3716 |
msgctxt "i.e. Non-automatic"
|
3717 |
msgid "Manual"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: src/restorer.php:2784
|
3721 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3722 |
msgid "An error (%s) occurred:"
|
3723 |
msgstr ""
|
3726 |
msgid "Change Lock Settings"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: src/addons/morefiles.php:258
|
3730 |
msgid "Any other file/directory on your server that you wish to backup"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
+
#: src/admin.php:2609
|
3734 |
msgid "For even more features and personal support, check out "
|
3735 |
msgstr ""
|
3736 |
|
3816 |
msgid "The admin password has now been removed."
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: src/addons/morefiles.php:141
|
3820 |
msgid "(learn more about this significant option)"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: src/udaddons/options.php:237
|
3824 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: src/admin.php:3207, src/admin.php:4276
|
3828 |
msgid "View Log"
|
3829 |
msgstr ""
|
3830 |
|
3843 |
msgid "and retain this many scheduled backups"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: src/admin.php:3671
|
3847 |
msgid "incremental backup; base backup: %s"
|
3848 |
msgstr ""
|
3849 |
|
3856 |
msgid "Upload files into UpdraftPlus."
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: src/admin.php:1136, src/includes/class-commands.php:462,
|
3860 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3861 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: src/class-updraftplus.php:4123
|
3865 |
msgid "Backup label:"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: src/addons/backblaze.php:205, src/admin.php:2111
|
3869 |
msgid "Error: unexpected file read fail"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: src/backup.php:3437
|
3873 |
msgid "check your log for more details."
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: src/backup.php:3435
|
3877 |
msgid "your web hosting account appears to be full; please see: %s"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: src/backup.php:3433
|
3881 |
msgid "A zip error occurred"
|
3882 |
msgstr ""
|
3883 |
|
3889 |
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."
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:942
|
3893 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:938
|
3897 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:804
|
3901 |
msgid "You need to supply both an email address and a password"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: src/class-updraftplus.php:4142
|
3905 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: src/class-updraftplus.php:4142
|
3909 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3910 |
msgstr ""
|
3911 |
|
3942 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: src/class-updraftplus.php:4115
|
3946 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: src/class-updraftplus.php:4115
|
3950 |
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."
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: src/class-updraftplus.php:4115
|
3954 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: src/class-updraftplus.php:4115
|
3958 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3959 |
msgstr ""
|
3960 |
|
3983 |
msgid "UpdraftPlus is on social media - check us out!"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: src/addons/wp-cli.php:907, src/admin.php:4464
|
3987 |
msgid "Why am I seeing this?"
|
3988 |
msgstr ""
|
3989 |
|
3997 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: src/admin.php:2048, src/admin.php:2060, src/includes/class-commands.php:833
|
4001 |
msgid "Start backup"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
4005 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: src/admin.php:3569
|
4009 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
4010 |
msgstr ""
|
4011 |
|
4013 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: src/admin.php:2286
|
4017 |
msgid "This file could not be uploaded"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: src/admin.php:2249
|
4021 |
msgid "You will find more information about this in the Settings section."
|
4022 |
msgstr ""
|
4023 |
|
4057 |
msgid "Backup succeeded"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: src/addons/incremental.php:237, src/addons/incremental.php:238,
|
4061 |
+
#: src/addons/incremental.php:239, src/addons/incremental.php:240,
|
4062 |
+
#: src/admin.php:3716, src/admin.php:3717, src/admin.php:3718,
|
4063 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4064 |
msgid "Every %s hours"
|
4065 |
msgstr ""
|
4098 |
msgid "search term"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: src/restorer.php:2812
|
4102 |
msgid "Too many database errors have occurred - aborting"
|
4103 |
msgstr ""
|
4104 |
|
4134 |
msgid "Free disk space in account:"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: src/admin.php:4898, src/templates/wp-admin/settings/take-backup.php:50
|
4138 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4139 |
msgstr ""
|
4140 |
|
4141 |
+
#: src/admin.php:817, src/admin.php:1916,
|
4142 |
#: src/includes/deprecated-actions.php:29,
|
4143 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4144 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
4146 |
msgid "Existing Backups"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
+
#: src/admin.php:1141
|
4150 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: src/admin.php:1141
|
4154 |
msgid "To make a backup, just press the Backup Now button."
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: src/admin.php:1141
|
4158 |
msgid "Welcome to UpdraftPlus!"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
+
#: src/addons/moredatabase.php:318
|
4162 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4163 |
msgstr ""
|
4164 |
|
4165 |
+
#: src/addons/moredatabase.php:257
|
4166 |
msgid "Testing..."
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: src/addons/moredatabase.php:244
|
4170 |
msgid "Test connection..."
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: src/addons/moredatabase.php:243
|
4174 |
msgid "Table prefix"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: src/addons/moredatabase.php:237
|
4178 |
msgid "Backup external database"
|
4179 |
msgstr ""
|
4180 |
|
4226 |
msgid "user"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: src/class-updraftplus.php:1790
|
4230 |
msgid "External database (%s)"
|
4231 |
msgstr ""
|
4232 |
|
4244 |
msgid "However, subsequent access attempts failed:"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: src/addons/wp-cli.php:437, src/admin.php:4032
|
4248 |
msgid "External database"
|
4249 |
msgstr ""
|
4250 |
|
4276 |
msgid "use UpdraftPlus Premium"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
+
#: src/class-updraftplus.php:3966
|
4280 |
msgid "Decryption failed. The database file is encrypted."
|
4281 |
msgstr ""
|
4282 |
|
4284 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: src/restorer.php:2284, src/restorer.php:2753, src/restorer.php:2794,
|
4288 |
+
#: src/restorer.php:2807
|
4289 |
msgid "An error occurred on the first %s command - aborting run"
|
4290 |
msgstr ""
|
4291 |
|
4331 |
msgid "Tenant"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: src/addons/wp-cli.php:800, src/admin.php:4586, src/admin.php:5342,
|
4335 |
#: src/methods/openstack2.php:144,
|
4336 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4337 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
4477 |
msgid "Failed to unpack the archive"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: src/class-updraftplus.php:1365
|
4481 |
msgid "Error - failed to download the file"
|
4482 |
msgstr ""
|
4483 |
|
4486 |
msgid "Rescan local folder for new backup sets"
|
4487 |
msgstr ""
|
4488 |
|
4489 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4490 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4491 |
msgstr ""
|
4492 |
|
4493 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4494 |
msgid "It has been tested up to version %s."
|
4495 |
msgstr ""
|
4496 |
|
4497 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4498 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4499 |
msgstr ""
|
4500 |
|
4503 |
msgstr ""
|
4504 |
|
4505 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4506 |
+
#: src/admin.php:5190, src/templates/wp-admin/settings/temporary-clone.php:63
|
4507 |
msgid "Key"
|
4508 |
msgstr ""
|
4509 |
|
4519 |
msgid "SCP/SFTP password/key"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4523 |
msgid "Files backup (created by %s)"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4527 |
msgid "Files and database WordPress backup (created by %s)"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: src/addons/importer.php:276, src/admin.php:4070,
|
4531 |
#: src/includes/class-backup-history.php:435
|
4532 |
msgid "Backup created by: %s."
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: src/addons/wp-cli.php:431, src/admin.php:4030
|
4536 |
msgid "Database (created by %s)"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
+
#: src/addons/wp-cli.php:429, src/admin.php:4024, src/admin.php:4072
|
4540 |
msgid "unknown source"
|
4541 |
msgstr ""
|
4542 |
|
4551 |
msgid "Upload backup files"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: src/admin.php:2301
|
4555 |
msgid "This backup was created by %s, and can be imported."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: src/admin.php:1170
|
4559 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: src/admin.php:1170
|
4563 |
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."
|
4564 |
msgstr ""
|
4565 |
|
4576 |
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))."
|
4577 |
msgstr ""
|
4578 |
|
4579 |
+
#: src/admin.php:4073, src/includes/class-wpadmin-commands.php:162,
|
4580 |
#: src/restorer.php:1975
|
4581 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4582 |
msgstr ""
|
4615 |
msgid "(Read more)"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: src/addons/reporting.php:496
|
4619 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: src/addons/morefiles.php:538
|
4623 |
msgid "No backup of location: there was nothing found to back up"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: src/addons/moredatabase.php:236, src/addons/morefiles.php:297,
|
4627 |
+
#: src/addons/morefiles.php:318
|
4628 |
msgid "Remove"
|
4629 |
msgstr ""
|
4630 |
|
4636 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4637 |
msgstr ""
|
4638 |
|
4639 |
+
#: src/addons/morefiles.php:476, src/admin.php:3829
|
4640 |
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."
|
4641 |
msgstr ""
|
4642 |
|
4665 |
msgid "Backup created by:"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: src/udaddons/options.php:479
|
4669 |
msgid "Available to claim on this site"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4673 |
msgid "To maintain your access to support, please renew."
|
4674 |
msgstr ""
|
4675 |
|
4676 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4677 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4678 |
msgstr ""
|
4679 |
|
4680 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4681 |
msgid "To regain your access, please renew."
|
4682 |
msgstr ""
|
4683 |
|
4684 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4685 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4689 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4690 |
msgstr ""
|
4691 |
|
4692 |
+
#: src/udaddons/updraftplus-addons.php:276,
|
4693 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4694 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/udaddons/updraftplus-addons.php:276
|
4698 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4702 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: src/udaddons/updraftplus-addons.php:266,
|
4706 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4707 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: src/udaddons/updraftplus-addons.php:266
|
4711 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4712 |
msgstr ""
|
4713 |
|
4714 |
+
#: src/udaddons/updraftplus-addons.php:228
|
4715 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4716 |
msgstr ""
|
4717 |
|
4728 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4729 |
msgstr ""
|
4730 |
|
4731 |
+
#: src/includes/class-wpadmin-commands.php:328
|
4732 |
msgid "Constants"
|
4733 |
msgstr ""
|
4734 |
|
4752 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
+
#: src/udaddons/updraftplus-addons.php:474,
|
4756 |
+
#: src/udaddons/updraftplus-addons.php:510
|
4757 |
msgid "Errors occurred:"
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: src/addons/wp-cli.php:664, src/admin.php:4506
|
4761 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4762 |
msgstr ""
|
4763 |
|
4781 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
+
#: src/admin.php:1145, src/class-updraftplus.php:847
|
4785 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4786 |
msgstr ""
|
4787 |
|
4794 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: src/addons/moredatabase.php:144, src/admin.php:1640
|
4798 |
msgid "Messages:"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: src/restorer.php:2647
|
4802 |
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"
|
4803 |
msgstr ""
|
4804 |
|
4956 |
msgstr ""
|
4957 |
|
4958 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4959 |
+
#: src/udaddons/options.php:229
|
4960 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4961 |
msgstr ""
|
4962 |
|
4972 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:4584
|
4976 |
msgid "Error data:"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: src/admin.php:4487
|
4980 |
msgid "Backup does not exist in the backup history"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: src/admin.php:3143
|
4984 |
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."
|
4985 |
msgstr ""
|
4986 |
|
5008 |
msgid "Moving old data out of the way..."
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: src/addons/reporting.php:481
|
5012 |
msgid "Add another address..."
|
5013 |
msgstr ""
|
5014 |
|
5015 |
+
#: src/addons/reporting.php:466
|
5016 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: src/addons/reporting.php:440
|
5020 |
msgid "Email reports"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
+
#: src/class-updraftplus.php:1798, src/class-updraftplus.php:1803
|
5024 |
msgid "%s checksum: %s"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: src/class-updraftplus.php:1734, src/class-updraftplus.php:1736
|
5028 |
msgid "files: %s"
|
5029 |
msgstr ""
|
5030 |
|
5036 |
msgid "Debugging information"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: src/addons/reporting.php:223, src/admin.php:3990
|
5040 |
msgid "Uploaded to:"
|
5041 |
msgstr ""
|
5042 |
|
5056 |
msgid "Errors / warnings:"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: src/addons/morefiles.php:129, src/addons/morefiles.php:130,
|
5060 |
#: src/addons/reporting.php:184
|
5061 |
msgid "Contains:"
|
5062 |
msgstr ""
|
5077 |
msgid "%d errors, %d warnings"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: src/methods/dropbox.php:753, src/methods/dropbox.php:775
|
|
|
5081 |
msgid "%s authentication"
|
5082 |
msgstr ""
|
5083 |
|
5108 |
msgid "Your site's admin email address (%s) will be used."
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/admin.php:853, src/admin.php:2874, src/methods/updraftvault.php:319,
|
5112 |
+
#: src/methods/updraftvault.php:362,
|
5113 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
5114 |
msgid "Connect"
|
5115 |
msgstr ""
|
5116 |
|
5118 |
msgid "For more reporting features, use the Reporting add-on."
|
5119 |
msgstr ""
|
5120 |
|
5121 |
+
#: src/class-updraftplus.php:4047
|
5122 |
msgid "(version: %s)"
|
5123 |
msgstr ""
|
5124 |
|
5126 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5127 |
msgstr ""
|
5128 |
|
5129 |
+
#: src/addons/reporting.php:527, src/admin.php:791
|
5130 |
msgid "When the Email storage method is enabled, also send the backup"
|
5131 |
msgstr ""
|
5132 |
|
5190 |
msgid "UpdraftPlus warning:"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
+
#: src/udaddons/options.php:485
|
5194 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5195 |
msgstr ""
|
5196 |
|
5218 |
msgid "UpdraftPlus Support"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
+
#: src/udaddons/options.php:357
|
5222 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5223 |
msgstr ""
|
5224 |
|
5225 |
+
#: src/udaddons/options.php:346, src/udaddons/updraftplus-addons.php:315
|
5226 |
msgid "UpdraftPlus Addons"
|
5227 |
msgstr ""
|
5228 |
|
5231 |
msgstr ""
|
5232 |
|
5233 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5234 |
+
#: src/udaddons/updraftplus-addons.php:949
|
5235 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:945
|
5239 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5243 |
+
#: src/udaddons/updraftplus-addons.php:908
|
5244 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: src/udaddons/updraftplus-addons.php:831
|
5248 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: src/udaddons/updraftplus-addons.php:829
|
5252 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5253 |
msgstr ""
|
5254 |
|
5259 |
msgid "Reporting"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: src/admin.php:5187
|
5263 |
msgid "Options (raw)"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: src/addons/reporting.php:525, src/admin.php:790
|
5267 |
msgid "Send a report only when there are warnings/errors"
|
5268 |
msgstr ""
|
5269 |
|
5279 |
msgid "See also the \"More Files\" add-on from our shop."
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: src/backup.php:3424, src/class-updraftplus.php:860
|
5283 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: src/class-updraftplus.php:844
|
5287 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: src/udaddons/options.php:508
|
5291 |
msgid "Manage Addons"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: src/udaddons/options.php:486, src/udaddons/options.php:486
|
5295 |
msgid "Buy It"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: src/udaddons/options.php:485
|
5299 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: src/udaddons/options.php:479, src/udaddons/options.php:481
|
5303 |
msgid "activate it on this site"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: src/udaddons/options.php:481
|
5307 |
msgid "You have an inactive purchase"
|
5308 |
msgstr ""
|
5309 |
|
5331 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: src/udaddons/options.php:296
|
5335 |
msgid "An unknown response was received. Response was:"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: src/udaddons/options.php:295
|
5339 |
msgid "Claim not granted - your account login details were wrong"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: src/udaddons/options.php:293
|
5343 |
msgid "Please wait whilst we make the claim..."
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: src/udaddons/options.php:247
|
5347 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: src/udaddons/options.php:240
|
5351 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: src/udaddons/options.php:236
|
5355 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: src/udaddons/options.php:235
|
5359 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: src/admin.php:2872
|
5363 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: src/admin.php:2948
|
5367 |
msgid "Forgotten your details?"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: src/admin.php:2861
|
5371 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: src/admin.php:2927
|
5375 |
msgid "Connect with your UpdraftPlus.Com account"
|
5376 |
msgstr ""
|
5377 |
|
5403 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: src/addons/moredatabase.php:313,
|
5407 |
#: src/includes/class-updraftplus-encryption.php:148
|
5408 |
msgid "Without it, encryption will be a lot slower."
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: src/addons/moredatabase.php:313,
|
5412 |
#: src/includes/class-updraftplus-encryption.php:148
|
5413 |
msgid "Your web-server does not have the %s module installed."
|
5414 |
msgstr ""
|
5459 |
msgid "You can send a backup to more than one destination with an add-on."
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: src/admin.php:3414
|
5463 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: src/admin.php:3281
|
5467 |
msgid "(%s%%, file %s of %s)"
|
5468 |
msgstr ""
|
5469 |
|
5504 |
msgid "%s settings test result:"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: src/admin.php:4138, src/admin.php:4140
|
5508 |
msgid "(Not finished)"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: src/admin.php:4140
|
5512 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5513 |
msgstr ""
|
5514 |
|
5520 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: src/admin.php:3382
|
5524 |
msgid "Job ID: %s"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: src/admin.php:3362
|
5528 |
msgid "last activity: %ss ago"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: src/admin.php:3361
|
5532 |
msgid "next resumption: %d (after %ss)"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: src/admin.php:3344, src/central/bootstrap.php:444,
|
5536 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5537 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5538 |
msgid "Unknown"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: src/admin.php:3295
|
5542 |
msgid "Backup finished"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: src/admin.php:3290
|
5546 |
msgid "Waiting until scheduled time to retry because of errors"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: src/admin.php:3286
|
5550 |
msgid "Pruning old backup sets"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: src/admin.php:3273
|
5554 |
msgid "Uploading files to remote storage"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: src/admin.php:3342
|
5558 |
msgid "Encrypted database"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
+
#: src/admin.php:3334
|
5562 |
msgid "Encrypting database"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: src/admin.php:3308
|
5566 |
msgid "Created database backup"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: src/admin.php:3321
|
5570 |
msgid "table: %s"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: src/admin.php:3319
|
5574 |
msgid "Creating database backup"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: src/admin.php:3264
|
5578 |
msgid "Created file backup zips"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: src/admin.php:3251
|
5582 |
msgid "Creating file backup zips"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
+
#: src/admin.php:3246
|
5586 |
msgid "Backup begun"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
+
#: src/admin.php:1149
|
5590 |
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."
|
5591 |
msgstr ""
|
5592 |
|
5602 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
+
#: src/class-updraftplus.php:3055
|
5606 |
msgid "The backup has not finished; a resumption is scheduled"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: src/class-updraftplus.php:2076
|
5610 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5611 |
msgstr ""
|
5612 |
|
5615 |
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)."
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: src/admin.php:2636
|
5619 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5620 |
msgstr ""
|
5621 |
|
5668 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5672 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5676 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: src/addons/morefiles.php:190
|
5680 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: src/addons/morefiles.php:180
|
5684 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5685 |
msgstr ""
|
5686 |
|
5695 |
msgid "Support"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: src/class-updraftplus.php:4370
|
5699 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: src/class-updraftplus.php:4362
|
5703 |
msgid "This database backup is missing core WordPress tables: %s"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: src/class-updraftplus.php:4108
|
5707 |
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."
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: src/class-updraftplus.php:4107, src/class-updraftplus.php:4114
|
5711 |
msgid "%s version: %s"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: src/class-updraftplus.php:3983
|
5715 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
5716 |
msgstr ""
|
5717 |
|
5718 |
+
#: src/addons/autobackup.php:1067, src/admin.php:974,
|
5719 |
#: src/includes/updraftplus-notices.php:171
|
5720 |
msgid "Be safe with an automatic backup"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: src/admin.php:2589
|
5724 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
5725 |
msgstr ""
|
5726 |
|
5768 |
msgid "Delete from your web server"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: src/admin.php:4110
|
5772 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
5773 |
msgstr ""
|
5774 |
|
5775 |
+
#: src/admin.php:4107
|
5776 |
msgid "(%d archive(s) in set)."
|
5777 |
msgstr ""
|
5778 |
|
5780 |
msgid "Split archives every:"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: src/addons/moredatabase.php:273
|
5784 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
5785 |
msgstr ""
|
5786 |
|
5792 |
msgid "Error: the server sent an empty response."
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: src/admin.php:2315
|
5796 |
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?"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: src/includes/class-wpadmin-commands.php:238
|
5800 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: src/includes/class-wpadmin-commands.php:236
|
5804 |
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."
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: src/includes/class-wpadmin-commands.php:234
|
5808 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
5809 |
msgstr ""
|
5810 |
|
5837 |
msgid "Moving unpacked backup into place..."
|
5838 |
msgstr ""
|
5839 |
|
5840 |
+
#: src/backup.php:3097, src/backup.php:3380
|
5841 |
msgid "Failed to open the zip file (%s) - %s"
|
5842 |
msgstr ""
|
5843 |
|
5844 |
+
#: src/addons/morefiles.php:168
|
5845 |
msgid "WordPress root directory server path: %s"
|
5846 |
msgstr ""
|
5847 |
|
5866 |
msgid "Looking for %s archive: file name: %s"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
+
#: src/addons/wp-cli.php:784, src/admin.php:4568
|
5870 |
msgid "Final checks"
|
5871 |
msgstr ""
|
5872 |
|
5878 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
+
#: src/admin.php:3815
|
5882 |
msgid "Your wp-content directory server path: %s"
|
5883 |
msgstr ""
|
5884 |
|
5899 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
5900 |
msgstr ""
|
5901 |
|
5902 |
+
#: src/class-updraftplus.php:3991
|
5903 |
msgid "Failed to open database file."
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: src/admin.php:5152
|
5907 |
msgid "Known backups (raw)"
|
5908 |
msgstr ""
|
5909 |
|
5921 |
|
5922 |
#: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
|
5923 |
#: src/addons/migrator.php:493, src/addons/migrator.php:496,
|
5924 |
+
#: src/admin.php:1149, src/admin.php:2594, src/backup.php:3431,
|
5925 |
+
#: src/class-updraftplus.php:4230, src/class-updraftplus.php:4230,
|
5926 |
#: src/updraftplus.php:157
|
5927 |
msgid "Go here for more information."
|
5928 |
msgstr ""
|
5931 |
msgid "Some files are still downloading or being processed - please wait."
|
5932 |
msgstr ""
|
5933 |
|
5934 |
+
#: src/class-updraftplus.php:4078, src/class-updraftplus.php:4098
|
5935 |
msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
5936 |
msgstr ""
|
5937 |
|
5938 |
+
#: src/addons/fixtime.php:571
|
5939 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5940 |
msgstr ""
|
5941 |
|
5942 |
+
#: src/addons/fixtime.php:571
|
5943 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5944 |
msgstr ""
|
5945 |
|
5983 |
msgid "%s error - failed to upload file"
|
5984 |
msgstr ""
|
5985 |
|
5986 |
+
#: src/class-updraftplus.php:1254, src/methods/cloudfiles.php:211
|
5987 |
msgid "%s error - failed to re-assemble chunks"
|
5988 |
msgstr ""
|
5989 |
|
5998 |
msgstr ""
|
5999 |
|
6000 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
|
6001 |
+
#: src/admin.php:2286, src/admin.php:2307, src/admin.php:2315,
|
6002 |
+
#: src/class-updraftplus.php:996, src/class-updraftplus.php:1002,
|
6003 |
+
#: src/class-updraftplus.php:3964, src/class-updraftplus.php:3966,
|
6004 |
+
#: src/class-updraftplus.php:4131, src/class-updraftplus.php:4138,
|
6005 |
+
#: src/class-updraftplus.php:4209, src/methods/googledrive.php:395,
|
6006 |
#: src/methods/s3.php:341
|
6007 |
msgid "Error: %s"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: src/admin.php:3734
|
6011 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
6012 |
msgstr ""
|
6013 |
|
6014 |
+
#: src/admin.php:3732
|
6015 |
msgid "Backup directory specified does <b>not</b> exist."
|
6016 |
msgstr ""
|
6017 |
|
6018 |
+
#: src/admin.php:3396, src/admin.php:3683
|
6019 |
msgid "Warning: %s"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
+
#: src/backup.php:3123
|
6023 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: src/backup.php:2418
|
6027 |
msgid "%s: unreadable file - could not be backed up"
|
6028 |
msgstr ""
|
6029 |
|
6031 |
msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: src/backup.php:1859
|
6035 |
msgid "An error occurred whilst closing the final database file"
|
6036 |
msgstr ""
|
6037 |
|
6039 |
msgid "Warnings encountered:"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
+
#: src/class-updraftplus.php:3039
|
6043 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
+
#: src/class-updraftplus.php:873
|
6047 |
msgid "Your free disk space is very low - only %s Mb remain"
|
6048 |
msgstr ""
|
6049 |
|
6095 |
msgid "Please supply the requested information, and then continue."
|
6096 |
msgstr ""
|
6097 |
|
6098 |
+
#: src/class-updraftplus.php:4149, src/restorer.php:2233
|
6099 |
msgid "Site information:"
|
6100 |
msgstr ""
|
6101 |
|
6103 |
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."
|
6104 |
msgstr ""
|
6105 |
|
6106 |
+
#: src/admin.php:2589, src/class-updraftplus.php:4142, src/restorer.php:2647
|
6107 |
msgid "Warning:"
|
6108 |
msgstr ""
|
6109 |
|
6110 |
+
#: src/class-updraftplus.php:4131, src/class-updraftplus.php:4134,
|
6111 |
#: src/restorer.php:530
|
6112 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
6113 |
msgstr ""
|
6116 |
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."
|
6117 |
msgstr ""
|
6118 |
|
6119 |
+
#: src/addons/azure.php:601, src/admin.php:3907,
|
6120 |
#: src/methods/updraftvault.php:306
|
6121 |
msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
6122 |
msgstr ""
|
6132 |
msgid "Unexpected response:"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: src/addons/reporting.php:523, src/admin.php:796
|
6136 |
msgid "To send to more than one address, separate each address with a comma."
|
6137 |
msgstr ""
|
6138 |
|
6160 |
msgid "Also delete from remote storage"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
+
#: src/admin.php:3085
|
6164 |
msgid "Latest UpdraftPlus.com news:"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
#: src/templates/wp-admin/settings/header.php:11,
|
6168 |
+
#: src/templates/wp-admin/settings/tab-addons.php:47,
|
6169 |
+
#: src/templates/wp-admin/settings/tab-addons.php:68,
|
6170 |
+
#: src/templates/wp-admin/settings/tab-addons.php:81,
|
6171 |
+
#: src/templates/wp-admin/settings/tab-addons.php:94,
|
6172 |
+
#: src/templates/wp-admin/settings/tab-addons.php:107,
|
6173 |
+
#: src/templates/wp-admin/settings/tab-addons.php:120,
|
6174 |
+
#: src/templates/wp-admin/settings/tab-addons.php:133,
|
6175 |
+
#: src/templates/wp-admin/settings/tab-addons.php:146,
|
6176 |
+
#: src/templates/wp-admin/settings/tab-addons.php:159,
|
6177 |
+
#: src/templates/wp-admin/settings/tab-addons.php:172,
|
6178 |
+
#: src/templates/wp-admin/settings/tab-addons.php:185,
|
6179 |
+
#: src/templates/wp-admin/settings/tab-addons.php:198,
|
6180 |
+
#: src/templates/wp-admin/settings/tab-addons.php:211,
|
6181 |
+
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6182 |
+
#: src/templates/wp-admin/settings/tab-addons.php:237,
|
6183 |
+
#: src/templates/wp-admin/settings/tab-addons.php:254
|
6184 |
msgid "Premium"
|
6185 |
msgstr ""
|
6186 |
|
6188 |
msgid "News"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
+
#: src/admin.php:1693, src/includes/class-wpadmin-commands.php:506
|
6192 |
msgid "Backup set not found"
|
6193 |
msgstr ""
|
6194 |
|
6219 |
msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
|
6220 |
msgstr ""
|
6221 |
|
6222 |
+
#: src/admin.php:1165
|
6223 |
msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
|
6224 |
msgstr ""
|
6225 |
|
6226 |
+
#: src/admin.php:1165
|
6227 |
msgid "Notice"
|
6228 |
msgstr ""
|
6229 |
|
6329 |
msgid "Multisite Install"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
+
#: src/addons/fixtime.php:571
|
6333 |
msgid "starting from next time it is"
|
6334 |
msgstr ""
|
6335 |
|
6357 |
msgid "Directory path"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
+
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
|
6361 |
+
#: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2943,
|
6362 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
6363 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
6364 |
msgid "Password"
|
6368 |
msgid "Port"
|
6369 |
msgstr ""
|
6370 |
|
6371 |
+
#: src/addons/moredatabase.php:239, src/addons/sftp.php:438,
|
6372 |
#: src/addons/webdav.php:199
|
6373 |
msgid "Host"
|
6374 |
msgstr ""
|
6389 |
msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
|
6390 |
msgstr ""
|
6391 |
|
6392 |
+
#: src/addons/morefiles.php:705
|
6393 |
msgid "No backup of %s directories: there was nothing found to back up"
|
6394 |
msgstr ""
|
6395 |
|
6396 |
+
#: src/addons/morefiles.php:282
|
6397 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
6398 |
msgstr ""
|
6399 |
|
6400 |
+
#: src/addons/morefiles.php:280
|
6401 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
6402 |
msgstr ""
|
6403 |
|
6404 |
+
#: src/addons/morefiles.php:259
|
6405 |
msgid "More Files"
|
6406 |
msgstr ""
|
6407 |
|
6408 |
+
#: src/addons/morefiles.php:167
|
6409 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
6410 |
msgstr ""
|
6411 |
|
6412 |
+
#: src/addons/morefiles.php:160
|
6413 |
msgid "The above files comprise everything in a WordPress installation."
|
6414 |
msgstr ""
|
6415 |
|
6416 |
+
#: src/addons/morefiles.php:141
|
6417 |
msgid "Over-write wp-config.php"
|
6418 |
msgstr ""
|
6419 |
|
6420 |
+
#: src/addons/morefiles.php:137, src/includes/class-wpadmin-commands.php:523
|
6421 |
msgid "WordPress Core"
|
6422 |
msgstr ""
|
6423 |
|
6426 |
msgstr ""
|
6427 |
|
6428 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
6429 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3462,
|
6430 |
+
#: src/admin.php:3498, src/admin.php:3508, src/methods/addon-base-v2.php:313,
|
6431 |
#: src/methods/stream-base.php:356
|
6432 |
msgid "Failed"
|
6433 |
msgstr ""
|
6635 |
msgid "Failure: No container details were given."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/addons/moredatabase.php:240, src/addons/sftp.php:452,
|
6639 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
6640 |
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
6641 |
msgid "Username"
|
6696 |
msgid "Test %s Settings"
|
6697 |
msgstr ""
|
6698 |
|
6699 |
+
#: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
|
6700 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
6701 |
msgid "Error opening local file: Failed to download"
|
6702 |
msgstr ""
|
6713 |
msgstr ""
|
6714 |
|
6715 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
6716 |
+
#: src/class-updraftplus.php:1139, src/methods/cloudfiles.php:130,
|
6717 |
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
6718 |
msgid "%s Error: Failed to open local file"
|
6719 |
msgstr ""
|
6827 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
6828 |
msgstr ""
|
6829 |
|
6830 |
+
#: src/admin.php:3466, src/admin.php:3501, src/admin.php:3505,
|
6831 |
#: src/includes/class-remote-send.php:326,
|
6832 |
#: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
|
6833 |
+
#: src/restorer.php:2888, src/restorer.php:2993
|
6834 |
msgid "OK"
|
6835 |
msgstr ""
|
6836 |
|
6837 |
+
#: src/restorer.php:2882, src/restorer.php:2957
|
6838 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
6839 |
msgstr ""
|
6840 |
|
6841 |
+
#: src/addons/migrator.php:1317, src/restorer.php:2784
|
6842 |
msgid "the database query being run was:"
|
6843 |
msgstr ""
|
6844 |
|
6846 |
msgid "will restore as:"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
+
#: src/class-updraftplus.php:4120, src/restorer.php:2215,
|
6850 |
#: src/restorer.php:2304, src/restorer.php:2330
|
6851 |
msgid "Old table prefix:"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
#: src/addons/reporting.php:72, src/addons/reporting.php:181,
|
6855 |
+
#: src/backup.php:1135, src/class-updraftplus.php:4047
|
6856 |
msgid "Backup of:"
|
6857 |
msgstr ""
|
6858 |
|
6940 |
msgid "Archive is expected to be size:"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
+
#: src/admin.php:4516
|
6944 |
msgid "If making a request for support, please include this information:"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
+
#: src/admin.php:4515
|
6948 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: src/addons/wp-cli.php:647, src/admin.php:4494
|
6952 |
msgid "UpdraftPlus Restoration: Progress"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
+
#: src/admin.php:4486
|
6956 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: src/admin.php:4168
|
6960 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
+
#: src/admin.php:4266
|
6964 |
msgid "Delete this backup set"
|
6965 |
msgstr ""
|
6966 |
|
6967 |
+
#: src/admin.php:3919
|
6968 |
msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
|
6969 |
msgstr ""
|
6970 |
|
6971 |
+
#: src/admin.php:3916
|
6972 |
msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
|
6973 |
msgstr ""
|
6974 |
|
6975 |
+
#: src/admin.php:3914
|
6976 |
msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
|
6977 |
msgstr ""
|
6978 |
|
7013 |
msgid "Use the server's SSL certificates"
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: src/admin.php:3736
|
7017 |
msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
|
7018 |
msgstr ""
|
7019 |
|
7020 |
+
#: src/admin.php:3736
|
7021 |
msgid "or, to reset this option"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
+
#: src/admin.php:3736
|
7025 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
7026 |
msgstr ""
|
7027 |
|
7028 |
+
#: src/admin.php:3728
|
7029 |
msgid "Backup directory specified is writable, which is good."
|
7030 |
msgstr ""
|
7031 |
|
7061 |
msgid "Requesting start of backup..."
|
7062 |
msgstr ""
|
7063 |
|
7064 |
+
#: src/addons/morefiles.php:311, src/admin.php:841
|
7065 |
msgid "Cancel"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
+
#: src/addons/incremental.php:235, src/addons/reporting.php:245,
|
7069 |
+
#: src/admin.php:4002
|
7070 |
msgid "None"
|
7071 |
msgstr ""
|
7072 |
|
7082 |
msgid "Database encryption phrase"
|
7083 |
msgstr ""
|
7084 |
|
7085 |
+
#: src/admin.php:2933, src/templates/wp-admin/settings/form-contents.php:255,
|
7086 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
7087 |
msgid "Email"
|
7088 |
msgstr ""
|
7091 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
7092 |
msgstr ""
|
7093 |
|
7094 |
+
#: src/addons/morefiles.php:473
|
7095 |
msgid "Exclude these:"
|
7096 |
msgstr ""
|
7097 |
|
7098 |
+
#: src/admin.php:3815
|
7099 |
msgid "Any other directories found inside wp-content"
|
7100 |
msgstr ""
|
7101 |
|
7111 |
msgid "To fix the time at which a backup should take place,"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
+
#: src/addons/incremental.php:244, src/admin.php:3722
|
7115 |
msgid "Monthly"
|
7116 |
msgstr ""
|
7117 |
|
7118 |
+
#: src/addons/incremental.php:243, src/admin.php:3721
|
7119 |
msgid "Fortnightly"
|
7120 |
msgstr ""
|
7121 |
|
7122 |
+
#: src/addons/incremental.php:242, src/admin.php:3720
|
7123 |
msgid "Weekly"
|
7124 |
msgstr ""
|
7125 |
|
7126 |
+
#: src/addons/incremental.php:241, src/admin.php:3719
|
7127 |
msgid "Daily"
|
7128 |
msgstr ""
|
7129 |
|
7130 |
+
#: src/admin.php:849, src/admin.php:3697
|
7131 |
msgid "Download log file"
|
7132 |
msgstr ""
|
7133 |
|
7134 |
+
#: src/admin.php:3569
|
7135 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
7136 |
msgstr ""
|
7137 |
|
7138 |
+
#: src/admin.php:3564
|
7139 |
msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
|
7140 |
msgstr ""
|
7141 |
|
7142 |
+
#: src/admin.php:3550
|
7143 |
msgid "The request to the filesystem to create the directory failed."
|
7144 |
msgstr ""
|
7145 |
|
7146 |
+
#: src/admin.php:842, src/admin.php:3459, src/admin.php:3493,
|
7147 |
+
#: src/admin.php:4266, src/includes/class-remote-send.php:543,
|
7148 |
#: src/templates/wp-admin/settings/existing-backups-table.php:155,
|
7149 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
7150 |
msgid "Delete"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
+
#: src/admin.php:3413
|
7154 |
msgid "show log"
|
7155 |
msgstr ""
|
7156 |
|
7211 |
msgid "Yes"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
+
#: src/admin.php:5364, src/admin.php:5368,
|
7215 |
#: src/templates/wp-admin/advanced/site-info.php:45,
|
7216 |
#: src/templates/wp-admin/advanced/site-info.php:51,
|
7217 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
7251 |
msgid "Do read this helpful article of useful things to know before restoring."
|
7252 |
msgstr ""
|
7253 |
|
7254 |
+
#: src/class-updraftplus.php:4081
|
7255 |
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"
|
7256 |
msgstr ""
|
7257 |
|
7258 |
+
#: src/addons/morefiles.php:137,
|
7259 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
|
7260 |
msgid "%s restoration options:"
|
7261 |
msgstr ""
|
7366 |
msgid "More tasks:"
|
7367 |
msgstr ""
|
7368 |
|
7369 |
+
#: src/admin.php:3112
|
7370 |
msgid "Download most recently modified log file"
|
7371 |
msgstr ""
|
7372 |
|
7375 |
msgstr ""
|
7376 |
|
7377 |
#: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
|
7378 |
+
#: src/admin.php:3068, src/admin.php:3074,
|
7379 |
#: src/templates/wp-admin/settings/take-backup.php:64
|
7380 |
msgid "Last log message"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
#: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
|
7384 |
+
#: src/admin.php:4168
|
7385 |
msgid "Restore"
|
7386 |
msgstr ""
|
7387 |
|
7393 |
msgid "Time now"
|
7394 |
msgstr ""
|
7395 |
|
7396 |
+
#: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
|
7397 |
+
#: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:3977,
|
7398 |
+
#: src/admin.php:4030, src/includes/class-remote-send.php:330,
|
7399 |
#: src/includes/class-wpadmin-commands.php:157,
|
7400 |
+
#: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
|
7401 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
|
7402 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75,
|
7403 |
#: src/templates/wp-admin/settings/take-backup.php:33
|
7404 |
msgid "Database"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
+
#: src/admin.php:332, src/admin.php:5159,
|
7408 |
#: src/templates/wp-admin/settings/take-backup.php:23
|
7409 |
msgid "Files"
|
7410 |
msgstr ""
|
7430 |
msgid "JavaScript warning"
|
7431 |
msgstr ""
|
7432 |
|
7433 |
+
#: src/admin.php:826, src/admin.php:3149
|
7434 |
msgid "Delete Old Directories"
|
7435 |
msgstr ""
|
7436 |
|
7437 |
+
#: src/admin.php:2636
|
7438 |
msgid "Current limit is:"
|
7439 |
msgstr ""
|
7440 |
|
7441 |
+
#: src/admin.php:2611
|
7442 |
msgid "Your backup has been restored."
|
7443 |
msgstr ""
|
7444 |
|
7454 |
msgid "UpdraftPlus.Com"
|
7455 |
msgstr ""
|
7456 |
|
7457 |
+
#: src/admin.php:5051
|
7458 |
msgid "Your settings have been wiped."
|
7459 |
msgstr ""
|
7460 |
|
7461 |
+
#: src/admin.php:2571
|
7462 |
msgid "Backup directory successfully created."
|
7463 |
msgstr ""
|
7464 |
|
7465 |
+
#: src/admin.php:2564
|
7466 |
msgid "Backup directory could not be created"
|
7467 |
msgstr ""
|
7468 |
|
7469 |
+
#: src/admin.php:3429
|
7470 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
7471 |
msgstr ""
|
7472 |
|
7473 |
+
#: src/admin.php:3427
|
7474 |
msgid "Old directories successfully removed."
|
7475 |
msgstr ""
|
7476 |
|
7477 |
+
#: src/admin.php:3424, src/admin.php:3424
|
7478 |
msgid "Remove old directories"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
#: src/addons/migrator.php:340, src/addons/migrator.php:355,
|
7482 |
+
#: src/admin.php:2512, src/admin.php:2522, src/admin.php:2531,
|
7483 |
+
#: src/admin.php:2573, src/admin.php:3431
|
7484 |
msgid "Return to UpdraftPlus Configuration"
|
7485 |
msgstr ""
|
7486 |
|
7487 |
+
#: src/admin.php:819, src/admin.php:2512, src/admin.php:2522,
|
7488 |
+
#: src/admin.php:2531, src/admin.php:2573, src/admin.php:3431,
|
7489 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
7490 |
#: src/templates/wp-admin/settings/existing-backups-table.php:139
|
7491 |
msgid "Actions"
|
7492 |
msgstr ""
|
7493 |
|
7494 |
+
#: src/admin.php:2407
|
7495 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
7496 |
msgstr ""
|
7497 |
|
7498 |
+
#: src/admin.php:2307
|
7499 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
7500 |
msgstr ""
|
7501 |
|
7502 |
+
#: src/admin.php:2203
|
7503 |
msgid "No local copy present."
|
7504 |
msgstr ""
|
7505 |
|
7506 |
+
#: src/admin.php:2200
|
7507 |
msgid "Download in progress"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
+
#: src/admin.php:818, src/admin.php:2189
|
7511 |
msgid "File ready."
|
7512 |
msgstr ""
|
7513 |
|
7514 |
+
#: src/admin.php:2170
|
7515 |
msgid "Download failed"
|
7516 |
msgstr ""
|
7517 |
|
7518 |
#: src/addons/wp-cli.php:518, src/admin.php:816,
|
7519 |
+
#: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
|
7520 |
#: src/includes/class-filesystem-functions.php:368,
|
7521 |
#: src/includes/class-storage-methods-interface.php:324,
|
7522 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
7523 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
7524 |
+
#: src/methods/stream-base.php:219, src/restorer.php:2884,
|
7525 |
+
#: src/restorer.php:2909, src/restorer.php:2990, src/updraftplus.php:157
|
7526 |
msgid "Error"
|
7527 |
msgstr ""
|
7528 |
|
7529 |
+
#: src/admin.php:1957
|
7530 |
msgid "Could not find that job - perhaps it has already finished?"
|
7531 |
msgstr ""
|
7532 |
|
7533 |
+
#: src/admin.php:1949
|
7534 |
msgid "Job deleted"
|
7535 |
msgstr ""
|
7536 |
|
7537 |
+
#: src/admin.php:2048, src/includes/class-commands.php:833
|
7538 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
7539 |
msgstr ""
|
7540 |
|
7542 |
msgid "Nothing yet logged"
|
7543 |
msgstr ""
|
7544 |
|
7545 |
+
#: src/admin.php:1161
|
7546 |
msgid "Please consult this FAQ if you have problems backing up."
|
7547 |
msgstr ""
|
7548 |
|
7549 |
+
#: src/admin.php:1161
|
7550 |
msgid "Your website is hosted using the %s web server."
|
7551 |
msgstr ""
|
7552 |
|
7553 |
+
#: src/admin.php:1157
|
7554 |
msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
|
7555 |
msgstr ""
|
7556 |
|
7557 |
+
#: src/admin.php:1153
|
7558 |
msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
|
7559 |
msgstr ""
|
7560 |
|
7561 |
+
#: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1145,
|
7562 |
+
#: src/admin.php:1149, src/admin.php:1153, src/admin.php:1157,
|
7563 |
+
#: src/admin.php:1161, src/admin.php:1170, src/admin.php:3907,
|
7564 |
+
#: src/admin.php:3914, src/admin.php:3916, src/admin.php:5342,
|
7565 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
7566 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
7567 |
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
7568 |
#: src/methods/updraftvault.php:306,
|
7569 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
7570 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
7571 |
+
#: src/udaddons/updraftplus-addons.php:259
|
7572 |
msgid "Warning"
|
7573 |
msgstr ""
|
7574 |
|
7575 |
+
#: src/admin.php:1090
|
7576 |
msgid "Add-Ons / Pro Support"
|
7577 |
msgstr ""
|
7578 |
|
7579 |
+
#: src/admin.php:677, src/admin.php:1088, src/admin.php:2798
|
7580 |
msgid "Settings"
|
7581 |
msgstr ""
|
7582 |
|
7584 |
msgid "Could not create %s zip. Consult the log file for more information."
|
7585 |
msgstr ""
|
7586 |
|
7587 |
+
#: src/backup.php:2298
|
7588 |
msgid "Infinite recursion: consult your log for more information"
|
7589 |
msgstr ""
|
7590 |
|
7596 |
msgid "Like UpdraftPlus and can spare one minute?"
|
7597 |
msgstr ""
|
7598 |
|
7599 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3769,
|
7600 |
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
7601 |
msgid "File not found"
|
7602 |
msgstr ""
|
7605 |
msgid "The decryption key used:"
|
7606 |
msgstr ""
|
7607 |
|
7608 |
+
#: src/class-updraftplus.php:3976,
|
7609 |
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
|
7610 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
7611 |
msgstr ""
|
7612 |
|
7613 |
+
#: src/class-updraftplus.php:3964,
|
7614 |
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
|
7615 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
7616 |
msgstr ""
|
7617 |
|
7618 |
+
#: src/backup.php:2172
|
7619 |
msgid "Could not open the backup file for writing"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
+
#: src/class-updraftplus.php:3531
|
7623 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
7624 |
msgstr ""
|
7625 |
|
7626 |
+
#: src/class-updraftplus.php:3515
|
7627 |
msgid "Could not read the directory"
|
7628 |
msgstr ""
|
7629 |
|
7630 |
+
#: src/admin.php:2249, src/backup.php:1359
|
7631 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
7632 |
msgstr ""
|
7633 |
|
7635 |
msgid "WordPress backup is complete"
|
7636 |
msgstr ""
|
7637 |
|
7638 |
+
#: src/class-updraftplus.php:3051
|
7639 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
7640 |
msgstr ""
|
7641 |
|
7642 |
+
#: src/class-updraftplus.php:3033
|
7643 |
msgid "The backup apparently succeeded and is now complete"
|
7644 |
msgstr ""
|
7645 |
|
7646 |
+
#: src/addons/moredatabase.php:388
|
7647 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
7648 |
msgstr ""
|
7649 |
|
7650 |
+
#: src/class-updraftplus.php:2733
|
7651 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
7652 |
msgstr ""
|
7653 |
|
7654 |
+
#: src/class-updraftplus.php:1850
|
7655 |
msgid "Others"
|
7656 |
msgstr ""
|
7657 |
|
7658 |
+
#: src/addons/multisite.php:500, src/class-updraftplus.php:1835
|
7659 |
msgid "Uploads"
|
7660 |
msgstr ""
|
7661 |
|
7662 |
+
#: src/class-updraftplus.php:1834
|
7663 |
msgid "Themes"
|
7664 |
msgstr ""
|
7665 |
|
7666 |
+
#: src/class-updraftplus.php:1833
|
7667 |
msgid "Plugins"
|
7668 |
msgstr ""
|
7669 |
|
7671 |
msgid "No log files were found."
|
7672 |
msgstr ""
|
7673 |
|
7674 |
+
#: src/admin.php:2119, src/admin.php:2123, src/class-updraftplus.php:618
|
7675 |
msgid "The log file could not be read."
|
7676 |
msgstr ""
|
7677 |
|
7678 |
+
#: src/admin.php:1190, src/admin.php:1211, src/admin.php:1230,
|
7679 |
#: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
|
7680 |
#: src/class-updraftplus.php:623, src/class-updraftplus.php:628
|
7681 |
msgid "UpdraftPlus notice:"
|
@@ -11,6 +11,52 @@ msgstr ""
|
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
15 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
16 |
msgstr ""
|
@@ -23,7 +69,7 @@ msgstr ""
|
|
23 |
msgid "Your database user does not have permission to drop tables"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
28 |
msgstr ""
|
29 |
|
@@ -191,11 +237,11 @@ msgstr ""
|
|
191 |
msgid "WordPress installed"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: src/admin.php:
|
195 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: src/admin.php:
|
199 |
msgid "Exclude these from"
|
200 |
msgstr ""
|
201 |
|
@@ -235,7 +281,7 @@ msgstr ""
|
|
235 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
239 |
msgid "To create a temporary clone you need credit in your account."
|
240 |
msgstr ""
|
241 |
|
@@ -247,15 +293,15 @@ msgstr ""
|
|
247 |
msgid "failed to upload file to %s (see log file for more)"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/admin.php:
|
251 |
msgid "Dashboard:"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/admin.php:
|
255 |
msgid "Front page:"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/admin.php:
|
259 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
260 |
msgstr ""
|
261 |
|
@@ -267,14 +313,10 @@ msgstr ""
|
|
267 |
msgid "Current clones"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/class-updraftplus.php:
|
271 |
msgid "Your clone will now deploy this data to re-create your site."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/admin.php:942
|
275 |
-
msgid "The backup for the clone has been aborted."
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
#: src/admin.php:941
|
279 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
280 |
msgstr ""
|
@@ -337,70 +379,71 @@ msgstr ""
|
|
337 |
msgid "Account type"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
|
|
341 |
msgid "I accept the UpdraftClone terms and conditions"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
345 |
msgid "Not got an account? Get one by buying some tokens here."
|
346 |
msgstr ""
|
347 |
|
348 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
349 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
350 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
351 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
355 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
359 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
363 |
msgid "Flexible"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
367 |
msgid "Takes just the time needed to create a backup and send it."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
371 |
msgid "Fast"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
375 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
379 |
msgid "Secure"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
383 |
msgid "Runs on capacity from a leading cloud computing provider."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
387 |
msgid "Reliable"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
391 |
msgid "Press the buttons... UpdraftClone does the work."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
395 |
msgid "Easy"
|
396 |
msgstr ""
|
397 |
|
398 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
399 |
-
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test
|
400 |
msgstr ""
|
401 |
|
402 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
403 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
404 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
405 |
msgstr ""
|
406 |
|
@@ -574,11 +617,11 @@ msgstr ""
|
|
574 |
msgid "You can buy more temporary clone tokens here."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: src/admin.php:
|
578 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
582 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
583 |
msgstr ""
|
584 |
|
@@ -590,19 +633,19 @@ msgstr ""
|
|
590 |
msgid "Other great plugins"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: src/admin.php:
|
594 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: src/class-updraftplus.php:
|
598 |
msgid "Choose a default for each table"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: src/admin.php:
|
602 |
msgid "Sending files to remote site"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: src/admin.php:
|
606 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
607 |
msgstr ""
|
608 |
|
@@ -614,7 +657,7 @@ msgstr ""
|
|
614 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: src/admin.php:
|
618 |
msgid "Backup / Restore"
|
619 |
msgstr ""
|
620 |
|
@@ -638,7 +681,7 @@ msgstr ""
|
|
638 |
msgid "No previous backup found to add an increment to."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: src/restorer.php:
|
642 |
msgid "Requested character set (%s) is not present - changing to %s."
|
643 |
msgstr ""
|
644 |
|
@@ -662,7 +705,7 @@ msgstr ""
|
|
662 |
msgid "Refresh connection"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: src/addons/reporting.php:
|
666 |
msgid "Log all messages to syslog"
|
667 |
msgstr ""
|
668 |
|
@@ -690,11 +733,11 @@ msgstr ""
|
|
690 |
msgid "More information here."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: src/admin.php:669, src/admin.php:
|
694 |
msgid "Migrate / Clone"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: src/admin.php:
|
698 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
699 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
700 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
@@ -720,11 +763,11 @@ msgstr ""
|
|
720 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: src/admin.php:
|
724 |
msgid "(current version)"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: src/admin.php:
|
728 |
msgid "press here"
|
729 |
msgstr ""
|
730 |
|
@@ -738,15 +781,15 @@ msgstr ""
|
|
738 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: src/addons/incremental.php:
|
742 |
msgid "Tell me more"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: src/addons/incremental.php:
|
746 |
msgid "And then add an incremental backup"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: src/addons/incremental.php:
|
750 |
msgid "Every hour"
|
751 |
msgstr ""
|
752 |
|
@@ -758,8 +801,9 @@ msgstr ""
|
|
758 |
msgid "Available temporary clone tokens:"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: src/admin.php:
|
762 |
#: src/includes/class-commands.php:949,
|
|
|
763 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
764 |
msgid "Processing"
|
765 |
msgstr ""
|
@@ -776,7 +820,7 @@ msgstr ""
|
|
776 |
msgid "I consent to %s"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: src/admin.php:
|
780 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
781 |
msgid "One Time Password (check your OTP app to get this password)"
|
782 |
msgstr ""
|
@@ -825,7 +869,7 @@ msgstr ""
|
|
825 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: src/admin.php:
|
829 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
830 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
831 |
msgstr[0] ""
|
@@ -932,7 +976,7 @@ msgstr ""
|
|
932 |
msgid "Upload backup"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: src/admin.php:
|
936 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
937 |
msgstr ""
|
938 |
|
@@ -944,19 +988,19 @@ msgstr ""
|
|
944 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: src/admin.php:844, src/admin.php:
|
948 |
msgid "Upload"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: src/addons/reporting.php:
|
952 |
msgid "Only email the database backup"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: src/addons/reporting.php:
|
956 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: src/addons/reporting.php:
|
960 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
961 |
msgstr ""
|
962 |
|
@@ -1070,7 +1114,7 @@ msgstr ""
|
|
1070 |
msgid "Select your incremental restore point"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: src/addons/morefiles.php:
|
1074 |
msgid "(None configured)"
|
1075 |
msgstr ""
|
1076 |
|
@@ -1078,11 +1122,11 @@ msgstr ""
|
|
1078 |
msgid "Ensure you are logged into the correct account before continuing."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: src/admin.php:
|
1082 |
msgid "Remote storage method and instance id are required for authentication."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: src/admin.php:
|
1086 |
msgid "authentication error"
|
1087 |
msgstr ""
|
1088 |
|
@@ -1164,15 +1208,15 @@ msgstr[3] ""
|
|
1164 |
msgstr[4] ""
|
1165 |
msgstr[5] ""
|
1166 |
|
1167 |
-
#: src/class-updraftplus.php:
|
1168 |
msgid "Your chosen replacement collation"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: src/class-updraftplus.php:
|
1172 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: src/class-updraftplus.php:
|
1176 |
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."
|
1177 |
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."
|
1178 |
msgstr[0] ""
|
@@ -1248,15 +1292,15 @@ msgstr[5] ""
|
|
1248 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: src/class-updraftplus.php:
|
1252 |
msgid "Your chosen character set to use instead:"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: src/class-updraftplus.php:
|
1256 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: src/class-updraftplus.php:
|
1260 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1261 |
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."
|
1262 |
msgstr[0] ""
|
@@ -1350,23 +1394,23 @@ msgstr ""
|
|
1350 |
msgid "Account ID"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: src/class-updraftplus.php:
|
1354 |
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."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: src/class-updraftplus.php:
|
1358 |
msgid "the migrator add-on"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: src/class-updraftplus.php:
|
1362 |
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."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: src/class-updraftplus.php:
|
1366 |
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."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: src/class-updraftplus.php:
|
1370 |
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."
|
1371 |
msgstr ""
|
1372 |
|
@@ -1382,14 +1426,14 @@ msgstr ""
|
|
1382 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: src/backup.php:456, src/backup.php:
|
1386 |
-
#: src/class-updraftplus.php:
|
1387 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1388 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: src/backup.php:450, src/backup.php:
|
1392 |
-
#: src/class-updraftplus.php:
|
1393 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1394 |
msgid "A PHP exception (%s) has occurred: %s"
|
1395 |
msgstr ""
|
@@ -1443,11 +1487,11 @@ msgstr ""
|
|
1443 |
msgid "Instant and secure logon with a wave of your phone."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: src/admin.php:
|
1447 |
msgid "Value"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: src/admin.php:
|
1451 |
msgid "Did not know how to delete from this cloud service."
|
1452 |
msgstr ""
|
1453 |
|
@@ -1463,11 +1507,11 @@ msgstr ""
|
|
1463 |
msgid "Cloud Files"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: src/admin.php:
|
1467 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: src/admin.php:
|
1471 |
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."
|
1472 |
msgstr ""
|
1473 |
|
@@ -1476,23 +1520,23 @@ msgstr ""
|
|
1476 |
msgid "UpdraftVault"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: src/includes/class-wpadmin-commands.php:
|
1480 |
msgid "archive"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: src/includes/class-wpadmin-commands.php:
|
1484 |
msgid "Extra database"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: src/admin.php:
|
1488 |
msgid "Press here to download or browse"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: src/admin.php:
|
1492 |
msgid "Error: invalid path"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: src/admin.php:
|
1496 |
msgid "An error occurred when fetching storage module options: "
|
1497 |
msgstr ""
|
1498 |
|
@@ -1528,15 +1572,15 @@ msgstr ""
|
|
1528 |
msgid "Skipped tables:"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: src/class-updraftplus.php:
|
1532 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: src/admin.php:
|
1536 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: src/admin.php:
|
1540 |
msgid "All WordPress tables will be backed up."
|
1541 |
msgstr ""
|
1542 |
|
@@ -1568,15 +1612,15 @@ msgstr ""
|
|
1568 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: src/addons/moredatabase.php:
|
1572 |
msgid "tables"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: src/addons/moredatabase.php:
|
1576 |
msgid "WordPress database"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: src/addons/moredatabase.php:
|
1580 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1581 |
msgstr ""
|
1582 |
|
@@ -1695,7 +1739,22 @@ msgstr ""
|
|
1695 |
msgid "Installed"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: src/templates/wp-admin/settings/tab-addons.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1699 |
msgid "Free"
|
1700 |
msgstr ""
|
1701 |
|
@@ -1718,28 +1777,28 @@ msgstr ""
|
|
1718 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: src/addons/morefiles.php:
|
1722 |
msgid "Please choose a file or directory"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: src/addons/morefiles.php:
|
1726 |
msgid "Confirm"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: src/addons/morefiles.php:
|
1730 |
msgid "Go up a directory"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: src/addons/morefiles.php:
|
1734 |
msgid "Add directory..."
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: src/addons/morefiles.php:
|
1738 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1739 |
msgid "Edit"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: src/addons/morefiles.php:
|
1743 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1744 |
msgstr ""
|
1745 |
|
@@ -1812,7 +1871,7 @@ msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
|
|
1812 |
msgstr ""
|
1813 |
|
1814 |
#: src/includes/updraftplus-notices.php:238
|
1815 |
-
msgid "Happy New Year - 20% off UpdraftPlus Premium until January
|
1816 |
msgstr ""
|
1817 |
|
1818 |
#: src/includes/updraftplus-notices.php:225
|
@@ -1998,11 +2057,11 @@ msgstr ""
|
|
1998 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: src/admin.php:
|
2002 |
msgid "Remote files deleted:"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: src/admin.php:
|
2006 |
msgid "Local files deleted:"
|
2007 |
msgstr ""
|
2008 |
|
@@ -2058,16 +2117,16 @@ msgstr ""
|
|
2058 |
msgid "Account is not authorized (%s)."
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2062 |
msgid "Your IP address:"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2066 |
-
#: src/udaddons/updraftplus-addons.php:
|
2067 |
msgid "To remove any block, please go here."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:
|
2071 |
msgid "An error response was received; HTTP code:"
|
2072 |
msgstr ""
|
2073 |
|
@@ -2083,11 +2142,11 @@ msgstr ""
|
|
2083 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: src/admin.php:
|
2087 |
msgid "To fix this problem go here."
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: src/admin.php:
|
2091 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2092 |
msgstr ""
|
2093 |
|
@@ -2119,7 +2178,7 @@ msgstr ""
|
|
2119 |
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."
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: src/udaddons/updraftplus-addons.php:
|
2123 |
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."
|
2124 |
msgstr ""
|
2125 |
|
@@ -2163,11 +2222,11 @@ msgstr ""
|
|
2163 |
msgid "Public key was sent to:"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: src/backup.php:
|
2167 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: src/backup.php:
|
2171 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2172 |
msgstr ""
|
2173 |
|
@@ -2225,8 +2284,8 @@ msgstr ""
|
|
2225 |
msgid "login"
|
2226 |
msgstr "تسجيل الدخول"
|
2227 |
|
2228 |
-
#: src/addons/reporting.php:
|
2229 |
-
#: src/addons/reporting.php:
|
2230 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2231 |
msgstr ""
|
2232 |
|
@@ -2234,7 +2293,7 @@ msgstr ""
|
|
2234 |
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."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: src/class-updraftplus.php:
|
2238 |
msgid "Size: %s MB"
|
2239 |
msgstr ""
|
2240 |
|
@@ -2242,7 +2301,7 @@ msgstr ""
|
|
2242 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: src/class-updraftplus.php:
|
2246 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2247 |
msgstr ""
|
2248 |
|
@@ -2348,23 +2407,23 @@ msgstr ""
|
|
2348 |
msgid "UpdraftCentral Connection"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: src/backup.php:1042, src/class-updraftplus.php:
|
2352 |
msgid "The backup was aborted by the user"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: src/admin.php:
|
2356 |
msgid "Your settings have been saved."
|
2357 |
msgstr "تم حفظ إعداداتك."
|
2358 |
|
2359 |
-
#: src/admin.php:
|
2360 |
msgid "Total backup size:"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: src/admin.php:
|
2364 |
msgid "stop"
|
2365 |
msgstr "توقف"
|
2366 |
|
2367 |
-
#: src/admin.php:903, src/admin.php:
|
2368 |
msgid "The backup has finished running"
|
2369 |
msgstr ""
|
2370 |
|
@@ -2426,19 +2485,19 @@ msgstr ""
|
|
2426 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: src/class-updraftplus.php:
|
2430 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: src/class-updraftplus.php:
|
2434 |
msgid "Please read this link for important information on this process."
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: src/class-updraftplus.php:
|
2438 |
msgid "It will be imported as a new site."
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: src/admin.php:
|
2442 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2443 |
msgid "Dismiss"
|
2444 |
msgstr "رفض"
|
@@ -2504,7 +2563,7 @@ msgstr ""
|
|
2504 |
msgid "Call WordPress action:"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: src/admin.php:
|
2508 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2509 |
msgstr ""
|
2510 |
|
@@ -2536,63 +2595,63 @@ msgstr ""
|
|
2536 |
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)."
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: src/admin.php:
|
2540 |
msgid "Send this backup to remote storage"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: src/admin.php:
|
2544 |
msgid "Check out UpdraftPlus Vault."
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: src/admin.php:
|
2548 |
msgid "Not got any remote storage?"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: src/admin.php:
|
2552 |
msgid "settings"
|
2553 |
msgstr "إعدادات"
|
2554 |
|
2555 |
-
#: src/admin.php:
|
2556 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: src/admin.php:
|
2560 |
msgid "Include any files in the backup"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: src/admin.php:
|
2564 |
msgid "Include the database in the backup"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: src/admin.php:
|
2568 |
msgid "Continue restoration"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: src/admin.php:
|
2572 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: src/admin.php:
|
2576 |
msgid "Unfinished restoration"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: src/admin.php:
|
2580 |
msgid "%s minutes, %s seconds"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: src/admin.php:
|
2584 |
msgid "Backup Contents And Schedule"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: src/admin.php:
|
2588 |
msgid "Premium / Extensions"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: src/admin.php:
|
2592 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: src/addons/morefiles.php:
|
2596 |
msgctxt "(verb)"
|
2597 |
msgid "Download"
|
2598 |
msgstr ""
|
@@ -2605,7 +2664,7 @@ msgstr ""
|
|
2605 |
msgid "Extensions"
|
2606 |
msgstr "Extensions"
|
2607 |
|
2608 |
-
#: src/admin.php:685, src/admin.php:
|
2609 |
msgid "Advanced Tools"
|
2610 |
msgstr ""
|
2611 |
|
@@ -2724,7 +2783,7 @@ msgstr ""
|
|
2724 |
msgid "Could not access container"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: src/class-updraftplus.php:
|
2728 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2729 |
msgstr ""
|
2730 |
|
@@ -2854,7 +2913,7 @@ msgstr ""
|
|
2854 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#: src/admin.php:
|
2858 |
msgid "Backup sets removed:"
|
2859 |
msgstr ""
|
2860 |
|
@@ -2894,11 +2953,11 @@ msgstr ""
|
|
2894 |
msgid "Add an additional retention rule..."
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: src/restorer.php:
|
2898 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#: src/restorer.php:
|
2902 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2903 |
msgstr ""
|
2904 |
|
@@ -2906,15 +2965,15 @@ msgstr ""
|
|
2906 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: src/class-updraftplus.php:
|
2910 |
msgid "You must upgrade MySQL to be able to use this database."
|
2911 |
msgstr ""
|
2912 |
|
2913 |
-
#: src/class-updraftplus.php:
|
2914 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2915 |
msgstr ""
|
2916 |
|
2917 |
-
#: src/admin.php:
|
2918 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2919 |
msgstr ""
|
2920 |
|
@@ -2942,11 +3001,11 @@ msgstr ""
|
|
2942 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2943 |
msgstr ""
|
2944 |
|
2945 |
-
#: src/admin.php:
|
2946 |
msgid "Go to the remote storage settings in order to connect."
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#: src/admin.php:
|
2950 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2951 |
msgstr ""
|
2952 |
|
@@ -3090,7 +3149,7 @@ msgstr ""
|
|
3090 |
msgid "Delete failed:"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: src/backup.php:
|
3094 |
msgid "The zip engine returned the message: %s."
|
3095 |
msgstr ""
|
3096 |
|
@@ -3170,7 +3229,7 @@ msgstr ""
|
|
3170 |
msgid "This storage method does not allow downloading"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: src/admin.php:
|
3174 |
msgid "(backup set imported from remote location)"
|
3175 |
msgstr ""
|
3176 |
|
@@ -3316,23 +3375,23 @@ msgstr ""
|
|
3316 |
msgid "Adding..."
|
3317 |
msgstr ""
|
3318 |
|
3319 |
-
#: src/udaddons/options.php:
|
3320 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
-
#: src/restorer.php:
|
3324 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: src/udaddons/updraftplus-addons.php:
|
3328 |
msgid "go here to change your password on updraftplus.com."
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#: src/udaddons/updraftplus-addons.php:
|
3332 |
msgid "If you have forgotten your password "
|
3333 |
msgstr ""
|
3334 |
|
3335 |
-
#: src/udaddons/updraftplus-addons.php:
|
3336 |
msgid "Go here to re-enter your password."
|
3337 |
msgstr ""
|
3338 |
|
@@ -3370,7 +3429,7 @@ msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127
|
|
3370 |
msgstr ""
|
3371 |
|
3372 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3373 |
-
msgid "
|
3374 |
msgstr ""
|
3375 |
|
3376 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
@@ -3546,18 +3605,18 @@ msgstr ""
|
|
3546 |
|
3547 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3548 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3549 |
-
#: src/udaddons/updraftplus-addons.php:
|
3550 |
-
#: src/udaddons/updraftplus-addons.php:
|
3551 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3552 |
msgstr ""
|
3553 |
|
3554 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3555 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3556 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3557 |
msgstr ""
|
3558 |
|
3559 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3560 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3561 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3562 |
msgstr ""
|
3563 |
|
@@ -3595,11 +3654,11 @@ msgstr ""
|
|
3595 |
msgid "Dismiss (for %s months)"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: src/addons/fixtime.php:
|
3599 |
msgid "(at same time as files backup)"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: src/admin.php:
|
3603 |
msgid "No backup has been completed"
|
3604 |
msgstr ""
|
3605 |
|
@@ -3673,12 +3732,12 @@ msgstr ""
|
|
3673 |
msgid "Check this box to have a basic report sent to"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: src/admin.php:
|
3677 |
msgctxt "i.e. Non-automatic"
|
3678 |
msgid "Manual"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#: src/restorer.php:
|
3682 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3683 |
msgid "An error (%s) occurred:"
|
3684 |
msgstr ""
|
@@ -3687,11 +3746,11 @@ msgstr ""
|
|
3687 |
msgid "Change Lock Settings"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: src/addons/morefiles.php:
|
3691 |
msgid "Any other file/directory on your server that you wish to backup"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: src/admin.php:
|
3695 |
msgid "For even more features and personal support, check out "
|
3696 |
msgstr ""
|
3697 |
|
@@ -3777,15 +3836,15 @@ msgstr ""
|
|
3777 |
msgid "The admin password has now been removed."
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: src/addons/morefiles.php:
|
3781 |
msgid "(learn more about this significant option)"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: src/udaddons/options.php:
|
3785 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: src/admin.php:
|
3789 |
msgid "View Log"
|
3790 |
msgstr ""
|
3791 |
|
@@ -3804,7 +3863,7 @@ msgstr ""
|
|
3804 |
msgid "and retain this many scheduled backups"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: src/admin.php:
|
3808 |
msgid "incremental backup; base backup: %s"
|
3809 |
msgstr ""
|
3810 |
|
@@ -3817,28 +3876,28 @@ msgstr ""
|
|
3817 |
msgid "Upload files into UpdraftPlus."
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: src/admin.php:
|
3821 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3822 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3823 |
msgstr ""
|
3824 |
|
3825 |
-
#: src/class-updraftplus.php:
|
3826 |
msgid "Backup label:"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
-
#: src/addons/backblaze.php:205, src/admin.php:
|
3830 |
msgid "Error: unexpected file read fail"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: src/backup.php:
|
3834 |
msgid "check your log for more details."
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: src/backup.php:
|
3838 |
msgid "your web hosting account appears to be full; please see: %s"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: src/backup.php:
|
3842 |
msgid "A zip error occurred"
|
3843 |
msgstr ""
|
3844 |
|
@@ -3850,23 +3909,23 @@ msgstr ""
|
|
3850 |
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."
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:
|
3854 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:
|
3858 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:
|
3862 |
msgid "You need to supply both an email address and a password"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: src/class-updraftplus.php:
|
3866 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: src/class-updraftplus.php:
|
3870 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3871 |
msgstr ""
|
3872 |
|
@@ -3903,19 +3962,19 @@ msgstr ""
|
|
3903 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: src/class-updraftplus.php:
|
3907 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: src/class-updraftplus.php:
|
3911 |
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."
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: src/class-updraftplus.php:
|
3915 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: src/class-updraftplus.php:
|
3919 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3920 |
msgstr ""
|
3921 |
|
@@ -3944,7 +4003,7 @@ msgstr ""
|
|
3944 |
msgid "UpdraftPlus is on social media - check us out!"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: src/addons/wp-cli.php:907, src/admin.php:
|
3948 |
msgid "Why am I seeing this?"
|
3949 |
msgstr ""
|
3950 |
|
@@ -3958,15 +4017,15 @@ msgstr ""
|
|
3958 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:
|
3962 |
msgid "Start backup"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: src/class-updraftplus.php:
|
3966 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: src/admin.php:
|
3970 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
3971 |
msgstr ""
|
3972 |
|
@@ -3974,11 +4033,11 @@ msgstr ""
|
|
3974 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: src/admin.php:
|
3978 |
msgid "This file could not be uploaded"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: src/admin.php:
|
3982 |
msgid "You will find more information about this in the Settings section."
|
3983 |
msgstr ""
|
3984 |
|
@@ -4018,9 +4077,9 @@ msgstr ""
|
|
4018 |
msgid "Backup succeeded"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#: src/addons/incremental.php:
|
4022 |
-
#: src/addons/incremental.php:
|
4023 |
-
#: src/admin.php:
|
4024 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4025 |
msgid "Every %s hours"
|
4026 |
msgstr ""
|
@@ -4059,7 +4118,7 @@ msgstr ""
|
|
4059 |
msgid "search term"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: src/restorer.php:
|
4063 |
msgid "Too many database errors have occurred - aborting"
|
4064 |
msgstr ""
|
4065 |
|
@@ -4095,11 +4154,11 @@ msgstr ""
|
|
4095 |
msgid "Free disk space in account:"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: src/admin.php:
|
4099 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: src/admin.php:817, src/admin.php:
|
4103 |
#: src/includes/deprecated-actions.php:29,
|
4104 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4105 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
@@ -4107,35 +4166,35 @@ msgstr ""
|
|
4107 |
msgid "Existing Backups"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: src/admin.php:
|
4111 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: src/admin.php:
|
4115 |
msgid "To make a backup, just press the Backup Now button."
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: src/admin.php:
|
4119 |
msgid "Welcome to UpdraftPlus!"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: src/addons/moredatabase.php:
|
4123 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
#: src/addons/moredatabase.php:
|
4127 |
msgid "Testing..."
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: src/addons/moredatabase.php:
|
4131 |
msgid "Test connection..."
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: src/addons/moredatabase.php:
|
4135 |
msgid "Table prefix"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: src/addons/moredatabase.php:
|
4139 |
msgid "Backup external database"
|
4140 |
msgstr ""
|
4141 |
|
@@ -4187,7 +4246,7 @@ msgstr ""
|
|
4187 |
msgid "user"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: src/class-updraftplus.php:
|
4191 |
msgid "External database (%s)"
|
4192 |
msgstr ""
|
4193 |
|
@@ -4205,7 +4264,7 @@ msgstr ""
|
|
4205 |
msgid "However, subsequent access attempts failed:"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: src/addons/wp-cli.php:437, src/admin.php:
|
4209 |
msgid "External database"
|
4210 |
msgstr ""
|
4211 |
|
@@ -4237,7 +4296,7 @@ msgstr ""
|
|
4237 |
msgid "use UpdraftPlus Premium"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
-
#: src/class-updraftplus.php:
|
4241 |
msgid "Decryption failed. The database file is encrypted."
|
4242 |
msgstr ""
|
4243 |
|
@@ -4245,8 +4304,8 @@ msgstr ""
|
|
4245 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: src/restorer.php:2284, src/restorer.php:
|
4249 |
-
#: src/restorer.php:
|
4250 |
msgid "An error occurred on the first %s command - aborting run"
|
4251 |
msgstr ""
|
4252 |
|
@@ -4292,7 +4351,7 @@ msgstr ""
|
|
4292 |
msgid "Tenant"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
-
#: src/addons/wp-cli.php:800, src/admin.php:
|
4296 |
#: src/methods/openstack2.php:144,
|
4297 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4298 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
@@ -4438,7 +4497,7 @@ msgstr ""
|
|
4438 |
msgid "Failed to unpack the archive"
|
4439 |
msgstr ""
|
4440 |
|
4441 |
-
#: src/class-updraftplus.php:
|
4442 |
msgid "Error - failed to download the file"
|
4443 |
msgstr ""
|
4444 |
|
@@ -4447,15 +4506,15 @@ msgstr ""
|
|
4447 |
msgid "Rescan local folder for new backup sets"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: src/udaddons/updraftplus-addons.php:
|
4451 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: src/udaddons/updraftplus-addons.php:
|
4455 |
msgid "It has been tested up to version %s."
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: src/udaddons/updraftplus-addons.php:
|
4459 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4460 |
msgstr ""
|
4461 |
|
@@ -4464,7 +4523,7 @@ msgid "password/key"
|
|
4464 |
msgstr " الرقم السري/المفتاح"
|
4465 |
|
4466 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4467 |
-
#: src/admin.php:
|
4468 |
msgid "Key"
|
4469 |
msgstr "مفتاح"
|
4470 |
|
@@ -4480,24 +4539,24 @@ msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فا
|
|
4480 |
msgid "SCP/SFTP password/key"
|
4481 |
msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
|
4482 |
|
4483 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4484 |
msgid "Files backup (created by %s)"
|
4485 |
msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
|
4486 |
|
4487 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4488 |
msgid "Files and database WordPress backup (created by %s)"
|
4489 |
msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
|
4490 |
|
4491 |
-
#: src/addons/importer.php:276, src/admin.php:
|
4492 |
#: src/includes/class-backup-history.php:435
|
4493 |
msgid "Backup created by: %s."
|
4494 |
msgstr "ولدت النسخة الإحتياطية من طرف: %s."
|
4495 |
|
4496 |
-
#: src/addons/wp-cli.php:431, src/admin.php:
|
4497 |
msgid "Database (created by %s)"
|
4498 |
msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
|
4499 |
|
4500 |
-
#: src/addons/wp-cli.php:429, src/admin.php:
|
4501 |
msgid "unknown source"
|
4502 |
msgstr "مصدر غير معروف"
|
4503 |
|
@@ -4512,15 +4571,15 @@ msgstr "إعادة فحص الإستضافة الإستضافة السحابية
|
|
4512 |
msgid "Upload backup files"
|
4513 |
msgstr "رفع ملفات النسخة الإحتياطية"
|
4514 |
|
4515 |
-
#: src/admin.php:
|
4516 |
msgid "This backup was created by %s, and can be imported."
|
4517 |
msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
|
4518 |
|
4519 |
-
#: src/admin.php:
|
4520 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4521 |
msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
|
4522 |
|
4523 |
-
#: src/admin.php:
|
4524 |
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."
|
4525 |
msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
|
4526 |
|
@@ -4537,7 +4596,7 @@ msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zi
|
|
4537 |
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))."
|
4538 |
msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
4539 |
|
4540 |
-
#: src/admin.php:
|
4541 |
#: src/restorer.php:1975
|
4542 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4543 |
msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
|
@@ -4576,16 +4635,16 @@ msgstr "جاري فحص الإستضافة السحابية والمساحة ا
|
|
4576 |
msgid "(Read more)"
|
4577 |
msgstr "(قراءة المزيد)"
|
4578 |
|
4579 |
-
#: src/addons/reporting.php:
|
4580 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4581 |
msgstr "تسجيل كافة الرسائل بسجل الرسائل (من المحتمل أنه فقط مديري الخادم من سيغب في هذه العملية)"
|
4582 |
|
4583 |
-
#: src/addons/morefiles.php:
|
4584 |
msgid "No backup of location: there was nothing found to back up"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
#: src/addons/moredatabase.php:
|
4588 |
-
#: src/addons/morefiles.php:
|
4589 |
msgid "Remove"
|
4590 |
msgstr "حذف"
|
4591 |
|
@@ -4597,7 +4656,7 @@ msgstr "الأسئلة الشائعة %s الأخرى."
|
|
4597 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4598 |
msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
|
4599 |
|
4600 |
-
#: src/addons/morefiles.php:
|
4601 |
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."
|
4602 |
msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
|
4603 |
|
@@ -4626,53 +4685,53 @@ msgstr "خادم FTP غير مشفر اعتيادي"
|
|
4626 |
msgid "Backup created by:"
|
4627 |
msgstr "نسخة احتياطية أنشأها:"
|
4628 |
|
4629 |
-
#: src/udaddons/options.php:
|
4630 |
msgid "Available to claim on this site"
|
4631 |
msgstr "متوفر للطلب من هذا الموقع"
|
4632 |
|
4633 |
-
#: src/udaddons/updraftplus-addons.php:
|
4634 |
msgid "To maintain your access to support, please renew."
|
4635 |
msgstr "للحفاظ على ولوجك للدعم الفني، من فضلك جدد اشتراكك."
|
4636 |
|
4637 |
-
#: src/udaddons/updraftplus-addons.php:
|
4638 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4639 |
msgstr "وصولك المدفوع للدعم الفني الخاص بـ UpdraftPlus اقتربت نهاية صلاحيته."
|
4640 |
|
4641 |
-
#: src/udaddons/updraftplus-addons.php:
|
4642 |
msgid "To regain your access, please renew."
|
4643 |
msgstr "لاستعادة الوصول الخاصة بك، يرجى تجديد اشتراكك."
|
4644 |
|
4645 |
-
#: src/udaddons/updraftplus-addons.php:
|
4646 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4647 |
msgstr "وصولك المدفوع للدعم الفني بـ UpdraftPlus انتهت صلاحيته."
|
4648 |
|
4649 |
-
#: src/udaddons/updraftplus-addons.php:
|
4650 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4651 |
msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا الموقع اقتربت نهاية صلاحيته."
|
4652 |
|
4653 |
-
#: src/udaddons/updraftplus-addons.php:
|
4654 |
-
#: src/udaddons/updraftplus-addons.php:
|
4655 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4656 |
msgstr "للحفاظ على ولوجك لخدماتنا المدفوعة (من ضمنها التحديثات المستقبلية والتوافق مع نسخ ووردبريس المستقبلية) والدعم الفني، من فضلك جدد اشتراكك."
|
4657 |
|
4658 |
-
#: src/udaddons/updraftplus-addons.php:
|
4659 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4660 |
msgstr "وصولك المدفوع لتحديثات UpdraftPlus على %s إضافة بهذا الموقع اقتربت نهاية صلاحيته."
|
4661 |
|
4662 |
-
#: src/udaddons/updraftplus-addons.php:
|
4663 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4664 |
msgstr "وصولك المدفوع لتحديثات UpdraftPlus على %s إضافة بهذا الموقع انتهت صلاحيته."
|
4665 |
|
4666 |
-
#: src/udaddons/updraftplus-addons.php:
|
4667 |
-
#: src/udaddons/updraftplus-addons.php:
|
4668 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4669 |
msgstr "للحفاظ على ولوجك للتحديثات (من ضمنها التحديثات المستقبلية والتوافق مع نسخ ووردبريس المستقبلية) والدعم الفني، من فضلك جدد اشتراكك. "
|
4670 |
|
4671 |
-
#: src/udaddons/updraftplus-addons.php:
|
4672 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4673 |
msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا الموقع اقتربت نهاية صلاحيته. لن تصلك أي تحديثات جديدة لـ UpdraftPlus."
|
4674 |
|
4675 |
-
#: src/udaddons/updraftplus-addons.php:
|
4676 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4677 |
msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
|
4678 |
|
@@ -4689,7 +4748,7 @@ msgstr "فشل محاولة التراجع من الضغط المزدوج"
|
|
4689 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4690 |
msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
|
4691 |
|
4692 |
-
#: src/includes/class-wpadmin-commands.php:
|
4693 |
msgid "Constants"
|
4694 |
msgstr "ثوابت"
|
4695 |
|
@@ -4713,12 +4772,12 @@ msgstr "لاحظ أن رسائل التحذير استشارية - عملية ا
|
|
4713 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4714 |
msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبقية، لكن الملف الذي نقوم برفعه حجمه %d بايت متبقية (الحجم الكلي: %d بايت)"
|
4715 |
|
4716 |
-
#: src/udaddons/updraftplus-addons.php:
|
4717 |
-
#: src/udaddons/updraftplus-addons.php:
|
4718 |
msgid "Errors occurred:"
|
4719 |
msgstr "أخطاء حدثت:"
|
4720 |
|
4721 |
-
#: src/addons/wp-cli.php:664, src/admin.php:
|
4722 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4723 |
msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
|
4724 |
|
@@ -4742,7 +4801,7 @@ msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %
|
|
4742 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4743 |
msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
|
4744 |
|
4745 |
-
#: src/admin.php:
|
4746 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4747 |
msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
|
4748 |
|
@@ -4755,11 +4814,11 @@ msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعي
|
|
4755 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4756 |
msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
|
4757 |
|
4758 |
-
#: src/addons/moredatabase.php:144, src/admin.php:
|
4759 |
msgid "Messages:"
|
4760 |
msgstr "رسائل:"
|
4761 |
|
4762 |
-
#: src/restorer.php:
|
4763 |
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"
|
4764 |
msgstr "تم العثور على خط SQL أكبر من الحد الأقصى لحجم الحزمة ولا يمكن تقسيمها، هذا الخط لن نتمكن من معالجته، وسنقوم بإبعاده: %s"
|
4765 |
|
@@ -4917,7 +4976,7 @@ msgid "Authorisation failed (check your credentials)"
|
|
4917 |
msgstr "فشل التفويض (راجع معلوماتك)"
|
4918 |
|
4919 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4920 |
-
#: src/udaddons/options.php:
|
4921 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4922 |
msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
|
4923 |
|
@@ -4933,15 +4992,15 @@ msgstr "اعادة المحاولة..."
|
|
4933 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4934 |
msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
|
4935 |
|
4936 |
-
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:
|
4937 |
msgid "Error data:"
|
4938 |
msgstr "خطأ بالبيانات:"
|
4939 |
|
4940 |
-
#: src/admin.php:
|
4941 |
msgid "Backup does not exist in the backup history"
|
4942 |
msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
|
4943 |
|
4944 |
-
#: src/admin.php:
|
4945 |
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."
|
4946 |
msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
|
4947 |
|
@@ -4969,23 +5028,23 @@ msgstr "لا يمكن نقل البيانات بعيدا."
|
|
4969 |
msgid "Moving old data out of the way..."
|
4970 |
msgstr "نقل البيانات القديمة بعيدا ..."
|
4971 |
|
4972 |
-
#: src/addons/reporting.php:
|
4973 |
msgid "Add another address..."
|
4974 |
msgstr "إضافة عنوان آخر ..."
|
4975 |
|
4976 |
-
#: src/addons/reporting.php:
|
4977 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4978 |
msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تقرير لها عند انتهاء مهمة النسخ الاحتياطي."
|
4979 |
|
4980 |
-
#: src/addons/reporting.php:
|
4981 |
msgid "Email reports"
|
4982 |
msgstr "تقارير البريد الإلكتروني"
|
4983 |
|
4984 |
-
#: src/class-updraftplus.php:
|
4985 |
msgid "%s checksum: %s"
|
4986 |
msgstr "%s الاختباري:%s"
|
4987 |
|
4988 |
-
#: src/class-updraftplus.php:
|
4989 |
msgid "files: %s"
|
4990 |
msgstr "ملفات:%s"
|
4991 |
|
@@ -4997,7 +5056,7 @@ msgstr "استخدام قسم \"التقارير\" لتكوين عناوين ا
|
|
4997 |
msgid "Debugging information"
|
4998 |
msgstr "معلومات التصحيح"
|
4999 |
|
5000 |
-
#: src/addons/reporting.php:223, src/admin.php:
|
5001 |
msgid "Uploaded to:"
|
5002 |
msgstr "تحميلها على:"
|
5003 |
|
@@ -5017,7 +5076,7 @@ msgstr "أخطاء"
|
|
5017 |
msgid "Errors / warnings:"
|
5018 |
msgstr "أخطاء / تحذيرات:"
|
5019 |
|
5020 |
-
#: src/addons/morefiles.php:
|
5021 |
#: src/addons/reporting.php:184
|
5022 |
msgid "Contains:"
|
5023 |
msgstr "يحتوي على:"
|
@@ -5038,8 +5097,7 @@ msgstr "%d ساعة،%d دقيقة، %d ثانية"
|
|
5038 |
msgid "%d errors, %d warnings"
|
5039 |
msgstr "%d الأخطاء، %d تحذيرات"
|
5040 |
|
5041 |
-
#: src/
|
5042 |
-
#: src/methods/dropbox.php:775
|
5043 |
msgid "%s authentication"
|
5044 |
msgstr "%s مصادقة"
|
5045 |
|
@@ -5070,8 +5128,9 @@ msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\".
|
|
5070 |
msgid "Your site's admin email address (%s) will be used."
|
5071 |
msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
|
5072 |
|
5073 |
-
#: src/admin.php:853, src/admin.php:
|
5074 |
-
#: src/methods/updraftvault.php:362
|
|
|
5075 |
msgid "Connect"
|
5076 |
msgstr "الإتصال"
|
5077 |
|
@@ -5079,7 +5138,7 @@ msgstr "الإتصال"
|
|
5079 |
msgid "For more reporting features, use the Reporting add-on."
|
5080 |
msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
|
5081 |
|
5082 |
-
#: src/class-updraftplus.php:
|
5083 |
msgid "(version: %s)"
|
5084 |
msgstr "(الإصدار: %s)"
|
5085 |
|
@@ -5087,7 +5146,7 @@ msgstr "(الإصدار: %s)"
|
|
5087 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5088 |
msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
|
5089 |
|
5090 |
-
#: src/addons/reporting.php:
|
5091 |
msgid "When the Email storage method is enabled, also send the backup"
|
5092 |
msgstr ""
|
5093 |
|
@@ -5151,7 +5210,7 @@ msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (ش
|
|
5151 |
msgid "UpdraftPlus warning:"
|
5152 |
msgstr "تحذير UpdraftPlus :"
|
5153 |
|
5154 |
-
#: src/udaddons/options.php:
|
5155 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5156 |
msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
|
5157 |
|
@@ -5179,11 +5238,11 @@ msgstr "كنت قد حصلت عليه"
|
|
5179 |
msgid "UpdraftPlus Support"
|
5180 |
msgstr "دعم UpdraftPlus"
|
5181 |
|
5182 |
-
#: src/udaddons/options.php:
|
5183 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5184 |
msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
|
5185 |
|
5186 |
-
#: src/udaddons/options.php:
|
5187 |
msgid "UpdraftPlus Addons"
|
5188 |
msgstr "اضافات UpdraftPlus"
|
5189 |
|
@@ -5192,24 +5251,24 @@ msgid "An update is available for UpdraftPlus - please follow this link to get i
|
|
5192 |
msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
|
5193 |
|
5194 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5195 |
-
#: src/udaddons/updraftplus-addons.php:
|
5196 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5197 |
msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
|
5198 |
|
5199 |
-
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:
|
5200 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5201 |
msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
|
5202 |
|
5203 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5204 |
-
#: src/udaddons/updraftplus-addons.php:
|
5205 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5206 |
msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
|
5207 |
|
5208 |
-
#: src/udaddons/updraftplus-addons.php:
|
5209 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5210 |
msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة"
|
5211 |
|
5212 |
-
#: src/udaddons/updraftplus-addons.php:
|
5213 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5214 |
msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
|
5215 |
|
@@ -5220,11 +5279,11 @@ msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
|
|
5220 |
msgid "Reporting"
|
5221 |
msgstr "التقارير"
|
5222 |
|
5223 |
-
#: src/admin.php:
|
5224 |
msgid "Options (raw)"
|
5225 |
msgstr "خيارات (الخام)"
|
5226 |
|
5227 |
-
#: src/addons/reporting.php:
|
5228 |
msgid "Send a report only when there are warnings/errors"
|
5229 |
msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
|
5230 |
|
@@ -5240,31 +5299,31 @@ msgstr ""
|
|
5240 |
msgid "See also the \"More Files\" add-on from our shop."
|
5241 |
msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
|
5242 |
|
5243 |
-
#: src/backup.php:
|
5244 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5245 |
msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
|
5246 |
|
5247 |
-
#: src/class-updraftplus.php:
|
5248 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5249 |
msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
|
5250 |
|
5251 |
-
#: src/udaddons/options.php:
|
5252 |
msgid "Manage Addons"
|
5253 |
msgstr "ادارة الأضافات"
|
5254 |
|
5255 |
-
#: src/udaddons/options.php:
|
5256 |
msgid "Buy It"
|
5257 |
msgstr "شراء"
|
5258 |
|
5259 |
-
#: src/udaddons/options.php:
|
5260 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5261 |
msgstr "الحصول علية من متجر UpdraftPlus.Com"
|
5262 |
|
5263 |
-
#: src/udaddons/options.php:
|
5264 |
msgid "activate it on this site"
|
5265 |
msgstr "تنشيطة على هذا الموقع"
|
5266 |
|
5267 |
-
#: src/udaddons/options.php:
|
5268 |
msgid "You have an inactive purchase"
|
5269 |
msgstr "لديك شراء غير فعال"
|
5270 |
|
@@ -5292,47 +5351,47 @@ msgstr "هل انت بحاجة للحصول على الدعم؟"
|
|
5292 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5293 |
msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
|
5294 |
|
5295 |
-
#: src/udaddons/options.php:
|
5296 |
msgid "An unknown response was received. Response was:"
|
5297 |
msgstr "تم تلقى رد غير معروف. الرد هو:"
|
5298 |
|
5299 |
-
#: src/udaddons/options.php:
|
5300 |
msgid "Claim not granted - your account login details were wrong"
|
5301 |
msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
|
5302 |
|
5303 |
-
#: src/udaddons/options.php:
|
5304 |
msgid "Please wait whilst we make the claim..."
|
5305 |
msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
|
5306 |
|
5307 |
-
#: src/udaddons/options.php:
|
5308 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5309 |
msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
|
5310 |
|
5311 |
-
#: src/udaddons/options.php:
|
5312 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5313 |
msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
|
5314 |
|
5315 |
-
#: src/udaddons/options.php:
|
5316 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5317 |
msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
|
5318 |
|
5319 |
-
#: src/udaddons/options.php:
|
5320 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5321 |
msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
|
5322 |
|
5323 |
-
#: src/admin.php:
|
5324 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5325 |
msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
|
5326 |
|
5327 |
-
#: src/admin.php:
|
5328 |
msgid "Forgotten your details?"
|
5329 |
msgstr "هل نسيت التفاصيل الخاصة بك؟"
|
5330 |
|
5331 |
-
#: src/admin.php:
|
5332 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5333 |
msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
|
5334 |
|
5335 |
-
#: src/admin.php:
|
5336 |
msgid "Connect with your UpdraftPlus.Com account"
|
5337 |
msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
|
5338 |
|
@@ -5364,12 +5423,12 @@ msgstr "اذهب هنا للاتصال."
|
|
5364 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5365 |
msgstr "حتى الأن انت غير متصل بحسابك فى UpdraftPlus.Com, لتتمكن من استخدام الأضافات اللتى قمت بشرائها."
|
5366 |
|
5367 |
-
#: src/addons/moredatabase.php:
|
5368 |
#: src/includes/class-updraftplus-encryption.php:148
|
5369 |
msgid "Without it, encryption will be a lot slower."
|
5370 |
msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
|
5371 |
|
5372 |
-
#: src/addons/moredatabase.php:
|
5373 |
#: src/includes/class-updraftplus-encryption.php:148
|
5374 |
msgid "Your web-server does not have the %s module installed."
|
5375 |
msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
|
@@ -5420,11 +5479,11 @@ msgstr "فشل التحميل"
|
|
5420 |
msgid "You can send a backup to more than one destination with an add-on."
|
5421 |
msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
|
5422 |
|
5423 |
-
#: src/admin.php:
|
5424 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5425 |
msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
|
5426 |
|
5427 |
-
#: src/admin.php:
|
5428 |
msgid "(%s%%, file %s of %s)"
|
5429 |
msgstr "(%s%%, ملف %s من%s)"
|
5430 |
|
@@ -5465,11 +5524,11 @@ msgstr "النسخ الأحتياطى من: %s"
|
|
5465 |
msgid "%s settings test result:"
|
5466 |
msgstr "اعدادات نتيجة اختبار %s"
|
5467 |
|
5468 |
-
#: src/admin.php:
|
5469 |
msgid "(Not finished)"
|
5470 |
msgstr "(غير منتهي)"
|
5471 |
|
5472 |
-
#: src/admin.php:
|
5473 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5474 |
msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
|
5475 |
|
@@ -5481,73 +5540,73 @@ msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل ا
|
|
5481 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5482 |
msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
|
5483 |
|
5484 |
-
#: src/admin.php:
|
5485 |
msgid "Job ID: %s"
|
5486 |
msgstr "رقم الوظيفة: %s"
|
5487 |
|
5488 |
-
#: src/admin.php:
|
5489 |
msgid "last activity: %ss ago"
|
5490 |
msgstr "آخر نشاط: منذ %ss"
|
5491 |
|
5492 |
-
#: src/admin.php:
|
5493 |
msgid "next resumption: %d (after %ss)"
|
5494 |
msgstr "الاستئناف التالي: %d (بعد %ss)"
|
5495 |
|
5496 |
-
#: src/admin.php:
|
5497 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5498 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5499 |
msgid "Unknown"
|
5500 |
msgstr "غير معروف"
|
5501 |
|
5502 |
-
#: src/admin.php:
|
5503 |
msgid "Backup finished"
|
5504 |
msgstr "الانتهاء من النسخ الاحتياطي"
|
5505 |
|
5506 |
-
#: src/admin.php:
|
5507 |
msgid "Waiting until scheduled time to retry because of errors"
|
5508 |
msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
|
5509 |
|
5510 |
-
#: src/admin.php:
|
5511 |
msgid "Pruning old backup sets"
|
5512 |
msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
|
5513 |
|
5514 |
-
#: src/admin.php:
|
5515 |
msgid "Uploading files to remote storage"
|
5516 |
msgstr "تحميل الملفات للمخزن البعيد"
|
5517 |
|
5518 |
-
#: src/admin.php:
|
5519 |
msgid "Encrypted database"
|
5520 |
msgstr "قاعدة بيانات مشفرة"
|
5521 |
|
5522 |
-
#: src/admin.php:
|
5523 |
msgid "Encrypting database"
|
5524 |
msgstr "تشفير قاعدة البيانات"
|
5525 |
|
5526 |
-
#: src/admin.php:
|
5527 |
msgid "Created database backup"
|
5528 |
msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
|
5529 |
|
5530 |
-
#: src/admin.php:
|
5531 |
msgid "table: %s"
|
5532 |
msgstr "الجدول: %s"
|
5533 |
|
5534 |
-
#: src/admin.php:
|
5535 |
msgid "Creating database backup"
|
5536 |
msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
|
5537 |
|
5538 |
-
#: src/admin.php:
|
5539 |
msgid "Created file backup zips"
|
5540 |
msgstr "تم انشاء ملف النسخ الاحتياطى zips"
|
5541 |
|
5542 |
-
#: src/admin.php:
|
5543 |
msgid "Creating file backup zips"
|
5544 |
msgstr "انشاء ملف النسخ الاحتياطى zips"
|
5545 |
|
5546 |
-
#: src/admin.php:
|
5547 |
msgid "Backup begun"
|
5548 |
msgstr "بدأ النسخ الاحتياطى"
|
5549 |
|
5550 |
-
#: src/admin.php:
|
5551 |
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."
|
5552 |
msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
|
5553 |
|
@@ -5563,11 +5622,11 @@ msgstr "مجلد"
|
|
5563 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5564 |
msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
|
5565 |
|
5566 |
-
#: src/class-updraftplus.php:
|
5567 |
msgid "The backup has not finished; a resumption is scheduled"
|
5568 |
msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
|
5569 |
|
5570 |
-
#: src/class-updraftplus.php:
|
5571 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5572 |
msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
|
5573 |
|
@@ -5576,7 +5635,7 @@ msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثي
|
|
5576 |
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)."
|
5577 |
msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
|
5578 |
|
5579 |
-
#: src/admin.php:
|
5580 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5581 |
msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
|
5582 |
|
@@ -5629,19 +5688,19 @@ msgstr "انشاء %s وقاعدة البيانات الاحتياطية عن
|
|
5629 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5630 |
msgstr "النسخ الاحتياطي تلقائيا (حسب الحاجة) للملحقات, الثيمات و قاعدة بيانات وردبريس مع UpdraftPlus قبل التحديث"
|
5631 |
|
5632 |
-
#: src/addons/morefiles.php:
|
5633 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5634 |
msgstr "اذا لم تكن متأكدا يجب عليك التوقف; والأ من المحتمل تدمير نسخة الورد بريس الخاصة بك"
|
5635 |
|
5636 |
-
#: src/addons/morefiles.php:
|
5637 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5638 |
msgstr "هذة تبدو كأنها نسخة احتياطية اساسية صالحة للوردبريس - الملف %s كان مفقود."
|
5639 |
|
5640 |
-
#: src/addons/morefiles.php:
|
5641 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5642 |
msgstr "غير قادر على فتح ملف مضغوط (%s) - لا يمكن القيام بالفحص للتحقق من سلامتة."
|
5643 |
|
5644 |
-
#: src/addons/morefiles.php:
|
5645 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5646 |
msgstr "غير قادر على قراءة الملف المضغوط (%s) - لم يمكن فحصه للتأكد من سلامتة."
|
5647 |
|
@@ -5656,32 +5715,32 @@ msgstr "مزيد من الملحقات"
|
|
5656 |
msgid "Support"
|
5657 |
msgstr "الدعم"
|
5658 |
|
5659 |
-
#: src/class-updraftplus.php:
|
5660 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5661 |
msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
|
5662 |
|
5663 |
-
#: src/class-updraftplus.php:
|
5664 |
msgid "This database backup is missing core WordPress tables: %s"
|
5665 |
msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
|
5666 |
|
5667 |
-
#: src/class-updraftplus.php:
|
5668 |
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."
|
5669 |
msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
|
5670 |
|
5671 |
-
#: src/class-updraftplus.php:
|
5672 |
msgid "%s version: %s"
|
5673 |
msgstr "%s النسخة: %s"
|
5674 |
|
5675 |
-
#: src/class-updraftplus.php:
|
5676 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
5677 |
msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
|
5678 |
|
5679 |
-
#: src/addons/autobackup.php:1067, src/admin.php:
|
5680 |
#: src/includes/updraftplus-notices.php:171
|
5681 |
msgid "Be safe with an automatic backup"
|
5682 |
msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
|
5683 |
|
5684 |
-
#: src/admin.php:
|
5685 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
5686 |
msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
|
5687 |
|
@@ -5729,11 +5788,11 @@ msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
|
|
5729 |
msgid "Delete from your web server"
|
5730 |
msgstr "حذف من خادم الويب الخاص بك"
|
5731 |
|
5732 |
-
#: src/admin.php:
|
5733 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
5734 |
msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
|
5735 |
|
5736 |
-
#: src/admin.php:
|
5737 |
msgid "(%d archive(s) in set)."
|
5738 |
msgstr "(%d الأرشيف(s) in set)."
|
5739 |
|
@@ -5741,7 +5800,7 @@ msgstr "(%d الأرشيف(s) in set)."
|
|
5741 |
msgid "Split archives every:"
|
5742 |
msgstr "تقسيم كل ارشيف:"
|
5743 |
|
5744 |
-
#: src/addons/moredatabase.php:
|
5745 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
5746 |
msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
|
5747 |
|
@@ -5753,19 +5812,19 @@ msgstr "تحذيرات:"
|
|
5753 |
msgid "Error: the server sent an empty response."
|
5754 |
msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
|
5755 |
|
5756 |
-
#: src/admin.php:
|
5757 |
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?"
|
5758 |
msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
|
5759 |
|
5760 |
-
#: src/includes/class-wpadmin-commands.php:
|
5761 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
5762 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, لكن مع بعض الأخطاء. سوف تحتاج الى الألغاء وتصحيح اى مشاكل قبل اعادة المحاولة."
|
5763 |
|
5764 |
-
#: src/includes/class-wpadmin-commands.php:
|
5765 |
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."
|
5766 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, ولكن مع بعض التحذيرات. اذا كان كل شئ على مايرام, اضغط على استعادة مرة اخرى للأستمرار. غير ذلك, قم بالألغاء وتصحيح اى مشاكل اولا."
|
5767 |
|
5768 |
-
#: src/includes/class-wpadmin-commands.php:
|
5769 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
5770 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح. الأن اضغط استعادة مرة اخرى للأستمرار."
|
5771 |
|
@@ -5798,11 +5857,11 @@ msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى
|
|
5798 |
msgid "Moving unpacked backup into place..."
|
5799 |
msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
|
5800 |
|
5801 |
-
#: src/backup.php:
|
5802 |
msgid "Failed to open the zip file (%s) - %s"
|
5803 |
msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
|
5804 |
|
5805 |
-
#: src/addons/morefiles.php:
|
5806 |
msgid "WordPress root directory server path: %s"
|
5807 |
msgstr "مسار جذر الوردبريس فى الخادم: %s"
|
5808 |
|
@@ -5827,7 +5886,7 @@ msgstr "الملف غير موجود - يحتاج الى استراجعة من
|
|
5827 |
msgid "Looking for %s archive: file name: %s"
|
5828 |
msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
|
5829 |
|
5830 |
-
#: src/addons/wp-cli.php:784, src/admin.php:
|
5831 |
msgid "Final checks"
|
5832 |
msgstr "الفحوصات النهائية"
|
5833 |
|
@@ -5839,7 +5898,7 @@ msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأح
|
|
5839 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
5840 |
msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
|
5841 |
|
5842 |
-
#: src/admin.php:
|
5843 |
msgid "Your wp-content directory server path: %s"
|
5844 |
msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
|
5845 |
|
@@ -5860,11 +5919,11 @@ msgstr "تجهيز الملفات - يرجى الأنتظار..."
|
|
5860 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
5861 |
msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
|
5862 |
|
5863 |
-
#: src/class-updraftplus.php:
|
5864 |
msgid "Failed to open database file."
|
5865 |
msgstr "فشل فى فتح ملف قاعدة البيانات."
|
5866 |
|
5867 |
-
#: src/admin.php:
|
5868 |
msgid "Known backups (raw)"
|
5869 |
msgstr "النسخ الأحتياطى المعروفة (الخام)"
|
5870 |
|
@@ -5882,8 +5941,8 @@ msgstr "حجم الملف:"
|
|
5882 |
|
5883 |
#: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
|
5884 |
#: src/addons/migrator.php:493, src/addons/migrator.php:496,
|
5885 |
-
#: src/admin.php:
|
5886 |
-
#: src/class-updraftplus.php:
|
5887 |
#: src/updraftplus.php:157
|
5888 |
msgid "Go here for more information."
|
5889 |
msgstr "اذهب هنا لمزيد من المعلومات."
|
@@ -5892,15 +5951,15 @@ msgstr "اذهب هنا لمزيد من المعلومات."
|
|
5892 |
msgid "Some files are still downloading or being processed - please wait."
|
5893 |
msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
|
5894 |
|
5895 |
-
#: src/class-updraftplus.php:
|
5896 |
msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#: src/addons/fixtime.php:
|
5900 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5901 |
msgstr "المنطقة الزمنية المستخدمة هى من اعدادات الورد بريس الخاصة بك, في إعدادات -> عام."
|
5902 |
|
5903 |
-
#: src/addons/fixtime.php:
|
5904 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5905 |
msgstr "ادخل فى صيغة HH:MM (مثل 14:22)."
|
5906 |
|
@@ -5944,7 +6003,7 @@ msgstr "خطأ %s"
|
|
5944 |
msgid "%s error - failed to upload file"
|
5945 |
msgstr "خطأ %s - فشل فى ارسال الملف"
|
5946 |
|
5947 |
-
#: src/class-updraftplus.php:
|
5948 |
msgid "%s error - failed to re-assemble chunks"
|
5949 |
msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
|
5950 |
|
@@ -5959,32 +6018,32 @@ msgid "%s authentication failed"
|
|
5959 |
msgstr "المصادقة فشلت %s"
|
5960 |
|
5961 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
|
5962 |
-
#: src/admin.php:
|
5963 |
-
#: src/class-updraftplus.php:
|
5964 |
-
#: src/class-updraftplus.php:
|
5965 |
-
#: src/class-updraftplus.php:
|
5966 |
-
#: src/class-updraftplus.php:
|
5967 |
#: src/methods/s3.php:341
|
5968 |
msgid "Error: %s"
|
5969 |
msgstr "خطأ: %s"
|
5970 |
|
5971 |
-
#: src/admin.php:
|
5972 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5973 |
msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
|
5974 |
|
5975 |
-
#: src/admin.php:
|
5976 |
msgid "Backup directory specified does <b>not</b> exist."
|
5977 |
msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
|
5978 |
|
5979 |
-
#: src/admin.php:
|
5980 |
msgid "Warning: %s"
|
5981 |
msgstr "تحذير: %s"
|
5982 |
|
5983 |
-
#: src/backup.php:
|
5984 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5985 |
msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
|
5986 |
|
5987 |
-
#: src/backup.php:
|
5988 |
msgid "%s: unreadable file - could not be backed up"
|
5989 |
msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
|
5990 |
|
@@ -5992,7 +6051,7 @@ msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يت
|
|
5992 |
msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
|
5993 |
msgstr "الجدول %s بة عدد كبير من الصفوف (%s) - نأمل ان شركة الأستضافة الخاصة بك تعطيك ما يكفى من الموارد لتفريغ هذا الجدول من النسخة الأحتياطة."
|
5994 |
|
5995 |
-
#: src/backup.php:
|
5996 |
msgid "An error occurred whilst closing the final database file"
|
5997 |
msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
|
5998 |
|
@@ -6000,11 +6059,11 @@ msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات
|
|
6000 |
msgid "Warnings encountered:"
|
6001 |
msgstr "مصادفة تحذيرات:"
|
6002 |
|
6003 |
-
#: src/class-updraftplus.php:
|
6004 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
6005 |
msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
|
6006 |
|
6007 |
-
#: src/class-updraftplus.php:
|
6008 |
msgid "Your free disk space is very low - only %s Mb remain"
|
6009 |
msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
|
6010 |
|
@@ -6056,7 +6115,7 @@ msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
|
|
6056 |
msgid "Please supply the requested information, and then continue."
|
6057 |
msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
|
6058 |
|
6059 |
-
#: src/class-updraftplus.php:
|
6060 |
msgid "Site information:"
|
6061 |
msgstr "معلومات عن الموقع:"
|
6062 |
|
@@ -6064,11 +6123,11 @@ msgstr "معلومات عن الموقع:"
|
|
6064 |
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."
|
6065 |
msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
|
6066 |
|
6067 |
-
#: src/admin.php:
|
6068 |
msgid "Warning:"
|
6069 |
msgstr "تحذير:"
|
6070 |
|
6071 |
-
#: src/class-updraftplus.php:
|
6072 |
#: src/restorer.php:530
|
6073 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
6074 |
msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
|
@@ -6077,7 +6136,7 @@ msgstr "انت تعمل على وردبريس متعدد المواقع - لكن
|
|
6077 |
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."
|
6078 |
msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
|
6079 |
|
6080 |
-
#: src/addons/azure.php:601, src/admin.php:
|
6081 |
#: src/methods/updraftvault.php:306
|
6082 |
msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
6083 |
msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
|
@@ -6093,7 +6152,7 @@ msgstr "اغلق"
|
|
6093 |
msgid "Unexpected response:"
|
6094 |
msgstr "استجابة غير متوقعة:"
|
6095 |
|
6096 |
-
#: src/addons/reporting.php:
|
6097 |
msgid "To send to more than one address, separate each address with a comma."
|
6098 |
msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
|
6099 |
|
@@ -6121,12 +6180,27 @@ msgstr ""
|
|
6121 |
msgid "Also delete from remote storage"
|
6122 |
msgstr "حذف ايضاً من التخزين البعيد"
|
6123 |
|
6124 |
-
#: src/admin.php:
|
6125 |
msgid "Latest UpdraftPlus.com news:"
|
6126 |
msgstr "اخر اخبار UpdraftPlus.com:"
|
6127 |
|
6128 |
#: src/templates/wp-admin/settings/header.php:11,
|
6129 |
-
#: src/templates/wp-admin/settings/tab-addons.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6130 |
msgid "Premium"
|
6131 |
msgstr "مميز"
|
6132 |
|
@@ -6134,7 +6208,7 @@ msgstr "مميز"
|
|
6134 |
msgid "News"
|
6135 |
msgstr "اخبار"
|
6136 |
|
6137 |
-
#: src/admin.php:
|
6138 |
msgid "Backup set not found"
|
6139 |
msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
|
6140 |
|
@@ -6165,11 +6239,11 @@ msgstr "اختبار اعدادات %s ..."
|
|
6165 |
msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
|
6166 |
msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
|
6167 |
|
6168 |
-
#: src/admin.php:
|
6169 |
msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
|
6170 |
msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
|
6171 |
|
6172 |
-
#: src/admin.php:
|
6173 |
msgid "Notice"
|
6174 |
msgstr "لاحظ"
|
6175 |
|
@@ -6275,7 +6349,7 @@ msgstr "لابد من استخدام الأضافات"
|
|
6275 |
msgid "Multisite Install"
|
6276 |
msgstr "تثبيت الموقع المتعدد"
|
6277 |
|
6278 |
-
#: src/addons/fixtime.php:
|
6279 |
msgid "starting from next time it is"
|
6280 |
msgstr "ابتداء من المرة القادمة انها"
|
6281 |
|
@@ -6303,8 +6377,8 @@ msgstr "حيث لتغير الدليل الى بعد تسجيل الدخول -
|
|
6303 |
msgid "Directory path"
|
6304 |
msgstr "مسار الدليل"
|
6305 |
|
6306 |
-
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:
|
6307 |
-
#: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:
|
6308 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
6309 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
6310 |
msgid "Password"
|
@@ -6314,7 +6388,7 @@ msgstr "كلمة السر"
|
|
6314 |
msgid "Port"
|
6315 |
msgstr "المنفذ"
|
6316 |
|
6317 |
-
#: src/addons/moredatabase.php:
|
6318 |
#: src/addons/webdav.php:199
|
6319 |
msgid "Host"
|
6320 |
msgstr "الاستضافة"
|
@@ -6335,35 +6409,35 @@ msgstr "لم يتم العثور على %s "
|
|
6335 |
msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
|
6336 |
msgstr "FTP مشفرة متاح، وسيجرب أولا تلقائيا (قبل أن نتراجع إلى النسخة الغيرمشفرة إذا لم ننجح)، إلا إذا كنت تعطيله باستخدام خيارات المتقدمة. زر 'اختبار دخول FTP ' سيخبركم بنوع الإتصال المستخدم."
|
6337 |
|
6338 |
-
#: src/addons/morefiles.php:
|
6339 |
msgid "No backup of %s directories: there was nothing found to back up"
|
6340 |
msgstr "لا توجد نسخ احتياطية من المجلدات %s : لم نجد أي شيء لنعمل له نسخة احتياطية"
|
6341 |
|
6342 |
-
#: src/addons/morefiles.php:
|
6343 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
6344 |
msgstr ""
|
6345 |
|
6346 |
-
#: src/addons/morefiles.php:
|
6347 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
6348 |
msgstr "إذا لم تكن متأكدا ما هو هذا الخيار، إذا انت حتما لا ترغب فيه، ويجب عليك إيقاف تشغيله."
|
6349 |
|
6350 |
-
#: src/addons/morefiles.php:
|
6351 |
msgid "More Files"
|
6352 |
msgstr "ملفات أخرى"
|
6353 |
|
6354 |
-
#: src/addons/morefiles.php:
|
6355 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
6356 |
msgstr "أساسيات ووردبريس (بما في ذلك أية إضافات لدليل ووردبريس الخاص بك)"
|
6357 |
|
6358 |
-
#: src/addons/morefiles.php:
|
6359 |
msgid "The above files comprise everything in a WordPress installation."
|
6360 |
msgstr "الملفات بالأعلى تشمل جميع ملفات تنصيب الووردبريس"
|
6361 |
|
6362 |
-
#: src/addons/morefiles.php:
|
6363 |
msgid "Over-write wp-config.php"
|
6364 |
msgstr "إعادة كتابة wp-config.php"
|
6365 |
|
6366 |
-
#: src/addons/morefiles.php:
|
6367 |
msgid "WordPress Core"
|
6368 |
msgstr "لب الووردبريس"
|
6369 |
|
@@ -6372,8 +6446,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
|
|
6372 |
msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
|
6373 |
|
6374 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
6375 |
-
#: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:
|
6376 |
-
#: src/admin.php:
|
6377 |
#: src/methods/stream-base.php:356
|
6378 |
msgid "Failed"
|
6379 |
msgstr "فشل"
|
@@ -6581,7 +6655,7 @@ msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاو
|
|
6581 |
msgid "Failure: No container details were given."
|
6582 |
msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
|
6583 |
|
6584 |
-
#: src/addons/moredatabase.php:
|
6585 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
6586 |
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
6587 |
msgid "Username"
|
@@ -6642,7 +6716,7 @@ msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\
|
|
6642 |
msgid "Test %s Settings"
|
6643 |
msgstr "اختبار %s الإعدادات"
|
6644 |
|
6645 |
-
#: src/class-updraftplus.php:
|
6646 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
6647 |
msgid "Error opening local file: Failed to download"
|
6648 |
msgstr "خطأ في فتح ملف محلي: فشل التحميل"
|
@@ -6659,7 +6733,7 @@ msgid "%s Error: Failed to upload"
|
|
6659 |
msgstr "%s خطأ: فشل في تحميل"
|
6660 |
|
6661 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
6662 |
-
#: src/class-updraftplus.php:
|
6663 |
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
6664 |
msgid "%s Error: Failed to open local file"
|
6665 |
msgstr "%s خطأ: فشل في فتح ملف محلي"
|
@@ -6773,18 +6847,18 @@ msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها
|
|
6773 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
6774 |
msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
|
6775 |
|
6776 |
-
#: src/admin.php:
|
6777 |
#: src/includes/class-remote-send.php:326,
|
6778 |
#: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
|
6779 |
-
#: src/restorer.php:
|
6780 |
msgid "OK"
|
6781 |
msgstr "حسنا"
|
6782 |
|
6783 |
-
#: src/restorer.php:
|
6784 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
6785 |
msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
|
6786 |
|
6787 |
-
#: src/addons/migrator.php:1317, src/restorer.php:
|
6788 |
msgid "the database query being run was:"
|
6789 |
msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
6790 |
|
@@ -6792,13 +6866,13 @@ msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
|
6792 |
msgid "will restore as:"
|
6793 |
msgstr "إستعادة على النحو التالي:"
|
6794 |
|
6795 |
-
#: src/class-updraftplus.php:
|
6796 |
#: src/restorer.php:2304, src/restorer.php:2330
|
6797 |
msgid "Old table prefix:"
|
6798 |
msgstr "بادئة الجدول القديمة:"
|
6799 |
|
6800 |
#: src/addons/reporting.php:72, src/addons/reporting.php:181,
|
6801 |
-
#: src/backup.php:1135, src/class-updraftplus.php:
|
6802 |
msgid "Backup of:"
|
6803 |
msgstr "نسخة احتياطية لـ:"
|
6804 |
|
@@ -6886,39 +6960,39 @@ msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلو
|
|
6886 |
msgid "Archive is expected to be size:"
|
6887 |
msgstr "من المتوقع أن يكون حجم الأرشيف:"
|
6888 |
|
6889 |
-
#: src/admin.php:
|
6890 |
msgid "If making a request for support, please include this information:"
|
6891 |
msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
|
6892 |
|
6893 |
-
#: src/admin.php:
|
6894 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6895 |
msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
|
6896 |
|
6897 |
-
#: src/addons/wp-cli.php:647, src/admin.php:
|
6898 |
msgid "UpdraftPlus Restoration: Progress"
|
6899 |
msgstr "استرجاع UpdraftPlus: تقدم"
|
6900 |
|
6901 |
-
#: src/admin.php:
|
6902 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6903 |
msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
|
6904 |
|
6905 |
-
#: src/admin.php:
|
6906 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6907 |
msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
|
6908 |
|
6909 |
-
#: src/admin.php:
|
6910 |
msgid "Delete this backup set"
|
6911 |
msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
|
6912 |
|
6913 |
-
#: src/admin.php:
|
6914 |
msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
|
6915 |
msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
|
6916 |
|
6917 |
-
#: src/admin.php:
|
6918 |
msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
|
6919 |
msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
|
6920 |
|
6921 |
-
#: src/admin.php:
|
6922 |
msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
|
6923 |
msgstr ""
|
6924 |
|
@@ -6959,19 +7033,19 @@ msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من
|
|
6959 |
msgid "Use the server's SSL certificates"
|
6960 |
msgstr "استخدام شهادات SSL للملقم"
|
6961 |
|
6962 |
-
#: src/admin.php:
|
6963 |
msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
|
6964 |
msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
|
6965 |
|
6966 |
-
#: src/admin.php:
|
6967 |
msgid "or, to reset this option"
|
6968 |
msgstr "أو، لإعادة هذا الخيار"
|
6969 |
|
6970 |
-
#: src/admin.php:
|
6971 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6972 |
msgstr ""
|
6973 |
|
6974 |
-
#: src/admin.php:
|
6975 |
msgid "Backup directory specified is writable, which is good."
|
6976 |
msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
|
6977 |
|
@@ -7007,12 +7081,12 @@ msgstr "متقدمة / تصحيح الإعدادات "
|
|
7007 |
msgid "Requesting start of backup..."
|
7008 |
msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
|
7009 |
|
7010 |
-
#: src/addons/morefiles.php:
|
7011 |
msgid "Cancel"
|
7012 |
msgstr "إلغاء"
|
7013 |
|
7014 |
-
#: src/addons/incremental.php:
|
7015 |
-
#: src/admin.php:
|
7016 |
msgid "None"
|
7017 |
msgstr "لا شيء"
|
7018 |
|
@@ -7028,7 +7102,7 @@ msgstr "فك تشفير ملف النسخ الاحتياطي لقاعدة الب
|
|
7028 |
msgid "Database encryption phrase"
|
7029 |
msgstr "عبارة تشفير قاعدة البيانات"
|
7030 |
|
7031 |
-
#: src/admin.php:
|
7032 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
7033 |
msgid "Email"
|
7034 |
msgstr "البريد الإلكتروني"
|
@@ -7037,11 +7111,11 @@ msgstr "البريد الإلكتروني"
|
|
7037 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
7038 |
msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
|
7039 |
|
7040 |
-
#: src/addons/morefiles.php:
|
7041 |
msgid "Exclude these:"
|
7042 |
msgstr "استبعاد هذه:"
|
7043 |
|
7044 |
-
#: src/admin.php:
|
7045 |
msgid "Any other directories found inside wp-content"
|
7046 |
msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
|
7047 |
|
@@ -7057,46 +7131,46 @@ msgstr "على سبيل المثال إذا كان الملقم مشغول في
|
|
7057 |
msgid "To fix the time at which a backup should take place,"
|
7058 |
msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
|
7059 |
|
7060 |
-
#: src/addons/incremental.php:
|
7061 |
msgid "Monthly"
|
7062 |
msgstr "شهريا"
|
7063 |
|
7064 |
-
#: src/addons/incremental.php:
|
7065 |
msgid "Fortnightly"
|
7066 |
msgstr "نصف شهري"
|
7067 |
|
7068 |
-
#: src/addons/incremental.php:
|
7069 |
msgid "Weekly"
|
7070 |
msgstr "أسبوعيا"
|
7071 |
|
7072 |
-
#: src/addons/incremental.php:
|
7073 |
msgid "Daily"
|
7074 |
msgstr "يوميا"
|
7075 |
|
7076 |
-
#: src/admin.php:849, src/admin.php:
|
7077 |
msgid "Download log file"
|
7078 |
msgstr "تحميل ملف السجل"
|
7079 |
|
7080 |
-
#: src/admin.php:
|
7081 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
7082 |
msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
|
7083 |
|
7084 |
-
#: src/admin.php:
|
7085 |
msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
|
7086 |
msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
|
7087 |
|
7088 |
-
#: src/admin.php:
|
7089 |
msgid "The request to the filesystem to create the directory failed."
|
7090 |
msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
|
7091 |
|
7092 |
-
#: src/admin.php:842, src/admin.php:
|
7093 |
-
#: src/admin.php:
|
7094 |
#: src/templates/wp-admin/settings/existing-backups-table.php:155,
|
7095 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
7096 |
msgid "Delete"
|
7097 |
msgstr "حذف"
|
7098 |
|
7099 |
-
#: src/admin.php:
|
7100 |
msgid "show log"
|
7101 |
msgstr "عرض السجل"
|
7102 |
|
@@ -7157,7 +7231,7 @@ msgstr "لا"
|
|
7157 |
msgid "Yes"
|
7158 |
msgstr "نعم"
|
7159 |
|
7160 |
-
#: src/admin.php:
|
7161 |
#: src/templates/wp-admin/advanced/site-info.php:45,
|
7162 |
#: src/templates/wp-admin/advanced/site-info.php:51,
|
7163 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
@@ -7197,11 +7271,11 @@ msgstr "إجراء نسخة احتياطية لمرة واحدة"
|
|
7197 |
msgid "Do read this helpful article of useful things to know before restoring."
|
7198 |
msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
|
7199 |
|
7200 |
-
#: src/class-updraftplus.php:
|
7201 |
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"
|
7202 |
msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
|
7203 |
|
7204 |
-
#: src/addons/morefiles.php:
|
7205 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
|
7206 |
msgid "%s restoration options:"
|
7207 |
msgstr "%s خيارات الإستعادة:"
|
@@ -7312,7 +7386,7 @@ msgstr "متصفح الويب أوبرا "
|
|
7312 |
msgid "More tasks:"
|
7313 |
msgstr "المزيد من المهام:"
|
7314 |
|
7315 |
-
#: src/admin.php:
|
7316 |
msgid "Download most recently modified log file"
|
7317 |
msgstr "تحميل ملف السجل المعدل مؤخرا"
|
7318 |
|
@@ -7321,13 +7395,13 @@ msgid "(Nothing yet logged)"
|
|
7321 |
msgstr "(لا شيء حتى الآن تم تسجيله)"
|
7322 |
|
7323 |
#: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
|
7324 |
-
#: src/admin.php:
|
7325 |
#: src/templates/wp-admin/settings/take-backup.php:64
|
7326 |
msgid "Last log message"
|
7327 |
msgstr "رسالة السجل الأخيرة"
|
7328 |
|
7329 |
#: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
|
7330 |
-
#: src/admin.php:
|
7331 |
msgid "Restore"
|
7332 |
msgstr "الإستعادة"
|
7333 |
|
@@ -7339,18 +7413,18 @@ msgstr "النسخ الاحتياطي الآن"
|
|
7339 |
msgid "Time now"
|
7340 |
msgstr "الساعة الآن"
|
7341 |
|
7342 |
-
#: src/addons/moredatabase.php:
|
7343 |
-
#: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:
|
7344 |
-
#: src/admin.php:
|
7345 |
#: src/includes/class-wpadmin-commands.php:157,
|
7346 |
-
#: src/includes/class-wpadmin-commands.php:
|
7347 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
|
7348 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75,
|
7349 |
#: src/templates/wp-admin/settings/take-backup.php:33
|
7350 |
msgid "Database"
|
7351 |
msgstr "قاعدة بيانات"
|
7352 |
|
7353 |
-
#: src/admin.php:332, src/admin.php:
|
7354 |
#: src/templates/wp-admin/settings/take-backup.php:23
|
7355 |
msgid "Files"
|
7356 |
msgstr "ملفات"
|
@@ -7376,15 +7450,15 @@ msgstr "واجهة المشرف هذه تستخدم الجافا سكريبت ب
|
|
7376 |
msgid "JavaScript warning"
|
7377 |
msgstr "تحذير جافا سكريبت"
|
7378 |
|
7379 |
-
#: src/admin.php:826, src/admin.php:
|
7380 |
msgid "Delete Old Directories"
|
7381 |
msgstr "حذف الدلائل القديمة"
|
7382 |
|
7383 |
-
#: src/admin.php:
|
7384 |
msgid "Current limit is:"
|
7385 |
msgstr "الحد الحالي هو:"
|
7386 |
|
7387 |
-
#: src/admin.php:
|
7388 |
msgid "Your backup has been restored."
|
7389 |
msgstr "تمت استعادة النسخ الاحتياطي."
|
7390 |
|
@@ -7400,87 +7474,87 @@ msgstr "الولوج لموقع المطور"
|
|
7400 |
msgid "UpdraftPlus.Com"
|
7401 |
msgstr ""
|
7402 |
|
7403 |
-
#: src/admin.php:
|
7404 |
msgid "Your settings have been wiped."
|
7405 |
msgstr "تم القضاء على الإعدادات الخاصة بك."
|
7406 |
|
7407 |
-
#: src/admin.php:
|
7408 |
msgid "Backup directory successfully created."
|
7409 |
msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
|
7410 |
|
7411 |
-
#: src/admin.php:
|
7412 |
msgid "Backup directory could not be created"
|
7413 |
msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
|
7414 |
|
7415 |
-
#: src/admin.php:
|
7416 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
7417 |
msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
|
7418 |
|
7419 |
-
#: src/admin.php:
|
7420 |
msgid "Old directories successfully removed."
|
7421 |
msgstr "تم إزالة الدلائل القديمة بنجاح."
|
7422 |
|
7423 |
-
#: src/admin.php:
|
7424 |
msgid "Remove old directories"
|
7425 |
msgstr "إزالة الدلائل القديمة"
|
7426 |
|
7427 |
#: src/addons/migrator.php:340, src/addons/migrator.php:355,
|
7428 |
-
#: src/admin.php:
|
7429 |
-
#: src/admin.php:
|
7430 |
msgid "Return to UpdraftPlus Configuration"
|
7431 |
msgstr "العودة إلى اعدادات UpdraftPlus"
|
7432 |
|
7433 |
-
#: src/admin.php:819, src/admin.php:
|
7434 |
-
#: src/admin.php:
|
7435 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
7436 |
#: src/templates/wp-admin/settings/existing-backups-table.php:139
|
7437 |
msgid "Actions"
|
7438 |
msgstr "الإجراءات"
|
7439 |
|
7440 |
-
#: src/admin.php:
|
7441 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
7442 |
msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
|
7443 |
|
7444 |
-
#: src/admin.php:
|
7445 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
7446 |
msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
|
7447 |
|
7448 |
-
#: src/admin.php:
|
7449 |
msgid "No local copy present."
|
7450 |
msgstr "لا نسخة محلية متوفرة."
|
7451 |
|
7452 |
-
#: src/admin.php:
|
7453 |
msgid "Download in progress"
|
7454 |
msgstr "التحميل في تقدم"
|
7455 |
|
7456 |
-
#: src/admin.php:818, src/admin.php:
|
7457 |
msgid "File ready."
|
7458 |
msgstr "ملف جاهز."
|
7459 |
|
7460 |
-
#: src/admin.php:
|
7461 |
msgid "Download failed"
|
7462 |
msgstr "فشل تحميل"
|
7463 |
|
7464 |
#: src/addons/wp-cli.php:518, src/admin.php:816,
|
7465 |
-
#: src/class-updraftplus.php:
|
7466 |
#: src/includes/class-filesystem-functions.php:368,
|
7467 |
#: src/includes/class-storage-methods-interface.php:324,
|
7468 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
7469 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
7470 |
-
#: src/methods/stream-base.php:219, src/restorer.php:
|
7471 |
-
#: src/restorer.php:
|
7472 |
msgid "Error"
|
7473 |
msgstr "خطأ"
|
7474 |
|
7475 |
-
#: src/admin.php:
|
7476 |
msgid "Could not find that job - perhaps it has already finished?"
|
7477 |
msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
|
7478 |
|
7479 |
-
#: src/admin.php:
|
7480 |
msgid "Job deleted"
|
7481 |
msgstr "وظيفة حذفت"
|
7482 |
|
7483 |
-
#: src/admin.php:
|
7484 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
7485 |
msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
|
7486 |
|
@@ -7488,41 +7562,41 @@ msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات ب
|
|
7488 |
msgid "Nothing yet logged"
|
7489 |
msgstr "لا شيء حتى الآن تم تسجيله"
|
7490 |
|
7491 |
-
#: src/admin.php:
|
7492 |
msgid "Please consult this FAQ if you have problems backing up."
|
7493 |
msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
|
7494 |
|
7495 |
-
#: src/admin.php:
|
7496 |
msgid "Your website is hosted using the %s web server."
|
7497 |
msgstr "موقعك يستخدم %s من خادم الويب."
|
7498 |
|
7499 |
-
#: src/admin.php:
|
7500 |
msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
|
7501 |
msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
|
7502 |
|
7503 |
-
#: src/admin.php:
|
7504 |
msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
|
7505 |
msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
|
7506 |
|
7507 |
-
#: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:
|
7508 |
-
#: src/admin.php:
|
7509 |
-
#: src/admin.php:
|
7510 |
-
#: src/admin.php:
|
7511 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
7512 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
7513 |
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
7514 |
#: src/methods/updraftvault.php:306,
|
7515 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
7516 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
7517 |
-
#: src/udaddons/updraftplus-addons.php:
|
7518 |
msgid "Warning"
|
7519 |
msgstr "تحذير"
|
7520 |
|
7521 |
-
#: src/admin.php:
|
7522 |
msgid "Add-Ons / Pro Support"
|
7523 |
msgstr "إضافات / الدعم المدفوع"
|
7524 |
|
7525 |
-
#: src/admin.php:677, src/admin.php:
|
7526 |
msgid "Settings"
|
7527 |
msgstr "إعدادات"
|
7528 |
|
@@ -7530,7 +7604,7 @@ msgstr "إعدادات"
|
|
7530 |
msgid "Could not create %s zip. Consult the log file for more information."
|
7531 |
msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
|
7532 |
|
7533 |
-
#: src/backup.php:
|
7534 |
msgid "Infinite recursion: consult your log for more information"
|
7535 |
msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
|
7536 |
|
@@ -7542,7 +7616,7 @@ msgstr ""
|
|
7542 |
msgid "Like UpdraftPlus and can spare one minute?"
|
7543 |
msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
|
7544 |
|
7545 |
-
#: src/addons/azure.php:268, src/class-updraftplus.php:
|
7546 |
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
7547 |
msgid "File not found"
|
7548 |
msgstr "لم يتم العثور على ملف"
|
@@ -7551,29 +7625,29 @@ msgstr "لم يتم العثور على ملف"
|
|
7551 |
msgid "The decryption key used:"
|
7552 |
msgstr "مفتاح فك التشفير المستخدم:"
|
7553 |
|
7554 |
-
#: src/class-updraftplus.php:
|
7555 |
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
|
7556 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
7557 |
msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
|
7558 |
|
7559 |
-
#: src/class-updraftplus.php:
|
7560 |
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
|
7561 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
7562 |
msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
|
7563 |
|
7564 |
-
#: src/backup.php:
|
7565 |
msgid "Could not open the backup file for writing"
|
7566 |
msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
|
7567 |
|
7568 |
-
#: src/class-updraftplus.php:
|
7569 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
7570 |
msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
|
7571 |
|
7572 |
-
#: src/class-updraftplus.php:
|
7573 |
msgid "Could not read the directory"
|
7574 |
msgstr "لا يمكن قراءة الدليل"
|
7575 |
|
7576 |
-
#: src/admin.php:
|
7577 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
7578 |
msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
|
7579 |
|
@@ -7581,35 +7655,35 @@ msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتاب
|
|
7581 |
msgid "WordPress backup is complete"
|
7582 |
msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
|
7583 |
|
7584 |
-
#: src/class-updraftplus.php:
|
7585 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
7586 |
msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
|
7587 |
|
7588 |
-
#: src/class-updraftplus.php:
|
7589 |
msgid "The backup apparently succeeded and is now complete"
|
7590 |
msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
|
7591 |
|
7592 |
-
#: src/addons/moredatabase.php:
|
7593 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
7594 |
msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
|
7595 |
|
7596 |
-
#: src/class-updraftplus.php:
|
7597 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
7598 |
msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
|
7599 |
|
7600 |
-
#: src/class-updraftplus.php:
|
7601 |
msgid "Others"
|
7602 |
msgstr "أخرى"
|
7603 |
|
7604 |
-
#: src/addons/multisite.php:500, src/class-updraftplus.php:
|
7605 |
msgid "Uploads"
|
7606 |
msgstr "الملفات المرفوعة"
|
7607 |
|
7608 |
-
#: src/class-updraftplus.php:
|
7609 |
msgid "Themes"
|
7610 |
msgstr "تصاميم"
|
7611 |
|
7612 |
-
#: src/class-updraftplus.php:
|
7613 |
msgid "Plugins"
|
7614 |
msgstr "الإضافات"
|
7615 |
|
@@ -7617,11 +7691,11 @@ msgstr "الإضافات"
|
|
7617 |
msgid "No log files were found."
|
7618 |
msgstr "لا توجد ملفات السجل."
|
7619 |
|
7620 |
-
#: src/admin.php:
|
7621 |
msgid "The log file could not be read."
|
7622 |
msgstr "لا يمكن قراءة ملف السجل."
|
7623 |
|
7624 |
-
#: src/admin.php:
|
7625 |
#: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
|
7626 |
#: src/class-updraftplus.php:623, src/class-updraftplus.php:628
|
7627 |
msgid "UpdraftPlus notice:"
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
15 |
+
#: src/udaddons/updraftplus-addons.php:280
|
16 |
+
msgid "go here"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
20 |
+
#: src/udaddons/updraftplus-addons.php:280
|
21 |
+
msgid "If you have already renewed, then you need to allocate a licence to this site - %s"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: src/addons/onedrive.php:864
|
25 |
+
msgid "Authentication"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: src/admin.php:924
|
29 |
+
msgid "You must select at least one remote storage destination to upload this backup set to."
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: src/templates/wp-admin/settings/form-contents.php:350
|
33 |
+
msgid "Read more about Easy Updates Manager"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:68
|
37 |
+
msgid "You can find out more about clone keys here."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:57
|
41 |
+
msgid "Or, use an UpdraftClone key"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: src/restorer.php:2493
|
45 |
+
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: src/admin.php:951
|
49 |
+
msgid "UpdraftClone key is required."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: src/admin.php:942
|
53 |
+
msgid "The preparation of the clone data has been aborted."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: src/addons/azure.php:646
|
57 |
+
msgid "Azure Government"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
61 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
62 |
msgstr ""
|
69 |
msgid "Your database user does not have permission to drop tables"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: src/admin.php:2960
|
73 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
74 |
msgstr ""
|
75 |
|
237 |
msgid "WordPress installed"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: src/admin.php:5422
|
241 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: src/admin.php:3826
|
245 |
msgid "Exclude these from"
|
246 |
msgstr ""
|
247 |
|
281 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41
|
285 |
msgid "To create a temporary clone you need credit in your account."
|
286 |
msgstr ""
|
287 |
|
293 |
msgid "failed to upload file to %s (see log file for more)"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: src/admin.php:5418
|
297 |
msgid "Dashboard:"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: src/admin.php:5417
|
301 |
msgid "Front page:"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: src/admin.php:5416
|
305 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
306 |
msgstr ""
|
307 |
|
313 |
msgid "Current clones"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: src/class-updraftplus.php:3045
|
317 |
msgid "Your clone will now deploy this data to re-create your site."
|
318 |
msgstr ""
|
319 |
|
|
|
|
|
|
|
|
|
320 |
#: src/admin.php:941
|
321 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
322 |
msgstr ""
|
379 |
msgid "Account type"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56,
|
383 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:76
|
384 |
msgid "I accept the UpdraftClone terms and conditions"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56
|
388 |
msgid "Not got an account? Get one by buying some tokens here."
|
389 |
msgstr ""
|
390 |
|
391 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
392 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41,
|
393 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
394 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
398 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
402 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
406 |
msgid "Flexible"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
410 |
msgid "Takes just the time needed to create a backup and send it."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
414 |
msgid "Fast"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
418 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
422 |
msgid "Secure"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
426 |
msgid "Runs on capacity from a leading cloud computing provider."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
430 |
msgid "Reliable"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
434 |
msgid "Press the buttons... UpdraftClone does the work."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
438 |
msgid "Easy"
|
439 |
msgstr ""
|
440 |
|
441 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
442 |
+
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test things on your live site, you can UpdraftClone it, and then throw away your clone when done."
|
443 |
msgstr ""
|
444 |
|
445 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
446 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:39
|
447 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
448 |
msgstr ""
|
449 |
|
617 |
msgid "You can buy more temporary clone tokens here."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: src/admin.php:5373
|
621 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:35
|
625 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
626 |
msgstr ""
|
627 |
|
633 |
msgid "Other great plugins"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: src/admin.php:5420, src/admin.php:5423
|
637 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: src/class-updraftplus.php:4310
|
641 |
msgid "Choose a default for each table"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: src/admin.php:3274
|
645 |
msgid "Sending files to remote site"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: src/admin.php:3269
|
649 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
650 |
msgstr ""
|
651 |
|
657 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: src/admin.php:2796
|
661 |
msgid "Backup / Restore"
|
662 |
msgstr ""
|
663 |
|
681 |
msgid "No previous backup found to add an increment to."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: src/restorer.php:2499
|
685 |
msgid "Requested character set (%s) is not present - changing to %s."
|
686 |
msgstr ""
|
687 |
|
705 |
msgid "Refresh connection"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: src/addons/reporting.php:495
|
709 |
msgid "Log all messages to syslog"
|
710 |
msgstr ""
|
711 |
|
733 |
msgid "More information here."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: src/admin.php:669, src/admin.php:2797
|
737 |
msgid "Migrate / Clone"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: src/admin.php:3034, src/admin.php:3959,
|
741 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
742 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
743 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
763 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: src/admin.php:5396
|
767 |
msgid "(current version)"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: src/admin.php:3736
|
771 |
msgid "press here"
|
772 |
msgstr ""
|
773 |
|
781 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: src/addons/incremental.php:270
|
785 |
msgid "Tell me more"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: src/addons/incremental.php:258
|
789 |
msgid "And then add an incremental backup"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: src/addons/incremental.php:236, src/updraftplus.php:99
|
793 |
msgid "Every hour"
|
794 |
msgstr ""
|
795 |
|
801 |
msgid "Available temporary clone tokens:"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: src/admin.php:2884, src/includes/class-commands.php:901,
|
805 |
#: src/includes/class-commands.php:949,
|
806 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
807 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
808 |
msgid "Processing"
|
809 |
msgstr ""
|
820 |
msgid "I consent to %s"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: src/admin.php:2982,
|
824 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
825 |
msgid "One Time Password (check your OTP app to get this password)"
|
826 |
msgstr ""
|
869 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: src/admin.php:5342
|
873 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
874 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
875 |
msgstr[0] ""
|
976 |
msgid "Upload backup"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: src/admin.php:4246
|
980 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
981 |
msgstr ""
|
982 |
|
988 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/admin.php:844, src/admin.php:4246
|
992 |
msgid "Upload"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/addons/reporting.php:529, src/admin.php:794
|
996 |
msgid "Only email the database backup"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: src/addons/reporting.php:529
|
1000 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: src/addons/reporting.php:529
|
1004 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
1005 |
msgstr ""
|
1006 |
|
1114 |
msgid "Select your incremental restore point"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: src/addons/morefiles.php:67
|
1118 |
msgid "(None configured)"
|
1119 |
msgstr ""
|
1120 |
|
1122 |
msgid "Ensure you are logged into the correct account before continuing."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: src/admin.php:4984
|
1126 |
msgid "Remote storage method and instance id are required for authentication."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: src/admin.php:4980
|
1130 |
msgid "authentication error"
|
1131 |
msgstr ""
|
1132 |
|
1208 |
msgstr[4] ""
|
1209 |
msgstr[5] ""
|
1210 |
|
1211 |
+
#: src/class-updraftplus.php:4287
|
1212 |
msgid "Your chosen replacement collation"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: src/class-updraftplus.php:4264
|
1216 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: src/class-updraftplus.php:4264
|
1220 |
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."
|
1221 |
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."
|
1222 |
msgstr[0] ""
|
1292 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: src/class-updraftplus.php:4240
|
1296 |
msgid "Your chosen character set to use instead:"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: src/class-updraftplus.php:4230
|
1300 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: src/class-updraftplus.php:4230
|
1304 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1305 |
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."
|
1306 |
msgstr[0] ""
|
1394 |
msgid "Account ID"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: src/class-updraftplus.php:4069
|
1398 |
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."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
|
1402 |
msgid "the migrator add-on"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: src/class-updraftplus.php:4067
|
1406 |
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."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: src/class-updraftplus.php:4065
|
1410 |
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."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: src/class-updraftplus.php:4060
|
1414 |
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."
|
1415 |
msgstr ""
|
1416 |
|
1426 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
|
1430 |
+
#: src/class-updraftplus.php:2252,
|
1431 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1432 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
|
1436 |
+
#: src/class-updraftplus.php:2245,
|
1437 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1438 |
msgid "A PHP exception (%s) has occurred: %s"
|
1439 |
msgstr ""
|
1487 |
msgid "Instant and secure logon with a wave of your phone."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: src/admin.php:5190
|
1491 |
msgid "Value"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: src/admin.php:1779
|
1495 |
msgid "Did not know how to delete from this cloud service."
|
1496 |
msgstr ""
|
1497 |
|
1507 |
msgid "Cloud Files"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: src/admin.php:4932
|
1511 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: src/admin.php:4891
|
1515 |
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."
|
1516 |
msgstr ""
|
1517 |
|
1520 |
msgid "UpdraftVault"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: src/includes/class-wpadmin-commands.php:529
|
1524 |
msgid "archive"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: src/includes/class-wpadmin-commands.php:520
|
1528 |
msgid "Extra database"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: src/admin.php:4102
|
1532 |
msgid "Press here to download or browse"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: src/admin.php:1332, src/admin.php:1342
|
1536 |
msgid "Error: invalid path"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: src/admin.php:1131
|
1540 |
msgid "An error occurred when fetching storage module options: "
|
1541 |
msgstr ""
|
1542 |
|
1572 |
msgid "Skipped tables:"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: src/class-updraftplus.php:4365
|
1576 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: src/admin.php:3020
|
1580 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: src/admin.php:3020
|
1584 |
msgid "All WordPress tables will be backed up."
|
1585 |
msgstr ""
|
1586 |
|
1612 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: src/addons/moredatabase.php:414
|
1616 |
msgid "tables"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: src/addons/moredatabase.php:413
|
1620 |
msgid "WordPress database"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: src/addons/moredatabase.php:406
|
1624 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1625 |
msgstr ""
|
1626 |
|
1739 |
msgid "Installed"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: src/templates/wp-admin/settings/tab-addons.php:43,
|
1743 |
+
#: src/templates/wp-admin/settings/tab-addons.php:65,
|
1744 |
+
#: src/templates/wp-admin/settings/tab-addons.php:78,
|
1745 |
+
#: src/templates/wp-admin/settings/tab-addons.php:91,
|
1746 |
+
#: src/templates/wp-admin/settings/tab-addons.php:104,
|
1747 |
+
#: src/templates/wp-admin/settings/tab-addons.php:117,
|
1748 |
+
#: src/templates/wp-admin/settings/tab-addons.php:130,
|
1749 |
+
#: src/templates/wp-admin/settings/tab-addons.php:143,
|
1750 |
+
#: src/templates/wp-admin/settings/tab-addons.php:156,
|
1751 |
+
#: src/templates/wp-admin/settings/tab-addons.php:169,
|
1752 |
+
#: src/templates/wp-admin/settings/tab-addons.php:182,
|
1753 |
+
#: src/templates/wp-admin/settings/tab-addons.php:195,
|
1754 |
+
#: src/templates/wp-admin/settings/tab-addons.php:208,
|
1755 |
+
#: src/templates/wp-admin/settings/tab-addons.php:221,
|
1756 |
+
#: src/templates/wp-admin/settings/tab-addons.php:234,
|
1757 |
+
#: src/templates/wp-admin/settings/tab-addons.php:251
|
1758 |
msgid "Free"
|
1759 |
msgstr ""
|
1760 |
|
1777 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: src/addons/morefiles.php:319
|
1781 |
msgid "Please choose a file or directory"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: src/addons/morefiles.php:312
|
1785 |
msgid "Confirm"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: src/addons/morefiles.php:307, src/addons/morefiles.php:307
|
1789 |
msgid "Go up a directory"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: src/addons/morefiles.php:304
|
1793 |
msgid "Add directory..."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: src/addons/morefiles.php:297, src/addons/morefiles.php:317,
|
1797 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1798 |
msgid "Edit"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: src/addons/morefiles.php:280
|
1802 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1803 |
msgstr ""
|
1804 |
|
1871 |
msgstr ""
|
1872 |
|
1873 |
#: src/includes/updraftplus-notices.php:238
|
1874 |
+
msgid "Happy New Year - 20% off UpdraftPlus Premium until January 14th"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
#: src/includes/updraftplus-notices.php:225
|
2057 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: src/admin.php:1862
|
2061 |
msgid "Remote files deleted:"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: src/admin.php:1861
|
2065 |
msgid "Local files deleted:"
|
2066 |
msgstr ""
|
2067 |
|
2117 |
msgid "Account is not authorized (%s)."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
|
2121 |
msgid "Your IP address:"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
|
2125 |
+
#: src/udaddons/updraftplus-addons.php:903
|
2126 |
msgid "To remove any block, please go here."
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
|
2130 |
msgid "An error response was received; HTTP code:"
|
2131 |
msgstr ""
|
2132 |
|
2142 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: src/admin.php:2607
|
2146 |
msgid "To fix this problem go here."
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: src/admin.php:2607
|
2150 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2151 |
msgstr ""
|
2152 |
|
2178 |
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."
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: src/udaddons/updraftplus-addons.php:906
|
2182 |
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."
|
2183 |
msgstr ""
|
2184 |
|
2222 |
msgid "Public key was sent to:"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: src/backup.php:2353
|
2226 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: src/backup.php:2331
|
2230 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2231 |
msgstr ""
|
2232 |
|
2284 |
msgid "login"
|
2285 |
msgstr "تسجيل الدخول"
|
2286 |
|
2287 |
+
#: src/addons/reporting.php:527, src/addons/reporting.php:527,
|
2288 |
+
#: src/addons/reporting.php:529, src/methods/email.php:100
|
2289 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2290 |
msgstr ""
|
2291 |
|
2293 |
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."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: src/class-updraftplus.php:1793
|
2297 |
msgid "Size: %s MB"
|
2298 |
msgstr ""
|
2299 |
|
2301 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
2305 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2306 |
msgstr ""
|
2307 |
|
2407 |
msgid "UpdraftCentral Connection"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: src/backup.php:1042, src/class-updraftplus.php:3026
|
2411 |
msgid "The backup was aborted by the user"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: src/admin.php:4927
|
2415 |
msgid "Your settings have been saved."
|
2416 |
msgstr "تم حفظ إعداداتك."
|
2417 |
|
2418 |
+
#: src/admin.php:4007
|
2419 |
msgid "Total backup size:"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: src/admin.php:3414
|
2423 |
msgid "stop"
|
2424 |
msgstr "توقف"
|
2425 |
|
2426 |
+
#: src/admin.php:903, src/admin.php:3207
|
2427 |
msgid "The backup has finished running"
|
2428 |
msgstr ""
|
2429 |
|
2485 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: src/class-updraftplus.php:4138, src/restorer.php:2227
|
2489 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: src/class-updraftplus.php:4134
|
2493 |
msgid "Please read this link for important information on this process."
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: src/class-updraftplus.php:4134
|
2497 |
msgid "It will be imported as a new site."
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
|
2501 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2502 |
msgid "Dismiss"
|
2503 |
msgstr "رفض"
|
2563 |
msgid "Call WordPress action:"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: src/admin.php:3030
|
2567 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2568 |
msgstr ""
|
2569 |
|
2595 |
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)."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: src/admin.php:4801
|
2599 |
msgid "Send this backup to remote storage"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: src/admin.php:4799
|
2603 |
msgid "Check out UpdraftPlus Vault."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: src/admin.php:4799
|
2607 |
msgid "Not got any remote storage?"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: src/admin.php:4799
|
2611 |
msgid "settings"
|
2612 |
msgstr "إعدادات"
|
2613 |
|
2614 |
+
#: src/admin.php:4799
|
2615 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: src/admin.php:3028
|
2619 |
msgid "Include any files in the backup"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: src/admin.php:3012
|
2623 |
msgid "Include the database in the backup"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/admin.php:2839
|
2627 |
msgid "Continue restoration"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: src/admin.php:2834
|
2631 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: src/admin.php:2833
|
2635 |
msgid "Unfinished restoration"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: src/admin.php:2831
|
2639 |
msgid "%s minutes, %s seconds"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: src/admin.php:2697
|
2643 |
msgid "Backup Contents And Schedule"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: src/admin.php:2800
|
2647 |
msgid "Premium / Extensions"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: src/admin.php:2474, src/admin.php:2483
|
2651 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: src/addons/morefiles.php:71, src/admin.php:875
|
2655 |
msgctxt "(verb)"
|
2656 |
msgid "Download"
|
2657 |
msgstr ""
|
2664 |
msgid "Extensions"
|
2665 |
msgstr "Extensions"
|
2666 |
|
2667 |
+
#: src/admin.php:685, src/admin.php:2799
|
2668 |
msgid "Advanced Tools"
|
2669 |
msgstr ""
|
2670 |
|
2783 |
msgid "Could not access container"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: src/class-updraftplus.php:3045
|
2787 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2788 |
msgstr ""
|
2789 |
|
2913 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: src/admin.php:1860
|
2917 |
msgid "Backup sets removed:"
|
2918 |
msgstr ""
|
2919 |
|
2953 |
msgid "Add an additional retention rule..."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/restorer.php:2805
|
2957 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: src/restorer.php:2805
|
2961 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2962 |
msgstr ""
|
2963 |
|
2965 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: src/class-updraftplus.php:4209
|
2969 |
msgid "You must upgrade MySQL to be able to use this database."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: src/class-updraftplus.php:4209
|
2973 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: src/admin.php:2592
|
2977 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2978 |
msgstr ""
|
2979 |
|
3001 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: src/admin.php:1190
|
3005 |
msgid "Go to the remote storage settings in order to connect."
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: src/admin.php:1190
|
3009 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
3010 |
msgstr ""
|
3011 |
|
3149 |
msgid "Delete failed:"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: src/backup.php:3431
|
3153 |
msgid "The zip engine returned the message: %s."
|
3154 |
msgstr ""
|
3155 |
|
3229 |
msgid "This storage method does not allow downloading"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: src/admin.php:4165
|
3233 |
msgid "(backup set imported from remote location)"
|
3234 |
msgstr ""
|
3235 |
|
3375 |
msgid "Adding..."
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: src/udaddons/options.php:294
|
3379 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: src/restorer.php:2807
|
3383 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3387 |
msgid "go here to change your password on updraftplus.com."
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3391 |
msgid "If you have forgotten your password "
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: src/udaddons/updraftplus-addons.php:938
|
3395 |
msgid "Go here to re-enter your password."
|
3396 |
msgstr ""
|
3397 |
|
3429 |
msgstr ""
|
3430 |
|
3431 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3432 |
+
msgid "authorization failed:"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
3605 |
|
3606 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3607 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3608 |
+
#: src/udaddons/updraftplus-addons.php:889,
|
3609 |
+
#: src/udaddons/updraftplus-addons.php:903
|
3610 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3611 |
msgstr ""
|
3612 |
|
3613 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3614 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3615 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3616 |
msgstr ""
|
3617 |
|
3618 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3619 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3620 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3621 |
msgstr ""
|
3622 |
|
3654 |
msgid "Dismiss (for %s months)"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: src/addons/fixtime.php:448
|
3658 |
msgid "(at same time as files backup)"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: src/admin.php:3701
|
3662 |
msgid "No backup has been completed"
|
3663 |
msgstr ""
|
3664 |
|
3732 |
msgid "Check this box to have a basic report sent to"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: src/admin.php:3715
|
3736 |
msgctxt "i.e. Non-automatic"
|
3737 |
msgid "Manual"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: src/restorer.php:2784
|
3741 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3742 |
msgid "An error (%s) occurred:"
|
3743 |
msgstr ""
|
3746 |
msgid "Change Lock Settings"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
+
#: src/addons/morefiles.php:258
|
3750 |
msgid "Any other file/directory on your server that you wish to backup"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
+
#: src/admin.php:2609
|
3754 |
msgid "For even more features and personal support, check out "
|
3755 |
msgstr ""
|
3756 |
|
3836 |
msgid "The admin password has now been removed."
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: src/addons/morefiles.php:141
|
3840 |
msgid "(learn more about this significant option)"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: src/udaddons/options.php:237
|
3844 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: src/admin.php:3207, src/admin.php:4276
|
3848 |
msgid "View Log"
|
3849 |
msgstr ""
|
3850 |
|
3863 |
msgid "and retain this many scheduled backups"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: src/admin.php:3671
|
3867 |
msgid "incremental backup; base backup: %s"
|
3868 |
msgstr ""
|
3869 |
|
3876 |
msgid "Upload files into UpdraftPlus."
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: src/admin.php:1136, src/includes/class-commands.php:462,
|
3880 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3881 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: src/class-updraftplus.php:4123
|
3885 |
msgid "Backup label:"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: src/addons/backblaze.php:205, src/admin.php:2111
|
3889 |
msgid "Error: unexpected file read fail"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: src/backup.php:3437
|
3893 |
msgid "check your log for more details."
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: src/backup.php:3435
|
3897 |
msgid "your web hosting account appears to be full; please see: %s"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: src/backup.php:3433
|
3901 |
msgid "A zip error occurred"
|
3902 |
msgstr ""
|
3903 |
|
3909 |
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."
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:942
|
3913 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:938
|
3917 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:804
|
3921 |
msgid "You need to supply both an email address and a password"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: src/class-updraftplus.php:4142
|
3925 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: src/class-updraftplus.php:4142
|
3929 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3930 |
msgstr ""
|
3931 |
|
3962 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: src/class-updraftplus.php:4115
|
3966 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: src/class-updraftplus.php:4115
|
3970 |
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."
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: src/class-updraftplus.php:4115
|
3974 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: src/class-updraftplus.php:4115
|
3978 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3979 |
msgstr ""
|
3980 |
|
4003 |
msgid "UpdraftPlus is on social media - check us out!"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: src/addons/wp-cli.php:907, src/admin.php:4464
|
4007 |
msgid "Why am I seeing this?"
|
4008 |
msgstr ""
|
4009 |
|
4017 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: src/admin.php:2048, src/admin.php:2060, src/includes/class-commands.php:833
|
4021 |
msgid "Start backup"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
4025 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: src/admin.php:3569
|
4029 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
4030 |
msgstr ""
|
4031 |
|
4033 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: src/admin.php:2286
|
4037 |
msgid "This file could not be uploaded"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: src/admin.php:2249
|
4041 |
msgid "You will find more information about this in the Settings section."
|
4042 |
msgstr ""
|
4043 |
|
4077 |
msgid "Backup succeeded"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: src/addons/incremental.php:237, src/addons/incremental.php:238,
|
4081 |
+
#: src/addons/incremental.php:239, src/addons/incremental.php:240,
|
4082 |
+
#: src/admin.php:3716, src/admin.php:3717, src/admin.php:3718,
|
4083 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4084 |
msgid "Every %s hours"
|
4085 |
msgstr ""
|
4118 |
msgid "search term"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#: src/restorer.php:2812
|
4122 |
msgid "Too many database errors have occurred - aborting"
|
4123 |
msgstr ""
|
4124 |
|
4154 |
msgid "Free disk space in account:"
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: src/admin.php:4898, src/templates/wp-admin/settings/take-backup.php:50
|
4158 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4159 |
msgstr ""
|
4160 |
|
4161 |
+
#: src/admin.php:817, src/admin.php:1916,
|
4162 |
#: src/includes/deprecated-actions.php:29,
|
4163 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4164 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
4166 |
msgid "Existing Backups"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: src/admin.php:1141
|
4170 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: src/admin.php:1141
|
4174 |
msgid "To make a backup, just press the Backup Now button."
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: src/admin.php:1141
|
4178 |
msgid "Welcome to UpdraftPlus!"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: src/addons/moredatabase.php:318
|
4182 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4183 |
msgstr ""
|
4184 |
|
4185 |
+
#: src/addons/moredatabase.php:257
|
4186 |
msgid "Testing..."
|
4187 |
msgstr ""
|
4188 |
|
4189 |
+
#: src/addons/moredatabase.php:244
|
4190 |
msgid "Test connection..."
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: src/addons/moredatabase.php:243
|
4194 |
msgid "Table prefix"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: src/addons/moredatabase.php:237
|
4198 |
msgid "Backup external database"
|
4199 |
msgstr ""
|
4200 |
|
4246 |
msgid "user"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
+
#: src/class-updraftplus.php:1790
|
4250 |
msgid "External database (%s)"
|
4251 |
msgstr ""
|
4252 |
|
4264 |
msgid "However, subsequent access attempts failed:"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: src/addons/wp-cli.php:437, src/admin.php:4032
|
4268 |
msgid "External database"
|
4269 |
msgstr ""
|
4270 |
|
4296 |
msgid "use UpdraftPlus Premium"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
+
#: src/class-updraftplus.php:3966
|
4300 |
msgid "Decryption failed. The database file is encrypted."
|
4301 |
msgstr ""
|
4302 |
|
4304 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4305 |
msgstr ""
|
4306 |
|
4307 |
+
#: src/restorer.php:2284, src/restorer.php:2753, src/restorer.php:2794,
|
4308 |
+
#: src/restorer.php:2807
|
4309 |
msgid "An error occurred on the first %s command - aborting run"
|
4310 |
msgstr ""
|
4311 |
|
4351 |
msgid "Tenant"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
+
#: src/addons/wp-cli.php:800, src/admin.php:4586, src/admin.php:5342,
|
4355 |
#: src/methods/openstack2.php:144,
|
4356 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4357 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
4497 |
msgid "Failed to unpack the archive"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: src/class-updraftplus.php:1365
|
4501 |
msgid "Error - failed to download the file"
|
4502 |
msgstr ""
|
4503 |
|
4506 |
msgid "Rescan local folder for new backup sets"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4510 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4511 |
msgstr ""
|
4512 |
|
4513 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4514 |
msgid "It has been tested up to version %s."
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4518 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4519 |
msgstr ""
|
4520 |
|
4523 |
msgstr " الرقم السري/المفتاح"
|
4524 |
|
4525 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4526 |
+
#: src/admin.php:5190, src/templates/wp-admin/settings/temporary-clone.php:63
|
4527 |
msgid "Key"
|
4528 |
msgstr "مفتاح"
|
4529 |
|
4539 |
msgid "SCP/SFTP password/key"
|
4540 |
msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
|
4541 |
|
4542 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4543 |
msgid "Files backup (created by %s)"
|
4544 |
msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
|
4545 |
|
4546 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4547 |
msgid "Files and database WordPress backup (created by %s)"
|
4548 |
msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
|
4549 |
|
4550 |
+
#: src/addons/importer.php:276, src/admin.php:4070,
|
4551 |
#: src/includes/class-backup-history.php:435
|
4552 |
msgid "Backup created by: %s."
|
4553 |
msgstr "ولدت النسخة الإحتياطية من طرف: %s."
|
4554 |
|
4555 |
+
#: src/addons/wp-cli.php:431, src/admin.php:4030
|
4556 |
msgid "Database (created by %s)"
|
4557 |
msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
|
4558 |
|
4559 |
+
#: src/addons/wp-cli.php:429, src/admin.php:4024, src/admin.php:4072
|
4560 |
msgid "unknown source"
|
4561 |
msgstr "مصدر غير معروف"
|
4562 |
|
4571 |
msgid "Upload backup files"
|
4572 |
msgstr "رفع ملفات النسخة الإحتياطية"
|
4573 |
|
4574 |
+
#: src/admin.php:2301
|
4575 |
msgid "This backup was created by %s, and can be imported."
|
4576 |
msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
|
4577 |
|
4578 |
+
#: src/admin.php:1170
|
4579 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4580 |
msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
|
4581 |
|
4582 |
+
#: src/admin.php:1170
|
4583 |
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."
|
4584 |
msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
|
4585 |
|
4596 |
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))."
|
4597 |
msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
4598 |
|
4599 |
+
#: src/admin.php:4073, src/includes/class-wpadmin-commands.php:162,
|
4600 |
#: src/restorer.php:1975
|
4601 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4602 |
msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
|
4635 |
msgid "(Read more)"
|
4636 |
msgstr "(قراءة المزيد)"
|
4637 |
|
4638 |
+
#: src/addons/reporting.php:496
|
4639 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4640 |
msgstr "تسجيل كافة الرسائل بسجل الرسائل (من المحتمل أنه فقط مديري الخادم من سيغب في هذه العملية)"
|
4641 |
|
4642 |
+
#: src/addons/morefiles.php:538
|
4643 |
msgid "No backup of location: there was nothing found to back up"
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: src/addons/moredatabase.php:236, src/addons/morefiles.php:297,
|
4647 |
+
#: src/addons/morefiles.php:318
|
4648 |
msgid "Remove"
|
4649 |
msgstr "حذف"
|
4650 |
|
4656 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4657 |
msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
|
4658 |
|
4659 |
+
#: src/addons/morefiles.php:476, src/admin.php:3829
|
4660 |
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."
|
4661 |
msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
|
4662 |
|
4685 |
msgid "Backup created by:"
|
4686 |
msgstr "نسخة احتياطية أنشأها:"
|
4687 |
|
4688 |
+
#: src/udaddons/options.php:479
|
4689 |
msgid "Available to claim on this site"
|
4690 |
msgstr "متوفر للطلب من هذا الموقع"
|
4691 |
|
4692 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4693 |
msgid "To maintain your access to support, please renew."
|
4694 |
msgstr "للحفاظ على ولوجك للدعم الفني، من فضلك جدد اشتراكك."
|
4695 |
|
4696 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4697 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4698 |
msgstr "وصولك المدفوع للدعم الفني الخاص بـ UpdraftPlus اقتربت نهاية صلاحيته."
|
4699 |
|
4700 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4701 |
msgid "To regain your access, please renew."
|
4702 |
msgstr "لاستعادة الوصول الخاصة بك، يرجى تجديد اشتراكك."
|
4703 |
|
4704 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4705 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4706 |
msgstr "وصولك المدفوع للدعم الفني بـ UpdraftPlus انتهت صلاحيته."
|
4707 |
|
4708 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4709 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4710 |
msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا الموقع اقتربت نهاية صلاحيته."
|
4711 |
|
4712 |
+
#: src/udaddons/updraftplus-addons.php:276,
|
4713 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4714 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4715 |
msgstr "للحفاظ على ولوجك لخدماتنا المدفوعة (من ضمنها التحديثات المستقبلية والتوافق مع نسخ ووردبريس المستقبلية) والدعم الفني، من فضلك جدد اشتراكك."
|
4716 |
|
4717 |
+
#: src/udaddons/updraftplus-addons.php:276
|
4718 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4719 |
msgstr "وصولك المدفوع لتحديثات UpdraftPlus على %s إضافة بهذا الموقع اقتربت نهاية صلاحيته."
|
4720 |
|
4721 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4722 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4723 |
msgstr "وصولك المدفوع لتحديثات UpdraftPlus على %s إضافة بهذا الموقع انتهت صلاحيته."
|
4724 |
|
4725 |
+
#: src/udaddons/updraftplus-addons.php:266,
|
4726 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4727 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4728 |
msgstr "للحفاظ على ولوجك للتحديثات (من ضمنها التحديثات المستقبلية والتوافق مع نسخ ووردبريس المستقبلية) والدعم الفني، من فضلك جدد اشتراكك. "
|
4729 |
|
4730 |
+
#: src/udaddons/updraftplus-addons.php:266
|
4731 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4732 |
msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا الموقع اقتربت نهاية صلاحيته. لن تصلك أي تحديثات جديدة لـ UpdraftPlus."
|
4733 |
|
4734 |
+
#: src/udaddons/updraftplus-addons.php:228
|
4735 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4736 |
msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
|
4737 |
|
4748 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4749 |
msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
|
4750 |
|
4751 |
+
#: src/includes/class-wpadmin-commands.php:328
|
4752 |
msgid "Constants"
|
4753 |
msgstr "ثوابت"
|
4754 |
|
4772 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4773 |
msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبقية، لكن الملف الذي نقوم برفعه حجمه %d بايت متبقية (الحجم الكلي: %d بايت)"
|
4774 |
|
4775 |
+
#: src/udaddons/updraftplus-addons.php:474,
|
4776 |
+
#: src/udaddons/updraftplus-addons.php:510
|
4777 |
msgid "Errors occurred:"
|
4778 |
msgstr "أخطاء حدثت:"
|
4779 |
|
4780 |
+
#: src/addons/wp-cli.php:664, src/admin.php:4506
|
4781 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4782 |
msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
|
4783 |
|
4801 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4802 |
msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
|
4803 |
|
4804 |
+
#: src/admin.php:1145, src/class-updraftplus.php:847
|
4805 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4806 |
msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
|
4807 |
|
4814 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4815 |
msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
|
4816 |
|
4817 |
+
#: src/addons/moredatabase.php:144, src/admin.php:1640
|
4818 |
msgid "Messages:"
|
4819 |
msgstr "رسائل:"
|
4820 |
|
4821 |
+
#: src/restorer.php:2647
|
4822 |
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"
|
4823 |
msgstr "تم العثور على خط SQL أكبر من الحد الأقصى لحجم الحزمة ولا يمكن تقسيمها، هذا الخط لن نتمكن من معالجته، وسنقوم بإبعاده: %s"
|
4824 |
|
4976 |
msgstr "فشل التفويض (راجع معلوماتك)"
|
4977 |
|
4978 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4979 |
+
#: src/udaddons/options.php:229
|
4980 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4981 |
msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
|
4982 |
|
4992 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4993 |
msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
|
4994 |
|
4995 |
+
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:4584
|
4996 |
msgid "Error data:"
|
4997 |
msgstr "خطأ بالبيانات:"
|
4998 |
|
4999 |
+
#: src/admin.php:4487
|
5000 |
msgid "Backup does not exist in the backup history"
|
5001 |
msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
|
5002 |
|
5003 |
+
#: src/admin.php:3143
|
5004 |
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."
|
5005 |
msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
|
5006 |
|
5028 |
msgid "Moving old data out of the way..."
|
5029 |
msgstr "نقل البيانات القديمة بعيدا ..."
|
5030 |
|
5031 |
+
#: src/addons/reporting.php:481
|
5032 |
msgid "Add another address..."
|
5033 |
msgstr "إضافة عنوان آخر ..."
|
5034 |
|
5035 |
+
#: src/addons/reporting.php:466
|
5036 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
5037 |
msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تقرير لها عند انتهاء مهمة النسخ الاحتياطي."
|
5038 |
|
5039 |
+
#: src/addons/reporting.php:440
|
5040 |
msgid "Email reports"
|
5041 |
msgstr "تقارير البريد الإلكتروني"
|
5042 |
|
5043 |
+
#: src/class-updraftplus.php:1798, src/class-updraftplus.php:1803
|
5044 |
msgid "%s checksum: %s"
|
5045 |
msgstr "%s الاختباري:%s"
|
5046 |
|
5047 |
+
#: src/class-updraftplus.php:1734, src/class-updraftplus.php:1736
|
5048 |
msgid "files: %s"
|
5049 |
msgstr "ملفات:%s"
|
5050 |
|
5056 |
msgid "Debugging information"
|
5057 |
msgstr "معلومات التصحيح"
|
5058 |
|
5059 |
+
#: src/addons/reporting.php:223, src/admin.php:3990
|
5060 |
msgid "Uploaded to:"
|
5061 |
msgstr "تحميلها على:"
|
5062 |
|
5076 |
msgid "Errors / warnings:"
|
5077 |
msgstr "أخطاء / تحذيرات:"
|
5078 |
|
5079 |
+
#: src/addons/morefiles.php:129, src/addons/morefiles.php:130,
|
5080 |
#: src/addons/reporting.php:184
|
5081 |
msgid "Contains:"
|
5082 |
msgstr "يحتوي على:"
|
5097 |
msgid "%d errors, %d warnings"
|
5098 |
msgstr "%d الأخطاء، %d تحذيرات"
|
5099 |
|
5100 |
+
#: src/methods/dropbox.php:753, src/methods/dropbox.php:775
|
|
|
5101 |
msgid "%s authentication"
|
5102 |
msgstr "%s مصادقة"
|
5103 |
|
5128 |
msgid "Your site's admin email address (%s) will be used."
|
5129 |
msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
|
5130 |
|
5131 |
+
#: src/admin.php:853, src/admin.php:2874, src/methods/updraftvault.php:319,
|
5132 |
+
#: src/methods/updraftvault.php:362,
|
5133 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
5134 |
msgid "Connect"
|
5135 |
msgstr "الإتصال"
|
5136 |
|
5138 |
msgid "For more reporting features, use the Reporting add-on."
|
5139 |
msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
|
5140 |
|
5141 |
+
#: src/class-updraftplus.php:4047
|
5142 |
msgid "(version: %s)"
|
5143 |
msgstr "(الإصدار: %s)"
|
5144 |
|
5146 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5147 |
msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
|
5148 |
|
5149 |
+
#: src/addons/reporting.php:527, src/admin.php:791
|
5150 |
msgid "When the Email storage method is enabled, also send the backup"
|
5151 |
msgstr ""
|
5152 |
|
5210 |
msgid "UpdraftPlus warning:"
|
5211 |
msgstr "تحذير UpdraftPlus :"
|
5212 |
|
5213 |
+
#: src/udaddons/options.php:485
|
5214 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5215 |
msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
|
5216 |
|
5238 |
msgid "UpdraftPlus Support"
|
5239 |
msgstr "دعم UpdraftPlus"
|
5240 |
|
5241 |
+
#: src/udaddons/options.php:357
|
5242 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5243 |
msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
|
5244 |
|
5245 |
+
#: src/udaddons/options.php:346, src/udaddons/updraftplus-addons.php:315
|
5246 |
msgid "UpdraftPlus Addons"
|
5247 |
msgstr "اضافات UpdraftPlus"
|
5248 |
|
5251 |
msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
|
5252 |
|
5253 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5254 |
+
#: src/udaddons/updraftplus-addons.php:949
|
5255 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5256 |
msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
|
5257 |
|
5258 |
+
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:945
|
5259 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5260 |
msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
|
5261 |
|
5262 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5263 |
+
#: src/udaddons/updraftplus-addons.php:908
|
5264 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5265 |
msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
|
5266 |
|
5267 |
+
#: src/udaddons/updraftplus-addons.php:831
|
5268 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5269 |
msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة"
|
5270 |
|
5271 |
+
#: src/udaddons/updraftplus-addons.php:829
|
5272 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5273 |
msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
|
5274 |
|
5279 |
msgid "Reporting"
|
5280 |
msgstr "التقارير"
|
5281 |
|
5282 |
+
#: src/admin.php:5187
|
5283 |
msgid "Options (raw)"
|
5284 |
msgstr "خيارات (الخام)"
|
5285 |
|
5286 |
+
#: src/addons/reporting.php:525, src/admin.php:790
|
5287 |
msgid "Send a report only when there are warnings/errors"
|
5288 |
msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
|
5289 |
|
5299 |
msgid "See also the \"More Files\" add-on from our shop."
|
5300 |
msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
|
5301 |
|
5302 |
+
#: src/backup.php:3424, src/class-updraftplus.php:860
|
5303 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5304 |
msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
|
5305 |
|
5306 |
+
#: src/class-updraftplus.php:844
|
5307 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5308 |
msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
|
5309 |
|
5310 |
+
#: src/udaddons/options.php:508
|
5311 |
msgid "Manage Addons"
|
5312 |
msgstr "ادارة الأضافات"
|
5313 |
|
5314 |
+
#: src/udaddons/options.php:486, src/udaddons/options.php:486
|
5315 |
msgid "Buy It"
|
5316 |
msgstr "شراء"
|
5317 |
|
5318 |
+
#: src/udaddons/options.php:485
|
5319 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5320 |
msgstr "الحصول علية من متجر UpdraftPlus.Com"
|
5321 |
|
5322 |
+
#: src/udaddons/options.php:479, src/udaddons/options.php:481
|
5323 |
msgid "activate it on this site"
|
5324 |
msgstr "تنشيطة على هذا الموقع"
|
5325 |
|
5326 |
+
#: src/udaddons/options.php:481
|
5327 |
msgid "You have an inactive purchase"
|
5328 |
msgstr "لديك شراء غير فعال"
|
5329 |
|
5351 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5352 |
msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
|
5353 |
|
5354 |
+
#: src/udaddons/options.php:296
|
5355 |
msgid "An unknown response was received. Response was:"
|
5356 |
msgstr "تم تلقى رد غير معروف. الرد هو:"
|
5357 |
|
5358 |
+
#: src/udaddons/options.php:295
|
5359 |
msgid "Claim not granted - your account login details were wrong"
|
5360 |
msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
|
5361 |
|
5362 |
+
#: src/udaddons/options.php:293
|
5363 |
msgid "Please wait whilst we make the claim..."
|
5364 |
msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
|
5365 |
|
5366 |
+
#: src/udaddons/options.php:247
|
5367 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5368 |
msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
|
5369 |
|
5370 |
+
#: src/udaddons/options.php:240
|
5371 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5372 |
msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
|
5373 |
|
5374 |
+
#: src/udaddons/options.php:236
|
5375 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5376 |
msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
|
5377 |
|
5378 |
+
#: src/udaddons/options.php:235
|
5379 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5380 |
msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
|
5381 |
|
5382 |
+
#: src/admin.php:2872
|
5383 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5384 |
msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
|
5385 |
|
5386 |
+
#: src/admin.php:2948
|
5387 |
msgid "Forgotten your details?"
|
5388 |
msgstr "هل نسيت التفاصيل الخاصة بك؟"
|
5389 |
|
5390 |
+
#: src/admin.php:2861
|
5391 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5392 |
msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
|
5393 |
|
5394 |
+
#: src/admin.php:2927
|
5395 |
msgid "Connect with your UpdraftPlus.Com account"
|
5396 |
msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
|
5397 |
|
5423 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5424 |
msgstr "حتى الأن انت غير متصل بحسابك فى UpdraftPlus.Com, لتتمكن من استخدام الأضافات اللتى قمت بشرائها."
|
5425 |
|
5426 |
+
#: src/addons/moredatabase.php:313,
|
5427 |
#: src/includes/class-updraftplus-encryption.php:148
|
5428 |
msgid "Without it, encryption will be a lot slower."
|
5429 |
msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
|
5430 |
|
5431 |
+
#: src/addons/moredatabase.php:313,
|
5432 |
#: src/includes/class-updraftplus-encryption.php:148
|
5433 |
msgid "Your web-server does not have the %s module installed."
|
5434 |
msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
|
5479 |
msgid "You can send a backup to more than one destination with an add-on."
|
5480 |
msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
|
5481 |
|
5482 |
+
#: src/admin.php:3414
|
5483 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5484 |
msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
|
5485 |
|
5486 |
+
#: src/admin.php:3281
|
5487 |
msgid "(%s%%, file %s of %s)"
|
5488 |
msgstr "(%s%%, ملف %s من%s)"
|
5489 |
|
5524 |
msgid "%s settings test result:"
|
5525 |
msgstr "اعدادات نتيجة اختبار %s"
|
5526 |
|
5527 |
+
#: src/admin.php:4138, src/admin.php:4140
|
5528 |
msgid "(Not finished)"
|
5529 |
msgstr "(غير منتهي)"
|
5530 |
|
5531 |
+
#: src/admin.php:4140
|
5532 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5533 |
msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
|
5534 |
|
5540 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5541 |
msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
|
5542 |
|
5543 |
+
#: src/admin.php:3382
|
5544 |
msgid "Job ID: %s"
|
5545 |
msgstr "رقم الوظيفة: %s"
|
5546 |
|
5547 |
+
#: src/admin.php:3362
|
5548 |
msgid "last activity: %ss ago"
|
5549 |
msgstr "آخر نشاط: منذ %ss"
|
5550 |
|
5551 |
+
#: src/admin.php:3361
|
5552 |
msgid "next resumption: %d (after %ss)"
|
5553 |
msgstr "الاستئناف التالي: %d (بعد %ss)"
|
5554 |
|
5555 |
+
#: src/admin.php:3344, src/central/bootstrap.php:444,
|
5556 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5557 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5558 |
msgid "Unknown"
|
5559 |
msgstr "غير معروف"
|
5560 |
|
5561 |
+
#: src/admin.php:3295
|
5562 |
msgid "Backup finished"
|
5563 |
msgstr "الانتهاء من النسخ الاحتياطي"
|
5564 |
|
5565 |
+
#: src/admin.php:3290
|
5566 |
msgid "Waiting until scheduled time to retry because of errors"
|
5567 |
msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
|
5568 |
|
5569 |
+
#: src/admin.php:3286
|
5570 |
msgid "Pruning old backup sets"
|
5571 |
msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
|
5572 |
|
5573 |
+
#: src/admin.php:3273
|
5574 |
msgid "Uploading files to remote storage"
|
5575 |
msgstr "تحميل الملفات للمخزن البعيد"
|
5576 |
|
5577 |
+
#: src/admin.php:3342
|
5578 |
msgid "Encrypted database"
|
5579 |
msgstr "قاعدة بيانات مشفرة"
|
5580 |
|
5581 |
+
#: src/admin.php:3334
|
5582 |
msgid "Encrypting database"
|
5583 |
msgstr "تشفير قاعدة البيانات"
|
5584 |
|
5585 |
+
#: src/admin.php:3308
|
5586 |
msgid "Created database backup"
|
5587 |
msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
|
5588 |
|
5589 |
+
#: src/admin.php:3321
|
5590 |
msgid "table: %s"
|
5591 |
msgstr "الجدول: %s"
|
5592 |
|
5593 |
+
#: src/admin.php:3319
|
5594 |
msgid "Creating database backup"
|
5595 |
msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
|
5596 |
|
5597 |
+
#: src/admin.php:3264
|
5598 |
msgid "Created file backup zips"
|
5599 |
msgstr "تم انشاء ملف النسخ الاحتياطى zips"
|
5600 |
|
5601 |
+
#: src/admin.php:3251
|
5602 |
msgid "Creating file backup zips"
|
5603 |
msgstr "انشاء ملف النسخ الاحتياطى zips"
|
5604 |
|
5605 |
+
#: src/admin.php:3246
|
5606 |
msgid "Backup begun"
|
5607 |
msgstr "بدأ النسخ الاحتياطى"
|
5608 |
|
5609 |
+
#: src/admin.php:1149
|
5610 |
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."
|
5611 |
msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
|
5612 |
|
5622 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5623 |
msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
|
5624 |
|
5625 |
+
#: src/class-updraftplus.php:3055
|
5626 |
msgid "The backup has not finished; a resumption is scheduled"
|
5627 |
msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
|
5628 |
|
5629 |
+
#: src/class-updraftplus.php:2076
|
5630 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5631 |
msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
|
5632 |
|
5635 |
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)."
|
5636 |
msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
|
5637 |
|
5638 |
+
#: src/admin.php:2636
|
5639 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5640 |
msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
|
5641 |
|
5688 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5689 |
msgstr "النسخ الاحتياطي تلقائيا (حسب الحاجة) للملحقات, الثيمات و قاعدة بيانات وردبريس مع UpdraftPlus قبل التحديث"
|
5690 |
|
5691 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5692 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5693 |
msgstr "اذا لم تكن متأكدا يجب عليك التوقف; والأ من المحتمل تدمير نسخة الورد بريس الخاصة بك"
|
5694 |
|
5695 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5696 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5697 |
msgstr "هذة تبدو كأنها نسخة احتياطية اساسية صالحة للوردبريس - الملف %s كان مفقود."
|
5698 |
|
5699 |
+
#: src/addons/morefiles.php:190
|
5700 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5701 |
msgstr "غير قادر على فتح ملف مضغوط (%s) - لا يمكن القيام بالفحص للتحقق من سلامتة."
|
5702 |
|
5703 |
+
#: src/addons/morefiles.php:180
|
5704 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5705 |
msgstr "غير قادر على قراءة الملف المضغوط (%s) - لم يمكن فحصه للتأكد من سلامتة."
|
5706 |
|
5715 |
msgid "Support"
|
5716 |
msgstr "الدعم"
|
5717 |
|
5718 |
+
#: src/class-updraftplus.php:4370
|
5719 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5720 |
msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
|
5721 |
|
5722 |
+
#: src/class-updraftplus.php:4362
|
5723 |
msgid "This database backup is missing core WordPress tables: %s"
|
5724 |
msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
|
5725 |
|
5726 |
+
#: src/class-updraftplus.php:4108
|
5727 |
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."
|
5728 |
msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
|
5729 |
|
5730 |
+
#: src/class-updraftplus.php:4107, src/class-updraftplus.php:4114
|
5731 |
msgid "%s version: %s"
|
5732 |
msgstr "%s النسخة: %s"
|
5733 |
|
5734 |
+
#: src/class-updraftplus.php:3983
|
5735 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
5736 |
msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
|
5737 |
|
5738 |
+
#: src/addons/autobackup.php:1067, src/admin.php:974,
|
5739 |
#: src/includes/updraftplus-notices.php:171
|
5740 |
msgid "Be safe with an automatic backup"
|
5741 |
msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
|
5742 |
|
5743 |
+
#: src/admin.php:2589
|
5744 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
5745 |
msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
|
5746 |
|
5788 |
msgid "Delete from your web server"
|
5789 |
msgstr "حذف من خادم الويب الخاص بك"
|
5790 |
|
5791 |
+
#: src/admin.php:4110
|
5792 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
5793 |
msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
|
5794 |
|
5795 |
+
#: src/admin.php:4107
|
5796 |
msgid "(%d archive(s) in set)."
|
5797 |
msgstr "(%d الأرشيف(s) in set)."
|
5798 |
|
5800 |
msgid "Split archives every:"
|
5801 |
msgstr "تقسيم كل ارشيف:"
|
5802 |
|
5803 |
+
#: src/addons/moredatabase.php:273
|
5804 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
5805 |
msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
|
5806 |
|
5812 |
msgid "Error: the server sent an empty response."
|
5813 |
msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
|
5814 |
|
5815 |
+
#: src/admin.php:2315
|
5816 |
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?"
|
5817 |
msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
|
5818 |
|
5819 |
+
#: src/includes/class-wpadmin-commands.php:238
|
5820 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
5821 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, لكن مع بعض الأخطاء. سوف تحتاج الى الألغاء وتصحيح اى مشاكل قبل اعادة المحاولة."
|
5822 |
|
5823 |
+
#: src/includes/class-wpadmin-commands.php:236
|
5824 |
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."
|
5825 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح, ولكن مع بعض التحذيرات. اذا كان كل شئ على مايرام, اضغط على استعادة مرة اخرى للأستمرار. غير ذلك, قم بالألغاء وتصحيح اى مشاكل اولا."
|
5826 |
|
5827 |
+
#: src/includes/class-wpadmin-commands.php:234
|
5828 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
5829 |
msgstr "تمت معالجة ملفات الأرشيف الأحتياطية بنجاح. الأن اضغط استعادة مرة اخرى للأستمرار."
|
5830 |
|
5857 |
msgid "Moving unpacked backup into place..."
|
5858 |
msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
|
5859 |
|
5860 |
+
#: src/backup.php:3097, src/backup.php:3380
|
5861 |
msgid "Failed to open the zip file (%s) - %s"
|
5862 |
msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
|
5863 |
|
5864 |
+
#: src/addons/morefiles.php:168
|
5865 |
msgid "WordPress root directory server path: %s"
|
5866 |
msgstr "مسار جذر الوردبريس فى الخادم: %s"
|
5867 |
|
5886 |
msgid "Looking for %s archive: file name: %s"
|
5887 |
msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
|
5888 |
|
5889 |
+
#: src/addons/wp-cli.php:784, src/admin.php:4568
|
5890 |
msgid "Final checks"
|
5891 |
msgstr "الفحوصات النهائية"
|
5892 |
|
5898 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
5899 |
msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
|
5900 |
|
5901 |
+
#: src/admin.php:3815
|
5902 |
msgid "Your wp-content directory server path: %s"
|
5903 |
msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
|
5904 |
|
5919 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
5920 |
msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
|
5921 |
|
5922 |
+
#: src/class-updraftplus.php:3991
|
5923 |
msgid "Failed to open database file."
|
5924 |
msgstr "فشل فى فتح ملف قاعدة البيانات."
|
5925 |
|
5926 |
+
#: src/admin.php:5152
|
5927 |
msgid "Known backups (raw)"
|
5928 |
msgstr "النسخ الأحتياطى المعروفة (الخام)"
|
5929 |
|
5941 |
|
5942 |
#: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
|
5943 |
#: src/addons/migrator.php:493, src/addons/migrator.php:496,
|
5944 |
+
#: src/admin.php:1149, src/admin.php:2594, src/backup.php:3431,
|
5945 |
+
#: src/class-updraftplus.php:4230, src/class-updraftplus.php:4230,
|
5946 |
#: src/updraftplus.php:157
|
5947 |
msgid "Go here for more information."
|
5948 |
msgstr "اذهب هنا لمزيد من المعلومات."
|
5951 |
msgid "Some files are still downloading or being processed - please wait."
|
5952 |
msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
|
5953 |
|
5954 |
+
#: src/class-updraftplus.php:4078, src/class-updraftplus.php:4098
|
5955 |
msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
5956 |
msgstr ""
|
5957 |
|
5958 |
+
#: src/addons/fixtime.php:571
|
5959 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5960 |
msgstr "المنطقة الزمنية المستخدمة هى من اعدادات الورد بريس الخاصة بك, في إعدادات -> عام."
|
5961 |
|
5962 |
+
#: src/addons/fixtime.php:571
|
5963 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5964 |
msgstr "ادخل فى صيغة HH:MM (مثل 14:22)."
|
5965 |
|
6003 |
msgid "%s error - failed to upload file"
|
6004 |
msgstr "خطأ %s - فشل فى ارسال الملف"
|
6005 |
|
6006 |
+
#: src/class-updraftplus.php:1254, src/methods/cloudfiles.php:211
|
6007 |
msgid "%s error - failed to re-assemble chunks"
|
6008 |
msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
|
6009 |
|
6018 |
msgstr "المصادقة فشلت %s"
|
6019 |
|
6020 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
|
6021 |
+
#: src/admin.php:2286, src/admin.php:2307, src/admin.php:2315,
|
6022 |
+
#: src/class-updraftplus.php:996, src/class-updraftplus.php:1002,
|
6023 |
+
#: src/class-updraftplus.php:3964, src/class-updraftplus.php:3966,
|
6024 |
+
#: src/class-updraftplus.php:4131, src/class-updraftplus.php:4138,
|
6025 |
+
#: src/class-updraftplus.php:4209, src/methods/googledrive.php:395,
|
6026 |
#: src/methods/s3.php:341
|
6027 |
msgid "Error: %s"
|
6028 |
msgstr "خطأ: %s"
|
6029 |
|
6030 |
+
#: src/admin.php:3734
|
6031 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
6032 |
msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
|
6033 |
|
6034 |
+
#: src/admin.php:3732
|
6035 |
msgid "Backup directory specified does <b>not</b> exist."
|
6036 |
msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
|
6037 |
|
6038 |
+
#: src/admin.php:3396, src/admin.php:3683
|
6039 |
msgid "Warning: %s"
|
6040 |
msgstr "تحذير: %s"
|
6041 |
|
6042 |
+
#: src/backup.php:3123
|
6043 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
6044 |
msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
|
6045 |
|
6046 |
+
#: src/backup.php:2418
|
6047 |
msgid "%s: unreadable file - could not be backed up"
|
6048 |
msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
|
6049 |
|
6051 |
msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
|
6052 |
msgstr "الجدول %s بة عدد كبير من الصفوف (%s) - نأمل ان شركة الأستضافة الخاصة بك تعطيك ما يكفى من الموارد لتفريغ هذا الجدول من النسخة الأحتياطة."
|
6053 |
|
6054 |
+
#: src/backup.php:1859
|
6055 |
msgid "An error occurred whilst closing the final database file"
|
6056 |
msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
|
6057 |
|
6059 |
msgid "Warnings encountered:"
|
6060 |
msgstr "مصادفة تحذيرات:"
|
6061 |
|
6062 |
+
#: src/class-updraftplus.php:3039
|
6063 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
6064 |
msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
|
6065 |
|
6066 |
+
#: src/class-updraftplus.php:873
|
6067 |
msgid "Your free disk space is very low - only %s Mb remain"
|
6068 |
msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
|
6069 |
|
6115 |
msgid "Please supply the requested information, and then continue."
|
6116 |
msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
|
6117 |
|
6118 |
+
#: src/class-updraftplus.php:4149, src/restorer.php:2233
|
6119 |
msgid "Site information:"
|
6120 |
msgstr "معلومات عن الموقع:"
|
6121 |
|
6123 |
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."
|
6124 |
msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
|
6125 |
|
6126 |
+
#: src/admin.php:2589, src/class-updraftplus.php:4142, src/restorer.php:2647
|
6127 |
msgid "Warning:"
|
6128 |
msgstr "تحذير:"
|
6129 |
|
6130 |
+
#: src/class-updraftplus.php:4131, src/class-updraftplus.php:4134,
|
6131 |
#: src/restorer.php:530
|
6132 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
6133 |
msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
|
6136 |
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."
|
6137 |
msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
|
6138 |
|
6139 |
+
#: src/addons/azure.php:601, src/admin.php:3907,
|
6140 |
#: src/methods/updraftvault.php:306
|
6141 |
msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
6142 |
msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
|
6152 |
msgid "Unexpected response:"
|
6153 |
msgstr "استجابة غير متوقعة:"
|
6154 |
|
6155 |
+
#: src/addons/reporting.php:523, src/admin.php:796
|
6156 |
msgid "To send to more than one address, separate each address with a comma."
|
6157 |
msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
|
6158 |
|
6180 |
msgid "Also delete from remote storage"
|
6181 |
msgstr "حذف ايضاً من التخزين البعيد"
|
6182 |
|
6183 |
+
#: src/admin.php:3085
|
6184 |
msgid "Latest UpdraftPlus.com news:"
|
6185 |
msgstr "اخر اخبار UpdraftPlus.com:"
|
6186 |
|
6187 |
#: src/templates/wp-admin/settings/header.php:11,
|
6188 |
+
#: src/templates/wp-admin/settings/tab-addons.php:47,
|
6189 |
+
#: src/templates/wp-admin/settings/tab-addons.php:68,
|
6190 |
+
#: src/templates/wp-admin/settings/tab-addons.php:81,
|
6191 |
+
#: src/templates/wp-admin/settings/tab-addons.php:94,
|
6192 |
+
#: src/templates/wp-admin/settings/tab-addons.php:107,
|
6193 |
+
#: src/templates/wp-admin/settings/tab-addons.php:120,
|
6194 |
+
#: src/templates/wp-admin/settings/tab-addons.php:133,
|
6195 |
+
#: src/templates/wp-admin/settings/tab-addons.php:146,
|
6196 |
+
#: src/templates/wp-admin/settings/tab-addons.php:159,
|
6197 |
+
#: src/templates/wp-admin/settings/tab-addons.php:172,
|
6198 |
+
#: src/templates/wp-admin/settings/tab-addons.php:185,
|
6199 |
+
#: src/templates/wp-admin/settings/tab-addons.php:198,
|
6200 |
+
#: src/templates/wp-admin/settings/tab-addons.php:211,
|
6201 |
+
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6202 |
+
#: src/templates/wp-admin/settings/tab-addons.php:237,
|
6203 |
+
#: src/templates/wp-admin/settings/tab-addons.php:254
|
6204 |
msgid "Premium"
|
6205 |
msgstr "مميز"
|
6206 |
|
6208 |
msgid "News"
|
6209 |
msgstr "اخبار"
|
6210 |
|
6211 |
+
#: src/admin.php:1693, src/includes/class-wpadmin-commands.php:506
|
6212 |
msgid "Backup set not found"
|
6213 |
msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
|
6214 |
|
6239 |
msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
|
6240 |
msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
|
6241 |
|
6242 |
+
#: src/admin.php:1165
|
6243 |
msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
|
6244 |
msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
|
6245 |
|
6246 |
+
#: src/admin.php:1165
|
6247 |
msgid "Notice"
|
6248 |
msgstr "لاحظ"
|
6249 |
|
6349 |
msgid "Multisite Install"
|
6350 |
msgstr "تثبيت الموقع المتعدد"
|
6351 |
|
6352 |
+
#: src/addons/fixtime.php:571
|
6353 |
msgid "starting from next time it is"
|
6354 |
msgstr "ابتداء من المرة القادمة انها"
|
6355 |
|
6377 |
msgid "Directory path"
|
6378 |
msgstr "مسار الدليل"
|
6379 |
|
6380 |
+
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
|
6381 |
+
#: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2943,
|
6382 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
6383 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
6384 |
msgid "Password"
|
6388 |
msgid "Port"
|
6389 |
msgstr "المنفذ"
|
6390 |
|
6391 |
+
#: src/addons/moredatabase.php:239, src/addons/sftp.php:438,
|
6392 |
#: src/addons/webdav.php:199
|
6393 |
msgid "Host"
|
6394 |
msgstr "الاستضافة"
|
6409 |
msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
|
6410 |
msgstr "FTP مشفرة متاح، وسيجرب أولا تلقائيا (قبل أن نتراجع إلى النسخة الغيرمشفرة إذا لم ننجح)، إلا إذا كنت تعطيله باستخدام خيارات المتقدمة. زر 'اختبار دخول FTP ' سيخبركم بنوع الإتصال المستخدم."
|
6411 |
|
6412 |
+
#: src/addons/morefiles.php:705
|
6413 |
msgid "No backup of %s directories: there was nothing found to back up"
|
6414 |
msgstr "لا توجد نسخ احتياطية من المجلدات %s : لم نجد أي شيء لنعمل له نسخة احتياطية"
|
6415 |
|
6416 |
+
#: src/addons/morefiles.php:282
|
6417 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
6418 |
msgstr ""
|
6419 |
|
6420 |
+
#: src/addons/morefiles.php:280
|
6421 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
6422 |
msgstr "إذا لم تكن متأكدا ما هو هذا الخيار، إذا انت حتما لا ترغب فيه، ويجب عليك إيقاف تشغيله."
|
6423 |
|
6424 |
+
#: src/addons/morefiles.php:259
|
6425 |
msgid "More Files"
|
6426 |
msgstr "ملفات أخرى"
|
6427 |
|
6428 |
+
#: src/addons/morefiles.php:167
|
6429 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
6430 |
msgstr "أساسيات ووردبريس (بما في ذلك أية إضافات لدليل ووردبريس الخاص بك)"
|
6431 |
|
6432 |
+
#: src/addons/morefiles.php:160
|
6433 |
msgid "The above files comprise everything in a WordPress installation."
|
6434 |
msgstr "الملفات بالأعلى تشمل جميع ملفات تنصيب الووردبريس"
|
6435 |
|
6436 |
+
#: src/addons/morefiles.php:141
|
6437 |
msgid "Over-write wp-config.php"
|
6438 |
msgstr "إعادة كتابة wp-config.php"
|
6439 |
|
6440 |
+
#: src/addons/morefiles.php:137, src/includes/class-wpadmin-commands.php:523
|
6441 |
msgid "WordPress Core"
|
6442 |
msgstr "لب الووردبريس"
|
6443 |
|
6446 |
msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
|
6447 |
|
6448 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
6449 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3462,
|
6450 |
+
#: src/admin.php:3498, src/admin.php:3508, src/methods/addon-base-v2.php:313,
|
6451 |
#: src/methods/stream-base.php:356
|
6452 |
msgid "Failed"
|
6453 |
msgstr "فشل"
|
6655 |
msgid "Failure: No container details were given."
|
6656 |
msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
|
6657 |
|
6658 |
+
#: src/addons/moredatabase.php:240, src/addons/sftp.php:452,
|
6659 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
6660 |
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
6661 |
msgid "Username"
|
6716 |
msgid "Test %s Settings"
|
6717 |
msgstr "اختبار %s الإعدادات"
|
6718 |
|
6719 |
+
#: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
|
6720 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
6721 |
msgid "Error opening local file: Failed to download"
|
6722 |
msgstr "خطأ في فتح ملف محلي: فشل التحميل"
|
6733 |
msgstr "%s خطأ: فشل في تحميل"
|
6734 |
|
6735 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
6736 |
+
#: src/class-updraftplus.php:1139, src/methods/cloudfiles.php:130,
|
6737 |
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
6738 |
msgid "%s Error: Failed to open local file"
|
6739 |
msgstr "%s خطأ: فشل في فتح ملف محلي"
|
6847 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
6848 |
msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
|
6849 |
|
6850 |
+
#: src/admin.php:3466, src/admin.php:3501, src/admin.php:3505,
|
6851 |
#: src/includes/class-remote-send.php:326,
|
6852 |
#: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
|
6853 |
+
#: src/restorer.php:2888, src/restorer.php:2993
|
6854 |
msgid "OK"
|
6855 |
msgstr "حسنا"
|
6856 |
|
6857 |
+
#: src/restorer.php:2882, src/restorer.php:2957
|
6858 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
6859 |
msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
|
6860 |
|
6861 |
+
#: src/addons/migrator.php:1317, src/restorer.php:2784
|
6862 |
msgid "the database query being run was:"
|
6863 |
msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
6864 |
|
6866 |
msgid "will restore as:"
|
6867 |
msgstr "إستعادة على النحو التالي:"
|
6868 |
|
6869 |
+
#: src/class-updraftplus.php:4120, src/restorer.php:2215,
|
6870 |
#: src/restorer.php:2304, src/restorer.php:2330
|
6871 |
msgid "Old table prefix:"
|
6872 |
msgstr "بادئة الجدول القديمة:"
|
6873 |
|
6874 |
#: src/addons/reporting.php:72, src/addons/reporting.php:181,
|
6875 |
+
#: src/backup.php:1135, src/class-updraftplus.php:4047
|
6876 |
msgid "Backup of:"
|
6877 |
msgstr "نسخة احتياطية لـ:"
|
6878 |
|
6960 |
msgid "Archive is expected to be size:"
|
6961 |
msgstr "من المتوقع أن يكون حجم الأرشيف:"
|
6962 |
|
6963 |
+
#: src/admin.php:4516
|
6964 |
msgid "If making a request for support, please include this information:"
|
6965 |
msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
|
6966 |
|
6967 |
+
#: src/admin.php:4515
|
6968 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6969 |
msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
|
6970 |
|
6971 |
+
#: src/addons/wp-cli.php:647, src/admin.php:4494
|
6972 |
msgid "UpdraftPlus Restoration: Progress"
|
6973 |
msgstr "استرجاع UpdraftPlus: تقدم"
|
6974 |
|
6975 |
+
#: src/admin.php:4486
|
6976 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6977 |
msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
|
6978 |
|
6979 |
+
#: src/admin.php:4168
|
6980 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6981 |
msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
|
6982 |
|
6983 |
+
#: src/admin.php:4266
|
6984 |
msgid "Delete this backup set"
|
6985 |
msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
|
6986 |
|
6987 |
+
#: src/admin.php:3919
|
6988 |
msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
|
6989 |
msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
|
6990 |
|
6991 |
+
#: src/admin.php:3916
|
6992 |
msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
|
6993 |
msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
|
6994 |
|
6995 |
+
#: src/admin.php:3914
|
6996 |
msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
|
6997 |
msgstr ""
|
6998 |
|
7033 |
msgid "Use the server's SSL certificates"
|
7034 |
msgstr "استخدام شهادات SSL للملقم"
|
7035 |
|
7036 |
+
#: src/admin.php:3736
|
7037 |
msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
|
7038 |
msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
|
7039 |
|
7040 |
+
#: src/admin.php:3736
|
7041 |
msgid "or, to reset this option"
|
7042 |
msgstr "أو، لإعادة هذا الخيار"
|
7043 |
|
7044 |
+
#: src/admin.php:3736
|
7045 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
+
#: src/admin.php:3728
|
7049 |
msgid "Backup directory specified is writable, which is good."
|
7050 |
msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
|
7051 |
|
7081 |
msgid "Requesting start of backup..."
|
7082 |
msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
|
7083 |
|
7084 |
+
#: src/addons/morefiles.php:311, src/admin.php:841
|
7085 |
msgid "Cancel"
|
7086 |
msgstr "إلغاء"
|
7087 |
|
7088 |
+
#: src/addons/incremental.php:235, src/addons/reporting.php:245,
|
7089 |
+
#: src/admin.php:4002
|
7090 |
msgid "None"
|
7091 |
msgstr "لا شيء"
|
7092 |
|
7102 |
msgid "Database encryption phrase"
|
7103 |
msgstr "عبارة تشفير قاعدة البيانات"
|
7104 |
|
7105 |
+
#: src/admin.php:2933, src/templates/wp-admin/settings/form-contents.php:255,
|
7106 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
7107 |
msgid "Email"
|
7108 |
msgstr "البريد الإلكتروني"
|
7111 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
7112 |
msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
|
7113 |
|
7114 |
+
#: src/addons/morefiles.php:473
|
7115 |
msgid "Exclude these:"
|
7116 |
msgstr "استبعاد هذه:"
|
7117 |
|
7118 |
+
#: src/admin.php:3815
|
7119 |
msgid "Any other directories found inside wp-content"
|
7120 |
msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
|
7121 |
|
7131 |
msgid "To fix the time at which a backup should take place,"
|
7132 |
msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
|
7133 |
|
7134 |
+
#: src/addons/incremental.php:244, src/admin.php:3722
|
7135 |
msgid "Monthly"
|
7136 |
msgstr "شهريا"
|
7137 |
|
7138 |
+
#: src/addons/incremental.php:243, src/admin.php:3721
|
7139 |
msgid "Fortnightly"
|
7140 |
msgstr "نصف شهري"
|
7141 |
|
7142 |
+
#: src/addons/incremental.php:242, src/admin.php:3720
|
7143 |
msgid "Weekly"
|
7144 |
msgstr "أسبوعيا"
|
7145 |
|
7146 |
+
#: src/addons/incremental.php:241, src/admin.php:3719
|
7147 |
msgid "Daily"
|
7148 |
msgstr "يوميا"
|
7149 |
|
7150 |
+
#: src/admin.php:849, src/admin.php:3697
|
7151 |
msgid "Download log file"
|
7152 |
msgstr "تحميل ملف السجل"
|
7153 |
|
7154 |
+
#: src/admin.php:3569
|
7155 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
7156 |
msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
|
7157 |
|
7158 |
+
#: src/admin.php:3564
|
7159 |
msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
|
7160 |
msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
|
7161 |
|
7162 |
+
#: src/admin.php:3550
|
7163 |
msgid "The request to the filesystem to create the directory failed."
|
7164 |
msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
|
7165 |
|
7166 |
+
#: src/admin.php:842, src/admin.php:3459, src/admin.php:3493,
|
7167 |
+
#: src/admin.php:4266, src/includes/class-remote-send.php:543,
|
7168 |
#: src/templates/wp-admin/settings/existing-backups-table.php:155,
|
7169 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
7170 |
msgid "Delete"
|
7171 |
msgstr "حذف"
|
7172 |
|
7173 |
+
#: src/admin.php:3413
|
7174 |
msgid "show log"
|
7175 |
msgstr "عرض السجل"
|
7176 |
|
7231 |
msgid "Yes"
|
7232 |
msgstr "نعم"
|
7233 |
|
7234 |
+
#: src/admin.php:5364, src/admin.php:5368,
|
7235 |
#: src/templates/wp-admin/advanced/site-info.php:45,
|
7236 |
#: src/templates/wp-admin/advanced/site-info.php:51,
|
7237 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
7271 |
msgid "Do read this helpful article of useful things to know before restoring."
|
7272 |
msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
|
7273 |
|
7274 |
+
#: src/class-updraftplus.php:4081
|
7275 |
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"
|
7276 |
msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
|
7277 |
|
7278 |
+
#: src/addons/morefiles.php:137,
|
7279 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
|
7280 |
msgid "%s restoration options:"
|
7281 |
msgstr "%s خيارات الإستعادة:"
|
7386 |
msgid "More tasks:"
|
7387 |
msgstr "المزيد من المهام:"
|
7388 |
|
7389 |
+
#: src/admin.php:3112
|
7390 |
msgid "Download most recently modified log file"
|
7391 |
msgstr "تحميل ملف السجل المعدل مؤخرا"
|
7392 |
|
7395 |
msgstr "(لا شيء حتى الآن تم تسجيله)"
|
7396 |
|
7397 |
#: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
|
7398 |
+
#: src/admin.php:3068, src/admin.php:3074,
|
7399 |
#: src/templates/wp-admin/settings/take-backup.php:64
|
7400 |
msgid "Last log message"
|
7401 |
msgstr "رسالة السجل الأخيرة"
|
7402 |
|
7403 |
#: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
|
7404 |
+
#: src/admin.php:4168
|
7405 |
msgid "Restore"
|
7406 |
msgstr "الإستعادة"
|
7407 |
|
7413 |
msgid "Time now"
|
7414 |
msgstr "الساعة الآن"
|
7415 |
|
7416 |
+
#: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
|
7417 |
+
#: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:3977,
|
7418 |
+
#: src/admin.php:4030, src/includes/class-remote-send.php:330,
|
7419 |
#: src/includes/class-wpadmin-commands.php:157,
|
7420 |
+
#: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
|
7421 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
|
7422 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75,
|
7423 |
#: src/templates/wp-admin/settings/take-backup.php:33
|
7424 |
msgid "Database"
|
7425 |
msgstr "قاعدة بيانات"
|
7426 |
|
7427 |
+
#: src/admin.php:332, src/admin.php:5159,
|
7428 |
#: src/templates/wp-admin/settings/take-backup.php:23
|
7429 |
msgid "Files"
|
7430 |
msgstr "ملفات"
|
7450 |
msgid "JavaScript warning"
|
7451 |
msgstr "تحذير جافا سكريبت"
|
7452 |
|
7453 |
+
#: src/admin.php:826, src/admin.php:3149
|
7454 |
msgid "Delete Old Directories"
|
7455 |
msgstr "حذف الدلائل القديمة"
|
7456 |
|
7457 |
+
#: src/admin.php:2636
|
7458 |
msgid "Current limit is:"
|
7459 |
msgstr "الحد الحالي هو:"
|
7460 |
|
7461 |
+
#: src/admin.php:2611
|
7462 |
msgid "Your backup has been restored."
|
7463 |
msgstr "تمت استعادة النسخ الاحتياطي."
|
7464 |
|
7474 |
msgid "UpdraftPlus.Com"
|
7475 |
msgstr ""
|
7476 |
|
7477 |
+
#: src/admin.php:5051
|
7478 |
msgid "Your settings have been wiped."
|
7479 |
msgstr "تم القضاء على الإعدادات الخاصة بك."
|
7480 |
|
7481 |
+
#: src/admin.php:2571
|
7482 |
msgid "Backup directory successfully created."
|
7483 |
msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
|
7484 |
|
7485 |
+
#: src/admin.php:2564
|
7486 |
msgid "Backup directory could not be created"
|
7487 |
msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
|
7488 |
|
7489 |
+
#: src/admin.php:3429
|
7490 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
7491 |
msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
|
7492 |
|
7493 |
+
#: src/admin.php:3427
|
7494 |
msgid "Old directories successfully removed."
|
7495 |
msgstr "تم إزالة الدلائل القديمة بنجاح."
|
7496 |
|
7497 |
+
#: src/admin.php:3424, src/admin.php:3424
|
7498 |
msgid "Remove old directories"
|
7499 |
msgstr "إزالة الدلائل القديمة"
|
7500 |
|
7501 |
#: src/addons/migrator.php:340, src/addons/migrator.php:355,
|
7502 |
+
#: src/admin.php:2512, src/admin.php:2522, src/admin.php:2531,
|
7503 |
+
#: src/admin.php:2573, src/admin.php:3431
|
7504 |
msgid "Return to UpdraftPlus Configuration"
|
7505 |
msgstr "العودة إلى اعدادات UpdraftPlus"
|
7506 |
|
7507 |
+
#: src/admin.php:819, src/admin.php:2512, src/admin.php:2522,
|
7508 |
+
#: src/admin.php:2531, src/admin.php:2573, src/admin.php:3431,
|
7509 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
7510 |
#: src/templates/wp-admin/settings/existing-backups-table.php:139
|
7511 |
msgid "Actions"
|
7512 |
msgstr "الإجراءات"
|
7513 |
|
7514 |
+
#: src/admin.php:2407
|
7515 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
7516 |
msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
|
7517 |
|
7518 |
+
#: src/admin.php:2307
|
7519 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
7520 |
msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
|
7521 |
|
7522 |
+
#: src/admin.php:2203
|
7523 |
msgid "No local copy present."
|
7524 |
msgstr "لا نسخة محلية متوفرة."
|
7525 |
|
7526 |
+
#: src/admin.php:2200
|
7527 |
msgid "Download in progress"
|
7528 |
msgstr "التحميل في تقدم"
|
7529 |
|
7530 |
+
#: src/admin.php:818, src/admin.php:2189
|
7531 |
msgid "File ready."
|
7532 |
msgstr "ملف جاهز."
|
7533 |
|
7534 |
+
#: src/admin.php:2170
|
7535 |
msgid "Download failed"
|
7536 |
msgstr "فشل تحميل"
|
7537 |
|
7538 |
#: src/addons/wp-cli.php:518, src/admin.php:816,
|
7539 |
+
#: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
|
7540 |
#: src/includes/class-filesystem-functions.php:368,
|
7541 |
#: src/includes/class-storage-methods-interface.php:324,
|
7542 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
7543 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
7544 |
+
#: src/methods/stream-base.php:219, src/restorer.php:2884,
|
7545 |
+
#: src/restorer.php:2909, src/restorer.php:2990, src/updraftplus.php:157
|
7546 |
msgid "Error"
|
7547 |
msgstr "خطأ"
|
7548 |
|
7549 |
+
#: src/admin.php:1957
|
7550 |
msgid "Could not find that job - perhaps it has already finished?"
|
7551 |
msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
|
7552 |
|
7553 |
+
#: src/admin.php:1949
|
7554 |
msgid "Job deleted"
|
7555 |
msgstr "وظيفة حذفت"
|
7556 |
|
7557 |
+
#: src/admin.php:2048, src/includes/class-commands.php:833
|
7558 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
7559 |
msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
|
7560 |
|
7562 |
msgid "Nothing yet logged"
|
7563 |
msgstr "لا شيء حتى الآن تم تسجيله"
|
7564 |
|
7565 |
+
#: src/admin.php:1161
|
7566 |
msgid "Please consult this FAQ if you have problems backing up."
|
7567 |
msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
|
7568 |
|
7569 |
+
#: src/admin.php:1161
|
7570 |
msgid "Your website is hosted using the %s web server."
|
7571 |
msgstr "موقعك يستخدم %s من خادم الويب."
|
7572 |
|
7573 |
+
#: src/admin.php:1157
|
7574 |
msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
|
7575 |
msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
|
7576 |
|
7577 |
+
#: src/admin.php:1153
|
7578 |
msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
|
7579 |
msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
|
7580 |
|
7581 |
+
#: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1145,
|
7582 |
+
#: src/admin.php:1149, src/admin.php:1153, src/admin.php:1157,
|
7583 |
+
#: src/admin.php:1161, src/admin.php:1170, src/admin.php:3907,
|
7584 |
+
#: src/admin.php:3914, src/admin.php:3916, src/admin.php:5342,
|
7585 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
7586 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
7587 |
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
7588 |
#: src/methods/updraftvault.php:306,
|
7589 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
7590 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
7591 |
+
#: src/udaddons/updraftplus-addons.php:259
|
7592 |
msgid "Warning"
|
7593 |
msgstr "تحذير"
|
7594 |
|
7595 |
+
#: src/admin.php:1090
|
7596 |
msgid "Add-Ons / Pro Support"
|
7597 |
msgstr "إضافات / الدعم المدفوع"
|
7598 |
|
7599 |
+
#: src/admin.php:677, src/admin.php:1088, src/admin.php:2798
|
7600 |
msgid "Settings"
|
7601 |
msgstr "إعدادات"
|
7602 |
|
7604 |
msgid "Could not create %s zip. Consult the log file for more information."
|
7605 |
msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
|
7606 |
|
7607 |
+
#: src/backup.php:2298
|
7608 |
msgid "Infinite recursion: consult your log for more information"
|
7609 |
msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
|
7610 |
|
7616 |
msgid "Like UpdraftPlus and can spare one minute?"
|
7617 |
msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
|
7618 |
|
7619 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3769,
|
7620 |
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
7621 |
msgid "File not found"
|
7622 |
msgstr "لم يتم العثور على ملف"
|
7625 |
msgid "The decryption key used:"
|
7626 |
msgstr "مفتاح فك التشفير المستخدم:"
|
7627 |
|
7628 |
+
#: src/class-updraftplus.php:3976,
|
7629 |
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
|
7630 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
7631 |
msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
|
7632 |
|
7633 |
+
#: src/class-updraftplus.php:3964,
|
7634 |
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
|
7635 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
7636 |
msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
|
7637 |
|
7638 |
+
#: src/backup.php:2172
|
7639 |
msgid "Could not open the backup file for writing"
|
7640 |
msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
|
7641 |
|
7642 |
+
#: src/class-updraftplus.php:3531
|
7643 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
7644 |
msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
|
7645 |
|
7646 |
+
#: src/class-updraftplus.php:3515
|
7647 |
msgid "Could not read the directory"
|
7648 |
msgstr "لا يمكن قراءة الدليل"
|
7649 |
|
7650 |
+
#: src/admin.php:2249, src/backup.php:1359
|
7651 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
7652 |
msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
|
7653 |
|
7655 |
msgid "WordPress backup is complete"
|
7656 |
msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
|
7657 |
|
7658 |
+
#: src/class-updraftplus.php:3051
|
7659 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
7660 |
msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
|
7661 |
|
7662 |
+
#: src/class-updraftplus.php:3033
|
7663 |
msgid "The backup apparently succeeded and is now complete"
|
7664 |
msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
|
7665 |
|
7666 |
+
#: src/addons/moredatabase.php:388
|
7667 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
7668 |
msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
|
7669 |
|
7670 |
+
#: src/class-updraftplus.php:2733
|
7671 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
7672 |
msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
|
7673 |
|
7674 |
+
#: src/class-updraftplus.php:1850
|
7675 |
msgid "Others"
|
7676 |
msgstr "أخرى"
|
7677 |
|
7678 |
+
#: src/addons/multisite.php:500, src/class-updraftplus.php:1835
|
7679 |
msgid "Uploads"
|
7680 |
msgstr "الملفات المرفوعة"
|
7681 |
|
7682 |
+
#: src/class-updraftplus.php:1834
|
7683 |
msgid "Themes"
|
7684 |
msgstr "تصاميم"
|
7685 |
|
7686 |
+
#: src/class-updraftplus.php:1833
|
7687 |
msgid "Plugins"
|
7688 |
msgstr "الإضافات"
|
7689 |
|
7691 |
msgid "No log files were found."
|
7692 |
msgstr "لا توجد ملفات السجل."
|
7693 |
|
7694 |
+
#: src/admin.php:2119, src/admin.php:2123, src/class-updraftplus.php:618
|
7695 |
msgid "The log file could not be read."
|
7696 |
msgstr "لا يمكن قراءة ملف السجل."
|
7697 |
|
7698 |
+
#: src/admin.php:1190, src/admin.php:1211, src/admin.php:1230,
|
7699 |
#: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
|
7700 |
#: src/class-updraftplus.php:623, src/class-updraftplus.php:628
|
7701 |
msgid "UpdraftPlus notice:"
|
@@ -11,6 +11,52 @@ msgstr ""
|
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
15 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
16 |
msgstr ""
|
@@ -23,7 +69,7 @@ msgstr ""
|
|
23 |
msgid "Your database user does not have permission to drop tables"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
28 |
msgstr ""
|
29 |
|
@@ -191,11 +237,11 @@ msgstr ""
|
|
191 |
msgid "WordPress installed"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: src/admin.php:
|
195 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: src/admin.php:
|
199 |
msgid "Exclude these from"
|
200 |
msgstr ""
|
201 |
|
@@ -235,7 +281,7 @@ msgstr ""
|
|
235 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
239 |
msgid "To create a temporary clone you need credit in your account."
|
240 |
msgstr ""
|
241 |
|
@@ -247,15 +293,15 @@ msgstr ""
|
|
247 |
msgid "failed to upload file to %s (see log file for more)"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/admin.php:
|
251 |
msgid "Dashboard:"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/admin.php:
|
255 |
msgid "Front page:"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/admin.php:
|
259 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
260 |
msgstr ""
|
261 |
|
@@ -267,14 +313,10 @@ msgstr ""
|
|
267 |
msgid "Current clones"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/class-updraftplus.php:
|
271 |
msgid "Your clone will now deploy this data to re-create your site."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/admin.php:942
|
275 |
-
msgid "The backup for the clone has been aborted."
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
#: src/admin.php:941
|
279 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
280 |
msgstr ""
|
@@ -337,70 +379,71 @@ msgstr ""
|
|
337 |
msgid "Account type"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
|
|
341 |
msgid "I accept the UpdraftClone terms and conditions"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
345 |
msgid "Not got an account? Get one by buying some tokens here."
|
346 |
msgstr ""
|
347 |
|
348 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
349 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
350 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
351 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
355 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
359 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
363 |
msgid "Flexible"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
367 |
msgid "Takes just the time needed to create a backup and send it."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
371 |
msgid "Fast"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
375 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
379 |
msgid "Secure"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
383 |
msgid "Runs on capacity from a leading cloud computing provider."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
387 |
msgid "Reliable"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
391 |
msgid "Press the buttons... UpdraftClone does the work."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
395 |
msgid "Easy"
|
396 |
msgstr ""
|
397 |
|
398 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
399 |
-
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test
|
400 |
msgstr ""
|
401 |
|
402 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
403 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
404 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
405 |
msgstr ""
|
406 |
|
@@ -574,11 +617,11 @@ msgstr ""
|
|
574 |
msgid "You can buy more temporary clone tokens here."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: src/admin.php:
|
578 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
582 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
583 |
msgstr ""
|
584 |
|
@@ -590,19 +633,19 @@ msgstr ""
|
|
590 |
msgid "Other great plugins"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: src/admin.php:
|
594 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: src/class-updraftplus.php:
|
598 |
msgid "Choose a default for each table"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: src/admin.php:
|
602 |
msgid "Sending files to remote site"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: src/admin.php:
|
606 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
607 |
msgstr ""
|
608 |
|
@@ -614,7 +657,7 @@ msgstr ""
|
|
614 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: src/admin.php:
|
618 |
msgid "Backup / Restore"
|
619 |
msgstr ""
|
620 |
|
@@ -638,7 +681,7 @@ msgstr ""
|
|
638 |
msgid "No previous backup found to add an increment to."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: src/restorer.php:
|
642 |
msgid "Requested character set (%s) is not present - changing to %s."
|
643 |
msgstr ""
|
644 |
|
@@ -662,7 +705,7 @@ msgstr ""
|
|
662 |
msgid "Refresh connection"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: src/addons/reporting.php:
|
666 |
msgid "Log all messages to syslog"
|
667 |
msgstr ""
|
668 |
|
@@ -690,11 +733,11 @@ msgstr ""
|
|
690 |
msgid "More information here."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: src/admin.php:669, src/admin.php:
|
694 |
msgid "Migrate / Clone"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: src/admin.php:
|
698 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
699 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
700 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
@@ -720,11 +763,11 @@ msgstr ""
|
|
720 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: src/admin.php:
|
724 |
msgid "(current version)"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: src/admin.php:
|
728 |
msgid "press here"
|
729 |
msgstr ""
|
730 |
|
@@ -738,15 +781,15 @@ msgstr ""
|
|
738 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: src/addons/incremental.php:
|
742 |
msgid "Tell me more"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: src/addons/incremental.php:
|
746 |
msgid "And then add an incremental backup"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: src/addons/incremental.php:
|
750 |
msgid "Every hour"
|
751 |
msgstr ""
|
752 |
|
@@ -758,8 +801,9 @@ msgstr ""
|
|
758 |
msgid "Available temporary clone tokens:"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: src/admin.php:
|
762 |
#: src/includes/class-commands.php:949,
|
|
|
763 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
764 |
msgid "Processing"
|
765 |
msgstr ""
|
@@ -776,7 +820,7 @@ msgstr ""
|
|
776 |
msgid "I consent to %s"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: src/admin.php:
|
780 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
781 |
msgid "One Time Password (check your OTP app to get this password)"
|
782 |
msgstr ""
|
@@ -825,7 +869,7 @@ msgstr ""
|
|
825 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: src/admin.php:
|
829 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
830 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
831 |
msgstr[0] ""
|
@@ -928,7 +972,7 @@ msgstr ""
|
|
928 |
msgid "Upload backup"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: src/admin.php:
|
932 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
933 |
msgstr ""
|
934 |
|
@@ -940,19 +984,19 @@ msgstr ""
|
|
940 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: src/admin.php:844, src/admin.php:
|
944 |
msgid "Upload"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: src/addons/reporting.php:
|
948 |
msgid "Only email the database backup"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: src/addons/reporting.php:
|
952 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: src/addons/reporting.php:
|
956 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
957 |
msgstr ""
|
958 |
|
@@ -1066,7 +1110,7 @@ msgstr ""
|
|
1066 |
msgid "Select your incremental restore point"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: src/addons/morefiles.php:
|
1070 |
msgid "(None configured)"
|
1071 |
msgstr ""
|
1072 |
|
@@ -1074,11 +1118,11 @@ msgstr ""
|
|
1074 |
msgid "Ensure you are logged into the correct account before continuing."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: src/admin.php:
|
1078 |
msgid "Remote storage method and instance id are required for authentication."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: src/admin.php:
|
1082 |
msgid "authentication error"
|
1083 |
msgstr ""
|
1084 |
|
@@ -1156,15 +1200,15 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
|
|
1156 |
msgstr[0] ""
|
1157 |
msgstr[1] ""
|
1158 |
|
1159 |
-
#: src/class-updraftplus.php:
|
1160 |
msgid "Your chosen replacement collation"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: src/class-updraftplus.php:
|
1164 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: src/class-updraftplus.php:
|
1168 |
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."
|
1169 |
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."
|
1170 |
msgstr[0] ""
|
@@ -1232,15 +1276,15 @@ msgstr[1] ""
|
|
1232 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: src/class-updraftplus.php:
|
1236 |
msgid "Your chosen character set to use instead:"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: src/class-updraftplus.php:
|
1240 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: src/class-updraftplus.php:
|
1244 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1245 |
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."
|
1246 |
msgstr[0] ""
|
@@ -1330,23 +1374,23 @@ msgstr "Ключ за Акаунта"
|
|
1330 |
msgid "Account ID"
|
1331 |
msgstr "Акаунт ID"
|
1332 |
|
1333 |
-
#: src/class-updraftplus.php:
|
1334 |
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."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: src/class-updraftplus.php:
|
1338 |
msgid "the migrator add-on"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: src/class-updraftplus.php:
|
1342 |
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."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: src/class-updraftplus.php:
|
1346 |
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."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: src/class-updraftplus.php:
|
1350 |
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."
|
1351 |
msgstr ""
|
1352 |
|
@@ -1362,14 +1406,14 @@ msgstr ""
|
|
1362 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: src/backup.php:456, src/backup.php:
|
1366 |
-
#: src/class-updraftplus.php:
|
1367 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1368 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: src/backup.php:450, src/backup.php:
|
1372 |
-
#: src/class-updraftplus.php:
|
1373 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1374 |
msgid "A PHP exception (%s) has occurred: %s"
|
1375 |
msgstr ""
|
@@ -1423,11 +1467,11 @@ msgstr ""
|
|
1423 |
msgid "Instant and secure logon with a wave of your phone."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/admin.php:
|
1427 |
msgid "Value"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/admin.php:
|
1431 |
msgid "Did not know how to delete from this cloud service."
|
1432 |
msgstr ""
|
1433 |
|
@@ -1443,11 +1487,11 @@ msgstr ""
|
|
1443 |
msgid "Cloud Files"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: src/admin.php:
|
1447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: src/admin.php:
|
1451 |
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."
|
1452 |
msgstr ""
|
1453 |
|
@@ -1456,23 +1500,23 @@ msgstr ""
|
|
1456 |
msgid "UpdraftVault"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: src/includes/class-wpadmin-commands.php:
|
1460 |
msgid "archive"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: src/includes/class-wpadmin-commands.php:
|
1464 |
msgid "Extra database"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: src/admin.php:
|
1468 |
msgid "Press here to download or browse"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: src/admin.php:
|
1472 |
msgid "Error: invalid path"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: src/admin.php:
|
1476 |
msgid "An error occurred when fetching storage module options: "
|
1477 |
msgstr ""
|
1478 |
|
@@ -1508,15 +1552,15 @@ msgstr ""
|
|
1508 |
msgid "Skipped tables:"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: src/class-updraftplus.php:
|
1512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: src/admin.php:
|
1516 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: src/admin.php:
|
1520 |
msgid "All WordPress tables will be backed up."
|
1521 |
msgstr ""
|
1522 |
|
@@ -1548,15 +1592,15 @@ msgstr ""
|
|
1548 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: src/addons/moredatabase.php:
|
1552 |
msgid "tables"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: src/addons/moredatabase.php:
|
1556 |
msgid "WordPress database"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: src/addons/moredatabase.php:
|
1560 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1561 |
msgstr ""
|
1562 |
|
@@ -1675,7 +1719,22 @@ msgstr ""
|
|
1675 |
msgid "Installed"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: src/templates/wp-admin/settings/tab-addons.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1679 |
msgid "Free"
|
1680 |
msgstr ""
|
1681 |
|
@@ -1698,28 +1757,28 @@ msgstr ""
|
|
1698 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: src/addons/morefiles.php:
|
1702 |
msgid "Please choose a file or directory"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: src/addons/morefiles.php:
|
1706 |
msgid "Confirm"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: src/addons/morefiles.php:
|
1710 |
msgid "Go up a directory"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: src/addons/morefiles.php:
|
1714 |
msgid "Add directory..."
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: src/addons/morefiles.php:
|
1718 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1719 |
msgid "Edit"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: src/addons/morefiles.php:
|
1723 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1724 |
msgstr ""
|
1725 |
|
@@ -1792,7 +1851,7 @@ msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
|
|
1792 |
msgstr ""
|
1793 |
|
1794 |
#: src/includes/updraftplus-notices.php:238
|
1795 |
-
msgid "Happy New Year - 20% off UpdraftPlus Premium until January
|
1796 |
msgstr ""
|
1797 |
|
1798 |
#: src/includes/updraftplus-notices.php:225
|
@@ -1978,11 +2037,11 @@ msgstr ""
|
|
1978 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: src/admin.php:
|
1982 |
msgid "Remote files deleted:"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: src/admin.php:
|
1986 |
msgid "Local files deleted:"
|
1987 |
msgstr ""
|
1988 |
|
@@ -2038,16 +2097,16 @@ msgstr ""
|
|
2038 |
msgid "Account is not authorized (%s)."
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2042 |
msgid "Your IP address:"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2046 |
-
#: src/udaddons/updraftplus-addons.php:
|
2047 |
msgid "To remove any block, please go here."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:
|
2051 |
msgid "An error response was received; HTTP code:"
|
2052 |
msgstr ""
|
2053 |
|
@@ -2063,11 +2122,11 @@ msgstr ""
|
|
2063 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: src/admin.php:
|
2067 |
msgid "To fix this problem go here."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: src/admin.php:
|
2071 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2072 |
msgstr ""
|
2073 |
|
@@ -2099,7 +2158,7 @@ msgstr ""
|
|
2099 |
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."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: src/udaddons/updraftplus-addons.php:
|
2103 |
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."
|
2104 |
msgstr ""
|
2105 |
|
@@ -2143,11 +2202,11 @@ msgstr ""
|
|
2143 |
msgid "Public key was sent to:"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: src/backup.php:
|
2147 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: src/backup.php:
|
2151 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2152 |
msgstr ""
|
2153 |
|
@@ -2205,8 +2264,8 @@ msgstr ""
|
|
2205 |
msgid "login"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: src/addons/reporting.php:
|
2209 |
-
#: src/addons/reporting.php:
|
2210 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2211 |
msgstr ""
|
2212 |
|
@@ -2214,7 +2273,7 @@ msgstr ""
|
|
2214 |
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."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: src/class-updraftplus.php:
|
2218 |
msgid "Size: %s MB"
|
2219 |
msgstr ""
|
2220 |
|
@@ -2222,7 +2281,7 @@ msgstr ""
|
|
2222 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: src/class-updraftplus.php:
|
2226 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2227 |
msgstr ""
|
2228 |
|
@@ -2328,23 +2387,23 @@ msgstr ""
|
|
2328 |
msgid "UpdraftCentral Connection"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: src/backup.php:1042, src/class-updraftplus.php:
|
2332 |
msgid "The backup was aborted by the user"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: src/admin.php:
|
2336 |
msgid "Your settings have been saved."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: src/admin.php:
|
2340 |
msgid "Total backup size:"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: src/admin.php:
|
2344 |
msgid "stop"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: src/admin.php:903, src/admin.php:
|
2348 |
msgid "The backup has finished running"
|
2349 |
msgstr ""
|
2350 |
|
@@ -2406,19 +2465,19 @@ msgstr ""
|
|
2406 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: src/class-updraftplus.php:
|
2410 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: src/class-updraftplus.php:
|
2414 |
msgid "Please read this link for important information on this process."
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: src/class-updraftplus.php:
|
2418 |
msgid "It will be imported as a new site."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: src/admin.php:
|
2422 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2423 |
msgid "Dismiss"
|
2424 |
msgstr ""
|
@@ -2484,7 +2543,7 @@ msgstr ""
|
|
2484 |
msgid "Call WordPress action:"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: src/admin.php:
|
2488 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2489 |
msgstr ""
|
2490 |
|
@@ -2516,63 +2575,63 @@ msgstr ""
|
|
2516 |
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)."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: src/admin.php:
|
2520 |
msgid "Send this backup to remote storage"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: src/admin.php:
|
2524 |
msgid "Check out UpdraftPlus Vault."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: src/admin.php:
|
2528 |
msgid "Not got any remote storage?"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: src/admin.php:
|
2532 |
msgid "settings"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: src/admin.php:
|
2536 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: src/admin.php:
|
2540 |
msgid "Include any files in the backup"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: src/admin.php:
|
2544 |
msgid "Include the database in the backup"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: src/admin.php:
|
2548 |
msgid "Continue restoration"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: src/admin.php:
|
2552 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: src/admin.php:
|
2556 |
msgid "Unfinished restoration"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: src/admin.php:
|
2560 |
msgid "%s minutes, %s seconds"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: src/admin.php:
|
2564 |
msgid "Backup Contents And Schedule"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: src/admin.php:
|
2568 |
msgid "Premium / Extensions"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: src/admin.php:
|
2572 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: src/addons/morefiles.php:
|
2576 |
msgctxt "(verb)"
|
2577 |
msgid "Download"
|
2578 |
msgstr ""
|
@@ -2585,7 +2644,7 @@ msgstr ""
|
|
2585 |
msgid "Extensions"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: src/admin.php:685, src/admin.php:
|
2589 |
msgid "Advanced Tools"
|
2590 |
msgstr ""
|
2591 |
|
@@ -2704,7 +2763,7 @@ msgstr ""
|
|
2704 |
msgid "Could not access container"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: src/class-updraftplus.php:
|
2708 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2709 |
msgstr ""
|
2710 |
|
@@ -2834,7 +2893,7 @@ msgstr ""
|
|
2834 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: src/admin.php:
|
2838 |
msgid "Backup sets removed:"
|
2839 |
msgstr ""
|
2840 |
|
@@ -2874,11 +2933,11 @@ msgstr ""
|
|
2874 |
msgid "Add an additional retention rule..."
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: src/restorer.php:
|
2878 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: src/restorer.php:
|
2882 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2883 |
msgstr ""
|
2884 |
|
@@ -2886,15 +2945,15 @@ msgstr ""
|
|
2886 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: src/class-updraftplus.php:
|
2890 |
msgid "You must upgrade MySQL to be able to use this database."
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: src/class-updraftplus.php:
|
2894 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: src/admin.php:
|
2898 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2899 |
msgstr ""
|
2900 |
|
@@ -2922,11 +2981,11 @@ msgstr ""
|
|
2922 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: src/admin.php:
|
2926 |
msgid "Go to the remote storage settings in order to connect."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: src/admin.php:
|
2930 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2931 |
msgstr ""
|
2932 |
|
@@ -3070,7 +3129,7 @@ msgstr ""
|
|
3070 |
msgid "Delete failed:"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: src/backup.php:
|
3074 |
msgid "The zip engine returned the message: %s."
|
3075 |
msgstr ""
|
3076 |
|
@@ -3150,7 +3209,7 @@ msgstr ""
|
|
3150 |
msgid "This storage method does not allow downloading"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: src/admin.php:
|
3154 |
msgid "(backup set imported from remote location)"
|
3155 |
msgstr ""
|
3156 |
|
@@ -3296,23 +3355,23 @@ msgstr ""
|
|
3296 |
msgid "Adding..."
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: src/udaddons/options.php:
|
3300 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: src/restorer.php:
|
3304 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: src/udaddons/updraftplus-addons.php:
|
3308 |
msgid "go here to change your password on updraftplus.com."
|
3309 |
msgstr ""
|
3310 |
|
3311 |
-
#: src/udaddons/updraftplus-addons.php:
|
3312 |
msgid "If you have forgotten your password "
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: src/udaddons/updraftplus-addons.php:
|
3316 |
msgid "Go here to re-enter your password."
|
3317 |
msgstr ""
|
3318 |
|
@@ -3350,7 +3409,7 @@ msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127
|
|
3350 |
msgstr ""
|
3351 |
|
3352 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3353 |
-
msgid "
|
3354 |
msgstr ""
|
3355 |
|
3356 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
@@ -3526,18 +3585,18 @@ msgstr ""
|
|
3526 |
|
3527 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3528 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3529 |
-
#: src/udaddons/updraftplus-addons.php:
|
3530 |
-
#: src/udaddons/updraftplus-addons.php:
|
3531 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3532 |
msgstr ""
|
3533 |
|
3534 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3535 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3536 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3540 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3541 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3542 |
msgstr ""
|
3543 |
|
@@ -3575,11 +3634,11 @@ msgstr ""
|
|
3575 |
msgid "Dismiss (for %s months)"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: src/addons/fixtime.php:
|
3579 |
msgid "(at same time as files backup)"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: src/admin.php:
|
3583 |
msgid "No backup has been completed"
|
3584 |
msgstr ""
|
3585 |
|
@@ -3653,12 +3712,12 @@ msgstr ""
|
|
3653 |
msgid "Check this box to have a basic report sent to"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: src/admin.php:
|
3657 |
msgctxt "i.e. Non-automatic"
|
3658 |
msgid "Manual"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: src/restorer.php:
|
3662 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3663 |
msgid "An error (%s) occurred:"
|
3664 |
msgstr ""
|
@@ -3667,11 +3726,11 @@ msgstr ""
|
|
3667 |
msgid "Change Lock Settings"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: src/addons/morefiles.php:
|
3671 |
msgid "Any other file/directory on your server that you wish to backup"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: src/admin.php:
|
3675 |
msgid "For even more features and personal support, check out "
|
3676 |
msgstr ""
|
3677 |
|
@@ -3757,15 +3816,15 @@ msgstr ""
|
|
3757 |
msgid "The admin password has now been removed."
|
3758 |
msgstr ""
|
3759 |
|
3760 |
-
#: src/addons/morefiles.php:
|
3761 |
msgid "(learn more about this significant option)"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: src/udaddons/options.php:
|
3765 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3766 |
msgstr ""
|
3767 |
|
3768 |
-
#: src/admin.php:
|
3769 |
msgid "View Log"
|
3770 |
msgstr ""
|
3771 |
|
@@ -3784,7 +3843,7 @@ msgstr ""
|
|
3784 |
msgid "and retain this many scheduled backups"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: src/admin.php:
|
3788 |
msgid "incremental backup; base backup: %s"
|
3789 |
msgstr ""
|
3790 |
|
@@ -3797,28 +3856,28 @@ msgstr ""
|
|
3797 |
msgid "Upload files into UpdraftPlus."
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: src/admin.php:
|
3801 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3802 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: src/class-updraftplus.php:
|
3806 |
msgid "Backup label:"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: src/addons/backblaze.php:205, src/admin.php:
|
3810 |
msgid "Error: unexpected file read fail"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: src/backup.php:
|
3814 |
msgid "check your log for more details."
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: src/backup.php:
|
3818 |
msgid "your web hosting account appears to be full; please see: %s"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: src/backup.php:
|
3822 |
msgid "A zip error occurred"
|
3823 |
msgstr ""
|
3824 |
|
@@ -3830,23 +3889,23 @@ msgstr ""
|
|
3830 |
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."
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:
|
3834 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:
|
3838 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:
|
3842 |
msgid "You need to supply both an email address and a password"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: src/class-updraftplus.php:
|
3846 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: src/class-updraftplus.php:
|
3850 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3851 |
msgstr ""
|
3852 |
|
@@ -3883,19 +3942,19 @@ msgstr ""
|
|
3883 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: src/class-updraftplus.php:
|
3887 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: src/class-updraftplus.php:
|
3891 |
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."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: src/class-updraftplus.php:
|
3895 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: src/class-updraftplus.php:
|
3899 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3900 |
msgstr ""
|
3901 |
|
@@ -3924,7 +3983,7 @@ msgstr ""
|
|
3924 |
msgid "UpdraftPlus is on social media - check us out!"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: src/addons/wp-cli.php:907, src/admin.php:
|
3928 |
msgid "Why am I seeing this?"
|
3929 |
msgstr ""
|
3930 |
|
@@ -3938,15 +3997,15 @@ msgstr ""
|
|
3938 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: src/admin.php:
|
3942 |
msgid "Start backup"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: src/class-updraftplus.php:
|
3946 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: src/admin.php:
|
3950 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
3951 |
msgstr ""
|
3952 |
|
@@ -3954,11 +4013,11 @@ msgstr ""
|
|
3954 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#: src/admin.php:
|
3958 |
msgid "This file could not be uploaded"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: src/admin.php:
|
3962 |
msgid "You will find more information about this in the Settings section."
|
3963 |
msgstr ""
|
3964 |
|
@@ -3998,9 +4057,9 @@ msgstr ""
|
|
3998 |
msgid "Backup succeeded"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: src/addons/incremental.php:
|
4002 |
-
#: src/addons/incremental.php:
|
4003 |
-
#: src/admin.php:
|
4004 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4005 |
msgid "Every %s hours"
|
4006 |
msgstr ""
|
@@ -4039,7 +4098,7 @@ msgstr ""
|
|
4039 |
msgid "search term"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: src/restorer.php:
|
4043 |
msgid "Too many database errors have occurred - aborting"
|
4044 |
msgstr ""
|
4045 |
|
@@ -4075,11 +4134,11 @@ msgstr ""
|
|
4075 |
msgid "Free disk space in account:"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: src/admin.php:
|
4079 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: src/admin.php:817, src/admin.php:
|
4083 |
#: src/includes/deprecated-actions.php:29,
|
4084 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4085 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
@@ -4087,35 +4146,35 @@ msgstr ""
|
|
4087 |
msgid "Existing Backups"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: src/admin.php:
|
4091 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: src/admin.php:
|
4095 |
msgid "To make a backup, just press the Backup Now button."
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: src/admin.php:
|
4099 |
msgid "Welcome to UpdraftPlus!"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: src/addons/moredatabase.php:
|
4103 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: src/addons/moredatabase.php:
|
4107 |
msgid "Testing..."
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: src/addons/moredatabase.php:
|
4111 |
msgid "Test connection..."
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: src/addons/moredatabase.php:
|
4115 |
msgid "Table prefix"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: src/addons/moredatabase.php:
|
4119 |
msgid "Backup external database"
|
4120 |
msgstr ""
|
4121 |
|
@@ -4167,7 +4226,7 @@ msgstr ""
|
|
4167 |
msgid "user"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: src/class-updraftplus.php:
|
4171 |
msgid "External database (%s)"
|
4172 |
msgstr ""
|
4173 |
|
@@ -4185,7 +4244,7 @@ msgstr ""
|
|
4185 |
msgid "However, subsequent access attempts failed:"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: src/addons/wp-cli.php:437, src/admin.php:
|
4189 |
msgid "External database"
|
4190 |
msgstr ""
|
4191 |
|
@@ -4217,7 +4276,7 @@ msgstr ""
|
|
4217 |
msgid "use UpdraftPlus Premium"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: src/class-updraftplus.php:
|
4221 |
msgid "Decryption failed. The database file is encrypted."
|
4222 |
msgstr ""
|
4223 |
|
@@ -4225,8 +4284,8 @@ msgstr ""
|
|
4225 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4226 |
msgstr ""
|
4227 |
|
4228 |
-
#: src/restorer.php:2284, src/restorer.php:
|
4229 |
-
#: src/restorer.php:
|
4230 |
msgid "An error occurred on the first %s command - aborting run"
|
4231 |
msgstr ""
|
4232 |
|
@@ -4272,7 +4331,7 @@ msgstr ""
|
|
4272 |
msgid "Tenant"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
-
#: src/addons/wp-cli.php:800, src/admin.php:
|
4276 |
#: src/methods/openstack2.php:144,
|
4277 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4278 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
@@ -4418,7 +4477,7 @@ msgstr ""
|
|
4418 |
msgid "Failed to unpack the archive"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: src/class-updraftplus.php:
|
4422 |
msgid "Error - failed to download the file"
|
4423 |
msgstr ""
|
4424 |
|
@@ -4427,15 +4486,15 @@ msgstr ""
|
|
4427 |
msgid "Rescan local folder for new backup sets"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: src/udaddons/updraftplus-addons.php:
|
4431 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: src/udaddons/updraftplus-addons.php:
|
4435 |
msgid "It has been tested up to version %s."
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: src/udaddons/updraftplus-addons.php:
|
4439 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4440 |
msgstr ""
|
4441 |
|
@@ -4444,7 +4503,7 @@ msgid "password/key"
|
|
4444 |
msgstr ""
|
4445 |
|
4446 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4447 |
-
#: src/admin.php:
|
4448 |
msgid "Key"
|
4449 |
msgstr ""
|
4450 |
|
@@ -4460,24 +4519,24 @@ msgstr ""
|
|
4460 |
msgid "SCP/SFTP password/key"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4464 |
msgid "Files backup (created by %s)"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4468 |
msgid "Files and database WordPress backup (created by %s)"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: src/addons/importer.php:276, src/admin.php:
|
4472 |
#: src/includes/class-backup-history.php:435
|
4473 |
msgid "Backup created by: %s."
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: src/addons/wp-cli.php:431, src/admin.php:
|
4477 |
msgid "Database (created by %s)"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
-
#: src/addons/wp-cli.php:429, src/admin.php:
|
4481 |
msgid "unknown source"
|
4482 |
msgstr ""
|
4483 |
|
@@ -4492,15 +4551,15 @@ msgstr ""
|
|
4492 |
msgid "Upload backup files"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: src/admin.php:
|
4496 |
msgid "This backup was created by %s, and can be imported."
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: src/admin.php:
|
4500 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: src/admin.php:
|
4504 |
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."
|
4505 |
msgstr ""
|
4506 |
|
@@ -4517,7 +4576,7 @@ msgstr ""
|
|
4517 |
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))."
|
4518 |
msgstr ""
|
4519 |
|
4520 |
-
#: src/admin.php:
|
4521 |
#: src/restorer.php:1975
|
4522 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4523 |
msgstr ""
|
@@ -4556,16 +4615,16 @@ msgstr ""
|
|
4556 |
msgid "(Read more)"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#: src/addons/reporting.php:
|
4560 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#: src/addons/morefiles.php:
|
4564 |
msgid "No backup of location: there was nothing found to back up"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#: src/addons/moredatabase.php:
|
4568 |
-
#: src/addons/morefiles.php:
|
4569 |
msgid "Remove"
|
4570 |
msgstr ""
|
4571 |
|
@@ -4577,7 +4636,7 @@ msgstr ""
|
|
4577 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/addons/morefiles.php:
|
4581 |
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."
|
4582 |
msgstr ""
|
4583 |
|
@@ -4606,53 +4665,53 @@ msgstr ""
|
|
4606 |
msgid "Backup created by:"
|
4607 |
msgstr ""
|
4608 |
|
4609 |
-
#: src/udaddons/options.php:
|
4610 |
msgid "Available to claim on this site"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: src/udaddons/updraftplus-addons.php:
|
4614 |
msgid "To maintain your access to support, please renew."
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: src/udaddons/updraftplus-addons.php:
|
4618 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: src/udaddons/updraftplus-addons.php:
|
4622 |
msgid "To regain your access, please renew."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: src/udaddons/updraftplus-addons.php:
|
4626 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: src/udaddons/updraftplus-addons.php:
|
4630 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4631 |
msgstr ""
|
4632 |
|
4633 |
-
#: src/udaddons/updraftplus-addons.php:
|
4634 |
-
#: src/udaddons/updraftplus-addons.php:
|
4635 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: src/udaddons/updraftplus-addons.php:
|
4639 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: src/udaddons/updraftplus-addons.php:
|
4643 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: src/udaddons/updraftplus-addons.php:
|
4647 |
-
#: src/udaddons/updraftplus-addons.php:
|
4648 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4649 |
msgstr ""
|
4650 |
|
4651 |
-
#: src/udaddons/updraftplus-addons.php:
|
4652 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4653 |
msgstr ""
|
4654 |
|
4655 |
-
#: src/udaddons/updraftplus-addons.php:
|
4656 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4657 |
msgstr ""
|
4658 |
|
@@ -4669,7 +4728,7 @@ msgstr ""
|
|
4669 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: src/includes/class-wpadmin-commands.php:
|
4673 |
msgid "Constants"
|
4674 |
msgstr ""
|
4675 |
|
@@ -4693,12 +4752,12 @@ msgstr ""
|
|
4693 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: src/udaddons/updraftplus-addons.php:
|
4697 |
-
#: src/udaddons/updraftplus-addons.php:
|
4698 |
msgid "Errors occurred:"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/addons/wp-cli.php:664, src/admin.php:
|
4702 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4703 |
msgstr ""
|
4704 |
|
@@ -4722,7 +4781,7 @@ msgstr ""
|
|
4722 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: src/admin.php:
|
4726 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4727 |
msgstr ""
|
4728 |
|
@@ -4735,11 +4794,11 @@ msgstr ""
|
|
4735 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: src/addons/moredatabase.php:144, src/admin.php:
|
4739 |
msgid "Messages:"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: src/restorer.php:
|
4743 |
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"
|
4744 |
msgstr ""
|
4745 |
|
@@ -4897,7 +4956,7 @@ msgid "Authorisation failed (check your credentials)"
|
|
4897 |
msgstr ""
|
4898 |
|
4899 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4900 |
-
#: src/udaddons/options.php:
|
4901 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4902 |
msgstr ""
|
4903 |
|
@@ -4913,15 +4972,15 @@ msgstr ""
|
|
4913 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:
|
4917 |
msgid "Error data:"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#: src/admin.php:
|
4921 |
msgid "Backup does not exist in the backup history"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
-
#: src/admin.php:
|
4925 |
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."
|
4926 |
msgstr ""
|
4927 |
|
@@ -4949,23 +5008,23 @@ msgstr ""
|
|
4949 |
msgid "Moving old data out of the way..."
|
4950 |
msgstr ""
|
4951 |
|
4952 |
-
#: src/addons/reporting.php:
|
4953 |
msgid "Add another address..."
|
4954 |
msgstr ""
|
4955 |
|
4956 |
-
#: src/addons/reporting.php:
|
4957 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4958 |
msgstr ""
|
4959 |
|
4960 |
-
#: src/addons/reporting.php:
|
4961 |
msgid "Email reports"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: src/class-updraftplus.php:
|
4965 |
msgid "%s checksum: %s"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#: src/class-updraftplus.php:
|
4969 |
msgid "files: %s"
|
4970 |
msgstr ""
|
4971 |
|
@@ -4977,7 +5036,7 @@ msgstr ""
|
|
4977 |
msgid "Debugging information"
|
4978 |
msgstr ""
|
4979 |
|
4980 |
-
#: src/addons/reporting.php:223, src/admin.php:
|
4981 |
msgid "Uploaded to:"
|
4982 |
msgstr ""
|
4983 |
|
@@ -4997,7 +5056,7 @@ msgstr ""
|
|
4997 |
msgid "Errors / warnings:"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
-
#: src/addons/morefiles.php:
|
5001 |
#: src/addons/reporting.php:184
|
5002 |
msgid "Contains:"
|
5003 |
msgstr ""
|
@@ -5018,8 +5077,7 @@ msgstr ""
|
|
5018 |
msgid "%d errors, %d warnings"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
-
#: src/
|
5022 |
-
#: src/methods/dropbox.php:775
|
5023 |
msgid "%s authentication"
|
5024 |
msgstr ""
|
5025 |
|
@@ -5050,8 +5108,9 @@ msgstr ""
|
|
5050 |
msgid "Your site's admin email address (%s) will be used."
|
5051 |
msgstr ""
|
5052 |
|
5053 |
-
#: src/admin.php:853, src/admin.php:
|
5054 |
-
#: src/methods/updraftvault.php:362
|
|
|
5055 |
msgid "Connect"
|
5056 |
msgstr ""
|
5057 |
|
@@ -5059,7 +5118,7 @@ msgstr ""
|
|
5059 |
msgid "For more reporting features, use the Reporting add-on."
|
5060 |
msgstr ""
|
5061 |
|
5062 |
-
#: src/class-updraftplus.php:
|
5063 |
msgid "(version: %s)"
|
5064 |
msgstr ""
|
5065 |
|
@@ -5067,7 +5126,7 @@ msgstr ""
|
|
5067 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: src/addons/reporting.php:
|
5071 |
msgid "When the Email storage method is enabled, also send the backup"
|
5072 |
msgstr ""
|
5073 |
|
@@ -5131,7 +5190,7 @@ msgstr ""
|
|
5131 |
msgid "UpdraftPlus warning:"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: src/udaddons/options.php:
|
5135 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5136 |
msgstr ""
|
5137 |
|
@@ -5159,11 +5218,11 @@ msgstr ""
|
|
5159 |
msgid "UpdraftPlus Support"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: src/udaddons/options.php:
|
5163 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#: src/udaddons/options.php:
|
5167 |
msgid "UpdraftPlus Addons"
|
5168 |
msgstr ""
|
5169 |
|
@@ -5172,24 +5231,24 @@ msgid "An update is available for UpdraftPlus - please follow this link to get i
|
|
5172 |
msgstr ""
|
5173 |
|
5174 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5175 |
-
#: src/udaddons/updraftplus-addons.php:
|
5176 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:
|
5180 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5184 |
-
#: src/udaddons/updraftplus-addons.php:
|
5185 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: src/udaddons/updraftplus-addons.php:
|
5189 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
-
#: src/udaddons/updraftplus-addons.php:
|
5193 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5194 |
msgstr ""
|
5195 |
|
@@ -5200,11 +5259,11 @@ msgstr ""
|
|
5200 |
msgid "Reporting"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
-
#: src/admin.php:
|
5204 |
msgid "Options (raw)"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: src/addons/reporting.php:
|
5208 |
msgid "Send a report only when there are warnings/errors"
|
5209 |
msgstr ""
|
5210 |
|
@@ -5220,31 +5279,31 @@ msgstr ""
|
|
5220 |
msgid "See also the \"More Files\" add-on from our shop."
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
#: src/backup.php:
|
5224 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
-
#: src/class-updraftplus.php:
|
5228 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
-
#: src/udaddons/options.php:
|
5232 |
msgid "Manage Addons"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#: src/udaddons/options.php:
|
5236 |
msgid "Buy It"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#: src/udaddons/options.php:
|
5240 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
#: src/udaddons/options.php:
|
5244 |
msgid "activate it on this site"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: src/udaddons/options.php:
|
5248 |
msgid "You have an inactive purchase"
|
5249 |
msgstr ""
|
5250 |
|
@@ -5272,47 +5331,47 @@ msgstr ""
|
|
5272 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: src/udaddons/options.php:
|
5276 |
msgid "An unknown response was received. Response was:"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: src/udaddons/options.php:
|
5280 |
msgid "Claim not granted - your account login details were wrong"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#: src/udaddons/options.php:
|
5284 |
msgid "Please wait whilst we make the claim..."
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: src/udaddons/options.php:
|
5288 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
-
#: src/udaddons/options.php:
|
5292 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5293 |
msgstr ""
|
5294 |
|
5295 |
-
#: src/udaddons/options.php:
|
5296 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#: src/udaddons/options.php:
|
5300 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5301 |
msgstr ""
|
5302 |
|
5303 |
-
#: src/admin.php:
|
5304 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5305 |
msgstr ""
|
5306 |
|
5307 |
-
#: src/admin.php:
|
5308 |
msgid "Forgotten your details?"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
-
#: src/admin.php:
|
5312 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
-
#: src/admin.php:
|
5316 |
msgid "Connect with your UpdraftPlus.Com account"
|
5317 |
msgstr ""
|
5318 |
|
@@ -5344,12 +5403,12 @@ msgstr ""
|
|
5344 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: src/addons/moredatabase.php:
|
5348 |
#: src/includes/class-updraftplus-encryption.php:148
|
5349 |
msgid "Without it, encryption will be a lot slower."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: src/addons/moredatabase.php:
|
5353 |
#: src/includes/class-updraftplus-encryption.php:148
|
5354 |
msgid "Your web-server does not have the %s module installed."
|
5355 |
msgstr ""
|
@@ -5400,11 +5459,11 @@ msgstr ""
|
|
5400 |
msgid "You can send a backup to more than one destination with an add-on."
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#: src/admin.php:
|
5404 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#: src/admin.php:
|
5408 |
msgid "(%s%%, file %s of %s)"
|
5409 |
msgstr ""
|
5410 |
|
@@ -5445,11 +5504,11 @@ msgstr ""
|
|
5445 |
msgid "%s settings test result:"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: src/admin.php:
|
5449 |
msgid "(Not finished)"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: src/admin.php:
|
5453 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5454 |
msgstr ""
|
5455 |
|
@@ -5461,73 +5520,73 @@ msgstr ""
|
|
5461 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: src/admin.php:
|
5465 |
msgid "Job ID: %s"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: src/admin.php:
|
5469 |
msgid "last activity: %ss ago"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: src/admin.php:
|
5473 |
msgid "next resumption: %d (after %ss)"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: src/admin.php:
|
5477 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5478 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5479 |
msgid "Unknown"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/admin.php:
|
5483 |
msgid "Backup finished"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/admin.php:
|
5487 |
msgid "Waiting until scheduled time to retry because of errors"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/admin.php:
|
5491 |
msgid "Pruning old backup sets"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/admin.php:
|
5495 |
msgid "Uploading files to remote storage"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/admin.php:
|
5499 |
msgid "Encrypted database"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/admin.php:
|
5503 |
msgid "Encrypting database"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: src/admin.php:
|
5507 |
msgid "Created database backup"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
-
#: src/admin.php:
|
5511 |
msgid "table: %s"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: src/admin.php:
|
5515 |
msgid "Creating database backup"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: src/admin.php:
|
5519 |
msgid "Created file backup zips"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: src/admin.php:
|
5523 |
msgid "Creating file backup zips"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: src/admin.php:
|
5527 |
msgid "Backup begun"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: src/admin.php:
|
5531 |
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."
|
5532 |
msgstr ""
|
5533 |
|
@@ -5543,11 +5602,11 @@ msgstr ""
|
|
5543 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: src/class-updraftplus.php:
|
5547 |
msgid "The backup has not finished; a resumption is scheduled"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: src/class-updraftplus.php:
|
5551 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5552 |
msgstr ""
|
5553 |
|
@@ -5556,7 +5615,7 @@ msgstr ""
|
|
5556 |
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)."
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/admin.php:
|
5560 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5561 |
msgstr ""
|
5562 |
|
@@ -5609,19 +5668,19 @@ msgstr ""
|
|
5609 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: src/addons/morefiles.php:
|
5613 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
#: src/addons/morefiles.php:
|
5617 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#: src/addons/morefiles.php:
|
5621 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5622 |
msgstr ""
|
5623 |
|
5624 |
-
#: src/addons/morefiles.php:
|
5625 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5626 |
msgstr ""
|
5627 |
|
@@ -5636,32 +5695,32 @@ msgstr ""
|
|
5636 |
msgid "Support"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
-
#: src/class-updraftplus.php:
|
5640 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: src/class-updraftplus.php:
|
5644 |
msgid "This database backup is missing core WordPress tables: %s"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
-
#: src/class-updraftplus.php:
|
5648 |
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."
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#: src/class-updraftplus.php:
|
5652 |
msgid "%s version: %s"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: src/class-updraftplus.php:
|
5656 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: src/addons/autobackup.php:1067, src/admin.php:
|
5660 |
#: src/includes/updraftplus-notices.php:171
|
5661 |
msgid "Be safe with an automatic backup"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: src/admin.php:
|
5665 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
5666 |
msgstr ""
|
5667 |
|
@@ -5709,11 +5768,11 @@ msgstr ""
|
|
5709 |
msgid "Delete from your web server"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: src/admin.php:
|
5713 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: src/admin.php:
|
5717 |
msgid "(%d archive(s) in set)."
|
5718 |
msgstr ""
|
5719 |
|
@@ -5721,7 +5780,7 @@ msgstr ""
|
|
5721 |
msgid "Split archives every:"
|
5722 |
msgstr ""
|
5723 |
|
5724 |
-
#: src/addons/moredatabase.php:
|
5725 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
5726 |
msgstr ""
|
5727 |
|
@@ -5733,19 +5792,19 @@ msgstr ""
|
|
5733 |
msgid "Error: the server sent an empty response."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/admin.php:
|
5737 |
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?"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#: src/includes/class-wpadmin-commands.php:
|
5741 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
5742 |
msgstr ""
|
5743 |
|
5744 |
-
#: src/includes/class-wpadmin-commands.php:
|
5745 |
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."
|
5746 |
msgstr ""
|
5747 |
|
5748 |
-
#: src/includes/class-wpadmin-commands.php:
|
5749 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
5750 |
msgstr ""
|
5751 |
|
@@ -5778,11 +5837,11 @@ msgstr ""
|
|
5778 |
msgid "Moving unpacked backup into place..."
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: src/backup.php:
|
5782 |
msgid "Failed to open the zip file (%s) - %s"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: src/addons/morefiles.php:
|
5786 |
msgid "WordPress root directory server path: %s"
|
5787 |
msgstr ""
|
5788 |
|
@@ -5807,7 +5866,7 @@ msgstr ""
|
|
5807 |
msgid "Looking for %s archive: file name: %s"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: src/addons/wp-cli.php:784, src/admin.php:
|
5811 |
msgid "Final checks"
|
5812 |
msgstr ""
|
5813 |
|
@@ -5819,7 +5878,7 @@ msgstr ""
|
|
5819 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: src/admin.php:
|
5823 |
msgid "Your wp-content directory server path: %s"
|
5824 |
msgstr ""
|
5825 |
|
@@ -5840,11 +5899,11 @@ msgstr ""
|
|
5840 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: src/class-updraftplus.php:
|
5844 |
msgid "Failed to open database file."
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: src/admin.php:
|
5848 |
msgid "Known backups (raw)"
|
5849 |
msgstr ""
|
5850 |
|
@@ -5862,8 +5921,8 @@ msgstr ""
|
|
5862 |
|
5863 |
#: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
|
5864 |
#: src/addons/migrator.php:493, src/addons/migrator.php:496,
|
5865 |
-
#: src/admin.php:
|
5866 |
-
#: src/class-updraftplus.php:
|
5867 |
#: src/updraftplus.php:157
|
5868 |
msgid "Go here for more information."
|
5869 |
msgstr ""
|
@@ -5872,15 +5931,15 @@ msgstr ""
|
|
5872 |
msgid "Some files are still downloading or being processed - please wait."
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: src/class-updraftplus.php:
|
5876 |
msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: src/addons/fixtime.php:
|
5880 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#: src/addons/fixtime.php:
|
5884 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5885 |
msgstr ""
|
5886 |
|
@@ -5924,7 +5983,7 @@ msgstr ""
|
|
5924 |
msgid "%s error - failed to upload file"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/class-updraftplus.php:
|
5928 |
msgid "%s error - failed to re-assemble chunks"
|
5929 |
msgstr ""
|
5930 |
|
@@ -5939,32 +5998,32 @@ msgid "%s authentication failed"
|
|
5939 |
msgstr ""
|
5940 |
|
5941 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
|
5942 |
-
#: src/admin.php:
|
5943 |
-
#: src/class-updraftplus.php:
|
5944 |
-
#: src/class-updraftplus.php:
|
5945 |
-
#: src/class-updraftplus.php:
|
5946 |
-
#: src/class-updraftplus.php:
|
5947 |
#: src/methods/s3.php:341
|
5948 |
msgid "Error: %s"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: src/admin.php:
|
5952 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: src/admin.php:
|
5956 |
msgid "Backup directory specified does <b>not</b> exist."
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: src/admin.php:
|
5960 |
msgid "Warning: %s"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: src/backup.php:
|
5964 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: src/backup.php:
|
5968 |
msgid "%s: unreadable file - could not be backed up"
|
5969 |
msgstr ""
|
5970 |
|
@@ -5972,7 +6031,7 @@ msgstr ""
|
|
5972 |
msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: src/backup.php:
|
5976 |
msgid "An error occurred whilst closing the final database file"
|
5977 |
msgstr ""
|
5978 |
|
@@ -5980,11 +6039,11 @@ msgstr ""
|
|
5980 |
msgid "Warnings encountered:"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: src/class-updraftplus.php:
|
5984 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#: src/class-updraftplus.php:
|
5988 |
msgid "Your free disk space is very low - only %s Mb remain"
|
5989 |
msgstr ""
|
5990 |
|
@@ -6036,7 +6095,7 @@ msgstr ""
|
|
6036 |
msgid "Please supply the requested information, and then continue."
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: src/class-updraftplus.php:
|
6040 |
msgid "Site information:"
|
6041 |
msgstr ""
|
6042 |
|
@@ -6044,11 +6103,11 @@ msgstr ""
|
|
6044 |
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."
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: src/admin.php:
|
6048 |
msgid "Warning:"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: src/class-updraftplus.php:
|
6052 |
#: src/restorer.php:530
|
6053 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
6054 |
msgstr ""
|
@@ -6057,7 +6116,7 @@ msgstr ""
|
|
6057 |
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."
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: src/addons/azure.php:601, src/admin.php:
|
6061 |
#: src/methods/updraftvault.php:306
|
6062 |
msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
6063 |
msgstr ""
|
@@ -6073,7 +6132,7 @@ msgstr ""
|
|
6073 |
msgid "Unexpected response:"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: src/addons/reporting.php:
|
6077 |
msgid "To send to more than one address, separate each address with a comma."
|
6078 |
msgstr ""
|
6079 |
|
@@ -6101,12 +6160,27 @@ msgstr ""
|
|
6101 |
msgid "Also delete from remote storage"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: src/admin.php:
|
6105 |
msgid "Latest UpdraftPlus.com news:"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
#: src/templates/wp-admin/settings/header.php:11,
|
6109 |
-
#: src/templates/wp-admin/settings/tab-addons.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6110 |
msgid "Premium"
|
6111 |
msgstr ""
|
6112 |
|
@@ -6114,7 +6188,7 @@ msgstr ""
|
|
6114 |
msgid "News"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: src/admin.php:
|
6118 |
msgid "Backup set not found"
|
6119 |
msgstr ""
|
6120 |
|
@@ -6145,11 +6219,11 @@ msgstr ""
|
|
6145 |
msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
|
6146 |
msgstr ""
|
6147 |
|
6148 |
-
#: src/admin.php:
|
6149 |
msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
|
6150 |
msgstr ""
|
6151 |
|
6152 |
-
#: src/admin.php:
|
6153 |
msgid "Notice"
|
6154 |
msgstr ""
|
6155 |
|
@@ -6255,7 +6329,7 @@ msgstr ""
|
|
6255 |
msgid "Multisite Install"
|
6256 |
msgstr ""
|
6257 |
|
6258 |
-
#: src/addons/fixtime.php:
|
6259 |
msgid "starting from next time it is"
|
6260 |
msgstr ""
|
6261 |
|
@@ -6283,8 +6357,8 @@ msgstr ""
|
|
6283 |
msgid "Directory path"
|
6284 |
msgstr ""
|
6285 |
|
6286 |
-
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:
|
6287 |
-
#: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:
|
6288 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
6289 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
6290 |
msgid "Password"
|
@@ -6294,7 +6368,7 @@ msgstr ""
|
|
6294 |
msgid "Port"
|
6295 |
msgstr ""
|
6296 |
|
6297 |
-
#: src/addons/moredatabase.php:
|
6298 |
#: src/addons/webdav.php:199
|
6299 |
msgid "Host"
|
6300 |
msgstr ""
|
@@ -6315,35 +6389,35 @@ msgstr ""
|
|
6315 |
msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
|
6316 |
msgstr ""
|
6317 |
|
6318 |
-
#: src/addons/morefiles.php:
|
6319 |
msgid "No backup of %s directories: there was nothing found to back up"
|
6320 |
msgstr ""
|
6321 |
|
6322 |
-
#: src/addons/morefiles.php:
|
6323 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
6324 |
msgstr ""
|
6325 |
|
6326 |
-
#: src/addons/morefiles.php:
|
6327 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#: src/addons/morefiles.php:
|
6331 |
msgid "More Files"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: src/addons/morefiles.php:
|
6335 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: src/addons/morefiles.php:
|
6339 |
msgid "The above files comprise everything in a WordPress installation."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: src/addons/morefiles.php:
|
6343 |
msgid "Over-write wp-config.php"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
-
#: src/addons/morefiles.php:
|
6347 |
msgid "WordPress Core"
|
6348 |
msgstr ""
|
6349 |
|
@@ -6352,8 +6426,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
|
|
6352 |
msgstr ""
|
6353 |
|
6354 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
6355 |
-
#: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:
|
6356 |
-
#: src/admin.php:
|
6357 |
#: src/methods/stream-base.php:356
|
6358 |
msgid "Failed"
|
6359 |
msgstr ""
|
@@ -6561,7 +6635,7 @@ msgstr ""
|
|
6561 |
msgid "Failure: No container details were given."
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: src/addons/moredatabase.php:
|
6565 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
6566 |
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
6567 |
msgid "Username"
|
@@ -6622,7 +6696,7 @@ msgstr ""
|
|
6622 |
msgid "Test %s Settings"
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: src/class-updraftplus.php:
|
6626 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
6627 |
msgid "Error opening local file: Failed to download"
|
6628 |
msgstr ""
|
@@ -6639,7 +6713,7 @@ msgid "%s Error: Failed to upload"
|
|
6639 |
msgstr ""
|
6640 |
|
6641 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
6642 |
-
#: src/class-updraftplus.php:
|
6643 |
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
6644 |
msgid "%s Error: Failed to open local file"
|
6645 |
msgstr ""
|
@@ -6753,18 +6827,18 @@ msgstr ""
|
|
6753 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: src/admin.php:
|
6757 |
#: src/includes/class-remote-send.php:326,
|
6758 |
#: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
|
6759 |
-
#: src/restorer.php:
|
6760 |
msgid "OK"
|
6761 |
msgstr ""
|
6762 |
|
6763 |
-
#: src/restorer.php:
|
6764 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
6765 |
msgstr ""
|
6766 |
|
6767 |
-
#: src/addons/migrator.php:1317, src/restorer.php:
|
6768 |
msgid "the database query being run was:"
|
6769 |
msgstr ""
|
6770 |
|
@@ -6772,13 +6846,13 @@ msgstr ""
|
|
6772 |
msgid "will restore as:"
|
6773 |
msgstr ""
|
6774 |
|
6775 |
-
#: src/class-updraftplus.php:
|
6776 |
#: src/restorer.php:2304, src/restorer.php:2330
|
6777 |
msgid "Old table prefix:"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
#: src/addons/reporting.php:72, src/addons/reporting.php:181,
|
6781 |
-
#: src/backup.php:1135, src/class-updraftplus.php:
|
6782 |
msgid "Backup of:"
|
6783 |
msgstr ""
|
6784 |
|
@@ -6866,39 +6940,39 @@ msgstr ""
|
|
6866 |
msgid "Archive is expected to be size:"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
-
#: src/admin.php:
|
6870 |
msgid "If making a request for support, please include this information:"
|
6871 |
msgstr ""
|
6872 |
|
6873 |
-
#: src/admin.php:
|
6874 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6875 |
msgstr ""
|
6876 |
|
6877 |
-
#: src/addons/wp-cli.php:647, src/admin.php:
|
6878 |
msgid "UpdraftPlus Restoration: Progress"
|
6879 |
msgstr ""
|
6880 |
|
6881 |
-
#: src/admin.php:
|
6882 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#: src/admin.php:
|
6886 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6887 |
msgstr ""
|
6888 |
|
6889 |
-
#: src/admin.php:
|
6890 |
msgid "Delete this backup set"
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#: src/admin.php:
|
6894 |
msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
|
6895 |
msgstr ""
|
6896 |
|
6897 |
-
#: src/admin.php:
|
6898 |
msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
|
6899 |
msgstr ""
|
6900 |
|
6901 |
-
#: src/admin.php:
|
6902 |
msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
|
6903 |
msgstr ""
|
6904 |
|
@@ -6939,19 +7013,19 @@ msgstr ""
|
|
6939 |
msgid "Use the server's SSL certificates"
|
6940 |
msgstr ""
|
6941 |
|
6942 |
-
#: src/admin.php:
|
6943 |
msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
|
6944 |
msgstr ""
|
6945 |
|
6946 |
-
#: src/admin.php:
|
6947 |
msgid "or, to reset this option"
|
6948 |
msgstr ""
|
6949 |
|
6950 |
-
#: src/admin.php:
|
6951 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6952 |
msgstr ""
|
6953 |
|
6954 |
-
#: src/admin.php:
|
6955 |
msgid "Backup directory specified is writable, which is good."
|
6956 |
msgstr ""
|
6957 |
|
@@ -6987,12 +7061,12 @@ msgstr ""
|
|
6987 |
msgid "Requesting start of backup..."
|
6988 |
msgstr ""
|
6989 |
|
6990 |
-
#: src/addons/morefiles.php:
|
6991 |
msgid "Cancel"
|
6992 |
msgstr ""
|
6993 |
|
6994 |
-
#: src/addons/incremental.php:
|
6995 |
-
#: src/admin.php:
|
6996 |
msgid "None"
|
6997 |
msgstr ""
|
6998 |
|
@@ -7008,7 +7082,7 @@ msgstr ""
|
|
7008 |
msgid "Database encryption phrase"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
-
#: src/admin.php:
|
7012 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
7013 |
msgid "Email"
|
7014 |
msgstr ""
|
@@ -7017,11 +7091,11 @@ msgstr ""
|
|
7017 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
7018 |
msgstr ""
|
7019 |
|
7020 |
-
#: src/addons/morefiles.php:
|
7021 |
msgid "Exclude these:"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
-
#: src/admin.php:
|
7025 |
msgid "Any other directories found inside wp-content"
|
7026 |
msgstr ""
|
7027 |
|
@@ -7037,46 +7111,46 @@ msgstr ""
|
|
7037 |
msgid "To fix the time at which a backup should take place,"
|
7038 |
msgstr ""
|
7039 |
|
7040 |
-
#: src/addons/incremental.php:
|
7041 |
msgid "Monthly"
|
7042 |
msgstr ""
|
7043 |
|
7044 |
-
#: src/addons/incremental.php:
|
7045 |
msgid "Fortnightly"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
-
#: src/addons/incremental.php:
|
7049 |
msgid "Weekly"
|
7050 |
msgstr ""
|
7051 |
|
7052 |
-
#: src/addons/incremental.php:
|
7053 |
msgid "Daily"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#: src/admin.php:849, src/admin.php:
|
7057 |
msgid "Download log file"
|
7058 |
msgstr ""
|
7059 |
|
7060 |
-
#: src/admin.php:
|
7061 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
7062 |
msgstr ""
|
7063 |
|
7064 |
-
#: src/admin.php:
|
7065 |
msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
-
#: src/admin.php:
|
7069 |
msgid "The request to the filesystem to create the directory failed."
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: src/admin.php:842, src/admin.php:
|
7073 |
-
#: src/admin.php:
|
7074 |
#: src/templates/wp-admin/settings/existing-backups-table.php:155,
|
7075 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
7076 |
msgid "Delete"
|
7077 |
msgstr ""
|
7078 |
|
7079 |
-
#: src/admin.php:
|
7080 |
msgid "show log"
|
7081 |
msgstr ""
|
7082 |
|
@@ -7137,7 +7211,7 @@ msgstr ""
|
|
7137 |
msgid "Yes"
|
7138 |
msgstr ""
|
7139 |
|
7140 |
-
#: src/admin.php:
|
7141 |
#: src/templates/wp-admin/advanced/site-info.php:45,
|
7142 |
#: src/templates/wp-admin/advanced/site-info.php:51,
|
7143 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
@@ -7177,11 +7251,11 @@ msgstr ""
|
|
7177 |
msgid "Do read this helpful article of useful things to know before restoring."
|
7178 |
msgstr ""
|
7179 |
|
7180 |
-
#: src/class-updraftplus.php:
|
7181 |
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"
|
7182 |
msgstr ""
|
7183 |
|
7184 |
-
#: src/addons/morefiles.php:
|
7185 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
|
7186 |
msgid "%s restoration options:"
|
7187 |
msgstr ""
|
@@ -7292,7 +7366,7 @@ msgstr ""
|
|
7292 |
msgid "More tasks:"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
-
#: src/admin.php:
|
7296 |
msgid "Download most recently modified log file"
|
7297 |
msgstr ""
|
7298 |
|
@@ -7301,13 +7375,13 @@ msgid "(Nothing yet logged)"
|
|
7301 |
msgstr ""
|
7302 |
|
7303 |
#: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
|
7304 |
-
#: src/admin.php:
|
7305 |
#: src/templates/wp-admin/settings/take-backup.php:64
|
7306 |
msgid "Last log message"
|
7307 |
msgstr ""
|
7308 |
|
7309 |
#: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
|
7310 |
-
#: src/admin.php:
|
7311 |
msgid "Restore"
|
7312 |
msgstr ""
|
7313 |
|
@@ -7319,18 +7393,18 @@ msgstr ""
|
|
7319 |
msgid "Time now"
|
7320 |
msgstr ""
|
7321 |
|
7322 |
-
#: src/addons/moredatabase.php:
|
7323 |
-
#: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:
|
7324 |
-
#: src/admin.php:
|
7325 |
#: src/includes/class-wpadmin-commands.php:157,
|
7326 |
-
#: src/includes/class-wpadmin-commands.php:
|
7327 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
|
7328 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75,
|
7329 |
#: src/templates/wp-admin/settings/take-backup.php:33
|
7330 |
msgid "Database"
|
7331 |
msgstr ""
|
7332 |
|
7333 |
-
#: src/admin.php:332, src/admin.php:
|
7334 |
#: src/templates/wp-admin/settings/take-backup.php:23
|
7335 |
msgid "Files"
|
7336 |
msgstr ""
|
@@ -7356,15 +7430,15 @@ msgstr ""
|
|
7356 |
msgid "JavaScript warning"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
-
#: src/admin.php:826, src/admin.php:
|
7360 |
msgid "Delete Old Directories"
|
7361 |
msgstr ""
|
7362 |
|
7363 |
-
#: src/admin.php:
|
7364 |
msgid "Current limit is:"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
-
#: src/admin.php:
|
7368 |
msgid "Your backup has been restored."
|
7369 |
msgstr ""
|
7370 |
|
@@ -7380,87 +7454,87 @@ msgstr ""
|
|
7380 |
msgid "UpdraftPlus.Com"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
-
#: src/admin.php:
|
7384 |
msgid "Your settings have been wiped."
|
7385 |
msgstr ""
|
7386 |
|
7387 |
-
#: src/admin.php:
|
7388 |
msgid "Backup directory successfully created."
|
7389 |
msgstr ""
|
7390 |
|
7391 |
-
#: src/admin.php:
|
7392 |
msgid "Backup directory could not be created"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: src/admin.php:
|
7396 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
7397 |
msgstr ""
|
7398 |
|
7399 |
-
#: src/admin.php:
|
7400 |
msgid "Old directories successfully removed."
|
7401 |
msgstr ""
|
7402 |
|
7403 |
-
#: src/admin.php:
|
7404 |
msgid "Remove old directories"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
#: src/addons/migrator.php:340, src/addons/migrator.php:355,
|
7408 |
-
#: src/admin.php:
|
7409 |
-
#: src/admin.php:
|
7410 |
msgid "Return to UpdraftPlus Configuration"
|
7411 |
msgstr ""
|
7412 |
|
7413 |
-
#: src/admin.php:819, src/admin.php:
|
7414 |
-
#: src/admin.php:
|
7415 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
7416 |
#: src/templates/wp-admin/settings/existing-backups-table.php:139
|
7417 |
msgid "Actions"
|
7418 |
msgstr ""
|
7419 |
|
7420 |
-
#: src/admin.php:
|
7421 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
7422 |
msgstr ""
|
7423 |
|
7424 |
-
#: src/admin.php:
|
7425 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
7426 |
msgstr ""
|
7427 |
|
7428 |
-
#: src/admin.php:
|
7429 |
msgid "No local copy present."
|
7430 |
msgstr ""
|
7431 |
|
7432 |
-
#: src/admin.php:
|
7433 |
msgid "Download in progress"
|
7434 |
msgstr ""
|
7435 |
|
7436 |
-
#: src/admin.php:818, src/admin.php:
|
7437 |
msgid "File ready."
|
7438 |
msgstr ""
|
7439 |
|
7440 |
-
#: src/admin.php:
|
7441 |
msgid "Download failed"
|
7442 |
msgstr ""
|
7443 |
|
7444 |
#: src/addons/wp-cli.php:518, src/admin.php:816,
|
7445 |
-
#: src/class-updraftplus.php:
|
7446 |
#: src/includes/class-filesystem-functions.php:368,
|
7447 |
#: src/includes/class-storage-methods-interface.php:324,
|
7448 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
7449 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
7450 |
-
#: src/methods/stream-base.php:219, src/restorer.php:
|
7451 |
-
#: src/restorer.php:
|
7452 |
msgid "Error"
|
7453 |
msgstr ""
|
7454 |
|
7455 |
-
#: src/admin.php:
|
7456 |
msgid "Could not find that job - perhaps it has already finished?"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
-
#: src/admin.php:
|
7460 |
msgid "Job deleted"
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: src/admin.php:
|
7464 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
7465 |
msgstr ""
|
7466 |
|
@@ -7468,41 +7542,41 @@ msgstr ""
|
|
7468 |
msgid "Nothing yet logged"
|
7469 |
msgstr ""
|
7470 |
|
7471 |
-
#: src/admin.php:
|
7472 |
msgid "Please consult this FAQ if you have problems backing up."
|
7473 |
msgstr ""
|
7474 |
|
7475 |
-
#: src/admin.php:
|
7476 |
msgid "Your website is hosted using the %s web server."
|
7477 |
msgstr ""
|
7478 |
|
7479 |
-
#: src/admin.php:
|
7480 |
msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
|
7481 |
msgstr ""
|
7482 |
|
7483 |
-
#: src/admin.php:
|
7484 |
msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
|
7485 |
msgstr ""
|
7486 |
|
7487 |
-
#: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:
|
7488 |
-
#: src/admin.php:
|
7489 |
-
#: src/admin.php:
|
7490 |
-
#: src/admin.php:
|
7491 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
7492 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
7493 |
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
7494 |
#: src/methods/updraftvault.php:306,
|
7495 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
7496 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
7497 |
-
#: src/udaddons/updraftplus-addons.php:
|
7498 |
msgid "Warning"
|
7499 |
msgstr ""
|
7500 |
|
7501 |
-
#: src/admin.php:
|
7502 |
msgid "Add-Ons / Pro Support"
|
7503 |
msgstr ""
|
7504 |
|
7505 |
-
#: src/admin.php:677, src/admin.php:
|
7506 |
msgid "Settings"
|
7507 |
msgstr ""
|
7508 |
|
@@ -7510,7 +7584,7 @@ msgstr ""
|
|
7510 |
msgid "Could not create %s zip. Consult the log file for more information."
|
7511 |
msgstr ""
|
7512 |
|
7513 |
-
#: src/backup.php:
|
7514 |
msgid "Infinite recursion: consult your log for more information"
|
7515 |
msgstr ""
|
7516 |
|
@@ -7522,7 +7596,7 @@ msgstr ""
|
|
7522 |
msgid "Like UpdraftPlus and can spare one minute?"
|
7523 |
msgstr ""
|
7524 |
|
7525 |
-
#: src/addons/azure.php:268, src/class-updraftplus.php:
|
7526 |
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
7527 |
msgid "File not found"
|
7528 |
msgstr ""
|
@@ -7531,29 +7605,29 @@ msgstr ""
|
|
7531 |
msgid "The decryption key used:"
|
7532 |
msgstr ""
|
7533 |
|
7534 |
-
#: src/class-updraftplus.php:
|
7535 |
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
|
7536 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
7537 |
msgstr ""
|
7538 |
|
7539 |
-
#: src/class-updraftplus.php:
|
7540 |
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
|
7541 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#: src/backup.php:
|
7545 |
msgid "Could not open the backup file for writing"
|
7546 |
msgstr ""
|
7547 |
|
7548 |
-
#: src/class-updraftplus.php:
|
7549 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#: src/class-updraftplus.php:
|
7553 |
msgid "Could not read the directory"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
-
#: src/admin.php:
|
7557 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
7558 |
msgstr ""
|
7559 |
|
@@ -7561,35 +7635,35 @@ msgstr ""
|
|
7561 |
msgid "WordPress backup is complete"
|
7562 |
msgstr ""
|
7563 |
|
7564 |
-
#: src/class-updraftplus.php:
|
7565 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
7566 |
msgstr ""
|
7567 |
|
7568 |
-
#: src/class-updraftplus.php:
|
7569 |
msgid "The backup apparently succeeded and is now complete"
|
7570 |
msgstr ""
|
7571 |
|
7572 |
-
#: src/addons/moredatabase.php:
|
7573 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: src/class-updraftplus.php:
|
7577 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
7578 |
msgstr ""
|
7579 |
|
7580 |
-
#: src/class-updraftplus.php:
|
7581 |
msgid "Others"
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: src/addons/multisite.php:500, src/class-updraftplus.php:
|
7585 |
msgid "Uploads"
|
7586 |
msgstr ""
|
7587 |
|
7588 |
-
#: src/class-updraftplus.php:
|
7589 |
msgid "Themes"
|
7590 |
msgstr ""
|
7591 |
|
7592 |
-
#: src/class-updraftplus.php:
|
7593 |
msgid "Plugins"
|
7594 |
msgstr ""
|
7595 |
|
@@ -7597,11 +7671,11 @@ msgstr ""
|
|
7597 |
msgid "No log files were found."
|
7598 |
msgstr ""
|
7599 |
|
7600 |
-
#: src/admin.php:
|
7601 |
msgid "The log file could not be read."
|
7602 |
msgstr ""
|
7603 |
|
7604 |
-
#: src/admin.php:
|
7605 |
#: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
|
7606 |
#: src/class-updraftplus.php:623, src/class-updraftplus.php:628
|
7607 |
msgid "UpdraftPlus notice:"
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
15 |
+
#: src/udaddons/updraftplus-addons.php:280
|
16 |
+
msgid "go here"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
20 |
+
#: src/udaddons/updraftplus-addons.php:280
|
21 |
+
msgid "If you have already renewed, then you need to allocate a licence to this site - %s"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: src/addons/onedrive.php:864
|
25 |
+
msgid "Authentication"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: src/admin.php:924
|
29 |
+
msgid "You must select at least one remote storage destination to upload this backup set to."
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: src/templates/wp-admin/settings/form-contents.php:350
|
33 |
+
msgid "Read more about Easy Updates Manager"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:68
|
37 |
+
msgid "You can find out more about clone keys here."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:57
|
41 |
+
msgid "Or, use an UpdraftClone key"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: src/restorer.php:2493
|
45 |
+
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: src/admin.php:951
|
49 |
+
msgid "UpdraftClone key is required."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: src/admin.php:942
|
53 |
+
msgid "The preparation of the clone data has been aborted."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: src/addons/azure.php:646
|
57 |
+
msgid "Azure Government"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
61 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
62 |
msgstr ""
|
69 |
msgid "Your database user does not have permission to drop tables"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: src/admin.php:2960
|
73 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
74 |
msgstr ""
|
75 |
|
237 |
msgid "WordPress installed"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: src/admin.php:5422
|
241 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: src/admin.php:3826
|
245 |
msgid "Exclude these from"
|
246 |
msgstr ""
|
247 |
|
281 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41
|
285 |
msgid "To create a temporary clone you need credit in your account."
|
286 |
msgstr ""
|
287 |
|
293 |
msgid "failed to upload file to %s (see log file for more)"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: src/admin.php:5418
|
297 |
msgid "Dashboard:"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: src/admin.php:5417
|
301 |
msgid "Front page:"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: src/admin.php:5416
|
305 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
306 |
msgstr ""
|
307 |
|
313 |
msgid "Current clones"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: src/class-updraftplus.php:3045
|
317 |
msgid "Your clone will now deploy this data to re-create your site."
|
318 |
msgstr ""
|
319 |
|
|
|
|
|
|
|
|
|
320 |
#: src/admin.php:941
|
321 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
322 |
msgstr ""
|
379 |
msgid "Account type"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56,
|
383 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:76
|
384 |
msgid "I accept the UpdraftClone terms and conditions"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56
|
388 |
msgid "Not got an account? Get one by buying some tokens here."
|
389 |
msgstr ""
|
390 |
|
391 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
392 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41,
|
393 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
394 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
398 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
402 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
406 |
msgid "Flexible"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
410 |
msgid "Takes just the time needed to create a backup and send it."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
414 |
msgid "Fast"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
418 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
422 |
msgid "Secure"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
426 |
msgid "Runs on capacity from a leading cloud computing provider."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
430 |
msgid "Reliable"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
434 |
msgid "Press the buttons... UpdraftClone does the work."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
438 |
msgid "Easy"
|
439 |
msgstr ""
|
440 |
|
441 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
442 |
+
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test things on your live site, you can UpdraftClone it, and then throw away your clone when done."
|
443 |
msgstr ""
|
444 |
|
445 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
446 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:39
|
447 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
448 |
msgstr ""
|
449 |
|
617 |
msgid "You can buy more temporary clone tokens here."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: src/admin.php:5373
|
621 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:35
|
625 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
626 |
msgstr ""
|
627 |
|
633 |
msgid "Other great plugins"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: src/admin.php:5420, src/admin.php:5423
|
637 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: src/class-updraftplus.php:4310
|
641 |
msgid "Choose a default for each table"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: src/admin.php:3274
|
645 |
msgid "Sending files to remote site"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: src/admin.php:3269
|
649 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
650 |
msgstr ""
|
651 |
|
657 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: src/admin.php:2796
|
661 |
msgid "Backup / Restore"
|
662 |
msgstr ""
|
663 |
|
681 |
msgid "No previous backup found to add an increment to."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: src/restorer.php:2499
|
685 |
msgid "Requested character set (%s) is not present - changing to %s."
|
686 |
msgstr ""
|
687 |
|
705 |
msgid "Refresh connection"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: src/addons/reporting.php:495
|
709 |
msgid "Log all messages to syslog"
|
710 |
msgstr ""
|
711 |
|
733 |
msgid "More information here."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: src/admin.php:669, src/admin.php:2797
|
737 |
msgid "Migrate / Clone"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: src/admin.php:3034, src/admin.php:3959,
|
741 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
742 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
743 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
763 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: src/admin.php:5396
|
767 |
msgid "(current version)"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: src/admin.php:3736
|
771 |
msgid "press here"
|
772 |
msgstr ""
|
773 |
|
781 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: src/addons/incremental.php:270
|
785 |
msgid "Tell me more"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: src/addons/incremental.php:258
|
789 |
msgid "And then add an incremental backup"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: src/addons/incremental.php:236, src/updraftplus.php:99
|
793 |
msgid "Every hour"
|
794 |
msgstr ""
|
795 |
|
801 |
msgid "Available temporary clone tokens:"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: src/admin.php:2884, src/includes/class-commands.php:901,
|
805 |
#: src/includes/class-commands.php:949,
|
806 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
807 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
808 |
msgid "Processing"
|
809 |
msgstr ""
|
820 |
msgid "I consent to %s"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: src/admin.php:2982,
|
824 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
825 |
msgid "One Time Password (check your OTP app to get this password)"
|
826 |
msgstr ""
|
869 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: src/admin.php:5342
|
873 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
874 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
875 |
msgstr[0] ""
|
972 |
msgid "Upload backup"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: src/admin.php:4246
|
976 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
977 |
msgstr ""
|
978 |
|
984 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: src/admin.php:844, src/admin.php:4246
|
988 |
msgid "Upload"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/addons/reporting.php:529, src/admin.php:794
|
992 |
msgid "Only email the database backup"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/addons/reporting.php:529
|
996 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: src/addons/reporting.php:529
|
1000 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
1001 |
msgstr ""
|
1002 |
|
1110 |
msgid "Select your incremental restore point"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: src/addons/morefiles.php:67
|
1114 |
msgid "(None configured)"
|
1115 |
msgstr ""
|
1116 |
|
1118 |
msgid "Ensure you are logged into the correct account before continuing."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: src/admin.php:4984
|
1122 |
msgid "Remote storage method and instance id are required for authentication."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: src/admin.php:4980
|
1126 |
msgid "authentication error"
|
1127 |
msgstr ""
|
1128 |
|
1200 |
msgstr[0] ""
|
1201 |
msgstr[1] ""
|
1202 |
|
1203 |
+
#: src/class-updraftplus.php:4287
|
1204 |
msgid "Your chosen replacement collation"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: src/class-updraftplus.php:4264
|
1208 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: src/class-updraftplus.php:4264
|
1212 |
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."
|
1213 |
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."
|
1214 |
msgstr[0] ""
|
1276 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: src/class-updraftplus.php:4240
|
1280 |
msgid "Your chosen character set to use instead:"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: src/class-updraftplus.php:4230
|
1284 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: src/class-updraftplus.php:4230
|
1288 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1289 |
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."
|
1290 |
msgstr[0] ""
|
1374 |
msgid "Account ID"
|
1375 |
msgstr "Акаунт ID"
|
1376 |
|
1377 |
+
#: src/class-updraftplus.php:4069
|
1378 |
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."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
|
1382 |
msgid "the migrator add-on"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: src/class-updraftplus.php:4067
|
1386 |
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."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: src/class-updraftplus.php:4065
|
1390 |
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."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: src/class-updraftplus.php:4060
|
1394 |
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."
|
1395 |
msgstr ""
|
1396 |
|
1406 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
|
1410 |
+
#: src/class-updraftplus.php:2252,
|
1411 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1412 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
|
1416 |
+
#: src/class-updraftplus.php:2245,
|
1417 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1418 |
msgid "A PHP exception (%s) has occurred: %s"
|
1419 |
msgstr ""
|
1467 |
msgid "Instant and secure logon with a wave of your phone."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: src/admin.php:5190
|
1471 |
msgid "Value"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: src/admin.php:1779
|
1475 |
msgid "Did not know how to delete from this cloud service."
|
1476 |
msgstr ""
|
1477 |
|
1487 |
msgid "Cloud Files"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: src/admin.php:4932
|
1491 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: src/admin.php:4891
|
1495 |
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."
|
1496 |
msgstr ""
|
1497 |
|
1500 |
msgid "UpdraftVault"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: src/includes/class-wpadmin-commands.php:529
|
1504 |
msgid "archive"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: src/includes/class-wpadmin-commands.php:520
|
1508 |
msgid "Extra database"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: src/admin.php:4102
|
1512 |
msgid "Press here to download or browse"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: src/admin.php:1332, src/admin.php:1342
|
1516 |
msgid "Error: invalid path"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: src/admin.php:1131
|
1520 |
msgid "An error occurred when fetching storage module options: "
|
1521 |
msgstr ""
|
1522 |
|
1552 |
msgid "Skipped tables:"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: src/class-updraftplus.php:4365
|
1556 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: src/admin.php:3020
|
1560 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: src/admin.php:3020
|
1564 |
msgid "All WordPress tables will be backed up."
|
1565 |
msgstr ""
|
1566 |
|
1592 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: src/addons/moredatabase.php:414
|
1596 |
msgid "tables"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: src/addons/moredatabase.php:413
|
1600 |
msgid "WordPress database"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: src/addons/moredatabase.php:406
|
1604 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1605 |
msgstr ""
|
1606 |
|
1719 |
msgid "Installed"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: src/templates/wp-admin/settings/tab-addons.php:43,
|
1723 |
+
#: src/templates/wp-admin/settings/tab-addons.php:65,
|
1724 |
+
#: src/templates/wp-admin/settings/tab-addons.php:78,
|
1725 |
+
#: src/templates/wp-admin/settings/tab-addons.php:91,
|
1726 |
+
#: src/templates/wp-admin/settings/tab-addons.php:104,
|
1727 |
+
#: src/templates/wp-admin/settings/tab-addons.php:117,
|
1728 |
+
#: src/templates/wp-admin/settings/tab-addons.php:130,
|
1729 |
+
#: src/templates/wp-admin/settings/tab-addons.php:143,
|
1730 |
+
#: src/templates/wp-admin/settings/tab-addons.php:156,
|
1731 |
+
#: src/templates/wp-admin/settings/tab-addons.php:169,
|
1732 |
+
#: src/templates/wp-admin/settings/tab-addons.php:182,
|
1733 |
+
#: src/templates/wp-admin/settings/tab-addons.php:195,
|
1734 |
+
#: src/templates/wp-admin/settings/tab-addons.php:208,
|
1735 |
+
#: src/templates/wp-admin/settings/tab-addons.php:221,
|
1736 |
+
#: src/templates/wp-admin/settings/tab-addons.php:234,
|
1737 |
+
#: src/templates/wp-admin/settings/tab-addons.php:251
|
1738 |
msgid "Free"
|
1739 |
msgstr ""
|
1740 |
|
1757 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: src/addons/morefiles.php:319
|
1761 |
msgid "Please choose a file or directory"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: src/addons/morefiles.php:312
|
1765 |
msgid "Confirm"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: src/addons/morefiles.php:307, src/addons/morefiles.php:307
|
1769 |
msgid "Go up a directory"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: src/addons/morefiles.php:304
|
1773 |
msgid "Add directory..."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: src/addons/morefiles.php:297, src/addons/morefiles.php:317,
|
1777 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1778 |
msgid "Edit"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: src/addons/morefiles.php:280
|
1782 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1783 |
msgstr ""
|
1784 |
|
1851 |
msgstr ""
|
1852 |
|
1853 |
#: src/includes/updraftplus-notices.php:238
|
1854 |
+
msgid "Happy New Year - 20% off UpdraftPlus Premium until January 14th"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
#: src/includes/updraftplus-notices.php:225
|
2037 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: src/admin.php:1862
|
2041 |
msgid "Remote files deleted:"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: src/admin.php:1861
|
2045 |
msgid "Local files deleted:"
|
2046 |
msgstr ""
|
2047 |
|
2097 |
msgid "Account is not authorized (%s)."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
|
2101 |
msgid "Your IP address:"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
|
2105 |
+
#: src/udaddons/updraftplus-addons.php:903
|
2106 |
msgid "To remove any block, please go here."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
|
2110 |
msgid "An error response was received; HTTP code:"
|
2111 |
msgstr ""
|
2112 |
|
2122 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: src/admin.php:2607
|
2126 |
msgid "To fix this problem go here."
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: src/admin.php:2607
|
2130 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2131 |
msgstr ""
|
2132 |
|
2158 |
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."
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: src/udaddons/updraftplus-addons.php:906
|
2162 |
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."
|
2163 |
msgstr ""
|
2164 |
|
2202 |
msgid "Public key was sent to:"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: src/backup.php:2353
|
2206 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: src/backup.php:2331
|
2210 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2211 |
msgstr ""
|
2212 |
|
2264 |
msgid "login"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: src/addons/reporting.php:527, src/addons/reporting.php:527,
|
2268 |
+
#: src/addons/reporting.php:529, src/methods/email.php:100
|
2269 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2270 |
msgstr ""
|
2271 |
|
2273 |
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."
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: src/class-updraftplus.php:1793
|
2277 |
msgid "Size: %s MB"
|
2278 |
msgstr ""
|
2279 |
|
2281 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
2285 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2286 |
msgstr ""
|
2287 |
|
2387 |
msgid "UpdraftCentral Connection"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: src/backup.php:1042, src/class-updraftplus.php:3026
|
2391 |
msgid "The backup was aborted by the user"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: src/admin.php:4927
|
2395 |
msgid "Your settings have been saved."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: src/admin.php:4007
|
2399 |
msgid "Total backup size:"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: src/admin.php:3414
|
2403 |
msgid "stop"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: src/admin.php:903, src/admin.php:3207
|
2407 |
msgid "The backup has finished running"
|
2408 |
msgstr ""
|
2409 |
|
2465 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: src/class-updraftplus.php:4138, src/restorer.php:2227
|
2469 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: src/class-updraftplus.php:4134
|
2473 |
msgid "Please read this link for important information on this process."
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: src/class-updraftplus.php:4134
|
2477 |
msgid "It will be imported as a new site."
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
|
2481 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2482 |
msgid "Dismiss"
|
2483 |
msgstr ""
|
2543 |
msgid "Call WordPress action:"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: src/admin.php:3030
|
2547 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2548 |
msgstr ""
|
2549 |
|
2575 |
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)."
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: src/admin.php:4801
|
2579 |
msgid "Send this backup to remote storage"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: src/admin.php:4799
|
2583 |
msgid "Check out UpdraftPlus Vault."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: src/admin.php:4799
|
2587 |
msgid "Not got any remote storage?"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: src/admin.php:4799
|
2591 |
msgid "settings"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: src/admin.php:4799
|
2595 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: src/admin.php:3028
|
2599 |
msgid "Include any files in the backup"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: src/admin.php:3012
|
2603 |
msgid "Include the database in the backup"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: src/admin.php:2839
|
2607 |
msgid "Continue restoration"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: src/admin.php:2834
|
2611 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: src/admin.php:2833
|
2615 |
msgid "Unfinished restoration"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: src/admin.php:2831
|
2619 |
msgid "%s minutes, %s seconds"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: src/admin.php:2697
|
2623 |
msgid "Backup Contents And Schedule"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/admin.php:2800
|
2627 |
msgid "Premium / Extensions"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: src/admin.php:2474, src/admin.php:2483
|
2631 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: src/addons/morefiles.php:71, src/admin.php:875
|
2635 |
msgctxt "(verb)"
|
2636 |
msgid "Download"
|
2637 |
msgstr ""
|
2644 |
msgid "Extensions"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: src/admin.php:685, src/admin.php:2799
|
2648 |
msgid "Advanced Tools"
|
2649 |
msgstr ""
|
2650 |
|
2763 |
msgid "Could not access container"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: src/class-updraftplus.php:3045
|
2767 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2768 |
msgstr ""
|
2769 |
|
2893 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: src/admin.php:1860
|
2897 |
msgid "Backup sets removed:"
|
2898 |
msgstr ""
|
2899 |
|
2933 |
msgid "Add an additional retention rule..."
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: src/restorer.php:2805
|
2937 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: src/restorer.php:2805
|
2941 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2942 |
msgstr ""
|
2943 |
|
2945 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4209
|
2949 |
msgid "You must upgrade MySQL to be able to use this database."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4209
|
2953 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/admin.php:2592
|
2957 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2958 |
msgstr ""
|
2959 |
|
2981 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: src/admin.php:1190
|
2985 |
msgid "Go to the remote storage settings in order to connect."
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: src/admin.php:1190
|
2989 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2990 |
msgstr ""
|
2991 |
|
3129 |
msgid "Delete failed:"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: src/backup.php:3431
|
3133 |
msgid "The zip engine returned the message: %s."
|
3134 |
msgstr ""
|
3135 |
|
3209 |
msgid "This storage method does not allow downloading"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: src/admin.php:4165
|
3213 |
msgid "(backup set imported from remote location)"
|
3214 |
msgstr ""
|
3215 |
|
3355 |
msgid "Adding..."
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: src/udaddons/options.php:294
|
3359 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: src/restorer.php:2807
|
3363 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3367 |
msgid "go here to change your password on updraftplus.com."
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3371 |
msgid "If you have forgotten your password "
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: src/udaddons/updraftplus-addons.php:938
|
3375 |
msgid "Go here to re-enter your password."
|
3376 |
msgstr ""
|
3377 |
|
3409 |
msgstr ""
|
3410 |
|
3411 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3412 |
+
msgid "authorization failed:"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
3585 |
|
3586 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3587 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3588 |
+
#: src/udaddons/updraftplus-addons.php:889,
|
3589 |
+
#: src/udaddons/updraftplus-addons.php:903
|
3590 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3591 |
msgstr ""
|
3592 |
|
3593 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3594 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3595 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3596 |
msgstr ""
|
3597 |
|
3598 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3599 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3600 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3601 |
msgstr ""
|
3602 |
|
3634 |
msgid "Dismiss (for %s months)"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: src/addons/fixtime.php:448
|
3638 |
msgid "(at same time as files backup)"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: src/admin.php:3701
|
3642 |
msgid "No backup has been completed"
|
3643 |
msgstr ""
|
3644 |
|
3712 |
msgid "Check this box to have a basic report sent to"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: src/admin.php:3715
|
3716 |
msgctxt "i.e. Non-automatic"
|
3717 |
msgid "Manual"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: src/restorer.php:2784
|
3721 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3722 |
msgid "An error (%s) occurred:"
|
3723 |
msgstr ""
|
3726 |
msgid "Change Lock Settings"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: src/addons/morefiles.php:258
|
3730 |
msgid "Any other file/directory on your server that you wish to backup"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
+
#: src/admin.php:2609
|
3734 |
msgid "For even more features and personal support, check out "
|
3735 |
msgstr ""
|
3736 |
|
3816 |
msgid "The admin password has now been removed."
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: src/addons/morefiles.php:141
|
3820 |
msgid "(learn more about this significant option)"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: src/udaddons/options.php:237
|
3824 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: src/admin.php:3207, src/admin.php:4276
|
3828 |
msgid "View Log"
|
3829 |
msgstr ""
|
3830 |
|
3843 |
msgid "and retain this many scheduled backups"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: src/admin.php:3671
|
3847 |
msgid "incremental backup; base backup: %s"
|
3848 |
msgstr ""
|
3849 |
|
3856 |
msgid "Upload files into UpdraftPlus."
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: src/admin.php:1136, src/includes/class-commands.php:462,
|
3860 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3861 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: src/class-updraftplus.php:4123
|
3865 |
msgid "Backup label:"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: src/addons/backblaze.php:205, src/admin.php:2111
|
3869 |
msgid "Error: unexpected file read fail"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: src/backup.php:3437
|
3873 |
msgid "check your log for more details."
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: src/backup.php:3435
|
3877 |
msgid "your web hosting account appears to be full; please see: %s"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: src/backup.php:3433
|
3881 |
msgid "A zip error occurred"
|
3882 |
msgstr ""
|
3883 |
|
3889 |
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."
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:942
|
3893 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:938
|
3897 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:804
|
3901 |
msgid "You need to supply both an email address and a password"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: src/class-updraftplus.php:4142
|
3905 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: src/class-updraftplus.php:4142
|
3909 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3910 |
msgstr ""
|
3911 |
|
3942 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: src/class-updraftplus.php:4115
|
3946 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: src/class-updraftplus.php:4115
|
3950 |
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."
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: src/class-updraftplus.php:4115
|
3954 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: src/class-updraftplus.php:4115
|
3958 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3959 |
msgstr ""
|
3960 |
|
3983 |
msgid "UpdraftPlus is on social media - check us out!"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: src/addons/wp-cli.php:907, src/admin.php:4464
|
3987 |
msgid "Why am I seeing this?"
|
3988 |
msgstr ""
|
3989 |
|
3997 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: src/admin.php:2048, src/admin.php:2060, src/includes/class-commands.php:833
|
4001 |
msgid "Start backup"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
4005 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: src/admin.php:3569
|
4009 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
4010 |
msgstr ""
|
4011 |
|
4013 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: src/admin.php:2286
|
4017 |
msgid "This file could not be uploaded"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: src/admin.php:2249
|
4021 |
msgid "You will find more information about this in the Settings section."
|
4022 |
msgstr ""
|
4023 |
|
4057 |
msgid "Backup succeeded"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: src/addons/incremental.php:237, src/addons/incremental.php:238,
|
4061 |
+
#: src/addons/incremental.php:239, src/addons/incremental.php:240,
|
4062 |
+
#: src/admin.php:3716, src/admin.php:3717, src/admin.php:3718,
|
4063 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4064 |
msgid "Every %s hours"
|
4065 |
msgstr ""
|
4098 |
msgid "search term"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: src/restorer.php:2812
|
4102 |
msgid "Too many database errors have occurred - aborting"
|
4103 |
msgstr ""
|
4104 |
|
4134 |
msgid "Free disk space in account:"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: src/admin.php:4898, src/templates/wp-admin/settings/take-backup.php:50
|
4138 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4139 |
msgstr ""
|
4140 |
|
4141 |
+
#: src/admin.php:817, src/admin.php:1916,
|
4142 |
#: src/includes/deprecated-actions.php:29,
|
4143 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4144 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
4146 |
msgid "Existing Backups"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
+
#: src/admin.php:1141
|
4150 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: src/admin.php:1141
|
4154 |
msgid "To make a backup, just press the Backup Now button."
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: src/admin.php:1141
|
4158 |
msgid "Welcome to UpdraftPlus!"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
+
#: src/addons/moredatabase.php:318
|
4162 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4163 |
msgstr ""
|
4164 |
|
4165 |
+
#: src/addons/moredatabase.php:257
|
4166 |
msgid "Testing..."
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: src/addons/moredatabase.php:244
|
4170 |
msgid "Test connection..."
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: src/addons/moredatabase.php:243
|
4174 |
msgid "Table prefix"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: src/addons/moredatabase.php:237
|
4178 |
msgid "Backup external database"
|
4179 |
msgstr ""
|
4180 |
|
4226 |
msgid "user"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: src/class-updraftplus.php:1790
|
4230 |
msgid "External database (%s)"
|
4231 |
msgstr ""
|
4232 |
|
4244 |
msgid "However, subsequent access attempts failed:"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: src/addons/wp-cli.php:437, src/admin.php:4032
|
4248 |
msgid "External database"
|
4249 |
msgstr ""
|
4250 |
|
4276 |
msgid "use UpdraftPlus Premium"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
+
#: src/class-updraftplus.php:3966
|
4280 |
msgid "Decryption failed. The database file is encrypted."
|
4281 |
msgstr ""
|
4282 |
|
4284 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: src/restorer.php:2284, src/restorer.php:2753, src/restorer.php:2794,
|
4288 |
+
#: src/restorer.php:2807
|
4289 |
msgid "An error occurred on the first %s command - aborting run"
|
4290 |
msgstr ""
|
4291 |
|
4331 |
msgid "Tenant"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: src/addons/wp-cli.php:800, src/admin.php:4586, src/admin.php:5342,
|
4335 |
#: src/methods/openstack2.php:144,
|
4336 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4337 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
4477 |
msgid "Failed to unpack the archive"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: src/class-updraftplus.php:1365
|
4481 |
msgid "Error - failed to download the file"
|
4482 |
msgstr ""
|
4483 |
|
4486 |
msgid "Rescan local folder for new backup sets"
|
4487 |
msgstr ""
|
4488 |
|
4489 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4490 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4491 |
msgstr ""
|
4492 |
|
4493 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4494 |
msgid "It has been tested up to version %s."
|
4495 |
msgstr ""
|
4496 |
|
4497 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4498 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4499 |
msgstr ""
|
4500 |
|
4503 |
msgstr ""
|
4504 |
|
4505 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4506 |
+
#: src/admin.php:5190, src/templates/wp-admin/settings/temporary-clone.php:63
|
4507 |
msgid "Key"
|
4508 |
msgstr ""
|
4509 |
|
4519 |
msgid "SCP/SFTP password/key"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4523 |
msgid "Files backup (created by %s)"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4527 |
msgid "Files and database WordPress backup (created by %s)"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: src/addons/importer.php:276, src/admin.php:4070,
|
4531 |
#: src/includes/class-backup-history.php:435
|
4532 |
msgid "Backup created by: %s."
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: src/addons/wp-cli.php:431, src/admin.php:4030
|
4536 |
msgid "Database (created by %s)"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
+
#: src/addons/wp-cli.php:429, src/admin.php:4024, src/admin.php:4072
|
4540 |
msgid "unknown source"
|
4541 |
msgstr ""
|
4542 |
|
4551 |
msgid "Upload backup files"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: src/admin.php:2301
|
4555 |
msgid "This backup was created by %s, and can be imported."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: src/admin.php:1170
|
4559 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: src/admin.php:1170
|
4563 |
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."
|
4564 |
msgstr ""
|
4565 |
|
4576 |
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))."
|
4577 |
msgstr ""
|
4578 |
|
4579 |
+
#: src/admin.php:4073, src/includes/class-wpadmin-commands.php:162,
|
4580 |
#: src/restorer.php:1975
|
4581 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4582 |
msgstr ""
|
4615 |
msgid "(Read more)"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: src/addons/reporting.php:496
|
4619 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: src/addons/morefiles.php:538
|
4623 |
msgid "No backup of location: there was nothing found to back up"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: src/addons/moredatabase.php:236, src/addons/morefiles.php:297,
|
4627 |
+
#: src/addons/morefiles.php:318
|
4628 |
msgid "Remove"
|
4629 |
msgstr ""
|
4630 |
|
4636 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4637 |
msgstr ""
|
4638 |
|
4639 |
+
#: src/addons/morefiles.php:476, src/admin.php:3829
|
4640 |
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."
|
4641 |
msgstr ""
|
4642 |
|
4665 |
msgid "Backup created by:"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: src/udaddons/options.php:479
|
4669 |
msgid "Available to claim on this site"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4673 |
msgid "To maintain your access to support, please renew."
|
4674 |
msgstr ""
|
4675 |
|
4676 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4677 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4678 |
msgstr ""
|
4679 |
|
4680 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4681 |
msgid "To regain your access, please renew."
|
4682 |
msgstr ""
|
4683 |
|
4684 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4685 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4689 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4690 |
msgstr ""
|
4691 |
|
4692 |
+
#: src/udaddons/updraftplus-addons.php:276,
|
4693 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4694 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/udaddons/updraftplus-addons.php:276
|
4698 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4702 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: src/udaddons/updraftplus-addons.php:266,
|
4706 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4707 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: src/udaddons/updraftplus-addons.php:266
|
4711 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4712 |
msgstr ""
|
4713 |
|
4714 |
+
#: src/udaddons/updraftplus-addons.php:228
|
4715 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4716 |
msgstr ""
|
4717 |
|
4728 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4729 |
msgstr ""
|
4730 |
|
4731 |
+
#: src/includes/class-wpadmin-commands.php:328
|
4732 |
msgid "Constants"
|
4733 |
msgstr ""
|
4734 |
|
4752 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
+
#: src/udaddons/updraftplus-addons.php:474,
|
4756 |
+
#: src/udaddons/updraftplus-addons.php:510
|
4757 |
msgid "Errors occurred:"
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: src/addons/wp-cli.php:664, src/admin.php:4506
|
4761 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4762 |
msgstr ""
|
4763 |
|
4781 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
+
#: src/admin.php:1145, src/class-updraftplus.php:847
|
4785 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4786 |
msgstr ""
|
4787 |
|
4794 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: src/addons/moredatabase.php:144, src/admin.php:1640
|
4798 |
msgid "Messages:"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: src/restorer.php:2647
|
4802 |
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"
|
4803 |
msgstr ""
|
4804 |
|
4956 |
msgstr ""
|
4957 |
|
4958 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4959 |
+
#: src/udaddons/options.php:229
|
4960 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4961 |
msgstr ""
|
4962 |
|
4972 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:4584
|
4976 |
msgid "Error data:"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: src/admin.php:4487
|
4980 |
msgid "Backup does not exist in the backup history"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: src/admin.php:3143
|
4984 |
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."
|
4985 |
msgstr ""
|
4986 |
|
5008 |
msgid "Moving old data out of the way..."
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: src/addons/reporting.php:481
|
5012 |
msgid "Add another address..."
|
5013 |
msgstr ""
|
5014 |
|
5015 |
+
#: src/addons/reporting.php:466
|
5016 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: src/addons/reporting.php:440
|
5020 |
msgid "Email reports"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
+
#: src/class-updraftplus.php:1798, src/class-updraftplus.php:1803
|
5024 |
msgid "%s checksum: %s"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: src/class-updraftplus.php:1734, src/class-updraftplus.php:1736
|
5028 |
msgid "files: %s"
|
5029 |
msgstr ""
|
5030 |
|
5036 |
msgid "Debugging information"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: src/addons/reporting.php:223, src/admin.php:3990
|
5040 |
msgid "Uploaded to:"
|
5041 |
msgstr ""
|
5042 |
|
5056 |
msgid "Errors / warnings:"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: src/addons/morefiles.php:129, src/addons/morefiles.php:130,
|
5060 |
#: src/addons/reporting.php:184
|
5061 |
msgid "Contains:"
|
5062 |
msgstr ""
|
5077 |
msgid "%d errors, %d warnings"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: src/methods/dropbox.php:753, src/methods/dropbox.php:775
|
|
|
5081 |
msgid "%s authentication"
|
5082 |
msgstr ""
|
5083 |
|
5108 |
msgid "Your site's admin email address (%s) will be used."
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/admin.php:853, src/admin.php:2874, src/methods/updraftvault.php:319,
|
5112 |
+
#: src/methods/updraftvault.php:362,
|
5113 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
5114 |
msgid "Connect"
|
5115 |
msgstr ""
|
5116 |
|
5118 |
msgid "For more reporting features, use the Reporting add-on."
|
5119 |
msgstr ""
|
5120 |
|
5121 |
+
#: src/class-updraftplus.php:4047
|
5122 |
msgid "(version: %s)"
|
5123 |
msgstr ""
|
5124 |
|
5126 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5127 |
msgstr ""
|
5128 |
|
5129 |
+
#: src/addons/reporting.php:527, src/admin.php:791
|
5130 |
msgid "When the Email storage method is enabled, also send the backup"
|
5131 |
msgstr ""
|
5132 |
|
5190 |
msgid "UpdraftPlus warning:"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
+
#: src/udaddons/options.php:485
|
5194 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5195 |
msgstr ""
|
5196 |
|
5218 |
msgid "UpdraftPlus Support"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
+
#: src/udaddons/options.php:357
|
5222 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5223 |
msgstr ""
|
5224 |
|
5225 |
+
#: src/udaddons/options.php:346, src/udaddons/updraftplus-addons.php:315
|
5226 |
msgid "UpdraftPlus Addons"
|
5227 |
msgstr ""
|
5228 |
|
5231 |
msgstr ""
|
5232 |
|
5233 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5234 |
+
#: src/udaddons/updraftplus-addons.php:949
|
5235 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:945
|
5239 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5243 |
+
#: src/udaddons/updraftplus-addons.php:908
|
5244 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: src/udaddons/updraftplus-addons.php:831
|
5248 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: src/udaddons/updraftplus-addons.php:829
|
5252 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5253 |
msgstr ""
|
5254 |
|
5259 |
msgid "Reporting"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: src/admin.php:5187
|
5263 |
msgid "Options (raw)"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: src/addons/reporting.php:525, src/admin.php:790
|
5267 |
msgid "Send a report only when there are warnings/errors"
|
5268 |
msgstr ""
|
5269 |
|
5279 |
msgid "See also the \"More Files\" add-on from our shop."
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: src/backup.php:3424, src/class-updraftplus.php:860
|
5283 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: src/class-updraftplus.php:844
|
5287 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: src/udaddons/options.php:508
|
5291 |
msgid "Manage Addons"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: src/udaddons/options.php:486, src/udaddons/options.php:486
|
5295 |
msgid "Buy It"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: src/udaddons/options.php:485
|
5299 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: src/udaddons/options.php:479, src/udaddons/options.php:481
|
5303 |
msgid "activate it on this site"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: src/udaddons/options.php:481
|
5307 |
msgid "You have an inactive purchase"
|
5308 |
msgstr ""
|
5309 |
|
5331 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: src/udaddons/options.php:296
|
5335 |
msgid "An unknown response was received. Response was:"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: src/udaddons/options.php:295
|
5339 |
msgid "Claim not granted - your account login details were wrong"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: src/udaddons/options.php:293
|
5343 |
msgid "Please wait whilst we make the claim..."
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: src/udaddons/options.php:247
|
5347 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: src/udaddons/options.php:240
|
5351 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: src/udaddons/options.php:236
|
5355 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: src/udaddons/options.php:235
|
5359 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: src/admin.php:2872
|
5363 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: src/admin.php:2948
|
5367 |
msgid "Forgotten your details?"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: src/admin.php:2861
|
5371 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: src/admin.php:2927
|
5375 |
msgid "Connect with your UpdraftPlus.Com account"
|
5376 |
msgstr ""
|
5377 |
|
5403 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: src/addons/moredatabase.php:313,
|
5407 |
#: src/includes/class-updraftplus-encryption.php:148
|
5408 |
msgid "Without it, encryption will be a lot slower."
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: src/addons/moredatabase.php:313,
|
5412 |
#: src/includes/class-updraftplus-encryption.php:148
|
5413 |
msgid "Your web-server does not have the %s module installed."
|
5414 |
msgstr ""
|
5459 |
msgid "You can send a backup to more than one destination with an add-on."
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: src/admin.php:3414
|
5463 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: src/admin.php:3281
|
5467 |
msgid "(%s%%, file %s of %s)"
|
5468 |
msgstr ""
|
5469 |
|
5504 |
msgid "%s settings test result:"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: src/admin.php:4138, src/admin.php:4140
|
5508 |
msgid "(Not finished)"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: src/admin.php:4140
|
5512 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5513 |
msgstr ""
|
5514 |
|
5520 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: src/admin.php:3382
|
5524 |
msgid "Job ID: %s"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: src/admin.php:3362
|
5528 |
msgid "last activity: %ss ago"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: src/admin.php:3361
|
5532 |
msgid "next resumption: %d (after %ss)"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: src/admin.php:3344, src/central/bootstrap.php:444,
|
5536 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5537 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5538 |
msgid "Unknown"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: src/admin.php:3295
|
5542 |
msgid "Backup finished"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: src/admin.php:3290
|
5546 |
msgid "Waiting until scheduled time to retry because of errors"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: src/admin.php:3286
|
5550 |
msgid "Pruning old backup sets"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: src/admin.php:3273
|
5554 |
msgid "Uploading files to remote storage"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: src/admin.php:3342
|
5558 |
msgid "Encrypted database"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
+
#: src/admin.php:3334
|
5562 |
msgid "Encrypting database"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: src/admin.php:3308
|
5566 |
msgid "Created database backup"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: src/admin.php:3321
|
5570 |
msgid "table: %s"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: src/admin.php:3319
|
5574 |
msgid "Creating database backup"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: src/admin.php:3264
|
5578 |
msgid "Created file backup zips"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: src/admin.php:3251
|
5582 |
msgid "Creating file backup zips"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
+
#: src/admin.php:3246
|
5586 |
msgid "Backup begun"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
+
#: src/admin.php:1149
|
5590 |
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."
|
5591 |
msgstr ""
|
5592 |
|
5602 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
+
#: src/class-updraftplus.php:3055
|
5606 |
msgid "The backup has not finished; a resumption is scheduled"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: src/class-updraftplus.php:2076
|
5610 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5611 |
msgstr ""
|
5612 |
|
5615 |
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)."
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: src/admin.php:2636
|
5619 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5620 |
msgstr ""
|
5621 |
|
5668 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5672 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5676 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: src/addons/morefiles.php:190
|
5680 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: src/addons/morefiles.php:180
|
5684 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5685 |
msgstr ""
|
5686 |
|
5695 |
msgid "Support"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: src/class-updraftplus.php:4370
|
5699 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: src/class-updraftplus.php:4362
|
5703 |
msgid "This database backup is missing core WordPress tables: %s"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: src/class-updraftplus.php:4108
|
5707 |
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."
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: src/class-updraftplus.php:4107, src/class-updraftplus.php:4114
|
5711 |
msgid "%s version: %s"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: src/class-updraftplus.php:3983
|
5715 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
5716 |
msgstr ""
|
5717 |
|
5718 |
+
#: src/addons/autobackup.php:1067, src/admin.php:974,
|
5719 |
#: src/includes/updraftplus-notices.php:171
|
5720 |
msgid "Be safe with an automatic backup"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: src/admin.php:2589
|
5724 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
5725 |
msgstr ""
|
5726 |
|
5768 |
msgid "Delete from your web server"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: src/admin.php:4110
|
5772 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
5773 |
msgstr ""
|
5774 |
|
5775 |
+
#: src/admin.php:4107
|
5776 |
msgid "(%d archive(s) in set)."
|
5777 |
msgstr ""
|
5778 |
|
5780 |
msgid "Split archives every:"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: src/addons/moredatabase.php:273
|
5784 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
5785 |
msgstr ""
|
5786 |
|
5792 |
msgid "Error: the server sent an empty response."
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: src/admin.php:2315
|
5796 |
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?"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: src/includes/class-wpadmin-commands.php:238
|
5800 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: src/includes/class-wpadmin-commands.php:236
|
5804 |
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."
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: src/includes/class-wpadmin-commands.php:234
|
5808 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
5809 |
msgstr ""
|
5810 |
|
5837 |
msgid "Moving unpacked backup into place..."
|
5838 |
msgstr ""
|
5839 |
|
5840 |
+
#: src/backup.php:3097, src/backup.php:3380
|
5841 |
msgid "Failed to open the zip file (%s) - %s"
|
5842 |
msgstr ""
|
5843 |
|
5844 |
+
#: src/addons/morefiles.php:168
|
5845 |
msgid "WordPress root directory server path: %s"
|
5846 |
msgstr ""
|
5847 |
|
5866 |
msgid "Looking for %s archive: file name: %s"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
+
#: src/addons/wp-cli.php:784, src/admin.php:4568
|
5870 |
msgid "Final checks"
|
5871 |
msgstr ""
|
5872 |
|
5878 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
+
#: src/admin.php:3815
|
5882 |
msgid "Your wp-content directory server path: %s"
|
5883 |
msgstr ""
|
5884 |
|
5899 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
5900 |
msgstr ""
|
5901 |
|
5902 |
+
#: src/class-updraftplus.php:3991
|
5903 |
msgid "Failed to open database file."
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: src/admin.php:5152
|
5907 |
msgid "Known backups (raw)"
|
5908 |
msgstr ""
|
5909 |
|
5921 |
|
5922 |
#: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
|
5923 |
#: src/addons/migrator.php:493, src/addons/migrator.php:496,
|
5924 |
+
#: src/admin.php:1149, src/admin.php:2594, src/backup.php:3431,
|
5925 |
+
#: src/class-updraftplus.php:4230, src/class-updraftplus.php:4230,
|
5926 |
#: src/updraftplus.php:157
|
5927 |
msgid "Go here for more information."
|
5928 |
msgstr ""
|
5931 |
msgid "Some files are still downloading or being processed - please wait."
|
5932 |
msgstr ""
|
5933 |
|
5934 |
+
#: src/class-updraftplus.php:4078, src/class-updraftplus.php:4098
|
5935 |
msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
5936 |
msgstr ""
|
5937 |
|
5938 |
+
#: src/addons/fixtime.php:571
|
5939 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5940 |
msgstr ""
|
5941 |
|
5942 |
+
#: src/addons/fixtime.php:571
|
5943 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5944 |
msgstr ""
|
5945 |
|
5983 |
msgid "%s error - failed to upload file"
|
5984 |
msgstr ""
|
5985 |
|
5986 |
+
#: src/class-updraftplus.php:1254, src/methods/cloudfiles.php:211
|
5987 |
msgid "%s error - failed to re-assemble chunks"
|
5988 |
msgstr ""
|
5989 |
|
5998 |
msgstr ""
|
5999 |
|
6000 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
|
6001 |
+
#: src/admin.php:2286, src/admin.php:2307, src/admin.php:2315,
|
6002 |
+
#: src/class-updraftplus.php:996, src/class-updraftplus.php:1002,
|
6003 |
+
#: src/class-updraftplus.php:3964, src/class-updraftplus.php:3966,
|
6004 |
+
#: src/class-updraftplus.php:4131, src/class-updraftplus.php:4138,
|
6005 |
+
#: src/class-updraftplus.php:4209, src/methods/googledrive.php:395,
|
6006 |
#: src/methods/s3.php:341
|
6007 |
msgid "Error: %s"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: src/admin.php:3734
|
6011 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
6012 |
msgstr ""
|
6013 |
|
6014 |
+
#: src/admin.php:3732
|
6015 |
msgid "Backup directory specified does <b>not</b> exist."
|
6016 |
msgstr ""
|
6017 |
|
6018 |
+
#: src/admin.php:3396, src/admin.php:3683
|
6019 |
msgid "Warning: %s"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
+
#: src/backup.php:3123
|
6023 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: src/backup.php:2418
|
6027 |
msgid "%s: unreadable file - could not be backed up"
|
6028 |
msgstr ""
|
6029 |
|
6031 |
msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: src/backup.php:1859
|
6035 |
msgid "An error occurred whilst closing the final database file"
|
6036 |
msgstr ""
|
6037 |
|
6039 |
msgid "Warnings encountered:"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
+
#: src/class-updraftplus.php:3039
|
6043 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
+
#: src/class-updraftplus.php:873
|
6047 |
msgid "Your free disk space is very low - only %s Mb remain"
|
6048 |
msgstr ""
|
6049 |
|
6095 |
msgid "Please supply the requested information, and then continue."
|
6096 |
msgstr ""
|
6097 |
|
6098 |
+
#: src/class-updraftplus.php:4149, src/restorer.php:2233
|
6099 |
msgid "Site information:"
|
6100 |
msgstr ""
|
6101 |
|
6103 |
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."
|
6104 |
msgstr ""
|
6105 |
|
6106 |
+
#: src/admin.php:2589, src/class-updraftplus.php:4142, src/restorer.php:2647
|
6107 |
msgid "Warning:"
|
6108 |
msgstr ""
|
6109 |
|
6110 |
+
#: src/class-updraftplus.php:4131, src/class-updraftplus.php:4134,
|
6111 |
#: src/restorer.php:530
|
6112 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
6113 |
msgstr ""
|
6116 |
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."
|
6117 |
msgstr ""
|
6118 |
|
6119 |
+
#: src/addons/azure.php:601, src/admin.php:3907,
|
6120 |
#: src/methods/updraftvault.php:306
|
6121 |
msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
6122 |
msgstr ""
|
6132 |
msgid "Unexpected response:"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: src/addons/reporting.php:523, src/admin.php:796
|
6136 |
msgid "To send to more than one address, separate each address with a comma."
|
6137 |
msgstr ""
|
6138 |
|
6160 |
msgid "Also delete from remote storage"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
+
#: src/admin.php:3085
|
6164 |
msgid "Latest UpdraftPlus.com news:"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
#: src/templates/wp-admin/settings/header.php:11,
|
6168 |
+
#: src/templates/wp-admin/settings/tab-addons.php:47,
|
6169 |
+
#: src/templates/wp-admin/settings/tab-addons.php:68,
|
6170 |
+
#: src/templates/wp-admin/settings/tab-addons.php:81,
|
6171 |
+
#: src/templates/wp-admin/settings/tab-addons.php:94,
|
6172 |
+
#: src/templates/wp-admin/settings/tab-addons.php:107,
|
6173 |
+
#: src/templates/wp-admin/settings/tab-addons.php:120,
|
6174 |
+
#: src/templates/wp-admin/settings/tab-addons.php:133,
|
6175 |
+
#: src/templates/wp-admin/settings/tab-addons.php:146,
|
6176 |
+
#: src/templates/wp-admin/settings/tab-addons.php:159,
|
6177 |
+
#: src/templates/wp-admin/settings/tab-addons.php:172,
|
6178 |
+
#: src/templates/wp-admin/settings/tab-addons.php:185,
|
6179 |
+
#: src/templates/wp-admin/settings/tab-addons.php:198,
|
6180 |
+
#: src/templates/wp-admin/settings/tab-addons.php:211,
|
6181 |
+
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6182 |
+
#: src/templates/wp-admin/settings/tab-addons.php:237,
|
6183 |
+
#: src/templates/wp-admin/settings/tab-addons.php:254
|
6184 |
msgid "Premium"
|
6185 |
msgstr ""
|
6186 |
|
6188 |
msgid "News"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
+
#: src/admin.php:1693, src/includes/class-wpadmin-commands.php:506
|
6192 |
msgid "Backup set not found"
|
6193 |
msgstr ""
|
6194 |
|
6219 |
msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
|
6220 |
msgstr ""
|
6221 |
|
6222 |
+
#: src/admin.php:1165
|
6223 |
msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
|
6224 |
msgstr ""
|
6225 |
|
6226 |
+
#: src/admin.php:1165
|
6227 |
msgid "Notice"
|
6228 |
msgstr ""
|
6229 |
|
6329 |
msgid "Multisite Install"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
+
#: src/addons/fixtime.php:571
|
6333 |
msgid "starting from next time it is"
|
6334 |
msgstr ""
|
6335 |
|
6357 |
msgid "Directory path"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
+
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
|
6361 |
+
#: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2943,
|
6362 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
6363 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
6364 |
msgid "Password"
|
6368 |
msgid "Port"
|
6369 |
msgstr ""
|
6370 |
|
6371 |
+
#: src/addons/moredatabase.php:239, src/addons/sftp.php:438,
|
6372 |
#: src/addons/webdav.php:199
|
6373 |
msgid "Host"
|
6374 |
msgstr ""
|
6389 |
msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
|
6390 |
msgstr ""
|
6391 |
|
6392 |
+
#: src/addons/morefiles.php:705
|
6393 |
msgid "No backup of %s directories: there was nothing found to back up"
|
6394 |
msgstr ""
|
6395 |
|
6396 |
+
#: src/addons/morefiles.php:282
|
6397 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
6398 |
msgstr ""
|
6399 |
|
6400 |
+
#: src/addons/morefiles.php:280
|
6401 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
6402 |
msgstr ""
|
6403 |
|
6404 |
+
#: src/addons/morefiles.php:259
|
6405 |
msgid "More Files"
|
6406 |
msgstr ""
|
6407 |
|
6408 |
+
#: src/addons/morefiles.php:167
|
6409 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
6410 |
msgstr ""
|
6411 |
|
6412 |
+
#: src/addons/morefiles.php:160
|
6413 |
msgid "The above files comprise everything in a WordPress installation."
|
6414 |
msgstr ""
|
6415 |
|
6416 |
+
#: src/addons/morefiles.php:141
|
6417 |
msgid "Over-write wp-config.php"
|
6418 |
msgstr ""
|
6419 |
|
6420 |
+
#: src/addons/morefiles.php:137, src/includes/class-wpadmin-commands.php:523
|
6421 |
msgid "WordPress Core"
|
6422 |
msgstr ""
|
6423 |
|
6426 |
msgstr ""
|
6427 |
|
6428 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
6429 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3462,
|
6430 |
+
#: src/admin.php:3498, src/admin.php:3508, src/methods/addon-base-v2.php:313,
|
6431 |
#: src/methods/stream-base.php:356
|
6432 |
msgid "Failed"
|
6433 |
msgstr ""
|
6635 |
msgid "Failure: No container details were given."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/addons/moredatabase.php:240, src/addons/sftp.php:452,
|
6639 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
6640 |
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
6641 |
msgid "Username"
|
6696 |
msgid "Test %s Settings"
|
6697 |
msgstr ""
|
6698 |
|
6699 |
+
#: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
|
6700 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
6701 |
msgid "Error opening local file: Failed to download"
|
6702 |
msgstr ""
|
6713 |
msgstr ""
|
6714 |
|
6715 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
6716 |
+
#: src/class-updraftplus.php:1139, src/methods/cloudfiles.php:130,
|
6717 |
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
6718 |
msgid "%s Error: Failed to open local file"
|
6719 |
msgstr ""
|
6827 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
6828 |
msgstr ""
|
6829 |
|
6830 |
+
#: src/admin.php:3466, src/admin.php:3501, src/admin.php:3505,
|
6831 |
#: src/includes/class-remote-send.php:326,
|
6832 |
#: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
|
6833 |
+
#: src/restorer.php:2888, src/restorer.php:2993
|
6834 |
msgid "OK"
|
6835 |
msgstr ""
|
6836 |
|
6837 |
+
#: src/restorer.php:2882, src/restorer.php:2957
|
6838 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
6839 |
msgstr ""
|
6840 |
|
6841 |
+
#: src/addons/migrator.php:1317, src/restorer.php:2784
|
6842 |
msgid "the database query being run was:"
|
6843 |
msgstr ""
|
6844 |
|
6846 |
msgid "will restore as:"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
+
#: src/class-updraftplus.php:4120, src/restorer.php:2215,
|
6850 |
#: src/restorer.php:2304, src/restorer.php:2330
|
6851 |
msgid "Old table prefix:"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
#: src/addons/reporting.php:72, src/addons/reporting.php:181,
|
6855 |
+
#: src/backup.php:1135, src/class-updraftplus.php:4047
|
6856 |
msgid "Backup of:"
|
6857 |
msgstr ""
|
6858 |
|
6940 |
msgid "Archive is expected to be size:"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
+
#: src/admin.php:4516
|
6944 |
msgid "If making a request for support, please include this information:"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
+
#: src/admin.php:4515
|
6948 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: src/addons/wp-cli.php:647, src/admin.php:4494
|
6952 |
msgid "UpdraftPlus Restoration: Progress"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
+
#: src/admin.php:4486
|
6956 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: src/admin.php:4168
|
6960 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
+
#: src/admin.php:4266
|
6964 |
msgid "Delete this backup set"
|
6965 |
msgstr ""
|
6966 |
|
6967 |
+
#: src/admin.php:3919
|
6968 |
msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
|
6969 |
msgstr ""
|
6970 |
|
6971 |
+
#: src/admin.php:3916
|
6972 |
msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
|
6973 |
msgstr ""
|
6974 |
|
6975 |
+
#: src/admin.php:3914
|
6976 |
msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
|
6977 |
msgstr ""
|
6978 |
|
7013 |
msgid "Use the server's SSL certificates"
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: src/admin.php:3736
|
7017 |
msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
|
7018 |
msgstr ""
|
7019 |
|
7020 |
+
#: src/admin.php:3736
|
7021 |
msgid "or, to reset this option"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
+
#: src/admin.php:3736
|
7025 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
7026 |
msgstr ""
|
7027 |
|
7028 |
+
#: src/admin.php:3728
|
7029 |
msgid "Backup directory specified is writable, which is good."
|
7030 |
msgstr ""
|
7031 |
|
7061 |
msgid "Requesting start of backup..."
|
7062 |
msgstr ""
|
7063 |
|
7064 |
+
#: src/addons/morefiles.php:311, src/admin.php:841
|
7065 |
msgid "Cancel"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
+
#: src/addons/incremental.php:235, src/addons/reporting.php:245,
|
7069 |
+
#: src/admin.php:4002
|
7070 |
msgid "None"
|
7071 |
msgstr ""
|
7072 |
|
7082 |
msgid "Database encryption phrase"
|
7083 |
msgstr ""
|
7084 |
|
7085 |
+
#: src/admin.php:2933, src/templates/wp-admin/settings/form-contents.php:255,
|
7086 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
7087 |
msgid "Email"
|
7088 |
msgstr ""
|
7091 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
7092 |
msgstr ""
|
7093 |
|
7094 |
+
#: src/addons/morefiles.php:473
|
7095 |
msgid "Exclude these:"
|
7096 |
msgstr ""
|
7097 |
|
7098 |
+
#: src/admin.php:3815
|
7099 |
msgid "Any other directories found inside wp-content"
|
7100 |
msgstr ""
|
7101 |
|
7111 |
msgid "To fix the time at which a backup should take place,"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
+
#: src/addons/incremental.php:244, src/admin.php:3722
|
7115 |
msgid "Monthly"
|
7116 |
msgstr ""
|
7117 |
|
7118 |
+
#: src/addons/incremental.php:243, src/admin.php:3721
|
7119 |
msgid "Fortnightly"
|
7120 |
msgstr ""
|
7121 |
|
7122 |
+
#: src/addons/incremental.php:242, src/admin.php:3720
|
7123 |
msgid "Weekly"
|
7124 |
msgstr ""
|
7125 |
|
7126 |
+
#: src/addons/incremental.php:241, src/admin.php:3719
|
7127 |
msgid "Daily"
|
7128 |
msgstr ""
|
7129 |
|
7130 |
+
#: src/admin.php:849, src/admin.php:3697
|
7131 |
msgid "Download log file"
|
7132 |
msgstr ""
|
7133 |
|
7134 |
+
#: src/admin.php:3569
|
7135 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
7136 |
msgstr ""
|
7137 |
|
7138 |
+
#: src/admin.php:3564
|
7139 |
msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
|
7140 |
msgstr ""
|
7141 |
|
7142 |
+
#: src/admin.php:3550
|
7143 |
msgid "The request to the filesystem to create the directory failed."
|
7144 |
msgstr ""
|
7145 |
|
7146 |
+
#: src/admin.php:842, src/admin.php:3459, src/admin.php:3493,
|
7147 |
+
#: src/admin.php:4266, src/includes/class-remote-send.php:543,
|
7148 |
#: src/templates/wp-admin/settings/existing-backups-table.php:155,
|
7149 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
7150 |
msgid "Delete"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
+
#: src/admin.php:3413
|
7154 |
msgid "show log"
|
7155 |
msgstr ""
|
7156 |
|
7211 |
msgid "Yes"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
+
#: src/admin.php:5364, src/admin.php:5368,
|
7215 |
#: src/templates/wp-admin/advanced/site-info.php:45,
|
7216 |
#: src/templates/wp-admin/advanced/site-info.php:51,
|
7217 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
7251 |
msgid "Do read this helpful article of useful things to know before restoring."
|
7252 |
msgstr ""
|
7253 |
|
7254 |
+
#: src/class-updraftplus.php:4081
|
7255 |
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"
|
7256 |
msgstr ""
|
7257 |
|
7258 |
+
#: src/addons/morefiles.php:137,
|
7259 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
|
7260 |
msgid "%s restoration options:"
|
7261 |
msgstr ""
|
7366 |
msgid "More tasks:"
|
7367 |
msgstr ""
|
7368 |
|
7369 |
+
#: src/admin.php:3112
|
7370 |
msgid "Download most recently modified log file"
|
7371 |
msgstr ""
|
7372 |
|
7375 |
msgstr ""
|
7376 |
|
7377 |
#: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
|
7378 |
+
#: src/admin.php:3068, src/admin.php:3074,
|
7379 |
#: src/templates/wp-admin/settings/take-backup.php:64
|
7380 |
msgid "Last log message"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
#: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
|
7384 |
+
#: src/admin.php:4168
|
7385 |
msgid "Restore"
|
7386 |
msgstr ""
|
7387 |
|
7393 |
msgid "Time now"
|
7394 |
msgstr ""
|
7395 |
|
7396 |
+
#: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
|
7397 |
+
#: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:3977,
|
7398 |
+
#: src/admin.php:4030, src/includes/class-remote-send.php:330,
|
7399 |
#: src/includes/class-wpadmin-commands.php:157,
|
7400 |
+
#: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
|
7401 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
|
7402 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75,
|
7403 |
#: src/templates/wp-admin/settings/take-backup.php:33
|
7404 |
msgid "Database"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
+
#: src/admin.php:332, src/admin.php:5159,
|
7408 |
#: src/templates/wp-admin/settings/take-backup.php:23
|
7409 |
msgid "Files"
|
7410 |
msgstr ""
|
7430 |
msgid "JavaScript warning"
|
7431 |
msgstr ""
|
7432 |
|
7433 |
+
#: src/admin.php:826, src/admin.php:3149
|
7434 |
msgid "Delete Old Directories"
|
7435 |
msgstr ""
|
7436 |
|
7437 |
+
#: src/admin.php:2636
|
7438 |
msgid "Current limit is:"
|
7439 |
msgstr ""
|
7440 |
|
7441 |
+
#: src/admin.php:2611
|
7442 |
msgid "Your backup has been restored."
|
7443 |
msgstr ""
|
7444 |
|
7454 |
msgid "UpdraftPlus.Com"
|
7455 |
msgstr ""
|
7456 |
|
7457 |
+
#: src/admin.php:5051
|
7458 |
msgid "Your settings have been wiped."
|
7459 |
msgstr ""
|
7460 |
|
7461 |
+
#: src/admin.php:2571
|
7462 |
msgid "Backup directory successfully created."
|
7463 |
msgstr ""
|
7464 |
|
7465 |
+
#: src/admin.php:2564
|
7466 |
msgid "Backup directory could not be created"
|
7467 |
msgstr ""
|
7468 |
|
7469 |
+
#: src/admin.php:3429
|
7470 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
7471 |
msgstr ""
|
7472 |
|
7473 |
+
#: src/admin.php:3427
|
7474 |
msgid "Old directories successfully removed."
|
7475 |
msgstr ""
|
7476 |
|
7477 |
+
#: src/admin.php:3424, src/admin.php:3424
|
7478 |
msgid "Remove old directories"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
#: src/addons/migrator.php:340, src/addons/migrator.php:355,
|
7482 |
+
#: src/admin.php:2512, src/admin.php:2522, src/admin.php:2531,
|
7483 |
+
#: src/admin.php:2573, src/admin.php:3431
|
7484 |
msgid "Return to UpdraftPlus Configuration"
|
7485 |
msgstr ""
|
7486 |
|
7487 |
+
#: src/admin.php:819, src/admin.php:2512, src/admin.php:2522,
|
7488 |
+
#: src/admin.php:2531, src/admin.php:2573, src/admin.php:3431,
|
7489 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
7490 |
#: src/templates/wp-admin/settings/existing-backups-table.php:139
|
7491 |
msgid "Actions"
|
7492 |
msgstr ""
|
7493 |
|
7494 |
+
#: src/admin.php:2407
|
7495 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
7496 |
msgstr ""
|
7497 |
|
7498 |
+
#: src/admin.php:2307
|
7499 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
7500 |
msgstr ""
|
7501 |
|
7502 |
+
#: src/admin.php:2203
|
7503 |
msgid "No local copy present."
|
7504 |
msgstr ""
|
7505 |
|
7506 |
+
#: src/admin.php:2200
|
7507 |
msgid "Download in progress"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
+
#: src/admin.php:818, src/admin.php:2189
|
7511 |
msgid "File ready."
|
7512 |
msgstr ""
|
7513 |
|
7514 |
+
#: src/admin.php:2170
|
7515 |
msgid "Download failed"
|
7516 |
msgstr ""
|
7517 |
|
7518 |
#: src/addons/wp-cli.php:518, src/admin.php:816,
|
7519 |
+
#: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
|
7520 |
#: src/includes/class-filesystem-functions.php:368,
|
7521 |
#: src/includes/class-storage-methods-interface.php:324,
|
7522 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
7523 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
7524 |
+
#: src/methods/stream-base.php:219, src/restorer.php:2884,
|
7525 |
+
#: src/restorer.php:2909, src/restorer.php:2990, src/updraftplus.php:157
|
7526 |
msgid "Error"
|
7527 |
msgstr ""
|
7528 |
|
7529 |
+
#: src/admin.php:1957
|
7530 |
msgid "Could not find that job - perhaps it has already finished?"
|
7531 |
msgstr ""
|
7532 |
|
7533 |
+
#: src/admin.php:1949
|
7534 |
msgid "Job deleted"
|
7535 |
msgstr ""
|
7536 |
|
7537 |
+
#: src/admin.php:2048, src/includes/class-commands.php:833
|
7538 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
7539 |
msgstr ""
|
7540 |
|
7542 |
msgid "Nothing yet logged"
|
7543 |
msgstr ""
|
7544 |
|
7545 |
+
#: src/admin.php:1161
|
7546 |
msgid "Please consult this FAQ if you have problems backing up."
|
7547 |
msgstr ""
|
7548 |
|
7549 |
+
#: src/admin.php:1161
|
7550 |
msgid "Your website is hosted using the %s web server."
|
7551 |
msgstr ""
|
7552 |
|
7553 |
+
#: src/admin.php:1157
|
7554 |
msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
|
7555 |
msgstr ""
|
7556 |
|
7557 |
+
#: src/admin.php:1153
|
7558 |
msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
|
7559 |
msgstr ""
|
7560 |
|
7561 |
+
#: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1145,
|
7562 |
+
#: src/admin.php:1149, src/admin.php:1153, src/admin.php:1157,
|
7563 |
+
#: src/admin.php:1161, src/admin.php:1170, src/admin.php:3907,
|
7564 |
+
#: src/admin.php:3914, src/admin.php:3916, src/admin.php:5342,
|
7565 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
7566 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
7567 |
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
7568 |
#: src/methods/updraftvault.php:306,
|
7569 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
7570 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
7571 |
+
#: src/udaddons/updraftplus-addons.php:259
|
7572 |
msgid "Warning"
|
7573 |
msgstr ""
|
7574 |
|
7575 |
+
#: src/admin.php:1090
|
7576 |
msgid "Add-Ons / Pro Support"
|
7577 |
msgstr ""
|
7578 |
|
7579 |
+
#: src/admin.php:677, src/admin.php:1088, src/admin.php:2798
|
7580 |
msgid "Settings"
|
7581 |
msgstr ""
|
7582 |
|
7584 |
msgid "Could not create %s zip. Consult the log file for more information."
|
7585 |
msgstr ""
|
7586 |
|
7587 |
+
#: src/backup.php:2298
|
7588 |
msgid "Infinite recursion: consult your log for more information"
|
7589 |
msgstr ""
|
7590 |
|
7596 |
msgid "Like UpdraftPlus and can spare one minute?"
|
7597 |
msgstr ""
|
7598 |
|
7599 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3769,
|
7600 |
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
7601 |
msgid "File not found"
|
7602 |
msgstr ""
|
7605 |
msgid "The decryption key used:"
|
7606 |
msgstr ""
|
7607 |
|
7608 |
+
#: src/class-updraftplus.php:3976,
|
7609 |
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
|
7610 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
7611 |
msgstr ""
|
7612 |
|
7613 |
+
#: src/class-updraftplus.php:3964,
|
7614 |
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
|
7615 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
7616 |
msgstr ""
|
7617 |
|
7618 |
+
#: src/backup.php:2172
|
7619 |
msgid "Could not open the backup file for writing"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
+
#: src/class-updraftplus.php:3531
|
7623 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
7624 |
msgstr ""
|
7625 |
|
7626 |
+
#: src/class-updraftplus.php:3515
|
7627 |
msgid "Could not read the directory"
|
7628 |
msgstr ""
|
7629 |
|
7630 |
+
#: src/admin.php:2249, src/backup.php:1359
|
7631 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
7632 |
msgstr ""
|
7633 |
|
7635 |
msgid "WordPress backup is complete"
|
7636 |
msgstr ""
|
7637 |
|
7638 |
+
#: src/class-updraftplus.php:3051
|
7639 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
7640 |
msgstr ""
|
7641 |
|
7642 |
+
#: src/class-updraftplus.php:3033
|
7643 |
msgid "The backup apparently succeeded and is now complete"
|
7644 |
msgstr ""
|
7645 |
|
7646 |
+
#: src/addons/moredatabase.php:388
|
7647 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
7648 |
msgstr ""
|
7649 |
|
7650 |
+
#: src/class-updraftplus.php:2733
|
7651 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
7652 |
msgstr ""
|
7653 |
|
7654 |
+
#: src/class-updraftplus.php:1850
|
7655 |
msgid "Others"
|
7656 |
msgstr ""
|
7657 |
|
7658 |
+
#: src/addons/multisite.php:500, src/class-updraftplus.php:1835
|
7659 |
msgid "Uploads"
|
7660 |
msgstr ""
|
7661 |
|
7662 |
+
#: src/class-updraftplus.php:1834
|
7663 |
msgid "Themes"
|
7664 |
msgstr ""
|
7665 |
|
7666 |
+
#: src/class-updraftplus.php:1833
|
7667 |
msgid "Plugins"
|
7668 |
msgstr ""
|
7669 |
|
7671 |
msgid "No log files were found."
|
7672 |
msgstr ""
|
7673 |
|
7674 |
+
#: src/admin.php:2119, src/admin.php:2123, src/class-updraftplus.php:618
|
7675 |
msgid "The log file could not be read."
|
7676 |
msgstr ""
|
7677 |
|
7678 |
+
#: src/admin.php:1190, src/admin.php:1211, src/admin.php:1230,
|
7679 |
#: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
|
7680 |
#: src/class-updraftplus.php:623, src/class-updraftplus.php:628
|
7681 |
msgid "UpdraftPlus notice:"
|
@@ -11,6 +11,52 @@ msgstr ""
|
|
11 |
"Language: bn\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
15 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
16 |
msgstr ""
|
@@ -23,7 +69,7 @@ msgstr ""
|
|
23 |
msgid "Your database user does not have permission to drop tables"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
28 |
msgstr ""
|
29 |
|
@@ -191,11 +237,11 @@ msgstr ""
|
|
191 |
msgid "WordPress installed"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: src/admin.php:
|
195 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: src/admin.php:
|
199 |
msgid "Exclude these from"
|
200 |
msgstr ""
|
201 |
|
@@ -235,7 +281,7 @@ msgstr ""
|
|
235 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
239 |
msgid "To create a temporary clone you need credit in your account."
|
240 |
msgstr ""
|
241 |
|
@@ -247,15 +293,15 @@ msgstr ""
|
|
247 |
msgid "failed to upload file to %s (see log file for more)"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/admin.php:
|
251 |
msgid "Dashboard:"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/admin.php:
|
255 |
msgid "Front page:"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/admin.php:
|
259 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
260 |
msgstr ""
|
261 |
|
@@ -267,14 +313,10 @@ msgstr ""
|
|
267 |
msgid "Current clones"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/class-updraftplus.php:
|
271 |
msgid "Your clone will now deploy this data to re-create your site."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/admin.php:942
|
275 |
-
msgid "The backup for the clone has been aborted."
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
#: src/admin.php:941
|
279 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
280 |
msgstr ""
|
@@ -337,70 +379,71 @@ msgstr ""
|
|
337 |
msgid "Account type"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
|
|
341 |
msgid "I accept the UpdraftClone terms and conditions"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
345 |
msgid "Not got an account? Get one by buying some tokens here."
|
346 |
msgstr ""
|
347 |
|
348 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
349 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
350 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
351 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
355 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
359 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
363 |
msgid "Flexible"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
367 |
msgid "Takes just the time needed to create a backup and send it."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
371 |
msgid "Fast"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
375 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
379 |
msgid "Secure"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
383 |
msgid "Runs on capacity from a leading cloud computing provider."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
387 |
msgid "Reliable"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
391 |
msgid "Press the buttons... UpdraftClone does the work."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
395 |
msgid "Easy"
|
396 |
msgstr ""
|
397 |
|
398 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
399 |
-
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test
|
400 |
msgstr ""
|
401 |
|
402 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
403 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
404 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
405 |
msgstr ""
|
406 |
|
@@ -574,11 +617,11 @@ msgstr ""
|
|
574 |
msgid "You can buy more temporary clone tokens here."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: src/admin.php:
|
578 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
582 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
583 |
msgstr ""
|
584 |
|
@@ -590,19 +633,19 @@ msgstr ""
|
|
590 |
msgid "Other great plugins"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: src/admin.php:
|
594 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: src/class-updraftplus.php:
|
598 |
msgid "Choose a default for each table"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: src/admin.php:
|
602 |
msgid "Sending files to remote site"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: src/admin.php:
|
606 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
607 |
msgstr ""
|
608 |
|
@@ -614,7 +657,7 @@ msgstr ""
|
|
614 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: src/admin.php:
|
618 |
msgid "Backup / Restore"
|
619 |
msgstr ""
|
620 |
|
@@ -638,7 +681,7 @@ msgstr ""
|
|
638 |
msgid "No previous backup found to add an increment to."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: src/restorer.php:
|
642 |
msgid "Requested character set (%s) is not present - changing to %s."
|
643 |
msgstr ""
|
644 |
|
@@ -662,7 +705,7 @@ msgstr ""
|
|
662 |
msgid "Refresh connection"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: src/addons/reporting.php:
|
666 |
msgid "Log all messages to syslog"
|
667 |
msgstr ""
|
668 |
|
@@ -690,11 +733,11 @@ msgstr ""
|
|
690 |
msgid "More information here."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: src/admin.php:669, src/admin.php:
|
694 |
msgid "Migrate / Clone"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: src/admin.php:
|
698 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
699 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
700 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
@@ -720,11 +763,11 @@ msgstr ""
|
|
720 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: src/admin.php:
|
724 |
msgid "(current version)"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: src/admin.php:
|
728 |
msgid "press here"
|
729 |
msgstr ""
|
730 |
|
@@ -738,15 +781,15 @@ msgstr ""
|
|
738 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: src/addons/incremental.php:
|
742 |
msgid "Tell me more"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: src/addons/incremental.php:
|
746 |
msgid "And then add an incremental backup"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: src/addons/incremental.php:
|
750 |
msgid "Every hour"
|
751 |
msgstr ""
|
752 |
|
@@ -758,8 +801,9 @@ msgstr ""
|
|
758 |
msgid "Available temporary clone tokens:"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: src/admin.php:
|
762 |
#: src/includes/class-commands.php:949,
|
|
|
763 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
764 |
msgid "Processing"
|
765 |
msgstr ""
|
@@ -776,7 +820,7 @@ msgstr ""
|
|
776 |
msgid "I consent to %s"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: src/admin.php:
|
780 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
781 |
msgid "One Time Password (check your OTP app to get this password)"
|
782 |
msgstr ""
|
@@ -825,7 +869,7 @@ msgstr ""
|
|
825 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: src/admin.php:
|
829 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
830 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
831 |
msgstr[0] ""
|
@@ -928,7 +972,7 @@ msgstr ""
|
|
928 |
msgid "Upload backup"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: src/admin.php:
|
932 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
933 |
msgstr ""
|
934 |
|
@@ -940,19 +984,19 @@ msgstr ""
|
|
940 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: src/admin.php:844, src/admin.php:
|
944 |
msgid "Upload"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: src/addons/reporting.php:
|
948 |
msgid "Only email the database backup"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: src/addons/reporting.php:
|
952 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: src/addons/reporting.php:
|
956 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
957 |
msgstr ""
|
958 |
|
@@ -1066,7 +1110,7 @@ msgstr ""
|
|
1066 |
msgid "Select your incremental restore point"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: src/addons/morefiles.php:
|
1070 |
msgid "(None configured)"
|
1071 |
msgstr ""
|
1072 |
|
@@ -1074,11 +1118,11 @@ msgstr ""
|
|
1074 |
msgid "Ensure you are logged into the correct account before continuing."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: src/admin.php:
|
1078 |
msgid "Remote storage method and instance id are required for authentication."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: src/admin.php:
|
1082 |
msgid "authentication error"
|
1083 |
msgstr ""
|
1084 |
|
@@ -1156,15 +1200,15 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
|
|
1156 |
msgstr[0] ""
|
1157 |
msgstr[1] ""
|
1158 |
|
1159 |
-
#: src/class-updraftplus.php:
|
1160 |
msgid "Your chosen replacement collation"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: src/class-updraftplus.php:
|
1164 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: src/class-updraftplus.php:
|
1168 |
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."
|
1169 |
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."
|
1170 |
msgstr[0] ""
|
@@ -1232,15 +1276,15 @@ msgstr[1] ""
|
|
1232 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: src/class-updraftplus.php:
|
1236 |
msgid "Your chosen character set to use instead:"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: src/class-updraftplus.php:
|
1240 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: src/class-updraftplus.php:
|
1244 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1245 |
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."
|
1246 |
msgstr[0] ""
|
@@ -1330,23 +1374,23 @@ msgstr ""
|
|
1330 |
msgid "Account ID"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: src/class-updraftplus.php:
|
1334 |
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."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: src/class-updraftplus.php:
|
1338 |
msgid "the migrator add-on"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: src/class-updraftplus.php:
|
1342 |
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."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: src/class-updraftplus.php:
|
1346 |
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."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: src/class-updraftplus.php:
|
1350 |
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."
|
1351 |
msgstr ""
|
1352 |
|
@@ -1362,14 +1406,14 @@ msgstr ""
|
|
1362 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: src/backup.php:456, src/backup.php:
|
1366 |
-
#: src/class-updraftplus.php:
|
1367 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1368 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: src/backup.php:450, src/backup.php:
|
1372 |
-
#: src/class-updraftplus.php:
|
1373 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1374 |
msgid "A PHP exception (%s) has occurred: %s"
|
1375 |
msgstr ""
|
@@ -1423,11 +1467,11 @@ msgstr ""
|
|
1423 |
msgid "Instant and secure logon with a wave of your phone."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/admin.php:
|
1427 |
msgid "Value"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/admin.php:
|
1431 |
msgid "Did not know how to delete from this cloud service."
|
1432 |
msgstr ""
|
1433 |
|
@@ -1443,11 +1487,11 @@ msgstr ""
|
|
1443 |
msgid "Cloud Files"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: src/admin.php:
|
1447 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: src/admin.php:
|
1451 |
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."
|
1452 |
msgstr ""
|
1453 |
|
@@ -1456,23 +1500,23 @@ msgstr ""
|
|
1456 |
msgid "UpdraftVault"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: src/includes/class-wpadmin-commands.php:
|
1460 |
msgid "archive"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: src/includes/class-wpadmin-commands.php:
|
1464 |
msgid "Extra database"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: src/admin.php:
|
1468 |
msgid "Press here to download or browse"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: src/admin.php:
|
1472 |
msgid "Error: invalid path"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: src/admin.php:
|
1476 |
msgid "An error occurred when fetching storage module options: "
|
1477 |
msgstr ""
|
1478 |
|
@@ -1508,15 +1552,15 @@ msgstr ""
|
|
1508 |
msgid "Skipped tables:"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: src/class-updraftplus.php:
|
1512 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: src/admin.php:
|
1516 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: src/admin.php:
|
1520 |
msgid "All WordPress tables will be backed up."
|
1521 |
msgstr ""
|
1522 |
|
@@ -1548,15 +1592,15 @@ msgstr ""
|
|
1548 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: src/addons/moredatabase.php:
|
1552 |
msgid "tables"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: src/addons/moredatabase.php:
|
1556 |
msgid "WordPress database"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: src/addons/moredatabase.php:
|
1560 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1561 |
msgstr ""
|
1562 |
|
@@ -1675,7 +1719,22 @@ msgstr ""
|
|
1675 |
msgid "Installed"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: src/templates/wp-admin/settings/tab-addons.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1679 |
msgid "Free"
|
1680 |
msgstr ""
|
1681 |
|
@@ -1698,28 +1757,28 @@ msgstr ""
|
|
1698 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: src/addons/morefiles.php:
|
1702 |
msgid "Please choose a file or directory"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: src/addons/morefiles.php:
|
1706 |
msgid "Confirm"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: src/addons/morefiles.php:
|
1710 |
msgid "Go up a directory"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: src/addons/morefiles.php:
|
1714 |
msgid "Add directory..."
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: src/addons/morefiles.php:
|
1718 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1719 |
msgid "Edit"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: src/addons/morefiles.php:
|
1723 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1724 |
msgstr ""
|
1725 |
|
@@ -1792,7 +1851,7 @@ msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
|
|
1792 |
msgstr ""
|
1793 |
|
1794 |
#: src/includes/updraftplus-notices.php:238
|
1795 |
-
msgid "Happy New Year - 20% off UpdraftPlus Premium until January
|
1796 |
msgstr ""
|
1797 |
|
1798 |
#: src/includes/updraftplus-notices.php:225
|
@@ -1978,11 +2037,11 @@ msgstr ""
|
|
1978 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: src/admin.php:
|
1982 |
msgid "Remote files deleted:"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: src/admin.php:
|
1986 |
msgid "Local files deleted:"
|
1987 |
msgstr ""
|
1988 |
|
@@ -2038,16 +2097,16 @@ msgstr ""
|
|
2038 |
msgid "Account is not authorized (%s)."
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2042 |
msgid "Your IP address:"
|
2043 |
msgstr "আপনার আইপি অ্যাড্রেসঃ"
|
2044 |
|
2045 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2046 |
-
#: src/udaddons/updraftplus-addons.php:
|
2047 |
msgid "To remove any block, please go here."
|
2048 |
msgstr "কোন ব্লক সরাতে এখানে যান।"
|
2049 |
|
2050 |
-
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:
|
2051 |
msgid "An error response was received; HTTP code:"
|
2052 |
msgstr ""
|
2053 |
|
@@ -2063,11 +2122,11 @@ msgstr "অথবা ম্যানুয়ালি পুনরুদ্ধা
|
|
2063 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2064 |
msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
|
2065 |
|
2066 |
-
#: src/admin.php:
|
2067 |
msgid "To fix this problem go here."
|
2068 |
msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
|
2069 |
|
2070 |
-
#: src/admin.php:
|
2071 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2072 |
msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
|
2073 |
|
@@ -2099,7 +2158,7 @@ msgstr "প্রোটোকল (SSL অথবা SSL না)"
|
|
2099 |
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."
|
2100 |
msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ করার মাধ্যমে সৃষ্ট। আপনি যদি বিস্তারিত না জানেন, তাহলে আপনার WebDAV প্রোভাইডারকে জিজ্ঞেস করুন।"
|
2101 |
|
2102 |
-
#: src/udaddons/updraftplus-addons.php:
|
2103 |
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."
|
2104 |
msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
|
2105 |
|
@@ -2143,11 +2202,11 @@ msgstr "কি সাইজ: %d বিটস"
|
|
2143 |
msgid "Public key was sent to:"
|
2144 |
msgstr "পাবলিক কি টি পাঠানো হয়েছিল:"
|
2145 |
|
2146 |
-
#: src/backup.php:
|
2147 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2148 |
msgstr "ডিরেক্টরি খুলতে ব্যর্থ (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন): %s"
|
2149 |
|
2150 |
-
#: src/backup.php:
|
2151 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2152 |
msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
|
2153 |
|
@@ -2205,8 +2264,8 @@ msgstr "এটা কোন কোন সময় ফায়ারওয়ালে
|
|
2205 |
msgid "login"
|
2206 |
msgstr "লগিন"
|
2207 |
|
2208 |
-
#: src/addons/reporting.php:
|
2209 |
-
#: src/addons/reporting.php:
|
2210 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2211 |
msgstr ""
|
2212 |
|
@@ -2214,7 +2273,7 @@ msgstr ""
|
|
2214 |
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."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: src/class-updraftplus.php:
|
2218 |
msgid "Size: %s MB"
|
2219 |
msgstr "সাইজঃ %s MB"
|
2220 |
|
@@ -2222,7 +2281,7 @@ msgstr "সাইজঃ %s MB"
|
|
2222 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: src/class-updraftplus.php:
|
2226 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2227 |
msgstr ""
|
2228 |
|
@@ -2328,23 +2387,23 @@ msgstr ""
|
|
2328 |
msgid "UpdraftCentral Connection"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: src/backup.php:1042, src/class-updraftplus.php:
|
2332 |
msgid "The backup was aborted by the user"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: src/admin.php:
|
2336 |
msgid "Your settings have been saved."
|
2337 |
msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
|
2338 |
|
2339 |
-
#: src/admin.php:
|
2340 |
msgid "Total backup size:"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: src/admin.php:
|
2344 |
msgid "stop"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: src/admin.php:903, src/admin.php:
|
2348 |
msgid "The backup has finished running"
|
2349 |
msgstr ""
|
2350 |
|
@@ -2406,19 +2465,19 @@ msgstr ""
|
|
2406 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: src/class-updraftplus.php:
|
2410 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: src/class-updraftplus.php:
|
2414 |
msgid "Please read this link for important information on this process."
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: src/class-updraftplus.php:
|
2418 |
msgid "It will be imported as a new site."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: src/admin.php:
|
2422 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2423 |
msgid "Dismiss"
|
2424 |
msgstr "খারিজ"
|
@@ -2484,7 +2543,7 @@ msgstr ""
|
|
2484 |
msgid "Call WordPress action:"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: src/admin.php:
|
2488 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2489 |
msgstr ""
|
2490 |
|
@@ -2516,63 +2575,63 @@ msgstr ""
|
|
2516 |
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)."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: src/admin.php:
|
2520 |
msgid "Send this backup to remote storage"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: src/admin.php:
|
2524 |
msgid "Check out UpdraftPlus Vault."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: src/admin.php:
|
2528 |
msgid "Not got any remote storage?"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: src/admin.php:
|
2532 |
msgid "settings"
|
2533 |
msgstr "সেটিংস"
|
2534 |
|
2535 |
-
#: src/admin.php:
|
2536 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: src/admin.php:
|
2540 |
msgid "Include any files in the backup"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: src/admin.php:
|
2544 |
msgid "Include the database in the backup"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: src/admin.php:
|
2548 |
msgid "Continue restoration"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: src/admin.php:
|
2552 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: src/admin.php:
|
2556 |
msgid "Unfinished restoration"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: src/admin.php:
|
2560 |
msgid "%s minutes, %s seconds"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: src/admin.php:
|
2564 |
msgid "Backup Contents And Schedule"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: src/admin.php:
|
2568 |
msgid "Premium / Extensions"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: src/admin.php:
|
2572 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: src/addons/morefiles.php:
|
2576 |
msgctxt "(verb)"
|
2577 |
msgid "Download"
|
2578 |
msgstr ""
|
@@ -2585,7 +2644,7 @@ msgstr ""
|
|
2585 |
msgid "Extensions"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: src/admin.php:685, src/admin.php:
|
2589 |
msgid "Advanced Tools"
|
2590 |
msgstr ""
|
2591 |
|
@@ -2704,7 +2763,7 @@ msgstr ""
|
|
2704 |
msgid "Could not access container"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: src/class-updraftplus.php:
|
2708 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2709 |
msgstr ""
|
2710 |
|
@@ -2834,7 +2893,7 @@ msgstr ""
|
|
2834 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: src/admin.php:
|
2838 |
msgid "Backup sets removed:"
|
2839 |
msgstr ""
|
2840 |
|
@@ -2874,11 +2933,11 @@ msgstr ""
|
|
2874 |
msgid "Add an additional retention rule..."
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: src/restorer.php:
|
2878 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: src/restorer.php:
|
2882 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2883 |
msgstr ""
|
2884 |
|
@@ -2886,15 +2945,15 @@ msgstr ""
|
|
2886 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: src/class-updraftplus.php:
|
2890 |
msgid "You must upgrade MySQL to be able to use this database."
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: src/class-updraftplus.php:
|
2894 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: src/admin.php:
|
2898 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2899 |
msgstr ""
|
2900 |
|
@@ -2922,11 +2981,11 @@ msgstr "সার্ভার সাইড এনক্রিপশন"
|
|
2922 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: src/admin.php:
|
2926 |
msgid "Go to the remote storage settings in order to connect."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: src/admin.php:
|
2930 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2931 |
msgstr ""
|
2932 |
|
@@ -3070,7 +3129,7 @@ msgstr "ভল্ট আপডেট করুন"
|
|
3070 |
msgid "Delete failed:"
|
3071 |
msgstr "ডিলিট ব্যর্থ:"
|
3072 |
|
3073 |
-
#: src/backup.php:
|
3074 |
msgid "The zip engine returned the message: %s."
|
3075 |
msgstr "Zip engine টি এই বার্তা নিয়ে এসেছে: %s।"
|
3076 |
|
@@ -3150,7 +3209,7 @@ msgstr "ব্যাকআপ তৈরি করেছেন %s"
|
|
3150 |
msgid "This storage method does not allow downloading"
|
3151 |
msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
|
3152 |
|
3153 |
-
#: src/admin.php:
|
3154 |
msgid "(backup set imported from remote location)"
|
3155 |
msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
|
3156 |
|
@@ -3296,23 +3355,23 @@ msgstr "সাইট যুক্ত করুন"
|
|
3296 |
msgid "Adding..."
|
3297 |
msgstr "যুক্ত করা হচ্ছে..."
|
3298 |
|
3299 |
-
#: src/udaddons/options.php:
|
3300 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: src/restorer.php:
|
3304 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: src/udaddons/updraftplus-addons.php:
|
3308 |
msgid "go here to change your password on updraftplus.com."
|
3309 |
msgstr "আপনার updraftplus.com এর পাসওয়ার্ডটি পরিবর্তন করতে এখানে যান।"
|
3310 |
|
3311 |
-
#: src/udaddons/updraftplus-addons.php:
|
3312 |
msgid "If you have forgotten your password "
|
3313 |
msgstr "আপনি যদি আপনার পাসওয়ার্ডটি ভুলে গিয়ে থাকেন"
|
3314 |
|
3315 |
-
#: src/udaddons/updraftplus-addons.php:
|
3316 |
msgid "Go here to re-enter your password."
|
3317 |
msgstr "এখানে যান আপনার পাসওয়ার্ডটি পুনরাই দিতে।"
|
3318 |
|
@@ -3350,7 +3409,7 @@ msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127
|
|
3350 |
msgstr ""
|
3351 |
|
3352 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3353 |
-
msgid "
|
3354 |
msgstr ""
|
3355 |
|
3356 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
@@ -3526,18 +3585,18 @@ msgstr ""
|
|
3526 |
|
3527 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3528 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3529 |
-
#: src/udaddons/updraftplus-addons.php:
|
3530 |
-
#: src/udaddons/updraftplus-addons.php:
|
3531 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3532 |
msgstr ""
|
3533 |
|
3534 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3535 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3536 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3537 |
msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
|
3538 |
|
3539 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3540 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3541 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3542 |
msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
|
3543 |
|
@@ -3575,11 +3634,11 @@ msgstr "বিনামূল্যে নিউজলেটার"
|
|
3575 |
msgid "Dismiss (for %s months)"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: src/addons/fixtime.php:
|
3579 |
msgid "(at same time as files backup)"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: src/admin.php:
|
3583 |
msgid "No backup has been completed"
|
3584 |
msgstr ""
|
3585 |
|
@@ -3653,12 +3712,12 @@ msgstr ""
|
|
3653 |
msgid "Check this box to have a basic report sent to"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: src/admin.php:
|
3657 |
msgctxt "i.e. Non-automatic"
|
3658 |
msgid "Manual"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: src/restorer.php:
|
3662 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3663 |
msgid "An error (%s) occurred:"
|
3664 |
msgstr ""
|
@@ -3667,11 +3726,11 @@ msgstr ""
|
|
3667 |
msgid "Change Lock Settings"
|
3668 |
msgstr "লক সেটিং পরিবর্তন করুন"
|
3669 |
|
3670 |
-
#: src/addons/morefiles.php:
|
3671 |
msgid "Any other file/directory on your server that you wish to backup"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: src/admin.php:
|
3675 |
msgid "For even more features and personal support, check out "
|
3676 |
msgstr ""
|
3677 |
|
@@ -3757,15 +3816,15 @@ msgstr ""
|
|
3757 |
msgid "The admin password has now been removed."
|
3758 |
msgstr ""
|
3759 |
|
3760 |
-
#: src/addons/morefiles.php:
|
3761 |
msgid "(learn more about this significant option)"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: src/udaddons/options.php:
|
3765 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3766 |
msgstr ""
|
3767 |
|
3768 |
-
#: src/admin.php:
|
3769 |
msgid "View Log"
|
3770 |
msgstr ""
|
3771 |
|
@@ -3784,7 +3843,7 @@ msgstr ""
|
|
3784 |
msgid "and retain this many scheduled backups"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: src/admin.php:
|
3788 |
msgid "incremental backup; base backup: %s"
|
3789 |
msgstr ""
|
3790 |
|
@@ -3797,28 +3856,28 @@ msgstr ""
|
|
3797 |
msgid "Upload files into UpdraftPlus."
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: src/admin.php:
|
3801 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3802 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: src/class-updraftplus.php:
|
3806 |
msgid "Backup label:"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: src/addons/backblaze.php:205, src/admin.php:
|
3810 |
msgid "Error: unexpected file read fail"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: src/backup.php:
|
3814 |
msgid "check your log for more details."
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: src/backup.php:
|
3818 |
msgid "your web hosting account appears to be full; please see: %s"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: src/backup.php:
|
3822 |
msgid "A zip error occurred"
|
3823 |
msgstr ""
|
3824 |
|
@@ -3830,23 +3889,23 @@ msgstr ""
|
|
3830 |
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."
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:
|
3834 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:
|
3838 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:
|
3842 |
msgid "You need to supply both an email address and a password"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: src/class-updraftplus.php:
|
3846 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: src/class-updraftplus.php:
|
3850 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3851 |
msgstr ""
|
3852 |
|
@@ -3883,19 +3942,19 @@ msgstr ""
|
|
3883 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: src/class-updraftplus.php:
|
3887 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: src/class-updraftplus.php:
|
3891 |
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."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: src/class-updraftplus.php:
|
3895 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: src/class-updraftplus.php:
|
3899 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3900 |
msgstr ""
|
3901 |
|
@@ -3924,7 +3983,7 @@ msgstr ""
|
|
3924 |
msgid "UpdraftPlus is on social media - check us out!"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: src/addons/wp-cli.php:907, src/admin.php:
|
3928 |
msgid "Why am I seeing this?"
|
3929 |
msgstr "আমি কেন এটি দেখছি?"
|
3930 |
|
@@ -3938,15 +3997,15 @@ msgstr ""
|
|
3938 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: src/admin.php:
|
3942 |
msgid "Start backup"
|
3943 |
msgstr "ব্যাকআপ শুরু করুন"
|
3944 |
|
3945 |
-
#: src/class-updraftplus.php:
|
3946 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: src/admin.php:
|
3950 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
3951 |
msgstr ""
|
3952 |
|
@@ -3954,11 +4013,11 @@ msgstr ""
|
|
3954 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#: src/admin.php:
|
3958 |
msgid "This file could not be uploaded"
|
3959 |
msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
|
3960 |
|
3961 |
-
#: src/admin.php:
|
3962 |
msgid "You will find more information about this in the Settings section."
|
3963 |
msgstr ""
|
3964 |
|
@@ -3998,9 +4057,9 @@ msgstr ""
|
|
3998 |
msgid "Backup succeeded"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: src/addons/incremental.php:
|
4002 |
-
#: src/addons/incremental.php:
|
4003 |
-
#: src/admin.php:
|
4004 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4005 |
msgid "Every %s hours"
|
4006 |
msgstr ""
|
@@ -4039,7 +4098,7 @@ msgstr ""
|
|
4039 |
msgid "search term"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: src/restorer.php:
|
4043 |
msgid "Too many database errors have occurred - aborting"
|
4044 |
msgstr ""
|
4045 |
|
@@ -4075,11 +4134,11 @@ msgstr ""
|
|
4075 |
msgid "Free disk space in account:"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: src/admin.php:
|
4079 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: src/admin.php:817, src/admin.php:
|
4083 |
#: src/includes/deprecated-actions.php:29,
|
4084 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4085 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
@@ -4087,35 +4146,35 @@ msgstr ""
|
|
4087 |
msgid "Existing Backups"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: src/admin.php:
|
4091 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: src/admin.php:
|
4095 |
msgid "To make a backup, just press the Backup Now button."
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: src/admin.php:
|
4099 |
msgid "Welcome to UpdraftPlus!"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: src/addons/moredatabase.php:
|
4103 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: src/addons/moredatabase.php:
|
4107 |
msgid "Testing..."
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: src/addons/moredatabase.php:
|
4111 |
msgid "Test connection..."
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: src/addons/moredatabase.php:
|
4115 |
msgid "Table prefix"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: src/addons/moredatabase.php:
|
4119 |
msgid "Backup external database"
|
4120 |
msgstr ""
|
4121 |
|
@@ -4167,7 +4226,7 @@ msgstr ""
|
|
4167 |
msgid "user"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: src/class-updraftplus.php:
|
4171 |
msgid "External database (%s)"
|
4172 |
msgstr ""
|
4173 |
|
@@ -4185,7 +4244,7 @@ msgstr ""
|
|
4185 |
msgid "However, subsequent access attempts failed:"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: src/addons/wp-cli.php:437, src/admin.php:
|
4189 |
msgid "External database"
|
4190 |
msgstr ""
|
4191 |
|
@@ -4217,7 +4276,7 @@ msgstr ""
|
|
4217 |
msgid "use UpdraftPlus Premium"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: src/class-updraftplus.php:
|
4221 |
msgid "Decryption failed. The database file is encrypted."
|
4222 |
msgstr ""
|
4223 |
|
@@ -4225,8 +4284,8 @@ msgstr ""
|
|
4225 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4226 |
msgstr ""
|
4227 |
|
4228 |
-
#: src/restorer.php:2284, src/restorer.php:
|
4229 |
-
#: src/restorer.php:
|
4230 |
msgid "An error occurred on the first %s command - aborting run"
|
4231 |
msgstr ""
|
4232 |
|
@@ -4272,7 +4331,7 @@ msgstr ""
|
|
4272 |
msgid "Tenant"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
-
#: src/addons/wp-cli.php:800, src/admin.php:
|
4276 |
#: src/methods/openstack2.php:144,
|
4277 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4278 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
@@ -4418,7 +4477,7 @@ msgstr ""
|
|
4418 |
msgid "Failed to unpack the archive"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: src/class-updraftplus.php:
|
4422 |
msgid "Error - failed to download the file"
|
4423 |
msgstr ""
|
4424 |
|
@@ -4427,15 +4486,15 @@ msgstr ""
|
|
4427 |
msgid "Rescan local folder for new backup sets"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: src/udaddons/updraftplus-addons.php:
|
4431 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: src/udaddons/updraftplus-addons.php:
|
4435 |
msgid "It has been tested up to version %s."
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: src/udaddons/updraftplus-addons.php:
|
4439 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4440 |
msgstr ""
|
4441 |
|
@@ -4444,7 +4503,7 @@ msgid "password/key"
|
|
4444 |
msgstr ""
|
4445 |
|
4446 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4447 |
-
#: src/admin.php:
|
4448 |
msgid "Key"
|
4449 |
msgstr ""
|
4450 |
|
@@ -4460,24 +4519,24 @@ msgstr ""
|
|
4460 |
msgid "SCP/SFTP password/key"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4464 |
msgid "Files backup (created by %s)"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4468 |
msgid "Files and database WordPress backup (created by %s)"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: src/addons/importer.php:276, src/admin.php:
|
4472 |
#: src/includes/class-backup-history.php:435
|
4473 |
msgid "Backup created by: %s."
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: src/addons/wp-cli.php:431, src/admin.php:
|
4477 |
msgid "Database (created by %s)"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
-
#: src/addons/wp-cli.php:429, src/admin.php:
|
4481 |
msgid "unknown source"
|
4482 |
msgstr ""
|
4483 |
|
@@ -4492,15 +4551,15 @@ msgstr ""
|
|
4492 |
msgid "Upload backup files"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: src/admin.php:
|
4496 |
msgid "This backup was created by %s, and can be imported."
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: src/admin.php:
|
4500 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: src/admin.php:
|
4504 |
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."
|
4505 |
msgstr ""
|
4506 |
|
@@ -4517,7 +4576,7 @@ msgstr ""
|
|
4517 |
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))."
|
4518 |
msgstr ""
|
4519 |
|
4520 |
-
#: src/admin.php:
|
4521 |
#: src/restorer.php:1975
|
4522 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4523 |
msgstr ""
|
@@ -4556,16 +4615,16 @@ msgstr ""
|
|
4556 |
msgid "(Read more)"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#: src/addons/reporting.php:
|
4560 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#: src/addons/morefiles.php:
|
4564 |
msgid "No backup of location: there was nothing found to back up"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#: src/addons/moredatabase.php:
|
4568 |
-
#: src/addons/morefiles.php:
|
4569 |
msgid "Remove"
|
4570 |
msgstr ""
|
4571 |
|
@@ -4577,7 +4636,7 @@ msgstr ""
|
|
4577 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: src/addons/morefiles.php:
|
4581 |
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."
|
4582 |
msgstr ""
|
4583 |
|
@@ -4606,53 +4665,53 @@ msgstr ""
|
|
4606 |
msgid "Backup created by:"
|
4607 |
msgstr ""
|
4608 |
|
4609 |
-
#: src/udaddons/options.php:
|
4610 |
msgid "Available to claim on this site"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: src/udaddons/updraftplus-addons.php:
|
4614 |
msgid "To maintain your access to support, please renew."
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: src/udaddons/updraftplus-addons.php:
|
4618 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: src/udaddons/updraftplus-addons.php:
|
4622 |
msgid "To regain your access, please renew."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: src/udaddons/updraftplus-addons.php:
|
4626 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: src/udaddons/updraftplus-addons.php:
|
4630 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4631 |
msgstr ""
|
4632 |
|
4633 |
-
#: src/udaddons/updraftplus-addons.php:
|
4634 |
-
#: src/udaddons/updraftplus-addons.php:
|
4635 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: src/udaddons/updraftplus-addons.php:
|
4639 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: src/udaddons/updraftplus-addons.php:
|
4643 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: src/udaddons/updraftplus-addons.php:
|
4647 |
-
#: src/udaddons/updraftplus-addons.php:
|
4648 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4649 |
msgstr ""
|
4650 |
|
4651 |
-
#: src/udaddons/updraftplus-addons.php:
|
4652 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4653 |
msgstr ""
|
4654 |
|
4655 |
-
#: src/udaddons/updraftplus-addons.php:
|
4656 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4657 |
msgstr ""
|
4658 |
|
@@ -4669,7 +4728,7 @@ msgstr ""
|
|
4669 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: src/includes/class-wpadmin-commands.php:
|
4673 |
msgid "Constants"
|
4674 |
msgstr ""
|
4675 |
|
@@ -4693,12 +4752,12 @@ msgstr ""
|
|
4693 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: src/udaddons/updraftplus-addons.php:
|
4697 |
-
#: src/udaddons/updraftplus-addons.php:
|
4698 |
msgid "Errors occurred:"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/addons/wp-cli.php:664, src/admin.php:
|
4702 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4703 |
msgstr ""
|
4704 |
|
@@ -4722,7 +4781,7 @@ msgstr ""
|
|
4722 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: src/admin.php:
|
4726 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4727 |
msgstr ""
|
4728 |
|
@@ -4735,11 +4794,11 @@ msgstr ""
|
|
4735 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: src/addons/moredatabase.php:144, src/admin.php:
|
4739 |
msgid "Messages:"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: src/restorer.php:
|
4743 |
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"
|
4744 |
msgstr ""
|
4745 |
|
@@ -4897,7 +4956,7 @@ msgid "Authorisation failed (check your credentials)"
|
|
4897 |
msgstr ""
|
4898 |
|
4899 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4900 |
-
#: src/udaddons/options.php:
|
4901 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4902 |
msgstr ""
|
4903 |
|
@@ -4913,15 +4972,15 @@ msgstr ""
|
|
4913 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:
|
4917 |
msgid "Error data:"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#: src/admin.php:
|
4921 |
msgid "Backup does not exist in the backup history"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
-
#: src/admin.php:
|
4925 |
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."
|
4926 |
msgstr ""
|
4927 |
|
@@ -4949,23 +5008,23 @@ msgstr ""
|
|
4949 |
msgid "Moving old data out of the way..."
|
4950 |
msgstr ""
|
4951 |
|
4952 |
-
#: src/addons/reporting.php:
|
4953 |
msgid "Add another address..."
|
4954 |
msgstr ""
|
4955 |
|
4956 |
-
#: src/addons/reporting.php:
|
4957 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4958 |
msgstr ""
|
4959 |
|
4960 |
-
#: src/addons/reporting.php:
|
4961 |
msgid "Email reports"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: src/class-updraftplus.php:
|
4965 |
msgid "%s checksum: %s"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#: src/class-updraftplus.php:
|
4969 |
msgid "files: %s"
|
4970 |
msgstr ""
|
4971 |
|
@@ -4977,7 +5036,7 @@ msgstr ""
|
|
4977 |
msgid "Debugging information"
|
4978 |
msgstr ""
|
4979 |
|
4980 |
-
#: src/addons/reporting.php:223, src/admin.php:
|
4981 |
msgid "Uploaded to:"
|
4982 |
msgstr ""
|
4983 |
|
@@ -4997,7 +5056,7 @@ msgstr ""
|
|
4997 |
msgid "Errors / warnings:"
|
4998 |
msgstr ""
|
4999 |
|
5000 |
-
#: src/addons/morefiles.php:
|
5001 |
#: src/addons/reporting.php:184
|
5002 |
msgid "Contains:"
|
5003 |
msgstr ""
|
@@ -5018,8 +5077,7 @@ msgstr ""
|
|
5018 |
msgid "%d errors, %d warnings"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
-
#: src/
|
5022 |
-
#: src/methods/dropbox.php:775
|
5023 |
msgid "%s authentication"
|
5024 |
msgstr ""
|
5025 |
|
@@ -5050,8 +5108,9 @@ msgstr ""
|
|
5050 |
msgid "Your site's admin email address (%s) will be used."
|
5051 |
msgstr ""
|
5052 |
|
5053 |
-
#: src/admin.php:853, src/admin.php:
|
5054 |
-
#: src/methods/updraftvault.php:362
|
|
|
5055 |
msgid "Connect"
|
5056 |
msgstr ""
|
5057 |
|
@@ -5059,7 +5118,7 @@ msgstr ""
|
|
5059 |
msgid "For more reporting features, use the Reporting add-on."
|
5060 |
msgstr ""
|
5061 |
|
5062 |
-
#: src/class-updraftplus.php:
|
5063 |
msgid "(version: %s)"
|
5064 |
msgstr ""
|
5065 |
|
@@ -5067,7 +5126,7 @@ msgstr ""
|
|
5067 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: src/addons/reporting.php:
|
5071 |
msgid "When the Email storage method is enabled, also send the backup"
|
5072 |
msgstr ""
|
5073 |
|
@@ -5131,7 +5190,7 @@ msgstr ""
|
|
5131 |
msgid "UpdraftPlus warning:"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: src/udaddons/options.php:
|
5135 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5136 |
msgstr ""
|
5137 |
|
@@ -5159,11 +5218,11 @@ msgstr ""
|
|
5159 |
msgid "UpdraftPlus Support"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: src/udaddons/options.php:
|
5163 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#: src/udaddons/options.php:
|
5167 |
msgid "UpdraftPlus Addons"
|
5168 |
msgstr ""
|
5169 |
|
@@ -5172,24 +5231,24 @@ msgid "An update is available for UpdraftPlus - please follow this link to get i
|
|
5172 |
msgstr ""
|
5173 |
|
5174 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5175 |
-
#: src/udaddons/updraftplus-addons.php:
|
5176 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:
|
5180 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5184 |
-
#: src/udaddons/updraftplus-addons.php:
|
5185 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: src/udaddons/updraftplus-addons.php:
|
5189 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
-
#: src/udaddons/updraftplus-addons.php:
|
5193 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5194 |
msgstr ""
|
5195 |
|
@@ -5200,11 +5259,11 @@ msgstr ""
|
|
5200 |
msgid "Reporting"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
-
#: src/admin.php:
|
5204 |
msgid "Options (raw)"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: src/addons/reporting.php:
|
5208 |
msgid "Send a report only when there are warnings/errors"
|
5209 |
msgstr ""
|
5210 |
|
@@ -5220,31 +5279,31 @@ msgstr ""
|
|
5220 |
msgid "See also the \"More Files\" add-on from our shop."
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
#: src/backup.php:
|
5224 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
-
#: src/class-updraftplus.php:
|
5228 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
-
#: src/udaddons/options.php:
|
5232 |
msgid "Manage Addons"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#: src/udaddons/options.php:
|
5236 |
msgid "Buy It"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#: src/udaddons/options.php:
|
5240 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
#: src/udaddons/options.php:
|
5244 |
msgid "activate it on this site"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: src/udaddons/options.php:
|
5248 |
msgid "You have an inactive purchase"
|
5249 |
msgstr ""
|
5250 |
|
@@ -5272,47 +5331,47 @@ msgstr ""
|
|
5272 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: src/udaddons/options.php:
|
5276 |
msgid "An unknown response was received. Response was:"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: src/udaddons/options.php:
|
5280 |
msgid "Claim not granted - your account login details were wrong"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#: src/udaddons/options.php:
|
5284 |
msgid "Please wait whilst we make the claim..."
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: src/udaddons/options.php:
|
5288 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
-
#: src/udaddons/options.php:
|
5292 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5293 |
msgstr ""
|
5294 |
|
5295 |
-
#: src/udaddons/options.php:
|
5296 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#: src/udaddons/options.php:
|
5300 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5301 |
msgstr ""
|
5302 |
|
5303 |
-
#: src/admin.php:
|
5304 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5305 |
msgstr ""
|
5306 |
|
5307 |
-
#: src/admin.php:
|
5308 |
msgid "Forgotten your details?"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
-
#: src/admin.php:
|
5312 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
-
#: src/admin.php:
|
5316 |
msgid "Connect with your UpdraftPlus.Com account"
|
5317 |
msgstr ""
|
5318 |
|
@@ -5344,12 +5403,12 @@ msgstr ""
|
|
5344 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: src/addons/moredatabase.php:
|
5348 |
#: src/includes/class-updraftplus-encryption.php:148
|
5349 |
msgid "Without it, encryption will be a lot slower."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: src/addons/moredatabase.php:
|
5353 |
#: src/includes/class-updraftplus-encryption.php:148
|
5354 |
msgid "Your web-server does not have the %s module installed."
|
5355 |
msgstr ""
|
@@ -5400,11 +5459,11 @@ msgstr ""
|
|
5400 |
msgid "You can send a backup to more than one destination with an add-on."
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#: src/admin.php:
|
5404 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#: src/admin.php:
|
5408 |
msgid "(%s%%, file %s of %s)"
|
5409 |
msgstr ""
|
5410 |
|
@@ -5445,11 +5504,11 @@ msgstr ""
|
|
5445 |
msgid "%s settings test result:"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: src/admin.php:
|
5449 |
msgid "(Not finished)"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: src/admin.php:
|
5453 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5454 |
msgstr ""
|
5455 |
|
@@ -5461,73 +5520,73 @@ msgstr ""
|
|
5461 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: src/admin.php:
|
5465 |
msgid "Job ID: %s"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: src/admin.php:
|
5469 |
msgid "last activity: %ss ago"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: src/admin.php:
|
5473 |
msgid "next resumption: %d (after %ss)"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: src/admin.php:
|
5477 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5478 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5479 |
msgid "Unknown"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/admin.php:
|
5483 |
msgid "Backup finished"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: src/admin.php:
|
5487 |
msgid "Waiting until scheduled time to retry because of errors"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: src/admin.php:
|
5491 |
msgid "Pruning old backup sets"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/admin.php:
|
5495 |
msgid "Uploading files to remote storage"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/admin.php:
|
5499 |
msgid "Encrypted database"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/admin.php:
|
5503 |
msgid "Encrypting database"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: src/admin.php:
|
5507 |
msgid "Created database backup"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
-
#: src/admin.php:
|
5511 |
msgid "table: %s"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: src/admin.php:
|
5515 |
msgid "Creating database backup"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: src/admin.php:
|
5519 |
msgid "Created file backup zips"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: src/admin.php:
|
5523 |
msgid "Creating file backup zips"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: src/admin.php:
|
5527 |
msgid "Backup begun"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: src/admin.php:
|
5531 |
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."
|
5532 |
msgstr ""
|
5533 |
|
@@ -5543,11 +5602,11 @@ msgstr ""
|
|
5543 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: src/class-updraftplus.php:
|
5547 |
msgid "The backup has not finished; a resumption is scheduled"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: src/class-updraftplus.php:
|
5551 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5552 |
msgstr ""
|
5553 |
|
@@ -5556,7 +5615,7 @@ msgstr ""
|
|
5556 |
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)."
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: src/admin.php:
|
5560 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5561 |
msgstr ""
|
5562 |
|
@@ -5609,19 +5668,19 @@ msgstr ""
|
|
5609 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: src/addons/morefiles.php:
|
5613 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
#: src/addons/morefiles.php:
|
5617 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#: src/addons/morefiles.php:
|
5621 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5622 |
msgstr ""
|
5623 |
|
5624 |
-
#: src/addons/morefiles.php:
|
5625 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5626 |
msgstr ""
|
5627 |
|
@@ -5636,32 +5695,32 @@ msgstr ""
|
|
5636 |
msgid "Support"
|
5637 |
msgstr "সহায়তা"
|
5638 |
|
5639 |
-
#: src/class-updraftplus.php:
|
5640 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: src/class-updraftplus.php:
|
5644 |
msgid "This database backup is missing core WordPress tables: %s"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
-
#: src/class-updraftplus.php:
|
5648 |
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."
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#: src/class-updraftplus.php:
|
5652 |
msgid "%s version: %s"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: src/class-updraftplus.php:
|
5656 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: src/addons/autobackup.php:1067, src/admin.php:
|
5660 |
#: src/includes/updraftplus-notices.php:171
|
5661 |
msgid "Be safe with an automatic backup"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: src/admin.php:
|
5665 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
5666 |
msgstr ""
|
5667 |
|
@@ -5709,11 +5768,11 @@ msgstr ""
|
|
5709 |
msgid "Delete from your web server"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: src/admin.php:
|
5713 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: src/admin.php:
|
5717 |
msgid "(%d archive(s) in set)."
|
5718 |
msgstr ""
|
5719 |
|
@@ -5721,7 +5780,7 @@ msgstr ""
|
|
5721 |
msgid "Split archives every:"
|
5722 |
msgstr ""
|
5723 |
|
5724 |
-
#: src/addons/moredatabase.php:
|
5725 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
5726 |
msgstr ""
|
5727 |
|
@@ -5733,19 +5792,19 @@ msgstr ""
|
|
5733 |
msgid "Error: the server sent an empty response."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: src/admin.php:
|
5737 |
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?"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#: src/includes/class-wpadmin-commands.php:
|
5741 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
5742 |
msgstr ""
|
5743 |
|
5744 |
-
#: src/includes/class-wpadmin-commands.php:
|
5745 |
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."
|
5746 |
msgstr ""
|
5747 |
|
5748 |
-
#: src/includes/class-wpadmin-commands.php:
|
5749 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
5750 |
msgstr ""
|
5751 |
|
@@ -5778,11 +5837,11 @@ msgstr ""
|
|
5778 |
msgid "Moving unpacked backup into place..."
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: src/backup.php:
|
5782 |
msgid "Failed to open the zip file (%s) - %s"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: src/addons/morefiles.php:
|
5786 |
msgid "WordPress root directory server path: %s"
|
5787 |
msgstr ""
|
5788 |
|
@@ -5807,7 +5866,7 @@ msgstr ""
|
|
5807 |
msgid "Looking for %s archive: file name: %s"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: src/addons/wp-cli.php:784, src/admin.php:
|
5811 |
msgid "Final checks"
|
5812 |
msgstr ""
|
5813 |
|
@@ -5819,7 +5878,7 @@ msgstr ""
|
|
5819 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: src/admin.php:
|
5823 |
msgid "Your wp-content directory server path: %s"
|
5824 |
msgstr ""
|
5825 |
|
@@ -5840,11 +5899,11 @@ msgstr ""
|
|
5840 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: src/class-updraftplus.php:
|
5844 |
msgid "Failed to open database file."
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: src/admin.php:
|
5848 |
msgid "Known backups (raw)"
|
5849 |
msgstr ""
|
5850 |
|
@@ -5862,8 +5921,8 @@ msgstr ""
|
|
5862 |
|
5863 |
#: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
|
5864 |
#: src/addons/migrator.php:493, src/addons/migrator.php:496,
|
5865 |
-
#: src/admin.php:
|
5866 |
-
#: src/class-updraftplus.php:
|
5867 |
#: src/updraftplus.php:157
|
5868 |
msgid "Go here for more information."
|
5869 |
msgstr ""
|
@@ -5872,15 +5931,15 @@ msgstr ""
|
|
5872 |
msgid "Some files are still downloading or being processed - please wait."
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: src/class-updraftplus.php:
|
5876 |
msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: src/addons/fixtime.php:
|
5880 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#: src/addons/fixtime.php:
|
5884 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5885 |
msgstr ""
|
5886 |
|
@@ -5924,7 +5983,7 @@ msgstr ""
|
|
5924 |
msgid "%s error - failed to upload file"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: src/class-updraftplus.php:
|
5928 |
msgid "%s error - failed to re-assemble chunks"
|
5929 |
msgstr ""
|
5930 |
|
@@ -5939,32 +5998,32 @@ msgid "%s authentication failed"
|
|
5939 |
msgstr ""
|
5940 |
|
5941 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
|
5942 |
-
#: src/admin.php:
|
5943 |
-
#: src/class-updraftplus.php:
|
5944 |
-
#: src/class-updraftplus.php:
|
5945 |
-
#: src/class-updraftplus.php:
|
5946 |
-
#: src/class-updraftplus.php:
|
5947 |
#: src/methods/s3.php:341
|
5948 |
msgid "Error: %s"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: src/admin.php:
|
5952 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: src/admin.php:
|
5956 |
msgid "Backup directory specified does <b>not</b> exist."
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: src/admin.php:
|
5960 |
msgid "Warning: %s"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: src/backup.php:
|
5964 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: src/backup.php:
|
5968 |
msgid "%s: unreadable file - could not be backed up"
|
5969 |
msgstr ""
|
5970 |
|
@@ -5972,7 +6031,7 @@ msgstr ""
|
|
5972 |
msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: src/backup.php:
|
5976 |
msgid "An error occurred whilst closing the final database file"
|
5977 |
msgstr ""
|
5978 |
|
@@ -5980,11 +6039,11 @@ msgstr ""
|
|
5980 |
msgid "Warnings encountered:"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: src/class-updraftplus.php:
|
5984 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#: src/class-updraftplus.php:
|
5988 |
msgid "Your free disk space is very low - only %s Mb remain"
|
5989 |
msgstr ""
|
5990 |
|
@@ -6036,7 +6095,7 @@ msgstr ""
|
|
6036 |
msgid "Please supply the requested information, and then continue."
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: src/class-updraftplus.php:
|
6040 |
msgid "Site information:"
|
6041 |
msgstr ""
|
6042 |
|
@@ -6044,11 +6103,11 @@ msgstr ""
|
|
6044 |
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."
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: src/admin.php:
|
6048 |
msgid "Warning:"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: src/class-updraftplus.php:
|
6052 |
#: src/restorer.php:530
|
6053 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
6054 |
msgstr ""
|
@@ -6057,7 +6116,7 @@ msgstr ""
|
|
6057 |
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."
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: src/addons/azure.php:601, src/admin.php:
|
6061 |
#: src/methods/updraftvault.php:306
|
6062 |
msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
6063 |
msgstr ""
|
@@ -6073,7 +6132,7 @@ msgstr ""
|
|
6073 |
msgid "Unexpected response:"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: src/addons/reporting.php:
|
6077 |
msgid "To send to more than one address, separate each address with a comma."
|
6078 |
msgstr ""
|
6079 |
|
@@ -6101,12 +6160,27 @@ msgstr ""
|
|
6101 |
msgid "Also delete from remote storage"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: src/admin.php:
|
6105 |
msgid "Latest UpdraftPlus.com news:"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
#: src/templates/wp-admin/settings/header.php:11,
|
6109 |
-
#: src/templates/wp-admin/settings/tab-addons.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6110 |
msgid "Premium"
|
6111 |
msgstr ""
|
6112 |
|
@@ -6114,7 +6188,7 @@ msgstr ""
|
|
6114 |
msgid "News"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: src/admin.php:
|
6118 |
msgid "Backup set not found"
|
6119 |
msgstr ""
|
6120 |
|
@@ -6145,11 +6219,11 @@ msgstr ""
|
|
6145 |
msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
|
6146 |
msgstr ""
|
6147 |
|
6148 |
-
#: src/admin.php:
|
6149 |
msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
|
6150 |
msgstr ""
|
6151 |
|
6152 |
-
#: src/admin.php:
|
6153 |
msgid "Notice"
|
6154 |
msgstr ""
|
6155 |
|
@@ -6255,7 +6329,7 @@ msgstr ""
|
|
6255 |
msgid "Multisite Install"
|
6256 |
msgstr ""
|
6257 |
|
6258 |
-
#: src/addons/fixtime.php:
|
6259 |
msgid "starting from next time it is"
|
6260 |
msgstr ""
|
6261 |
|
@@ -6283,8 +6357,8 @@ msgstr ""
|
|
6283 |
msgid "Directory path"
|
6284 |
msgstr ""
|
6285 |
|
6286 |
-
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:
|
6287 |
-
#: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:
|
6288 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
6289 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
6290 |
msgid "Password"
|
@@ -6294,7 +6368,7 @@ msgstr ""
|
|
6294 |
msgid "Port"
|
6295 |
msgstr ""
|
6296 |
|
6297 |
-
#: src/addons/moredatabase.php:
|
6298 |
#: src/addons/webdav.php:199
|
6299 |
msgid "Host"
|
6300 |
msgstr ""
|
@@ -6315,35 +6389,35 @@ msgstr ""
|
|
6315 |
msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
|
6316 |
msgstr ""
|
6317 |
|
6318 |
-
#: src/addons/morefiles.php:
|
6319 |
msgid "No backup of %s directories: there was nothing found to back up"
|
6320 |
msgstr ""
|
6321 |
|
6322 |
-
#: src/addons/morefiles.php:
|
6323 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
6324 |
msgstr ""
|
6325 |
|
6326 |
-
#: src/addons/morefiles.php:
|
6327 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#: src/addons/morefiles.php:
|
6331 |
msgid "More Files"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: src/addons/morefiles.php:
|
6335 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: src/addons/morefiles.php:
|
6339 |
msgid "The above files comprise everything in a WordPress installation."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: src/addons/morefiles.php:
|
6343 |
msgid "Over-write wp-config.php"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
-
#: src/addons/morefiles.php:
|
6347 |
msgid "WordPress Core"
|
6348 |
msgstr ""
|
6349 |
|
@@ -6352,8 +6426,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
|
|
6352 |
msgstr ""
|
6353 |
|
6354 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
6355 |
-
#: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:
|
6356 |
-
#: src/admin.php:
|
6357 |
#: src/methods/stream-base.php:356
|
6358 |
msgid "Failed"
|
6359 |
msgstr ""
|
@@ -6561,7 +6635,7 @@ msgstr ""
|
|
6561 |
msgid "Failure: No container details were given."
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: src/addons/moredatabase.php:
|
6565 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
6566 |
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
6567 |
msgid "Username"
|
@@ -6622,7 +6696,7 @@ msgstr ""
|
|
6622 |
msgid "Test %s Settings"
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: src/class-updraftplus.php:
|
6626 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
6627 |
msgid "Error opening local file: Failed to download"
|
6628 |
msgstr ""
|
@@ -6639,7 +6713,7 @@ msgid "%s Error: Failed to upload"
|
|
6639 |
msgstr ""
|
6640 |
|
6641 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
6642 |
-
#: src/class-updraftplus.php:
|
6643 |
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
6644 |
msgid "%s Error: Failed to open local file"
|
6645 |
msgstr ""
|
@@ -6753,18 +6827,18 @@ msgstr ""
|
|
6753 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: src/admin.php:
|
6757 |
#: src/includes/class-remote-send.php:326,
|
6758 |
#: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
|
6759 |
-
#: src/restorer.php:
|
6760 |
msgid "OK"
|
6761 |
msgstr "ঠিক আছে"
|
6762 |
|
6763 |
-
#: src/restorer.php:
|
6764 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
6765 |
msgstr ""
|
6766 |
|
6767 |
-
#: src/addons/migrator.php:1317, src/restorer.php:
|
6768 |
msgid "the database query being run was:"
|
6769 |
msgstr ""
|
6770 |
|
@@ -6772,13 +6846,13 @@ msgstr ""
|
|
6772 |
msgid "will restore as:"
|
6773 |
msgstr ""
|
6774 |
|
6775 |
-
#: src/class-updraftplus.php:
|
6776 |
#: src/restorer.php:2304, src/restorer.php:2330
|
6777 |
msgid "Old table prefix:"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
#: src/addons/reporting.php:72, src/addons/reporting.php:181,
|
6781 |
-
#: src/backup.php:1135, src/class-updraftplus.php:
|
6782 |
msgid "Backup of:"
|
6783 |
msgstr ""
|
6784 |
|
@@ -6866,39 +6940,39 @@ msgstr ""
|
|
6866 |
msgid "Archive is expected to be size:"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
-
#: src/admin.php:
|
6870 |
msgid "If making a request for support, please include this information:"
|
6871 |
msgstr ""
|
6872 |
|
6873 |
-
#: src/admin.php:
|
6874 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6875 |
msgstr ""
|
6876 |
|
6877 |
-
#: src/addons/wp-cli.php:647, src/admin.php:
|
6878 |
msgid "UpdraftPlus Restoration: Progress"
|
6879 |
msgstr ""
|
6880 |
|
6881 |
-
#: src/admin.php:
|
6882 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#: src/admin.php:
|
6886 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6887 |
msgstr ""
|
6888 |
|
6889 |
-
#: src/admin.php:
|
6890 |
msgid "Delete this backup set"
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#: src/admin.php:
|
6894 |
msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
|
6895 |
msgstr ""
|
6896 |
|
6897 |
-
#: src/admin.php:
|
6898 |
msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
|
6899 |
msgstr ""
|
6900 |
|
6901 |
-
#: src/admin.php:
|
6902 |
msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
|
6903 |
msgstr ""
|
6904 |
|
@@ -6939,19 +7013,19 @@ msgstr ""
|
|
6939 |
msgid "Use the server's SSL certificates"
|
6940 |
msgstr ""
|
6941 |
|
6942 |
-
#: src/admin.php:
|
6943 |
msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
|
6944 |
msgstr ""
|
6945 |
|
6946 |
-
#: src/admin.php:
|
6947 |
msgid "or, to reset this option"
|
6948 |
msgstr ""
|
6949 |
|
6950 |
-
#: src/admin.php:
|
6951 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
6952 |
msgstr ""
|
6953 |
|
6954 |
-
#: src/admin.php:
|
6955 |
msgid "Backup directory specified is writable, which is good."
|
6956 |
msgstr ""
|
6957 |
|
@@ -6987,12 +7061,12 @@ msgstr ""
|
|
6987 |
msgid "Requesting start of backup..."
|
6988 |
msgstr ""
|
6989 |
|
6990 |
-
#: src/addons/morefiles.php:
|
6991 |
msgid "Cancel"
|
6992 |
msgstr "বাতিল"
|
6993 |
|
6994 |
-
#: src/addons/incremental.php:
|
6995 |
-
#: src/admin.php:
|
6996 |
msgid "None"
|
6997 |
msgstr "কোনটিই না"
|
6998 |
|
@@ -7008,7 +7082,7 @@ msgstr ""
|
|
7008 |
msgid "Database encryption phrase"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
-
#: src/admin.php:
|
7012 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
7013 |
msgid "Email"
|
7014 |
msgstr ""
|
@@ -7017,11 +7091,11 @@ msgstr ""
|
|
7017 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
7018 |
msgstr ""
|
7019 |
|
7020 |
-
#: src/addons/morefiles.php:
|
7021 |
msgid "Exclude these:"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
-
#: src/admin.php:
|
7025 |
msgid "Any other directories found inside wp-content"
|
7026 |
msgstr ""
|
7027 |
|
@@ -7037,46 +7111,46 @@ msgstr ""
|
|
7037 |
msgid "To fix the time at which a backup should take place,"
|
7038 |
msgstr ""
|
7039 |
|
7040 |
-
#: src/addons/incremental.php:
|
7041 |
msgid "Monthly"
|
7042 |
msgstr "মাসিক"
|
7043 |
|
7044 |
-
#: src/addons/incremental.php:
|
7045 |
msgid "Fortnightly"
|
7046 |
msgstr "পাক্ষিক"
|
7047 |
|
7048 |
-
#: src/addons/incremental.php:
|
7049 |
msgid "Weekly"
|
7050 |
msgstr "সাপ্তাহিক"
|
7051 |
|
7052 |
-
#: src/addons/incremental.php:
|
7053 |
msgid "Daily"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#: src/admin.php:849, src/admin.php:
|
7057 |
msgid "Download log file"
|
7058 |
msgstr "লগ ফাইল ডাউনলোড করুন"
|
7059 |
|
7060 |
-
#: src/admin.php:
|
7061 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
7062 |
msgstr ""
|
7063 |
|
7064 |
-
#: src/admin.php:
|
7065 |
msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
-
#: src/admin.php:
|
7069 |
msgid "The request to the filesystem to create the directory failed."
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: src/admin.php:842, src/admin.php:
|
7073 |
-
#: src/admin.php:
|
7074 |
#: src/templates/wp-admin/settings/existing-backups-table.php:155,
|
7075 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
7076 |
msgid "Delete"
|
7077 |
msgstr "মুছুন"
|
7078 |
|
7079 |
-
#: src/admin.php:
|
7080 |
msgid "show log"
|
7081 |
msgstr "লগ দেখান"
|
7082 |
|
@@ -7137,7 +7211,7 @@ msgstr "না"
|
|
7137 |
msgid "Yes"
|
7138 |
msgstr "হ্যাঁ"
|
7139 |
|
7140 |
-
#: src/admin.php:
|
7141 |
#: src/templates/wp-admin/advanced/site-info.php:45,
|
7142 |
#: src/templates/wp-admin/advanced/site-info.php:51,
|
7143 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
@@ -7177,11 +7251,11 @@ msgstr ""
|
|
7177 |
msgid "Do read this helpful article of useful things to know before restoring."
|
7178 |
msgstr ""
|
7179 |
|
7180 |
-
#: src/class-updraftplus.php:
|
7181 |
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"
|
7182 |
msgstr ""
|
7183 |
|
7184 |
-
#: src/addons/morefiles.php:
|
7185 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
|
7186 |
msgid "%s restoration options:"
|
7187 |
msgstr ""
|
@@ -7292,7 +7366,7 @@ msgstr "অপেরা ওযেব ব্রাউজার"
|
|
7292 |
msgid "More tasks:"
|
7293 |
msgstr "আরও টাস্ক:"
|
7294 |
|
7295 |
-
#: src/admin.php:
|
7296 |
msgid "Download most recently modified log file"
|
7297 |
msgstr ""
|
7298 |
|
@@ -7301,13 +7375,13 @@ msgid "(Nothing yet logged)"
|
|
7301 |
msgstr ""
|
7302 |
|
7303 |
#: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
|
7304 |
-
#: src/admin.php:
|
7305 |
#: src/templates/wp-admin/settings/take-backup.php:64
|
7306 |
msgid "Last log message"
|
7307 |
msgstr ""
|
7308 |
|
7309 |
#: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
|
7310 |
-
#: src/admin.php:
|
7311 |
msgid "Restore"
|
7312 |
msgstr "পুনঃস্থাপন"
|
7313 |
|
@@ -7319,18 +7393,18 @@ msgstr ""
|
|
7319 |
msgid "Time now"
|
7320 |
msgstr ""
|
7321 |
|
7322 |
-
#: src/addons/moredatabase.php:
|
7323 |
-
#: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:
|
7324 |
-
#: src/admin.php:
|
7325 |
#: src/includes/class-wpadmin-commands.php:157,
|
7326 |
-
#: src/includes/class-wpadmin-commands.php:
|
7327 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
|
7328 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75,
|
7329 |
#: src/templates/wp-admin/settings/take-backup.php:33
|
7330 |
msgid "Database"
|
7331 |
msgstr ""
|
7332 |
|
7333 |
-
#: src/admin.php:332, src/admin.php:
|
7334 |
#: src/templates/wp-admin/settings/take-backup.php:23
|
7335 |
msgid "Files"
|
7336 |
msgstr ""
|
@@ -7356,15 +7430,15 @@ msgstr ""
|
|
7356 |
msgid "JavaScript warning"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
-
#: src/admin.php:826, src/admin.php:
|
7360 |
msgid "Delete Old Directories"
|
7361 |
msgstr ""
|
7362 |
|
7363 |
-
#: src/admin.php:
|
7364 |
msgid "Current limit is:"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
-
#: src/admin.php:
|
7368 |
msgid "Your backup has been restored."
|
7369 |
msgstr ""
|
7370 |
|
@@ -7380,87 +7454,87 @@ msgstr "প্রধান ডেভেলপার এর হোমপেজে
|
|
7380 |
msgid "UpdraftPlus.Com"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
-
#: src/admin.php:
|
7384 |
msgid "Your settings have been wiped."
|
7385 |
msgstr ""
|
7386 |
|
7387 |
-
#: src/admin.php:
|
7388 |
msgid "Backup directory successfully created."
|
7389 |
msgstr ""
|
7390 |
|
7391 |
-
#: src/admin.php:
|
7392 |
msgid "Backup directory could not be created"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: src/admin.php:
|
7396 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
7397 |
msgstr ""
|
7398 |
|
7399 |
-
#: src/admin.php:
|
7400 |
msgid "Old directories successfully removed."
|
7401 |
msgstr ""
|
7402 |
|
7403 |
-
#: src/admin.php:
|
7404 |
msgid "Remove old directories"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
#: src/addons/migrator.php:340, src/addons/migrator.php:355,
|
7408 |
-
#: src/admin.php:
|
7409 |
-
#: src/admin.php:
|
7410 |
msgid "Return to UpdraftPlus Configuration"
|
7411 |
msgstr ""
|
7412 |
|
7413 |
-
#: src/admin.php:819, src/admin.php:
|
7414 |
-
#: src/admin.php:
|
7415 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
7416 |
#: src/templates/wp-admin/settings/existing-backups-table.php:139
|
7417 |
msgid "Actions"
|
7418 |
msgstr ""
|
7419 |
|
7420 |
-
#: src/admin.php:
|
7421 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
7422 |
msgstr ""
|
7423 |
|
7424 |
-
#: src/admin.php:
|
7425 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
7426 |
msgstr ""
|
7427 |
|
7428 |
-
#: src/admin.php:
|
7429 |
msgid "No local copy present."
|
7430 |
msgstr ""
|
7431 |
|
7432 |
-
#: src/admin.php:
|
7433 |
msgid "Download in progress"
|
7434 |
msgstr "ডাউনলোড হচ্ছে"
|
7435 |
|
7436 |
-
#: src/admin.php:818, src/admin.php:
|
7437 |
msgid "File ready."
|
7438 |
msgstr "ফাইল তৈরি।"
|
7439 |
|
7440 |
-
#: src/admin.php:
|
7441 |
msgid "Download failed"
|
7442 |
msgstr ""
|
7443 |
|
7444 |
#: src/addons/wp-cli.php:518, src/admin.php:816,
|
7445 |
-
#: src/class-updraftplus.php:
|
7446 |
#: src/includes/class-filesystem-functions.php:368,
|
7447 |
#: src/includes/class-storage-methods-interface.php:324,
|
7448 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
7449 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
7450 |
-
#: src/methods/stream-base.php:219, src/restorer.php:
|
7451 |
-
#: src/restorer.php:
|
7452 |
msgid "Error"
|
7453 |
msgstr ""
|
7454 |
|
7455 |
-
#: src/admin.php:
|
7456 |
msgid "Could not find that job - perhaps it has already finished?"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
-
#: src/admin.php:
|
7460 |
msgid "Job deleted"
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: src/admin.php:
|
7464 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
7465 |
msgstr ""
|
7466 |
|
@@ -7468,41 +7542,41 @@ msgstr ""
|
|
7468 |
msgid "Nothing yet logged"
|
7469 |
msgstr ""
|
7470 |
|
7471 |
-
#: src/admin.php:
|
7472 |
msgid "Please consult this FAQ if you have problems backing up."
|
7473 |
msgstr ""
|
7474 |
|
7475 |
-
#: src/admin.php:
|
7476 |
msgid "Your website is hosted using the %s web server."
|
7477 |
msgstr ""
|
7478 |
|
7479 |
-
#: src/admin.php:
|
7480 |
msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
|
7481 |
msgstr ""
|
7482 |
|
7483 |
-
#: src/admin.php:
|
7484 |
msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
|
7485 |
msgstr ""
|
7486 |
|
7487 |
-
#: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:
|
7488 |
-
#: src/admin.php:
|
7489 |
-
#: src/admin.php:
|
7490 |
-
#: src/admin.php:
|
7491 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
7492 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
7493 |
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
7494 |
#: src/methods/updraftvault.php:306,
|
7495 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
7496 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
7497 |
-
#: src/udaddons/updraftplus-addons.php:
|
7498 |
msgid "Warning"
|
7499 |
msgstr "সতর্কতা"
|
7500 |
|
7501 |
-
#: src/admin.php:
|
7502 |
msgid "Add-Ons / Pro Support"
|
7503 |
msgstr "অ্যাড অন / প্রো সাপোর্ট"
|
7504 |
|
7505 |
-
#: src/admin.php:677, src/admin.php:
|
7506 |
msgid "Settings"
|
7507 |
msgstr "সেটিংস"
|
7508 |
|
@@ -7510,7 +7584,7 @@ msgstr "সেটিংস"
|
|
7510 |
msgid "Could not create %s zip. Consult the log file for more information."
|
7511 |
msgstr ""
|
7512 |
|
7513 |
-
#: src/backup.php:
|
7514 |
msgid "Infinite recursion: consult your log for more information"
|
7515 |
msgstr ""
|
7516 |
|
@@ -7522,7 +7596,7 @@ msgstr ""
|
|
7522 |
msgid "Like UpdraftPlus and can spare one minute?"
|
7523 |
msgstr ""
|
7524 |
|
7525 |
-
#: src/addons/azure.php:268, src/class-updraftplus.php:
|
7526 |
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
7527 |
msgid "File not found"
|
7528 |
msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
|
@@ -7531,29 +7605,29 @@ msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
|
|
7531 |
msgid "The decryption key used:"
|
7532 |
msgstr ""
|
7533 |
|
7534 |
-
#: src/class-updraftplus.php:
|
7535 |
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
|
7536 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
7537 |
msgstr ""
|
7538 |
|
7539 |
-
#: src/class-updraftplus.php:
|
7540 |
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
|
7541 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#: src/backup.php:
|
7545 |
msgid "Could not open the backup file for writing"
|
7546 |
msgstr ""
|
7547 |
|
7548 |
-
#: src/class-updraftplus.php:
|
7549 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#: src/class-updraftplus.php:
|
7553 |
msgid "Could not read the directory"
|
7554 |
msgstr "ডিরেক্টরিটি পড়া যায়নি"
|
7555 |
|
7556 |
-
#: src/admin.php:
|
7557 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
7558 |
msgstr ""
|
7559 |
|
@@ -7561,35 +7635,35 @@ msgstr ""
|
|
7561 |
msgid "WordPress backup is complete"
|
7562 |
msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
|
7563 |
|
7564 |
-
#: src/class-updraftplus.php:
|
7565 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
7566 |
msgstr ""
|
7567 |
|
7568 |
-
#: src/class-updraftplus.php:
|
7569 |
msgid "The backup apparently succeeded and is now complete"
|
7570 |
msgstr ""
|
7571 |
|
7572 |
-
#: src/addons/moredatabase.php:
|
7573 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: src/class-updraftplus.php:
|
7577 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
7578 |
msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
|
7579 |
|
7580 |
-
#: src/class-updraftplus.php:
|
7581 |
msgid "Others"
|
7582 |
msgstr "অন্যান্য"
|
7583 |
|
7584 |
-
#: src/addons/multisite.php:500, src/class-updraftplus.php:
|
7585 |
msgid "Uploads"
|
7586 |
msgstr "আপলোডসমূহ"
|
7587 |
|
7588 |
-
#: src/class-updraftplus.php:
|
7589 |
msgid "Themes"
|
7590 |
msgstr "থিমসমূহ"
|
7591 |
|
7592 |
-
#: src/class-updraftplus.php:
|
7593 |
msgid "Plugins"
|
7594 |
msgstr "প্লাগইন"
|
7595 |
|
@@ -7597,11 +7671,11 @@ msgstr "প্লাগইন"
|
|
7597 |
msgid "No log files were found."
|
7598 |
msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
|
7599 |
|
7600 |
-
#: src/admin.php:
|
7601 |
msgid "The log file could not be read."
|
7602 |
msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
|
7603 |
|
7604 |
-
#: src/admin.php:
|
7605 |
#: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
|
7606 |
#: src/class-updraftplus.php:623, src/class-updraftplus.php:628
|
7607 |
msgid "UpdraftPlus notice:"
|
11 |
"Language: bn\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
15 |
+
#: src/udaddons/updraftplus-addons.php:280
|
16 |
+
msgid "go here"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
20 |
+
#: src/udaddons/updraftplus-addons.php:280
|
21 |
+
msgid "If you have already renewed, then you need to allocate a licence to this site - %s"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: src/addons/onedrive.php:864
|
25 |
+
msgid "Authentication"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: src/admin.php:924
|
29 |
+
msgid "You must select at least one remote storage destination to upload this backup set to."
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: src/templates/wp-admin/settings/form-contents.php:350
|
33 |
+
msgid "Read more about Easy Updates Manager"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:68
|
37 |
+
msgid "You can find out more about clone keys here."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:57
|
41 |
+
msgid "Or, use an UpdraftClone key"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: src/restorer.php:2493
|
45 |
+
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: src/admin.php:951
|
49 |
+
msgid "UpdraftClone key is required."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: src/admin.php:942
|
53 |
+
msgid "The preparation of the clone data has been aborted."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: src/addons/azure.php:646
|
57 |
+
msgid "Azure Government"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
61 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
62 |
msgstr ""
|
69 |
msgid "Your database user does not have permission to drop tables"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: src/admin.php:2960
|
73 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
74 |
msgstr ""
|
75 |
|
237 |
msgid "WordPress installed"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: src/admin.php:5422
|
241 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: src/admin.php:3826
|
245 |
msgid "Exclude these from"
|
246 |
msgstr ""
|
247 |
|
281 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41
|
285 |
msgid "To create a temporary clone you need credit in your account."
|
286 |
msgstr ""
|
287 |
|
293 |
msgid "failed to upload file to %s (see log file for more)"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: src/admin.php:5418
|
297 |
msgid "Dashboard:"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: src/admin.php:5417
|
301 |
msgid "Front page:"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: src/admin.php:5416
|
305 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
306 |
msgstr ""
|
307 |
|
313 |
msgid "Current clones"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: src/class-updraftplus.php:3045
|
317 |
msgid "Your clone will now deploy this data to re-create your site."
|
318 |
msgstr ""
|
319 |
|
|
|
|
|
|
|
|
|
320 |
#: src/admin.php:941
|
321 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
322 |
msgstr ""
|
379 |
msgid "Account type"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56,
|
383 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:76
|
384 |
msgid "I accept the UpdraftClone terms and conditions"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56
|
388 |
msgid "Not got an account? Get one by buying some tokens here."
|
389 |
msgstr ""
|
390 |
|
391 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
392 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41,
|
393 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
394 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
398 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
402 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
406 |
msgid "Flexible"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
410 |
msgid "Takes just the time needed to create a backup and send it."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
414 |
msgid "Fast"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
418 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
422 |
msgid "Secure"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
426 |
msgid "Runs on capacity from a leading cloud computing provider."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
430 |
msgid "Reliable"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
434 |
msgid "Press the buttons... UpdraftClone does the work."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
438 |
msgid "Easy"
|
439 |
msgstr ""
|
440 |
|
441 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
442 |
+
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test things on your live site, you can UpdraftClone it, and then throw away your clone when done."
|
443 |
msgstr ""
|
444 |
|
445 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
446 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:39
|
447 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
448 |
msgstr ""
|
449 |
|
617 |
msgid "You can buy more temporary clone tokens here."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: src/admin.php:5373
|
621 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:35
|
625 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
626 |
msgstr ""
|
627 |
|
633 |
msgid "Other great plugins"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: src/admin.php:5420, src/admin.php:5423
|
637 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: src/class-updraftplus.php:4310
|
641 |
msgid "Choose a default for each table"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: src/admin.php:3274
|
645 |
msgid "Sending files to remote site"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: src/admin.php:3269
|
649 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
650 |
msgstr ""
|
651 |
|
657 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: src/admin.php:2796
|
661 |
msgid "Backup / Restore"
|
662 |
msgstr ""
|
663 |
|
681 |
msgid "No previous backup found to add an increment to."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: src/restorer.php:2499
|
685 |
msgid "Requested character set (%s) is not present - changing to %s."
|
686 |
msgstr ""
|
687 |
|
705 |
msgid "Refresh connection"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: src/addons/reporting.php:495
|
709 |
msgid "Log all messages to syslog"
|
710 |
msgstr ""
|
711 |
|
733 |
msgid "More information here."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: src/admin.php:669, src/admin.php:2797
|
737 |
msgid "Migrate / Clone"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: src/admin.php:3034, src/admin.php:3959,
|
741 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
742 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
743 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
763 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: src/admin.php:5396
|
767 |
msgid "(current version)"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: src/admin.php:3736
|
771 |
msgid "press here"
|
772 |
msgstr ""
|
773 |
|
781 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: src/addons/incremental.php:270
|
785 |
msgid "Tell me more"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: src/addons/incremental.php:258
|
789 |
msgid "And then add an incremental backup"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: src/addons/incremental.php:236, src/updraftplus.php:99
|
793 |
msgid "Every hour"
|
794 |
msgstr ""
|
795 |
|
801 |
msgid "Available temporary clone tokens:"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: src/admin.php:2884, src/includes/class-commands.php:901,
|
805 |
#: src/includes/class-commands.php:949,
|
806 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
807 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
808 |
msgid "Processing"
|
809 |
msgstr ""
|
820 |
msgid "I consent to %s"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: src/admin.php:2982,
|
824 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
825 |
msgid "One Time Password (check your OTP app to get this password)"
|
826 |
msgstr ""
|
869 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: src/admin.php:5342
|
873 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
874 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
875 |
msgstr[0] ""
|
972 |
msgid "Upload backup"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: src/admin.php:4246
|
976 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
977 |
msgstr ""
|
978 |
|
984 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: src/admin.php:844, src/admin.php:4246
|
988 |
msgid "Upload"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/addons/reporting.php:529, src/admin.php:794
|
992 |
msgid "Only email the database backup"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/addons/reporting.php:529
|
996 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: src/addons/reporting.php:529
|
1000 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
1001 |
msgstr ""
|
1002 |
|
1110 |
msgid "Select your incremental restore point"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: src/addons/morefiles.php:67
|
1114 |
msgid "(None configured)"
|
1115 |
msgstr ""
|
1116 |
|
1118 |
msgid "Ensure you are logged into the correct account before continuing."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: src/admin.php:4984
|
1122 |
msgid "Remote storage method and instance id are required for authentication."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: src/admin.php:4980
|
1126 |
msgid "authentication error"
|
1127 |
msgstr ""
|
1128 |
|
1200 |
msgstr[0] ""
|
1201 |
msgstr[1] ""
|
1202 |
|
1203 |
+
#: src/class-updraftplus.php:4287
|
1204 |
msgid "Your chosen replacement collation"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: src/class-updraftplus.php:4264
|
1208 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: src/class-updraftplus.php:4264
|
1212 |
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."
|
1213 |
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."
|
1214 |
msgstr[0] ""
|
1276 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: src/class-updraftplus.php:4240
|
1280 |
msgid "Your chosen character set to use instead:"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: src/class-updraftplus.php:4230
|
1284 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: src/class-updraftplus.php:4230
|
1288 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1289 |
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."
|
1290 |
msgstr[0] ""
|
1374 |
msgid "Account ID"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: src/class-updraftplus.php:4069
|
1378 |
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."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
|
1382 |
msgid "the migrator add-on"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: src/class-updraftplus.php:4067
|
1386 |
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."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: src/class-updraftplus.php:4065
|
1390 |
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."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: src/class-updraftplus.php:4060
|
1394 |
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."
|
1395 |
msgstr ""
|
1396 |
|
1406 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
|
1410 |
+
#: src/class-updraftplus.php:2252,
|
1411 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1412 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
|
1416 |
+
#: src/class-updraftplus.php:2245,
|
1417 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1418 |
msgid "A PHP exception (%s) has occurred: %s"
|
1419 |
msgstr ""
|
1467 |
msgid "Instant and secure logon with a wave of your phone."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: src/admin.php:5190
|
1471 |
msgid "Value"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: src/admin.php:1779
|
1475 |
msgid "Did not know how to delete from this cloud service."
|
1476 |
msgstr ""
|
1477 |
|
1487 |
msgid "Cloud Files"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: src/admin.php:4932
|
1491 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: src/admin.php:4891
|
1495 |
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."
|
1496 |
msgstr ""
|
1497 |
|
1500 |
msgid "UpdraftVault"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: src/includes/class-wpadmin-commands.php:529
|
1504 |
msgid "archive"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: src/includes/class-wpadmin-commands.php:520
|
1508 |
msgid "Extra database"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: src/admin.php:4102
|
1512 |
msgid "Press here to download or browse"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: src/admin.php:1332, src/admin.php:1342
|
1516 |
msgid "Error: invalid path"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: src/admin.php:1131
|
1520 |
msgid "An error occurred when fetching storage module options: "
|
1521 |
msgstr ""
|
1522 |
|
1552 |
msgid "Skipped tables:"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: src/class-updraftplus.php:4365
|
1556 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: src/admin.php:3020
|
1560 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: src/admin.php:3020
|
1564 |
msgid "All WordPress tables will be backed up."
|
1565 |
msgstr ""
|
1566 |
|
1592 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: src/addons/moredatabase.php:414
|
1596 |
msgid "tables"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: src/addons/moredatabase.php:413
|
1600 |
msgid "WordPress database"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: src/addons/moredatabase.php:406
|
1604 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1605 |
msgstr ""
|
1606 |
|
1719 |
msgid "Installed"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: src/templates/wp-admin/settings/tab-addons.php:43,
|
1723 |
+
#: src/templates/wp-admin/settings/tab-addons.php:65,
|
1724 |
+
#: src/templates/wp-admin/settings/tab-addons.php:78,
|
1725 |
+
#: src/templates/wp-admin/settings/tab-addons.php:91,
|
1726 |
+
#: src/templates/wp-admin/settings/tab-addons.php:104,
|
1727 |
+
#: src/templates/wp-admin/settings/tab-addons.php:117,
|
1728 |
+
#: src/templates/wp-admin/settings/tab-addons.php:130,
|
1729 |
+
#: src/templates/wp-admin/settings/tab-addons.php:143,
|
1730 |
+
#: src/templates/wp-admin/settings/tab-addons.php:156,
|
1731 |
+
#: src/templates/wp-admin/settings/tab-addons.php:169,
|
1732 |
+
#: src/templates/wp-admin/settings/tab-addons.php:182,
|
1733 |
+
#: src/templates/wp-admin/settings/tab-addons.php:195,
|
1734 |
+
#: src/templates/wp-admin/settings/tab-addons.php:208,
|
1735 |
+
#: src/templates/wp-admin/settings/tab-addons.php:221,
|
1736 |
+
#: src/templates/wp-admin/settings/tab-addons.php:234,
|
1737 |
+
#: src/templates/wp-admin/settings/tab-addons.php:251
|
1738 |
msgid "Free"
|
1739 |
msgstr ""
|
1740 |
|
1757 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: src/addons/morefiles.php:319
|
1761 |
msgid "Please choose a file or directory"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: src/addons/morefiles.php:312
|
1765 |
msgid "Confirm"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: src/addons/morefiles.php:307, src/addons/morefiles.php:307
|
1769 |
msgid "Go up a directory"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: src/addons/morefiles.php:304
|
1773 |
msgid "Add directory..."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: src/addons/morefiles.php:297, src/addons/morefiles.php:317,
|
1777 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1778 |
msgid "Edit"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: src/addons/morefiles.php:280
|
1782 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1783 |
msgstr ""
|
1784 |
|
1851 |
msgstr ""
|
1852 |
|
1853 |
#: src/includes/updraftplus-notices.php:238
|
1854 |
+
msgid "Happy New Year - 20% off UpdraftPlus Premium until January 14th"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
#: src/includes/updraftplus-notices.php:225
|
2037 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: src/admin.php:1862
|
2041 |
msgid "Remote files deleted:"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: src/admin.php:1861
|
2045 |
msgid "Local files deleted:"
|
2046 |
msgstr ""
|
2047 |
|
2097 |
msgid "Account is not authorized (%s)."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
|
2101 |
msgid "Your IP address:"
|
2102 |
msgstr "আপনার আইপি অ্যাড্রেসঃ"
|
2103 |
|
2104 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
|
2105 |
+
#: src/udaddons/updraftplus-addons.php:903
|
2106 |
msgid "To remove any block, please go here."
|
2107 |
msgstr "কোন ব্লক সরাতে এখানে যান।"
|
2108 |
|
2109 |
+
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
|
2110 |
msgid "An error response was received; HTTP code:"
|
2111 |
msgstr ""
|
2112 |
|
2122 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2123 |
msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
|
2124 |
|
2125 |
+
#: src/admin.php:2607
|
2126 |
msgid "To fix this problem go here."
|
2127 |
msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
|
2128 |
|
2129 |
+
#: src/admin.php:2607
|
2130 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2131 |
msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
|
2132 |
|
2158 |
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."
|
2159 |
msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ করার মাধ্যমে সৃষ্ট। আপনি যদি বিস্তারিত না জানেন, তাহলে আপনার WebDAV প্রোভাইডারকে জিজ্ঞেস করুন।"
|
2160 |
|
2161 |
+
#: src/udaddons/updraftplus-addons.php:906
|
2162 |
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."
|
2163 |
msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
|
2164 |
|
2202 |
msgid "Public key was sent to:"
|
2203 |
msgstr "পাবলিক কি টি পাঠানো হয়েছিল:"
|
2204 |
|
2205 |
+
#: src/backup.php:2353
|
2206 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2207 |
msgstr "ডিরেক্টরি খুলতে ব্যর্থ (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন): %s"
|
2208 |
|
2209 |
+
#: src/backup.php:2331
|
2210 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2211 |
msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
|
2212 |
|
2264 |
msgid "login"
|
2265 |
msgstr "লগিন"
|
2266 |
|
2267 |
+
#: src/addons/reporting.php:527, src/addons/reporting.php:527,
|
2268 |
+
#: src/addons/reporting.php:529, src/methods/email.php:100
|
2269 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2270 |
msgstr ""
|
2271 |
|
2273 |
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."
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: src/class-updraftplus.php:1793
|
2277 |
msgid "Size: %s MB"
|
2278 |
msgstr "সাইজঃ %s MB"
|
2279 |
|
2281 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
2285 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2286 |
msgstr ""
|
2287 |
|
2387 |
msgid "UpdraftCentral Connection"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: src/backup.php:1042, src/class-updraftplus.php:3026
|
2391 |
msgid "The backup was aborted by the user"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: src/admin.php:4927
|
2395 |
msgid "Your settings have been saved."
|
2396 |
msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
|
2397 |
|
2398 |
+
#: src/admin.php:4007
|
2399 |
msgid "Total backup size:"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: src/admin.php:3414
|
2403 |
msgid "stop"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: src/admin.php:903, src/admin.php:3207
|
2407 |
msgid "The backup has finished running"
|
2408 |
msgstr ""
|
2409 |
|
2465 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: src/class-updraftplus.php:4138, src/restorer.php:2227
|
2469 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: src/class-updraftplus.php:4134
|
2473 |
msgid "Please read this link for important information on this process."
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: src/class-updraftplus.php:4134
|
2477 |
msgid "It will be imported as a new site."
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
|
2481 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2482 |
msgid "Dismiss"
|
2483 |
msgstr "খারিজ"
|
2543 |
msgid "Call WordPress action:"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: src/admin.php:3030
|
2547 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2548 |
msgstr ""
|
2549 |
|
2575 |
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)."
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: src/admin.php:4801
|
2579 |
msgid "Send this backup to remote storage"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: src/admin.php:4799
|
2583 |
msgid "Check out UpdraftPlus Vault."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: src/admin.php:4799
|
2587 |
msgid "Not got any remote storage?"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: src/admin.php:4799
|
2591 |
msgid "settings"
|
2592 |
msgstr "সেটিংস"
|
2593 |
|
2594 |
+
#: src/admin.php:4799
|
2595 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: src/admin.php:3028
|
2599 |
msgid "Include any files in the backup"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: src/admin.php:3012
|
2603 |
msgid "Include the database in the backup"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: src/admin.php:2839
|
2607 |
msgid "Continue restoration"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: src/admin.php:2834
|
2611 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: src/admin.php:2833
|
2615 |
msgid "Unfinished restoration"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: src/admin.php:2831
|
2619 |
msgid "%s minutes, %s seconds"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: src/admin.php:2697
|
2623 |
msgid "Backup Contents And Schedule"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/admin.php:2800
|
2627 |
msgid "Premium / Extensions"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: src/admin.php:2474, src/admin.php:2483
|
2631 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: src/addons/morefiles.php:71, src/admin.php:875
|
2635 |
msgctxt "(verb)"
|
2636 |
msgid "Download"
|
2637 |
msgstr ""
|
2644 |
msgid "Extensions"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: src/admin.php:685, src/admin.php:2799
|
2648 |
msgid "Advanced Tools"
|
2649 |
msgstr ""
|
2650 |
|
2763 |
msgid "Could not access container"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: src/class-updraftplus.php:3045
|
2767 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2768 |
msgstr ""
|
2769 |
|
2893 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: src/admin.php:1860
|
2897 |
msgid "Backup sets removed:"
|
2898 |
msgstr ""
|
2899 |
|
2933 |
msgid "Add an additional retention rule..."
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: src/restorer.php:2805
|
2937 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: src/restorer.php:2805
|
2941 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2942 |
msgstr ""
|
2943 |
|
2945 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/class-updraftplus.php:4209
|
2949 |
msgid "You must upgrade MySQL to be able to use this database."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/class-updraftplus.php:4209
|
2953 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/admin.php:2592
|
2957 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2958 |
msgstr ""
|
2959 |
|
2981 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: src/admin.php:1190
|
2985 |
msgid "Go to the remote storage settings in order to connect."
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: src/admin.php:1190
|
2989 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2990 |
msgstr ""
|
2991 |
|
3129 |
msgid "Delete failed:"
|
3130 |
msgstr "ডিলিট ব্যর্থ:"
|
3131 |
|
3132 |
+
#: src/backup.php:3431
|
3133 |
msgid "The zip engine returned the message: %s."
|
3134 |
msgstr "Zip engine টি এই বার্তা নিয়ে এসেছে: %s।"
|
3135 |
|
3209 |
msgid "This storage method does not allow downloading"
|
3210 |
msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
|
3211 |
|
3212 |
+
#: src/admin.php:4165
|
3213 |
msgid "(backup set imported from remote location)"
|
3214 |
msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
|
3215 |
|
3355 |
msgid "Adding..."
|
3356 |
msgstr "যুক্ত করা হচ্ছে..."
|
3357 |
|
3358 |
+
#: src/udaddons/options.php:294
|
3359 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: src/restorer.php:2807
|
3363 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3367 |
msgid "go here to change your password on updraftplus.com."
|
3368 |
msgstr "আপনার updraftplus.com এর পাসওয়ার্ডটি পরিবর্তন করতে এখানে যান।"
|
3369 |
|
3370 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3371 |
msgid "If you have forgotten your password "
|
3372 |
msgstr "আপনি যদি আপনার পাসওয়ার্ডটি ভুলে গিয়ে থাকেন"
|
3373 |
|
3374 |
+
#: src/udaddons/updraftplus-addons.php:938
|
3375 |
msgid "Go here to re-enter your password."
|
3376 |
msgstr "এখানে যান আপনার পাসওয়ার্ডটি পুনরাই দিতে।"
|
3377 |
|
3409 |
msgstr ""
|
3410 |
|
3411 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3412 |
+
msgid "authorization failed:"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
3585 |
|
3586 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3587 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3588 |
+
#: src/udaddons/updraftplus-addons.php:889,
|
3589 |
+
#: src/udaddons/updraftplus-addons.php:903
|
3590 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3591 |
msgstr ""
|
3592 |
|
3593 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3594 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3595 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3596 |
msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
|
3597 |
|
3598 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3599 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3600 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3601 |
msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
|
3602 |
|
3634 |
msgid "Dismiss (for %s months)"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: src/addons/fixtime.php:448
|
3638 |
msgid "(at same time as files backup)"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: src/admin.php:3701
|
3642 |
msgid "No backup has been completed"
|
3643 |
msgstr ""
|
3644 |
|
3712 |
msgid "Check this box to have a basic report sent to"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: src/admin.php:3715
|
3716 |
msgctxt "i.e. Non-automatic"
|
3717 |
msgid "Manual"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: src/restorer.php:2784
|
3721 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3722 |
msgid "An error (%s) occurred:"
|
3723 |
msgstr ""
|
3726 |
msgid "Change Lock Settings"
|
3727 |
msgstr "লক সেটিং পরিবর্তন করুন"
|
3728 |
|
3729 |
+
#: src/addons/morefiles.php:258
|
3730 |
msgid "Any other file/directory on your server that you wish to backup"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
+
#: src/admin.php:2609
|
3734 |
msgid "For even more features and personal support, check out "
|
3735 |
msgstr ""
|
3736 |
|
3816 |
msgid "The admin password has now been removed."
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: src/addons/morefiles.php:141
|
3820 |
msgid "(learn more about this significant option)"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: src/udaddons/options.php:237
|
3824 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: src/admin.php:3207, src/admin.php:4276
|
3828 |
msgid "View Log"
|
3829 |
msgstr ""
|
3830 |
|
3843 |
msgid "and retain this many scheduled backups"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: src/admin.php:3671
|
3847 |
msgid "incremental backup; base backup: %s"
|
3848 |
msgstr ""
|
3849 |
|
3856 |
msgid "Upload files into UpdraftPlus."
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: src/admin.php:1136, src/includes/class-commands.php:462,
|
3860 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3861 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: src/class-updraftplus.php:4123
|
3865 |
msgid "Backup label:"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: src/addons/backblaze.php:205, src/admin.php:2111
|
3869 |
msgid "Error: unexpected file read fail"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: src/backup.php:3437
|
3873 |
msgid "check your log for more details."
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: src/backup.php:3435
|
3877 |
msgid "your web hosting account appears to be full; please see: %s"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: src/backup.php:3433
|
3881 |
msgid "A zip error occurred"
|
3882 |
msgstr ""
|
3883 |
|
3889 |
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."
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:942
|
3893 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:938
|
3897 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:804
|
3901 |
msgid "You need to supply both an email address and a password"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: src/class-updraftplus.php:4142
|
3905 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: src/class-updraftplus.php:4142
|
3909 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3910 |
msgstr ""
|
3911 |
|
3942 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: src/class-updraftplus.php:4115
|
3946 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: src/class-updraftplus.php:4115
|
3950 |
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."
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: src/class-updraftplus.php:4115
|
3954 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: src/class-updraftplus.php:4115
|
3958 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3959 |
msgstr ""
|
3960 |
|
3983 |
msgid "UpdraftPlus is on social media - check us out!"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: src/addons/wp-cli.php:907, src/admin.php:4464
|
3987 |
msgid "Why am I seeing this?"
|
3988 |
msgstr "আমি কেন এটি দেখছি?"
|
3989 |
|
3997 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: src/admin.php:2048, src/admin.php:2060, src/includes/class-commands.php:833
|
4001 |
msgid "Start backup"
|
4002 |
msgstr "ব্যাকআপ শুরু করুন"
|
4003 |
|
4004 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
4005 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: src/admin.php:3569
|
4009 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
4010 |
msgstr ""
|
4011 |
|
4013 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: src/admin.php:2286
|
4017 |
msgid "This file could not be uploaded"
|
4018 |
msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
|
4019 |
|
4020 |
+
#: src/admin.php:2249
|
4021 |
msgid "You will find more information about this in the Settings section."
|
4022 |
msgstr ""
|
4023 |
|
4057 |
msgid "Backup succeeded"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: src/addons/incremental.php:237, src/addons/incremental.php:238,
|
4061 |
+
#: src/addons/incremental.php:239, src/addons/incremental.php:240,
|
4062 |
+
#: src/admin.php:3716, src/admin.php:3717, src/admin.php:3718,
|
4063 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4064 |
msgid "Every %s hours"
|
4065 |
msgstr ""
|
4098 |
msgid "search term"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: src/restorer.php:2812
|
4102 |
msgid "Too many database errors have occurred - aborting"
|
4103 |
msgstr ""
|
4104 |
|
4134 |
msgid "Free disk space in account:"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: src/admin.php:4898, src/templates/wp-admin/settings/take-backup.php:50
|
4138 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4139 |
msgstr ""
|
4140 |
|
4141 |
+
#: src/admin.php:817, src/admin.php:1916,
|
4142 |
#: src/includes/deprecated-actions.php:29,
|
4143 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4144 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
4146 |
msgid "Existing Backups"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
+
#: src/admin.php:1141
|
4150 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: src/admin.php:1141
|
4154 |
msgid "To make a backup, just press the Backup Now button."
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: src/admin.php:1141
|
4158 |
msgid "Welcome to UpdraftPlus!"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
+
#: src/addons/moredatabase.php:318
|
4162 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4163 |
msgstr ""
|
4164 |
|
4165 |
+
#: src/addons/moredatabase.php:257
|
4166 |
msgid "Testing..."
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: src/addons/moredatabase.php:244
|
4170 |
msgid "Test connection..."
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: src/addons/moredatabase.php:243
|
4174 |
msgid "Table prefix"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: src/addons/moredatabase.php:237
|
4178 |
msgid "Backup external database"
|
4179 |
msgstr ""
|
4180 |
|
4226 |
msgid "user"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: src/class-updraftplus.php:1790
|
4230 |
msgid "External database (%s)"
|
4231 |
msgstr ""
|
4232 |
|
4244 |
msgid "However, subsequent access attempts failed:"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: src/addons/wp-cli.php:437, src/admin.php:4032
|
4248 |
msgid "External database"
|
4249 |
msgstr ""
|
4250 |
|
4276 |
msgid "use UpdraftPlus Premium"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
+
#: src/class-updraftplus.php:3966
|
4280 |
msgid "Decryption failed. The database file is encrypted."
|
4281 |
msgstr ""
|
4282 |
|
4284 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: src/restorer.php:2284, src/restorer.php:2753, src/restorer.php:2794,
|
4288 |
+
#: src/restorer.php:2807
|
4289 |
msgid "An error occurred on the first %s command - aborting run"
|
4290 |
msgstr ""
|
4291 |
|
4331 |
msgid "Tenant"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: src/addons/wp-cli.php:800, src/admin.php:4586, src/admin.php:5342,
|
4335 |
#: src/methods/openstack2.php:144,
|
4336 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4337 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
4477 |
msgid "Failed to unpack the archive"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: src/class-updraftplus.php:1365
|
4481 |
msgid "Error - failed to download the file"
|
4482 |
msgstr ""
|
4483 |
|
4486 |
msgid "Rescan local folder for new backup sets"
|
4487 |
msgstr ""
|
4488 |
|
4489 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4490 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4491 |
msgstr ""
|
4492 |
|
4493 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4494 |
msgid "It has been tested up to version %s."
|
4495 |
msgstr ""
|
4496 |
|
4497 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4498 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4499 |
msgstr ""
|
4500 |
|
4503 |
msgstr ""
|
4504 |
|
4505 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4506 |
+
#: src/admin.php:5190, src/templates/wp-admin/settings/temporary-clone.php:63
|
4507 |
msgid "Key"
|
4508 |
msgstr ""
|
4509 |
|
4519 |
msgid "SCP/SFTP password/key"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4523 |
msgid "Files backup (created by %s)"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4527 |
msgid "Files and database WordPress backup (created by %s)"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: src/addons/importer.php:276, src/admin.php:4070,
|
4531 |
#: src/includes/class-backup-history.php:435
|
4532 |
msgid "Backup created by: %s."
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: src/addons/wp-cli.php:431, src/admin.php:4030
|
4536 |
msgid "Database (created by %s)"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
+
#: src/addons/wp-cli.php:429, src/admin.php:4024, src/admin.php:4072
|
4540 |
msgid "unknown source"
|
4541 |
msgstr ""
|
4542 |
|
4551 |
msgid "Upload backup files"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: src/admin.php:2301
|
4555 |
msgid "This backup was created by %s, and can be imported."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: src/admin.php:1170
|
4559 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: src/admin.php:1170
|
4563 |
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."
|
4564 |
msgstr ""
|
4565 |
|
4576 |
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))."
|
4577 |
msgstr ""
|
4578 |
|
4579 |
+
#: src/admin.php:4073, src/includes/class-wpadmin-commands.php:162,
|
4580 |
#: src/restorer.php:1975
|
4581 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4582 |
msgstr ""
|
4615 |
msgid "(Read more)"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: src/addons/reporting.php:496
|
4619 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: src/addons/morefiles.php:538
|
4623 |
msgid "No backup of location: there was nothing found to back up"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: src/addons/moredatabase.php:236, src/addons/morefiles.php:297,
|
4627 |
+
#: src/addons/morefiles.php:318
|
4628 |
msgid "Remove"
|
4629 |
msgstr ""
|
4630 |
|
4636 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4637 |
msgstr ""
|
4638 |
|
4639 |
+
#: src/addons/morefiles.php:476, src/admin.php:3829
|
4640 |
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."
|
4641 |
msgstr ""
|
4642 |
|
4665 |
msgid "Backup created by:"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: src/udaddons/options.php:479
|
4669 |
msgid "Available to claim on this site"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4673 |
msgid "To maintain your access to support, please renew."
|
4674 |
msgstr ""
|
4675 |
|
4676 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4677 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4678 |
msgstr ""
|
4679 |
|
4680 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4681 |
msgid "To regain your access, please renew."
|
4682 |
msgstr ""
|
4683 |
|
4684 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4685 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4689 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4690 |
msgstr ""
|
4691 |
|
4692 |
+
#: src/udaddons/updraftplus-addons.php:276,
|
4693 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4694 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/udaddons/updraftplus-addons.php:276
|
4698 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4702 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: src/udaddons/updraftplus-addons.php:266,
|
4706 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4707 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: src/udaddons/updraftplus-addons.php:266
|
4711 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4712 |
msgstr ""
|
4713 |
|
4714 |
+
#: src/udaddons/updraftplus-addons.php:228
|
4715 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4716 |
msgstr ""
|
4717 |
|
4728 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4729 |
msgstr ""
|
4730 |
|
4731 |
+
#: src/includes/class-wpadmin-commands.php:328
|
4732 |
msgid "Constants"
|
4733 |
msgstr ""
|
4734 |
|
4752 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
+
#: src/udaddons/updraftplus-addons.php:474,
|
4756 |
+
#: src/udaddons/updraftplus-addons.php:510
|
4757 |
msgid "Errors occurred:"
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: src/addons/wp-cli.php:664, src/admin.php:4506
|
4761 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4762 |
msgstr ""
|
4763 |
|
4781 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
+
#: src/admin.php:1145, src/class-updraftplus.php:847
|
4785 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4786 |
msgstr ""
|
4787 |
|
4794 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: src/addons/moredatabase.php:144, src/admin.php:1640
|
4798 |
msgid "Messages:"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: src/restorer.php:2647
|
4802 |
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"
|
4803 |
msgstr ""
|
4804 |
|
4956 |
msgstr ""
|
4957 |
|
4958 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4959 |
+
#: src/udaddons/options.php:229
|
4960 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4961 |
msgstr ""
|
4962 |
|
4972 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:4584
|
4976 |
msgid "Error data:"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: src/admin.php:4487
|
4980 |
msgid "Backup does not exist in the backup history"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: src/admin.php:3143
|
4984 |
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."
|
4985 |
msgstr ""
|
4986 |
|
5008 |
msgid "Moving old data out of the way..."
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: src/addons/reporting.php:481
|
5012 |
msgid "Add another address..."
|
5013 |
msgstr ""
|
5014 |
|
5015 |
+
#: src/addons/reporting.php:466
|
5016 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: src/addons/reporting.php:440
|
5020 |
msgid "Email reports"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
+
#: src/class-updraftplus.php:1798, src/class-updraftplus.php:1803
|
5024 |
msgid "%s checksum: %s"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: src/class-updraftplus.php:1734, src/class-updraftplus.php:1736
|
5028 |
msgid "files: %s"
|
5029 |
msgstr ""
|
5030 |
|
5036 |
msgid "Debugging information"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: src/addons/reporting.php:223, src/admin.php:3990
|
5040 |
msgid "Uploaded to:"
|
5041 |
msgstr ""
|
5042 |
|
5056 |
msgid "Errors / warnings:"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: src/addons/morefiles.php:129, src/addons/morefiles.php:130,
|
5060 |
#: src/addons/reporting.php:184
|
5061 |
msgid "Contains:"
|
5062 |
msgstr ""
|
5077 |
msgid "%d errors, %d warnings"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: src/methods/dropbox.php:753, src/methods/dropbox.php:775
|
|
|
5081 |
msgid "%s authentication"
|
5082 |
msgstr ""
|
5083 |
|
5108 |
msgid "Your site's admin email address (%s) will be used."
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: src/admin.php:853, src/admin.php:2874, src/methods/updraftvault.php:319,
|
5112 |
+
#: src/methods/updraftvault.php:362,
|
5113 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
5114 |
msgid "Connect"
|
5115 |
msgstr ""
|
5116 |
|
5118 |
msgid "For more reporting features, use the Reporting add-on."
|
5119 |
msgstr ""
|
5120 |
|
5121 |
+
#: src/class-updraftplus.php:4047
|
5122 |
msgid "(version: %s)"
|
5123 |
msgstr ""
|
5124 |
|
5126 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5127 |
msgstr ""
|
5128 |
|
5129 |
+
#: src/addons/reporting.php:527, src/admin.php:791
|
5130 |
msgid "When the Email storage method is enabled, also send the backup"
|
5131 |
msgstr ""
|
5132 |
|
5190 |
msgid "UpdraftPlus warning:"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
+
#: src/udaddons/options.php:485
|
5194 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5195 |
msgstr ""
|
5196 |
|
5218 |
msgid "UpdraftPlus Support"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
+
#: src/udaddons/options.php:357
|
5222 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5223 |
msgstr ""
|
5224 |
|
5225 |
+
#: src/udaddons/options.php:346, src/udaddons/updraftplus-addons.php:315
|
5226 |
msgid "UpdraftPlus Addons"
|
5227 |
msgstr ""
|
5228 |
|
5231 |
msgstr ""
|
5232 |
|
5233 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5234 |
+
#: src/udaddons/updraftplus-addons.php:949
|
5235 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:945
|
5239 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5243 |
+
#: src/udaddons/updraftplus-addons.php:908
|
5244 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: src/udaddons/updraftplus-addons.php:831
|
5248 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: src/udaddons/updraftplus-addons.php:829
|
5252 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5253 |
msgstr ""
|
5254 |
|
5259 |
msgid "Reporting"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: src/admin.php:5187
|
5263 |
msgid "Options (raw)"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: src/addons/reporting.php:525, src/admin.php:790
|
5267 |
msgid "Send a report only when there are warnings/errors"
|
5268 |
msgstr ""
|
5269 |
|
5279 |
msgid "See also the \"More Files\" add-on from our shop."
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: src/backup.php:3424, src/class-updraftplus.php:860
|
5283 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: src/class-updraftplus.php:844
|
5287 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: src/udaddons/options.php:508
|
5291 |
msgid "Manage Addons"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: src/udaddons/options.php:486, src/udaddons/options.php:486
|
5295 |
msgid "Buy It"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: src/udaddons/options.php:485
|
5299 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: src/udaddons/options.php:479, src/udaddons/options.php:481
|
5303 |
msgid "activate it on this site"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: src/udaddons/options.php:481
|
5307 |
msgid "You have an inactive purchase"
|
5308 |
msgstr ""
|
5309 |
|
5331 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: src/udaddons/options.php:296
|
5335 |
msgid "An unknown response was received. Response was:"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: src/udaddons/options.php:295
|
5339 |
msgid "Claim not granted - your account login details were wrong"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: src/udaddons/options.php:293
|
5343 |
msgid "Please wait whilst we make the claim..."
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: src/udaddons/options.php:247
|
5347 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: src/udaddons/options.php:240
|
5351 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: src/udaddons/options.php:236
|
5355 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: src/udaddons/options.php:235
|
5359 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: src/admin.php:2872
|
5363 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: src/admin.php:2948
|
5367 |
msgid "Forgotten your details?"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: src/admin.php:2861
|
5371 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: src/admin.php:2927
|
5375 |
msgid "Connect with your UpdraftPlus.Com account"
|
5376 |
msgstr ""
|
5377 |
|
5403 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: src/addons/moredatabase.php:313,
|
5407 |
#: src/includes/class-updraftplus-encryption.php:148
|
5408 |
msgid "Without it, encryption will be a lot slower."
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: src/addons/moredatabase.php:313,
|
5412 |
#: src/includes/class-updraftplus-encryption.php:148
|
5413 |
msgid "Your web-server does not have the %s module installed."
|
5414 |
msgstr ""
|
5459 |
msgid "You can send a backup to more than one destination with an add-on."
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: src/admin.php:3414
|
5463 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: src/admin.php:3281
|
5467 |
msgid "(%s%%, file %s of %s)"
|
5468 |
msgstr ""
|
5469 |
|
5504 |
msgid "%s settings test result:"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: src/admin.php:4138, src/admin.php:4140
|
5508 |
msgid "(Not finished)"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: src/admin.php:4140
|
5512 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5513 |
msgstr ""
|
5514 |
|
5520 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: src/admin.php:3382
|
5524 |
msgid "Job ID: %s"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: src/admin.php:3362
|
5528 |
msgid "last activity: %ss ago"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: src/admin.php:3361
|
5532 |
msgid "next resumption: %d (after %ss)"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: src/admin.php:3344, src/central/bootstrap.php:444,
|
5536 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5537 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5538 |
msgid "Unknown"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: src/admin.php:3295
|
5542 |
msgid "Backup finished"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: src/admin.php:3290
|
5546 |
msgid "Waiting until scheduled time to retry because of errors"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: src/admin.php:3286
|
5550 |
msgid "Pruning old backup sets"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: src/admin.php:3273
|
5554 |
msgid "Uploading files to remote storage"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: src/admin.php:3342
|
5558 |
msgid "Encrypted database"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
+
#: src/admin.php:3334
|
5562 |
msgid "Encrypting database"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: src/admin.php:3308
|
5566 |
msgid "Created database backup"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: src/admin.php:3321
|
5570 |
msgid "table: %s"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: src/admin.php:3319
|
5574 |
msgid "Creating database backup"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: src/admin.php:3264
|
5578 |
msgid "Created file backup zips"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: src/admin.php:3251
|
5582 |
msgid "Creating file backup zips"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
+
#: src/admin.php:3246
|
5586 |
msgid "Backup begun"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
+
#: src/admin.php:1149
|
5590 |
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."
|
5591 |
msgstr ""
|
5592 |
|
5602 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
+
#: src/class-updraftplus.php:3055
|
5606 |
msgid "The backup has not finished; a resumption is scheduled"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: src/class-updraftplus.php:2076
|
5610 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5611 |
msgstr ""
|
5612 |
|
5615 |
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)."
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: src/admin.php:2636
|
5619 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5620 |
msgstr ""
|
5621 |
|
5668 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5672 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5676 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: src/addons/morefiles.php:190
|
5680 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: src/addons/morefiles.php:180
|
5684 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5685 |
msgstr ""
|
5686 |
|
5695 |
msgid "Support"
|
5696 |
msgstr "সহায়তা"
|
5697 |
|
5698 |
+
#: src/class-updraftplus.php:4370
|
5699 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: src/class-updraftplus.php:4362
|
5703 |
msgid "This database backup is missing core WordPress tables: %s"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: src/class-updraftplus.php:4108
|
5707 |
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."
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: src/class-updraftplus.php:4107, src/class-updraftplus.php:4114
|
5711 |
msgid "%s version: %s"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: src/class-updraftplus.php:3983
|
5715 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
5716 |
msgstr ""
|
5717 |
|
5718 |
+
#: src/addons/autobackup.php:1067, src/admin.php:974,
|
5719 |
#: src/includes/updraftplus-notices.php:171
|
5720 |
msgid "Be safe with an automatic backup"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: src/admin.php:2589
|
5724 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
5725 |
msgstr ""
|
5726 |
|
5768 |
msgid "Delete from your web server"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: src/admin.php:4110
|
5772 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
5773 |
msgstr ""
|
5774 |
|
5775 |
+
#: src/admin.php:4107
|
5776 |
msgid "(%d archive(s) in set)."
|
5777 |
msgstr ""
|
5778 |
|
5780 |
msgid "Split archives every:"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: src/addons/moredatabase.php:273
|
5784 |
msgid "Error: the server sent us a response (JSON) which we did not understand."
|
5785 |
msgstr ""
|
5786 |
|
5792 |
msgid "Error: the server sent an empty response."
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: src/admin.php:2315
|
5796 |
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?"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: src/includes/class-wpadmin-commands.php:238
|
5800 |
msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: src/includes/class-wpadmin-commands.php:236
|
5804 |
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."
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: src/includes/class-wpadmin-commands.php:234
|
5808 |
msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
|
5809 |
msgstr ""
|
5810 |
|
5837 |
msgid "Moving unpacked backup into place..."
|
5838 |
msgstr ""
|
5839 |
|
5840 |
+
#: src/backup.php:3097, src/backup.php:3380
|
5841 |
msgid "Failed to open the zip file (%s) - %s"
|
5842 |
msgstr ""
|
5843 |
|
5844 |
+
#: src/addons/morefiles.php:168
|
5845 |
msgid "WordPress root directory server path: %s"
|
5846 |
msgstr ""
|
5847 |
|
5866 |
msgid "Looking for %s archive: file name: %s"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
+
#: src/addons/wp-cli.php:784, src/admin.php:4568
|
5870 |
msgid "Final checks"
|
5871 |
msgstr ""
|
5872 |
|
5878 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
+
#: src/admin.php:3815
|
5882 |
msgid "Your wp-content directory server path: %s"
|
5883 |
msgstr ""
|
5884 |
|
5899 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
5900 |
msgstr ""
|
5901 |
|
5902 |
+
#: src/class-updraftplus.php:3991
|
5903 |
msgid "Failed to open database file."
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: src/admin.php:5152
|
5907 |
msgid "Known backups (raw)"
|
5908 |
msgstr ""
|
5909 |
|
5921 |
|
5922 |
#: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
|
5923 |
#: src/addons/migrator.php:493, src/addons/migrator.php:496,
|
5924 |
+
#: src/admin.php:1149, src/admin.php:2594, src/backup.php:3431,
|
5925 |
+
#: src/class-updraftplus.php:4230, src/class-updraftplus.php:4230,
|
5926 |
#: src/updraftplus.php:157
|
5927 |
msgid "Go here for more information."
|
5928 |
msgstr ""
|
5931 |
msgid "Some files are still downloading or being processed - please wait."
|
5932 |
msgstr ""
|
5933 |
|
5934 |
+
#: src/class-updraftplus.php:4078, src/class-updraftplus.php:4098
|
5935 |
msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
|
5936 |
msgstr ""
|
5937 |
|
5938 |
+
#: src/addons/fixtime.php:571
|
5939 |
msgid "The time zone used is that from your WordPress settings, in Settings -> General."
|
5940 |
msgstr ""
|
5941 |
|
5942 |
+
#: src/addons/fixtime.php:571
|
5943 |
msgid "Enter in format HH:MM (e.g. 14:22)."
|
5944 |
msgstr ""
|
5945 |
|
5983 |
msgid "%s error - failed to upload file"
|
5984 |
msgstr ""
|
5985 |
|
5986 |
+
#: src/class-updraftplus.php:1254, src/methods/cloudfiles.php:211
|
5987 |
msgid "%s error - failed to re-assemble chunks"
|
5988 |
msgstr ""
|
5989 |
|
5998 |
msgstr ""
|
5999 |
|
6000 |
#: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
|
6001 |
+
#: src/admin.php:2286, src/admin.php:2307, src/admin.php:2315,
|
6002 |
+
#: src/class-updraftplus.php:996, src/class-updraftplus.php:1002,
|
6003 |
+
#: src/class-updraftplus.php:3964, src/class-updraftplus.php:3966,
|
6004 |
+
#: src/class-updraftplus.php:4131, src/class-updraftplus.php:4138,
|
6005 |
+
#: src/class-updraftplus.php:4209, src/methods/googledrive.php:395,
|
6006 |
#: src/methods/s3.php:341
|
6007 |
msgid "Error: %s"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: src/admin.php:3734
|
6011 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
6012 |
msgstr ""
|
6013 |
|
6014 |
+
#: src/admin.php:3732
|
6015 |
msgid "Backup directory specified does <b>not</b> exist."
|
6016 |
msgstr ""
|
6017 |
|
6018 |
+
#: src/admin.php:3396, src/admin.php:3683
|
6019 |
msgid "Warning: %s"
|
6020 |
msgstr ""
|
6021 |
|
6022 |
+
#: src/backup.php:3123
|
6023 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
+
#: src/backup.php:2418
|
6027 |
msgid "%s: unreadable file - could not be backed up"
|
6028 |
msgstr ""
|
6029 |
|
6031 |
msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: src/backup.php:1859
|
6035 |
msgid "An error occurred whilst closing the final database file"
|
6036 |
msgstr ""
|
6037 |
|
6039 |
msgid "Warnings encountered:"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
+
#: src/class-updraftplus.php:3039
|
6043 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
+
#: src/class-updraftplus.php:873
|
6047 |
msgid "Your free disk space is very low - only %s Mb remain"
|
6048 |
msgstr ""
|
6049 |
|
6095 |
msgid "Please supply the requested information, and then continue."
|
6096 |
msgstr ""
|
6097 |
|
6098 |
+
#: src/class-updraftplus.php:4149, src/restorer.php:2233
|
6099 |
msgid "Site information:"
|
6100 |
msgstr ""
|
6101 |
|
6103 |
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."
|
6104 |
msgstr ""
|
6105 |
|
6106 |
+
#: src/admin.php:2589, src/class-updraftplus.php:4142, src/restorer.php:2647
|
6107 |
msgid "Warning:"
|
6108 |
msgstr ""
|
6109 |
|
6110 |
+
#: src/class-updraftplus.php:4131, src/class-updraftplus.php:4134,
|
6111 |
#: src/restorer.php:530
|
6112 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
6113 |
msgstr ""
|
6116 |
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."
|
6117 |
msgstr ""
|
6118 |
|
6119 |
+
#: src/addons/azure.php:601, src/admin.php:3907,
|
6120 |
#: src/methods/updraftvault.php:306
|
6121 |
msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
|
6122 |
msgstr ""
|
6132 |
msgid "Unexpected response:"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: src/addons/reporting.php:523, src/admin.php:796
|
6136 |
msgid "To send to more than one address, separate each address with a comma."
|
6137 |
msgstr ""
|
6138 |
|
6160 |
msgid "Also delete from remote storage"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
+
#: src/admin.php:3085
|
6164 |
msgid "Latest UpdraftPlus.com news:"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
#: src/templates/wp-admin/settings/header.php:11,
|
6168 |
+
#: src/templates/wp-admin/settings/tab-addons.php:47,
|
6169 |
+
#: src/templates/wp-admin/settings/tab-addons.php:68,
|
6170 |
+
#: src/templates/wp-admin/settings/tab-addons.php:81,
|
6171 |
+
#: src/templates/wp-admin/settings/tab-addons.php:94,
|
6172 |
+
#: src/templates/wp-admin/settings/tab-addons.php:107,
|
6173 |
+
#: src/templates/wp-admin/settings/tab-addons.php:120,
|
6174 |
+
#: src/templates/wp-admin/settings/tab-addons.php:133,
|
6175 |
+
#: src/templates/wp-admin/settings/tab-addons.php:146,
|
6176 |
+
#: src/templates/wp-admin/settings/tab-addons.php:159,
|
6177 |
+
#: src/templates/wp-admin/settings/tab-addons.php:172,
|
6178 |
+
#: src/templates/wp-admin/settings/tab-addons.php:185,
|
6179 |
+
#: src/templates/wp-admin/settings/tab-addons.php:198,
|
6180 |
+
#: src/templates/wp-admin/settings/tab-addons.php:211,
|
6181 |
+
#: src/templates/wp-admin/settings/tab-addons.php:224,
|
6182 |
+
#: src/templates/wp-admin/settings/tab-addons.php:237,
|
6183 |
+
#: src/templates/wp-admin/settings/tab-addons.php:254
|
6184 |
msgid "Premium"
|
6185 |
msgstr ""
|
6186 |
|
6188 |
msgid "News"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
+
#: src/admin.php:1693, src/includes/class-wpadmin-commands.php:506
|
6192 |
msgid "Backup set not found"
|
6193 |
msgstr ""
|
6194 |
|
6219 |
msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
|
6220 |
msgstr ""
|
6221 |
|
6222 |
+
#: src/admin.php:1165
|
6223 |
msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
|
6224 |
msgstr ""
|
6225 |
|
6226 |
+
#: src/admin.php:1165
|
6227 |
msgid "Notice"
|
6228 |
msgstr ""
|
6229 |
|
6329 |
msgid "Multisite Install"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
+
#: src/addons/fixtime.php:571
|
6333 |
msgid "starting from next time it is"
|
6334 |
msgstr ""
|
6335 |
|
6357 |
msgid "Directory path"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
+
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
|
6361 |
+
#: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2943,
|
6362 |
#: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
|
6363 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
6364 |
msgid "Password"
|
6368 |
msgid "Port"
|
6369 |
msgstr ""
|
6370 |
|
6371 |
+
#: src/addons/moredatabase.php:239, src/addons/sftp.php:438,
|
6372 |
#: src/addons/webdav.php:199
|
6373 |
msgid "Host"
|
6374 |
msgstr ""
|
6389 |
msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
|
6390 |
msgstr ""
|
6391 |
|
6392 |
+
#: src/addons/morefiles.php:705
|
6393 |
msgid "No backup of %s directories: there was nothing found to back up"
|
6394 |
msgstr ""
|
6395 |
|
6396 |
+
#: src/addons/morefiles.php:282
|
6397 |
msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
|
6398 |
msgstr ""
|
6399 |
|
6400 |
+
#: src/addons/morefiles.php:280
|
6401 |
msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
|
6402 |
msgstr ""
|
6403 |
|
6404 |
+
#: src/addons/morefiles.php:259
|
6405 |
msgid "More Files"
|
6406 |
msgstr ""
|
6407 |
|
6408 |
+
#: src/addons/morefiles.php:167
|
6409 |
msgid "WordPress core (including any additions to your WordPress root directory)"
|
6410 |
msgstr ""
|
6411 |
|
6412 |
+
#: src/addons/morefiles.php:160
|
6413 |
msgid "The above files comprise everything in a WordPress installation."
|
6414 |
msgstr ""
|
6415 |
|
6416 |
+
#: src/addons/morefiles.php:141
|
6417 |
msgid "Over-write wp-config.php"
|
6418 |
msgstr ""
|
6419 |
|
6420 |
+
#: src/addons/morefiles.php:137, src/includes/class-wpadmin-commands.php:523
|
6421 |
msgid "WordPress Core"
|
6422 |
msgstr ""
|
6423 |
|
6426 |
msgstr ""
|
6427 |
|
6428 |
#: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
|
6429 |
+
#: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3462,
|
6430 |
+
#: src/admin.php:3498, src/admin.php:3508, src/methods/addon-base-v2.php:313,
|
6431 |
#: src/methods/stream-base.php:356
|
6432 |
msgid "Failed"
|
6433 |
msgstr ""
|
6635 |
msgid "Failure: No container details were given."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: src/addons/moredatabase.php:240, src/addons/sftp.php:452,
|
6639 |
#: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
|
6640 |
#: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
|
6641 |
msgid "Username"
|
6696 |
msgid "Test %s Settings"
|
6697 |
msgstr ""
|
6698 |
|
6699 |
+
#: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
|
6700 |
#: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
|
6701 |
msgid "Error opening local file: Failed to download"
|
6702 |
msgstr ""
|
6713 |
msgstr ""
|
6714 |
|
6715 |
#: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
|
6716 |
+
#: src/class-updraftplus.php:1139, src/methods/cloudfiles.php:130,
|
6717 |
#: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
|
6718 |
msgid "%s Error: Failed to open local file"
|
6719 |
msgstr ""
|
6827 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
6828 |
msgstr ""
|
6829 |
|
6830 |
+
#: src/admin.php:3466, src/admin.php:3501, src/admin.php:3505,
|
6831 |
#: src/includes/class-remote-send.php:326,
|
6832 |
#: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
|
6833 |
+
#: src/restorer.php:2888, src/restorer.php:2993
|
6834 |
msgid "OK"
|
6835 |
msgstr "ঠিক আছে"
|
6836 |
|
6837 |
+
#: src/restorer.php:2882, src/restorer.php:2957
|
6838 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
6839 |
msgstr ""
|
6840 |
|
6841 |
+
#: src/addons/migrator.php:1317, src/restorer.php:2784
|
6842 |
msgid "the database query being run was:"
|
6843 |
msgstr ""
|
6844 |
|
6846 |
msgid "will restore as:"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
+
#: src/class-updraftplus.php:4120, src/restorer.php:2215,
|
6850 |
#: src/restorer.php:2304, src/restorer.php:2330
|
6851 |
msgid "Old table prefix:"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
#: src/addons/reporting.php:72, src/addons/reporting.php:181,
|
6855 |
+
#: src/backup.php:1135, src/class-updraftplus.php:4047
|
6856 |
msgid "Backup of:"
|
6857 |
msgstr ""
|
6858 |
|
6940 |
msgid "Archive is expected to be size:"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
+
#: src/admin.php:4516
|
6944 |
msgid "If making a request for support, please include this information:"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
+
#: src/admin.php:4515
|
6948 |
msgid "ABORT: Could not find the information on which entities to restore."
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: src/addons/wp-cli.php:647, src/admin.php:4494
|
6952 |
msgid "UpdraftPlus Restoration: Progress"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
+
#: src/admin.php:4486
|
6956 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: src/admin.php:4168
|
6960 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
+
#: src/admin.php:4266
|
6964 |
msgid "Delete this backup set"
|
6965 |
msgstr ""
|
6966 |
|
6967 |
+
#: src/admin.php:3919
|
6968 |
msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
|
6969 |
msgstr ""
|
6970 |
|
6971 |
+
#: src/admin.php:3916
|
6972 |
msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
|
6973 |
msgstr ""
|
6974 |
|
6975 |
+
#: src/admin.php:3914
|
6976 |
msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
|
6977 |
msgstr ""
|
6978 |
|
7013 |
msgid "Use the server's SSL certificates"
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: src/admin.php:3736
|
7017 |
msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
|
7018 |
msgstr ""
|
7019 |
|
7020 |
+
#: src/admin.php:3736
|
7021 |
msgid "or, to reset this option"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
+
#: src/admin.php:3736
|
7025 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
7026 |
msgstr ""
|
7027 |
|
7028 |
+
#: src/admin.php:3728
|
7029 |
msgid "Backup directory specified is writable, which is good."
|
7030 |
msgstr ""
|
7031 |
|
7061 |
msgid "Requesting start of backup..."
|
7062 |
msgstr ""
|
7063 |
|
7064 |
+
#: src/addons/morefiles.php:311, src/admin.php:841
|
7065 |
msgid "Cancel"
|
7066 |
msgstr "বাতিল"
|
7067 |
|
7068 |
+
#: src/addons/incremental.php:235, src/addons/reporting.php:245,
|
7069 |
+
#: src/admin.php:4002
|
7070 |
msgid "None"
|
7071 |
msgstr "কোনটিই না"
|
7072 |
|
7082 |
msgid "Database encryption phrase"
|
7083 |
msgstr ""
|
7084 |
|
7085 |
+
#: src/admin.php:2933, src/templates/wp-admin/settings/form-contents.php:255,
|
7086 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
7087 |
msgid "Email"
|
7088 |
msgstr ""
|
7091 |
msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
|
7092 |
msgstr ""
|
7093 |
|
7094 |
+
#: src/addons/morefiles.php:473
|
7095 |
msgid "Exclude these:"
|
7096 |
msgstr ""
|
7097 |
|
7098 |
+
#: src/admin.php:3815
|
7099 |
msgid "Any other directories found inside wp-content"
|
7100 |
msgstr ""
|
7101 |
|
7111 |
msgid "To fix the time at which a backup should take place,"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
+
#: src/addons/incremental.php:244, src/admin.php:3722
|
7115 |
msgid "Monthly"
|
7116 |
msgstr "মাসিক"
|
7117 |
|
7118 |
+
#: src/addons/incremental.php:243, src/admin.php:3721
|
7119 |
msgid "Fortnightly"
|
7120 |
msgstr "পাক্ষিক"
|
7121 |
|
7122 |
+
#: src/addons/incremental.php:242, src/admin.php:3720
|
7123 |
msgid "Weekly"
|
7124 |
msgstr "সাপ্তাহিক"
|
7125 |
|
7126 |
+
#: src/addons/incremental.php:241, src/admin.php:3719
|
7127 |
msgid "Daily"
|
7128 |
msgstr ""
|
7129 |
|
7130 |
+
#: src/admin.php:849, src/admin.php:3697
|
7131 |
msgid "Download log file"
|
7132 |
msgstr "লগ ফাইল ডাউনলোড করুন"
|
7133 |
|
7134 |
+
#: src/admin.php:3569
|
7135 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
7136 |
msgstr ""
|
7137 |
|
7138 |
+
#: src/admin.php:3564
|
7139 |
msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
|
7140 |
msgstr ""
|
7141 |
|
7142 |
+
#: src/admin.php:3550
|
7143 |
msgid "The request to the filesystem to create the directory failed."
|
7144 |
msgstr ""
|
7145 |
|
7146 |
+
#: src/admin.php:842, src/admin.php:3459, src/admin.php:3493,
|
7147 |
+
#: src/admin.php:4266, src/includes/class-remote-send.php:543,
|
7148 |
#: src/templates/wp-admin/settings/existing-backups-table.php:155,
|
7149 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
7150 |
msgid "Delete"
|
7151 |
msgstr "মুছুন"
|
7152 |
|
7153 |
+
#: src/admin.php:3413
|
7154 |
msgid "show log"
|
7155 |
msgstr "লগ দেখান"
|
7156 |
|
7211 |
msgid "Yes"
|
7212 |
msgstr "হ্যাঁ"
|
7213 |
|
7214 |
+
#: src/admin.php:5364, src/admin.php:5368,
|
7215 |
#: src/templates/wp-admin/advanced/site-info.php:45,
|
7216 |
#: src/templates/wp-admin/advanced/site-info.php:51,
|
7217 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
7251 |
msgid "Do read this helpful article of useful things to know before restoring."
|
7252 |
msgstr ""
|
7253 |
|
7254 |
+
#: src/class-updraftplus.php:4081
|
7255 |
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"
|
7256 |
msgstr ""
|
7257 |
|
7258 |
+
#: src/addons/morefiles.php:137,
|
7259 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
|
7260 |
msgid "%s restoration options:"
|
7261 |
msgstr ""
|
7366 |
msgid "More tasks:"
|
7367 |
msgstr "আরও টাস্ক:"
|
7368 |
|
7369 |
+
#: src/admin.php:3112
|
7370 |
msgid "Download most recently modified log file"
|
7371 |
msgstr ""
|
7372 |
|
7375 |
msgstr ""
|
7376 |
|
7377 |
#: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
|
7378 |
+
#: src/admin.php:3068, src/admin.php:3074,
|
7379 |
#: src/templates/wp-admin/settings/take-backup.php:64
|
7380 |
msgid "Last log message"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
#: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
|
7384 |
+
#: src/admin.php:4168
|
7385 |
msgid "Restore"
|
7386 |
msgstr "পুনঃস্থাপন"
|
7387 |
|
7393 |
msgid "Time now"
|
7394 |
msgstr ""
|
7395 |
|
7396 |
+
#: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
|
7397 |
+
#: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:3977,
|
7398 |
+
#: src/admin.php:4030, src/includes/class-remote-send.php:330,
|
7399 |
#: src/includes/class-wpadmin-commands.php:157,
|
7400 |
+
#: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
|
7401 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
|
7402 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:75,
|
7403 |
#: src/templates/wp-admin/settings/take-backup.php:33
|
7404 |
msgid "Database"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
+
#: src/admin.php:332, src/admin.php:5159,
|
7408 |
#: src/templates/wp-admin/settings/take-backup.php:23
|
7409 |
msgid "Files"
|
7410 |
msgstr ""
|
7430 |
msgid "JavaScript warning"
|
7431 |
msgstr ""
|
7432 |
|
7433 |
+
#: src/admin.php:826, src/admin.php:3149
|
7434 |
msgid "Delete Old Directories"
|
7435 |
msgstr ""
|
7436 |
|
7437 |
+
#: src/admin.php:2636
|
7438 |
msgid "Current limit is:"
|
7439 |
msgstr ""
|
7440 |
|
7441 |
+
#: src/admin.php:2611
|
7442 |
msgid "Your backup has been restored."
|
7443 |
msgstr ""
|
7444 |
|
7454 |
msgid "UpdraftPlus.Com"
|
7455 |
msgstr ""
|
7456 |
|
7457 |
+
#: src/admin.php:5051
|
7458 |
msgid "Your settings have been wiped."
|
7459 |
msgstr ""
|
7460 |
|
7461 |
+
#: src/admin.php:2571
|
7462 |
msgid "Backup directory successfully created."
|
7463 |
msgstr ""
|
7464 |
|
7465 |
+
#: src/admin.php:2564
|
7466 |
msgid "Backup directory could not be created"
|
7467 |
msgstr ""
|
7468 |
|
7469 |
+
#: src/admin.php:3429
|
7470 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
7471 |
msgstr ""
|
7472 |
|
7473 |
+
#: src/admin.php:3427
|
7474 |
msgid "Old directories successfully removed."
|
7475 |
msgstr ""
|
7476 |
|
7477 |
+
#: src/admin.php:3424, src/admin.php:3424
|
7478 |
msgid "Remove old directories"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
#: src/addons/migrator.php:340, src/addons/migrator.php:355,
|
7482 |
+
#: src/admin.php:2512, src/admin.php:2522, src/admin.php:2531,
|
7483 |
+
#: src/admin.php:2573, src/admin.php:3431
|
7484 |
msgid "Return to UpdraftPlus Configuration"
|
7485 |
msgstr ""
|
7486 |
|
7487 |
+
#: src/admin.php:819, src/admin.php:2512, src/admin.php:2522,
|
7488 |
+
#: src/admin.php:2531, src/admin.php:2573, src/admin.php:3431,
|
7489 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
7490 |
#: src/templates/wp-admin/settings/existing-backups-table.php:139
|
7491 |
msgid "Actions"
|
7492 |
msgstr ""
|
7493 |
|
7494 |
+
#: src/admin.php:2407
|
7495 |
msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
|
7496 |
msgstr ""
|
7497 |
|
7498 |
+
#: src/admin.php:2307
|
7499 |
msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
|
7500 |
msgstr ""
|
7501 |
|
7502 |
+
#: src/admin.php:2203
|
7503 |
msgid "No local copy present."
|
7504 |
msgstr ""
|
7505 |
|
7506 |
+
#: src/admin.php:2200
|
7507 |
msgid "Download in progress"
|
7508 |
msgstr "ডাউনলোড হচ্ছে"
|
7509 |
|
7510 |
+
#: src/admin.php:818, src/admin.php:2189
|
7511 |
msgid "File ready."
|
7512 |
msgstr "ফাইল তৈরি।"
|
7513 |
|
7514 |
+
#: src/admin.php:2170
|
7515 |
msgid "Download failed"
|
7516 |
msgstr ""
|
7517 |
|
7518 |
#: src/addons/wp-cli.php:518, src/admin.php:816,
|
7519 |
+
#: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
|
7520 |
#: src/includes/class-filesystem-functions.php:368,
|
7521 |
#: src/includes/class-storage-methods-interface.php:324,
|
7522 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
7523 |
#: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
|
7524 |
+
#: src/methods/stream-base.php:219, src/restorer.php:2884,
|
7525 |
+
#: src/restorer.php:2909, src/restorer.php:2990, src/updraftplus.php:157
|
7526 |
msgid "Error"
|
7527 |
msgstr ""
|
7528 |
|
7529 |
+
#: src/admin.php:1957
|
7530 |
msgid "Could not find that job - perhaps it has already finished?"
|
7531 |
msgstr ""
|
7532 |
|
7533 |
+
#: src/admin.php:1949
|
7534 |
msgid "Job deleted"
|
7535 |
msgstr ""
|
7536 |
|
7537 |
+
#: src/admin.php:2048, src/includes/class-commands.php:833
|
7538 |
msgid "OK. You should soon see activity in the \"Last log message\" field below."
|
7539 |
msgstr ""
|
7540 |
|
7542 |
msgid "Nothing yet logged"
|
7543 |
msgstr ""
|
7544 |
|
7545 |
+
#: src/admin.php:1161
|
7546 |
msgid "Please consult this FAQ if you have problems backing up."
|
7547 |
msgstr ""
|
7548 |
|
7549 |
+
#: src/admin.php:1161
|
7550 |
msgid "Your website is hosted using the %s web server."
|
7551 |
msgstr ""
|
7552 |
|
7553 |
+
#: src/admin.php:1157
|
7554 |
msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
|
7555 |
msgstr ""
|
7556 |
|
7557 |
+
#: src/admin.php:1153
|
7558 |
msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
|
7559 |
msgstr ""
|
7560 |
|
7561 |
+
#: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1145,
|
7562 |
+
#: src/admin.php:1149, src/admin.php:1153, src/admin.php:1157,
|
7563 |
+
#: src/admin.php:1161, src/admin.php:1170, src/admin.php:3907,
|
7564 |
+
#: src/admin.php:3914, src/admin.php:3916, src/admin.php:5342,
|
7565 |
#: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
|
7566 |
#: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
|
7567 |
#: src/methods/s3.php:859, src/methods/s3.php:863,
|
7568 |
#: src/methods/updraftvault.php:306,
|
7569 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
7570 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
7571 |
+
#: src/udaddons/updraftplus-addons.php:259
|
7572 |
msgid "Warning"
|
7573 |
msgstr "সতর্কতা"
|
7574 |
|
7575 |
+
#: src/admin.php:1090
|
7576 |
msgid "Add-Ons / Pro Support"
|
7577 |
msgstr "অ্যাড অন / প্রো সাপোর্ট"
|
7578 |
|
7579 |
+
#: src/admin.php:677, src/admin.php:1088, src/admin.php:2798
|
7580 |
msgid "Settings"
|
7581 |
msgstr "সেটিংস"
|
7582 |
|
7584 |
msgid "Could not create %s zip. Consult the log file for more information."
|
7585 |
msgstr ""
|
7586 |
|
7587 |
+
#: src/backup.php:2298
|
7588 |
msgid "Infinite recursion: consult your log for more information"
|
7589 |
msgstr ""
|
7590 |
|
7596 |
msgid "Like UpdraftPlus and can spare one minute?"
|
7597 |
msgstr ""
|
7598 |
|
7599 |
+
#: src/addons/azure.php:268, src/class-updraftplus.php:3769,
|
7600 |
#: src/methods/googledrive.php:1112, src/methods/s3.php:341
|
7601 |
msgid "File not found"
|
7602 |
msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
|
7605 |
msgid "The decryption key used:"
|
7606 |
msgstr ""
|
7607 |
|
7608 |
+
#: src/class-updraftplus.php:3976,
|
7609 |
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
|
7610 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
7611 |
msgstr ""
|
7612 |
|
7613 |
+
#: src/class-updraftplus.php:3964,
|
7614 |
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
|
7615 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
7616 |
msgstr ""
|
7617 |
|
7618 |
+
#: src/backup.php:2172
|
7619 |
msgid "Could not open the backup file for writing"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
+
#: src/class-updraftplus.php:3531
|
7623 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
7624 |
msgstr ""
|
7625 |
|
7626 |
+
#: src/class-updraftplus.php:3515
|
7627 |
msgid "Could not read the directory"
|
7628 |
msgstr "ডিরেক্টরিটি পড়া যায়নি"
|
7629 |
|
7630 |
+
#: src/admin.php:2249, src/backup.php:1359
|
7631 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
7632 |
msgstr ""
|
7633 |
|
7635 |
msgid "WordPress backup is complete"
|
7636 |
msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
|
7637 |
|
7638 |
+
#: src/class-updraftplus.php:3051
|
7639 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
7640 |
msgstr ""
|
7641 |
|
7642 |
+
#: src/class-updraftplus.php:3033
|
7643 |
msgid "The backup apparently succeeded and is now complete"
|
7644 |
msgstr ""
|
7645 |
|
7646 |
+
#: src/addons/moredatabase.php:388
|
7647 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
7648 |
msgstr ""
|
7649 |
|
7650 |
+
#: src/class-updraftplus.php:2733
|
7651 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
7652 |
msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
|
7653 |
|
7654 |
+
#: src/class-updraftplus.php:1850
|
7655 |
msgid "Others"
|
7656 |
msgstr "অন্যান্য"
|
7657 |
|
7658 |
+
#: src/addons/multisite.php:500, src/class-updraftplus.php:1835
|
7659 |
msgid "Uploads"
|
7660 |
msgstr "আপলোডসমূহ"
|
7661 |
|
7662 |
+
#: src/class-updraftplus.php:1834
|
7663 |
msgid "Themes"
|
7664 |
msgstr "থিমসমূহ"
|
7665 |
|
7666 |
+
#: src/class-updraftplus.php:1833
|
7667 |
msgid "Plugins"
|
7668 |
msgstr "প্লাগইন"
|
7669 |
|
7671 |
msgid "No log files were found."
|
7672 |
msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
|
7673 |
|
7674 |
+
#: src/admin.php:2119, src/admin.php:2123, src/class-updraftplus.php:618
|
7675 |
msgid "The log file could not be read."
|
7676 |
msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
|
7677 |
|
7678 |
+
#: src/admin.php:1190, src/admin.php:1211, src/admin.php:1230,
|
7679 |
#: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
|
7680 |
#: src/class-updraftplus.php:623, src/class-updraftplus.php:628
|
7681 |
msgid "UpdraftPlus notice:"
|
@@ -11,6 +11,52 @@ msgstr ""
|
|
11 |
"Language: bs_BA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
15 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
16 |
msgstr ""
|
@@ -23,7 +69,7 @@ msgstr ""
|
|
23 |
msgid "Your database user does not have permission to drop tables"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/admin.php:
|
27 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
28 |
msgstr ""
|
29 |
|
@@ -191,11 +237,11 @@ msgstr ""
|
|
191 |
msgid "WordPress installed"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: src/admin.php:
|
195 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: src/admin.php:
|
199 |
msgid "Exclude these from"
|
200 |
msgstr ""
|
201 |
|
@@ -235,7 +281,7 @@ msgstr ""
|
|
235 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
239 |
msgid "To create a temporary clone you need credit in your account."
|
240 |
msgstr ""
|
241 |
|
@@ -247,15 +293,15 @@ msgstr ""
|
|
247 |
msgid "failed to upload file to %s (see log file for more)"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/admin.php:
|
251 |
msgid "Dashboard:"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/admin.php:
|
255 |
msgid "Front page:"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/admin.php:
|
259 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
260 |
msgstr ""
|
261 |
|
@@ -267,14 +313,10 @@ msgstr ""
|
|
267 |
msgid "Current clones"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: src/class-updraftplus.php:
|
271 |
msgid "Your clone will now deploy this data to re-create your site."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/admin.php:942
|
275 |
-
msgid "The backup for the clone has been aborted."
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
#: src/admin.php:941
|
279 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
280 |
msgstr ""
|
@@ -337,70 +379,71 @@ msgstr ""
|
|
337 |
msgid "Account type"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
|
|
341 |
msgid "I accept the UpdraftClone terms and conditions"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
345 |
msgid "Not got an account? Get one by buying some tokens here."
|
346 |
msgstr ""
|
347 |
|
348 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
349 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
350 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
351 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
355 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
359 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
363 |
msgid "Flexible"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
367 |
msgid "Takes just the time needed to create a backup and send it."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
371 |
msgid "Fast"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
375 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
379 |
msgid "Secure"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
383 |
msgid "Runs on capacity from a leading cloud computing provider."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
387 |
msgid "Reliable"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
391 |
msgid "Press the buttons... UpdraftClone does the work."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
395 |
msgid "Easy"
|
396 |
msgstr ""
|
397 |
|
398 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
399 |
-
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test
|
400 |
msgstr ""
|
401 |
|
402 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
403 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
404 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
405 |
msgstr ""
|
406 |
|
@@ -574,11 +617,11 @@ msgstr ""
|
|
574 |
msgid "You can buy more temporary clone tokens here."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: src/admin.php:
|
578 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: src/templates/wp-admin/settings/temporary-clone.php:
|
582 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
583 |
msgstr ""
|
584 |
|
@@ -590,19 +633,19 @@ msgstr ""
|
|
590 |
msgid "Other great plugins"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: src/admin.php:
|
594 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: src/class-updraftplus.php:
|
598 |
msgid "Choose a default for each table"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: src/admin.php:
|
602 |
msgid "Sending files to remote site"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: src/admin.php:
|
606 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
607 |
msgstr ""
|
608 |
|
@@ -614,7 +657,7 @@ msgstr ""
|
|
614 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: src/admin.php:
|
618 |
msgid "Backup / Restore"
|
619 |
msgstr ""
|
620 |
|
@@ -638,7 +681,7 @@ msgstr ""
|
|
638 |
msgid "No previous backup found to add an increment to."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: src/restorer.php:
|
642 |
msgid "Requested character set (%s) is not present - changing to %s."
|
643 |
msgstr ""
|
644 |
|
@@ -662,7 +705,7 @@ msgstr ""
|
|
662 |
msgid "Refresh connection"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: src/addons/reporting.php:
|
666 |
msgid "Log all messages to syslog"
|
667 |
msgstr ""
|
668 |
|
@@ -690,11 +733,11 @@ msgstr ""
|
|
690 |
msgid "More information here."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: src/admin.php:669, src/admin.php:
|
694 |
msgid "Migrate / Clone"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: src/admin.php:
|
698 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
699 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
700 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
@@ -720,11 +763,11 @@ msgstr ""
|
|
720 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: src/admin.php:
|
724 |
msgid "(current version)"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: src/admin.php:
|
728 |
msgid "press here"
|
729 |
msgstr ""
|
730 |
|
@@ -738,15 +781,15 @@ msgstr ""
|
|
738 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: src/addons/incremental.php:
|
742 |
msgid "Tell me more"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: src/addons/incremental.php:
|
746 |
msgid "And then add an incremental backup"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: src/addons/incremental.php:
|
750 |
msgid "Every hour"
|
751 |
msgstr ""
|
752 |
|
@@ -758,8 +801,9 @@ msgstr ""
|
|
758 |
msgid "Available temporary clone tokens:"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: src/admin.php:
|
762 |
#: src/includes/class-commands.php:949,
|
|
|
763 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
764 |
msgid "Processing"
|
765 |
msgstr ""
|
@@ -776,7 +820,7 @@ msgstr ""
|
|
776 |
msgid "I consent to %s"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: src/admin.php:
|
780 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
781 |
msgid "One Time Password (check your OTP app to get this password)"
|
782 |
msgstr ""
|
@@ -825,7 +869,7 @@ msgstr ""
|
|
825 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: src/admin.php:
|
829 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
830 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
831 |
msgstr[0] ""
|
@@ -929,7 +973,7 @@ msgstr ""
|
|
929 |
msgid "Upload backup"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: src/admin.php:
|
933 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
934 |
msgstr ""
|
935 |
|
@@ -941,19 +985,19 @@ msgstr ""
|
|
941 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: src/admin.php:844, src/admin.php:
|
945 |
msgid "Upload"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: src/addons/reporting.php:
|
949 |
msgid "Only email the database backup"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: src/addons/reporting.php:
|
953 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: src/addons/reporting.php:
|
957 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
958 |
msgstr ""
|
959 |
|
@@ -1067,7 +1111,7 @@ msgstr ""
|
|
1067 |
msgid "Select your incremental restore point"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: src/addons/morefiles.php:
|
1071 |
msgid "(None configured)"
|
1072 |
msgstr ""
|
1073 |
|
@@ -1075,11 +1119,11 @@ msgstr ""
|
|
1075 |
msgid "Ensure you are logged into the correct account before continuing."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: src/admin.php:
|
1079 |
msgid "Remote storage method and instance id are required for authentication."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: src/admin.php:
|
1083 |
msgid "authentication error"
|
1084 |
msgstr ""
|
1085 |
|
@@ -1158,15 +1202,15 @@ msgstr[0] ""
|
|
1158 |
msgstr[1] ""
|
1159 |
msgstr[2] ""
|
1160 |
|
1161 |
-
#: src/class-updraftplus.php:
|
1162 |
msgid "Your chosen replacement collation"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: src/class-updraftplus.php:
|
1166 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: src/class-updraftplus.php:
|
1170 |
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."
|
1171 |
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."
|
1172 |
msgstr[0] ""
|
@@ -1236,15 +1280,15 @@ msgstr[2] ""
|
|
1236 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: src/class-updraftplus.php:
|
1240 |
msgid "Your chosen character set to use instead:"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: src/class-updraftplus.php:
|
1244 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: src/class-updraftplus.php:
|
1248 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1249 |
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."
|
1250 |
msgstr[0] ""
|
@@ -1335,23 +1379,23 @@ msgstr ""
|
|
1335 |
msgid "Account ID"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: src/class-updraftplus.php:
|
1339 |
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."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: src/class-updraftplus.php:
|
1343 |
msgid "the migrator add-on"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: src/class-updraftplus.php:
|
1347 |
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."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: src/class-updraftplus.php:
|
1351 |
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."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: src/class-updraftplus.php:
|
1355 |
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."
|
1356 |
msgstr ""
|
1357 |
|
@@ -1367,14 +1411,14 @@ msgstr ""
|
|
1367 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: src/backup.php:456, src/backup.php:
|
1371 |
-
#: src/class-updraftplus.php:
|
1372 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1373 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: src/backup.php:450, src/backup.php:
|
1377 |
-
#: src/class-updraftplus.php:
|
1378 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1379 |
msgid "A PHP exception (%s) has occurred: %s"
|
1380 |
msgstr ""
|
@@ -1428,11 +1472,11 @@ msgstr ""
|
|
1428 |
msgid "Instant and secure logon with a wave of your phone."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: src/admin.php:
|
1432 |
msgid "Value"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: src/admin.php:
|
1436 |
msgid "Did not know how to delete from this cloud service."
|
1437 |
msgstr ""
|
1438 |
|
@@ -1448,11 +1492,11 @@ msgstr ""
|
|
1448 |
msgid "Cloud Files"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: src/admin.php:
|
1452 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: src/admin.php:
|
1456 |
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."
|
1457 |
msgstr ""
|
1458 |
|
@@ -1461,23 +1505,23 @@ msgstr ""
|
|
1461 |
msgid "UpdraftVault"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: src/includes/class-wpadmin-commands.php:
|
1465 |
msgid "archive"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: src/includes/class-wpadmin-commands.php:
|
1469 |
msgid "Extra database"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: src/admin.php:
|
1473 |
msgid "Press here to download or browse"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: src/admin.php:
|
1477 |
msgid "Error: invalid path"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: src/admin.php:
|
1481 |
msgid "An error occurred when fetching storage module options: "
|
1482 |
msgstr ""
|
1483 |
|
@@ -1513,15 +1557,15 @@ msgstr ""
|
|
1513 |
msgid "Skipped tables:"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: src/class-updraftplus.php:
|
1517 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: src/admin.php:
|
1521 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: src/admin.php:
|
1525 |
msgid "All WordPress tables will be backed up."
|
1526 |
msgstr ""
|
1527 |
|
@@ -1553,15 +1597,15 @@ msgstr ""
|
|
1553 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: src/addons/moredatabase.php:
|
1557 |
msgid "tables"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: src/addons/moredatabase.php:
|
1561 |
msgid "WordPress database"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: src/addons/moredatabase.php:
|
1565 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1566 |
msgstr ""
|
1567 |
|
@@ -1680,7 +1724,22 @@ msgstr ""
|
|
1680 |
msgid "Installed"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: src/templates/wp-admin/settings/tab-addons.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1684 |
msgid "Free"
|
1685 |
msgstr ""
|
1686 |
|
@@ -1703,28 +1762,28 @@ msgstr ""
|
|
1703 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: src/addons/morefiles.php:
|
1707 |
msgid "Please choose a file or directory"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: src/addons/morefiles.php:
|
1711 |
msgid "Confirm"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: src/addons/morefiles.php:
|
1715 |
msgid "Go up a directory"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: src/addons/morefiles.php:
|
1719 |
msgid "Add directory..."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: src/addons/morefiles.php:
|
1723 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1724 |
msgid "Edit"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: src/addons/morefiles.php:
|
1728 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1729 |
msgstr ""
|
1730 |
|
@@ -1797,7 +1856,7 @@ msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
|
|
1797 |
msgstr ""
|
1798 |
|
1799 |
#: src/includes/updraftplus-notices.php:238
|
1800 |
-
msgid "Happy New Year - 20% off UpdraftPlus Premium until January
|
1801 |
msgstr ""
|
1802 |
|
1803 |
#: src/includes/updraftplus-notices.php:225
|
@@ -1983,11 +2042,11 @@ msgstr ""
|
|
1983 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: src/admin.php:
|
1987 |
msgid "Remote files deleted:"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: src/admin.php:
|
1991 |
msgid "Local files deleted:"
|
1992 |
msgstr ""
|
1993 |
|
@@ -2043,16 +2102,16 @@ msgstr ""
|
|
2043 |
msgid "Account is not authorized (%s)."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2047 |
msgid "Your IP address:"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:
|
2051 |
-
#: src/udaddons/updraftplus-addons.php:
|
2052 |
msgid "To remove any block, please go here."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:
|
2056 |
msgid "An error response was received; HTTP code:"
|
2057 |
msgstr ""
|
2058 |
|
@@ -2068,11 +2127,11 @@ msgstr ""
|
|
2068 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: src/admin.php:
|
2072 |
msgid "To fix this problem go here."
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: src/admin.php:
|
2076 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2077 |
msgstr ""
|
2078 |
|
@@ -2104,7 +2163,7 @@ msgstr ""
|
|
2104 |
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."
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: src/udaddons/updraftplus-addons.php:
|
2108 |
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."
|
2109 |
msgstr ""
|
2110 |
|
@@ -2148,11 +2207,11 @@ msgstr ""
|
|
2148 |
msgid "Public key was sent to:"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: src/backup.php:
|
2152 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: src/backup.php:
|
2156 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2157 |
msgstr ""
|
2158 |
|
@@ -2210,8 +2269,8 @@ msgstr ""
|
|
2210 |
msgid "login"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: src/addons/reporting.php:
|
2214 |
-
#: src/addons/reporting.php:
|
2215 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2216 |
msgstr ""
|
2217 |
|
@@ -2219,7 +2278,7 @@ msgstr ""
|
|
2219 |
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."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: src/class-updraftplus.php:
|
2223 |
msgid "Size: %s MB"
|
2224 |
msgstr ""
|
2225 |
|
@@ -2227,7 +2286,7 @@ msgstr ""
|
|
2227 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: src/class-updraftplus.php:
|
2231 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2232 |
msgstr ""
|
2233 |
|
@@ -2333,23 +2392,23 @@ msgstr ""
|
|
2333 |
msgid "UpdraftCentral Connection"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: src/backup.php:1042, src/class-updraftplus.php:
|
2337 |
msgid "The backup was aborted by the user"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: src/admin.php:
|
2341 |
msgid "Your settings have been saved."
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: src/admin.php:
|
2345 |
msgid "Total backup size:"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: src/admin.php:
|
2349 |
msgid "stop"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: src/admin.php:903, src/admin.php:
|
2353 |
msgid "The backup has finished running"
|
2354 |
msgstr ""
|
2355 |
|
@@ -2411,19 +2470,19 @@ msgstr ""
|
|
2411 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: src/class-updraftplus.php:
|
2415 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: src/class-updraftplus.php:
|
2419 |
msgid "Please read this link for important information on this process."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: src/class-updraftplus.php:
|
2423 |
msgid "It will be imported as a new site."
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: src/admin.php:
|
2427 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2428 |
msgid "Dismiss"
|
2429 |
msgstr ""
|
@@ -2489,7 +2548,7 @@ msgstr ""
|
|
2489 |
msgid "Call WordPress action:"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: src/admin.php:
|
2493 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2494 |
msgstr ""
|
2495 |
|
@@ -2521,63 +2580,63 @@ msgstr ""
|
|
2521 |
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)."
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: src/admin.php:
|
2525 |
msgid "Send this backup to remote storage"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: src/admin.php:
|
2529 |
msgid "Check out UpdraftPlus Vault."
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: src/admin.php:
|
2533 |
msgid "Not got any remote storage?"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: src/admin.php:
|
2537 |
msgid "settings"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: src/admin.php:
|
2541 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: src/admin.php:
|
2545 |
msgid "Include any files in the backup"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: src/admin.php:
|
2549 |
msgid "Include the database in the backup"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: src/admin.php:
|
2553 |
msgid "Continue restoration"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: src/admin.php:
|
2557 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: src/admin.php:
|
2561 |
msgid "Unfinished restoration"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: src/admin.php:
|
2565 |
msgid "%s minutes, %s seconds"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: src/admin.php:
|
2569 |
msgid "Backup Contents And Schedule"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: src/admin.php:
|
2573 |
msgid "Premium / Extensions"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: src/admin.php:
|
2577 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: src/addons/morefiles.php:
|
2581 |
msgctxt "(verb)"
|
2582 |
msgid "Download"
|
2583 |
msgstr ""
|
@@ -2590,7 +2649,7 @@ msgstr ""
|
|
2590 |
msgid "Extensions"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: src/admin.php:685, src/admin.php:
|
2594 |
msgid "Advanced Tools"
|
2595 |
msgstr ""
|
2596 |
|
@@ -2709,7 +2768,7 @@ msgstr ""
|
|
2709 |
msgid "Could not access container"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: src/class-updraftplus.php:
|
2713 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2714 |
msgstr ""
|
2715 |
|
@@ -2839,7 +2898,7 @@ msgstr ""
|
|
2839 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: src/admin.php:
|
2843 |
msgid "Backup sets removed:"
|
2844 |
msgstr ""
|
2845 |
|
@@ -2879,11 +2938,11 @@ msgstr ""
|
|
2879 |
msgid "Add an additional retention rule..."
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: src/restorer.php:
|
2883 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: src/restorer.php:
|
2887 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2888 |
msgstr ""
|
2889 |
|
@@ -2891,15 +2950,15 @@ msgstr ""
|
|
2891 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: src/class-updraftplus.php:
|
2895 |
msgid "You must upgrade MySQL to be able to use this database."
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: src/class-updraftplus.php:
|
2899 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: src/admin.php:
|
2903 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2904 |
msgstr ""
|
2905 |
|
@@ -2927,11 +2986,11 @@ msgstr ""
|
|
2927 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: src/admin.php:
|
2931 |
msgid "Go to the remote storage settings in order to connect."
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: src/admin.php:
|
2935 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2936 |
msgstr ""
|
2937 |
|
@@ -3075,7 +3134,7 @@ msgstr ""
|
|
3075 |
msgid "Delete failed:"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: src/backup.php:
|
3079 |
msgid "The zip engine returned the message: %s."
|
3080 |
msgstr ""
|
3081 |
|
@@ -3155,7 +3214,7 @@ msgstr ""
|
|
3155 |
msgid "This storage method does not allow downloading"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: src/admin.php:
|
3159 |
msgid "(backup set imported from remote location)"
|
3160 |
msgstr ""
|
3161 |
|
@@ -3301,23 +3360,23 @@ msgstr ""
|
|
3301 |
msgid "Adding..."
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: src/udaddons/options.php:
|
3305 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: src/restorer.php:
|
3309 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: src/udaddons/updraftplus-addons.php:
|
3313 |
msgid "go here to change your password on updraftplus.com."
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: src/udaddons/updraftplus-addons.php:
|
3317 |
msgid "If you have forgotten your password "
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: src/udaddons/updraftplus-addons.php:
|
3321 |
msgid "Go here to re-enter your password."
|
3322 |
msgstr ""
|
3323 |
|
@@ -3355,7 +3414,7 @@ msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127
|
|
3355 |
msgstr ""
|
3356 |
|
3357 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3358 |
-
msgid "
|
3359 |
msgstr ""
|
3360 |
|
3361 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
@@ -3531,18 +3590,18 @@ msgstr ""
|
|
3531 |
|
3532 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3533 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3534 |
-
#: src/udaddons/updraftplus-addons.php:
|
3535 |
-
#: src/udaddons/updraftplus-addons.php:
|
3536 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3540 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3541 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3542 |
msgstr ""
|
3543 |
|
3544 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3545 |
-
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:
|
3546 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3547 |
msgstr ""
|
3548 |
|
@@ -3580,11 +3639,11 @@ msgstr ""
|
|
3580 |
msgid "Dismiss (for %s months)"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: src/addons/fixtime.php:
|
3584 |
msgid "(at same time as files backup)"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
-
#: src/admin.php:
|
3588 |
msgid "No backup has been completed"
|
3589 |
msgstr ""
|
3590 |
|
@@ -3658,12 +3717,12 @@ msgstr ""
|
|
3658 |
msgid "Check this box to have a basic report sent to"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: src/admin.php:
|
3662 |
msgctxt "i.e. Non-automatic"
|
3663 |
msgid "Manual"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: src/restorer.php:
|
3667 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3668 |
msgid "An error (%s) occurred:"
|
3669 |
msgstr ""
|
@@ -3672,11 +3731,11 @@ msgstr ""
|
|
3672 |
msgid "Change Lock Settings"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: src/addons/morefiles.php:
|
3676 |
msgid "Any other file/directory on your server that you wish to backup"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
-
#: src/admin.php:
|
3680 |
msgid "For even more features and personal support, check out "
|
3681 |
msgstr ""
|
3682 |
|
@@ -3762,15 +3821,15 @@ msgstr ""
|
|
3762 |
msgid "The admin password has now been removed."
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: src/addons/morefiles.php:
|
3766 |
msgid "(learn more about this significant option)"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: src/udaddons/options.php:
|
3770 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: src/admin.php:
|
3774 |
msgid "View Log"
|
3775 |
msgstr ""
|
3776 |
|
@@ -3789,7 +3848,7 @@ msgstr ""
|
|
3789 |
msgid "and retain this many scheduled backups"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: src/admin.php:
|
3793 |
msgid "incremental backup; base backup: %s"
|
3794 |
msgstr ""
|
3795 |
|
@@ -3802,28 +3861,28 @@ msgstr ""
|
|
3802 |
msgid "Upload files into UpdraftPlus."
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: src/admin.php:
|
3806 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3807 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: src/class-updraftplus.php:
|
3811 |
msgid "Backup label:"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: src/addons/backblaze.php:205, src/admin.php:
|
3815 |
msgid "Error: unexpected file read fail"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: src/backup.php:
|
3819 |
msgid "check your log for more details."
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: src/backup.php:
|
3823 |
msgid "your web hosting account appears to be full; please see: %s"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: src/backup.php:
|
3827 |
msgid "A zip error occurred"
|
3828 |
msgstr ""
|
3829 |
|
@@ -3835,23 +3894,23 @@ msgstr ""
|
|
3835 |
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."
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:
|
3839 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:
|
3843 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:
|
3847 |
msgid "You need to supply both an email address and a password"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: src/class-updraftplus.php:
|
3851 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: src/class-updraftplus.php:
|
3855 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3856 |
msgstr ""
|
3857 |
|
@@ -3888,19 +3947,19 @@ msgstr ""
|
|
3888 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3889 |
msgstr ""
|
3890 |
|
3891 |
-
#: src/class-updraftplus.php:
|
3892 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3893 |
msgstr ""
|
3894 |
|
3895 |
-
#: src/class-updraftplus.php:
|
3896 |
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."
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: src/class-updraftplus.php:
|
3900 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: src/class-updraftplus.php:
|
3904 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3905 |
msgstr ""
|
3906 |
|
@@ -3929,7 +3988,7 @@ msgstr ""
|
|
3929 |
msgid "UpdraftPlus is on social media - check us out!"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: src/addons/wp-cli.php:907, src/admin.php:
|
3933 |
msgid "Why am I seeing this?"
|
3934 |
msgstr ""
|
3935 |
|
@@ -3943,15 +4002,15 @@ msgstr ""
|
|
3943 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: src/admin.php:
|
3947 |
msgid "Start backup"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: src/class-updraftplus.php:
|
3951 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: src/admin.php:
|
3955 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
3956 |
msgstr ""
|
3957 |
|
@@ -3959,11 +4018,11 @@ msgstr ""
|
|
3959 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: src/admin.php:
|
3963 |
msgid "This file could not be uploaded"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: src/admin.php:
|
3967 |
msgid "You will find more information about this in the Settings section."
|
3968 |
msgstr ""
|
3969 |
|
@@ -4003,9 +4062,9 @@ msgstr ""
|
|
4003 |
msgid "Backup succeeded"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: src/addons/incremental.php:
|
4007 |
-
#: src/addons/incremental.php:
|
4008 |
-
#: src/admin.php:
|
4009 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4010 |
msgid "Every %s hours"
|
4011 |
msgstr ""
|
@@ -4044,7 +4103,7 @@ msgstr ""
|
|
4044 |
msgid "search term"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: src/restorer.php:
|
4048 |
msgid "Too many database errors have occurred - aborting"
|
4049 |
msgstr ""
|
4050 |
|
@@ -4080,11 +4139,11 @@ msgstr ""
|
|
4080 |
msgid "Free disk space in account:"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
-
#: src/admin.php:
|
4084 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#: src/admin.php:817, src/admin.php:
|
4088 |
#: src/includes/deprecated-actions.php:29,
|
4089 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4090 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
@@ -4092,35 +4151,35 @@ msgstr ""
|
|
4092 |
msgid "Existing Backups"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
-
#: src/admin.php:
|
4096 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4097 |
msgstr ""
|
4098 |
|
4099 |
-
#: src/admin.php:
|
4100 |
msgid "To make a backup, just press the Backup Now button."
|
4101 |
msgstr ""
|
4102 |
|
4103 |
-
#: src/admin.php:
|
4104 |
msgid "Welcome to UpdraftPlus!"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: src/addons/moredatabase.php:
|
4108 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: src/addons/moredatabase.php:
|
4112 |
msgid "Testing..."
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#: src/addons/moredatabase.php:
|
4116 |
msgid "Test connection..."
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
#: src/addons/moredatabase.php:
|
4120 |
msgid "Table prefix"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
-
#: src/addons/moredatabase.php:
|
4124 |
msgid "Backup external database"
|
4125 |
msgstr ""
|
4126 |
|
@@ -4172,7 +4231,7 @@ msgstr ""
|
|
4172 |
msgid "user"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
-
#: src/class-updraftplus.php:
|
4176 |
msgid "External database (%s)"
|
4177 |
msgstr ""
|
4178 |
|
@@ -4190,7 +4249,7 @@ msgstr ""
|
|
4190 |
msgid "However, subsequent access attempts failed:"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
-
#: src/addons/wp-cli.php:437, src/admin.php:
|
4194 |
msgid "External database"
|
4195 |
msgstr ""
|
4196 |
|
@@ -4222,7 +4281,7 @@ msgstr ""
|
|
4222 |
msgid "use UpdraftPlus Premium"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: src/class-updraftplus.php:
|
4226 |
msgid "Decryption failed. The database file is encrypted."
|
4227 |
msgstr ""
|
4228 |
|
@@ -4230,8 +4289,8 @@ msgstr ""
|
|
4230 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: src/restorer.php:2284, src/restorer.php:
|
4234 |
-
#: src/restorer.php:
|
4235 |
msgid "An error occurred on the first %s command - aborting run"
|
4236 |
msgstr ""
|
4237 |
|
@@ -4277,7 +4336,7 @@ msgstr ""
|
|
4277 |
msgid "Tenant"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: src/addons/wp-cli.php:800, src/admin.php:
|
4281 |
#: src/methods/openstack2.php:144,
|
4282 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4283 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
@@ -4423,7 +4482,7 @@ msgstr ""
|
|
4423 |
msgid "Failed to unpack the archive"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: src/class-updraftplus.php:
|
4427 |
msgid "Error - failed to download the file"
|
4428 |
msgstr ""
|
4429 |
|
@@ -4432,15 +4491,15 @@ msgstr ""
|
|
4432 |
msgid "Rescan local folder for new backup sets"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#: src/udaddons/updraftplus-addons.php:
|
4436 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: src/udaddons/updraftplus-addons.php:
|
4440 |
msgid "It has been tested up to version %s."
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#: src/udaddons/updraftplus-addons.php:
|
4444 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4445 |
msgstr ""
|
4446 |
|
@@ -4449,7 +4508,7 @@ msgid "password/key"
|
|
4449 |
msgstr ""
|
4450 |
|
4451 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4452 |
-
#: src/admin.php:
|
4453 |
msgid "Key"
|
4454 |
msgstr ""
|
4455 |
|
@@ -4465,24 +4524,24 @@ msgstr ""
|
|
4465 |
msgid "SCP/SFTP password/key"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4469 |
msgid "Files backup (created by %s)"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
-
#: src/addons/wp-cli.php:449, src/admin.php:
|
4473 |
msgid "Files and database WordPress backup (created by %s)"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: src/addons/importer.php:276, src/admin.php:
|
4477 |
#: src/includes/class-backup-history.php:435
|
4478 |
msgid "Backup created by: %s."
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: src/addons/wp-cli.php:431, src/admin.php:
|
4482 |
msgid "Database (created by %s)"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
-
#: src/addons/wp-cli.php:429, src/admin.php:
|
4486 |
msgid "unknown source"
|
4487 |
msgstr ""
|
4488 |
|
@@ -4497,15 +4556,15 @@ msgstr ""
|
|
4497 |
msgid "Upload backup files"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: src/admin.php:
|
4501 |
msgid "This backup was created by %s, and can be imported."
|
4502 |
msgstr ""
|
4503 |
|
4504 |
-
#: src/admin.php:
|
4505 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4506 |
msgstr ""
|
4507 |
|
4508 |
-
#: src/admin.php:
|
4509 |
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."
|
4510 |
msgstr ""
|
4511 |
|
@@ -4522,7 +4581,7 @@ msgstr ""
|
|
4522 |
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))."
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: src/admin.php:
|
4526 |
#: src/restorer.php:1975
|
4527 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4528 |
msgstr ""
|
@@ -4561,16 +4620,16 @@ msgstr ""
|
|
4561 |
msgid "(Read more)"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: src/addons/reporting.php:
|
4565 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: src/addons/morefiles.php:
|
4569 |
msgid "No backup of location: there was nothing found to back up"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: src/addons/moredatabase.php:
|
4573 |
-
#: src/addons/morefiles.php:
|
4574 |
msgid "Remove"
|
4575 |
msgstr ""
|
4576 |
|
@@ -4582,7 +4641,7 @@ msgstr ""
|
|
4582 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4583 |
msgstr ""
|
4584 |
|
4585 |
-
#: src/addons/morefiles.php:
|
4586 |
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."
|
4587 |
msgstr ""
|
4588 |
|
@@ -4611,53 +4670,53 @@ msgstr ""
|
|
4611 |
msgid "Backup created by:"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
-
#: src/udaddons/options.php:
|
4615 |
msgid "Available to claim on this site"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
-
#: src/udaddons/updraftplus-addons.php:
|
4619 |
msgid "To maintain your access to support, please renew."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: src/udaddons/updraftplus-addons.php:
|
4623 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
-
#: src/udaddons/updraftplus-addons.php:
|
4627 |
msgid "To regain your access, please renew."
|
4628 |
msgstr ""
|
4629 |
|
4630 |
-
#: src/udaddons/updraftplus-addons.php:
|
4631 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4632 |
msgstr ""
|
4633 |
|
4634 |
-
#: src/udaddons/updraftplus-addons.php:
|
4635 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: src/udaddons/updraftplus-addons.php:
|
4639 |
-
#: src/udaddons/updraftplus-addons.php:
|
4640 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4641 |
msgstr ""
|
4642 |
|
4643 |
-
#: src/udaddons/updraftplus-addons.php:
|
4644 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4645 |
msgstr ""
|
4646 |
|
4647 |
-
#: src/udaddons/updraftplus-addons.php:
|
4648 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4649 |
msgstr ""
|
4650 |
|
4651 |
-
#: src/udaddons/updraftplus-addons.php:
|
4652 |
-
#: src/udaddons/updraftplus-addons.php:
|
4653 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4654 |
msgstr ""
|
4655 |
|
4656 |
-
#: src/udaddons/updraftplus-addons.php:
|
4657 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4658 |
msgstr ""
|
4659 |
|
4660 |
-
#: src/udaddons/updraftplus-addons.php:
|
4661 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4662 |
msgstr ""
|
4663 |
|
@@ -4674,7 +4733,7 @@ msgstr ""
|
|
4674 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: src/includes/class-wpadmin-commands.php:
|
4678 |
msgid "Constants"
|
4679 |
msgstr ""
|
4680 |
|
@@ -4698,12 +4757,12 @@ msgstr ""
|
|
4698 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: src/udaddons/updraftplus-addons.php:
|
4702 |
-
#: src/udaddons/updraftplus-addons.php:
|
4703 |
msgid "Errors occurred:"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
-
#: src/addons/wp-cli.php:664, src/admin.php:
|
4707 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4708 |
msgstr ""
|
4709 |
|
@@ -4727,7 +4786,7 @@ msgstr ""
|
|
4727 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: src/admin.php:
|
4731 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4732 |
msgstr ""
|
4733 |
|
@@ -4740,11 +4799,11 @@ msgstr ""
|
|
4740 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4741 |
msgstr ""
|
4742 |
|
4743 |
-
#: src/addons/moredatabase.php:144, src/admin.php:
|
4744 |
msgid "Messages:"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#: src/restorer.php:
|
4748 |
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"
|
4749 |
msgstr ""
|
4750 |
|
@@ -4902,7 +4961,7 @@ msgid "Authorisation failed (check your credentials)"
|
|
4902 |
msgstr ""
|
4903 |
|
4904 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4905 |
-
#: src/udaddons/options.php:
|
4906 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4907 |
msgstr ""
|
4908 |
|
@@ -4918,15 +4977,15 @@ msgstr ""
|
|
4918 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
-
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:
|
4922 |
msgid "Error data:"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
-
#: src/admin.php:
|
4926 |
msgid "Backup does not exist in the backup history"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
-
#: src/admin.php:
|
4930 |
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."
|
4931 |
msgstr ""
|
4932 |
|
@@ -4954,23 +5013,23 @@ msgstr ""
|
|
4954 |
msgid "Moving old data out of the way..."
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: src/addons/reporting.php:
|
4958 |
msgid "Add another address..."
|
4959 |
msgstr ""
|
4960 |
|
4961 |
-
#: src/addons/reporting.php:
|
4962 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
4963 |
msgstr ""
|
4964 |
|
4965 |
-
#: src/addons/reporting.php:
|
4966 |
msgid "Email reports"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
-
#: src/class-updraftplus.php:
|
4970 |
msgid "%s checksum: %s"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: src/class-updraftplus.php:
|
4974 |
msgid "files: %s"
|
4975 |
msgstr ""
|
4976 |
|
@@ -4982,7 +5041,7 @@ msgstr ""
|
|
4982 |
msgid "Debugging information"
|
4983 |
msgstr ""
|
4984 |
|
4985 |
-
#: src/addons/reporting.php:223, src/admin.php:
|
4986 |
msgid "Uploaded to:"
|
4987 |
msgstr ""
|
4988 |
|
@@ -5002,7 +5061,7 @@ msgstr ""
|
|
5002 |
msgid "Errors / warnings:"
|
5003 |
msgstr ""
|
5004 |
|
5005 |
-
#: src/addons/morefiles.php:
|
5006 |
#: src/addons/reporting.php:184
|
5007 |
msgid "Contains:"
|
5008 |
msgstr ""
|
@@ -5023,8 +5082,7 @@ msgstr ""
|
|
5023 |
msgid "%d errors, %d warnings"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
-
#: src/
|
5027 |
-
#: src/methods/dropbox.php:775
|
5028 |
msgid "%s authentication"
|
5029 |
msgstr ""
|
5030 |
|
@@ -5055,8 +5113,9 @@ msgstr ""
|
|
5055 |
msgid "Your site's admin email address (%s) will be used."
|
5056 |
msgstr ""
|
5057 |
|
5058 |
-
#: src/admin.php:853, src/admin.php:
|
5059 |
-
#: src/methods/updraftvault.php:362
|
|
|
5060 |
msgid "Connect"
|
5061 |
msgstr ""
|
5062 |
|
@@ -5064,7 +5123,7 @@ msgstr ""
|
|
5064 |
msgid "For more reporting features, use the Reporting add-on."
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: src/class-updraftplus.php:
|
5068 |
msgid "(version: %s)"
|
5069 |
msgstr ""
|
5070 |
|
@@ -5072,7 +5131,7 @@ msgstr ""
|
|
5072 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#: src/addons/reporting.php:
|
5076 |
msgid "When the Email storage method is enabled, also send the backup"
|
5077 |
msgstr ""
|
5078 |
|
@@ -5136,7 +5195,7 @@ msgstr ""
|
|
5136 |
msgid "UpdraftPlus warning:"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#: src/udaddons/options.php:
|
5140 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5141 |
msgstr ""
|
5142 |
|
@@ -5164,11 +5223,11 @@ msgstr ""
|
|
5164 |
msgid "UpdraftPlus Support"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#: src/udaddons/options.php:
|
5168 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: src/udaddons/options.php:
|
5172 |
msgid "UpdraftPlus Addons"
|
5173 |
msgstr ""
|
5174 |
|
@@ -5177,24 +5236,24 @@ msgid "An update is available for UpdraftPlus - please follow this link to get i
|
|
5177 |
msgstr ""
|
5178 |
|
5179 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5180 |
-
#: src/udaddons/updraftplus-addons.php:
|
5181 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
-
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:
|
5185 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5189 |
-
#: src/udaddons/updraftplus-addons.php:
|
5190 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
-
#: src/udaddons/updraftplus-addons.php:
|
5194 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#: src/udaddons/updraftplus-addons.php:
|
5198 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5199 |
msgstr ""
|
5200 |
|
@@ -5205,11 +5264,11 @@ msgstr ""
|
|
5205 |
msgid "Reporting"
|
5206 |
msgstr ""
|
5207 |
|
5208 |
-
#: src/admin.php:
|
5209 |
msgid "Options (raw)"
|
5210 |
msgstr ""
|
5211 |
|
5212 |
-
#: src/addons/reporting.php:
|
5213 |
msgid "Send a report only when there are warnings/errors"
|
5214 |
msgstr ""
|
5215 |
|
@@ -5225,31 +5284,31 @@ msgstr ""
|
|
5225 |
msgid "See also the \"More Files\" add-on from our shop."
|
5226 |
msgstr ""
|
5227 |
|
5228 |
-
#: src/backup.php:
|
5229 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
-
#: src/class-updraftplus.php:
|
5233 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
-
#: src/udaddons/options.php:
|
5237 |
msgid "Manage Addons"
|
5238 |
msgstr ""
|
5239 |
|
5240 |
-
#: src/udaddons/options.php:
|
5241 |
msgid "Buy It"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
-
#: src/udaddons/options.php:
|
5245 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5246 |
msgstr ""
|
5247 |
|
5248 |
-
#: src/udaddons/options.php:
|
5249 |
msgid "activate it on this site"
|
5250 |
msgstr ""
|
5251 |
|
5252 |
-
#: src/udaddons/options.php:
|
5253 |
msgid "You have an inactive purchase"
|
5254 |
msgstr ""
|
5255 |
|
@@ -5277,47 +5336,47 @@ msgstr ""
|
|
5277 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#: src/udaddons/options.php:
|
5281 |
msgid "An unknown response was received. Response was:"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: src/udaddons/options.php:
|
5285 |
msgid "Claim not granted - your account login details were wrong"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: src/udaddons/options.php:
|
5289 |
msgid "Please wait whilst we make the claim..."
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#: src/udaddons/options.php:
|
5293 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#: src/udaddons/options.php:
|
5297 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#: src/udaddons/options.php:
|
5301 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: src/udaddons/options.php:
|
5305 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#: src/admin.php:
|
5309 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: src/admin.php:
|
5313 |
msgid "Forgotten your details?"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: src/admin.php:
|
5317 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: src/admin.php:
|
5321 |
msgid "Connect with your UpdraftPlus.Com account"
|
5322 |
msgstr ""
|
5323 |
|
@@ -5349,12 +5408,12 @@ msgstr ""
|
|
5349 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: src/addons/moredatabase.php:
|
5353 |
#: src/includes/class-updraftplus-encryption.php:148
|
5354 |
msgid "Without it, encryption will be a lot slower."
|
5355 |
msgstr ""
|
5356 |
|
5357 |
-
#: src/addons/moredatabase.php:
|
5358 |
#: src/includes/class-updraftplus-encryption.php:148
|
5359 |
msgid "Your web-server does not have the %s module installed."
|
5360 |
msgstr ""
|
@@ -5405,11 +5464,11 @@ msgstr ""
|
|
5405 |
msgid "You can send a backup to more than one destination with an add-on."
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: src/admin.php:
|
5409 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/admin.php:
|
5413 |
msgid "(%s%%, file %s of %s)"
|
5414 |
msgstr ""
|
5415 |
|
@@ -5450,11 +5509,11 @@ msgstr ""
|
|
5450 |
msgid "%s settings test result:"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: src/admin.php:
|
5454 |
msgid "(Not finished)"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
-
#: src/admin.php:
|
5458 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5459 |
msgstr ""
|
5460 |
|
@@ -5466,73 +5525,73 @@ msgstr ""
|
|
5466 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: src/admin.php:
|
5470 |
msgid "Job ID: %s"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: src/admin.php:
|
5474 |
msgid "last activity: %ss ago"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: src/admin.php:
|
5478 |
msgid "next resumption: %d (after %ss)"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
-
#: src/admin.php:
|
5482 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5483 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5484 |
msgid "Unknown"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: src/admin.php:
|
5488 |
msgid "Backup finished"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: src/admin.php:
|
5492 |
msgid "Waiting until scheduled time to retry because of errors"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: src/admin.php:
|
5496 |
msgid "Pruning old backup sets"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: src/admin.php:
|
5500 |
msgid "Uploading files to remote storage"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: src/admin.php:
|
5504 |
msgid "Encrypted database"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: src/admin.php:
|
5508 |
msgid "Encrypting database"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: src/admin.php:
|
5512 |
msgid "Created database backup"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: src/admin.php:
|
5516 |
msgid "table: %s"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/admin.php:
|
5520 |
msgid "Creating database backup"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/admin.php:
|
5524 |
msgid "Created file backup zips"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/admin.php:
|
5528 |
msgid "Creating file backup zips"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#: src/admin.php:
|
5532 |
msgid "Backup begun"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
-
#: src/admin.php:
|
5536 |
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."
|
5537 |
msgstr ""
|
5538 |
|
@@ -5548,11 +5607,11 @@ msgstr ""
|
|
5548 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: src/class-updraftplus.php:
|
5552 |
msgid "The backup has not finished; a resumption is scheduled"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: src/class-updraftplus.php:
|
5556 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5557 |
msgstr ""
|
5558 |
|
@@ -5561,7 +5620,7 @@ msgstr ""
|
|
5561 |
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)."
|
5562 |
msgstr ""
|
5563 |
|
5564 |
-
#: src/admin.php:
|
5565 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5566 |
msgstr ""
|
5567 |
|
@@ -5614,19 +5673,19 @@ msgstr ""
|
|
5614 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: src/addons/morefiles.php:
|
5618 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: src/addons/morefiles.php:
|
5622 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: src/addons/morefiles.php:
|
5626 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: src/addons/morefiles.php:
|
5630 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5631 |
msgstr ""
|
5632 |
|
@@ -5641,32 +5700,32 @@ msgstr ""
|
|
5641 |
msgid "Support"
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#: src/class-updraftplus.php:
|
5645 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#: src/class-updraftplus.php:
|
5649 |
msgid "This database backup is missing core WordPress tables: %s"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
-
#: src/class-updraftplus.php:
|
5653 |
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."
|
5654 |
msgstr ""
|
5655 |
|
5656 |
-
#: src/class-updraftplus.php:
|
11 |
"Language: bs_BA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
15 |
+
#: src/udaddons/updraftplus-addons.php:280
|
16 |
+
msgid "go here"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: src/udaddons/updraftplus-addons.php:268,
|
20 |
+
#: src/udaddons/updraftplus-addons.php:280
|
21 |
+
msgid "If you have already renewed, then you need to allocate a licence to this site - %s"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: src/addons/onedrive.php:864
|
25 |
+
msgid "Authentication"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: src/admin.php:924
|
29 |
+
msgid "You must select at least one remote storage destination to upload this backup set to."
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: src/templates/wp-admin/settings/form-contents.php:350
|
33 |
+
msgid "Read more about Easy Updates Manager"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:68
|
37 |
+
msgid "You can find out more about clone keys here."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:57
|
41 |
+
msgid "Or, use an UpdraftClone key"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: src/restorer.php:2493
|
45 |
+
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: src/admin.php:951
|
49 |
+
msgid "UpdraftClone key is required."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: src/admin.php:942
|
53 |
+
msgid "The preparation of the clone data has been aborted."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: src/addons/azure.php:646
|
57 |
+
msgid "Azure Government"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
#: src/templates/wp-admin/settings/form-contents.php:350
|
61 |
msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
|
62 |
msgstr ""
|
69 |
msgid "Your database user does not have permission to drop tables"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: src/admin.php:2960
|
73 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
74 |
msgstr ""
|
75 |
|
237 |
msgid "WordPress installed"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: src/admin.php:5422
|
241 |
msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: src/admin.php:3826
|
245 |
msgid "Exclude these from"
|
246 |
msgstr ""
|
247 |
|
281 |
msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41
|
285 |
msgid "To create a temporary clone you need credit in your account."
|
286 |
msgstr ""
|
287 |
|
293 |
msgid "failed to upload file to %s (see log file for more)"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: src/admin.php:5418
|
297 |
msgid "Dashboard:"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: src/admin.php:5417
|
301 |
msgid "Front page:"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: src/admin.php:5416
|
305 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
306 |
msgstr ""
|
307 |
|
313 |
msgid "Current clones"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: src/class-updraftplus.php:3045
|
317 |
msgid "Your clone will now deploy this data to re-create your site."
|
318 |
msgstr ""
|
319 |
|
|
|
|
|
|
|
|
|
320 |
#: src/admin.php:941
|
321 |
msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
|
322 |
msgstr ""
|
379 |
msgid "Account type"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56,
|
383 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:76
|
384 |
msgid "I accept the UpdraftClone terms and conditions"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:56
|
388 |
msgid "Not got an account? Get one by buying some tokens here."
|
389 |
msgstr ""
|
390 |
|
391 |
#: src/templates/wp-admin/settings/temporary-clone.php:22,
|
392 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:41,
|
393 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
394 |
msgid "You can buy UpdraftClone tokens from our shop, here."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:54
|
398 |
msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
402 |
msgid "If you want, test upgrading to a different PHP or WP version."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:32
|
406 |
msgid "Flexible"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
410 |
msgid "Takes just the time needed to create a backup and send it."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:31
|
414 |
msgid "Fast"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
418 |
msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:30
|
422 |
msgid "Secure"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
426 |
msgid "Runs on capacity from a leading cloud computing provider."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:29
|
430 |
msgid "Reliable"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
434 |
msgid "Press the buttons... UpdraftClone does the work."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:28
|
438 |
msgid "Easy"
|
439 |
msgstr ""
|
440 |
|
441 |
#: src/templates/wp-admin/settings/temporary-clone.php:22
|
442 |
+
msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test things on your live site, you can UpdraftClone it, and then throw away your clone when done."
|
443 |
msgstr ""
|
444 |
|
445 |
#: src/templates/wp-admin/settings/temporary-clone.php:10,
|
446 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:39
|
447 |
msgid "Create a temporary clone on our servers (UpdraftClone)"
|
448 |
msgstr ""
|
449 |
|
617 |
msgid "You can buy more temporary clone tokens here."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: src/admin.php:5373
|
621 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:35
|
625 |
msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
|
626 |
msgstr ""
|
627 |
|
633 |
msgid "Other great plugins"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: src/admin.php:5420, src/admin.php:5423
|
637 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: src/class-updraftplus.php:4310
|
641 |
msgid "Choose a default for each table"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: src/admin.php:3274
|
645 |
msgid "Sending files to remote site"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: src/admin.php:3269
|
649 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
650 |
msgstr ""
|
651 |
|
657 |
msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: src/admin.php:2796
|
661 |
msgid "Backup / Restore"
|
662 |
msgstr ""
|
663 |
|
681 |
msgid "No previous backup found to add an increment to."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: src/restorer.php:2499
|
685 |
msgid "Requested character set (%s) is not present - changing to %s."
|
686 |
msgstr ""
|
687 |
|
705 |
msgid "Refresh connection"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: src/addons/reporting.php:495
|
709 |
msgid "Log all messages to syslog"
|
710 |
msgstr ""
|
711 |
|
733 |
msgid "More information here."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: src/admin.php:669, src/admin.php:2797
|
737 |
msgid "Migrate / Clone"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: src/admin.php:3034, src/admin.php:3959,
|
741 |
#: src/templates/wp-admin/settings/existing-backups-table.php:73,
|
742 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76
|
743 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
763 |
msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: src/admin.php:5396
|
767 |
msgid "(current version)"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: src/admin.php:3736
|
771 |
msgid "press here"
|
772 |
msgstr ""
|
773 |
|
781 |
msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: src/addons/incremental.php:270
|
785 |
msgid "Tell me more"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: src/addons/incremental.php:258
|
789 |
msgid "And then add an incremental backup"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: src/addons/incremental.php:236, src/updraftplus.php:99
|
793 |
msgid "Every hour"
|
794 |
msgstr ""
|
795 |
|
801 |
msgid "Available temporary clone tokens:"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: src/admin.php:2884, src/includes/class-commands.php:901,
|
805 |
#: src/includes/class-commands.php:949,
|
806 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
807 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:71
|
808 |
msgid "Processing"
|
809 |
msgstr ""
|
820 |
msgid "I consent to %s"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: src/admin.php:2982,
|
824 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
825 |
msgid "One Time Password (check your OTP app to get this password)"
|
826 |
msgstr ""
|
869 |
msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: src/admin.php:5342
|
873 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
874 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
875 |
msgstr[0] ""
|
973 |
msgid "Upload backup"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: src/admin.php:4246
|
977 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
978 |
msgstr ""
|
979 |
|
985 |
msgid "Local backup upload has started; please check the current status tab to see the upload progress"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: src/admin.php:844, src/admin.php:4246
|
989 |
msgid "Upload"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: src/addons/reporting.php:529, src/admin.php:794
|
993 |
msgid "Only email the database backup"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: src/addons/reporting.php:529
|
997 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: src/addons/reporting.php:529
|
1001 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
1002 |
msgstr ""
|
1003 |
|
1111 |
msgid "Select your incremental restore point"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: src/addons/morefiles.php:67
|
1115 |
msgid "(None configured)"
|
1116 |
msgstr ""
|
1117 |
|
1119 |
msgid "Ensure you are logged into the correct account before continuing."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: src/admin.php:4984
|
1123 |
msgid "Remote storage method and instance id are required for authentication."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: src/admin.php:4980
|
1127 |
msgid "authentication error"
|
1128 |
msgstr ""
|
1129 |
|
1202 |
msgstr[1] ""
|
1203 |
msgstr[2] ""
|
1204 |
|
1205 |
+
#: src/class-updraftplus.php:4287
|
1206 |
msgid "Your chosen replacement collation"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: src/class-updraftplus.php:4264
|
1210 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: src/class-updraftplus.php:4264
|
1214 |
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."
|
1215 |
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."
|
1216 |
msgstr[0] ""
|
1280 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: src/class-updraftplus.php:4240
|
1284 |
msgid "Your chosen character set to use instead:"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: src/class-updraftplus.php:4230
|
1288 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: src/class-updraftplus.php:4230
|
1292 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
1293 |
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."
|
1294 |
msgstr[0] ""
|
1379 |
msgid "Account ID"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: src/class-updraftplus.php:4069
|
1383 |
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."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
|
1387 |
msgid "the migrator add-on"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: src/class-updraftplus.php:4067
|
1391 |
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."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: src/class-updraftplus.php:4065
|
1395 |
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."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: src/class-updraftplus.php:4060
|
1399 |
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."
|
1400 |
msgstr ""
|
1401 |
|
1411 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
|
1415 |
+
#: src/class-updraftplus.php:2252,
|
1416 |
#: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
|
1417 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
|
1421 |
+
#: src/class-updraftplus.php:2245,
|
1422 |
#: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
|
1423 |
msgid "A PHP exception (%s) has occurred: %s"
|
1424 |
msgstr ""
|
1472 |
msgid "Instant and secure logon with a wave of your phone."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: src/admin.php:5190
|
1476 |
msgid "Value"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: src/admin.php:1779
|
1480 |
msgid "Did not know how to delete from this cloud service."
|
1481 |
msgstr ""
|
1482 |
|
1492 |
msgid "Cloud Files"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: src/admin.php:4932
|
1496 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: src/admin.php:4891
|
1500 |
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."
|
1501 |
msgstr ""
|
1502 |
|
1505 |
msgid "UpdraftVault"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: src/includes/class-wpadmin-commands.php:529
|
1509 |
msgid "archive"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: src/includes/class-wpadmin-commands.php:520
|
1513 |
msgid "Extra database"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: src/admin.php:4102
|
1517 |
msgid "Press here to download or browse"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: src/admin.php:1332, src/admin.php:1342
|
1521 |
msgid "Error: invalid path"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: src/admin.php:1131
|
1525 |
msgid "An error occurred when fetching storage module options: "
|
1526 |
msgstr ""
|
1527 |
|
1557 |
msgid "Skipped tables:"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/class-updraftplus.php:4365
|
1561 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/admin.php:3020
|
1565 |
msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/admin.php:3020
|
1569 |
msgid "All WordPress tables will be backed up."
|
1570 |
msgstr ""
|
1571 |
|
1597 |
msgid "You have chosen to backup a database, but no tables have been selected"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: src/addons/moredatabase.php:414
|
1601 |
msgid "tables"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: src/addons/moredatabase.php:413
|
1605 |
msgid "WordPress database"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: src/addons/moredatabase.php:406
|
1609 |
msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
|
1610 |
msgstr ""
|
1611 |
|
1724 |
msgid "Installed"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/templates/wp-admin/settings/tab-addons.php:43,
|
1728 |
+
#: src/templates/wp-admin/settings/tab-addons.php:65,
|
1729 |
+
#: src/templates/wp-admin/settings/tab-addons.php:78,
|
1730 |
+
#: src/templates/wp-admin/settings/tab-addons.php:91,
|
1731 |
+
#: src/templates/wp-admin/settings/tab-addons.php:104,
|
1732 |
+
#: src/templates/wp-admin/settings/tab-addons.php:117,
|
1733 |
+
#: src/templates/wp-admin/settings/tab-addons.php:130,
|
1734 |
+
#: src/templates/wp-admin/settings/tab-addons.php:143,
|
1735 |
+
#: src/templates/wp-admin/settings/tab-addons.php:156,
|
1736 |
+
#: src/templates/wp-admin/settings/tab-addons.php:169,
|
1737 |
+
#: src/templates/wp-admin/settings/tab-addons.php:182,
|
1738 |
+
#: src/templates/wp-admin/settings/tab-addons.php:195,
|
1739 |
+
#: src/templates/wp-admin/settings/tab-addons.php:208,
|
1740 |
+
#: src/templates/wp-admin/settings/tab-addons.php:221,
|
1741 |
+
#: src/templates/wp-admin/settings/tab-addons.php:234,
|
1742 |
+
#: src/templates/wp-admin/settings/tab-addons.php:251
|
1743 |
msgid "Free"
|
1744 |
msgstr ""
|
1745 |
|
1762 |
msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: src/addons/morefiles.php:319
|
1766 |
msgid "Please choose a file or directory"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: src/addons/morefiles.php:312
|
1770 |
msgid "Confirm"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: src/addons/morefiles.php:307, src/addons/morefiles.php:307
|
1774 |
msgid "Go up a directory"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: src/addons/morefiles.php:304
|
1778 |
msgid "Add directory..."
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: src/addons/morefiles.php:297, src/addons/morefiles.php:317,
|
1782 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
1783 |
msgid "Edit"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: src/addons/morefiles.php:280
|
1787 |
msgid "If using it, select a path from the directory tree below and then press confirm selection."
|
1788 |
msgstr ""
|
1789 |
|
1856 |
msgstr ""
|
1857 |
|
1858 |
#: src/includes/updraftplus-notices.php:238
|
1859 |
+
msgid "Happy New Year - 20% off UpdraftPlus Premium until January 14th"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
#: src/includes/updraftplus-notices.php:225
|
2042 |
msgid "You have selected a remote storage option which has an authorization step to complete:"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: src/admin.php:1862
|
2046 |
msgid "Remote files deleted:"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: src/admin.php:1861
|
2050 |
msgid "Local files deleted:"
|
2051 |
msgstr ""
|
2052 |
|
2102 |
msgid "Account is not authorized (%s)."
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
|
2106 |
msgid "Your IP address:"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
|
2110 |
+
#: src/udaddons/updraftplus-addons.php:903
|
2111 |
msgid "To remove any block, please go here."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
|
2115 |
msgid "An error response was received; HTTP code:"
|
2116 |
msgstr ""
|
2117 |
|
2127 |
msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: src/admin.php:2607
|
2131 |
msgid "To fix this problem go here."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: src/admin.php:2607
|
2135 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
2136 |
msgstr ""
|
2137 |
|
2163 |
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."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: src/udaddons/updraftplus-addons.php:906
|
2167 |
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."
|
2168 |
msgstr ""
|
2169 |
|
2207 |
msgid "Public key was sent to:"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: src/backup.php:2353
|
2211 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: src/backup.php:2331
|
2215 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
2216 |
msgstr ""
|
2217 |
|
2269 |
msgid "login"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: src/addons/reporting.php:527, src/addons/reporting.php:527,
|
2273 |
+
#: src/addons/reporting.php:529, src/methods/email.php:100
|
2274 |
msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
|
2275 |
msgstr ""
|
2276 |
|
2278 |
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."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: src/class-updraftplus.php:1793
|
2282 |
msgid "Size: %s MB"
|
2283 |
msgstr ""
|
2284 |
|
2286 |
msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
2290 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
2291 |
msgstr ""
|
2292 |
|
2392 |
msgid "UpdraftCentral Connection"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: src/backup.php:1042, src/class-updraftplus.php:3026
|
2396 |
msgid "The backup was aborted by the user"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: src/admin.php:4927
|
2400 |
msgid "Your settings have been saved."
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: src/admin.php:4007
|
2404 |
msgid "Total backup size:"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
+
#: src/admin.php:3414
|
2408 |
msgid "stop"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: src/admin.php:903, src/admin.php:3207
|
2412 |
msgid "The backup has finished running"
|
2413 |
msgstr ""
|
2414 |
|
2470 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: src/class-updraftplus.php:4138, src/restorer.php:2227
|
2474 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: src/class-updraftplus.php:4134
|
2478 |
msgid "Please read this link for important information on this process."
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: src/class-updraftplus.php:4134
|
2482 |
msgid "It will be imported as a new site."
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
|
2486 |
#: src/templates/wp-admin/notices/horizontal-notice.php:18
|
2487 |
msgid "Dismiss"
|
2488 |
msgstr ""
|
2548 |
msgid "Call WordPress action:"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: src/admin.php:3030
|
2552 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
2553 |
msgstr ""
|
2554 |
|
2580 |
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)."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: src/admin.php:4801
|
2584 |
msgid "Send this backup to remote storage"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: src/admin.php:4799
|
2588 |
msgid "Check out UpdraftPlus Vault."
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: src/admin.php:4799
|
2592 |
msgid "Not got any remote storage?"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: src/admin.php:4799
|
2596 |
msgid "settings"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: src/admin.php:4799
|
2600 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: src/admin.php:3028
|
2604 |
msgid "Include any files in the backup"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: src/admin.php:3012
|
2608 |
msgid "Include the database in the backup"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: src/admin.php:2839
|
2612 |
msgid "Continue restoration"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: src/admin.php:2834
|
2616 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: src/admin.php:2833
|
2620 |
msgid "Unfinished restoration"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: src/admin.php:2831
|
2624 |
msgid "%s minutes, %s seconds"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: src/admin.php:2697
|
2628 |
msgid "Backup Contents And Schedule"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: src/admin.php:2800
|
2632 |
msgid "Premium / Extensions"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: src/admin.php:2474, src/admin.php:2483
|
2636 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: src/addons/morefiles.php:71, src/admin.php:875
|
2640 |
msgctxt "(verb)"
|
2641 |
msgid "Download"
|
2642 |
msgstr ""
|
2649 |
msgid "Extensions"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: src/admin.php:685, src/admin.php:2799
|
2653 |
msgid "Advanced Tools"
|
2654 |
msgstr ""
|
2655 |
|
2768 |
msgid "Could not access container"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
+
#: src/class-updraftplus.php:3045
|
2772 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
2773 |
msgstr ""
|
2774 |
|
2898 |
msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: src/admin.php:1860
|
2902 |
msgid "Backup sets removed:"
|
2903 |
msgstr ""
|
2904 |
|
2938 |
msgid "Add an additional retention rule..."
|
2939 |
msgstr ""
|
2940 |
|
2941 |
+
#: src/restorer.php:2805
|
2942 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
2943 |
msgstr ""
|
2944 |
|
2945 |
+
#: src/restorer.php:2805
|
2946 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
2947 |
msgstr ""
|
2948 |
|
2950 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
+
#: src/class-updraftplus.php:4209
|
2954 |
msgid "You must upgrade MySQL to be able to use this database."
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: src/class-updraftplus.php:4209
|
2958 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: src/admin.php:2592
|
2962 |
msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
|
2963 |
msgstr ""
|
2964 |
|
2986 |
msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: src/admin.php:1190
|
2990 |
msgid "Go to the remote storage settings in order to connect."
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: src/admin.php:1190
|
2994 |
msgid "%s has been chosen for remote storage, but you are not currently connected."
|
2995 |
msgstr ""
|
2996 |
|
3134 |
msgid "Delete failed:"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
+
#: src/backup.php:3431
|
3138 |
msgid "The zip engine returned the message: %s."
|
3139 |
msgstr ""
|
3140 |
|
3214 |
msgid "This storage method does not allow downloading"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
+
#: src/admin.php:4165
|
3218 |
msgid "(backup set imported from remote location)"
|
3219 |
msgstr ""
|
3220 |
|
3360 |
msgid "Adding..."
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: src/udaddons/options.php:294
|
3364 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: src/restorer.php:2807
|
3368 |
msgid "To use this backup, your database server needs to support the %s character set."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3372 |
msgid "go here to change your password on updraftplus.com."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: src/udaddons/updraftplus-addons.php:939
|
3376 |
msgid "If you have forgotten your password "
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: src/udaddons/updraftplus-addons.php:938
|
3380 |
msgid "Go here to re-enter your password."
|
3381 |
msgstr ""
|
3382 |
|
3414 |
msgstr ""
|
3415 |
|
3416 |
#: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
|
3417 |
+
msgid "authorization failed:"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
#: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
|
3590 |
|
3591 |
#: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
|
3592 |
#: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
|
3593 |
+
#: src/udaddons/updraftplus-addons.php:889,
|
3594 |
+
#: src/udaddons/updraftplus-addons.php:903
|
3595 |
msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
|
3596 |
msgstr ""
|
3597 |
|
3598 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3599 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3600 |
msgid "It appears that your web server's IP Address (%s) is blocked."
|
3601 |
msgstr ""
|
3602 |
|
3603 |
#: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
|
3604 |
+
#: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
|
3605 |
msgid "UpdraftPlus.com has responded with 'Access Denied'."
|
3606 |
msgstr ""
|
3607 |
|
3639 |
msgid "Dismiss (for %s months)"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: src/addons/fixtime.php:448
|
3643 |
msgid "(at same time as files backup)"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: src/admin.php:3701
|
3647 |
msgid "No backup has been completed"
|
3648 |
msgstr ""
|
3649 |
|
3717 |
msgid "Check this box to have a basic report sent to"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: src/admin.php:3715
|
3721 |
msgctxt "i.e. Non-automatic"
|
3722 |
msgid "Manual"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
+
#: src/restorer.php:2784
|
3726 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
3727 |
msgid "An error (%s) occurred:"
|
3728 |
msgstr ""
|
3731 |
msgid "Change Lock Settings"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: src/addons/morefiles.php:258
|
3735 |
msgid "Any other file/directory on your server that you wish to backup"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: src/admin.php:2609
|
3739 |
msgid "For even more features and personal support, check out "
|
3740 |
msgstr ""
|
3741 |
|
3821 |
msgid "The admin password has now been removed."
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: src/addons/morefiles.php:141
|
3825 |
msgid "(learn more about this significant option)"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: src/udaddons/options.php:237
|
3829 |
msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: src/admin.php:3207, src/admin.php:4276
|
3833 |
msgid "View Log"
|
3834 |
msgstr ""
|
3835 |
|
3848 |
msgid "and retain this many scheduled backups"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: src/admin.php:3671
|
3852 |
msgid "incremental backup; base backup: %s"
|
3853 |
msgstr ""
|
3854 |
|
3861 |
msgid "Upload files into UpdraftPlus."
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: src/admin.php:1136, src/includes/class-commands.php:462,
|
3865 |
#: src/templates/wp-admin/settings/take-backup.php:12
|
3866 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: src/class-updraftplus.php:4123
|
3870 |
msgid "Backup label:"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
+
#: src/addons/backblaze.php:205, src/admin.php:2111
|
3874 |
msgid "Error: unexpected file read fail"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
#: src/backup.php:3437
|
3878 |
msgid "check your log for more details."
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: src/backup.php:3435
|
3882 |
msgid "your web hosting account appears to be full; please see: %s"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: src/backup.php:3433
|
3886 |
msgid "A zip error occurred"
|
3887 |
msgstr ""
|
3888 |
|
3894 |
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."
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:942
|
3898 |
msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:938
|
3902 |
msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
|
3903 |
msgstr ""
|
3904 |
|
3905 |
+
#: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:804
|
3906 |
msgid "You need to supply both an email address and a password"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: src/class-updraftplus.php:4142
|
3910 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: src/class-updraftplus.php:4142
|
3914 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
3915 |
msgstr ""
|
3916 |
|
3947 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: src/class-updraftplus.php:4115
|
3951 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: src/class-updraftplus.php:4115
|
3955 |
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."
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: src/class-updraftplus.php:4115
|
3959 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: src/class-updraftplus.php:4115
|
3963 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
3964 |
msgstr ""
|
3965 |
|
3988 |
msgid "UpdraftPlus is on social media - check us out!"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: src/addons/wp-cli.php:907, src/admin.php:4464
|
3992 |
msgid "Why am I seeing this?"
|
3993 |
msgstr ""
|
3994 |
|
4002 |
msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: src/admin.php:2048, src/admin.php:2060, src/includes/class-commands.php:833
|
4006 |
msgid "Start backup"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: src/class-updraftplus.php:4086, src/restorer.php:1446
|
4010 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: src/admin.php:3569
|
4014 |
msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
|
4015 |
msgstr ""
|
4016 |
|
4018 |
msgid "Unless you have a problem, you can completely ignore everything here."
|
4019 |
msgstr ""
|
4020 |
|
4021 |
+
#: src/admin.php:2286
|
4022 |
msgid "This file could not be uploaded"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: src/admin.php:2249
|
4026 |
msgid "You will find more information about this in the Settings section."
|
4027 |
msgstr ""
|
4028 |
|
4062 |
msgid "Backup succeeded"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: src/addons/incremental.php:237, src/addons/incremental.php:238,
|
4066 |
+
#: src/addons/incremental.php:239, src/addons/incremental.php:240,
|
4067 |
+
#: src/admin.php:3716, src/admin.php:3717, src/admin.php:3718,
|
4068 |
#: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
|
4069 |
msgid "Every %s hours"
|
4070 |
msgstr ""
|
4103 |
msgid "search term"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: src/restorer.php:2812
|
4107 |
msgid "Too many database errors have occurred - aborting"
|
4108 |
msgstr ""
|
4109 |
|
4139 |
msgid "Free disk space in account:"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: src/admin.php:4898, src/templates/wp-admin/settings/take-backup.php:50
|
4143 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: src/admin.php:817, src/admin.php:1916,
|
4147 |
#: src/includes/deprecated-actions.php:29,
|
4148 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
|
4149 |
#: src/templates/wp-admin/settings/tab-backups.php:21,
|
4151 |
msgid "Existing Backups"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: src/admin.php:1141
|
4155 |
msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: src/admin.php:1141
|
4159 |
msgid "To make a backup, just press the Backup Now button."
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: src/admin.php:1141
|
4163 |
msgid "Welcome to UpdraftPlus!"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: src/addons/moredatabase.php:318
|
4167 |
msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
|
4168 |
msgstr ""
|
4169 |
|
4170 |
+
#: src/addons/moredatabase.php:257
|
4171 |
msgid "Testing..."
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: src/addons/moredatabase.php:244
|
4175 |
msgid "Test connection..."
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: src/addons/moredatabase.php:243
|
4179 |
msgid "Table prefix"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: src/addons/moredatabase.php:237
|
4183 |
msgid "Backup external database"
|
4184 |
msgstr ""
|
4185 |
|
4231 |
msgid "user"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
+
#: src/class-updraftplus.php:1790
|
4235 |
msgid "External database (%s)"
|
4236 |
msgstr ""
|
4237 |
|
4249 |
msgid "However, subsequent access attempts failed:"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: src/addons/wp-cli.php:437, src/admin.php:4032
|
4253 |
msgid "External database"
|
4254 |
msgstr ""
|
4255 |
|
4281 |
msgid "use UpdraftPlus Premium"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: src/class-updraftplus.php:3966
|
4285 |
msgid "Decryption failed. The database file is encrypted."
|
4286 |
msgstr ""
|
4287 |
|
4289 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: src/restorer.php:2284, src/restorer.php:2753, src/restorer.php:2794,
|
4293 |
+
#: src/restorer.php:2807
|
4294 |
msgid "An error occurred on the first %s command - aborting run"
|
4295 |
msgstr ""
|
4296 |
|
4336 |
msgid "Tenant"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
+
#: src/addons/wp-cli.php:800, src/admin.php:4586, src/admin.php:5342,
|
4340 |
#: src/methods/openstack2.php:144,
|
4341 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
4342 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
4482 |
msgid "Failed to unpack the archive"
|
4483 |
msgstr ""
|
4484 |
|
4485 |
+
#: src/class-updraftplus.php:1365
|
4486 |
msgid "Error - failed to download the file"
|
4487 |
msgstr ""
|
4488 |
|
4491 |
msgid "Rescan local folder for new backup sets"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4495 |
msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4499 |
msgid "It has been tested up to version %s."
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: src/udaddons/updraftplus-addons.php:259
|
4503 |
msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
|
4504 |
msgstr ""
|
4505 |
|
4508 |
msgstr ""
|
4509 |
|
4510 |
#: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
|
4511 |
+
#: src/admin.php:5190, src/templates/wp-admin/settings/temporary-clone.php:63
|
4512 |
msgid "Key"
|
4513 |
msgstr ""
|
4514 |
|
4524 |
msgid "SCP/SFTP password/key"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4528 |
msgid "Files backup (created by %s)"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: src/addons/wp-cli.php:449, src/admin.php:4076
|
4532 |
msgid "Files and database WordPress backup (created by %s)"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: src/addons/importer.php:276, src/admin.php:4070,
|
4536 |
#: src/includes/class-backup-history.php:435
|
4537 |
msgid "Backup created by: %s."
|
4538 |
msgstr ""
|
4539 |
|
4540 |
+
#: src/addons/wp-cli.php:431, src/admin.php:4030
|
4541 |
msgid "Database (created by %s)"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
+
#: src/addons/wp-cli.php:429, src/admin.php:4024, src/admin.php:4072
|
4545 |
msgid "unknown source"
|
4546 |
msgstr ""
|
4547 |
|
4556 |
msgid "Upload backup files"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: src/admin.php:2301
|
4560 |
msgid "This backup was created by %s, and can be imported."
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: src/admin.php:1170
|
4564 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: src/admin.php:1170
|
4568 |
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."
|
4569 |
msgstr ""
|
4570 |
|
4581 |
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))."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
+
#: src/admin.php:4073, src/includes/class-wpadmin-commands.php:162,
|
4585 |
#: src/restorer.php:1975
|
4586 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
4587 |
msgstr ""
|
4620 |
msgid "(Read more)"
|
4621 |
msgstr ""
|
4622 |
|
4623 |
+
#: src/addons/reporting.php:496
|
4624 |
msgid "Log all messages to syslog (only server admins are likely to want this)"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
+
#: src/addons/morefiles.php:538
|
4628 |
msgid "No backup of location: there was nothing found to back up"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
+
#: src/addons/moredatabase.php:236, src/addons/morefiles.php:297,
|
4632 |
+
#: src/addons/morefiles.php:318
|
4633 |
msgid "Remove"
|
4634 |
msgstr ""
|
4635 |
|
4641 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: src/addons/morefiles.php:476, src/admin.php:3829
|
4645 |
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."
|
4646 |
msgstr ""
|
4647 |
|
4670 |
msgid "Backup created by:"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: src/udaddons/options.php:479
|
4674 |
msgid "Available to claim on this site"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4678 |
msgid "To maintain your access to support, please renew."
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: src/udaddons/updraftplus-addons.php:288
|
4682 |
msgid "Your paid access to UpdraftPlus support will soon expire."
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4686 |
msgid "To regain your access, please renew."
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: src/udaddons/updraftplus-addons.php:286
|
4690 |
msgid "Your paid access to UpdraftPlus support has expired."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4694 |
msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: src/udaddons/updraftplus-addons.php:276,
|
4698 |
+
#: src/udaddons/updraftplus-addons.php:278
|
4699 |
msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: src/udaddons/updraftplus-addons.php:276
|
4703 |
msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4707 |
msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: src/udaddons/updraftplus-addons.php:266,
|
4711 |
+
#: src/udaddons/updraftplus-addons.php:272
|
4712 |
msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
|
4713 |
msgstr ""
|
4714 |
|
4715 |
+
#: src/udaddons/updraftplus-addons.php:266
|
4716 |
msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
|
4717 |
msgstr ""
|
4718 |
|
4719 |
+
#: src/udaddons/updraftplus-addons.php:228
|
4720 |
msgid "Dismiss from main dashboard (for %s weeks)"
|
4721 |
msgstr ""
|
4722 |
|
4733 |
msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
|
4734 |
msgstr ""
|
4735 |
|
4736 |
+
#: src/includes/class-wpadmin-commands.php:328
|
4737 |
msgid "Constants"
|
4738 |
msgstr ""
|
4739 |
|
4757 |
msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: src/udaddons/updraftplus-addons.php:474,
|
4761 |
+
#: src/udaddons/updraftplus-addons.php:510
|
4762 |
msgid "Errors occurred:"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: src/addons/wp-cli.php:664, src/admin.php:4506
|
4766 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
4767 |
msgstr ""
|
4768 |
|
4786 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
+
#: src/admin.php:1145, src/class-updraftplus.php:847
|
4790 |
msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
|
4791 |
msgstr ""
|
4792 |
|
4799 |
msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: src/addons/moredatabase.php:144, src/admin.php:1640
|
4803 |
msgid "Messages:"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: src/restorer.php:2647
|
4807 |
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"
|
4808 |
msgstr ""
|
4809 |
|
4961 |
msgstr ""
|
4962 |
|
4963 |
#: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
|
4964 |
+
#: src/udaddons/options.php:229
|
4965 |
msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
|
4966 |
msgstr ""
|
4967 |
|
4977 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
4978 |
msgstr ""
|
4979 |
|
4980 |
+
#: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:4584
|
4981 |
msgid "Error data:"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
+
#: src/admin.php:4487
|
4985 |
msgid "Backup does not exist in the backup history"
|
4986 |
msgstr ""
|
4987 |
|
4988 |
+
#: src/admin.php:3143
|
4989 |
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."
|
4990 |
msgstr ""
|
4991 |
|
5013 |
msgid "Moving old data out of the way..."
|
5014 |
msgstr ""
|
5015 |
|
5016 |
+
#: src/addons/reporting.php:481
|
5017 |
msgid "Add another address..."
|
5018 |
msgstr ""
|
5019 |
|
5020 |
+
#: src/addons/reporting.php:466
|
5021 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
5022 |
msgstr ""
|
5023 |
|
5024 |
+
#: src/addons/reporting.php:440
|
5025 |
msgid "Email reports"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: src/class-updraftplus.php:1798, src/class-updraftplus.php:1803
|
5029 |
msgid "%s checksum: %s"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
+
#: src/class-updraftplus.php:1734, src/class-updraftplus.php:1736
|
5033 |
msgid "files: %s"
|
5034 |
msgstr ""
|
5035 |
|
5041 |
msgid "Debugging information"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: src/addons/reporting.php:223, src/admin.php:3990
|
5045 |
msgid "Uploaded to:"
|
5046 |
msgstr ""
|
5047 |
|
5061 |
msgid "Errors / warnings:"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: src/addons/morefiles.php:129, src/addons/morefiles.php:130,
|
5065 |
#: src/addons/reporting.php:184
|
5066 |
msgid "Contains:"
|
5067 |
msgstr ""
|
5082 |
msgid "%d errors, %d warnings"
|
5083 |
msgstr ""
|
5084 |
|
5085 |
+
#: src/methods/dropbox.php:753, src/methods/dropbox.php:775
|
|
|
5086 |
msgid "%s authentication"
|
5087 |
msgstr ""
|
5088 |
|
5113 |
msgid "Your site's admin email address (%s) will be used."
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: src/admin.php:853, src/admin.php:2874, src/methods/updraftvault.php:319,
|
5117 |
+
#: src/methods/updraftvault.php:362,
|
5118 |
+
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
5119 |
msgid "Connect"
|
5120 |
msgstr ""
|
5121 |
|
5123 |
msgid "For more reporting features, use the Reporting add-on."
|
5124 |
msgstr ""
|
5125 |
|
5126 |
+
#: src/class-updraftplus.php:4047
|
5127 |
msgid "(version: %s)"
|
5128 |
msgstr ""
|
5129 |
|
5131 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
5132 |
msgstr ""
|
5133 |
|
5134 |
+
#: src/addons/reporting.php:527, src/admin.php:791
|
5135 |
msgid "When the Email storage method is enabled, also send the backup"
|
5136 |
msgstr ""
|
5137 |
|
5195 |
msgid "UpdraftPlus warning:"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: src/udaddons/options.php:485
|
5199 |
msgid "(or connect using the form on this page if you have already purchased it)"
|
5200 |
msgstr ""
|
5201 |
|
5223 |
msgid "UpdraftPlus Support"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
+
#: src/udaddons/options.php:357
|
5227 |
msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: src/udaddons/options.php:346, src/udaddons/updraftplus-addons.php:315
|
5231 |
msgid "UpdraftPlus Addons"
|
5232 |
msgstr ""
|
5233 |
|
5236 |
msgstr ""
|
5237 |
|
5238 |
#: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
|
5239 |
+
#: src/udaddons/updraftplus-addons.php:949
|
5240 |
msgid "UpdraftPlus.Com returned a response, but we could not understand it"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
+
#: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:945
|
5244 |
msgid "Your email address and password were not recognised by UpdraftPlus.Com"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
#: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
|
5248 |
+
#: src/udaddons/updraftplus-addons.php:908
|
5249 |
msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
|
5250 |
msgstr ""
|
5251 |
|
5252 |
+
#: src/udaddons/updraftplus-addons.php:831
|
5253 |
msgid "UpdraftPlus.Com responded, but we did not understand the response"
|
5254 |
msgstr ""
|
5255 |
|
5256 |
+
#: src/udaddons/updraftplus-addons.php:829
|
5257 |
msgid "We failed to successfully connect to UpdraftPlus.Com"
|
5258 |
msgstr ""
|
5259 |
|
5264 |
msgid "Reporting"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
+
#: src/admin.php:5187
|
5268 |
msgid "Options (raw)"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
+
#: src/addons/reporting.php:525, src/admin.php:790
|
5272 |
msgid "Send a report only when there are warnings/errors"
|
5273 |
msgstr ""
|
5274 |
|
5284 |
msgid "See also the \"More Files\" add-on from our shop."
|
5285 |
msgstr ""
|
5286 |
|
5287 |
+
#: src/backup.php:3424, src/class-updraftplus.php:860
|
5288 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
+
#: src/class-updraftplus.php:844
|
5292 |
msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
|
5293 |
msgstr ""
|
5294 |
|
5295 |
+
#: src/udaddons/options.php:508
|
5296 |
msgid "Manage Addons"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
+
#: src/udaddons/options.php:486, src/udaddons/options.php:486
|
5300 |
msgid "Buy It"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: src/udaddons/options.php:485
|
5304 |
msgid "Get it from the UpdraftPlus.Com Store"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
+
#: src/udaddons/options.php:479, src/udaddons/options.php:481
|
5308 |
msgid "activate it on this site"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
+
#: src/udaddons/options.php:481
|
5312 |
msgid "You have an inactive purchase"
|
5313 |
msgstr ""
|
5314 |
|
5336 |
msgid "An error occurred when trying to retrieve your add-ons."
|
5337 |
msgstr ""
|
5338 |
|
5339 |
+
#: src/udaddons/options.php:296
|
5340 |
msgid "An unknown response was received. Response was:"
|
5341 |
msgstr ""
|
5342 |
|
5343 |
+
#: src/udaddons/options.php:295
|
5344 |
msgid "Claim not granted - your account login details were wrong"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
+
#: src/udaddons/options.php:293
|
5348 |
msgid "Please wait whilst we make the claim..."
|
5349 |
msgstr ""
|
5350 |
|
5351 |
+
#: src/udaddons/options.php:247
|
5352 |
msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
+
#: src/udaddons/options.php:240
|
5356 |
msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
|
5357 |
msgstr ""
|
5358 |
|
5359 |
+
#: src/udaddons/options.php:236
|
5360 |
msgid "If you bought new add-ons, then follow this link to refresh your connection"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
+
#: src/udaddons/options.php:235
|
5364 |
msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
|
5365 |
msgstr ""
|
5366 |
|
5367 |
+
#: src/admin.php:2872
|
5368 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
5369 |
msgstr ""
|
5370 |
|
5371 |
+
#: src/admin.php:2948
|
5372 |
msgid "Forgotten your details?"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
+
#: src/admin.php:2861
|
5376 |
msgid "Not yet got an account (it's free)? Go get one!"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: src/admin.php:2927
|
5380 |
msgid "Connect with your UpdraftPlus.Com account"
|
5381 |
msgstr ""
|
5382 |
|
5408 |
msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: src/addons/moredatabase.php:313,
|
5412 |
#: src/includes/class-updraftplus-encryption.php:148
|
5413 |
msgid "Without it, encryption will be a lot slower."
|
5414 |
msgstr ""
|
5415 |
|
5416 |
+
#: src/addons/moredatabase.php:313,
|
5417 |
#: src/includes/class-updraftplus-encryption.php:148
|
5418 |
msgid "Your web-server does not have the %s module installed."
|
5419 |
msgstr ""
|
5464 |
msgid "You can send a backup to more than one destination with an add-on."
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: src/admin.php:3414
|
5468 |
msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: src/admin.php:3281
|
5472 |
msgid "(%s%%, file %s of %s)"
|
5473 |
msgstr ""
|
5474 |
|
5509 |
msgid "%s settings test result:"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
+
#: src/admin.php:4138, src/admin.php:4140
|
5513 |
msgid "(Not finished)"
|
5514 |
msgstr ""
|
5515 |
|
5516 |
+
#: src/admin.php:4140
|
5517 |
msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
|
5518 |
msgstr ""
|
5519 |
|
5525 |
msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
|
5526 |
msgstr ""
|
5527 |
|
5528 |
+
#: src/admin.php:3382
|
5529 |
msgid "Job ID: %s"
|
5530 |
msgstr ""
|
5531 |
|
5532 |
+
#: src/admin.php:3362
|
5533 |
msgid "last activity: %ss ago"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: src/admin.php:3361
|
5537 |
msgid "next resumption: %d (after %ss)"
|
5538 |
msgstr ""
|
5539 |
|
5540 |
+
#: src/admin.php:3344, src/central/bootstrap.php:444,
|
5541 |
#: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
|
5542 |
#: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
|
5543 |
msgid "Unknown"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
+
#: src/admin.php:3295
|
5547 |
msgid "Backup finished"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: src/admin.php:3290
|
5551 |
msgid "Waiting until scheduled time to retry because of errors"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: src/admin.php:3286
|
5555 |
msgid "Pruning old backup sets"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: src/admin.php:3273
|
5559 |
msgid "Uploading files to remote storage"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: src/admin.php:3342
|
5563 |
msgid "Encrypted database"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: src/admin.php:3334
|
5567 |
msgid "Encrypting database"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: src/admin.php:3308
|
5571 |
msgid "Created database backup"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: src/admin.php:3321
|
5575 |
msgid "table: %s"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
+
#: src/admin.php:3319
|
5579 |
msgid "Creating database backup"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: src/admin.php:3264
|
5583 |
msgid "Created file backup zips"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
+
#: src/admin.php:3251
|
5587 |
msgid "Creating file backup zips"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: src/admin.php:3246
|
5591 |
msgid "Backup begun"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: src/admin.php:1149
|
5595 |
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."
|
5596 |
msgstr ""
|
5597 |
|
5607 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: src/class-updraftplus.php:3055
|
5611 |
msgid "The backup has not finished; a resumption is scheduled"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: src/class-updraftplus.php:2076
|
5615 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
5616 |
msgstr ""
|
5617 |
|
5620 |
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)."
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: src/admin.php:2636
|
5624 |
msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
|
5625 |
msgstr ""
|
5626 |
|
5673 |
msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5677 |
msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: src/addons/morefiles.php:243, src/addons/morefiles.php:244
|
5681 |
msgid "This does not look like a valid WordPress core backup - the file %s was missing."
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: src/addons/morefiles.php:190
|
5685 |
msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
|
5686 |
msgstr ""
|
5687 |
|
5688 |
+
#: src/addons/morefiles.php:180
|
5689 |
msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
|
5690 |
msgstr ""
|
5691 |
|
5700 |
msgid "Support"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
+
#: src/class-updraftplus.php:4370
|
5704 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
5705 |
msgstr ""
|
5706 |
|
5707 |
+
#: src/class-updraftplus.php:4362
|
5708 |
msgid "This database backup is missing core WordPress tables: %s"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
+
#: src/class-updraftplus.php:4108
|
5712 |
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."
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: src/class-updraftplus.php:4107, sr
|