Version Description
27/Dec/2021 =
FIX: A bug that prevented a final resumption from attempting to split the zip to make progress
FIX: Handle LOCK TABLES statements produced by some mysqldump versions properly in case of atomic restores
SECURITY: Fix a non-persistent XSS error allowing an attacker to once run JavaScript in your web browser if you clicked on a link crafted personally for you whilst logged into your site (very similar to that fixed in 1.16.65/6)
TWEAK: Search and replace ABSPATH if it's changed, non-trivial and stored in the DB by a bad plugin/theme
TWEAK: Make whole label for "UpdraftPlus temporary clone user login settings" clickable
TWEAK: Change wording for an advanced tool for clarity
TWEAK: Include UD in user agent for S3 calls when using the AWS SDKs
TWEAK: Make sure WP_Error is passed up during specific plugin update failure case
Release Info
Developer | DavidAnderson |
Plugin | UpdraftPlus WordPress Backup Plugin |
Version | 1.16.67 |
Comparing to | |
See all releases |
Code changes from version 1.16.66 to 1.16.67
- admin.php +9 -5
- backup.php +1 -1
- central/modules/updates.php +6 -0
- class-updraftplus.php +3 -0
- css/{updraftplus-admin-1-16-66.min.css → updraftplus-admin-1-16-67.min.css} +1 -1
- css/{updraftplus-admin-1-16-66.min.css.map → updraftplus-admin-1-16-67.min.css.map} +1 -1
- css/{updraftplus-notices-1-16-66.min.css → updraftplus-notices-1-16-67.min.css} +1 -1
- css/{updraftplus-notices-1-16-66.min.css.map → updraftplus-notices-1-16-67.min.css.map} +1 -1
- css/{updraftplus-tour-1-16-66.min.css → updraftplus-tour-1-16-67.min.css} +1 -1
- css/{updraftplus-tour-1-16-66.min.css.map → updraftplus-tour-1-16-67.min.css.map} +1 -1
- includes/S3compat.php +3 -0
- includes/blockui/{jquery.blockUI-1-16-66.min.js → jquery.blockUI-1-16-67.min.js} +0 -0
- includes/checkout-embed/assets/{udp-checkout-embed-1-16-66.min.css → udp-checkout-embed-1-16-67.min.css} +1 -1
- includes/checkout-embed/assets/{udp-checkout-embed-1-16-66.min.css.map → udp-checkout-embed-1-16-67.min.css.map} +1 -1
- includes/checkout-embed/assets/{udp-checkout-embed-1-16-66.min.js → udp-checkout-embed-1-16-67.min.js} +0 -0
- includes/class-search-replace.php +1 -1
- includes/{jquery-ui.custom-v1.11.4-1-16-66.min.css → jquery-ui.custom-v1.11.4-1-16-67.min.css} +1 -1
- includes/{jquery-ui.custom-v1.11.4-1-16-66.min.css.map → jquery-ui.custom-v1.11.4-1-16-67.min.css.map} +1 -1
- includes/{jquery-ui.custom-v1.12.1-1-16-66.min.css → jquery-ui.custom-v1.12.1-1-16-67.min.css} +1 -1
- includes/{jquery-ui.custom-v1.12.1-1-16-66.min.css.map → jquery-ui.custom-v1.12.1-1-16-67.min.css.map} +1 -1
- includes/jquery-ui.dialog.extended/{jquery-ui.dialog.extended-1-16-66.min.js → jquery-ui.dialog.extended-1-16-67.min.js} +0 -0
- includes/labelauty/{jquery-labelauty-1-16-66.min.css → jquery-labelauty-1-16-67.min.css} +1 -1
- includes/labelauty/{jquery-labelauty-1-16-66.min.css.map → jquery-labelauty-1-16-67.min.css.map} +1 -1
- includes/labelauty/{jquery-labelauty-1-16-66.min.js → jquery-labelauty-1-16-67.min.js} +0 -0
- includes/{updraft-admin-common-1-16-66.min.js → updraft-admin-common-1-16-67.min.js} +0 -0
- includes/updraftclone/temporary-clone-user-notice.php +1 -1
- js/{tour-1-16-66.min.js → tour-1-16-67.min.js} +0 -0
- js/{updraft-admin-restore-1-16-66.min.js → updraft-admin-restore-1-16-67.min.js} +0 -0
- languages/updraftplus-af.po +574 -562
- languages/updraftplus-ar.po +574 -562
- languages/updraftplus-bg_BG.mo +0 -0
- languages/updraftplus-bg_BG.po +572 -560
@@ -4969,12 +4969,12 @@ ENDHERE;
|
|
4969 |
echo '<div class="updraft_restore_main">';
|
4970 |
|
4971 |
if ($debug) echo '<input type="hidden" id="updraftplus_ajax_restore_debug" name="updraftplus_ajax_restore_debug" value="1">';
|
4972 |
-
echo '<input type="hidden" id="updraftplus_ajax_restore_job_id" name="updraftplus_restore_job_id" value="' . $updraftplus->nonce . '">';
|
4973 |
-
echo '<input type="hidden" id="updraftplus_ajax_restore_action" name="updraftplus_restore_action" value="' . $ajax_action . '">';
|
4974 |
echo '<div id="updraftplus_ajax_restore_progress" style="display: none;"></div>';
|
4975 |
|
4976 |
echo '<div class="updraft_restore_main--components">';
|
4977 |
-
echo ' <p>'.sprintf(__('The restore operation has begun (%s). Do not close this page until it reports itself as having finished.', 'updraftplus'), $updraftplus->nonce).'</p>';
|
4978 |
echo ' <h2>'.__('Restoration progress:', 'updraftplus').'</h2>';
|
4979 |
echo ' <div class="updraft_restore_result"><span class="dashicons"></span><pan class="updraft_restore_result--text"></span></div>';
|
4980 |
echo ' <ul class="updraft_restore_components_list">';
|
@@ -4982,13 +4982,17 @@ ENDHERE;
|
|
4982 |
foreach ($restore_components as $restore_component) {
|
4983 |
// Set Database description
|
4984 |
if ('db' == $restore_component && !isset($backupable_entities[$restore_component]['description'])) $backupable_entities[$restore_component]['description'] = __('Database', 'updraftplus');
|
4985 |
-
|
|
|
|
|
|
|
|
|
4986 |
}
|
4987 |
echo ' <li data-component="cleaning"><span class="updraft_component--description">'.__('Cleaning', 'updraftplus').'</span><span class="updraft_component--progress"></span></li>';
|
4988 |
echo ' <li data-component="finished"><span class="updraft_component--description">'.__('Finished', 'updraftplus').'</span><span class="updraft_component--progress"></span></li>';
|
4989 |
echo ' </ul>'; // end ul.updraft_restore_components_list
|
4990 |
// Provide download link for the log file
|
4991 |
-
echo ' <p><a target="_blank" href="?action=downloadlog&page=updraftplus&updraftplus_backup_nonce='.
|
4992 |
echo '</div>'; // end .updraft_restore_main--components
|
4993 |
echo '<div class="updraft_restore_main--activity">';
|
4994 |
echo ' <h2 class="updraft_restore_main--activity-title">'.__('Activity log', 'updraftplus').' <i id="activity-full-log" title="'.__('Full-screen', 'updraftplus').'" class="dashicons dashicons-fullscreen-alt" style="float: right; cursor: pointer; margin-left: 7px;"></i> <span id="updraftplus_ajax_restore_last_activity"></span></h2>';
|
4969 |
echo '<div class="updraft_restore_main">';
|
4970 |
|
4971 |
if ($debug) echo '<input type="hidden" id="updraftplus_ajax_restore_debug" name="updraftplus_ajax_restore_debug" value="1">';
|
4972 |
+
echo '<input type="hidden" id="updraftplus_ajax_restore_job_id" name="updraftplus_restore_job_id" value="' . esc_attr($updraftplus->nonce) . '">';
|
4973 |
+
echo '<input type="hidden" id="updraftplus_ajax_restore_action" name="updraftplus_restore_action" value="' . esc_attr($ajax_action) . '">';
|
4974 |
echo '<div id="updraftplus_ajax_restore_progress" style="display: none;"></div>';
|
4975 |
|
4976 |
echo '<div class="updraft_restore_main--components">';
|
4977 |
+
echo ' <p>'.sprintf(__('The restore operation has begun (%s). Do not close this page until it reports itself as having finished.', 'updraftplus'), htmlspecialchars($updraftplus->nonce)).'</p>';
|
4978 |
echo ' <h2>'.__('Restoration progress:', 'updraftplus').'</h2>';
|
4979 |
echo ' <div class="updraft_restore_result"><span class="dashicons"></span><pan class="updraft_restore_result--text"></span></div>';
|
4980 |
echo ' <ul class="updraft_restore_components_list">';
|
4982 |
foreach ($restore_components as $restore_component) {
|
4983 |
// Set Database description
|
4984 |
if ('db' == $restore_component && !isset($backupable_entities[$restore_component]['description'])) $backupable_entities[$restore_component]['description'] = __('Database', 'updraftplus');
|
4985 |
+
if (!isset($backupable_entities[$restore_component])) {
|
4986 |
+
echo '<pre>'.$restore_component.':'.htmlspecialchars(print_r($backupable_entities, true)).'</pre>';
|
4987 |
+
die('Abort: invalid data');
|
4988 |
+
}
|
4989 |
+
echo ' <li data-component="'.esc_attr($restore_component).'"><span class="updraft_component--description">'.(isset($backupable_entities[$restore_component]['description']) ? htmlspecialchars($backupable_entities[$restore_component]['description']) : htmlspecialchars($restore_component)).'</span><span class="updraft_component--progress"></span></li>';
|
4990 |
}
|
4991 |
echo ' <li data-component="cleaning"><span class="updraft_component--description">'.__('Cleaning', 'updraftplus').'</span><span class="updraft_component--progress"></span></li>';
|
4992 |
echo ' <li data-component="finished"><span class="updraft_component--description">'.__('Finished', 'updraftplus').'</span><span class="updraft_component--progress"></span></li>';
|
4993 |
echo ' </ul>'; // end ul.updraft_restore_components_list
|
4994 |
// Provide download link for the log file
|
4995 |
+
echo ' <p><a target="_blank" href="?action=downloadlog&page=updraftplus&updraftplus_backup_nonce='.esc_attr($updraftplus->nonce).'">'.__('Follow this link to download the log file for this restoration (needed for any support requests).', 'updraftplus').'</a></p>';
|
4996 |
echo '</div>'; // end .updraft_restore_main--components
|
4997 |
echo '<div class="updraft_restore_main--activity">';
|
4998 |
echo ' <h2 class="updraft_restore_main--activity-title">'.__('Activity log', 'updraftplus').' <i id="activity-full-log" title="'.__('Full-screen', 'updraftplus').'" class="dashicons dashicons-fullscreen-alt" style="float: right; cursor: pointer; margin-left: 7px;"></i> <span id="updraftplus_ajax_restore_last_activity"></span></h2>';
|
@@ -1240,7 +1240,7 @@ class UpdraftPlus_Backup {
|
|
1240 |
|
1241 |
// 03-Sep-2015 - came across a case (HS#2052) where there apparently was a check-in 'last time', but no resumption was scheduled because the 'useful_checkin' jobdata was *not* last time - which must indicate dying at a very unfortunate/unlikely point in the code. As a result, the split was not auto-reduced. Consequently, we've added !$updraftplus->newresumption_scheduled as a condition on the first check here (it was already on the second), as if no resumption is scheduled then whatever checkin there was last time was only partial. This was on GoDaddy, for which a number of curious I/O event combinations have been seen in recent months - their platform appears to have some odd behaviour when PHP is killed off.
|
1242 |
// 04-Sep-2015 - move the '$updraftplus->current_resumption<=10' check to the inner loop (instead of applying to this whole section), as I see no reason for that restriction (case seen in HS#2064 where it was required on resumption 15)
|
1243 |
-
if ($updraftplus->no_checkin_last_time || !$updraftplus->newresumption_scheduled) {
|
1244 |
// Apr 2015: !$updraftplus->newresumption_scheduled added after seeing a log where there was no activity on resumption 9, and extra resumption 10 then tried the same operation.
|
1245 |
if ($updraftplus->current_resumption - $updraftplus->last_successful_resumption > 2 || !$updraftplus->newresumption_scheduled) {
|
1246 |
$this->try_split = true;
|
1240 |
|
1241 |
// 03-Sep-2015 - came across a case (HS#2052) where there apparently was a check-in 'last time', but no resumption was scheduled because the 'useful_checkin' jobdata was *not* last time - which must indicate dying at a very unfortunate/unlikely point in the code. As a result, the split was not auto-reduced. Consequently, we've added !$updraftplus->newresumption_scheduled as a condition on the first check here (it was already on the second), as if no resumption is scheduled then whatever checkin there was last time was only partial. This was on GoDaddy, for which a number of curious I/O event combinations have been seen in recent months - their platform appears to have some odd behaviour when PHP is killed off.
|
1242 |
// 04-Sep-2015 - move the '$updraftplus->current_resumption<=10' check to the inner loop (instead of applying to this whole section), as I see no reason for that restriction (case seen in HS#2064 where it was required on resumption 15)
|
1243 |
+
if ($updraftplus->no_checkin_last_time || !$updraftplus->newresumption_scheduled || $updraftplus->resumption_scheduled_for_cleanup) {
|
1244 |
// Apr 2015: !$updraftplus->newresumption_scheduled added after seeing a log where there was no activity on resumption 9, and extra resumption 10 then tried the same operation.
|
1245 |
if ($updraftplus->current_resumption - $updraftplus->last_successful_resumption > 2 || !$updraftplus->newresumption_scheduled) {
|
1246 |
$this->try_split = true;
|
@@ -184,6 +184,12 @@ class UpdraftCentral_Updates_Commands extends UpdraftCentral_Commands {
|
|
184 |
return $status;
|
185 |
}
|
186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
$plugin_data = get_plugins('/' . $result[$plugin]['destination_name']);
|
188 |
$plugin_data = reset($plugin_data);
|
189 |
|
184 |
return $status;
|
185 |
}
|
186 |
|
187 |
+
if (is_wp_error($result[$plugin])) {
|
188 |
+
$status['error'] = $result[$plugin]->get_error_code();
|
189 |
+
$status['error_message'] = $result[$plugin]->get_error_message();
|
190 |
+
return $status;
|
191 |
+
}
|
192 |
+
|
193 |
$plugin_data = get_plugins('/' . $result[$plugin]['destination_name']);
|
194 |
$plugin_data = reset($plugin_data);
|
195 |
|
@@ -56,6 +56,8 @@ class UpdraftPlus {
|
|
56 |
public $current_resumption;
|
57 |
|
58 |
public $newresumption_scheduled = false;
|
|
|
|
|
59 |
|
60 |
public $cpanel_quota_readable = false;
|
61 |
|
@@ -2396,6 +2398,7 @@ class UpdraftPlus {
|
|
2396 |
$schedule_for = time() + $resume_interval;
|
2397 |
if (1 === $schedule_resumption) {
|
2398 |
$this->log("Scheduling a resumption ($next_resumption) after $resume_interval seconds ($schedule_for); but the job will then be aborted unless something happens this time");
|
|
|
2399 |
} else {
|
2400 |
$this->log("Scheduling a resumption ($next_resumption) after $resume_interval seconds ($schedule_for) in case this run gets aborted");
|
2401 |
}
|
56 |
public $current_resumption;
|
57 |
|
58 |
public $newresumption_scheduled = false;
|
59 |
+
|
60 |
+
public $resumption_scheduled_for_cleanup = false;
|
61 |
|
62 |
public $cpanel_quota_readable = false;
|
63 |
|
2398 |
$schedule_for = time() + $resume_interval;
|
2399 |
if (1 === $schedule_resumption) {
|
2400 |
$this->log("Scheduling a resumption ($next_resumption) after $resume_interval seconds ($schedule_for); but the job will then be aborted unless something happens this time");
|
2401 |
+
$this->resumption_scheduled_for_cleanup = true;
|
2402 |
} else {
|
2403 |
$this->log("Scheduling a resumption ($next_resumption) after $resume_interval seconds ($schedule_for) in case this run gets aborted");
|
2404 |
}
|
@@ -1,2 +1,2 @@
|
|
1 |
@-webkit-keyframes udp_blink{from{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:.4;-webkit-transform:scale(0.85);transform:scale(0.85)}}@keyframes udp_blink{from{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:.4;-webkit-transform:scale(0.85);transform:scale(0.85)}}@-webkit-keyframes udp_rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes udp_rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.max-width-600{max-width:600px}.max-width-700{max-width:700px}.width-900{max-width:900px}.width-80{width:80%}.updraft--flex{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft--flex>*{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft--flex>.updraft--one-half{width:50%;-webkit-box-flex:1;-ms-flex:auto;flex:auto}.updraft--flex>.updraft--two-halves{width:100%;-webkit-box-flex:1;-ms-flex:auto;flex:auto}.updraft-color--very-light-grey{background:#f8f8f8}.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{-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);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;-webkit-transition:all .2s;transition:all .2s;vertical-align:baseline;-webkit-box-sizing:border-box;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:-webkit-box;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;-webkit-box-flex:1;-ms-flex:1;flex:1}.updraftclone_action_box p:first-child{margin-top:0}.updraftclone_action_box p:last-child{margin-bottom:0}.updraftclone_action_box #ud_downloadstatus3{margin-top:10px}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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.updraft_migrate_widget_temporary_clone_stage0_box{margin-right:20px;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.updraft_migrate_widget_temporary_clone_stage0_box iframe,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:none}@media(min-width:1024px){.updraft_migrate_widget_temporary_clone_stage0_container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-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,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:right}}.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons{text-decoration:none;font-size:20px}.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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content: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;-webkit-box-shadow:0 0 0 1px rgba(91,157,217,0.22),0 0 2px 1px rgba(30,140,190,0.3);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;-webkit-box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3);box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3)}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus{-webkit-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);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;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:1}button.ui-dialog-titlebar-close:before{content:none !important}.updraft_next_scheduled_backups_wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;background:#FFF;justify-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_next_scheduled_backups_wrapper>div{width:50%;background:#FFF;height:auto;padding:33px;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft_backup_btn_wrapper{text-align:center;border-left:1px solid #f1f1f1;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.incremental-backups-only{display:none}.incremental-free-only{display:none}.incremental-free-only p{padding:5px;background:rgba(255,0,0,0.06);border:1px solid #bfbfbf}#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;-webkit-box-shadow:none;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;-webkit-transition:.3s all;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,.existing-backups-table .backup_date_label span>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:inline-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}.updraft-fs-italic{font-style:italic}@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;-webkit-box-shadow:none;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-settings-content table.form-table .notice p{max-width:none}#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}label[for=updraft_servicecheckbox_updraftvault]{position:relative}#updraft-wrap .udp-info{position:absolute;right:10px;top:calc(50% - 10px)}#updraft-wrap span.info-trigger{display:inline-block;width:20px;height:20px;background:#FFF;color:#72777c;border-radius:30px;text-align:center;line-height:20px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.15);box-shadow:0 1px 3px rgba(0,0,0,0.15)}#updraft-wrap .info-content-wrapper{display:none;position:absolute;bottom:20px;-webkit-transform:translatex(calc(-50% + 10px));transform:translatex(calc(-50% + 10px));width:330px;padding-bottom:10px}#updraft-wrap .info-content-wrapper::before{content:'';position:absolute;bottom:-10px;border:10px solid transparent;border-top-color:#FFF;left:calc(50% - 10px)}#updraft-wrap .info-content{padding:20px;background:#FFF;border-radius:4px;-webkit-box-shadow:0 3px 10px rgba(0,0,0,0.1);box-shadow:0 3px 10px rgba(0,0,0,0.1);color:#72777c}#updraft-wrap .info-content h3{margin-top:0}#updraft-wrap .info-content p{margin-top:10px}#updraft-wrap .udp-info:hover .info-content-wrapper{display:block}div.conditional_remote_backup select.logic_type{vertical-align:inherit !important}div.conditional_remote_backup label.updraft_toggle_instance_label.radio_group{display:block;margin-top:7px}div.conditional_remote_backup div.logic ul.rules input.rule_value{vertical-align:middle}div.conditional_remote_backup p{margin-bottom:10px}div.conditional_remote_backup div.logic ul.rules span svg{width:20px;vertical-align:middle;cursor:pointer}div.conditional_remote_backup div.logic ul.rules span svg{margin-left:3px}div.conditional_remote_backup div.logic select.logic_type{vertical-align:unset}.updraft_jstree .jstree-container-ul>.jstree-node,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-node{background:transparent}.updraft_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}.updraft_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}.updraft_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,div[id^="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,#updraft_exclude_files_folders_wildcards_jstree{max-height:200px;overflow-y:scroll}.updraft_jstree{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}div[id^="updraft_more_files_container_"]{position:relative;display:none;width:100%;border:1px solid #CCC;background:#fafafa;margin-bottom:5px;margin-top:4px;-webkit-box-shadow:0 5px 8px rgba(0,0,0,0.1);box-shadow:0 5px 8px rgba(0,0,0,0.1)}div[id^="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;-webkit-transform:translatey(-7px) rotate(45deg);transform:translatey(-7px) rotate(45deg)}input.updraft_more_path_editing{border-color:#0285ba}input.updraft_more_path_editing ~ a.dashicons{display:none}div[id^="updraft_jstree_buttons_"]{padding:10px;background:#e6e6e6}div[id^="updraft_jstree_container_"]{height:300px;width:100%;overflow:auto}div[id^="updraft_more_files_container_"] button{line-height:20px}button[id^="updraft_parent_directory_"]{margin:10px 10px 4px 10px;padding-left:3px}button[id^="updraft_jstree_confirm_"],button[id^="updraft_jstree_cancel_"]{display:none}input[id^="updraft_include_more_path_restore_"]{text-align:right}.updraftplus-morefiles-row-delete,.updraftplus-morefiles-row-edit{cursor:pointer}#updraft_include_more_paths_error{color:#de3c3c}p[id^="updraftplus_manual_authentication_error_"]{color:#de3c3c}#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;-webkit-box-shadow:0 1px 0 #c10100;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;-webkit-box-shadow:0 1px 0 #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{-webkit-box-shadow:inherit;box-shadow:inherit;-webkit-box-shadow:0 0 3px rgba(0,115,170,0.8);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,#ud_downloadstatus3 .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__action{position:relative;text-align:center}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase;margin-bottom:7px}.updraft_premium_cta a.button.button-primary.button-hero+small{display:block;max-width:100%;text-align:center;color:#afafaf}.updraft_premium_cta a.button.button-primary.button-hero+small .dashicons{width:12px;height:12px}.updraft_premium_cta__top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;text-align:center;-webkit-box-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;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1);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;align-self:center;background:0;-webkit-box-shadow:none;box-shadow:none}.updraft-more-plugins{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-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{-webkit-box-sizing:border-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;background:#FFF;border-left:4px solid #FFF;border-left-color:#dc3232;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraftplus_com_login_status.success{border-left-color:green}#updraft-wrap strong.success{color:green}.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,#ud_downloadstatus3 .dlfileprogress{width:0;background:#0572aa;height:8px;-webkit-transition:width .3s;transition:width .3s}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw,#ud_downloadstatus3 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file,#ud_downloadstatus3 .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;-webkit-transform:translatey(3px);transform:translatey(3px)}.updraft_saving_popup img{-webkit-animation-name:udp_blink;animation-name:udp_blink;-webkit-animation-duration:610ms;animation-duration:610ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-direction:alternate;-webkit-animation-timing-function:ease-out;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}.updated.backup-restored{padding-top:15px;padding-bottom:15px}.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}section.premium-upgrade-purchase-success{padding:2em;background:#fafafa;text-align:center;-webkit-box-shadow:0 14px 40px rgba(0,0,0,0.1);box-shadow:0 14px 40px rgba(0,0,0,0.1)}section.premium-upgrade-purchase-success h3{font-size:2em;color:green}section.premium-upgrade-purchase-success h3 .dashicons{display:block;margin:0 auto;font-size:60px;width:60px;height:60px;border-radius:50%;background:green;color:#FFF;margin-bottom:20px}section.premium-upgrade-purchase-success h3 .dashicons::before{display:inline-block;margin-left:-4px;margin-top:2px}section.premium-upgrade-purchase-success p{font-size:120%}.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,#backupnow_includecloud_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}#backupnow_database_moreoptions div.backupnow-db-tables{margin-bottom:5px}#backupnow_database_moreoptions div.backupnow-db-tables>a{color:#0073aa}.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}div.ui-dialog.ui-widget.ui-widget-content{z-index:99999 !important}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}.notice.updraft-restore-option{padding:12px;margin:8px 0 4px 0;border-left-color:#CCC}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraftplus_restore_tables_options_container{max-height:250px;overflow:auto}.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;-webkit-transition:width .3s;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{padding:10px 40px;text-align:center;font-style:italic}.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{-webkit-box-sizing:border-box;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}#updraft-wrap .dashicons.dashicons-adapt-size{line-height:inherit;font-size:inherit}#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size){vertical-align:middle;margin-top:-3px}.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}.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-container{text-align:center}.updraftplusmethod.updraftvault .vault-purchase-option{width:40%;text-align:center;padding-top:20px;display:inline-block}.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;width:auto}.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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-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%;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1);box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup div#updraft_activejobsrow{background:#fafafa;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1);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}body.update-core-php #updraft_inpage_backup h2:nth-child(1){margin-top:1em !important}.updraft_restore_container{display:block;position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999;padding-top:30px;background:#f1f1f1;overflow:auto}.updraft-modal-is-opened .select2-container{z-index:99999}body.updraft-modal-is-opened{overflow:hidden}.updraft_restore_container h2{margin:0}.updraft_restore_container .updraftmessage{-webkit-box-sizing:border-box;box-sizing:border-box;max-width:860px;margin-left:auto;margin-right:auto}.updraft_restore_main{max-width:860px;margin:0 auto;margin-top:20px;background:#FFF;-webkit-box-shadow:0 3px 3px rgba(0,0,0,0.1);box-shadow:0 3px 3px rgba(0,0,0,0.1);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft_restore_main--header{font-size:20px;font-weight:bold;text-align:center;padding-top:16px;line-height:20px;width:100%;max-width:100%;padding-right:30px;padding-left:30px;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft_restore_main--activity{position:relative;width:calc(100% - 350px);-webkit-box-sizing:border-box;box-sizing:border-box}.updraft_restore_main--activity-title{padding:20px;margin:0}.show-credentials-form.updraft_restore_main .updraft_restore_main--activity-title{display:none}.updraft_restore_main--components{width:350px;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#f8f8f8;min-height:350px}.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output{background:#23282d;color:#e3e3e3;font-family:monospace;padding:19px;overflow:auto;position:absolute;top:60px;bottom:0;right:0;left:0}#updraftplus_ajax_restore_output form{white-space:normal;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif}#updraftplus_ajax_restore_output .updraft_restore_errors{border:1px solid #dc3232;padding:10px 20px;white-space:normal}.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output h2{color:#00a0d2;padding-top:10px;padding-bottom:5px}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output{padding:20px;border-left:1px solid #EEE}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output #message{margin-left:0;margin-right:0}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table td,.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table th{padding-bottom:0}.updraft_restore_main.show-credentials-form .updraft_restore_main--components{opacity:.2}.updraft_restore_main.show-credentials-form div.error .restore-credential-errors--list p{margin:0;list-style-type:disc;display:list-item;list-style-position:inside}.restore-credential-errors>:first-child{margin-top:0}.restore-credential-errors>:last-child{margin-bottom:0}ul.updraft_restore_components_list li{color:#bababa;font-size:1.2em;margin-bottom:1em}ul.updraft_restore_components_list li::before{content:'\f469';font-family:dashicons;font-size:20px;vertical-align:middle;display:inline-block;margin-right:7px}ul.updraft_restore_components_list li span{vertical-align:middle}ul.updraft_restore_components_list li.done{color:green}ul.updraft_restore_components_list li.done::before{content:"\f147"}ul.updraft_restore_components_list li.active{color:inherit}ul.updraft_restore_components_list li.active::before{content:"\f463";-webkit-animation:udp_rotate 1s linear infinite;animation:udp_rotate 1s linear infinite}ul.updraft_restore_components_list li.error{color:#dc3232}ul.updraft_restore_components_list li.error::before{content:"\f335"}.updraft_restore_result{padding:10px 0;font-size:1.3em;margin-bottom:1em;vertical-align:middle;display:none}.updraft_restore_result.restore-error{color:#dc3232}.updraft_restore_result.restore-success{color:green}.updraft_restore_result .dashicons{font-size:35px;height:35px;line-height:33px;width:35px}.updraft_restore_result span{vertical-align:middle}#updraft-restore-modal{width:100%}div#updraft-restore-modal .notice{background:#f8f8f8}.updraft-restore-modal--stage .updraft--two-halves,.updraft-restore-modal--stage .updraft--one-half{padding:20px 30px}.updraft-restore-modal--header{padding:20px;padding-bottom:0;text-align:center;border-bottom:1px solid #EEE}.updraft-restore-modal--header h3{margin:0;padding:0}.updraft-restore-item{padding-bottom:4px}.updraft-restore-buttons{padding-top:10px}ul.updraft-restore--stages{display:inline-block;margin:0;height:28px}ul.updraft-restore--stages li{display:inline-block;position:relative;width:12px;height:12px;background:#d2d2d2;border-radius:20px;line-height:1;margin:0 4px;vertical-align:middle}ul.updraft-restore--stages li.active{background:#444}.updraft-restore--footer{border-top:1px solid #EEE;padding:20px;text-align:center;position:sticky;bottom:0;background:#FFF;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft-restore--footer .updraft-restore--cancel{position:absolute;left:20px;top:auto}.updraft-restore--footer .updraft-restore--next-step{position:absolute;right:20px;top:auto}ul.updraft-restore--stages li span{position:absolute;width:120px;bottom:calc(100% + 14px);left:-55px;background:rgba(0,0,0,0.85882);padding:5px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;color:#FFF;text-align:center;display:none}ul.updraft-restore--stages li:hover span{display:inline-block}.updraft-restore-item input[type=checkbox]{margin-bottom:-5px}.updraft-restore-item input[type=checkbox]:checked+label{font-weight:bold}div#updraft-restore-modal .ud_downloadstatus__close{display:none}#ud_downloadstatus2:not(:empty){margin-top:15px}.dashicons.rotate{-webkit-animation:udp_rotate 1s linear infinite;animation:udp_rotate 1s linear infinite}span#updraftplus_ajax_restore_last_activity{font-size:.8rem;font-weight:normal;float:right}.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice{margin:-20px -20px 20px;padding:19px}.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice button{margin-right:5px}#updraft_migrate_receivingsites .updraftplus-remote-sites-selector .button-primary,.updraft_migrate_add_site .input-field input,.updraft_migrate_add_site button{vertical-align:middle}#updraft_migrate_receivingsites .text-link-menu a:not(:last-child){padding-right:10px}#updraft_migrate_receivingsites a.updraft_migrate_clear_sites span.dashicons-trash:before{font-size:17px}#updraft_migrate_receivingsites .updraft_migrate_add_site{clear:both}.rtl .advanced_tools.total_size table td{direction:ltr;text-align:right}.rtl #plupload-upload-ui2.drag-drop #drag-drop-area2{margin-bottom:20px}.rtl #updraft_lastlogmessagerow .updraft-log-link{float:left}.rtl label.updraft_checkbox>input[type=checkbox]{margin-right:-25px;margin-left:inherit}.rtl .ud_downloadstatus__close{float:left !important}.rtl #updraft_backupextradbs_another_container{float:right}.rtl input.labelauty+label{direction:ltr;position:relative;min-height:29px}.rtl input.labelauty+label>span.labelauty-checked-image,.rtl input.labelauty+label>span.labelauty-unchecked-image{right:8px;top:11px;position:absolute}.rtl .button.updraft-close-overlay .dashicons{margin-right:-5px;margin-left:inherit}.rtl label.updraft_checkbox{margin-right:26px;margin-left:inherit}.rtl #updraft-wrap .udp-info{left:10px;right:inherit}.rtl input.labelauty+label>span.labelauty-unchecked-image+span.labelauty-unchecked,.rtl input.labelauty+label>span.labelauty-checked-image+span.labelauty-checked{margin-right:7px;margin-left:inherit;padding:7px 7px 7px 26px;width:141px;text-align:right}.rtl #updraft_report_cell button.updraft_reportbox_delete,.rtl .updraft_box_delete_button,.rtl .updraft_small_box .updraft_box_delete_button{left:4px;right:inherit}#updraft_exclude_modal .clause-input-container{overflow:auto}#updraft_exclude_modal .clause-input-container select,#updraft_exclude_modal .clause-input-container input{float:left}#updraft_exclude_modal .clause-input-container .wildcards-input{margin:7px 7px 0 0}#updraft_exclude_modal .updraft-exclude-panel .contain-clause-sub-label{margin-top:10px;display:block}@media only screen and (min-width:1024px){#updraft_activejobsrow .updraft_row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}#updraft_activejobsrow .updraft_row .updraft_col{-webkit-box-flex:1;-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;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.2);box-shadow:0 0 10px rgba(0,0,0,0.2)}.rtl #ud_massactions.active,.rtl #updraft-delete-waitwarning.active{left:0;right:160px}body.folded #ud_massactions.active,body.folded #updraft-delete-waitwarning.active{left:36px}.updraft-after-form-table{margin-left:250px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.range-selection:not(.backuprowselected) .updraft_existingbackup_date .backup_date_label{color:#FFF}}@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%;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center}#ud_massactions.active{position:fixed;top:auto;bottom:0;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;-webkit-box-shadow:0 -3px 15px rgba(0,0,0,0.08);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,.existing-backups-table .backup_date_label span>div{font-weight:normal}.existing-backups-table .backup_date_label .clear-right{display:inline-block}table.widefat.existing-backups-table{border:0;-webkit-box-shadow:none;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;-webkit-box-shadow:0 2px 3px rgba(0,0,0,0.1);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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-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;-webkit-box-sizing:border-box;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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-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}.updraft--flex{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.updraft_restore_main{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.updraft_restore_main--components{width:100%;min-height:0}.updraft_restore_main--activity{width:100%}div#updraftplus_ajax_restore_output,.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output{position:relative;top:0;bottom:auto}.updraft--flex>.updraft--two-halves,.updraft--flex>.updraft--one-half{width:100%}.updraft-restore-item{padding-bottom:10px;padding-top: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.range-selection:hover,.existing-backups-table tbody tr.range-selection{background:#0572aa}.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:-webkit-box;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%;-webkit-box-sizing:border-box;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-1-16-
|
1 |
@-webkit-keyframes udp_blink{from{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:.4;-webkit-transform:scale(0.85);transform:scale(0.85)}}@keyframes udp_blink{from{opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{opacity:.4;-webkit-transform:scale(0.85);transform:scale(0.85)}}@-webkit-keyframes udp_rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes udp_rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.max-width-600{max-width:600px}.max-width-700{max-width:700px}.width-900{max-width:900px}.width-80{width:80%}.updraft--flex{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft--flex>*{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft--flex>.updraft--one-half{width:50%;-webkit-box-flex:1;-ms-flex:auto;flex:auto}.updraft--flex>.updraft--two-halves{width:100%;-webkit-box-flex:1;-ms-flex:auto;flex:auto}.updraft-color--very-light-grey{background:#f8f8f8}.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{-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);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;-webkit-transition:all .2s;transition:all .2s;vertical-align:baseline;-webkit-box-sizing:border-box;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:-webkit-box;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;-webkit-box-flex:1;-ms-flex:1;flex:1}.updraftclone_action_box p:first-child{margin-top:0}.updraftclone_action_box p:last-child{margin-bottom:0}.updraftclone_action_box #ud_downloadstatus3{margin-top:10px}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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.updraft_migrate_widget_temporary_clone_stage0_box{margin-right:20px;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.updraft_migrate_widget_temporary_clone_stage0_box iframe,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:none}@media(min-width:1024px){.updraft_migrate_widget_temporary_clone_stage0_container{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-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,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:right}}.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons{text-decoration:none;font-size:20px}.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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content: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;-webkit-box-shadow:0 0 0 1px rgba(91,157,217,0.22),0 0 2px 1px rgba(30,140,190,0.3);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;-webkit-box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3);box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3)}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus{-webkit-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);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;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:1}button.ui-dialog-titlebar-close:before{content:none !important}.updraft_next_scheduled_backups_wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;background:#FFF;justify-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_next_scheduled_backups_wrapper>div{width:50%;background:#FFF;height:auto;padding:33px;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft_backup_btn_wrapper{text-align:center;border-left:1px solid #f1f1f1;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.incremental-backups-only{display:none}.incremental-free-only{display:none}.incremental-free-only p{padding:5px;background:rgba(255,0,0,0.06);border:1px solid #bfbfbf}#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;-webkit-box-shadow:none;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;-webkit-transition:.3s all;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,.existing-backups-table .backup_date_label span>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:inline-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}.updraft-fs-italic{font-style:italic}@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;-webkit-box-shadow:none;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-settings-content table.form-table .notice p{max-width:none}#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}label[for=updraft_servicecheckbox_updraftvault]{position:relative}#updraft-wrap .udp-info{position:absolute;right:10px;top:calc(50% - 10px)}#updraft-wrap span.info-trigger{display:inline-block;width:20px;height:20px;background:#FFF;color:#72777c;border-radius:30px;text-align:center;line-height:20px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.15);box-shadow:0 1px 3px rgba(0,0,0,0.15)}#updraft-wrap .info-content-wrapper{display:none;position:absolute;bottom:20px;-webkit-transform:translatex(calc(-50% + 10px));transform:translatex(calc(-50% + 10px));width:330px;padding-bottom:10px}#updraft-wrap .info-content-wrapper::before{content:'';position:absolute;bottom:-10px;border:10px solid transparent;border-top-color:#FFF;left:calc(50% - 10px)}#updraft-wrap .info-content{padding:20px;background:#FFF;border-radius:4px;-webkit-box-shadow:0 3px 10px rgba(0,0,0,0.1);box-shadow:0 3px 10px rgba(0,0,0,0.1);color:#72777c}#updraft-wrap .info-content h3{margin-top:0}#updraft-wrap .info-content p{margin-top:10px}#updraft-wrap .udp-info:hover .info-content-wrapper{display:block}div.conditional_remote_backup select.logic_type{vertical-align:inherit !important}div.conditional_remote_backup label.updraft_toggle_instance_label.radio_group{display:block;margin-top:7px}div.conditional_remote_backup div.logic ul.rules input.rule_value{vertical-align:middle}div.conditional_remote_backup p{margin-bottom:10px}div.conditional_remote_backup div.logic ul.rules span svg{width:20px;vertical-align:middle;cursor:pointer}div.conditional_remote_backup div.logic ul.rules span svg{margin-left:3px}div.conditional_remote_backup div.logic select.logic_type{vertical-align:unset}.updraft_jstree .jstree-container-ul>.jstree-node,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-node{background:transparent}.updraft_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}.updraft_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}.updraft_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,div[id^="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,#updraft_exclude_files_folders_wildcards_jstree{max-height:200px;overflow-y:scroll}.updraft_jstree{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}div[id^="updraft_more_files_container_"]{position:relative;display:none;width:100%;border:1px solid #CCC;background:#fafafa;margin-bottom:5px;margin-top:4px;-webkit-box-shadow:0 5px 8px rgba(0,0,0,0.1);box-shadow:0 5px 8px rgba(0,0,0,0.1)}div[id^="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;-webkit-transform:translatey(-7px) rotate(45deg);transform:translatey(-7px) rotate(45deg)}input.updraft_more_path_editing{border-color:#0285ba}input.updraft_more_path_editing ~ a.dashicons{display:none}div[id^="updraft_jstree_buttons_"]{padding:10px;background:#e6e6e6}div[id^="updraft_jstree_container_"]{height:300px;width:100%;overflow:auto}div[id^="updraft_more_files_container_"] button{line-height:20px}button[id^="updraft_parent_directory_"]{margin:10px 10px 4px 10px;padding-left:3px}button[id^="updraft_jstree_confirm_"],button[id^="updraft_jstree_cancel_"]{display:none}input[id^="updraft_include_more_path_restore_"]{text-align:right}.updraftplus-morefiles-row-delete,.updraftplus-morefiles-row-edit{cursor:pointer}#updraft_include_more_paths_error{color:#de3c3c}p[id^="updraftplus_manual_authentication_error_"]{color:#de3c3c}#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;-webkit-box-shadow:0 1px 0 #c10100;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;-webkit-box-shadow:0 1px 0 #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{-webkit-box-shadow:inherit;box-shadow:inherit;-webkit-box-shadow:0 0 3px rgba(0,115,170,0.8);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,#ud_downloadstatus3 .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__action{position:relative;text-align:center}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase;margin-bottom:7px}.updraft_premium_cta a.button.button-primary.button-hero+small{display:block;max-width:100%;text-align:center;color:#afafaf}.updraft_premium_cta a.button.button-primary.button-hero+small .dashicons{width:12px;height:12px}.updraft_premium_cta__top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;text-align:center;-webkit-box-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;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1);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;align-self:center;background:0;-webkit-box-shadow:none;box-shadow:none}.updraft-more-plugins{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-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{-webkit-box-sizing:border-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;background:#FFF;border-left:4px solid #FFF;border-left-color:#dc3232;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraftplus_com_login_status.success{border-left-color:green}#updraft-wrap strong.success{color:green}.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,#ud_downloadstatus3 .dlfileprogress{width:0;background:#0572aa;height:8px;-webkit-transition:width .3s;transition:width .3s}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw,#ud_downloadstatus3 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file,#ud_downloadstatus3 .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;-webkit-transform:translatey(3px);transform:translatey(3px)}.updraft_saving_popup img{-webkit-animation-name:udp_blink;animation-name:udp_blink;-webkit-animation-duration:610ms;animation-duration:610ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-direction:alternate;-webkit-animation-timing-function:ease-out;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}.updated.backup-restored{padding-top:15px;padding-bottom:15px}.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}section.premium-upgrade-purchase-success{padding:2em;background:#fafafa;text-align:center;-webkit-box-shadow:0 14px 40px rgba(0,0,0,0.1);box-shadow:0 14px 40px rgba(0,0,0,0.1)}section.premium-upgrade-purchase-success h3{font-size:2em;color:green}section.premium-upgrade-purchase-success h3 .dashicons{display:block;margin:0 auto;font-size:60px;width:60px;height:60px;border-radius:50%;background:green;color:#FFF;margin-bottom:20px}section.premium-upgrade-purchase-success h3 .dashicons::before{display:inline-block;margin-left:-4px;margin-top:2px}section.premium-upgrade-purchase-success p{font-size:120%}.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,#backupnow_includecloud_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}#backupnow_database_moreoptions div.backupnow-db-tables{margin-bottom:5px}#backupnow_database_moreoptions div.backupnow-db-tables>a{color:#0073aa}.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}div.ui-dialog.ui-widget.ui-widget-content{z-index:99999 !important}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}.notice.updraft-restore-option{padding:12px;margin:8px 0 4px 0;border-left-color:#CCC}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraftplus_restore_tables_options_container{max-height:250px;overflow:auto}.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;-webkit-transition:width .3s;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{padding:10px 40px;text-align:center;font-style:italic}.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{-webkit-box-sizing:border-box;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}#updraft-wrap .dashicons.dashicons-adapt-size{line-height:inherit;font-size:inherit}#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size){vertical-align:middle;margin-top:-3px}.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}.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-container{text-align:center}.updraftplusmethod.updraftvault .vault-purchase-option{width:40%;text-align:center;padding-top:20px;display:inline-block}.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;width:auto}.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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-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%;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1);box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup div#updraft_activejobsrow{background:#fafafa;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1);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}body.update-core-php #updraft_inpage_backup h2:nth-child(1){margin-top:1em !important}.updraft_restore_container{display:block;position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999;padding-top:30px;background:#f1f1f1;overflow:auto}.updraft-modal-is-opened .select2-container{z-index:99999}body.updraft-modal-is-opened{overflow:hidden}.updraft_restore_container h2{margin:0}.updraft_restore_container .updraftmessage{-webkit-box-sizing:border-box;box-sizing:border-box;max-width:860px;margin-left:auto;margin-right:auto}.updraft_restore_main{max-width:860px;margin:0 auto;margin-top:20px;background:#FFF;-webkit-box-shadow:0 3px 3px rgba(0,0,0,0.1);box-shadow:0 3px 3px rgba(0,0,0,0.1);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft_restore_main--header{font-size:20px;font-weight:bold;text-align:center;padding-top:16px;line-height:20px;width:100%;max-width:100%;padding-right:30px;padding-left:30px;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft_restore_main--activity{position:relative;width:calc(100% - 350px);-webkit-box-sizing:border-box;box-sizing:border-box}.updraft_restore_main--activity-title{padding:20px;margin:0}.show-credentials-form.updraft_restore_main .updraft_restore_main--activity-title{display:none}.updraft_restore_main--components{width:350px;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#f8f8f8;min-height:350px}.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output{background:#23282d;color:#e3e3e3;font-family:monospace;padding:19px;overflow:auto;position:absolute;top:60px;bottom:0;right:0;left:0}#updraftplus_ajax_restore_output form{white-space:normal;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif}#updraftplus_ajax_restore_output .updraft_restore_errors{border:1px solid #dc3232;padding:10px 20px;white-space:normal}.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output h2{color:#00a0d2;padding-top:10px;padding-bottom:5px}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output{padding:20px;border-left:1px solid #EEE}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output #message{margin-left:0;margin-right:0}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table td,.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table th{padding-bottom:0}.updraft_restore_main.show-credentials-form .updraft_restore_main--components{opacity:.2}.updraft_restore_main.show-credentials-form div.error .restore-credential-errors--list p{margin:0;list-style-type:disc;display:list-item;list-style-position:inside}.restore-credential-errors>:first-child{margin-top:0}.restore-credential-errors>:last-child{margin-bottom:0}ul.updraft_restore_components_list li{color:#bababa;font-size:1.2em;margin-bottom:1em}ul.updraft_restore_components_list li::before{content:'\f469';font-family:dashicons;font-size:20px;vertical-align:middle;display:inline-block;margin-right:7px}ul.updraft_restore_components_list li span{vertical-align:middle}ul.updraft_restore_components_list li.done{color:green}ul.updraft_restore_components_list li.done::before{content:"\f147"}ul.updraft_restore_components_list li.active{color:inherit}ul.updraft_restore_components_list li.active::before{content:"\f463";-webkit-animation:udp_rotate 1s linear infinite;animation:udp_rotate 1s linear infinite}ul.updraft_restore_components_list li.error{color:#dc3232}ul.updraft_restore_components_list li.error::before{content:"\f335"}.updraft_restore_result{padding:10px 0;font-size:1.3em;margin-bottom:1em;vertical-align:middle;display:none}.updraft_restore_result.restore-error{color:#dc3232}.updraft_restore_result.restore-success{color:green}.updraft_restore_result .dashicons{font-size:35px;height:35px;line-height:33px;width:35px}.updraft_restore_result span{vertical-align:middle}#updraft-restore-modal{width:100%}div#updraft-restore-modal .notice{background:#f8f8f8}.updraft-restore-modal--stage .updraft--two-halves,.updraft-restore-modal--stage .updraft--one-half{padding:20px 30px}.updraft-restore-modal--header{padding:20px;padding-bottom:0;text-align:center;border-bottom:1px solid #EEE}.updraft-restore-modal--header h3{margin:0;padding:0}.updraft-restore-item{padding-bottom:4px}.updraft-restore-buttons{padding-top:10px}ul.updraft-restore--stages{display:inline-block;margin:0;height:28px}ul.updraft-restore--stages li{display:inline-block;position:relative;width:12px;height:12px;background:#d2d2d2;border-radius:20px;line-height:1;margin:0 4px;vertical-align:middle}ul.updraft-restore--stages li.active{background:#444}.updraft-restore--footer{border-top:1px solid #EEE;padding:20px;text-align:center;position:sticky;bottom:0;background:#FFF;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.updraft-restore--footer .updraft-restore--cancel{position:absolute;left:20px;top:auto}.updraft-restore--footer .updraft-restore--next-step{position:absolute;right:20px;top:auto}ul.updraft-restore--stages li span{position:absolute;width:120px;bottom:calc(100% + 14px);left:-55px;background:rgba(0,0,0,0.85882);padding:5px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;color:#FFF;text-align:center;display:none}ul.updraft-restore--stages li:hover span{display:inline-block}.updraft-restore-item input[type=checkbox]{margin-bottom:-5px}.updraft-restore-item input[type=checkbox]:checked+label{font-weight:bold}div#updraft-restore-modal .ud_downloadstatus__close{display:none}#ud_downloadstatus2:not(:empty){margin-top:15px}.dashicons.rotate{-webkit-animation:udp_rotate 1s linear infinite;animation:udp_rotate 1s linear infinite}span#updraftplus_ajax_restore_last_activity{font-size:.8rem;font-weight:normal;float:right}.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice{margin:-20px -20px 20px;padding:19px}.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice button{margin-right:5px}#updraft_migrate_receivingsites .updraftplus-remote-sites-selector .button-primary,.updraft_migrate_add_site .input-field input,.updraft_migrate_add_site button{vertical-align:middle}#updraft_migrate_receivingsites .text-link-menu a:not(:last-child){padding-right:10px}#updraft_migrate_receivingsites a.updraft_migrate_clear_sites span.dashicons-trash:before{font-size:17px}#updraft_migrate_receivingsites .updraft_migrate_add_site{clear:both}.rtl .advanced_tools.total_size table td{direction:ltr;text-align:right}.rtl #plupload-upload-ui2.drag-drop #drag-drop-area2{margin-bottom:20px}.rtl #updraft_lastlogmessagerow .updraft-log-link{float:left}.rtl label.updraft_checkbox>input[type=checkbox]{margin-right:-25px;margin-left:inherit}.rtl .ud_downloadstatus__close{float:left !important}.rtl #updraft_backupextradbs_another_container{float:right}.rtl input.labelauty+label{direction:ltr;position:relative;min-height:29px}.rtl input.labelauty+label>span.labelauty-checked-image,.rtl input.labelauty+label>span.labelauty-unchecked-image{right:8px;top:11px;position:absolute}.rtl .button.updraft-close-overlay .dashicons{margin-right:-5px;margin-left:inherit}.rtl label.updraft_checkbox{margin-right:26px;margin-left:inherit}.rtl #updraft-wrap .udp-info{left:10px;right:inherit}.rtl input.labelauty+label>span.labelauty-unchecked-image+span.labelauty-unchecked,.rtl input.labelauty+label>span.labelauty-checked-image+span.labelauty-checked{margin-right:7px;margin-left:inherit;padding:7px 7px 7px 26px;width:141px;text-align:right}.rtl #updraft_report_cell button.updraft_reportbox_delete,.rtl .updraft_box_delete_button,.rtl .updraft_small_box .updraft_box_delete_button{left:4px;right:inherit}#updraft_exclude_modal .clause-input-container{overflow:auto}#updraft_exclude_modal .clause-input-container select,#updraft_exclude_modal .clause-input-container input{float:left}#updraft_exclude_modal .clause-input-container .wildcards-input{margin:7px 7px 0 0}#updraft_exclude_modal .updraft-exclude-panel .contain-clause-sub-label{margin-top:10px;display:block}@media only screen and (min-width:1024px){#updraft_activejobsrow .updraft_row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}#updraft_activejobsrow .updraft_row .updraft_col{-webkit-box-flex:1;-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;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.2);box-shadow:0 0 10px rgba(0,0,0,0.2)}.rtl #ud_massactions.active,.rtl #updraft-delete-waitwarning.active{left:0;right:160px}body.folded #ud_massactions.active,body.folded #updraft-delete-waitwarning.active{left:36px}.updraft-after-form-table{margin-left:250px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.range-selection:not(.backuprowselected) .updraft_existingbackup_date .backup_date_label{color:#FFF}}@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%;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center}#ud_massactions.active{position:fixed;top:auto;bottom:0;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;-webkit-box-shadow:0 -3px 15px rgba(0,0,0,0.08);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,.existing-backups-table .backup_date_label span>div{font-weight:normal}.existing-backups-table .backup_date_label .clear-right{display:inline-block}table.widefat.existing-backups-table{border:0;-webkit-box-shadow:none;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;-webkit-box-shadow:0 2px 3px rgba(0,0,0,0.1);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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-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;-webkit-box-sizing:border-box;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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-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}.updraft--flex{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.updraft_restore_main{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.updraft_restore_main--components{width:100%;min-height:0}.updraft_restore_main--activity{width:100%}div#updraftplus_ajax_restore_output,.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output{position:relative;top:0;bottom:auto}.updraft--flex>.updraft--two-halves,.updraft--flex>.updraft--one-half{width:100%}.updraft-restore-item{padding-bottom:10px;padding-top: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.range-selection:hover,.existing-backups-table tbody tr.range-selection{background:#0572aa}.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:-webkit-box;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%;-webkit-box-sizing:border-box;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-1-16-67.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["css/updraftplus-admin.css"],"names":[],"mappings":"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AED","file":"updraftplus-admin-1-16-66.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@keyframes udp_rotate {\n\n\tfrom {\n\t\ttransform: rotate(0);\n\t}\n\n\tto {\n\t\ttransform: rotate(360deg);\n\t}\n\n}\n\n/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.max-width-700 {\n\tmax-width: 700px;\n}\n\n.width-900 {\n\tmax-width: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n.updraft--flex {\n\tdisplay: flex;\n\tflex-wrap: wrap;\n}\n\n.updraft--flex > * {\n\tflex: 1;\n\tbox-sizing: border-box;\n}\n\n.updraft--flex > .updraft--one-half {\n\twidth: 50%;\n\tflex: auto;\n}\n\n.updraft--flex > .updraft--two-halves {\n\twidth: 100%;\n\tflex: auto;\n}\n\n.updraft-color--very-light-grey {\n\tbackground: #F8F8F8;\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\n.updraftclone_action_box #ud_downloadstatus3 {\n\tmargin-top: 10px;\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\twidth: 100%;\n\tflex-basis: 100%;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box iframe,\n.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\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.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\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}\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\nbutton.ui-dialog-titlebar-close:before {\n\tcontent: none!important;\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\tjustify-content: center;\n\talign-items: center;\n}\n\n.incremental-backups-only {\n\tdisplay: none;\n}\n\n.incremental-free-only {\n\tdisplay: none;\n}\n\n.incremental-free-only p {\n\tpadding: 5px;\n\tbackground: rgba(255, 0, 0, 0.06);\n\tborder: 1px solid #BFBFBF;\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, .existing-backups-table .backup_date_label span > 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: inline-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.updraft-fs-italic {\n\tfont-style: italic;\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-settings-content table.form-table .notice p {\n\tmax-width: none;\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\nlabel[for=updraft_servicecheckbox_updraftvault] {\n\tposition: relative;\n}\n\n#updraft-wrap .udp-info {\n\tposition: absolute;\n\tright: 10px;\n\ttop: calc(50% - 10px);\n}\n\n#updraft-wrap span.info-trigger {\n\tdisplay: inline-block;\n\twidth: 20px;\n\theight: 20px;\n\tbackground: #FFF;\n\tcolor: #72777C;\n\tborder-radius: 30px;\n\ttext-align: center;\n\tline-height: 20px;\n\tbox-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n}\n\n#updraft-wrap .info-content-wrapper {\n\tdisplay: none;\n\tposition: absolute;\n\tbottom: 20px;\n\ttransform: translatex(calc(-50% + 10px));\n\twidth: 330px;\n\tpadding-bottom: 10px;\n}\n\n#updraft-wrap .info-content-wrapper::before {\n\tcontent: '';\n\tposition: absolute;\n\tbottom: -10px;\n\tborder: 10px solid transparent;\n\tborder-top-color: #FFF;\n\tleft: calc(50% - 10px);\n}\n\n#updraft-wrap .info-content {\n\tpadding: 20px;\n\tbackground: #FFF;\n\tborder-radius: 4px;\n\tbox-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);\n\tcolor: #72777C;\n}\n\n#updraft-wrap .info-content h3 {\n\tmargin-top: 0;\n}\n\n#updraft-wrap .info-content p {\n\tmargin-top: 10px;\n}\n\n#updraft-wrap .udp-info:hover .info-content-wrapper {\n\tdisplay: block;\n}\n\ndiv.conditional_remote_backup select.logic_type {\n\tvertical-align: inherit !important;\n}\n\ndiv.conditional_remote_backup label.updraft_toggle_instance_label.radio_group {\n\tdisplay: block;\n\tmargin-top: 7px;\n}\n\ndiv.conditional_remote_backup div.logic ul.rules input.rule_value {\n\tvertical-align: middle;\n}\n\ndiv.conditional_remote_backup p {\n\tmargin-bottom: 10px;\n}\n\ndiv.conditional_remote_backup div.logic ul.rules span svg {\n\twidth: 20px;\n\tvertical-align: middle;\n\tcursor: pointer;\n}\n\ndiv.conditional_remote_backup div.logic ul.rules span svg {\n\tmargin-left: 3px;\n}\n\ndiv.conditional_remote_backup div.logic select.logic_type {\n\tvertical-align: unset;\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,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\ndiv[id^=\"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,\ndiv[id^=\"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,\ndiv[id^=\"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, #updraft_exclude_files_folders_wildcards_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 */\ndiv[id^=\"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[id^=\"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\ndiv[id^=\"updraft_jstree_buttons_\"] {\n\tpadding: 10px;\n\tbackground: #E6E6E6;\n}\n\ndiv[id^=\"updraft_jstree_container_\"] {\n\theight: 300px;\n\twidth: 100%;\n\toverflow: auto;\n}\n\ndiv[id^=\"updraft_more_files_container_\"] button {\n\tline-height: 20px;\n}\n\nbutton[id^=\"updraft_parent_directory_\"] {\n\tmargin: 10px 10px 4px 10px;\n\tpadding-left: 3px;\n}\n\nbutton[id^=\"updraft_jstree_confirm_\"], button[id^=\"updraft_jstree_cancel_\"] {\n\tdisplay: none;\n}\n\ninput[id^=\"updraft_include_more_path_restore_\"] {\n\ttext-align: right;\n}\n\n.updraftplus-morefiles-row-delete,\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n}\n\n#updraft_include_more_paths_error {\n\tcolor: #DE3C3C;\n}\n\np[id^=\"updraftplus_manual_authentication_error_\"] {\n\tcolor: #DE3C3C;\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, #ud_downloadstatus3 .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__action {\n\tposition: relative;\n\ttext-align: center;\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\tmargin-bottom: 7px;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small {\n\tdisplay: block;\n\tmax-width: 100%;\n\ttext-align: center;\n\tcolor: #AFAFAF;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small .dashicons {\n\twidth: 12px;\n\theight: 12px;\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\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tborder-left-color: #DC3232;\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.updraftplus_com_login_status.success {\n\tborder-left-color: green;\n}\n\n#updraft-wrap strong.success {\n\tcolor: green;\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, #ud_downloadstatus3 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #0572AA;\n\theight: 8px;\n\ttransition: width .3s;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw, #ud_downloadstatus3 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file, #ud_downloadstatus3 .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\ttransform: translatey(3px);\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.updated.backup-restored {\n\tpadding-top: 15px;\n\tpadding-bottom: 15px;\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\nsection.premium-upgrade-purchase-success {\n\tpadding: 2em;\n\tbackground: #FAFAFA;\n\ttext-align: center;\n\tbox-shadow: 0px 14px 40px rgba(0, 0, 0, 0.1);\n}\n\nsection.premium-upgrade-purchase-success h3 {\n\tfont-size: 2em;\n\tcolor: green;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons {\n\tdisplay: block;\n\tmargin: 0 auto;\n\tfont-size: 60px;\n\twidth: 60px;\n\theight: 60px;\n\tborder-radius: 50%;\n\tbackground: green;\n\tcolor: #FFF;\n\tmargin-bottom: 20px;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons::before {\n\tdisplay: inline-block;\n\tmargin-left: -4px;\n\tmargin-top: 2px;\n}\n\nsection.premium-upgrade-purchase-success p {\n\tfont-size: 120%;\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, #backupnow_includecloud_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#backupnow_database_moreoptions div.backupnow-db-tables {\n\tmargin-bottom: 5px;\n}\n\n#backupnow_database_moreoptions div.backupnow-db-tables > a {\n\tcolor: #0073AA;\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\ndiv.ui-dialog.ui-widget.ui-widget-content {\n\tz-index: 99999 !important;\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.notice.updraft-restore-option {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder-left-color: #CCC;\n}\n\n/* updraft_restore_crypteddb */\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraftplus_restore_tables_options_container {\n\tmax-height: 250px;\n\toverflow: auto;\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\tpadding: 10px 40px;\n\ttext-align: center;\n\tfont-style: italic;\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#updraft-wrap .dashicons.dashicons-adapt-size {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size) {\n\tvertical-align: middle;\n\tmargin-top: -3px;\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}\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-container {\n\ttext-align: center;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\twidth: 40%;\n\ttext-align: center;\n\tpadding-top: 20px;\n\tdisplay: inline-block;\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\twidth: auto;\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\nbody.update-core-php #updraft_inpage_backup h2:nth-child(1) {\n\tmargin-top: 1em !important;\n}\n\n/* Restoration page */\n\n.updraft_restore_container {\n\tdisplay: block;\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tz-index: 99999;\n\tpadding-top: 30px;\n\tbackground: #F1F1F1;\n\toverflow: auto;\n}\n\n.updraft-modal-is-opened .select2-container {\n\tz-index: 99999;\n}\n\nbody.updraft-modal-is-opened {\n\toverflow: hidden;\n}\n\n.updraft_restore_container h2 {\n\tmargin: 0;\n}\n\n.updraft_restore_container .updraftmessage {\n\tbox-sizing: border-box;\n\tmax-width: 860px;\n\tmargin-left: auto;\n\tmargin-right: auto;\n}\n\n.updraft_restore_main {\n\tmax-width: 860px;\n\tmargin: 0 auto;\n\tmargin-top: 20px;\n\tbackground: #FFF;\n\tbox-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);\n\tposition: relative;\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--header {\n\tfont-size: 20px;\n\tfont-weight: bold;\n\ttext-align: center;\n\tpadding-top: 16px;\n\tline-height: 20px;\n\twidth: 100%;\n\tmax-width: 100%;\n\tpadding-right: 30px;\n\tpadding-left: 30px;\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--activity {\n\tposition: relative;\n\twidth: calc(100% - 350px);\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--activity-title {\n\tpadding: 20px;\n\tmargin: 0;\n}\n\n.show-credentials-form.updraft_restore_main .updraft_restore_main--activity-title {\n\tdisplay: none;\n}\n\n.updraft_restore_main--components {\n\twidth: 350px;\n\tpadding: 20px;\n\tbox-sizing: border-box;\n\tbackground: #F8F8F8;\n\tmin-height: 350px;\n}\n\n.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output {\n\tbackground: #23282D;\n\tcolor: #E3E3E3;\n\tfont-family: monospace;\n\tpadding: 19px;\n\toverflow: auto;\n\tposition: absolute;\n\ttop: 60px;\n\tbottom: 0;\n\tright: 0;\n\tleft: 0;\n}\n\n#updraftplus_ajax_restore_output form {\n\twhite-space: normal;\n\tfont-family: -apple-system, blinkmacsystemfont, \"Segoe UI\", roboto, oxygen-sans, ubuntu, cantarell, \"Helvetica Neue\", sans-serif;\n}\n\n#updraftplus_ajax_restore_output .updraft_restore_errors {\n\tborder: 1px solid #DC3232;\n\tpadding: 10px 20px;\n\twhite-space: normal;\n}\n\n.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output h2 {\n\tcolor: #00A0D2;\n\tpadding-top: 10px;\n\tpadding-bottom: 5px;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output {\n\tpadding: 20px;\n\tborder-left: 1px solid #EEE;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output #message {\n\tmargin-left: 0;\n\tmargin-right: 0;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table td,\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table th {\n\tpadding-bottom: 0;\n}\n\n.updraft_restore_main.show-credentials-form .updraft_restore_main--components {\n\topacity: 0.2;\n}\n\n.updraft_restore_main.show-credentials-form div.error .restore-credential-errors--list p {\n\tmargin: 0;\n\tlist-style-type: disc;\n\tdisplay: list-item;\n\tlist-style-position: inside;\n}\n\n.restore-credential-errors > :first-child {\n\tmargin-top: 0;\n}\n\n.restore-credential-errors > :last-child {\n\tmargin-bottom: 0;\n}\n\nul.updraft_restore_components_list li {\n\tcolor: #BABABA;\n\tfont-size: 1.2em;\n\tmargin-bottom: 1em;\n}\n\nul.updraft_restore_components_list li::before {\n\tcontent: '\\f469';\n\tfont-family: dashicons;\n\tfont-size: 20px;\n\tvertical-align: middle;\n\tdisplay: inline-block;\n\tmargin-right: 7px;\n}\n\nul.updraft_restore_components_list li span {\n\tvertical-align: middle;\n}\n\nul.updraft_restore_components_list li.done {\n\tcolor: green;\n}\n\nul.updraft_restore_components_list li.done::before {\n\tcontent: \"\\f147\";\n}\n\nul.updraft_restore_components_list li.active {\n\tcolor: inherit;\n}\n\nul.updraft_restore_components_list li.active::before {\n\tcontent: \"\\f463\";\n\tanimation: udp_rotate 1s linear infinite;\n}\n\nul.updraft_restore_components_list li.error {\n\tcolor: #DC3232;\n}\n\nul.updraft_restore_components_list li.error::before {\n\tcontent: \"\\f335\";\n}\n\n.updraft_restore_result {\n\tpadding: 10px 0;\n\tfont-size: 1.3em;\n\tmargin-bottom: 1em;\n\tvertical-align: middle;\n\tdisplay: none;\n}\n\n.updraft_restore_result.restore-error {\n\tcolor: #DC3232;\n}\n\n.updraft_restore_result.restore-success {\n\tcolor: green;\n}\n\n.updraft_restore_result .dashicons {\n\tfont-size: 35px;\n\theight: 35px;\n\tline-height: 33px;\n\twidth: 35px;\n}\n\n.updraft_restore_result span {\n\tvertical-align: middle;\n}\n\n/* Restore modal */\n\n#updraft-restore-modal {\n\twidth: 100%;\n}\n\ndiv#updraft-restore-modal .notice {\n\tbackground: #F8F8F8;\n}\n\n.updraft-restore-modal--stage .updraft--two-halves,\n.updraft-restore-modal--stage .updraft--one-half {\n\tpadding: 20px 30px;\n}\n\n.updraft-restore-modal--header {\n\tpadding: 20px;\n\tpadding-bottom: 0px;\n\ttext-align: center;\n\tborder-bottom: 1px solid #EEE;\n}\n\n.updraft-restore-modal--header h3 {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-restore-item {\n\tpadding-bottom: 4px;\n}\n\n.updraft-restore-buttons {\n\tpadding-top: 10px;\n}\n\nul.updraft-restore--stages {\n\tdisplay: inline-block;\n\tmargin: 0;\n\theight: 28px;\n}\n\nul.updraft-restore--stages li {\n\tdisplay: inline-block;\n\tposition: relative;\n\twidth: 12px;\n\theight: 12px;\n\tbackground: #D2D2D2;\n\tborder-radius: 20px;\n\tline-height: 1;\n\tmargin: 0 4px;\n\tvertical-align: middle;\n}\n\nul.updraft-restore--stages li.active {\n\tbackground: #444;\n}\n\n.updraft-restore--footer {\n\tborder-top: 1px solid #EEE;\n\tpadding: 20px;\n\ttext-align: center;\n\tposition: sticky;\n\tbottom: 0;\n\tbackground: #FFF;\n\twidth: 100%;\n\tbox-sizing: border-box;\n}\n\n.updraft-restore--footer .updraft-restore--cancel {\n\tposition: absolute;\n\tleft: 20px;\n\ttop: auto;\n}\n\n.updraft-restore--footer .updraft-restore--next-step {\n\tposition: absolute;\n\tright: 20px;\n\ttop: auto;\n}\n\nul.updraft-restore--stages li span {\n\tposition: absolute;\n\twidth: 120px;\n\tbottom: calc(100% + 14px);\n\tleft: -55px;\n\tbackground: #000000DB;\n\tpadding: 5px;\n\tbox-sizing: border-box;\n\tborder-radius: 4px;\n\tcolor: #FFF;\n\ttext-align: center;\n\tdisplay: none;\n}\n\nul.updraft-restore--stages li:hover span {\n\tdisplay: inline-block;\n}\n\n.updraft-restore-item input[type=checkbox] {\n\tmargin-bottom: -5px;\n}\n\n.updraft-restore-item input[type=checkbox]:checked + label {\n\tfont-weight: bold;\n}\n\n/* Hide close button on download window */\ndiv#updraft-restore-modal .ud_downloadstatus__close {\n\tdisplay: none;\n}\n\n#ud_downloadstatus2:not(:empty) {\n\tmargin-top: 15px;\n}\n\n.dashicons.rotate {\n\tanimation: udp_rotate 1s linear infinite;\n}\n\n/* Activity stalled */\n\nspan#updraftplus_ajax_restore_last_activity {\n\tfont-size: .8rem;\n\tfont-weight: normal;\n\tfloat: right;\n}\n\n.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice {\n\tmargin: -20px -20px 20px;\n\tpadding: 19px;\n}\n\n.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice button {\n\tmargin-right: 5px;\n}\n\n#updraft_migrate_receivingsites .updraftplus-remote-sites-selector .button-primary, .updraft_migrate_add_site .input-field input, .updraft_migrate_add_site button {\n\tvertical-align: middle;\n}\n\n#updraft_migrate_receivingsites .text-link-menu a:not(:last-child) {\n\tpadding-right: 10px;\n}\n\n#updraft_migrate_receivingsites a.updraft_migrate_clear_sites span.dashicons-trash:before {\n\tfont-size: 17px;\n}\n\n#updraft_migrate_receivingsites .updraft_migrate_add_site {\n\tclear: both;\n}\n\n/* RTL Support */\n\n.rtl .advanced_tools.total_size table td {\n\tdirection: ltr;\n\ttext-align: right;\n}\n\n.rtl #plupload-upload-ui2.drag-drop #drag-drop-area2 {\n\tmargin-bottom: 20px;\n}\n\n.rtl #updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: left;\n}\n\n.rtl label.updraft_checkbox > input[type=checkbox] {\n\tmargin-right: -25px;\n\tmargin-left: inherit;\n}\n\n.rtl .ud_downloadstatus__close {\n\tfloat: left !important;\n}\n\n.rtl #updraft_backupextradbs_another_container {\n\tfloat: right;\n}\n\n.rtl input.labelauty + label {\n\tdirection: ltr;\n\tposition: relative;\n\tmin-height: 29px;\n}\n\n.rtl input.labelauty + label > span.labelauty-checked-image, .rtl input.labelauty + label > span.labelauty-unchecked-image {\n\tright: 8px;\n\ttop: 11px;\n\tposition: absolute;\n}\n\n.rtl .button.updraft-close-overlay .dashicons {\n\tmargin-right: -5px;\n\tmargin-left: inherit;\n}\n\n.rtl label.updraft_checkbox {\n\tmargin-right: 26px;\n\tmargin-left: inherit;\n}\n\n.rtl #updraft-wrap .udp-info {\n\tleft: 10px;\n\tright: inherit;\n}\n\n.rtl input.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked,\n.rtl input.labelauty + label > span.labelauty-checked-image + span.labelauty-checked {\n\tmargin-right: 7px;\n\tmargin-left: inherit;\n\tpadding: 7px 7px 7px 26px;\n\twidth: 141px;\n\ttext-align: right;\n}\n\n.rtl #updraft_report_cell button.updraft_reportbox_delete,\n.rtl .updraft_box_delete_button,\n.rtl .updraft_small_box .updraft_box_delete_button {\n\tleft: 4px;\n\tright: inherit;\n}\n\n#updraft_exclude_modal .clause-input-container {\n\toverflow: auto;\n}\n\n#updraft_exclude_modal .clause-input-container select, #updraft_exclude_modal .clause-input-container input {\n\tfloat: left;\n}\n\n#updraft_exclude_modal .clause-input-container .wildcards-input {\n\tmargin: 7px 7px 0 0;\n}\n\n#updraft_exclude_modal .updraft-exclude-panel .contain-clause-sub-label {\n\tmargin-top: 10px;\n\tdisplay: block;\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\t\n\t.rtl #ud_massactions.active, .rtl #updraft-delete-waitwarning.active {\n\t\tleft: 0px;\n\t\tright: 160px;\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\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.range-selection:not(.backuprowselected) .updraft_existingbackup_date .backup_date_label {\n\t\tcolor: #FFF;\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, .existing-backups-table .backup_date_label span > 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\t.updraft--flex {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_restore_main {\n\t\tflex-wrap: wrap;\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_restore_main--components {\n\t\twidth: 100%;\n\t\tmin-height: 0;\n\t}\n\n\t.updraft_restore_main--activity {\n\t\twidth: 100%;\n\t}\n\n\tdiv#updraftplus_ajax_restore_output,\n\t.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output {\n\t\tposition: relative;\n\t\ttop: 0;\n\t\tbottom: auto;\n\t}\n\n\t.updraft--flex > .updraft--two-halves,\n\t.updraft--flex > .updraft--one-half {\n\t\twidth: 100%;\n\t}\n\n\t.updraft-restore-item {\n\t\tpadding-bottom: 10px;\n\t\tpadding-top: 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.range-selection:hover, .existing-backups-table tbody tr.range-selection {\n\t\tbackground: #0572AA; /* #2b7fd9 */\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":"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AED","file":"updraftplus-admin-1-16-67.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@keyframes udp_rotate {\n\n\tfrom {\n\t\ttransform: rotate(0);\n\t}\n\n\tto {\n\t\ttransform: rotate(360deg);\n\t}\n\n}\n\n/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.max-width-700 {\n\tmax-width: 700px;\n}\n\n.width-900 {\n\tmax-width: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n.updraft--flex {\n\tdisplay: flex;\n\tflex-wrap: wrap;\n}\n\n.updraft--flex > * {\n\tflex: 1;\n\tbox-sizing: border-box;\n}\n\n.updraft--flex > .updraft--one-half {\n\twidth: 50%;\n\tflex: auto;\n}\n\n.updraft--flex > .updraft--two-halves {\n\twidth: 100%;\n\tflex: auto;\n}\n\n.updraft-color--very-light-grey {\n\tbackground: #F8F8F8;\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\n.updraftclone_action_box #ud_downloadstatus3 {\n\tmargin-top: 10px;\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\twidth: 100%;\n\tflex-basis: 100%;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box iframe,\n.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\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.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\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}\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\nbutton.ui-dialog-titlebar-close:before {\n\tcontent: none!important;\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\tjustify-content: center;\n\talign-items: center;\n}\n\n.incremental-backups-only {\n\tdisplay: none;\n}\n\n.incremental-free-only {\n\tdisplay: none;\n}\n\n.incremental-free-only p {\n\tpadding: 5px;\n\tbackground: rgba(255, 0, 0, 0.06);\n\tborder: 1px solid #BFBFBF;\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, .existing-backups-table .backup_date_label span > 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: inline-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.updraft-fs-italic {\n\tfont-style: italic;\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-settings-content table.form-table .notice p {\n\tmax-width: none;\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\nlabel[for=updraft_servicecheckbox_updraftvault] {\n\tposition: relative;\n}\n\n#updraft-wrap .udp-info {\n\tposition: absolute;\n\tright: 10px;\n\ttop: calc(50% - 10px);\n}\n\n#updraft-wrap span.info-trigger {\n\tdisplay: inline-block;\n\twidth: 20px;\n\theight: 20px;\n\tbackground: #FFF;\n\tcolor: #72777C;\n\tborder-radius: 30px;\n\ttext-align: center;\n\tline-height: 20px;\n\tbox-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n}\n\n#updraft-wrap .info-content-wrapper {\n\tdisplay: none;\n\tposition: absolute;\n\tbottom: 20px;\n\ttransform: translatex(calc(-50% + 10px));\n\twidth: 330px;\n\tpadding-bottom: 10px;\n}\n\n#updraft-wrap .info-content-wrapper::before {\n\tcontent: '';\n\tposition: absolute;\n\tbottom: -10px;\n\tborder: 10px solid transparent;\n\tborder-top-color: #FFF;\n\tleft: calc(50% - 10px);\n}\n\n#updraft-wrap .info-content {\n\tpadding: 20px;\n\tbackground: #FFF;\n\tborder-radius: 4px;\n\tbox-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);\n\tcolor: #72777C;\n}\n\n#updraft-wrap .info-content h3 {\n\tmargin-top: 0;\n}\n\n#updraft-wrap .info-content p {\n\tmargin-top: 10px;\n}\n\n#updraft-wrap .udp-info:hover .info-content-wrapper {\n\tdisplay: block;\n}\n\ndiv.conditional_remote_backup select.logic_type {\n\tvertical-align: inherit !important;\n}\n\ndiv.conditional_remote_backup label.updraft_toggle_instance_label.radio_group {\n\tdisplay: block;\n\tmargin-top: 7px;\n}\n\ndiv.conditional_remote_backup div.logic ul.rules input.rule_value {\n\tvertical-align: middle;\n}\n\ndiv.conditional_remote_backup p {\n\tmargin-bottom: 10px;\n}\n\ndiv.conditional_remote_backup div.logic ul.rules span svg {\n\twidth: 20px;\n\tvertical-align: middle;\n\tcursor: pointer;\n}\n\ndiv.conditional_remote_backup div.logic ul.rules span svg {\n\tmargin-left: 3px;\n}\n\ndiv.conditional_remote_backup div.logic select.logic_type {\n\tvertical-align: unset;\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,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\ndiv[id^=\"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,\ndiv[id^=\"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,\ndiv[id^=\"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, #updraft_exclude_files_folders_wildcards_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 */\ndiv[id^=\"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[id^=\"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\ndiv[id^=\"updraft_jstree_buttons_\"] {\n\tpadding: 10px;\n\tbackground: #E6E6E6;\n}\n\ndiv[id^=\"updraft_jstree_container_\"] {\n\theight: 300px;\n\twidth: 100%;\n\toverflow: auto;\n}\n\ndiv[id^=\"updraft_more_files_container_\"] button {\n\tline-height: 20px;\n}\n\nbutton[id^=\"updraft_parent_directory_\"] {\n\tmargin: 10px 10px 4px 10px;\n\tpadding-left: 3px;\n}\n\nbutton[id^=\"updraft_jstree_confirm_\"], button[id^=\"updraft_jstree_cancel_\"] {\n\tdisplay: none;\n}\n\ninput[id^=\"updraft_include_more_path_restore_\"] {\n\ttext-align: right;\n}\n\n.updraftplus-morefiles-row-delete,\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n}\n\n#updraft_include_more_paths_error {\n\tcolor: #DE3C3C;\n}\n\np[id^=\"updraftplus_manual_authentication_error_\"] {\n\tcolor: #DE3C3C;\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, #ud_downloadstatus3 .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__action {\n\tposition: relative;\n\ttext-align: center;\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\tmargin-bottom: 7px;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small {\n\tdisplay: block;\n\tmax-width: 100%;\n\ttext-align: center;\n\tcolor: #AFAFAF;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small .dashicons {\n\twidth: 12px;\n\theight: 12px;\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\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tborder-left-color: #DC3232;\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.updraftplus_com_login_status.success {\n\tborder-left-color: green;\n}\n\n#updraft-wrap strong.success {\n\tcolor: green;\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, #ud_downloadstatus3 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #0572AA;\n\theight: 8px;\n\ttransition: width .3s;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw, #ud_downloadstatus3 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file, #ud_downloadstatus3 .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\ttransform: translatey(3px);\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.updated.backup-restored {\n\tpadding-top: 15px;\n\tpadding-bottom: 15px;\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\nsection.premium-upgrade-purchase-success {\n\tpadding: 2em;\n\tbackground: #FAFAFA;\n\ttext-align: center;\n\tbox-shadow: 0px 14px 40px rgba(0, 0, 0, 0.1);\n}\n\nsection.premium-upgrade-purchase-success h3 {\n\tfont-size: 2em;\n\tcolor: green;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons {\n\tdisplay: block;\n\tmargin: 0 auto;\n\tfont-size: 60px;\n\twidth: 60px;\n\theight: 60px;\n\tborder-radius: 50%;\n\tbackground: green;\n\tcolor: #FFF;\n\tmargin-bottom: 20px;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons::before {\n\tdisplay: inline-block;\n\tmargin-left: -4px;\n\tmargin-top: 2px;\n}\n\nsection.premium-upgrade-purchase-success p {\n\tfont-size: 120%;\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, #backupnow_includecloud_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#backupnow_database_moreoptions div.backupnow-db-tables {\n\tmargin-bottom: 5px;\n}\n\n#backupnow_database_moreoptions div.backupnow-db-tables > a {\n\tcolor: #0073AA;\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\ndiv.ui-dialog.ui-widget.ui-widget-content {\n\tz-index: 99999 !important;\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.notice.updraft-restore-option {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder-left-color: #CCC;\n}\n\n/* updraft_restore_crypteddb */\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraftplus_restore_tables_options_container {\n\tmax-height: 250px;\n\toverflow: auto;\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\tpadding: 10px 40px;\n\ttext-align: center;\n\tfont-style: italic;\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#updraft-wrap .dashicons.dashicons-adapt-size {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size) {\n\tvertical-align: middle;\n\tmargin-top: -3px;\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}\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-container {\n\ttext-align: center;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\twidth: 40%;\n\ttext-align: center;\n\tpadding-top: 20px;\n\tdisplay: inline-block;\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\twidth: auto;\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\nbody.update-core-php #updraft_inpage_backup h2:nth-child(1) {\n\tmargin-top: 1em !important;\n}\n\n/* Restoration page */\n\n.updraft_restore_container {\n\tdisplay: block;\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tz-index: 99999;\n\tpadding-top: 30px;\n\tbackground: #F1F1F1;\n\toverflow: auto;\n}\n\n.updraft-modal-is-opened .select2-container {\n\tz-index: 99999;\n}\n\nbody.updraft-modal-is-opened {\n\toverflow: hidden;\n}\n\n.updraft_restore_container h2 {\n\tmargin: 0;\n}\n\n.updraft_restore_container .updraftmessage {\n\tbox-sizing: border-box;\n\tmax-width: 860px;\n\tmargin-left: auto;\n\tmargin-right: auto;\n}\n\n.updraft_restore_main {\n\tmax-width: 860px;\n\tmargin: 0 auto;\n\tmargin-top: 20px;\n\tbackground: #FFF;\n\tbox-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);\n\tposition: relative;\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--header {\n\tfont-size: 20px;\n\tfont-weight: bold;\n\ttext-align: center;\n\tpadding-top: 16px;\n\tline-height: 20px;\n\twidth: 100%;\n\tmax-width: 100%;\n\tpadding-right: 30px;\n\tpadding-left: 30px;\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--activity {\n\tposition: relative;\n\twidth: calc(100% - 350px);\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--activity-title {\n\tpadding: 20px;\n\tmargin: 0;\n}\n\n.show-credentials-form.updraft_restore_main .updraft_restore_main--activity-title {\n\tdisplay: none;\n}\n\n.updraft_restore_main--components {\n\twidth: 350px;\n\tpadding: 20px;\n\tbox-sizing: border-box;\n\tbackground: #F8F8F8;\n\tmin-height: 350px;\n}\n\n.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output {\n\tbackground: #23282D;\n\tcolor: #E3E3E3;\n\tfont-family: monospace;\n\tpadding: 19px;\n\toverflow: auto;\n\tposition: absolute;\n\ttop: 60px;\n\tbottom: 0;\n\tright: 0;\n\tleft: 0;\n}\n\n#updraftplus_ajax_restore_output form {\n\twhite-space: normal;\n\tfont-family: -apple-system, blinkmacsystemfont, \"Segoe UI\", roboto, oxygen-sans, ubuntu, cantarell, \"Helvetica Neue\", sans-serif;\n}\n\n#updraftplus_ajax_restore_output .updraft_restore_errors {\n\tborder: 1px solid #DC3232;\n\tpadding: 10px 20px;\n\twhite-space: normal;\n}\n\n.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output h2 {\n\tcolor: #00A0D2;\n\tpadding-top: 10px;\n\tpadding-bottom: 5px;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output {\n\tpadding: 20px;\n\tborder-left: 1px solid #EEE;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output #message {\n\tmargin-left: 0;\n\tmargin-right: 0;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table td,\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table th {\n\tpadding-bottom: 0;\n}\n\n.updraft_restore_main.show-credentials-form .updraft_restore_main--components {\n\topacity: 0.2;\n}\n\n.updraft_restore_main.show-credentials-form div.error .restore-credential-errors--list p {\n\tmargin: 0;\n\tlist-style-type: disc;\n\tdisplay: list-item;\n\tlist-style-position: inside;\n}\n\n.restore-credential-errors > :first-child {\n\tmargin-top: 0;\n}\n\n.restore-credential-errors > :last-child {\n\tmargin-bottom: 0;\n}\n\nul.updraft_restore_components_list li {\n\tcolor: #BABABA;\n\tfont-size: 1.2em;\n\tmargin-bottom: 1em;\n}\n\nul.updraft_restore_components_list li::before {\n\tcontent: '\\f469';\n\tfont-family: dashicons;\n\tfont-size: 20px;\n\tvertical-align: middle;\n\tdisplay: inline-block;\n\tmargin-right: 7px;\n}\n\nul.updraft_restore_components_list li span {\n\tvertical-align: middle;\n}\n\nul.updraft_restore_components_list li.done {\n\tcolor: green;\n}\n\nul.updraft_restore_components_list li.done::before {\n\tcontent: \"\\f147\";\n}\n\nul.updraft_restore_components_list li.active {\n\tcolor: inherit;\n}\n\nul.updraft_restore_components_list li.active::before {\n\tcontent: \"\\f463\";\n\tanimation: udp_rotate 1s linear infinite;\n}\n\nul.updraft_restore_components_list li.error {\n\tcolor: #DC3232;\n}\n\nul.updraft_restore_components_list li.error::before {\n\tcontent: \"\\f335\";\n}\n\n.updraft_restore_result {\n\tpadding: 10px 0;\n\tfont-size: 1.3em;\n\tmargin-bottom: 1em;\n\tvertical-align: middle;\n\tdisplay: none;\n}\n\n.updraft_restore_result.restore-error {\n\tcolor: #DC3232;\n}\n\n.updraft_restore_result.restore-success {\n\tcolor: green;\n}\n\n.updraft_restore_result .dashicons {\n\tfont-size: 35px;\n\theight: 35px;\n\tline-height: 33px;\n\twidth: 35px;\n}\n\n.updraft_restore_result span {\n\tvertical-align: middle;\n}\n\n/* Restore modal */\n\n#updraft-restore-modal {\n\twidth: 100%;\n}\n\ndiv#updraft-restore-modal .notice {\n\tbackground: #F8F8F8;\n}\n\n.updraft-restore-modal--stage .updraft--two-halves,\n.updraft-restore-modal--stage .updraft--one-half {\n\tpadding: 20px 30px;\n}\n\n.updraft-restore-modal--header {\n\tpadding: 20px;\n\tpadding-bottom: 0px;\n\ttext-align: center;\n\tborder-bottom: 1px solid #EEE;\n}\n\n.updraft-restore-modal--header h3 {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-restore-item {\n\tpadding-bottom: 4px;\n}\n\n.updraft-restore-buttons {\n\tpadding-top: 10px;\n}\n\nul.updraft-restore--stages {\n\tdisplay: inline-block;\n\tmargin: 0;\n\theight: 28px;\n}\n\nul.updraft-restore--stages li {\n\tdisplay: inline-block;\n\tposition: relative;\n\twidth: 12px;\n\theight: 12px;\n\tbackground: #D2D2D2;\n\tborder-radius: 20px;\n\tline-height: 1;\n\tmargin: 0 4px;\n\tvertical-align: middle;\n}\n\nul.updraft-restore--stages li.active {\n\tbackground: #444;\n}\n\n.updraft-restore--footer {\n\tborder-top: 1px solid #EEE;\n\tpadding: 20px;\n\ttext-align: center;\n\tposition: sticky;\n\tbottom: 0;\n\tbackground: #FFF;\n\twidth: 100%;\n\tbox-sizing: border-box;\n}\n\n.updraft-restore--footer .updraft-restore--cancel {\n\tposition: absolute;\n\tleft: 20px;\n\ttop: auto;\n}\n\n.updraft-restore--footer .updraft-restore--next-step {\n\tposition: absolute;\n\tright: 20px;\n\ttop: auto;\n}\n\nul.updraft-restore--stages li span {\n\tposition: absolute;\n\twidth: 120px;\n\tbottom: calc(100% + 14px);\n\tleft: -55px;\n\tbackground: #000000DB;\n\tpadding: 5px;\n\tbox-sizing: border-box;\n\tborder-radius: 4px;\n\tcolor: #FFF;\n\ttext-align: center;\n\tdisplay: none;\n}\n\nul.updraft-restore--stages li:hover span {\n\tdisplay: inline-block;\n}\n\n.updraft-restore-item input[type=checkbox] {\n\tmargin-bottom: -5px;\n}\n\n.updraft-restore-item input[type=checkbox]:checked + label {\n\tfont-weight: bold;\n}\n\n/* Hide close button on download window */\ndiv#updraft-restore-modal .ud_downloadstatus__close {\n\tdisplay: none;\n}\n\n#ud_downloadstatus2:not(:empty) {\n\tmargin-top: 15px;\n}\n\n.dashicons.rotate {\n\tanimation: udp_rotate 1s linear infinite;\n}\n\n/* Activity stalled */\n\nspan#updraftplus_ajax_restore_last_activity {\n\tfont-size: .8rem;\n\tfont-weight: normal;\n\tfloat: right;\n}\n\n.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice {\n\tmargin: -20px -20px 20px;\n\tpadding: 19px;\n}\n\n.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice button {\n\tmargin-right: 5px;\n}\n\n#updraft_migrate_receivingsites .updraftplus-remote-sites-selector .button-primary, .updraft_migrate_add_site .input-field input, .updraft_migrate_add_site button {\n\tvertical-align: middle;\n}\n\n#updraft_migrate_receivingsites .text-link-menu a:not(:last-child) {\n\tpadding-right: 10px;\n}\n\n#updraft_migrate_receivingsites a.updraft_migrate_clear_sites span.dashicons-trash:before {\n\tfont-size: 17px;\n}\n\n#updraft_migrate_receivingsites .updraft_migrate_add_site {\n\tclear: both;\n}\n\n/* RTL Support */\n\n.rtl .advanced_tools.total_size table td {\n\tdirection: ltr;\n\ttext-align: right;\n}\n\n.rtl #plupload-upload-ui2.drag-drop #drag-drop-area2 {\n\tmargin-bottom: 20px;\n}\n\n.rtl #updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: left;\n}\n\n.rtl label.updraft_checkbox > input[type=checkbox] {\n\tmargin-right: -25px;\n\tmargin-left: inherit;\n}\n\n.rtl .ud_downloadstatus__close {\n\tfloat: left !important;\n}\n\n.rtl #updraft_backupextradbs_another_container {\n\tfloat: right;\n}\n\n.rtl input.labelauty + label {\n\tdirection: ltr;\n\tposition: relative;\n\tmin-height: 29px;\n}\n\n.rtl input.labelauty + label > span.labelauty-checked-image, .rtl input.labelauty + label > span.labelauty-unchecked-image {\n\tright: 8px;\n\ttop: 11px;\n\tposition: absolute;\n}\n\n.rtl .button.updraft-close-overlay .dashicons {\n\tmargin-right: -5px;\n\tmargin-left: inherit;\n}\n\n.rtl label.updraft_checkbox {\n\tmargin-right: 26px;\n\tmargin-left: inherit;\n}\n\n.rtl #updraft-wrap .udp-info {\n\tleft: 10px;\n\tright: inherit;\n}\n\n.rtl input.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked,\n.rtl input.labelauty + label > span.labelauty-checked-image + span.labelauty-checked {\n\tmargin-right: 7px;\n\tmargin-left: inherit;\n\tpadding: 7px 7px 7px 26px;\n\twidth: 141px;\n\ttext-align: right;\n}\n\n.rtl #updraft_report_cell button.updraft_reportbox_delete,\n.rtl .updraft_box_delete_button,\n.rtl .updraft_small_box .updraft_box_delete_button {\n\tleft: 4px;\n\tright: inherit;\n}\n\n#updraft_exclude_modal .clause-input-container {\n\toverflow: auto;\n}\n\n#updraft_exclude_modal .clause-input-container select, #updraft_exclude_modal .clause-input-container input {\n\tfloat: left;\n}\n\n#updraft_exclude_modal .clause-input-container .wildcards-input {\n\tmargin: 7px 7px 0 0;\n}\n\n#updraft_exclude_modal .updraft-exclude-panel .contain-clause-sub-label {\n\tmargin-top: 10px;\n\tdisplay: block;\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\t\n\t.rtl #ud_massactions.active, .rtl #updraft-delete-waitwarning.active {\n\t\tleft: 0px;\n\t\tright: 160px;\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\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.range-selection:not(.backuprowselected) .updraft_existingbackup_date .backup_date_label {\n\t\tcolor: #FFF;\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, .existing-backups-table .backup_date_label span > 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\t.updraft--flex {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_restore_main {\n\t\tflex-wrap: wrap;\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_restore_main--components {\n\t\twidth: 100%;\n\t\tmin-height: 0;\n\t}\n\n\t.updraft_restore_main--activity {\n\t\twidth: 100%;\n\t}\n\n\tdiv#updraftplus_ajax_restore_output,\n\t.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output {\n\t\tposition: relative;\n\t\ttop: 0;\n\t\tbottom: auto;\n\t}\n\n\t.updraft--flex > .updraft--two-halves,\n\t.updraft--flex > .updraft--one-half {\n\t\twidth: 100%;\n\t}\n\n\t.updraft-restore-item {\n\t\tpadding-bottom: 10px;\n\t\tpadding-top: 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.range-selection:hover, .existing-backups-table tbody tr.range-selection {\n\t\tbackground: #0572AA; /* #2b7fd9 */\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,2 +1,2 @@
|
|
1 |
.updraft_notice_container{height:auto;overflow:hidden}.updraft_review_notice_container{padding:12px;display:-webkit-box;display:-ms-flexbox;display:flex}.updraft_advert_button_container{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.updraft_advert_button_container .dashicons{margin-left:10px}.updraft_advert_content_left{float:none;width:65px}.updraft_advert_content_left_extra{float:none;width:100px;padding-right:15px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.updraft_advert_content_right{float:none;width:auto;overflow:hidden}.updraft_advert_bottom{margin:10px 0;padding:10px;font-size:140%;background-color:white;border-color:#e6db55;border:1px solid;border-radius:4px}.updraft-advert-dismiss{float:right;font-size:13px;font-weight:normal}h3.updraft_advert_heading{margin-top:5px !important;margin-bottom:5px !important}h4.updraft_advert_heading{margin-top:2px !important;margin-bottom:3px !important}.updraft_center_content{text-align:center;margin-bottom:5px}.updraft_notice_link{padding-left:5px}.updraft_text_center{text-align:center}@media screen and (min-width:560px){.updraft_advert_content_left,.updraft_advert_content_left_extra{float:left}}
|
2 |
-
/*# sourceMappingURL=updraftplus-notices-1-16-
|
1 |
.updraft_notice_container{height:auto;overflow:hidden}.updraft_review_notice_container{padding:12px;display:-webkit-box;display:-ms-flexbox;display:flex}.updraft_advert_button_container{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.updraft_advert_button_container .dashicons{margin-left:10px}.updraft_advert_content_left{float:none;width:65px}.updraft_advert_content_left_extra{float:none;width:100px;padding-right:15px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.updraft_advert_content_right{float:none;width:auto;overflow:hidden}.updraft_advert_bottom{margin:10px 0;padding:10px;font-size:140%;background-color:white;border-color:#e6db55;border:1px solid;border-radius:4px}.updraft-advert-dismiss{float:right;font-size:13px;font-weight:normal}h3.updraft_advert_heading{margin-top:5px !important;margin-bottom:5px !important}h4.updraft_advert_heading{margin-top:2px !important;margin-bottom:3px !important}.updraft_center_content{text-align:center;margin-bottom:5px}.updraft_notice_link{padding-left:5px}.updraft_text_center{text-align:center}@media screen and (min-width:560px){.updraft_advert_content_left,.updraft_advert_content_left_extra{float:left}}
|
2 |
+
/*# sourceMappingURL=updraftplus-notices-1-16-67.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["css/updraftplus-notices.css"],"names":[],"mappings":"AAAA,oBAAoB;;AAEpB;CACC,YAAY;CACZ,gBAAgB;AACjB;;AAEA;CACC,aAAa;CACb,oBAAa;CAAb,oBAAa;CAAb,aAAa;AACd;;AAEA;CACC,mBAAmB;CACnB,oBAAa;CAAb,oBAAa;CAAb,aAAa;CACb,yBAAmB;KAAnB,sBAAmB;SAAnB,mBAAmB;AACpB;;AAEA;CACC,iBAAiB;AAClB;;AAEA;CACC,WAAW;CACX,WAAW;AACZ;;AAEA;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,oBAAa;CAAb,oBAAa;CAAb,aAAa;CACb,yBAAmB;KAAnB,sBAAmB;SAAnB,mBAAmB;AACpB;;AAEA;CACC,WAAW;CACX,WAAW;CACX,gBAAgB;AACjB;;AAEA;CACC,cAAc;CACd,aAAa;CACb,eAAe;CACf,uBAAuB;CACvB,qBAAqB;CACrB,iBAAiB;CACjB,kBAAkB;AACnB;;AAEA;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;AACpB;;AAEA;CACC,0BAA0B;CAC1B,6BAA6B;AAC9B;;AAEA;CACC,0BAA0B;CAC1B,6BAA6B;AAC9B;;AAEA;CACC,kBAAkB;CAClB,kBAAkB;AACnB;;AAEA;CACC,iBAAiB;AAClB;;AAEA;CACC,kBAAkB;AACnB;;AAEA;;CAEC;EACC,WAAW;CACZ;;AAED","file":"updraftplus-notices-1-16-
|
1 |
+
{"version":3,"sources":["css/updraftplus-notices.css"],"names":[],"mappings":"AAAA,oBAAoB;;AAEpB;CACC,YAAY;CACZ,gBAAgB;AACjB;;AAEA;CACC,aAAa;CACb,oBAAa;CAAb,oBAAa;CAAb,aAAa;AACd;;AAEA;CACC,mBAAmB;CACnB,oBAAa;CAAb,oBAAa;CAAb,aAAa;CACb,yBAAmB;KAAnB,sBAAmB;SAAnB,mBAAmB;AACpB;;AAEA;CACC,iBAAiB;AAClB;;AAEA;CACC,WAAW;CACX,WAAW;AACZ;;AAEA;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,oBAAa;CAAb,oBAAa;CAAb,aAAa;CACb,yBAAmB;KAAnB,sBAAmB;SAAnB,mBAAmB;AACpB;;AAEA;CACC,WAAW;CACX,WAAW;CACX,gBAAgB;AACjB;;AAEA;CACC,cAAc;CACd,aAAa;CACb,eAAe;CACf,uBAAuB;CACvB,qBAAqB;CACrB,iBAAiB;CACjB,kBAAkB;AACnB;;AAEA;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;AACpB;;AAEA;CACC,0BAA0B;CAC1B,6BAA6B;AAC9B;;AAEA;CACC,0BAA0B;CAC1B,6BAA6B;AAC9B;;AAEA;CACC,kBAAkB;CAClB,kBAAkB;AACnB;;AAEA;CACC,iBAAiB;AAClB;;AAEA;CACC,kBAAkB;AACnB;;AAEA;;CAEC;EACC,WAAW;CACZ;;AAED","file":"updraftplus-notices-1-16-67.min.css","sourcesContent":["/* CSS for adverts */\n\n.updraft_notice_container {\n\theight: auto;\n\toverflow: hidden;\n}\n\n.updraft_review_notice_container {\n\tpadding: 12px;\n\tdisplay: flex;\n}\n\n.updraft_advert_button_container {\n\tmargin-bottom: 10px;\n\tdisplay: flex;\n\talign-items: center;\n}\n\n.updraft_advert_button_container .dashicons {\n\tmargin-left: 10px;\n}\n\n.updraft_advert_content_left {\n\tfloat: none;\n\twidth: 65px;\n}\n\n.updraft_advert_content_left_extra {\n\tfloat: none;\n\twidth: 100px;\n\tpadding-right: 15px;\n\tdisplay: flex;\n\talign-items: center;\n}\n\n.updraft_advert_content_right {\n\tfloat: none;\n\twidth: auto;\n\toverflow: hidden;\n}\n\n.updraft_advert_bottom {\n\tmargin: 10px 0;\n\tpadding: 10px;\n\tfont-size: 140%;\n\tbackground-color: white;\n\tborder-color: #E6DB55;\n\tborder: 1px solid;\n\tborder-radius: 4px;\n}\n\n.updraft-advert-dismiss {\n\tfloat: right;\n\tfont-size: 13px;\n\tfont-weight: normal;\n}\n\nh3.updraft_advert_heading {\n\tmargin-top: 5px !important;\n\tmargin-bottom: 5px !important;\n}\n\nh4.updraft_advert_heading {\n\tmargin-top: 2px !important;\n\tmargin-bottom: 3px !important;\n}\n\n.updraft_center_content {\n\ttext-align: center;\n\tmargin-bottom: 5px;\n}\n\n.updraft_notice_link {\n\tpadding-left: 5px;\n}\n\n.updraft_text_center {\n\ttext-align: center;\n}\n\n@media screen and (min-width: 560px) {\n\n\t.updraft_advert_content_left, .updraft_advert_content_left_extra {\n\t\tfloat: left;\n\t}\n\n}\n"]}
|
@@ -1,2 +1,2 @@
|
|
1 |
.shepherd-theme-arrows-plain-buttons{z-index:99;max-width:390px !important}.shepherd-theme-arrows-plain-buttons.super-index{z-index:999999}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content{border-radius:3px;-webkit-filter:none;filter:none;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.15),0 10px 40px rgba(0,0,0,0.15);box-shadow:0 1px 3px rgba(0,0,0,0.15),0 10px 40px rgba(0,0,0,0.15)}.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before{display:none}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before{border-bottom-color:#dd6823}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header{background-color:#dd6823;border-radius:3px 3px 0 0;padding-right:90px}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header h3{color:#FFF;font-size:1.2em;float:none}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link{opacity:.7;color:rgba(255,255,255,0);font-size:.8em;border:1px solid #FFF;border-radius:50%;width:22px;height:22px;line-height:20px;padding:0;text-align:center;float:none;position:absolute;right:11px;top:12px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::before{color:#FFF;content:attr(data-btntext);position:absolute;right:20px;padding-right:10px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::after{content:"\f335";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:dashicons;color:#FFF;position:absolute;left:2px;line-height:21px;font-size:16px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus{border:1px solid #a04e00;opacity:1}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover::before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus::before{color:#a04e00}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover::after,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus::after{color:#a04e00}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before{top:44px}.shepherd-content .ud-notice{background:#f0f0f0;padding:14px;border-radius:4px;font-size:90% !important;line-height:1.5}.shepherd-content .ud-notice h3{margin-top:0;padding-top:0;margin-bottom:.5em}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text p{margin-top:.5em;margin-bottom:1.3em}.ud-notice span.ud-special-offer{font-weight:bold;display:inline-block;padding:1px 6px;border-radius:3px;background:rgba(217,105,0,0.09)}label[for=updraft_servicecheckbox_updraftvault]{border:1px solid rgba(204,204,204,0.4);-webkit-transition:border .5s;transition:border .5s}label[for=updraft_servicecheckbox_updraftvault].emphasize{border-color:#dd6823}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back,.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end{float:left;position:relative;padding-left:10px}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end{padding-left:0;color:#b7b7b7}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back::before{content:' ';width:6px;height:6px;display:block;border-left:1px solid;border-bottom:1px solid;position:absolute;left:0;top:8px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}a.shepherd-button.udp-tour-end::before{display:inline-block;position:relative;content:"\f335";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:dashicons;font-size:20px;line-height:20px;vertical-align:middle;margin-top:-2px}.updraftplus-welcome-logo{display:block;width:70px;float:left;margin-top:-11px;margin-right:12px}.updraftplus-welcome-logo img{display:block;width:auto;max-width:100%}.highlight-udp .plugins #the-list tr:not([data-slug="updraftplus"]){opacity:.3}@media(max-width:790px){.shepherd-element.shepherd-theme-arrows-plain-buttons{display:none}}
|
2 |
-
/*# sourceMappingURL=updraftplus-tour-1-16-
|
1 |
.shepherd-theme-arrows-plain-buttons{z-index:99;max-width:390px !important}.shepherd-theme-arrows-plain-buttons.super-index{z-index:999999}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content{border-radius:3px;-webkit-filter:none;filter:none;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.15),0 10px 40px rgba(0,0,0,0.15);box-shadow:0 1px 3px rgba(0,0,0,0.15),0 10px 40px rgba(0,0,0,0.15)}.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before{display:none}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before{border-bottom-color:#dd6823}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header{background-color:#dd6823;border-radius:3px 3px 0 0;padding-right:90px}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header h3{color:#FFF;font-size:1.2em;float:none}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link{opacity:.7;color:rgba(255,255,255,0);font-size:.8em;border:1px solid #FFF;border-radius:50%;width:22px;height:22px;line-height:20px;padding:0;text-align:center;float:none;position:absolute;right:11px;top:12px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::before{color:#FFF;content:attr(data-btntext);position:absolute;right:20px;padding-right:10px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::after{content:"\f335";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:dashicons;color:#FFF;position:absolute;left:2px;line-height:21px;font-size:16px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus{border:1px solid #a04e00;opacity:1}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover::before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus::before{color:#a04e00}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover::after,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus::after{color:#a04e00}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before{top:44px}.shepherd-content .ud-notice{background:#f0f0f0;padding:14px;border-radius:4px;font-size:90% !important;line-height:1.5}.shepherd-content .ud-notice h3{margin-top:0;padding-top:0;margin-bottom:.5em}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text p{margin-top:.5em;margin-bottom:1.3em}.ud-notice span.ud-special-offer{font-weight:bold;display:inline-block;padding:1px 6px;border-radius:3px;background:rgba(217,105,0,0.09)}label[for=updraft_servicecheckbox_updraftvault]{border:1px solid rgba(204,204,204,0.4);-webkit-transition:border .5s;transition:border .5s}label[for=updraft_servicecheckbox_updraftvault].emphasize{border-color:#dd6823}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back,.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end{float:left;position:relative;padding-left:10px}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end{padding-left:0;color:#b7b7b7}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back::before{content:' ';width:6px;height:6px;display:block;border-left:1px solid;border-bottom:1px solid;position:absolute;left:0;top:8px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}a.shepherd-button.udp-tour-end::before{display:inline-block;position:relative;content:"\f335";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:dashicons;font-size:20px;line-height:20px;vertical-align:middle;margin-top:-2px}.updraftplus-welcome-logo{display:block;width:70px;float:left;margin-top:-11px;margin-right:12px}.updraftplus-welcome-logo img{display:block;width:auto;max-width:100%}.highlight-udp .plugins #the-list tr:not([data-slug="updraftplus"]){opacity:.3}@media(max-width:790px){.shepherd-element.shepherd-theme-arrows-plain-buttons{display:none}}
|
2 |
+
/*# sourceMappingURL=updraftplus-tour-1-16-67.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["css/updraftplus-tour.scss"],"names":[],"mappings":"AAEA;CACC,WAAW;CACX,0BAA0B;AAC3B;;AAEA;CACC,eAAe;AAChB;;AAEA;CACC,kBAAkB;CAClB,oBAAY;SAAZ,YAAY;CACZ,sFAA8E;SAA9E,8EAA8E;AAC/E;;AAEA;;;;CAIC,aAAa;AACd;;AAEA;;;CAGC,4BAAiC;AAClC;;AAEA;CACC,yBAA8B;CAC9B,0BAA0B;CAC1B,mBAAmB;AACpB;;AAEA;CACC,WAAW;CACX,gBAAgB;CAChB,WAAW;AACZ;;AAEA;CACC,YAAY;CACZ,6BAA6B;CAC7B,gBAAgB;CAChB,sBAAsB;CACtB,kBAAkB;CAClB,WAAW;CACX,YAAY;CACZ,iBAAiB;CACjB,UAAU;CACV,kBAAkB;CAClB,WAAW;CACX,kBAAkB;CAClB,WAAW;CACX;AAoBD;;AAlBC;EACC,WAAW;EACX,2BAA2B;EAC3B,kBAAkB;EAClB,WAAW;EACX,mBAAmB;CACpB;;AACA;EACC,gBAAgB;EAChB,mCAAmC;EACnC,kCAAkC;EAClC,sBAAsB;EACtB,WAAW;EACX,kBAAkB;EAClB,SAAS;EACT,iBAAiB;EACjB,eAAe;CAChB;;AAGD;;CAEC,yBAAyB;CACzB;AAOD;;AANC;EACC,cAAc;CACf;;AACA;EACC,cAAc;CACf;;AAGD;CACC,SAAS;AACV;;AAEA;;CAEC,mBAAmB;CACnB,aAAa;CACb,kBAAkB;CAClB,yBAAyB;CACzB,gBAAgB;;AAOjB;;AANC;EACC,aAAa;EACb,cAAc;EACd,mBAAmB;CACpB;;AAID;CACC,iBAAiB;CACjB,oBAAoB;AACrB;;AAEA;CACC,iBAAiB;CACjB,qBAAqB;CACrB,gBAAgB;CAChB,kBAAkB;CAClB,mCAAmC;AACpC;;AAEA;;CAEC,0CAA0C;CAC1C,8BAAsB;CAAtB;;AAKD;;AAJC;EACC,qBAA0B;CAC3B;;AAID;;CAEC,WAAW;CACX,kBAAkB;CAClB,kBAAkB;AACnB;;AAEA;CACC,eAAe;CACf,cAAc;AACf;;AAEA;CACC,YAAY;CACZ,UAAU;CACV,WAAW;CACX,cAAc;CACd,sBAAsB;CACtB,wBAAwB;CACxB,kBAAkB;CAClB,SAAS;CACT,QAAQ;CACR,gCAAwB;SAAxB,wBAAwB;AACzB;;AAEA;CACC,qBAAqB;CACrB,kBAAkB;CAClB,gBAAgB;CAChB,mCAAmC;CACnC,kCAAkC;CAClC,sBAAsB;CACtB,eAAe;CACf,iBAAiB;CACjB,sBAAsB;CACtB,gBAAgB;AACjB;;AAEA;CACC,cAAc;CACd,WAAW;CACX,WAAW;CACX,iBAAiB;CACjB,kBAAkB;AACnB;;AAEA;CACC,cAAc;CACd,WAAW;CACX,eAAe;AAChB;;AAEA;CACC,YAAY;AACb;;AAEA;;CAEC;EACC,aAAa;CACd;;AAED","file":"updraftplus-tour-1-16-
|
1 |
+
{"version":3,"sources":["css/updraftplus-tour.scss"],"names":[],"mappings":"AAEA;CACC,WAAW;CACX,0BAA0B;AAC3B;;AAEA;CACC,eAAe;AAChB;;AAEA;CACC,kBAAkB;CAClB,oBAAY;SAAZ,YAAY;CACZ,sFAA8E;SAA9E,8EAA8E;AAC/E;;AAEA;;;;CAIC,aAAa;AACd;;AAEA;;;CAGC,4BAAiC;AAClC;;AAEA;CACC,yBAA8B;CAC9B,0BAA0B;CAC1B,mBAAmB;AACpB;;AAEA;CACC,WAAW;CACX,gBAAgB;CAChB,WAAW;AACZ;;AAEA;CACC,YAAY;CACZ,6BAA6B;CAC7B,gBAAgB;CAChB,sBAAsB;CACtB,kBAAkB;CAClB,WAAW;CACX,YAAY;CACZ,iBAAiB;CACjB,UAAU;CACV,kBAAkB;CAClB,WAAW;CACX,kBAAkB;CAClB,WAAW;CACX;AAoBD;;AAlBC;EACC,WAAW;EACX,2BAA2B;EAC3B,kBAAkB;EAClB,WAAW;EACX,mBAAmB;CACpB;;AACA;EACC,gBAAgB;EAChB,mCAAmC;EACnC,kCAAkC;EAClC,sBAAsB;EACtB,WAAW;EACX,kBAAkB;EAClB,SAAS;EACT,iBAAiB;EACjB,eAAe;CAChB;;AAGD;;CAEC,yBAAyB;CACzB;AAOD;;AANC;EACC,cAAc;CACf;;AACA;EACC,cAAc;CACf;;AAGD;CACC,SAAS;AACV;;AAEA;;CAEC,mBAAmB;CACnB,aAAa;CACb,kBAAkB;CAClB,yBAAyB;CACzB,gBAAgB;;AAOjB;;AANC;EACC,aAAa;EACb,cAAc;EACd,mBAAmB;CACpB;;AAID;CACC,iBAAiB;CACjB,oBAAoB;AACrB;;AAEA;CACC,iBAAiB;CACjB,qBAAqB;CACrB,gBAAgB;CAChB,kBAAkB;CAClB,mCAAmC;AACpC;;AAEA;;CAEC,0CAA0C;CAC1C,8BAAsB;CAAtB;;AAKD;;AAJC;EACC,qBAA0B;CAC3B;;AAID;;CAEC,WAAW;CACX,kBAAkB;CAClB,kBAAkB;AACnB;;AAEA;CACC,eAAe;CACf,cAAc;AACf;;AAEA;CACC,YAAY;CACZ,UAAU;CACV,WAAW;CACX,cAAc;CACd,sBAAsB;CACtB,wBAAwB;CACxB,kBAAkB;CAClB,SAAS;CACT,QAAQ;CACR,gCAAwB;SAAxB,wBAAwB;AACzB;;AAEA;CACC,qBAAqB;CACrB,kBAAkB;CAClB,gBAAgB;CAChB,mCAAmC;CACnC,kCAAkC;CAClC,sBAAsB;CACtB,eAAe;CACf,iBAAiB;CACjB,sBAAsB;CACtB,gBAAgB;AACjB;;AAEA;CACC,cAAc;CACd,WAAW;CACX,WAAW;CACX,iBAAiB;CACjB,kBAAkB;AACnB;;AAEA;CACC,cAAc;CACd,WAAW;CACX,eAAe;AAChB;;AAEA;CACC,YAAY;AACb;;AAEA;;CAEC;EACC,aAAa;CACd;;AAED","file":"updraftplus-tour-1-16-67.min.css","sourcesContent":["$udp_primary: #DD6823;\n$wp_blue: #0073AA;\n.shepherd-theme-arrows-plain-buttons {\n\tz-index: 99;\n\tmax-width: 390px!important;\n}\n\n.shepherd-theme-arrows-plain-buttons.super-index {\n\tz-index: 999999;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content {\n\tborder-radius: 3px;\n\tfilter: none;\n\tbox-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15), 0px 10px 40px rgba(0, 0, 0, 0.15);\n}\n\n.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,\n.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,\n.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,\n.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {\n\tdisplay: none;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before,\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before,\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {\n\tborder-bottom-color: $udp_primary;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header {\n\tbackground-color: $udp_primary;\n\tborder-radius: 3px 3px 0 0;\n\tpadding-right: 90px;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header h3 {\n\tcolor: #FFF;\n\tfont-size: 1.2em;\n\tfloat: none;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {\n\topacity: 0.7;\n\tcolor: rgba(255, 255, 255, 0);\n\tfont-size: 0.8em;\n\tborder: 1px solid #FFF;\n\tborder-radius: 50%;\n\twidth: 22px;\n\theight: 22px;\n\tline-height: 20px;\n\tpadding: 0;\n\ttext-align: center;\n\tfloat: none;\n\tposition: absolute;\n\tright: 11px;\n\ttop: 12px;\n\n\t&::before {\n\t\tcolor: #FFF;\n\t\tcontent: attr(data-btntext);\n\t\tposition: absolute;\n\t\tright: 20px;\n\t\tpadding-right: 10px;\n\t}\n\t&::after {\n\t\tcontent: \"\\f335\";\n\t\t-webkit-font-smoothing: antialiased;\n\t\t-moz-osx-font-smoothing: grayscale;\n\t\tfont-family: dashicons;\n\t\tcolor: #FFF;\n\t\tposition: absolute;\n\t\tleft: 2px;\n\t\tline-height: 21px;\n\t\tfont-size: 16px;\n\t}\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover,\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus {\n\tborder: 1px solid #A04E00;\n\topacity: 1;\n\t&::before {\n\t\tcolor: #A04E00;\n\t}\n\t&::after {\n\t\tcolor: #A04E00;\n\t}\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {\n\ttop: 44px;\n}\n\n.shepherd-content .ud-notice {\n\n\tbackground: #F0F0F0;\n\tpadding: 14px;\n\tborder-radius: 4px;\n\tfont-size: 90% !important;\n\tline-height: 1.5;\n\th3 {\n\t\tmargin-top: 0;\n\t\tpadding-top: 0;\n\t\tmargin-bottom: .5em;\n\t}\n\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text p {\n\tmargin-top: 0.5em;\n\tmargin-bottom: 1.3em;\n}\n\n.ud-notice span.ud-special-offer {\n\tfont-weight: bold;\n\tdisplay: inline-block;\n\tpadding: 1px 6px;\n\tborder-radius: 3px;\n\tbackground: rgba(217, 105, 0, 0.09);\n}\n\nlabel[for=updraft_servicecheckbox_updraftvault] {\n\n\tborder: 1px solid rgba(204, 204, 204, 0.4);\n\ttransition: border .5s;\n\t&.emphasize {\n\t\tborder-color: $udp_primary;\n\t}\n\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back,\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end {\n\tfloat: left;\n\tposition: relative;\n\tpadding-left: 10px;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end {\n\tpadding-left: 0;\n\tcolor: #B7B7B7;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back::before {\n\tcontent: ' ';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tborder-left: 1px solid;\n\tborder-bottom: 1px solid;\n\tposition: absolute;\n\tleft: 0px;\n\ttop: 8px;\n\ttransform: rotate(45deg);\n}\n\na.shepherd-button.udp-tour-end::before {\n\tdisplay: inline-block;\n\tposition: relative;\n\tcontent: \"\\f335\";\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n\tfont-family: dashicons;\n\tfont-size: 20px;\n\tline-height: 20px;\n\tvertical-align: middle;\n\tmargin-top: -2px;\n}\n\n.updraftplus-welcome-logo {\n\tdisplay: block;\n\twidth: 70px;\n\tfloat: left;\n\tmargin-top: -11px;\n\tmargin-right: 12px;\n}\n\n.updraftplus-welcome-logo img {\n\tdisplay: block;\n\twidth: auto;\n\tmax-width: 100%;\n}\n\n.highlight-udp .plugins #the-list tr:not([data-slug=\"updraftplus\"]) {\n\topacity: 0.3;\n}\n\n@media(max-width: 790px) {\n\n\t.shepherd-element.shepherd-theme-arrows-plain-buttons {\n\t\tdisplay: none;\n\t}\n\n}\n"]}
|
@@ -137,6 +137,9 @@ class UpdraftPlus_S3_Compat {
|
|
137 |
if ($use_ssl) $opts['ssl.certificate_authority'] = $ssl_ca_cert;
|
138 |
|
139 |
$this->client = Aws\S3\S3Client::factory($opts);
|
|
|
|
|
|
|
140 |
}
|
141 |
|
142 |
/**
|
137 |
if ($use_ssl) $opts['ssl.certificate_authority'] = $ssl_ca_cert;
|
138 |
|
139 |
$this->client = Aws\S3\S3Client::factory($opts);
|
140 |
+
|
141 |
+
global $updraftplus;
|
142 |
+
$this->client->setUserAgent(' UpdraftPlus/'.$updraftplus->version, true);
|
143 |
}
|
144 |
|
145 |
/**
|
File without changes
|
@@ -1,2 +1,2 @@
|
|
1 |
@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body.udp-modal-is-opened{overflow:hidden}.udp-modal{position:fixed;top:0;left:0;bottom:0;right:0;z-index:20000}.udp-modal__overlay{width:100%;height:100%;position:absolute;background:#000;opacity:.8;z-index:1}.udp-modal__modal{position:absolute;z-index:2;left:0;top:32px;bottom:0;right:0;background:#FFF;-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.45882);box-shadow:0 4px 10px rgba(0,0,0,0.45882);overflow:auto}.udp-modal__content{position:relative;overflow:auto}.udp-modal__content .img{padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center}.udp-modal__content .img img{max-width:100%}.udp-modal__content .text{padding:40px}.udp-modal.loading{background-image:url()}.udp-modal.loading::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-0.5em;margin-top:-0.5em;content:'';-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;background:url('loader.svg') center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:#000;z-index:3;opacity:.5}.udp-modal.loading .udp-modal__content,.udp-modal.loading .udp-modal__sidebar,.iframe-is-opened .udp-modal__content,.iframe-is-opened .udp-modal__sidebar{display:none}.udp-modal__iframe{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;background:#FFF}.udp-modal__iframe iframe{position:absolute;width:100%;height:100%}@media(min-width:1200px){.udp-modal__modal{left:20px;top:calc(20px + 32px);bottom:20px;right:20px}}@media(max-width:782px){.udp-modal__modal{top:46px}}
|
2 |
-
/*# sourceMappingURL=udp-checkout-embed-1-16-
|
1 |
@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body.udp-modal-is-opened{overflow:hidden}.udp-modal{position:fixed;top:0;left:0;bottom:0;right:0;z-index:20000}.udp-modal__overlay{width:100%;height:100%;position:absolute;background:#000;opacity:.8;z-index:1}.udp-modal__modal{position:absolute;z-index:2;left:0;top:32px;bottom:0;right:0;background:#FFF;-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.45882);box-shadow:0 4px 10px rgba(0,0,0,0.45882);overflow:auto}.udp-modal__content{position:relative;overflow:auto}.udp-modal__content .img{padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center}.udp-modal__content .img img{max-width:100%}.udp-modal__content .text{padding:40px}.udp-modal.loading{background-image:url()}.udp-modal.loading::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-0.5em;margin-top:-0.5em;content:'';-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;background:url('loader.svg') center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:#000;z-index:3;opacity:.5}.udp-modal.loading .udp-modal__content,.udp-modal.loading .udp-modal__sidebar,.iframe-is-opened .udp-modal__content,.iframe-is-opened .udp-modal__sidebar{display:none}.udp-modal__iframe{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;background:#FFF}.udp-modal__iframe iframe{position:absolute;width:100%;height:100%}@media(min-width:1200px){.udp-modal__modal{left:20px;top:calc(20px + 32px);bottom:20px;right:20px}}@media(max-width:782px){.udp-modal__modal{top:46px}}
|
2 |
+
/*# sourceMappingURL=udp-checkout-embed-1-16-67.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["includes/checkout-embed/assets/udp-checkout-embed.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,mCAA2B;UAA3B,2BAA2B;CAC5B;;AAED;;AANA;;CAEC;EACC,mCAA2B;UAA3B,2BAA2B;CAC5B;;AAED;;AAEA;CACC,gBAAgB;AACjB;;AAEA;CACC,eAAe;CACf,MAAM;CACN,OAAO;CACP,SAAS;CACT,QAAQ;CACR,cAAc;AACf;;AAEA;CACC,WAAW;CACX,YAAY;CACZ,kBAAkB;CAClB,gBAAgB;CAChB,YAAY;CACZ,UAAU;AACX;;AAEA;CACC,kBAAkB;CAClB,UAAU;CACV,OAAO;CACP,SAAS;CACT,SAAS;CACT,QAAQ;CACR,gBAAgB;CAChB,oDAAkC;SAAlC,4CAAkC;CAClC,cAAc;AACf;;AAEA;CACC,kBAAkB;CAClB,cAAc;AACf;;AAEA;CACC,eAAe;CACf,8BAAsB;SAAtB,sBAAsB;CACtB,kBAAkB;AACnB;;AAEA;CACC,eAAe;AAChB;;AAEA;CACC,aAAa;AACd;;AAEA;CACC,uBAAuB;AACxB;;AAEA;CACC,WAAW;CACX,UAAU;CACV,cAAc;CACd,kBAAkB;CAClB,QAAQ;CACR,SAAS;CACT,mBAAmB;CACnB,kBAAkB;CAClB,WAAW;CACX,0CAA0C;CAC1C,kCAAkC;CAClC,2CAA2C;CAC3C,sBAAsB;CACtB,cAAc;CACd,kBAAkB;CAClB,cAAc;CACd,WAAW;CACX,UAAU;CACV,YAAY;AACb;;AAEA;;;;CAIC,aAAa;AACd;;AAEA;CACC,kBAAkB;CAClB,MAAM;CACN,OAAO;CACP,QAAQ;CACR,SAAS;CACT,UAAU;CACV,gBAAgB;AACjB;;AAEA;CACC,kBAAkB;CAClB,WAAW;CACX,YAAY;AACb;;AAEA;;CAEC;EACC,UAAU;EACV,sBAAsB;EACtB,YAAY;EACZ,WAAW;CACZ;;AAED;;AAEA;;CAEC;EACC,SAAS;CACV;;AAED","file":"udp-checkout-embed-1-16-
|
1 |
+
{"version":3,"sources":["includes/checkout-embed/assets/udp-checkout-embed.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,mCAA2B;UAA3B,2BAA2B;CAC5B;;AAED;;AANA;;CAEC;EACC,mCAA2B;UAA3B,2BAA2B;CAC5B;;AAED;;AAEA;CACC,gBAAgB;AACjB;;AAEA;CACC,eAAe;CACf,MAAM;CACN,OAAO;CACP,SAAS;CACT,QAAQ;CACR,cAAc;AACf;;AAEA;CACC,WAAW;CACX,YAAY;CACZ,kBAAkB;CAClB,gBAAgB;CAChB,YAAY;CACZ,UAAU;AACX;;AAEA;CACC,kBAAkB;CAClB,UAAU;CACV,OAAO;CACP,SAAS;CACT,SAAS;CACT,QAAQ;CACR,gBAAgB;CAChB,oDAAkC;SAAlC,4CAAkC;CAClC,cAAc;AACf;;AAEA;CACC,kBAAkB;CAClB,cAAc;AACf;;AAEA;CACC,eAAe;CACf,8BAAsB;SAAtB,sBAAsB;CACtB,kBAAkB;AACnB;;AAEA;CACC,eAAe;AAChB;;AAEA;CACC,aAAa;AACd;;AAEA;CACC,uBAAuB;AACxB;;AAEA;CACC,WAAW;CACX,UAAU;CACV,cAAc;CACd,kBAAkB;CAClB,QAAQ;CACR,SAAS;CACT,mBAAmB;CACnB,kBAAkB;CAClB,WAAW;CACX,0CAA0C;CAC1C,kCAAkC;CAClC,2CAA2C;CAC3C,sBAAsB;CACtB,cAAc;CACd,kBAAkB;CAClB,cAAc;CACd,WAAW;CACX,UAAU;CACV,YAAY;AACb;;AAEA;;;;CAIC,aAAa;AACd;;AAEA;CACC,kBAAkB;CAClB,MAAM;CACN,OAAO;CACP,QAAQ;CACR,SAAS;CACT,UAAU;CACV,gBAAgB;AACjB;;AAEA;CACC,kBAAkB;CAClB,WAAW;CACX,YAAY;AACb;;AAEA;;CAEC;EACC,UAAU;EACV,sBAAsB;EACtB,YAAY;EACZ,WAAW;CACZ;;AAED;;AAEA;;CAEC;EACC,SAAS;CACV;;AAED","file":"udp-checkout-embed-1-16-67.min.css","sourcesContent":["@keyframes spin {\n\n\t100% {\n\t\ttransform: rotate( 360deg );\n\t}\n\n}\n\nbody.udp-modal-is-opened {\n\toverflow: hidden;\n}\n\n.udp-modal {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tbottom: 0;\n\tright: 0;\n\tz-index: 20000;\n}\n\n.udp-modal__overlay {\n\twidth: 100%;\n\theight: 100%;\n\tposition: absolute;\n\tbackground: #000;\n\topacity: 0.8;\n\tz-index: 1;\n}\n\n.udp-modal__modal {\n\tposition: absolute;\n\tz-index: 2;\n\tleft: 0;\n\ttop: 32px;\n\tbottom: 0;\n\tright: 0;\n\tbackground: #FFF;\n\tbox-shadow: 0px 4px 10px #00000075;\n\toverflow: auto;\n}\n\n.udp-modal__content {\n\tposition: relative;\n\toverflow: auto;\n}\n\n.udp-modal__content .img {\n\tpadding: 0 20px;\n\tbox-sizing: border-box;\n\ttext-align: center;\n}\n\n.udp-modal__content .img img {\n\tmax-width: 100%;\n}\n\n.udp-modal__content .text {\n\tpadding: 40px;\n}\n\n.udp-modal.loading {\n\tbackground-image: url();\n}\n\n.udp-modal.loading::before {\n\theight: 1em;\n\twidth: 1em;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\tmargin-left: -0.5em;\n\tmargin-top: -0.5em;\n\tcontent: '';\n\t-webkit-animation: spin 1s linear infinite;\n\tanimation: spin 1s linear infinite;\n\tbackground: url('loader.svg') center center;\n\tbackground-size: cover;\n\tline-height: 1;\n\ttext-align: center;\n\tfont-size: 2em;\n\tcolor: #000;\n\tz-index: 3;\n\topacity: 0.5;\n}\n\n.udp-modal.loading .udp-modal__content,\n.udp-modal.loading .udp-modal__sidebar,\n.iframe-is-opened .udp-modal__content,\n.iframe-is-opened .udp-modal__sidebar {\n\tdisplay: none;\n}\n\n.udp-modal__iframe {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tz-index: 3;\n\tbackground: #FFF;\n}\n\n.udp-modal__iframe iframe {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n}\n\n@media(min-width: 1200px) {\n\n\t.udp-modal__modal {\n\t\tleft: 20px;\n\t\ttop: calc(20px + 32px);\n\t\tbottom: 20px;\n\t\tright: 20px;\n\t}\n\n}\n\n@media(max-width: 782px) {\n\n\t.udp-modal__modal {\n\t\ttop: 46px;\n\t}\n\n}"]}
|
File without changes
|
@@ -112,7 +112,7 @@ class UpdraftPlus_Search_Replace {
|
|
112 |
|
113 |
$where = '';
|
114 |
// Opportunity to use internal knowledge on tables which may be huge
|
115 |
-
if ('postmeta' == $stripped_table && ((is_array($search) && strpos($search[0], 'http')
|
116 |
$where = " WHERE meta_value LIKE '%http%'";
|
117 |
}
|
118 |
|
112 |
|
113 |
$where = '';
|
114 |
// Opportunity to use internal knowledge on tables which may be huge
|
115 |
+
if ('postmeta' == $stripped_table && ((is_array($search) && 0 === strpos($search[0], 'http')) || (is_string($search) && 0 === strpos($search, 'http')))) {
|
116 |
$where = " WHERE meta_value LIKE '%http%'";
|
117 |
}
|
118 |
|
@@ -1,2 +1,2 @@
|
|
1 |
/* jQuery UI - v1.11.4 - 2015-12-05* http://jqueryui.com* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px* Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:alpha(opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default !important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:.4em 2.1em .4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{-webkit-filter:inherit;filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:0;border-bottom:0;border-right:0}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #AAA;box-shadow:0 0 5px #AAA}body .ui-tooltip{border-width:2px}.ui-widget{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #DDD;background:#EEE url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;color:#FFF;font-weight:bold}.ui-widget-header a{color:#FFF}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #CCC;background:#f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#2b2b2b}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;color:#FFF}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#FFF}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#FFF}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:alpha(opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:alpha(opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:alpha(opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_ffd27a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;opacity:.5;filter:alpha(opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000;opacity:.2;filter:alpha(opacity=20);border-radius:5px}
|
2 |
-
/*# sourceMappingURL=jquery-ui.custom-v1.11.4-1-16-
|
1 |
/* jQuery UI - v1.11.4 - 2015-12-05* http://jqueryui.com* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px* Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:alpha(opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default !important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,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");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:.4em 2.1em .4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{-webkit-filter:inherit;filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:0;border-bottom:0;border-right:0}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #AAA;box-shadow:0 0 5px #AAA}body .ui-tooltip{border-width:2px}.ui-widget{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #DDD;background:#EEE url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;color:#FFF;font-weight:bold}.ui-widget-header a{color:#FFF}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #CCC;background:#f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#2b2b2b}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;color:#FFF}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#FFF}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#FFF}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:alpha(opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:alpha(opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:alpha(opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_ffd27a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;opacity:.5;filter:alpha(opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000;opacity:.2;filter:alpha(opacity=20);border-radius:5px}
|
2 |
+
/*# sourceMappingURL=jquery-ui.custom-v1.11.4-1-16-67.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["includes/jquery-ui.custom-v1.11.4.css"],"names":[],"mappings":"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","file":"jquery-ui.custom-v1.11.4-1-16-66.min.css","sourcesContent":["/*! jQuery UI - v1.11.4 - 2015-12-05\n* http://jqueryui.com\n* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css\n* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n\n.ui-helper-clearfix {\n\tmin-height: 0; /* support: IE7 */\n}\n\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter: alpha(opacity=0); /* support: IE8 */\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n\n.ui-draggable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable {\n\tposition: relative;\n}\n\n.ui-resizable-handle {\n\tposition: absolute;\n\tfont-size: 0.1px;\n\tdisplay: block;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable-disabled .ui-resizable-handle,\n.ui-resizable-autohide .ui-resizable-handle {\n\tdisplay: none;\n}\n\n.ui-resizable-n {\n\tcursor: n-resize;\n\theight: 7px;\n\twidth: 100%;\n\ttop: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-s {\n\tcursor: s-resize;\n\theight: 7px;\n\twidth: 100%;\n\tbottom: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-e {\n\tcursor: e-resize;\n\twidth: 7px;\n\tright: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-w {\n\tcursor: w-resize;\n\twidth: 7px;\n\tleft: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-se {\n\tcursor: se-resize;\n\twidth: 12px;\n\theight: 12px;\n\tright: 1px;\n\tbottom: 1px;\n}\n\n.ui-resizable-sw {\n\tcursor: sw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\tbottom: -5px;\n}\n\n.ui-resizable-nw {\n\tcursor: nw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\ttop: -5px;\n}\n\n.ui-resizable-ne {\n\tcursor: ne-resize;\n\twidth: 9px;\n\theight: 9px;\n\tright: -5px;\n\ttop: -5px;\n}\n\n.ui-selectable {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-selectable-helper {\n\tposition: absolute;\n\tz-index: 100;\n\tborder: 1px dotted black;\n}\n\n.ui-sortable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-accordion .ui-accordion-header {\n\tdisplay: block;\n\tcursor: pointer;\n\tposition: relative;\n\tmargin: 2px 0 0 0;\n\tpadding: .5em .5em .5em .7em;\n\tmin-height: 0; /* support: IE7 */\n\tfont-size: 100%;\n}\n\n.ui-accordion .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n\n.ui-accordion .ui-accordion-icons .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n\n.ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tposition: absolute;\n\tleft: .5em;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-accordion .ui-accordion-content {\n\tpadding: 1em 2.2em;\n\tborder-top: 0;\n\toverflow: auto;\n}\n\n.ui-autocomplete {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tcursor: default;\n}\n\n.ui-button {\n\tdisplay: inline-block;\n\tposition: relative;\n\tpadding: 0;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\toverflow: visible; /* removes extra width in IE */\n}\n\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2.2em;\n}\n\n/* button elements seem to need a little more width */\nbutton.ui-button-icon-only {\n\twidth: 2.4em;\n}\n\n.ui-button-icons-only {\n\twidth: 3.4em;\n}\n\nbutton.ui-button-icons-only {\n\twidth: 3.7em;\n}\n\n/* button text element */\n.ui-button .ui-button-text {\n\tdisplay: block;\n\tline-height: normal;\n}\n\n.ui-button-text-only .ui-button-text {\n\tpadding: .4em 1em;\n}\n\n.ui-button-icon-only .ui-button-text,\n.ui-button-icons-only .ui-button-text {\n\tpadding: .4em;\n\ttext-indent: -9999999px;\n}\n\n.ui-button-text-icon-primary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 1em .4em 2.1em;\n}\n\n.ui-button-text-icon-secondary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 2.1em .4em 1em;\n}\n\n.ui-button-text-icons .ui-button-text {\n\tpadding-left: 2.1em;\n\tpadding-right: 2.1em;\n}\n\n/* no icon support for input elements, provide padding by default */\ninput.ui-button {\n\tpadding: .4em 1em;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon,\n.ui-button-text-icon-primary .ui-icon,\n.ui-button-text-icon-secondary .ui-icon,\n.ui-button-text-icons .ui-icon,\n.ui-button-icons-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-button-icon-only .ui-icon {\n\tleft: 50%;\n\tmargin-left: -8px;\n}\n\n.ui-button-text-icon-primary .ui-button-icon-primary,\n.ui-button-text-icons .ui-button-icon-primary,\n.ui-button-icons-only .ui-button-icon-primary {\n\tleft: .5em;\n}\n\n.ui-button-text-icon-secondary .ui-button-icon-secondary,\n.ui-button-text-icons .ui-button-icon-secondary,\n.ui-button-icons-only .ui-button-icon-secondary {\n\tright: .5em;\n}\n\n/* button sets */\n.ui-buttonset {\n\tmargin-right: 7px;\n}\n\n.ui-buttonset .ui-button {\n\tmargin-left: 0;\n\tmargin-right: -.3em;\n}\n\n/* workarounds */\n/* reset extra padding in Firefox, see h5bp.com/l */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n\n.ui-datepicker {\n\twidth: 17em;\n\tpadding: .2em .2em 0;\n\tdisplay: none;\n}\n\n.ui-datepicker .ui-datepicker-header {\n\tposition: relative;\n\tpadding: .2em 0;\n}\n\n.ui-datepicker .ui-datepicker-prev,\n.ui-datepicker .ui-datepicker-next {\n\tposition: absolute;\n\ttop: 2px;\n\twidth: 1.8em;\n\theight: 1.8em;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover,\n.ui-datepicker .ui-datepicker-next-hover {\n\ttop: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev {\n\tleft: 2px;\n}\n\n.ui-datepicker .ui-datepicker-next {\n\tright: 2px;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover {\n\tleft: 1px;\n}\n\n.ui-datepicker .ui-datepicker-next-hover {\n\tright: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev span,\n.ui-datepicker .ui-datepicker-next span {\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 50%;\n\tmargin-left: -8px;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-datepicker .ui-datepicker-title {\n\tmargin: 0 2.3em;\n\tline-height: 1.8em;\n\ttext-align: center;\n}\n\n.ui-datepicker .ui-datepicker-title select {\n\tfont-size: 1em;\n\tmargin: 1px 0;\n}\n\n.ui-datepicker select.ui-datepicker-month,\n.ui-datepicker select.ui-datepicker-year {\n\twidth: 45%;\n}\n\n.ui-datepicker table {\n\twidth: 100%;\n\tfont-size: .9em;\n\tborder-collapse: collapse;\n\tmargin: 0 0 .4em;\n}\n\n.ui-datepicker th {\n\tpadding: .7em .3em;\n\ttext-align: center;\n\tfont-weight: bold;\n\tborder: 0;\n}\n\n.ui-datepicker td {\n\tborder: 0;\n\tpadding: 1px;\n}\n\n.ui-datepicker td span,\n.ui-datepicker td a {\n\tdisplay: block;\n\tpadding: .2em;\n\ttext-align: right;\n\ttext-decoration: none;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane {\n\tbackground-image: none;\n\tmargin: .7em 0 0 0;\n\tpadding: 0 .2em;\n\tborder-left: 0;\n\tborder-right: 0;\n\tborder-bottom: 0;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button {\n\tfloat: right;\n\tmargin: .5em .2em .4em;\n\tcursor: pointer;\n\tpadding: .2em .6em .3em .6em;\n\twidth: auto;\n\toverflow: visible;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {\n\tfloat: left;\n}\n\n/* with multiple calendars */\n.ui-datepicker.ui-datepicker-multi {\n\twidth: auto;\n}\n\n.ui-datepicker-multi .ui-datepicker-group {\n\tfloat: left;\n}\n\n.ui-datepicker-multi .ui-datepicker-group table {\n\twidth: 95%;\n\tmargin: 0 auto .4em;\n}\n\n.ui-datepicker-multi-2 .ui-datepicker-group {\n\twidth: 50%;\n}\n\n.ui-datepicker-multi-3 .ui-datepicker-group {\n\twidth: 33.3%;\n}\n\n.ui-datepicker-multi-4 .ui-datepicker-group {\n\twidth: 25%;\n}\n\n.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-left-width: 0;\n}\n\n.ui-datepicker-multi .ui-datepicker-buttonpane {\n\tclear: left;\n}\n\n.ui-datepicker-row-break {\n\tclear: both;\n\twidth: 100%;\n\tfont-size: 0;\n}\n\n/* RTL support */\n.ui-datepicker-rtl {\n\tdirection: rtl;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev {\n\tright: 2px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next {\n\tleft: 2px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev:hover {\n\tright: 1px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next:hover {\n\tleft: 1px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane {\n\tclear: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button {\n\tfloat: left;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,\n.ui-datepicker-rtl .ui-datepicker-group {\n\tfloat: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-right-width: 0;\n\tborder-left-width: 1px;\n}\n\n.ui-dialog {\n\toverflow: hidden;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tpadding: .2em;\n\toutline: 0;\n}\n\n.ui-dialog .ui-dialog-titlebar {\n\tpadding: .4em 1em;\n\tposition: relative;\n}\n\n.ui-dialog .ui-dialog-title {\n\tfloat: left;\n\tmargin: .1em 0;\n\twhite-space: nowrap;\n\twidth: 90%;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n.ui-dialog .ui-dialog-titlebar-close {\n\tposition: absolute;\n\tright: .3em;\n\ttop: 50%;\n\twidth: 20px;\n\tmargin: -10px 0 0 0;\n\tpadding: 1px;\n\theight: 20px;\n}\n\n.ui-dialog .ui-dialog-content {\n\tposition: relative;\n\tborder: 0;\n\tpadding: .5em 1em;\n\tbackground: none;\n\toverflow: auto;\n}\n\n.ui-dialog .ui-dialog-buttonpane {\n\ttext-align: left;\n\tborder-width: 1px 0 0 0;\n\tbackground-image: none;\n\tmargin-top: .5em;\n\tpadding: .3em 1em .5em .4em;\n}\n\n.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {\n\tfloat: right;\n}\n\n.ui-dialog .ui-dialog-buttonpane button {\n\tmargin: .5em .4em .5em 0;\n\tcursor: pointer;\n}\n\n.ui-dialog .ui-resizable-se {\n\twidth: 12px;\n\theight: 12px;\n\tright: -5px;\n\tbottom: -5px;\n\tbackground-position: 16px 16px;\n}\n\n.ui-draggable .ui-dialog-titlebar {\n\tcursor: move;\n}\n\n.ui-menu {\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n\tdisplay: block;\n\toutline: none;\n}\n\n.ui-menu .ui-menu {\n\tposition: absolute;\n}\n\n.ui-menu .ui-menu-item {\n\tposition: relative;\n\tmargin: 0;\n\tpadding: 3px 1em 3px .4em;\n\tcursor: pointer;\n\tmin-height: 0; /* support: IE7 */\n\t/* support: IE10, see #8844 */\n\tlist-style-image: url(\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\");\n}\n\n.ui-menu .ui-menu-divider {\n\tmargin: 5px 0;\n\theight: 0;\n\tfont-size: 0;\n\tline-height: 0;\n\tborder-width: 1px 0 0 0;\n}\n\n.ui-menu .ui-state-focus,\n.ui-menu .ui-state-active {\n\tmargin: -1px;\n}\n\n/* icon support */\n.ui-menu-icons {\n\tposition: relative;\n}\n\n.ui-menu-icons .ui-menu-item {\n\tpadding-left: 2em;\n}\n\n/* left-aligned */\n.ui-menu .ui-icon {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: .2em;\n\tmargin: auto 0;\n}\n\n/* right-aligned */\n.ui-menu .ui-menu-icon {\n\tleft: auto;\n\tright: 0;\n}\n\n.ui-progressbar {\n\theight: 2em;\n\ttext-align: left;\n\toverflow: hidden;\n}\n\n.ui-progressbar .ui-progressbar-value {\n\tmargin: -1px;\n\theight: 100%;\n}\n\n.ui-progressbar .ui-progressbar-overlay {\n\tbackground: url(\"data:image/gif;base64,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\");\n\theight: 100%;\n\tfilter: alpha(opacity=25); /* support: IE8 */\n\topacity: 0.25;\n}\n\n.ui-progressbar-indeterminate .ui-progressbar-value {\n\tbackground-image: none;\n}\n\n.ui-selectmenu-menu {\n\tpadding: 0;\n\tmargin: 0;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tdisplay: none;\n}\n\n.ui-selectmenu-menu .ui-menu {\n\toverflow: auto;\n\t/* Support: IE7 */\n\toverflow-x: hidden;\n\tpadding-bottom: 1px;\n}\n\n.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {\n\tfont-size: 1em;\n\tfont-weight: bold;\n\tline-height: 1.5;\n\tpadding: 2px 0.4em;\n\tmargin: 0.5em 0 0 0;\n\theight: auto;\n\tborder: 0;\n}\n\n.ui-selectmenu-open {\n\tdisplay: block;\n}\n\n.ui-selectmenu-button {\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tposition: relative;\n\ttext-decoration: none;\n\tcursor: pointer;\n}\n\n.ui-selectmenu-button span.ui-icon {\n\tright: 0.5em;\n\tleft: auto;\n\tmargin-top: -8px;\n\tposition: absolute;\n\ttop: 50%;\n}\n\n.ui-selectmenu-button span.ui-selectmenu-text {\n\ttext-align: left;\n\tpadding: 0.4em 2.1em 0.4em 1em;\n\tdisplay: block;\n\tline-height: 1.4;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n}\n\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* support: IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n\n.ui-spinner {\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tpadding: 0;\n\tvertical-align: middle;\n}\n\n.ui-spinner-input {\n\tborder: none;\n\tbackground: none;\n\tcolor: inherit;\n\tpadding: 0;\n\tmargin: .2em 0;\n\tvertical-align: middle;\n\tmargin-left: .4em;\n\tmargin-right: 22px;\n}\n\n.ui-spinner-button {\n\twidth: 16px;\n\theight: 50%;\n\tfont-size: .5em;\n\tpadding: 0;\n\tmargin: 0;\n\ttext-align: center;\n\tposition: absolute;\n\tcursor: default;\n\tdisplay: block;\n\toverflow: hidden;\n\tright: 0;\n}\n\n/* more specificity required here to override default borders */\n.ui-spinner a.ui-spinner-button {\n\tborder-top: none;\n\tborder-bottom: none;\n\tborder-right: none;\n}\n\n/* vertically center icon */\n.ui-spinner .ui-icon {\n\tposition: absolute;\n\tmargin-top: -8px;\n\ttop: 50%;\n\tleft: 0;\n}\n\n.ui-spinner-up {\n\ttop: 0;\n}\n\n.ui-spinner-down {\n\tbottom: 0;\n}\n\n/* TR overrides */\n.ui-spinner .ui-icon-triangle-1-s {\n\t/* need to fix icons sprite */\n\tbackground-position: -65px -16px;\n}\n\n.ui-tabs {\n\tposition: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as \"fixed\") */\n\tpadding: .2em;\n}\n\n.ui-tabs .ui-tabs-nav {\n\tmargin: 0;\n\tpadding: .2em .2em 0;\n}\n\n.ui-tabs .ui-tabs-nav li {\n\tlist-style: none;\n\tfloat: left;\n\tposition: relative;\n\ttop: 0;\n\tmargin: 1px .2em 0 0;\n\tborder-bottom-width: 0;\n\tpadding: 0;\n\twhite-space: nowrap;\n}\n\n.ui-tabs .ui-tabs-nav .ui-tabs-anchor {\n\tfloat: left;\n\tpadding: .5em 1em;\n\ttext-decoration: none;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active {\n\tmargin-bottom: -1px;\n\tpadding-bottom: 1px;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {\n\tcursor: text;\n}\n\n.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {\n\tcursor: pointer;\n}\n\n.ui-tabs .ui-tabs-panel {\n\tdisplay: block;\n\tborder-width: 0;\n\tpadding: 1em 1.4em;\n\tbackground: none;\n}\n\n.ui-tooltip {\n\tpadding: 8px;\n\tposition: absolute;\n\tz-index: 9999;\n\tmax-width: 300px;\n\tbox-shadow: 0 0 5px #AAA;\n}\n\nbody .ui-tooltip {\n\tborder-width: 2px;\n}\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1.1em;\n}\n\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1em;\n}\n\n.ui-widget-content {\n\tborder: 1px solid #DDD;\n\tbackground: #EEE url(\"images/ui-bg_highlight-soft_100_eeeeee_1x100.png\") 50% top repeat-x;\n\tcolor: #333;\n}\n\n.ui-widget-content a {\n\tcolor: #333;\n}\n\n.ui-widget-header {\n\tborder: 1px solid #E78F08;\n\tbackground: #F6A828 url(\"images/ui-bg_gloss-wave_35_f6a828_500x100.png\") 50% 50% repeat-x;\n\tcolor: #FFF;\n\tfont-weight: bold;\n}\n\n.ui-widget-header a {\n\tcolor: #FFF;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default {\n\tborder: 1px solid #CCC;\n\tbackground: #F6F6F6 url(\"images/ui-bg_glass_100_f6f6f6_1x400.png\") 50% 50% repeat-x;\n\tfont-weight: normal;\n\tcolor: #2B2B2B;\n}\n\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited {\n\tcolor: #1C94C4;\n\ttext-decoration: none;\n}\n\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited {\n\tcolor: #C77405;\n\ttext-decoration: none;\n}\n\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #EB8F00;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #FED22F;\n\tbackground: #FFE45C url(\"images/ui-bg_highlight-soft_75_ffe45c_1x100.png\") 50% top repeat-x;\n\tcolor: #363636;\n}\n\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #363636;\n}\n\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #CD0A0A;\n\tbackground: #B81900 url(\"images/ui-bg_diagonals-thick_18_b81900_40x40.png\") 50% 50% repeat;\n\tcolor: #FFF;\n}\n\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #FFF;\n}\n\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #FFF;\n}\n\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: 0.7;\n\tfilter: alpha(opacity=70); /* support: IE8 */\n\tfont-weight: normal;\n}\n\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: 0.35;\n\tfilter: alpha(opacity=35); /* support: IE8 */\n\tbackground-image: none;\n}\n\n.ui-state-disabled .ui-icon {\n\tfilter: alpha(opacity=35); /* support: IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-widget-header .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffffff_256x240.png\");\n}\n\n.ui-state-default .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-active .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-highlight .ui-icon {\n\tbackground-image: url(\"images/ui-icons_228ef1_256x240.png\");\n}\n\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffd27a_256x240.png\");\n}\n\n/* positioning */\n.ui-icon-blank {\n\tbackground-position: 16px 16px;\n}\n\n.ui-icon-carat-1-n {\n\tbackground-position: 0 0;\n}\n\n.ui-icon-carat-1-ne {\n\tbackground-position: -16px 0;\n}\n\n.ui-icon-carat-1-e {\n\tbackground-position: -32px 0;\n}\n\n.ui-icon-carat-1-se {\n\tbackground-position: -48px 0;\n}\n\n.ui-icon-carat-1-s {\n\tbackground-position: -64px 0;\n}\n\n.ui-icon-carat-1-sw {\n\tbackground-position: -80px 0;\n}\n\n.ui-icon-carat-1-w {\n\tbackground-position: -96px 0;\n}\n\n.ui-icon-carat-1-nw {\n\tbackground-position: -112px 0;\n}\n\n.ui-icon-carat-2-n-s {\n\tbackground-position: -128px 0;\n}\n\n.ui-icon-carat-2-e-w {\n\tbackground-position: -144px 0;\n}\n\n.ui-icon-triangle-1-n {\n\tbackground-position: 0 -16px;\n}\n\n.ui-icon-triangle-1-ne {\n\tbackground-position: -16px -16px;\n}\n\n.ui-icon-triangle-1-e {\n\tbackground-position: -32px -16px;\n}\n\n.ui-icon-triangle-1-se {\n\tbackground-position: -48px -16px;\n}\n\n.ui-icon-triangle-1-s {\n\tbackground-position: -64px -16px;\n}\n\n.ui-icon-triangle-1-sw {\n\tbackground-position: -80px -16px;\n}\n\n.ui-icon-triangle-1-w {\n\tbackground-position: -96px -16px;\n}\n\n.ui-icon-triangle-1-nw {\n\tbackground-position: -112px -16px;\n}\n\n.ui-icon-triangle-2-n-s {\n\tbackground-position: -128px -16px;\n}\n\n.ui-icon-triangle-2-e-w {\n\tbackground-position: -144px -16px;\n}\n\n.ui-icon-arrow-1-n {\n\tbackground-position: 0 -32px;\n}\n\n.ui-icon-arrow-1-ne {\n\tbackground-position: -16px -32px;\n}\n\n.ui-icon-arrow-1-e {\n\tbackground-position: -32px -32px;\n}\n\n.ui-icon-arrow-1-se {\n\tbackground-position: -48px -32px;\n}\n\n.ui-icon-arrow-1-s {\n\tbackground-position: -64px -32px;\n}\n\n.ui-icon-arrow-1-sw {\n\tbackground-position: -80px -32px;\n}\n\n.ui-icon-arrow-1-w {\n\tbackground-position: -96px -32px;\n}\n\n.ui-icon-arrow-1-nw {\n\tbackground-position: -112px -32px;\n}\n\n.ui-icon-arrow-2-n-s {\n\tbackground-position: -128px -32px;\n}\n\n.ui-icon-arrow-2-ne-sw {\n\tbackground-position: -144px -32px;\n}\n\n.ui-icon-arrow-2-e-w {\n\tbackground-position: -160px -32px;\n}\n\n.ui-icon-arrow-2-se-nw {\n\tbackground-position: -176px -32px;\n}\n\n.ui-icon-arrowstop-1-n {\n\tbackground-position: -192px -32px;\n}\n\n.ui-icon-arrowstop-1-e {\n\tbackground-position: -208px -32px;\n}\n\n.ui-icon-arrowstop-1-s {\n\tbackground-position: -224px -32px;\n}\n\n.ui-icon-arrowstop-1-w {\n\tbackground-position: -240px -32px;\n}\n\n.ui-icon-arrowthick-1-n {\n\tbackground-position: 0 -48px;\n}\n\n.ui-icon-arrowthick-1-ne {\n\tbackground-position: -16px -48px;\n}\n\n.ui-icon-arrowthick-1-e {\n\tbackground-position: -32px -48px;\n}\n\n.ui-icon-arrowthick-1-se {\n\tbackground-position: -48px -48px;\n}\n\n.ui-icon-arrowthick-1-s {\n\tbackground-position: -64px -48px;\n}\n\n.ui-icon-arrowthick-1-sw {\n\tbackground-position: -80px -48px;\n}\n\n.ui-icon-arrowthick-1-w {\n\tbackground-position: -96px -48px;\n}\n\n.ui-icon-arrowthick-1-nw {\n\tbackground-position: -112px -48px;\n}\n\n.ui-icon-arrowthick-2-n-s {\n\tbackground-position: -128px -48px;\n}\n\n.ui-icon-arrowthick-2-ne-sw {\n\tbackground-position: -144px -48px;\n}\n\n.ui-icon-arrowthick-2-e-w {\n\tbackground-position: -160px -48px;\n}\n\n.ui-icon-arrowthick-2-se-nw {\n\tbackground-position: -176px -48px;\n}\n\n.ui-icon-arrowthickstop-1-n {\n\tbackground-position: -192px -48px;\n}\n\n.ui-icon-arrowthickstop-1-e {\n\tbackground-position: -208px -48px;\n}\n\n.ui-icon-arrowthickstop-1-s {\n\tbackground-position: -224px -48px;\n}\n\n.ui-icon-arrowthickstop-1-w {\n\tbackground-position: -240px -48px;\n}\n\n.ui-icon-arrowreturnthick-1-w {\n\tbackground-position: 0 -64px;\n}\n\n.ui-icon-arrowreturnthick-1-n {\n\tbackground-position: -16px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-e {\n\tbackground-position: -32px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-s {\n\tbackground-position: -48px -64px;\n}\n\n.ui-icon-arrowreturn-1-w {\n\tbackground-position: -64px -64px;\n}\n\n.ui-icon-arrowreturn-1-n {\n\tbackground-position: -80px -64px;\n}\n\n.ui-icon-arrowreturn-1-e {\n\tbackground-position: -96px -64px;\n}\n\n.ui-icon-arrowreturn-1-s {\n\tbackground-position: -112px -64px;\n}\n\n.ui-icon-arrowrefresh-1-w {\n\tbackground-position: -128px -64px;\n}\n\n.ui-icon-arrowrefresh-1-n {\n\tbackground-position: -144px -64px;\n}\n\n.ui-icon-arrowrefresh-1-e {\n\tbackground-position: -160px -64px;\n}\n\n.ui-icon-arrowrefresh-1-s {\n\tbackground-position: -176px -64px;\n}\n\n.ui-icon-arrow-4 {\n\tbackground-position: 0 -80px;\n}\n\n.ui-icon-arrow-4-diag {\n\tbackground-position: -16px -80px;\n}\n\n.ui-icon-extlink {\n\tbackground-position: -32px -80px;\n}\n\n.ui-icon-newwin {\n\tbackground-position: -48px -80px;\n}\n\n.ui-icon-refresh {\n\tbackground-position: -64px -80px;\n}\n\n.ui-icon-shuffle {\n\tbackground-position: -80px -80px;\n}\n\n.ui-icon-transfer-e-w {\n\tbackground-position: -96px -80px;\n}\n\n.ui-icon-transferthick-e-w {\n\tbackground-position: -112px -80px;\n}\n\n.ui-icon-folder-collapsed {\n\tbackground-position: 0 -96px;\n}\n\n.ui-icon-folder-open {\n\tbackground-position: -16px -96px;\n}\n\n.ui-icon-document {\n\tbackground-position: -32px -96px;\n}\n\n.ui-icon-document-b {\n\tbackground-position: -48px -96px;\n}\n\n.ui-icon-note {\n\tbackground-position: -64px -96px;\n}\n\n.ui-icon-mail-closed {\n\tbackground-position: -80px -96px;\n}\n\n.ui-icon-mail-open {\n\tbackground-position: -96px -96px;\n}\n\n.ui-icon-suitcase {\n\tbackground-position: -112px -96px;\n}\n\n.ui-icon-comment {\n\tbackground-position: -128px -96px;\n}\n\n.ui-icon-person {\n\tbackground-position: -144px -96px;\n}\n\n.ui-icon-print {\n\tbackground-position: -160px -96px;\n}\n\n.ui-icon-trash {\n\tbackground-position: -176px -96px;\n}\n\n.ui-icon-locked {\n\tbackground-position: -192px -96px;\n}\n\n.ui-icon-unlocked {\n\tbackground-position: -208px -96px;\n}\n\n.ui-icon-bookmark {\n\tbackground-position: -224px -96px;\n}\n\n.ui-icon-tag {\n\tbackground-position: -240px -96px;\n}\n\n.ui-icon-home {\n\tbackground-position: 0 -112px;\n}\n\n.ui-icon-flag {\n\tbackground-position: -16px -112px;\n}\n\n.ui-icon-calendar {\n\tbackground-position: -32px -112px;\n}\n\n.ui-icon-cart {\n\tbackground-position: -48px -112px;\n}\n\n.ui-icon-pencil {\n\tbackground-position: -64px -112px;\n}\n\n.ui-icon-clock {\n\tbackground-position: -80px -112px;\n}\n\n.ui-icon-disk {\n\tbackground-position: -96px -112px;\n}\n\n.ui-icon-calculator {\n\tbackground-position: -112px -112px;\n}\n\n.ui-icon-zoomin {\n\tbackground-position: -128px -112px;\n}\n\n.ui-icon-zoomout {\n\tbackground-position: -144px -112px;\n}\n\n.ui-icon-search {\n\tbackground-position: -160px -112px;\n}\n\n.ui-icon-wrench {\n\tbackground-position: -176px -112px;\n}\n\n.ui-icon-gear {\n\tbackground-position: -192px -112px;\n}\n\n.ui-icon-heart {\n\tbackground-position: -208px -112px;\n}\n\n.ui-icon-star {\n\tbackground-position: -224px -112px;\n}\n\n.ui-icon-link {\n\tbackground-position: -240px -112px;\n}\n\n.ui-icon-cancel {\n\tbackground-position: 0 -128px;\n}\n\n.ui-icon-plus {\n\tbackground-position: -16px -128px;\n}\n\n.ui-icon-plusthick {\n\tbackground-position: -32px -128px;\n}\n\n.ui-icon-minus {\n\tbackground-position: -48px -128px;\n}\n\n.ui-icon-minusthick {\n\tbackground-position: -64px -128px;\n}\n\n.ui-icon-close {\n\tbackground-position: -80px -128px;\n}\n\n.ui-icon-closethick {\n\tbackground-position: -96px -128px;\n}\n\n.ui-icon-key {\n\tbackground-position: -112px -128px;\n}\n\n.ui-icon-lightbulb {\n\tbackground-position: -128px -128px;\n}\n\n.ui-icon-scissors {\n\tbackground-position: -144px -128px;\n}\n\n.ui-icon-clipboard {\n\tbackground-position: -160px -128px;\n}\n\n.ui-icon-copy {\n\tbackground-position: -176px -128px;\n}\n\n.ui-icon-contact {\n\tbackground-position: -192px -128px;\n}\n\n.ui-icon-image {\n\tbackground-position: -208px -128px;\n}\n\n.ui-icon-video {\n\tbackground-position: -224px -128px;\n}\n\n.ui-icon-script {\n\tbackground-position: -240px -128px;\n}\n\n.ui-icon-alert {\n\tbackground-position: 0 -144px;\n}\n\n.ui-icon-info {\n\tbackground-position: -16px -144px;\n}\n\n.ui-icon-notice {\n\tbackground-position: -32px -144px;\n}\n\n.ui-icon-help {\n\tbackground-position: -48px -144px;\n}\n\n.ui-icon-check {\n\tbackground-position: -64px -144px;\n}\n\n.ui-icon-bullet {\n\tbackground-position: -80px -144px;\n}\n\n.ui-icon-radio-on {\n\tbackground-position: -96px -144px;\n}\n\n.ui-icon-radio-off {\n\tbackground-position: -112px -144px;\n}\n\n.ui-icon-pin-w {\n\tbackground-position: -128px -144px;\n}\n\n.ui-icon-pin-s {\n\tbackground-position: -144px -144px;\n}\n\n.ui-icon-play {\n\tbackground-position: 0 -160px;\n}\n\n.ui-icon-pause {\n\tbackground-position: -16px -160px;\n}\n\n.ui-icon-seek-next {\n\tbackground-position: -32px -160px;\n}\n\n.ui-icon-seek-prev {\n\tbackground-position: -48px -160px;\n}\n\n.ui-icon-seek-end {\n\tbackground-position: -64px -160px;\n}\n\n.ui-icon-seek-start {\n\tbackground-position: -80px -160px;\n}\n\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first {\n\tbackground-position: -80px -160px;\n}\n\n.ui-icon-stop {\n\tbackground-position: -96px -160px;\n}\n\n.ui-icon-eject {\n\tbackground-position: -112px -160px;\n}\n\n.ui-icon-volume-off {\n\tbackground-position: -128px -160px;\n}\n\n.ui-icon-volume-on {\n\tbackground-position: -144px -160px;\n}\n\n.ui-icon-power {\n\tbackground-position: 0 -176px;\n}\n\n.ui-icon-signal-diag {\n\tbackground-position: -16px -176px;\n}\n\n.ui-icon-signal {\n\tbackground-position: -32px -176px;\n}\n\n.ui-icon-battery-0 {\n\tbackground-position: -48px -176px;\n}\n\n.ui-icon-battery-1 {\n\tbackground-position: -64px -176px;\n}\n\n.ui-icon-battery-2 {\n\tbackground-position: -80px -176px;\n}\n\n.ui-icon-battery-3 {\n\tbackground-position: -96px -176px;\n}\n\n.ui-icon-circle-plus {\n\tbackground-position: 0 -192px;\n}\n\n.ui-icon-circle-minus {\n\tbackground-position: -16px -192px;\n}\n\n.ui-icon-circle-close {\n\tbackground-position: -32px -192px;\n}\n\n.ui-icon-circle-triangle-e {\n\tbackground-position: -48px -192px;\n}\n\n.ui-icon-circle-triangle-s {\n\tbackground-position: -64px -192px;\n}\n\n.ui-icon-circle-triangle-w {\n\tbackground-position: -80px -192px;\n}\n\n.ui-icon-circle-triangle-n {\n\tbackground-position: -96px -192px;\n}\n\n.ui-icon-circle-arrow-e {\n\tbackground-position: -112px -192px;\n}\n\n.ui-icon-circle-arrow-s {\n\tbackground-position: -128px -192px;\n}\n\n.ui-icon-circle-arrow-w {\n\tbackground-position: -144px -192px;\n}\n\n.ui-icon-circle-arrow-n {\n\tbackground-position: -160px -192px;\n}\n\n.ui-icon-circle-zoomin {\n\tbackground-position: -176px -192px;\n}\n\n.ui-icon-circle-zoomout {\n\tbackground-position: -192px -192px;\n}\n\n.ui-icon-circle-check {\n\tbackground-position: -208px -192px;\n}\n\n.ui-icon-circlesmall-plus {\n\tbackground-position: 0 -208px;\n}\n\n.ui-icon-circlesmall-minus {\n\tbackground-position: -16px -208px;\n}\n\n.ui-icon-circlesmall-close {\n\tbackground-position: -32px -208px;\n}\n\n.ui-icon-squaresmall-plus {\n\tbackground-position: -48px -208px;\n}\n\n.ui-icon-squaresmall-minus {\n\tbackground-position: -64px -208px;\n}\n\n.ui-icon-squaresmall-close {\n\tbackground-position: -80px -208px;\n}\n\n.ui-icon-grip-dotted-vertical {\n\tbackground-position: 0 -224px;\n}\n\n.ui-icon-grip-dotted-horizontal {\n\tbackground-position: -16px -224px;\n}\n\n.ui-icon-grip-solid-vertical {\n\tbackground-position: -32px -224px;\n}\n\n.ui-icon-grip-solid-horizontal {\n\tbackground-position: -48px -224px;\n}\n\n.ui-icon-gripsmall-diagonal-se {\n\tbackground-position: -64px -224px;\n}\n\n.ui-icon-grip-diagonal-se {\n\tbackground-position: -80px -224px;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 4px;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #666 url(\"images/ui-bg_diagonals-thick_20_666666_40x40.png\") 50% 50% repeat;\n\topacity: 0.5;\n\tfilter: alpha(opacity=50); /* support: IE8 */\n}\n\n.ui-widget-shadow {\n\tmargin: -5px 0 0 -5px;\n\tpadding: 5px;\n\tbackground: #000;\n\topacity: 0.2;\n\tfilter: alpha(opacity=20); /* support: IE8 */\n\tborder-radius: 5px;\n}"]}
|
1 |
+
{"version":3,"sources":["includes/jquery-ui.custom-v1.11.4.css"],"names":[],"mappings":"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","file":"jquery-ui.custom-v1.11.4-1-16-67.min.css","sourcesContent":["/*! jQuery UI - v1.11.4 - 2015-12-05\n* http://jqueryui.com\n* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css\n* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n\n.ui-helper-clearfix {\n\tmin-height: 0; /* support: IE7 */\n}\n\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter: alpha(opacity=0); /* support: IE8 */\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n\n.ui-draggable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable {\n\tposition: relative;\n}\n\n.ui-resizable-handle {\n\tposition: absolute;\n\tfont-size: 0.1px;\n\tdisplay: block;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable-disabled .ui-resizable-handle,\n.ui-resizable-autohide .ui-resizable-handle {\n\tdisplay: none;\n}\n\n.ui-resizable-n {\n\tcursor: n-resize;\n\theight: 7px;\n\twidth: 100%;\n\ttop: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-s {\n\tcursor: s-resize;\n\theight: 7px;\n\twidth: 100%;\n\tbottom: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-e {\n\tcursor: e-resize;\n\twidth: 7px;\n\tright: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-w {\n\tcursor: w-resize;\n\twidth: 7px;\n\tleft: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-se {\n\tcursor: se-resize;\n\twidth: 12px;\n\theight: 12px;\n\tright: 1px;\n\tbottom: 1px;\n}\n\n.ui-resizable-sw {\n\tcursor: sw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\tbottom: -5px;\n}\n\n.ui-resizable-nw {\n\tcursor: nw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\ttop: -5px;\n}\n\n.ui-resizable-ne {\n\tcursor: ne-resize;\n\twidth: 9px;\n\theight: 9px;\n\tright: -5px;\n\ttop: -5px;\n}\n\n.ui-selectable {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-selectable-helper {\n\tposition: absolute;\n\tz-index: 100;\n\tborder: 1px dotted black;\n}\n\n.ui-sortable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-accordion .ui-accordion-header {\n\tdisplay: block;\n\tcursor: pointer;\n\tposition: relative;\n\tmargin: 2px 0 0 0;\n\tpadding: .5em .5em .5em .7em;\n\tmin-height: 0; /* support: IE7 */\n\tfont-size: 100%;\n}\n\n.ui-accordion .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n\n.ui-accordion .ui-accordion-icons .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n\n.ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tposition: absolute;\n\tleft: .5em;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-accordion .ui-accordion-content {\n\tpadding: 1em 2.2em;\n\tborder-top: 0;\n\toverflow: auto;\n}\n\n.ui-autocomplete {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tcursor: default;\n}\n\n.ui-button {\n\tdisplay: inline-block;\n\tposition: relative;\n\tpadding: 0;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\toverflow: visible; /* removes extra width in IE */\n}\n\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2.2em;\n}\n\n/* button elements seem to need a little more width */\nbutton.ui-button-icon-only {\n\twidth: 2.4em;\n}\n\n.ui-button-icons-only {\n\twidth: 3.4em;\n}\n\nbutton.ui-button-icons-only {\n\twidth: 3.7em;\n}\n\n/* button text element */\n.ui-button .ui-button-text {\n\tdisplay: block;\n\tline-height: normal;\n}\n\n.ui-button-text-only .ui-button-text {\n\tpadding: .4em 1em;\n}\n\n.ui-button-icon-only .ui-button-text,\n.ui-button-icons-only .ui-button-text {\n\tpadding: .4em;\n\ttext-indent: -9999999px;\n}\n\n.ui-button-text-icon-primary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 1em .4em 2.1em;\n}\n\n.ui-button-text-icon-secondary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 2.1em .4em 1em;\n}\n\n.ui-button-text-icons .ui-button-text {\n\tpadding-left: 2.1em;\n\tpadding-right: 2.1em;\n}\n\n/* no icon support for input elements, provide padding by default */\ninput.ui-button {\n\tpadding: .4em 1em;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon,\n.ui-button-text-icon-primary .ui-icon,\n.ui-button-text-icon-secondary .ui-icon,\n.ui-button-text-icons .ui-icon,\n.ui-button-icons-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-button-icon-only .ui-icon {\n\tleft: 50%;\n\tmargin-left: -8px;\n}\n\n.ui-button-text-icon-primary .ui-button-icon-primary,\n.ui-button-text-icons .ui-button-icon-primary,\n.ui-button-icons-only .ui-button-icon-primary {\n\tleft: .5em;\n}\n\n.ui-button-text-icon-secondary .ui-button-icon-secondary,\n.ui-button-text-icons .ui-button-icon-secondary,\n.ui-button-icons-only .ui-button-icon-secondary {\n\tright: .5em;\n}\n\n/* button sets */\n.ui-buttonset {\n\tmargin-right: 7px;\n}\n\n.ui-buttonset .ui-button {\n\tmargin-left: 0;\n\tmargin-right: -.3em;\n}\n\n/* workarounds */\n/* reset extra padding in Firefox, see h5bp.com/l */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n\n.ui-datepicker {\n\twidth: 17em;\n\tpadding: .2em .2em 0;\n\tdisplay: none;\n}\n\n.ui-datepicker .ui-datepicker-header {\n\tposition: relative;\n\tpadding: .2em 0;\n}\n\n.ui-datepicker .ui-datepicker-prev,\n.ui-datepicker .ui-datepicker-next {\n\tposition: absolute;\n\ttop: 2px;\n\twidth: 1.8em;\n\theight: 1.8em;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover,\n.ui-datepicker .ui-datepicker-next-hover {\n\ttop: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev {\n\tleft: 2px;\n}\n\n.ui-datepicker .ui-datepicker-next {\n\tright: 2px;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover {\n\tleft: 1px;\n}\n\n.ui-datepicker .ui-datepicker-next-hover {\n\tright: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev span,\n.ui-datepicker .ui-datepicker-next span {\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 50%;\n\tmargin-left: -8px;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-datepicker .ui-datepicker-title {\n\tmargin: 0 2.3em;\n\tline-height: 1.8em;\n\ttext-align: center;\n}\n\n.ui-datepicker .ui-datepicker-title select {\n\tfont-size: 1em;\n\tmargin: 1px 0;\n}\n\n.ui-datepicker select.ui-datepicker-month,\n.ui-datepicker select.ui-datepicker-year {\n\twidth: 45%;\n}\n\n.ui-datepicker table {\n\twidth: 100%;\n\tfont-size: .9em;\n\tborder-collapse: collapse;\n\tmargin: 0 0 .4em;\n}\n\n.ui-datepicker th {\n\tpadding: .7em .3em;\n\ttext-align: center;\n\tfont-weight: bold;\n\tborder: 0;\n}\n\n.ui-datepicker td {\n\tborder: 0;\n\tpadding: 1px;\n}\n\n.ui-datepicker td span,\n.ui-datepicker td a {\n\tdisplay: block;\n\tpadding: .2em;\n\ttext-align: right;\n\ttext-decoration: none;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane {\n\tbackground-image: none;\n\tmargin: .7em 0 0 0;\n\tpadding: 0 .2em;\n\tborder-left: 0;\n\tborder-right: 0;\n\tborder-bottom: 0;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button {\n\tfloat: right;\n\tmargin: .5em .2em .4em;\n\tcursor: pointer;\n\tpadding: .2em .6em .3em .6em;\n\twidth: auto;\n\toverflow: visible;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {\n\tfloat: left;\n}\n\n/* with multiple calendars */\n.ui-datepicker.ui-datepicker-multi {\n\twidth: auto;\n}\n\n.ui-datepicker-multi .ui-datepicker-group {\n\tfloat: left;\n}\n\n.ui-datepicker-multi .ui-datepicker-group table {\n\twidth: 95%;\n\tmargin: 0 auto .4em;\n}\n\n.ui-datepicker-multi-2 .ui-datepicker-group {\n\twidth: 50%;\n}\n\n.ui-datepicker-multi-3 .ui-datepicker-group {\n\twidth: 33.3%;\n}\n\n.ui-datepicker-multi-4 .ui-datepicker-group {\n\twidth: 25%;\n}\n\n.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-left-width: 0;\n}\n\n.ui-datepicker-multi .ui-datepicker-buttonpane {\n\tclear: left;\n}\n\n.ui-datepicker-row-break {\n\tclear: both;\n\twidth: 100%;\n\tfont-size: 0;\n}\n\n/* RTL support */\n.ui-datepicker-rtl {\n\tdirection: rtl;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev {\n\tright: 2px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next {\n\tleft: 2px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev:hover {\n\tright: 1px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next:hover {\n\tleft: 1px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane {\n\tclear: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button {\n\tfloat: left;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,\n.ui-datepicker-rtl .ui-datepicker-group {\n\tfloat: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-right-width: 0;\n\tborder-left-width: 1px;\n}\n\n.ui-dialog {\n\toverflow: hidden;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tpadding: .2em;\n\toutline: 0;\n}\n\n.ui-dialog .ui-dialog-titlebar {\n\tpadding: .4em 1em;\n\tposition: relative;\n}\n\n.ui-dialog .ui-dialog-title {\n\tfloat: left;\n\tmargin: .1em 0;\n\twhite-space: nowrap;\n\twidth: 90%;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n.ui-dialog .ui-dialog-titlebar-close {\n\tposition: absolute;\n\tright: .3em;\n\ttop: 50%;\n\twidth: 20px;\n\tmargin: -10px 0 0 0;\n\tpadding: 1px;\n\theight: 20px;\n}\n\n.ui-dialog .ui-dialog-content {\n\tposition: relative;\n\tborder: 0;\n\tpadding: .5em 1em;\n\tbackground: none;\n\toverflow: auto;\n}\n\n.ui-dialog .ui-dialog-buttonpane {\n\ttext-align: left;\n\tborder-width: 1px 0 0 0;\n\tbackground-image: none;\n\tmargin-top: .5em;\n\tpadding: .3em 1em .5em .4em;\n}\n\n.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {\n\tfloat: right;\n}\n\n.ui-dialog .ui-dialog-buttonpane button {\n\tmargin: .5em .4em .5em 0;\n\tcursor: pointer;\n}\n\n.ui-dialog .ui-resizable-se {\n\twidth: 12px;\n\theight: 12px;\n\tright: -5px;\n\tbottom: -5px;\n\tbackground-position: 16px 16px;\n}\n\n.ui-draggable .ui-dialog-titlebar {\n\tcursor: move;\n}\n\n.ui-menu {\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n\tdisplay: block;\n\toutline: none;\n}\n\n.ui-menu .ui-menu {\n\tposition: absolute;\n}\n\n.ui-menu .ui-menu-item {\n\tposition: relative;\n\tmargin: 0;\n\tpadding: 3px 1em 3px .4em;\n\tcursor: pointer;\n\tmin-height: 0; /* support: IE7 */\n\t/* support: IE10, see #8844 */\n\tlist-style-image: url(\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\");\n}\n\n.ui-menu .ui-menu-divider {\n\tmargin: 5px 0;\n\theight: 0;\n\tfont-size: 0;\n\tline-height: 0;\n\tborder-width: 1px 0 0 0;\n}\n\n.ui-menu .ui-state-focus,\n.ui-menu .ui-state-active {\n\tmargin: -1px;\n}\n\n/* icon support */\n.ui-menu-icons {\n\tposition: relative;\n}\n\n.ui-menu-icons .ui-menu-item {\n\tpadding-left: 2em;\n}\n\n/* left-aligned */\n.ui-menu .ui-icon {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: .2em;\n\tmargin: auto 0;\n}\n\n/* right-aligned */\n.ui-menu .ui-menu-icon {\n\tleft: auto;\n\tright: 0;\n}\n\n.ui-progressbar {\n\theight: 2em;\n\ttext-align: left;\n\toverflow: hidden;\n}\n\n.ui-progressbar .ui-progressbar-value {\n\tmargin: -1px;\n\theight: 100%;\n}\n\n.ui-progressbar .ui-progressbar-overlay {\n\tbackground: url(\"data:image/gif;base64,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\");\n\theight: 100%;\n\tfilter: alpha(opacity=25); /* support: IE8 */\n\topacity: 0.25;\n}\n\n.ui-progressbar-indeterminate .ui-progressbar-value {\n\tbackground-image: none;\n}\n\n.ui-selectmenu-menu {\n\tpadding: 0;\n\tmargin: 0;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tdisplay: none;\n}\n\n.ui-selectmenu-menu .ui-menu {\n\toverflow: auto;\n\t/* Support: IE7 */\n\toverflow-x: hidden;\n\tpadding-bottom: 1px;\n}\n\n.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {\n\tfont-size: 1em;\n\tfont-weight: bold;\n\tline-height: 1.5;\n\tpadding: 2px 0.4em;\n\tmargin: 0.5em 0 0 0;\n\theight: auto;\n\tborder: 0;\n}\n\n.ui-selectmenu-open {\n\tdisplay: block;\n}\n\n.ui-selectmenu-button {\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tposition: relative;\n\ttext-decoration: none;\n\tcursor: pointer;\n}\n\n.ui-selectmenu-button span.ui-icon {\n\tright: 0.5em;\n\tleft: auto;\n\tmargin-top: -8px;\n\tposition: absolute;\n\ttop: 50%;\n}\n\n.ui-selectmenu-button span.ui-selectmenu-text {\n\ttext-align: left;\n\tpadding: 0.4em 2.1em 0.4em 1em;\n\tdisplay: block;\n\tline-height: 1.4;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n}\n\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* support: IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n\n.ui-spinner {\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tpadding: 0;\n\tvertical-align: middle;\n}\n\n.ui-spinner-input {\n\tborder: none;\n\tbackground: none;\n\tcolor: inherit;\n\tpadding: 0;\n\tmargin: .2em 0;\n\tvertical-align: middle;\n\tmargin-left: .4em;\n\tmargin-right: 22px;\n}\n\n.ui-spinner-button {\n\twidth: 16px;\n\theight: 50%;\n\tfont-size: .5em;\n\tpadding: 0;\n\tmargin: 0;\n\ttext-align: center;\n\tposition: absolute;\n\tcursor: default;\n\tdisplay: block;\n\toverflow: hidden;\n\tright: 0;\n}\n\n/* more specificity required here to override default borders */\n.ui-spinner a.ui-spinner-button {\n\tborder-top: none;\n\tborder-bottom: none;\n\tborder-right: none;\n}\n\n/* vertically center icon */\n.ui-spinner .ui-icon {\n\tposition: absolute;\n\tmargin-top: -8px;\n\ttop: 50%;\n\tleft: 0;\n}\n\n.ui-spinner-up {\n\ttop: 0;\n}\n\n.ui-spinner-down {\n\tbottom: 0;\n}\n\n/* TR overrides */\n.ui-spinner .ui-icon-triangle-1-s {\n\t/* need to fix icons sprite */\n\tbackground-position: -65px -16px;\n}\n\n.ui-tabs {\n\tposition: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as \"fixed\") */\n\tpadding: .2em;\n}\n\n.ui-tabs .ui-tabs-nav {\n\tmargin: 0;\n\tpadding: .2em .2em 0;\n}\n\n.ui-tabs .ui-tabs-nav li {\n\tlist-style: none;\n\tfloat: left;\n\tposition: relative;\n\ttop: 0;\n\tmargin: 1px .2em 0 0;\n\tborder-bottom-width: 0;\n\tpadding: 0;\n\twhite-space: nowrap;\n}\n\n.ui-tabs .ui-tabs-nav .ui-tabs-anchor {\n\tfloat: left;\n\tpadding: .5em 1em;\n\ttext-decoration: none;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active {\n\tmargin-bottom: -1px;\n\tpadding-bottom: 1px;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {\n\tcursor: text;\n}\n\n.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {\n\tcursor: pointer;\n}\n\n.ui-tabs .ui-tabs-panel {\n\tdisplay: block;\n\tborder-width: 0;\n\tpadding: 1em 1.4em;\n\tbackground: none;\n}\n\n.ui-tooltip {\n\tpadding: 8px;\n\tposition: absolute;\n\tz-index: 9999;\n\tmax-width: 300px;\n\tbox-shadow: 0 0 5px #AAA;\n}\n\nbody .ui-tooltip {\n\tborder-width: 2px;\n}\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1.1em;\n}\n\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1em;\n}\n\n.ui-widget-content {\n\tborder: 1px solid #DDD;\n\tbackground: #EEE url(\"images/ui-bg_highlight-soft_100_eeeeee_1x100.png\") 50% top repeat-x;\n\tcolor: #333;\n}\n\n.ui-widget-content a {\n\tcolor: #333;\n}\n\n.ui-widget-header {\n\tborder: 1px solid #E78F08;\n\tbackground: #F6A828 url(\"images/ui-bg_gloss-wave_35_f6a828_500x100.png\") 50% 50% repeat-x;\n\tcolor: #FFF;\n\tfont-weight: bold;\n}\n\n.ui-widget-header a {\n\tcolor: #FFF;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default {\n\tborder: 1px solid #CCC;\n\tbackground: #F6F6F6 url(\"images/ui-bg_glass_100_f6f6f6_1x400.png\") 50% 50% repeat-x;\n\tfont-weight: normal;\n\tcolor: #2B2B2B;\n}\n\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited {\n\tcolor: #1C94C4;\n\ttext-decoration: none;\n}\n\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited {\n\tcolor: #C77405;\n\ttext-decoration: none;\n}\n\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #EB8F00;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #FED22F;\n\tbackground: #FFE45C url(\"images/ui-bg_highlight-soft_75_ffe45c_1x100.png\") 50% top repeat-x;\n\tcolor: #363636;\n}\n\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #363636;\n}\n\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #CD0A0A;\n\tbackground: #B81900 url(\"images/ui-bg_diagonals-thick_18_b81900_40x40.png\") 50% 50% repeat;\n\tcolor: #FFF;\n}\n\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #FFF;\n}\n\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #FFF;\n}\n\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: 0.7;\n\tfilter: alpha(opacity=70); /* support: IE8 */\n\tfont-weight: normal;\n}\n\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: 0.35;\n\tfilter: alpha(opacity=35); /* support: IE8 */\n\tbackground-image: none;\n}\n\n.ui-state-disabled .ui-icon {\n\tfilter: alpha(opacity=35); /* support: IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-widget-header .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffffff_256x240.png\");\n}\n\n.ui-state-default .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-active .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-highlight .ui-icon {\n\tbackground-image: url(\"images/ui-icons_228ef1_256x240.png\");\n}\n\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffd27a_256x240.png\");\n}\n\n/* positioning */\n.ui-icon-blank {\n\tbackground-position: 16px 16px;\n}\n\n.ui-icon-carat-1-n {\n\tbackground-position: 0 0;\n}\n\n.ui-icon-carat-1-ne {\n\tbackground-position: -16px 0;\n}\n\n.ui-icon-carat-1-e {\n\tbackground-position: -32px 0;\n}\n\n.ui-icon-carat-1-se {\n\tbackground-position: -48px 0;\n}\n\n.ui-icon-carat-1-s {\n\tbackground-position: -64px 0;\n}\n\n.ui-icon-carat-1-sw {\n\tbackground-position: -80px 0;\n}\n\n.ui-icon-carat-1-w {\n\tbackground-position: -96px 0;\n}\n\n.ui-icon-carat-1-nw {\n\tbackground-position: -112px 0;\n}\n\n.ui-icon-carat-2-n-s {\n\tbackground-position: -128px 0;\n}\n\n.ui-icon-carat-2-e-w {\n\tbackground-position: -144px 0;\n}\n\n.ui-icon-triangle-1-n {\n\tbackground-position: 0 -16px;\n}\n\n.ui-icon-triangle-1-ne {\n\tbackground-position: -16px -16px;\n}\n\n.ui-icon-triangle-1-e {\n\tbackground-position: -32px -16px;\n}\n\n.ui-icon-triangle-1-se {\n\tbackground-position: -48px -16px;\n}\n\n.ui-icon-triangle-1-s {\n\tbackground-position: -64px -16px;\n}\n\n.ui-icon-triangle-1-sw {\n\tbackground-position: -80px -16px;\n}\n\n.ui-icon-triangle-1-w {\n\tbackground-position: -96px -16px;\n}\n\n.ui-icon-triangle-1-nw {\n\tbackground-position: -112px -16px;\n}\n\n.ui-icon-triangle-2-n-s {\n\tbackground-position: -128px -16px;\n}\n\n.ui-icon-triangle-2-e-w {\n\tbackground-position: -144px -16px;\n}\n\n.ui-icon-arrow-1-n {\n\tbackground-position: 0 -32px;\n}\n\n.ui-icon-arrow-1-ne {\n\tbackground-position: -16px -32px;\n}\n\n.ui-icon-arrow-1-e {\n\tbackground-position: -32px -32px;\n}\n\n.ui-icon-arrow-1-se {\n\tbackground-position: -48px -32px;\n}\n\n.ui-icon-arrow-1-s {\n\tbackground-position: -64px -32px;\n}\n\n.ui-icon-arrow-1-sw {\n\tbackground-position: -80px -32px;\n}\n\n.ui-icon-arrow-1-w {\n\tbackground-position: -96px -32px;\n}\n\n.ui-icon-arrow-1-nw {\n\tbackground-position: -112px -32px;\n}\n\n.ui-icon-arrow-2-n-s {\n\tbackground-position: -128px -32px;\n}\n\n.ui-icon-arrow-2-ne-sw {\n\tbackground-position: -144px -32px;\n}\n\n.ui-icon-arrow-2-e-w {\n\tbackground-position: -160px -32px;\n}\n\n.ui-icon-arrow-2-se-nw {\n\tbackground-position: -176px -32px;\n}\n\n.ui-icon-arrowstop-1-n {\n\tbackground-position: -192px -32px;\n}\n\n.ui-icon-arrowstop-1-e {\n\tbackground-position: -208px -32px;\n}\n\n.ui-icon-arrowstop-1-s {\n\tbackground-position: -224px -32px;\n}\n\n.ui-icon-arrowstop-1-w {\n\tbackground-position: -240px -32px;\n}\n\n.ui-icon-arrowthick-1-n {\n\tbackground-position: 0 -48px;\n}\n\n.ui-icon-arrowthick-1-ne {\n\tbackground-position: -16px -48px;\n}\n\n.ui-icon-arrowthick-1-e {\n\tbackground-position: -32px -48px;\n}\n\n.ui-icon-arrowthick-1-se {\n\tbackground-position: -48px -48px;\n}\n\n.ui-icon-arrowthick-1-s {\n\tbackground-position: -64px -48px;\n}\n\n.ui-icon-arrowthick-1-sw {\n\tbackground-position: -80px -48px;\n}\n\n.ui-icon-arrowthick-1-w {\n\tbackground-position: -96px -48px;\n}\n\n.ui-icon-arrowthick-1-nw {\n\tbackground-position: -112px -48px;\n}\n\n.ui-icon-arrowthick-2-n-s {\n\tbackground-position: -128px -48px;\n}\n\n.ui-icon-arrowthick-2-ne-sw {\n\tbackground-position: -144px -48px;\n}\n\n.ui-icon-arrowthick-2-e-w {\n\tbackground-position: -160px -48px;\n}\n\n.ui-icon-arrowthick-2-se-nw {\n\tbackground-position: -176px -48px;\n}\n\n.ui-icon-arrowthickstop-1-n {\n\tbackground-position: -192px -48px;\n}\n\n.ui-icon-arrowthickstop-1-e {\n\tbackground-position: -208px -48px;\n}\n\n.ui-icon-arrowthickstop-1-s {\n\tbackground-position: -224px -48px;\n}\n\n.ui-icon-arrowthickstop-1-w {\n\tbackground-position: -240px -48px;\n}\n\n.ui-icon-arrowreturnthick-1-w {\n\tbackground-position: 0 -64px;\n}\n\n.ui-icon-arrowreturnthick-1-n {\n\tbackground-position: -16px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-e {\n\tbackground-position: -32px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-s {\n\tbackground-position: -48px -64px;\n}\n\n.ui-icon-arrowreturn-1-w {\n\tbackground-position: -64px -64px;\n}\n\n.ui-icon-arrowreturn-1-n {\n\tbackground-position: -80px -64px;\n}\n\n.ui-icon-arrowreturn-1-e {\n\tbackground-position: -96px -64px;\n}\n\n.ui-icon-arrowreturn-1-s {\n\tbackground-position: -112px -64px;\n}\n\n.ui-icon-arrowrefresh-1-w {\n\tbackground-position: -128px -64px;\n}\n\n.ui-icon-arrowrefresh-1-n {\n\tbackground-position: -144px -64px;\n}\n\n.ui-icon-arrowrefresh-1-e {\n\tbackground-position: -160px -64px;\n}\n\n.ui-icon-arrowrefresh-1-s {\n\tbackground-position: -176px -64px;\n}\n\n.ui-icon-arrow-4 {\n\tbackground-position: 0 -80px;\n}\n\n.ui-icon-arrow-4-diag {\n\tbackground-position: -16px -80px;\n}\n\n.ui-icon-extlink {\n\tbackground-position: -32px -80px;\n}\n\n.ui-icon-newwin {\n\tbackground-position: -48px -80px;\n}\n\n.ui-icon-refresh {\n\tbackground-position: -64px -80px;\n}\n\n.ui-icon-shuffle {\n\tbackground-position: -80px -80px;\n}\n\n.ui-icon-transfer-e-w {\n\tbackground-position: -96px -80px;\n}\n\n.ui-icon-transferthick-e-w {\n\tbackground-position: -112px -80px;\n}\n\n.ui-icon-folder-collapsed {\n\tbackground-position: 0 -96px;\n}\n\n.ui-icon-folder-open {\n\tbackground-position: -16px -96px;\n}\n\n.ui-icon-document {\n\tbackground-position: -32px -96px;\n}\n\n.ui-icon-document-b {\n\tbackground-position: -48px -96px;\n}\n\n.ui-icon-note {\n\tbackground-position: -64px -96px;\n}\n\n.ui-icon-mail-closed {\n\tbackground-position: -80px -96px;\n}\n\n.ui-icon-mail-open {\n\tbackground-position: -96px -96px;\n}\n\n.ui-icon-suitcase {\n\tbackground-position: -112px -96px;\n}\n\n.ui-icon-comment {\n\tbackground-position: -128px -96px;\n}\n\n.ui-icon-person {\n\tbackground-position: -144px -96px;\n}\n\n.ui-icon-print {\n\tbackground-position: -160px -96px;\n}\n\n.ui-icon-trash {\n\tbackground-position: -176px -96px;\n}\n\n.ui-icon-locked {\n\tbackground-position: -192px -96px;\n}\n\n.ui-icon-unlocked {\n\tbackground-position: -208px -96px;\n}\n\n.ui-icon-bookmark {\n\tbackground-position: -224px -96px;\n}\n\n.ui-icon-tag {\n\tbackground-position: -240px -96px;\n}\n\n.ui-icon-home {\n\tbackground-position: 0 -112px;\n}\n\n.ui-icon-flag {\n\tbackground-position: -16px -112px;\n}\n\n.ui-icon-calendar {\n\tbackground-position: -32px -112px;\n}\n\n.ui-icon-cart {\n\tbackground-position: -48px -112px;\n}\n\n.ui-icon-pencil {\n\tbackground-position: -64px -112px;\n}\n\n.ui-icon-clock {\n\tbackground-position: -80px -112px;\n}\n\n.ui-icon-disk {\n\tbackground-position: -96px -112px;\n}\n\n.ui-icon-calculator {\n\tbackground-position: -112px -112px;\n}\n\n.ui-icon-zoomin {\n\tbackground-position: -128px -112px;\n}\n\n.ui-icon-zoomout {\n\tbackground-position: -144px -112px;\n}\n\n.ui-icon-search {\n\tbackground-position: -160px -112px;\n}\n\n.ui-icon-wrench {\n\tbackground-position: -176px -112px;\n}\n\n.ui-icon-gear {\n\tbackground-position: -192px -112px;\n}\n\n.ui-icon-heart {\n\tbackground-position: -208px -112px;\n}\n\n.ui-icon-star {\n\tbackground-position: -224px -112px;\n}\n\n.ui-icon-link {\n\tbackground-position: -240px -112px;\n}\n\n.ui-icon-cancel {\n\tbackground-position: 0 -128px;\n}\n\n.ui-icon-plus {\n\tbackground-position: -16px -128px;\n}\n\n.ui-icon-plusthick {\n\tbackground-position: -32px -128px;\n}\n\n.ui-icon-minus {\n\tbackground-position: -48px -128px;\n}\n\n.ui-icon-minusthick {\n\tbackground-position: -64px -128px;\n}\n\n.ui-icon-close {\n\tbackground-position: -80px -128px;\n}\n\n.ui-icon-closethick {\n\tbackground-position: -96px -128px;\n}\n\n.ui-icon-key {\n\tbackground-position: -112px -128px;\n}\n\n.ui-icon-lightbulb {\n\tbackground-position: -128px -128px;\n}\n\n.ui-icon-scissors {\n\tbackground-position: -144px -128px;\n}\n\n.ui-icon-clipboard {\n\tbackground-position: -160px -128px;\n}\n\n.ui-icon-copy {\n\tbackground-position: -176px -128px;\n}\n\n.ui-icon-contact {\n\tbackground-position: -192px -128px;\n}\n\n.ui-icon-image {\n\tbackground-position: -208px -128px;\n}\n\n.ui-icon-video {\n\tbackground-position: -224px -128px;\n}\n\n.ui-icon-script {\n\tbackground-position: -240px -128px;\n}\n\n.ui-icon-alert {\n\tbackground-position: 0 -144px;\n}\n\n.ui-icon-info {\n\tbackground-position: -16px -144px;\n}\n\n.ui-icon-notice {\n\tbackground-position: -32px -144px;\n}\n\n.ui-icon-help {\n\tbackground-position: -48px -144px;\n}\n\n.ui-icon-check {\n\tbackground-position: -64px -144px;\n}\n\n.ui-icon-bullet {\n\tbackground-position: -80px -144px;\n}\n\n.ui-icon-radio-on {\n\tbackground-position: -96px -144px;\n}\n\n.ui-icon-radio-off {\n\tbackground-position: -112px -144px;\n}\n\n.ui-icon-pin-w {\n\tbackground-position: -128px -144px;\n}\n\n.ui-icon-pin-s {\n\tbackground-position: -144px -144px;\n}\n\n.ui-icon-play {\n\tbackground-position: 0 -160px;\n}\n\n.ui-icon-pause {\n\tbackground-position: -16px -160px;\n}\n\n.ui-icon-seek-next {\n\tbackground-position: -32px -160px;\n}\n\n.ui-icon-seek-prev {\n\tbackground-position: -48px -160px;\n}\n\n.ui-icon-seek-end {\n\tbackground-position: -64px -160px;\n}\n\n.ui-icon-seek-start {\n\tbackground-position: -80px -160px;\n}\n\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first {\n\tbackground-position: -80px -160px;\n}\n\n.ui-icon-stop {\n\tbackground-position: -96px -160px;\n}\n\n.ui-icon-eject {\n\tbackground-position: -112px -160px;\n}\n\n.ui-icon-volume-off {\n\tbackground-position: -128px -160px;\n}\n\n.ui-icon-volume-on {\n\tbackground-position: -144px -160px;\n}\n\n.ui-icon-power {\n\tbackground-position: 0 -176px;\n}\n\n.ui-icon-signal-diag {\n\tbackground-position: -16px -176px;\n}\n\n.ui-icon-signal {\n\tbackground-position: -32px -176px;\n}\n\n.ui-icon-battery-0 {\n\tbackground-position: -48px -176px;\n}\n\n.ui-icon-battery-1 {\n\tbackground-position: -64px -176px;\n}\n\n.ui-icon-battery-2 {\n\tbackground-position: -80px -176px;\n}\n\n.ui-icon-battery-3 {\n\tbackground-position: -96px -176px;\n}\n\n.ui-icon-circle-plus {\n\tbackground-position: 0 -192px;\n}\n\n.ui-icon-circle-minus {\n\tbackground-position: -16px -192px;\n}\n\n.ui-icon-circle-close {\n\tbackground-position: -32px -192px;\n}\n\n.ui-icon-circle-triangle-e {\n\tbackground-position: -48px -192px;\n}\n\n.ui-icon-circle-triangle-s {\n\tbackground-position: -64px -192px;\n}\n\n.ui-icon-circle-triangle-w {\n\tbackground-position: -80px -192px;\n}\n\n.ui-icon-circle-triangle-n {\n\tbackground-position: -96px -192px;\n}\n\n.ui-icon-circle-arrow-e {\n\tbackground-position: -112px -192px;\n}\n\n.ui-icon-circle-arrow-s {\n\tbackground-position: -128px -192px;\n}\n\n.ui-icon-circle-arrow-w {\n\tbackground-position: -144px -192px;\n}\n\n.ui-icon-circle-arrow-n {\n\tbackground-position: -160px -192px;\n}\n\n.ui-icon-circle-zoomin {\n\tbackground-position: -176px -192px;\n}\n\n.ui-icon-circle-zoomout {\n\tbackground-position: -192px -192px;\n}\n\n.ui-icon-circle-check {\n\tbackground-position: -208px -192px;\n}\n\n.ui-icon-circlesmall-plus {\n\tbackground-position: 0 -208px;\n}\n\n.ui-icon-circlesmall-minus {\n\tbackground-position: -16px -208px;\n}\n\n.ui-icon-circlesmall-close {\n\tbackground-position: -32px -208px;\n}\n\n.ui-icon-squaresmall-plus {\n\tbackground-position: -48px -208px;\n}\n\n.ui-icon-squaresmall-minus {\n\tbackground-position: -64px -208px;\n}\n\n.ui-icon-squaresmall-close {\n\tbackground-position: -80px -208px;\n}\n\n.ui-icon-grip-dotted-vertical {\n\tbackground-position: 0 -224px;\n}\n\n.ui-icon-grip-dotted-horizontal {\n\tbackground-position: -16px -224px;\n}\n\n.ui-icon-grip-solid-vertical {\n\tbackground-position: -32px -224px;\n}\n\n.ui-icon-grip-solid-horizontal {\n\tbackground-position: -48px -224px;\n}\n\n.ui-icon-gripsmall-diagonal-se {\n\tbackground-position: -64px -224px;\n}\n\n.ui-icon-grip-diagonal-se {\n\tbackground-position: -80px -224px;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 4px;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #666 url(\"images/ui-bg_diagonals-thick_20_666666_40x40.png\") 50% 50% repeat;\n\topacity: 0.5;\n\tfilter: alpha(opacity=50); /* support: IE8 */\n}\n\n.ui-widget-shadow {\n\tmargin: -5px 0 0 -5px;\n\tpadding: 5px;\n\tbackground: #000;\n\topacity: 0.2;\n\tfilter: alpha(opacity=20); /* support: IE8 */\n\tborder-radius: 5px;\n}"]}
|
@@ -1,2 +1,2 @@
|
|
1 |
/* jQuery UI - v1.12.1* http://jqueryui.com* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=18&bgImgOpacityHighlight=75&bgImgOpacityActive=65&bgImgOpacityHover=100&bgImgOpacityDefault=100&bgImgOpacityContent=100&bgImgOpacityHeader=35&cornerRadiusShadow=5px&offsetLeftShadow=-5px&offsetTopShadow=-5px&thicknessShadow=5px&opacityShadow=20&bgImgOpacityShadow=10&bgTextureShadow=flat&bgColorShadow=%23000000&opacityOverlay=50&bgImgOpacityOverlay=20&bgTextureOverlay=flat&bgColorOverlay=%23666666&iconColorError=%23ffd27a&fcError=%23ffffff&borderColorError=%23cd0a0a&bgTextureError=flat&bgColorError=%23b81900&iconColorHighlight=%23228ef1&fcHighlight=%23363636&borderColorHighlight=%23fed22f&bgTextureHighlight=flat&bgColorHighlight=%23ffe45c&iconColorActive=%23ef8c08&fcActive=%23454545&borderColorActive=%23C5C5C5&bgTextureActive=flat&bgColorActive=%23F6F6F6&iconColorHover=%23ef8c08&fcHover=%23454545&borderColorHover=%23C5C5C5&bgTextureHover=flat&bgColorHover=%23F6F6F6&iconColorDefault=%23ef8c08&fcDefault=%232B2B2B&borderColorDefault=%23CCC&bgTextureDefault=flat&bgColorDefault=%23f6f6f6&iconColorContent=%23222222&fcContent=%23333333&borderColorContent=%23dddddd&bgTextureContent=flat&bgColorContent=%23eeeeee&iconColorHeader=%23ffffff&fcHeader=%23ffffff&borderColorHeader=%23e78f08&bgTextureHeader=flat&bgColorHeader=%23f6a828&cornerRadius=4px&fwDefault=bold&fsDefault=1.1em&ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif* Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:alpha(opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default !important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;-webkit-box-sizing:border-box;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup>.ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup>.ui-controlgroup-item:focus,.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{-webkit-box-sizing:border-box;box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-left:0}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:0}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:0}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:0}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc(100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{-webkit-box-shadow:inset 1px 1px 1px #CCC;box-shadow:inset 1px 1px 1px #CCC;border-radius:.12em;border:0}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:0}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,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");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{-webkit-filter:inherit;filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #CCC}.ui-widget-content{border:1px solid #DDD;background:#EEE;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828;color:#FFF;font-weight:bold}.ui-widget-header a{color:#FFF}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #CCC;background:#f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#2b2b2b}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#2b2b2b;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#454545;text-decoration:none}.ui-visual-focus{-webkit-box-shadow:0 0 3px 1px #5e9ed6;box-shadow:0 0 3px 1px #5e9ed6}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-icon-background,.ui-state-active .ui-icon-background{border:#c5c5c5;background-color:#454545}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#454545;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c;color:#363636}.ui-state-checked{border:1px solid #fed22f;background:#ffe45c}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900;color:#FFF}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#FFF}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#FFF}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:alpha(opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:alpha(opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:alpha(opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_ffd27a_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666;opacity:.5;filter:alpha(opacity=50)}.ui-widget-shadow{-webkit-box-shadow:-5px -5px 5px #000;box-shadow:-5px -5px 5px #000}
|
2 |
-
/*# sourceMappingURL=jquery-ui.custom-v1.12.1-1-16-
|
1 |
/* jQuery UI - v1.12.1* http://jqueryui.com* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=18&bgImgOpacityHighlight=75&bgImgOpacityActive=65&bgImgOpacityHover=100&bgImgOpacityDefault=100&bgImgOpacityContent=100&bgImgOpacityHeader=35&cornerRadiusShadow=5px&offsetLeftShadow=-5px&offsetTopShadow=-5px&thicknessShadow=5px&opacityShadow=20&bgImgOpacityShadow=10&bgTextureShadow=flat&bgColorShadow=%23000000&opacityOverlay=50&bgImgOpacityOverlay=20&bgTextureOverlay=flat&bgColorOverlay=%23666666&iconColorError=%23ffd27a&fcError=%23ffffff&borderColorError=%23cd0a0a&bgTextureError=flat&bgColorError=%23b81900&iconColorHighlight=%23228ef1&fcHighlight=%23363636&borderColorHighlight=%23fed22f&bgTextureHighlight=flat&bgColorHighlight=%23ffe45c&iconColorActive=%23ef8c08&fcActive=%23454545&borderColorActive=%23C5C5C5&bgTextureActive=flat&bgColorActive=%23F6F6F6&iconColorHover=%23ef8c08&fcHover=%23454545&borderColorHover=%23C5C5C5&bgTextureHover=flat&bgColorHover=%23F6F6F6&iconColorDefault=%23ef8c08&fcDefault=%232B2B2B&borderColorDefault=%23CCC&bgTextureDefault=flat&bgColorDefault=%23f6f6f6&iconColorContent=%23222222&fcContent=%23333333&borderColorContent=%23dddddd&bgTextureContent=flat&bgColorContent=%23eeeeee&iconColorHeader=%23ffffff&fcHeader=%23ffffff&borderColorHeader=%23e78f08&bgTextureHeader=flat&bgColorHeader=%23f6a828&cornerRadius=4px&fwDefault=bold&fsDefault=1.1em&ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif* Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:alpha(opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default !important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;-webkit-box-sizing:border-box;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup>.ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup>.ui-controlgroup-item:focus,.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{-webkit-box-sizing:border-box;box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-left:0}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:0}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:0}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:0}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc(100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{-webkit-box-shadow:inset 1px 1px 1px #CCC;box-shadow:inset 1px 1px 1px #CCC;border-radius:.12em;border:0}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:0}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,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");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{-webkit-filter:inherit;filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #CCC}.ui-widget-content{border:1px solid #DDD;background:#EEE;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828;color:#FFF;font-weight:bold}.ui-widget-header a{color:#FFF}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #CCC;background:#f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#2b2b2b}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#2b2b2b;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#454545;text-decoration:none}.ui-visual-focus{-webkit-box-shadow:0 0 3px 1px #5e9ed6;box-shadow:0 0 3px 1px #5e9ed6}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-icon-background,.ui-state-active .ui-icon-background{border:#c5c5c5;background-color:#454545}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#454545;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c;color:#363636}.ui-state-checked{border:1px solid #fed22f;background:#ffe45c}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900;color:#FFF}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#FFF}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#FFF}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:alpha(opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:alpha(opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:alpha(opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_ffd27a_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666;opacity:.5;filter:alpha(opacity=50)}.ui-widget-shadow{-webkit-box-shadow:-5px -5px 5px #000;box-shadow:-5px -5px 5px #000}
|
2 |
+
/*# sourceMappingURL=jquery-ui.custom-v1.12.1-1-16-67.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["includes/jquery-ui.custom-v1.12.1.css"],"names":[],"mappings":"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AAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA,qEAAqE;AACrE;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;mCACmC;;AAEnC,kBAAkB;AAClB;;;;CAIC,2BAA2B;AAC5B;;AAEA;;;;CAIC,4BAA4B;AAC7B;;AAEA;;;;CAIC,8BAA8B;AAC/B;;AAEA;;;;CAIC,+BAA+B;AAChC;;AAEA,aAAa;AACb;CACC,gBAAgB;CAChB,WAAW;CACX,yBAAyB,EAAE,iBAAiB;AAC7C;;AAEA;CACC,sCAAsC;CACtC,8BAA8B;AAC/B","file":"jquery-ui.custom-v1.12.1-1-16-66.min.css","sourcesContent":["/*! jQuery UI - v1.12.1\n* http://jqueryui.com\n* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css\n* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=18&bgImgOpacityHighlight=75&bgImgOpacityActive=65&bgImgOpacityHover=100&bgImgOpacityDefault=100&bgImgOpacityContent=100&bgImgOpacityHeader=35&cornerRadiusShadow=5px&offsetLeftShadow=-5px&offsetTopShadow=-5px&thicknessShadow=5px&opacityShadow=20&bgImgOpacityShadow=10&bgTextureShadow=flat&bgColorShadow=%23000000&opacityOverlay=50&bgImgOpacityOverlay=20&bgTextureOverlay=flat&bgColorOverlay=%23666666&iconColorError=%23ffd27a&fcError=%23ffffff&borderColorError=%23cd0a0a&bgTextureError=flat&bgColorError=%23b81900&iconColorHighlight=%23228ef1&fcHighlight=%23363636&borderColorHighlight=%23fed22f&bgTextureHighlight=flat&bgColorHighlight=%23ffe45c&iconColorActive=%23ef8c08&fcActive=%23454545&borderColorActive=%23C5C5C5&bgTextureActive=flat&bgColorActive=%23F6F6F6&iconColorHover=%23ef8c08&fcHover=%23454545&borderColorHover=%23C5C5C5&bgTextureHover=flat&bgColorHover=%23F6F6F6&iconColorDefault=%23ef8c08&fcDefault=%232B2B2B&borderColorDefault=%23CCC&bgTextureDefault=flat&bgColorDefault=%23f6f6f6&iconColorContent=%23222222&fcContent=%23333333&borderColorContent=%23dddddd&bgTextureContent=flat&bgColorContent=%23eeeeee&iconColorHeader=%23ffffff&fcHeader=%23ffffff&borderColorHeader=%23e78f08&bgTextureHeader=flat&bgColorHeader=%23f6a828&cornerRadius=4px&fwDefault=bold&fsDefault=1.1em&ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n.ui-draggable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter: alpha(opacity=0); /* support: IE8 */\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n\tpointer-events: none;\n}\n\n/* Icons\n----------------------------------*/\n.ui-icon {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n\tmargin-top: -.25em;\n\tposition: relative;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n.ui-widget-icon-block {\n\tleft: 50%;\n\tmargin-left: -8px;\n\tdisplay: block;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n\n.ui-resizable {\n\tposition: relative;\n}\n\n.ui-resizable-handle {\n\tposition: absolute;\n\tfont-size: 0.1px;\n\tdisplay: block;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable-disabled .ui-resizable-handle,\n.ui-resizable-autohide .ui-resizable-handle {\n\tdisplay: none;\n}\n\n.ui-resizable-n {\n\tcursor: n-resize;\n\theight: 7px;\n\twidth: 100%;\n\ttop: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-s {\n\tcursor: s-resize;\n\theight: 7px;\n\twidth: 100%;\n\tbottom: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-e {\n\tcursor: e-resize;\n\twidth: 7px;\n\tright: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-w {\n\tcursor: w-resize;\n\twidth: 7px;\n\tleft: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-se {\n\tcursor: se-resize;\n\twidth: 12px;\n\theight: 12px;\n\tright: 1px;\n\tbottom: 1px;\n}\n\n.ui-resizable-sw {\n\tcursor: sw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\tbottom: -5px;\n}\n\n.ui-resizable-nw {\n\tcursor: nw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\ttop: -5px;\n}\n\n.ui-resizable-ne {\n\tcursor: ne-resize;\n\twidth: 9px;\n\theight: 9px;\n\tright: -5px;\n\ttop: -5px;\n}\n\n.ui-selectable {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-selectable-helper {\n\tposition: absolute;\n\tz-index: 100;\n\tborder: 1px dotted black;\n}\n\n.ui-sortable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-accordion .ui-accordion-header {\n\tdisplay: block;\n\tcursor: pointer;\n\tposition: relative;\n\tmargin: 2px 0 0 0;\n\tpadding: .5em .5em .5em .7em;\n\tfont-size: 100%;\n}\n\n.ui-accordion .ui-accordion-content {\n\tpadding: 1em 2.2em;\n\tborder-top: 0;\n\toverflow: auto;\n}\n\n.ui-autocomplete {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tcursor: default;\n}\n\n.ui-menu {\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n\tdisplay: block;\n\toutline: 0;\n}\n\n.ui-menu .ui-menu {\n\tposition: absolute;\n}\n\n.ui-menu .ui-menu-item {\n\tmargin: 0;\n\tcursor: pointer;\n\t/* support: IE10, see #8844 */\n\tlist-style-image: url(\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\");\n}\n\n.ui-menu .ui-menu-item-wrapper {\n\tposition: relative;\n\tpadding: 3px 1em 3px .4em;\n}\n\n.ui-menu .ui-menu-divider {\n\tmargin: 5px 0;\n\theight: 0;\n\tfont-size: 0;\n\tline-height: 0;\n\tborder-width: 1px 0 0 0;\n}\n\n.ui-menu .ui-state-focus,\n.ui-menu .ui-state-active {\n\tmargin: -1px;\n}\n\n/* icon support */\n.ui-menu-icons {\n\tposition: relative;\n}\n\n.ui-menu-icons .ui-menu-item-wrapper {\n\tpadding-left: 2em;\n}\n\n/* left-aligned */\n.ui-menu .ui-icon {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: .2em;\n\tmargin: auto 0;\n}\n\n/* right-aligned */\n.ui-menu .ui-menu-icon {\n\tleft: auto;\n\tright: 0;\n}\n\n.ui-button {\n\tpadding: .4em 1em;\n\tdisplay: inline-block;\n\tposition: relative;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\t-webkit-user-select: none;\n\t-moz-user-select: none;\n\t-ms-user-select: none;\n\tuser-select: none;\n\t/* Support: IE <= 11 */\n\toverflow: visible;\n}\n\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2em;\n\tbox-sizing: border-box;\n\ttext-indent: -9999px;\n\twhite-space: nowrap;\n}\n\n/* no icon support for input elements */\ninput.ui-button.ui-button-icon-only {\n\ttext-indent: 0;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\tmargin-top: -8px;\n\tmargin-left: -8px;\n}\n\n.ui-button.ui-icon-notext .ui-icon {\n\tpadding: 0;\n\twidth: 2.1em;\n\theight: 2.1em;\n\ttext-indent: -9999px;\n\twhite-space: nowrap;\n}\n\ninput.ui-button.ui-icon-notext .ui-icon {\n\twidth: auto;\n\theight: auto;\n\ttext-indent: 0;\n\twhite-space: normal;\n\tpadding: .4em 1em;\n}\n\n/* workarounds */\n/* Support: Firefox 5 - 40 */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n\n.ui-controlgroup {\n\tvertical-align: middle;\n\tdisplay: inline-block;\n}\n\n.ui-controlgroup > .ui-controlgroup-item {\n\tfloat: left;\n\tmargin-left: 0;\n\tmargin-right: 0;\n}\n\n.ui-controlgroup > .ui-controlgroup-item:focus,\n.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {\n\tz-index: 9999;\n}\n\n.ui-controlgroup-vertical > .ui-controlgroup-item {\n\tdisplay: block;\n\tfloat: none;\n\twidth: 100%;\n\tmargin-top: 0;\n\tmargin-bottom: 0;\n\ttext-align: left;\n}\n\n.ui-controlgroup-vertical .ui-controlgroup-item {\n\tbox-sizing: border-box;\n}\n\n.ui-controlgroup .ui-controlgroup-label {\n\tpadding: .4em 1em;\n}\n\n.ui-controlgroup .ui-controlgroup-label span {\n\tfont-size: 80%;\n}\n\n.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {\n\tborder-left: none;\n}\n\n.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {\n\tborder-top: none;\n}\n\n.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {\n\tborder-right: none;\n}\n\n.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {\n\tborder-bottom: none;\n}\n\n/* Spinner specific style fixes */\n.ui-controlgroup-vertical .ui-spinner-input {\n\t/* Support: IE8 only, Android < 4.4 only */\n\twidth: 75%;\n\twidth: calc( 100% - 2.4em );\n}\n\n.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {\n\tborder-top-style: solid;\n}\n\n.ui-checkboxradio-label .ui-icon-background {\n\tbox-shadow: inset 1px 1px 1px #CCC;\n\tborder-radius: .12em;\n\tborder: none;\n}\n\n.ui-checkboxradio-radio-label .ui-icon-background {\n\twidth: 16px;\n\theight: 16px;\n\tborder-radius: 1em;\n\toverflow: visible;\n\tborder: none;\n}\n\n.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,\n.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {\n\tbackground-image: none;\n\twidth: 8px;\n\theight: 8px;\n\tborder-width: 4px;\n\tborder-style: solid;\n}\n\n.ui-checkboxradio-disabled {\n\tpointer-events: none;\n}\n\n.ui-datepicker {\n\twidth: 17em;\n\tpadding: .2em .2em 0;\n\tdisplay: none;\n}\n\n.ui-datepicker .ui-datepicker-header {\n\tposition: relative;\n\tpadding: .2em 0;\n}\n\n.ui-datepicker .ui-datepicker-prev,\n.ui-datepicker .ui-datepicker-next {\n\tposition: absolute;\n\ttop: 2px;\n\twidth: 1.8em;\n\theight: 1.8em;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover,\n.ui-datepicker .ui-datepicker-next-hover {\n\ttop: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev {\n\tleft: 2px;\n}\n\n.ui-datepicker .ui-datepicker-next {\n\tright: 2px;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover {\n\tleft: 1px;\n}\n\n.ui-datepicker .ui-datepicker-next-hover {\n\tright: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev span,\n.ui-datepicker .ui-datepicker-next span {\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 50%;\n\tmargin-left: -8px;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-datepicker .ui-datepicker-title {\n\tmargin: 0 2.3em;\n\tline-height: 1.8em;\n\ttext-align: center;\n}\n\n.ui-datepicker .ui-datepicker-title select {\n\tfont-size: 1em;\n\tmargin: 1px 0;\n}\n\n.ui-datepicker select.ui-datepicker-month,\n.ui-datepicker select.ui-datepicker-year {\n\twidth: 45%;\n}\n\n.ui-datepicker table {\n\twidth: 100%;\n\tfont-size: .9em;\n\tborder-collapse: collapse;\n\tmargin: 0 0 .4em;\n}\n\n.ui-datepicker th {\n\tpadding: .7em .3em;\n\ttext-align: center;\n\tfont-weight: bold;\n\tborder: 0;\n}\n\n.ui-datepicker td {\n\tborder: 0;\n\tpadding: 1px;\n}\n\n.ui-datepicker td span,\n.ui-datepicker td a {\n\tdisplay: block;\n\tpadding: .2em;\n\ttext-align: right;\n\ttext-decoration: none;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane {\n\tbackground-image: none;\n\tmargin: .7em 0 0 0;\n\tpadding: 0 .2em;\n\tborder-left: 0;\n\tborder-right: 0;\n\tborder-bottom: 0;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button {\n\tfloat: right;\n\tmargin: .5em .2em .4em;\n\tcursor: pointer;\n\tpadding: .2em .6em .3em .6em;\n\twidth: auto;\n\toverflow: visible;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {\n\tfloat: left;\n}\n\n/* with multiple calendars */\n.ui-datepicker.ui-datepicker-multi {\n\twidth: auto;\n}\n\n.ui-datepicker-multi .ui-datepicker-group {\n\tfloat: left;\n}\n\n.ui-datepicker-multi .ui-datepicker-group table {\n\twidth: 95%;\n\tmargin: 0 auto .4em;\n}\n\n.ui-datepicker-multi-2 .ui-datepicker-group {\n\twidth: 50%;\n}\n\n.ui-datepicker-multi-3 .ui-datepicker-group {\n\twidth: 33.3%;\n}\n\n.ui-datepicker-multi-4 .ui-datepicker-group {\n\twidth: 25%;\n}\n\n.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-left-width: 0;\n}\n\n.ui-datepicker-multi .ui-datepicker-buttonpane {\n\tclear: left;\n}\n\n.ui-datepicker-row-break {\n\tclear: both;\n\twidth: 100%;\n\tfont-size: 0;\n}\n\n/* RTL support */\n.ui-datepicker-rtl {\n\tdirection: rtl;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev {\n\tright: 2px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next {\n\tleft: 2px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev:hover {\n\tright: 1px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next:hover {\n\tleft: 1px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane {\n\tclear: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button {\n\tfloat: left;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,\n.ui-datepicker-rtl .ui-datepicker-group {\n\tfloat: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-right-width: 0;\n\tborder-left-width: 1px;\n}\n\n/* Icons */\n.ui-datepicker .ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n\tleft: .5em;\n\ttop: .3em;\n}\n\n.ui-dialog {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tpadding: .2em;\n\toutline: 0;\n}\n\n.ui-dialog .ui-dialog-titlebar {\n\tpadding: .4em 1em;\n\tposition: relative;\n}\n\n.ui-dialog .ui-dialog-title {\n\tfloat: left;\n\tmargin: .1em 0;\n\twhite-space: nowrap;\n\twidth: 90%;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n.ui-dialog .ui-dialog-titlebar-close {\n\tposition: absolute;\n\tright: .3em;\n\ttop: 50%;\n\twidth: 20px;\n\tmargin: -10px 0 0 0;\n\tpadding: 1px;\n\theight: 20px;\n}\n\n.ui-dialog .ui-dialog-content {\n\tposition: relative;\n\tborder: 0;\n\tpadding: .5em 1em;\n\tbackground: none;\n\toverflow: auto;\n}\n\n.ui-dialog .ui-dialog-buttonpane {\n\ttext-align: left;\n\tborder-width: 1px 0 0 0;\n\tbackground-image: none;\n\tmargin-top: .5em;\n\tpadding: .3em 1em .5em .4em;\n}\n\n.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {\n\tfloat: right;\n}\n\n.ui-dialog .ui-dialog-buttonpane button {\n\tmargin: .5em .4em .5em 0;\n\tcursor: pointer;\n}\n\n.ui-dialog .ui-resizable-n {\n\theight: 2px;\n\ttop: 0;\n}\n\n.ui-dialog .ui-resizable-e {\n\twidth: 2px;\n\tright: 0;\n}\n\n.ui-dialog .ui-resizable-s {\n\theight: 2px;\n\tbottom: 0;\n}\n\n.ui-dialog .ui-resizable-w {\n\twidth: 2px;\n\tleft: 0;\n}\n\n.ui-dialog .ui-resizable-se,\n.ui-dialog .ui-resizable-sw,\n.ui-dialog .ui-resizable-ne,\n.ui-dialog .ui-resizable-nw {\n\twidth: 7px;\n\theight: 7px;\n}\n\n.ui-dialog .ui-resizable-se {\n\tright: 0;\n\tbottom: 0;\n}\n\n.ui-dialog .ui-resizable-sw {\n\tleft: 0;\n\tbottom: 0;\n}\n\n.ui-dialog .ui-resizable-ne {\n\tright: 0;\n\ttop: 0;\n}\n\n.ui-dialog .ui-resizable-nw {\n\tleft: 0;\n\ttop: 0;\n}\n\n.ui-draggable .ui-dialog-titlebar {\n\tcursor: move;\n}\n\n.ui-progressbar {\n\theight: 2em;\n\ttext-align: left;\n\toverflow: hidden;\n}\n\n.ui-progressbar .ui-progressbar-value {\n\tmargin: -1px;\n\theight: 100%;\n}\n\n.ui-progressbar .ui-progressbar-overlay {\n\tbackground: url(\"data:image/gif;base64,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\");\n\theight: 100%;\n\tfilter: alpha(opacity=25); /* support: IE8 */\n\topacity: 0.25;\n}\n\n.ui-progressbar-indeterminate .ui-progressbar-value {\n\tbackground-image: none;\n}\n\n.ui-selectmenu-menu {\n\tpadding: 0;\n\tmargin: 0;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tdisplay: none;\n}\n\n.ui-selectmenu-menu .ui-menu {\n\toverflow: auto;\n\toverflow-x: hidden;\n\tpadding-bottom: 1px;\n}\n\n.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {\n\tfont-size: 1em;\n\tfont-weight: bold;\n\tline-height: 1.5;\n\tpadding: 2px 0.4em;\n\tmargin: 0.5em 0 0 0;\n\theight: auto;\n\tborder: 0;\n}\n\n.ui-selectmenu-open {\n\tdisplay: block;\n}\n\n.ui-selectmenu-text {\n\tdisplay: block;\n\tmargin-right: 20px;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n.ui-selectmenu-button.ui-button {\n\ttext-align: left;\n\twhite-space: nowrap;\n\twidth: 14em;\n}\n\n.ui-selectmenu-icon.ui-icon {\n\tfloat: right;\n\tmargin-top: 0;\n}\n\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* support: IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n\n.ui-spinner {\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tpadding: 0;\n\tvertical-align: middle;\n}\n\n.ui-spinner-input {\n\tborder: none;\n\tbackground: none;\n\tcolor: inherit;\n\tpadding: .222em 0;\n\tmargin: .2em 0;\n\tvertical-align: middle;\n\tmargin-left: .4em;\n\tmargin-right: 2em;\n}\n\n.ui-spinner-button {\n\twidth: 1.6em;\n\theight: 50%;\n\tfont-size: .5em;\n\tpadding: 0;\n\tmargin: 0;\n\ttext-align: center;\n\tposition: absolute;\n\tcursor: default;\n\tdisplay: block;\n\toverflow: hidden;\n\tright: 0;\n}\n\n/* more specificity required here to override default borders */\n.ui-spinner a.ui-spinner-button {\n\tborder-top-style: none;\n\tborder-bottom-style: none;\n\tborder-right-style: none;\n}\n\n.ui-spinner-up {\n\ttop: 0;\n}\n\n.ui-spinner-down {\n\tbottom: 0;\n}\n\n.ui-tabs {\n\tposition: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as \"fixed\") */\n\tpadding: .2em;\n}\n\n.ui-tabs .ui-tabs-nav {\n\tmargin: 0;\n\tpadding: .2em .2em 0;\n}\n\n.ui-tabs .ui-tabs-nav li {\n\tlist-style: none;\n\tfloat: left;\n\tposition: relative;\n\ttop: 0;\n\tmargin: 1px .2em 0 0;\n\tborder-bottom-width: 0;\n\tpadding: 0;\n\twhite-space: nowrap;\n}\n\n.ui-tabs .ui-tabs-nav .ui-tabs-anchor {\n\tfloat: left;\n\tpadding: .5em 1em;\n\ttext-decoration: none;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active {\n\tmargin-bottom: -1px;\n\tpadding-bottom: 1px;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {\n\tcursor: text;\n}\n\n.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {\n\tcursor: pointer;\n}\n\n.ui-tabs .ui-tabs-panel {\n\tdisplay: block;\n\tborder-width: 0;\n\tpadding: 1em 1.4em;\n\tbackground: none;\n}\n\n.ui-tooltip {\n\tpadding: 8px;\n\tposition: absolute;\n\tz-index: 9999;\n\tmax-width: 300px;\n}\n\nbody .ui-tooltip {\n\tborder-width: 2px;\n}\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1.1em;\n}\n\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1em;\n}\n\n.ui-widget.ui-widget-content {\n\tborder: 1px solid #CCC;\n}\n\n.ui-widget-content {\n\tborder: 1px solid #DDD;\n\tbackground: #EEE;\n\tcolor: #333;\n}\n\n.ui-widget-content a {\n\tcolor: #333;\n}\n\n.ui-widget-header {\n\tborder: 1px solid #E78F08;\n\tbackground: #F6A828;\n\tcolor: #FFF;\n\tfont-weight: bold;\n}\n\n.ui-widget-header a {\n\tcolor: #FFF;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default,\n.ui-button,\n\n/* We use html here because we need a greater specificity to make sure disabled\nworks properly when clicked or hovered */\nhtml .ui-button.ui-state-disabled:hover,\nhtml .ui-button.ui-state-disabled:active {\n\tborder: 1px solid #CCC;\n\tbackground: #F6F6F6 url(\"images/ui-bg_glass_100_f6f6f6_1x400.png\") 50% 50% repeat-x;\n\tfont-weight: normal;\n\tcolor: #2B2B2B;\n}\n\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited,\na.ui-button,\na:link.ui-button,\na:visited.ui-button,\n.ui-button {\n\tcolor: #2B2B2B;\n\ttext-decoration: none;\n}\n\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus,\n.ui-button:hover,\n.ui-button:focus {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited,\na.ui-button:hover,\na.ui-button:focus {\n\tcolor: #454545;\n\ttext-decoration: none;\n}\n\n.ui-visual-focus {\n\tbox-shadow: 0 0 3px 1px rgb(94, 158, 214);\n}\n\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active,\na.ui-button:active,\n.ui-button:active,\n.ui-button.ui-state-active:hover {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-icon-background,\n.ui-state-active .ui-icon-background {\n\tborder: #C5C5C5;\n\tbackground-color: #454545;\n}\n\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #454545;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #FED22F;\n\tbackground: #FFE45C;\n\tcolor: #363636;\n}\n\n.ui-state-checked {\n\tborder: 1px solid #FED22F;\n\tbackground: #FFE45C;\n}\n\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #363636;\n}\n\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #CD0A0A;\n\tbackground: #B81900;\n\tcolor: #FFF;\n}\n\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #FFF;\n}\n\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #FFF;\n}\n\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: .7;\n\tfilter: alpha(opacity=70); /* support: IE8 */\n\tfont-weight: normal;\n}\n\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: .35;\n\tfilter: alpha(opacity=35); /* support: IE8 */\n\tbackground-image: none;\n}\n\n.ui-state-disabled .ui-icon {\n\tfilter: alpha(opacity=35); /* support: IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-widget-header .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffffff_256x240.png\");\n}\n\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon,\n.ui-button:hover .ui-icon,\n.ui-button:focus .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-active .ui-icon,\n.ui-button:active .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-highlight .ui-icon,\n.ui-button .ui-state-highlight.ui-icon {\n\tbackground-image: url(\"images/ui-icons_228ef1_256x240.png\");\n}\n\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffd27a_256x240.png\");\n}\n\n.ui-button .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n/* positioning */\n.ui-icon-blank {\n\tbackground-position: 16px 16px;\n}\n\n.ui-icon-caret-1-n {\n\tbackground-position: 0 0;\n}\n\n.ui-icon-caret-1-ne {\n\tbackground-position: -16px 0;\n}\n\n.ui-icon-caret-1-e {\n\tbackground-position: -32px 0;\n}\n\n.ui-icon-caret-1-se {\n\tbackground-position: -48px 0;\n}\n\n.ui-icon-caret-1-s {\n\tbackground-position: -65px 0;\n}\n\n.ui-icon-caret-1-sw {\n\tbackground-position: -80px 0;\n}\n\n.ui-icon-caret-1-w {\n\tbackground-position: -96px 0;\n}\n\n.ui-icon-caret-1-nw {\n\tbackground-position: -112px 0;\n}\n\n.ui-icon-caret-2-n-s {\n\tbackground-position: -128px 0;\n}\n\n.ui-icon-caret-2-e-w {\n\tbackground-position: -144px 0;\n}\n\n.ui-icon-triangle-1-n {\n\tbackground-position: 0 -16px;\n}\n\n.ui-icon-triangle-1-ne {\n\tbackground-position: -16px -16px;\n}\n\n.ui-icon-triangle-1-e {\n\tbackground-position: -32px -16px;\n}\n\n.ui-icon-triangle-1-se {\n\tbackground-position: -48px -16px;\n}\n\n.ui-icon-triangle-1-s {\n\tbackground-position: -65px -16px;\n}\n\n.ui-icon-triangle-1-sw {\n\tbackground-position: -80px -16px;\n}\n\n.ui-icon-triangle-1-w {\n\tbackground-position: -96px -16px;\n}\n\n.ui-icon-triangle-1-nw {\n\tbackground-position: -112px -16px;\n}\n\n.ui-icon-triangle-2-n-s {\n\tbackground-position: -128px -16px;\n}\n\n.ui-icon-triangle-2-e-w {\n\tbackground-position: -144px -16px;\n}\n\n.ui-icon-arrow-1-n {\n\tbackground-position: 0 -32px;\n}\n\n.ui-icon-arrow-1-ne {\n\tbackground-position: -16px -32px;\n}\n\n.ui-icon-arrow-1-e {\n\tbackground-position: -32px -32px;\n}\n\n.ui-icon-arrow-1-se {\n\tbackground-position: -48px -32px;\n}\n\n.ui-icon-arrow-1-s {\n\tbackground-position: -65px -32px;\n}\n\n.ui-icon-arrow-1-sw {\n\tbackground-position: -80px -32px;\n}\n\n.ui-icon-arrow-1-w {\n\tbackground-position: -96px -32px;\n}\n\n.ui-icon-arrow-1-nw {\n\tbackground-position: -112px -32px;\n}\n\n.ui-icon-arrow-2-n-s {\n\tbackground-position: -128px -32px;\n}\n\n.ui-icon-arrow-2-ne-sw {\n\tbackground-position: -144px -32px;\n}\n\n.ui-icon-arrow-2-e-w {\n\tbackground-position: -160px -32px;\n}\n\n.ui-icon-arrow-2-se-nw {\n\tbackground-position: -176px -32px;\n}\n\n.ui-icon-arrowstop-1-n {\n\tbackground-position: -192px -32px;\n}\n\n.ui-icon-arrowstop-1-e {\n\tbackground-position: -208px -32px;\n}\n\n.ui-icon-arrowstop-1-s {\n\tbackground-position: -224px -32px;\n}\n\n.ui-icon-arrowstop-1-w {\n\tbackground-position: -240px -32px;\n}\n\n.ui-icon-arrowthick-1-n {\n\tbackground-position: 1px -48px;\n}\n\n.ui-icon-arrowthick-1-ne {\n\tbackground-position: -16px -48px;\n}\n\n.ui-icon-arrowthick-1-e {\n\tbackground-position: -32px -48px;\n}\n\n.ui-icon-arrowthick-1-se {\n\tbackground-position: -48px -48px;\n}\n\n.ui-icon-arrowthick-1-s {\n\tbackground-position: -64px -48px;\n}\n\n.ui-icon-arrowthick-1-sw {\n\tbackground-position: -80px -48px;\n}\n\n.ui-icon-arrowthick-1-w {\n\tbackground-position: -96px -48px;\n}\n\n.ui-icon-arrowthick-1-nw {\n\tbackground-position: -112px -48px;\n}\n\n.ui-icon-arrowthick-2-n-s {\n\tbackground-position: -128px -48px;\n}\n\n.ui-icon-arrowthick-2-ne-sw {\n\tbackground-position: -144px -48px;\n}\n\n.ui-icon-arrowthick-2-e-w {\n\tbackground-position: -160px -48px;\n}\n\n.ui-icon-arrowthick-2-se-nw {\n\tbackground-position: -176px -48px;\n}\n\n.ui-icon-arrowthickstop-1-n {\n\tbackground-position: -192px -48px;\n}\n\n.ui-icon-arrowthickstop-1-e {\n\tbackground-position: -208px -48px;\n}\n\n.ui-icon-arrowthickstop-1-s {\n\tbackground-position: -224px -48px;\n}\n\n.ui-icon-arrowthickstop-1-w {\n\tbackground-position: -240px -48px;\n}\n\n.ui-icon-arrowreturnthick-1-w {\n\tbackground-position: 0 -64px;\n}\n\n.ui-icon-arrowreturnthick-1-n {\n\tbackground-position: -16px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-e {\n\tbackground-position: -32px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-s {\n\tbackground-position: -48px -64px;\n}\n\n.ui-icon-arrowreturn-1-w {\n\tbackground-position: -64px -64px;\n}\n\n.ui-icon-arrowreturn-1-n {\n\tbackground-position: -80px -64px;\n}\n\n.ui-icon-arrowreturn-1-e {\n\tbackground-position: -96px -64px;\n}\n\n.ui-icon-arrowreturn-1-s {\n\tbackground-position: -112px -64px;\n}\n\n.ui-icon-arrowrefresh-1-w {\n\tbackground-position: -128px -64px;\n}\n\n.ui-icon-arrowrefresh-1-n {\n\tbackground-position: -144px -64px;\n}\n\n.ui-icon-arrowrefresh-1-e {\n\tbackground-position: -160px -64px;\n}\n\n.ui-icon-arrowrefresh-1-s {\n\tbackground-position: -176px -64px;\n}\n\n.ui-icon-arrow-4 {\n\tbackground-position: 0 -80px;\n}\n\n.ui-icon-arrow-4-diag {\n\tbackground-position: -16px -80px;\n}\n\n.ui-icon-extlink {\n\tbackground-position: -32px -80px;\n}\n\n.ui-icon-newwin {\n\tbackground-position: -48px -80px;\n}\n\n.ui-icon-refresh {\n\tbackground-position: -64px -80px;\n}\n\n.ui-icon-shuffle {\n\tbackground-position: -80px -80px;\n}\n\n.ui-icon-transfer-e-w {\n\tbackground-position: -96px -80px;\n}\n\n.ui-icon-transferthick-e-w {\n\tbackground-position: -112px -80px;\n}\n\n.ui-icon-folder-collapsed {\n\tbackground-position: 0 -96px;\n}\n\n.ui-icon-folder-open {\n\tbackground-position: -16px -96px;\n}\n\n.ui-icon-document {\n\tbackground-position: -32px -96px;\n}\n\n.ui-icon-document-b {\n\tbackground-position: -48px -96px;\n}\n\n.ui-icon-note {\n\tbackground-position: -64px -96px;\n}\n\n.ui-icon-mail-closed {\n\tbackground-position: -80px -96px;\n}\n\n.ui-icon-mail-open {\n\tbackground-position: -96px -96px;\n}\n\n.ui-icon-suitcase {\n\tbackground-position: -112px -96px;\n}\n\n.ui-icon-comment {\n\tbackground-position: -128px -96px;\n}\n\n.ui-icon-person {\n\tbackground-position: -144px -96px;\n}\n\n.ui-icon-print {\n\tbackground-position: -160px -96px;\n}\n\n.ui-icon-trash {\n\tbackground-position: -176px -96px;\n}\n\n.ui-icon-locked {\n\tbackground-position: -192px -96px;\n}\n\n.ui-icon-unlocked {\n\tbackground-position: -208px -96px;\n}\n\n.ui-icon-bookmark {\n\tbackground-position: -224px -96px;\n}\n\n.ui-icon-tag {\n\tbackground-position: -240px -96px;\n}\n\n.ui-icon-home {\n\tbackground-position: 0 -112px;\n}\n\n.ui-icon-flag {\n\tbackground-position: -16px -112px;\n}\n\n.ui-icon-calendar {\n\tbackground-position: -32px -112px;\n}\n\n.ui-icon-cart {\n\tbackground-position: -48px -112px;\n}\n\n.ui-icon-pencil {\n\tbackground-position: -64px -112px;\n}\n\n.ui-icon-clock {\n\tbackground-position: -80px -112px;\n}\n\n.ui-icon-disk {\n\tbackground-position: -96px -112px;\n}\n\n.ui-icon-calculator {\n\tbackground-position: -112px -112px;\n}\n\n.ui-icon-zoomin {\n\tbackground-position: -128px -112px;\n}\n\n.ui-icon-zoomout {\n\tbackground-position: -144px -112px;\n}\n\n.ui-icon-search {\n\tbackground-position: -160px -112px;\n}\n\n.ui-icon-wrench {\n\tbackground-position: -176px -112px;\n}\n\n.ui-icon-gear {\n\tbackground-position: -192px -112px;\n}\n\n.ui-icon-heart {\n\tbackground-position: -208px -112px;\n}\n\n.ui-icon-star {\n\tbackground-position: -224px -112px;\n}\n\n.ui-icon-link {\n\tbackground-position: -240px -112px;\n}\n\n.ui-icon-cancel {\n\tbackground-position: 0 -128px;\n}\n\n.ui-icon-plus {\n\tbackground-position: -16px -128px;\n}\n\n.ui-icon-plusthick {\n\tbackground-position: -32px -128px;\n}\n\n.ui-icon-minus {\n\tbackground-position: -48px -128px;\n}\n\n.ui-icon-minusthick {\n\tbackground-position: -64px -128px;\n}\n\n.ui-icon-close {\n\tbackground-position: -80px -128px;\n}\n\n.ui-icon-closethick {\n\tbackground-position: -96px -128px;\n}\n\n.ui-icon-key {\n\tbackground-position: -112px -128px;\n}\n\n.ui-icon-lightbulb {\n\tbackground-position: -128px -128px;\n}\n\n.ui-icon-scissors {\n\tbackground-position: -144px -128px;\n}\n\n.ui-icon-clipboard {\n\tbackground-position: -160px -128px;\n}\n\n.ui-icon-copy {\n\tbackground-position: -176px -128px;\n}\n\n.ui-icon-contact {\n\tbackground-position: -192px -128px;\n}\n\n.ui-icon-image {\n\tbackground-position: -208px -128px;\n}\n\n.ui-icon-video {\n\tbackground-position: -224px -128px;\n}\n\n.ui-icon-script {\n\tbackground-position: -240px -128px;\n}\n\n.ui-icon-alert {\n\tbackground-position: 0 -144px;\n}\n\n.ui-icon-info {\n\tbackground-position: -16px -144px;\n}\n\n.ui-icon-notice {\n\tbackground-position: -32px -144px;\n}\n\n.ui-icon-help {\n\tbackground-position: -48px -144px;\n}\n\n.ui-icon-check {\n\tbackground-position: -64px -144px;\n}\n\n.ui-icon-bullet {\n\tbackground-position: -80px -144px;\n}\n\n.ui-icon-radio-on {\n\tbackground-position: -96px -144px;\n}\n\n.ui-icon-radio-off {\n\tbackground-position: -112px -144px;\n}\n\n.ui-icon-pin-w {\n\tbackground-position: -128px -144px;\n}\n\n.ui-icon-pin-s {\n\tbackground-position: -144px -144px;\n}\n\n.ui-icon-play {\n\tbackground-position: 0 -160px;\n}\n\n.ui-icon-pause {\n\tbackground-position: -16px -160px;\n}\n\n.ui-icon-seek-next {\n\tbackground-position: -32px -160px;\n}\n\n.ui-icon-seek-prev {\n\tbackground-position: -48px -160px;\n}\n\n.ui-icon-seek-end {\n\tbackground-position: -64px -160px;\n}\n\n.ui-icon-seek-start {\n\tbackground-position: -80px -160px;\n}\n\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first {\n\tbackground-position: -80px -160px;\n}\n\n.ui-icon-stop {\n\tbackground-position: -96px -160px;\n}\n\n.ui-icon-eject {\n\tbackground-position: -112px -160px;\n}\n\n.ui-icon-volume-off {\n\tbackground-position: -128px -160px;\n}\n\n.ui-icon-volume-on {\n\tbackground-position: -144px -160px;\n}\n\n.ui-icon-power {\n\tbackground-position: 0 -176px;\n}\n\n.ui-icon-signal-diag {\n\tbackground-position: -16px -176px;\n}\n\n.ui-icon-signal {\n\tbackground-position: -32px -176px;\n}\n\n.ui-icon-battery-0 {\n\tbackground-position: -48px -176px;\n}\n\n.ui-icon-battery-1 {\n\tbackground-position: -64px -176px;\n}\n\n.ui-icon-battery-2 {\n\tbackground-position: -80px -176px;\n}\n\n.ui-icon-battery-3 {\n\tbackground-position: -96px -176px;\n}\n\n.ui-icon-circle-plus {\n\tbackground-position: 0 -192px;\n}\n\n.ui-icon-circle-minus {\n\tbackground-position: -16px -192px;\n}\n\n.ui-icon-circle-close {\n\tbackground-position: -32px -192px;\n}\n\n.ui-icon-circle-triangle-e {\n\tbackground-position: -48px -192px;\n}\n\n.ui-icon-circle-triangle-s {\n\tbackground-position: -64px -192px;\n}\n\n.ui-icon-circle-triangle-w {\n\tbackground-position: -80px -192px;\n}\n\n.ui-icon-circle-triangle-n {\n\tbackground-position: -96px -192px;\n}\n\n.ui-icon-circle-arrow-e {\n\tbackground-position: -112px -192px;\n}\n\n.ui-icon-circle-arrow-s {\n\tbackground-position: -128px -192px;\n}\n\n.ui-icon-circle-arrow-w {\n\tbackground-position: -144px -192px;\n}\n\n.ui-icon-circle-arrow-n {\n\tbackground-position: -160px -192px;\n}\n\n.ui-icon-circle-zoomin {\n\tbackground-position: -176px -192px;\n}\n\n.ui-icon-circle-zoomout {\n\tbackground-position: -192px -192px;\n}\n\n.ui-icon-circle-check {\n\tbackground-position: -208px -192px;\n}\n\n.ui-icon-circlesmall-plus {\n\tbackground-position: 0 -208px;\n}\n\n.ui-icon-circlesmall-minus {\n\tbackground-position: -16px -208px;\n}\n\n.ui-icon-circlesmall-close {\n\tbackground-position: -32px -208px;\n}\n\n.ui-icon-squaresmall-plus {\n\tbackground-position: -48px -208px;\n}\n\n.ui-icon-squaresmall-minus {\n\tbackground-position: -64px -208px;\n}\n\n.ui-icon-squaresmall-close {\n\tbackground-position: -80px -208px;\n}\n\n.ui-icon-grip-dotted-vertical {\n\tbackground-position: 0 -224px;\n}\n\n.ui-icon-grip-dotted-horizontal {\n\tbackground-position: -16px -224px;\n}\n\n.ui-icon-grip-solid-vertical {\n\tbackground-position: -32px -224px;\n}\n\n.ui-icon-grip-solid-horizontal {\n\tbackground-position: -48px -224px;\n}\n\n.ui-icon-gripsmall-diagonal-se {\n\tbackground-position: -64px -224px;\n}\n\n.ui-icon-grip-diagonal-se {\n\tbackground-position: -80px -224px;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 4px;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #666;\n\topacity: .5;\n\tfilter: alpha(opacity=50); /* support: IE8 */\n}\n\n.ui-widget-shadow {\n\t-webkit-box-shadow: -5px -5px 5px #000;\n\tbox-shadow: -5px -5px 5px #000;\n}"]}
|
1 |
+
{"version":3,"sources":["includes/jquery-ui.custom-v1.12.1.css"],"names":[],"mappings":"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AAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA,qEAAqE;AACrE;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,kCAAkC;AACnC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,6BAA6B;AAC9B;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;CACC,iCAAiC;AAClC;;AAEA;mCACmC;;AAEnC,kBAAkB;AAClB;;;;CAIC,2BAA2B;AAC5B;;AAEA;;;;CAIC,4BAA4B;AAC7B;;AAEA;;;;CAIC,8BAA8B;AAC/B;;AAEA;;;;CAIC,+BAA+B;AAChC;;AAEA,aAAa;AACb;CACC,gBAAgB;CAChB,WAAW;CACX,yBAAyB,EAAE,iBAAiB;AAC7C;;AAEA;CACC,sCAAsC;CACtC,8BAA8B;AAC/B","file":"jquery-ui.custom-v1.12.1-1-16-67.min.css","sourcesContent":["/*! jQuery UI - v1.12.1\n* http://jqueryui.com\n* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css\n* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=18&bgImgOpacityHighlight=75&bgImgOpacityActive=65&bgImgOpacityHover=100&bgImgOpacityDefault=100&bgImgOpacityContent=100&bgImgOpacityHeader=35&cornerRadiusShadow=5px&offsetLeftShadow=-5px&offsetTopShadow=-5px&thicknessShadow=5px&opacityShadow=20&bgImgOpacityShadow=10&bgTextureShadow=flat&bgColorShadow=%23000000&opacityOverlay=50&bgImgOpacityOverlay=20&bgTextureOverlay=flat&bgColorOverlay=%23666666&iconColorError=%23ffd27a&fcError=%23ffffff&borderColorError=%23cd0a0a&bgTextureError=flat&bgColorError=%23b81900&iconColorHighlight=%23228ef1&fcHighlight=%23363636&borderColorHighlight=%23fed22f&bgTextureHighlight=flat&bgColorHighlight=%23ffe45c&iconColorActive=%23ef8c08&fcActive=%23454545&borderColorActive=%23C5C5C5&bgTextureActive=flat&bgColorActive=%23F6F6F6&iconColorHover=%23ef8c08&fcHover=%23454545&borderColorHover=%23C5C5C5&bgTextureHover=flat&bgColorHover=%23F6F6F6&iconColorDefault=%23ef8c08&fcDefault=%232B2B2B&borderColorDefault=%23CCC&bgTextureDefault=flat&bgColorDefault=%23f6f6f6&iconColorContent=%23222222&fcContent=%23333333&borderColorContent=%23dddddd&bgTextureContent=flat&bgColorContent=%23eeeeee&iconColorHeader=%23ffffff&fcHeader=%23ffffff&borderColorHeader=%23e78f08&bgTextureHeader=flat&bgColorHeader=%23f6a828&cornerRadius=4px&fwDefault=bold&fsDefault=1.1em&ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n.ui-draggable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter: alpha(opacity=0); /* support: IE8 */\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n\tpointer-events: none;\n}\n\n/* Icons\n----------------------------------*/\n.ui-icon {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n\tmargin-top: -.25em;\n\tposition: relative;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n.ui-widget-icon-block {\n\tleft: 50%;\n\tmargin-left: -8px;\n\tdisplay: block;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n\n.ui-resizable {\n\tposition: relative;\n}\n\n.ui-resizable-handle {\n\tposition: absolute;\n\tfont-size: 0.1px;\n\tdisplay: block;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable-disabled .ui-resizable-handle,\n.ui-resizable-autohide .ui-resizable-handle {\n\tdisplay: none;\n}\n\n.ui-resizable-n {\n\tcursor: n-resize;\n\theight: 7px;\n\twidth: 100%;\n\ttop: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-s {\n\tcursor: s-resize;\n\theight: 7px;\n\twidth: 100%;\n\tbottom: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-e {\n\tcursor: e-resize;\n\twidth: 7px;\n\tright: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-w {\n\tcursor: w-resize;\n\twidth: 7px;\n\tleft: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-se {\n\tcursor: se-resize;\n\twidth: 12px;\n\theight: 12px;\n\tright: 1px;\n\tbottom: 1px;\n}\n\n.ui-resizable-sw {\n\tcursor: sw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\tbottom: -5px;\n}\n\n.ui-resizable-nw {\n\tcursor: nw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\ttop: -5px;\n}\n\n.ui-resizable-ne {\n\tcursor: ne-resize;\n\twidth: 9px;\n\theight: 9px;\n\tright: -5px;\n\ttop: -5px;\n}\n\n.ui-selectable {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-selectable-helper {\n\tposition: absolute;\n\tz-index: 100;\n\tborder: 1px dotted black;\n}\n\n.ui-sortable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-accordion .ui-accordion-header {\n\tdisplay: block;\n\tcursor: pointer;\n\tposition: relative;\n\tmargin: 2px 0 0 0;\n\tpadding: .5em .5em .5em .7em;\n\tfont-size: 100%;\n}\n\n.ui-accordion .ui-accordion-content {\n\tpadding: 1em 2.2em;\n\tborder-top: 0;\n\toverflow: auto;\n}\n\n.ui-autocomplete {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tcursor: default;\n}\n\n.ui-menu {\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n\tdisplay: block;\n\toutline: 0;\n}\n\n.ui-menu .ui-menu {\n\tposition: absolute;\n}\n\n.ui-menu .ui-menu-item {\n\tmargin: 0;\n\tcursor: pointer;\n\t/* support: IE10, see #8844 */\n\tlist-style-image: url(\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\");\n}\n\n.ui-menu .ui-menu-item-wrapper {\n\tposition: relative;\n\tpadding: 3px 1em 3px .4em;\n}\n\n.ui-menu .ui-menu-divider {\n\tmargin: 5px 0;\n\theight: 0;\n\tfont-size: 0;\n\tline-height: 0;\n\tborder-width: 1px 0 0 0;\n}\n\n.ui-menu .ui-state-focus,\n.ui-menu .ui-state-active {\n\tmargin: -1px;\n}\n\n/* icon support */\n.ui-menu-icons {\n\tposition: relative;\n}\n\n.ui-menu-icons .ui-menu-item-wrapper {\n\tpadding-left: 2em;\n}\n\n/* left-aligned */\n.ui-menu .ui-icon {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: .2em;\n\tmargin: auto 0;\n}\n\n/* right-aligned */\n.ui-menu .ui-menu-icon {\n\tleft: auto;\n\tright: 0;\n}\n\n.ui-button {\n\tpadding: .4em 1em;\n\tdisplay: inline-block;\n\tposition: relative;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\t-webkit-user-select: none;\n\t-moz-user-select: none;\n\t-ms-user-select: none;\n\tuser-select: none;\n\t/* Support: IE <= 11 */\n\toverflow: visible;\n}\n\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2em;\n\tbox-sizing: border-box;\n\ttext-indent: -9999px;\n\twhite-space: nowrap;\n}\n\n/* no icon support for input elements */\ninput.ui-button.ui-button-icon-only {\n\ttext-indent: 0;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\tmargin-top: -8px;\n\tmargin-left: -8px;\n}\n\n.ui-button.ui-icon-notext .ui-icon {\n\tpadding: 0;\n\twidth: 2.1em;\n\theight: 2.1em;\n\ttext-indent: -9999px;\n\twhite-space: nowrap;\n}\n\ninput.ui-button.ui-icon-notext .ui-icon {\n\twidth: auto;\n\theight: auto;\n\ttext-indent: 0;\n\twhite-space: normal;\n\tpadding: .4em 1em;\n}\n\n/* workarounds */\n/* Support: Firefox 5 - 40 */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n\n.ui-controlgroup {\n\tvertical-align: middle;\n\tdisplay: inline-block;\n}\n\n.ui-controlgroup > .ui-controlgroup-item {\n\tfloat: left;\n\tmargin-left: 0;\n\tmargin-right: 0;\n}\n\n.ui-controlgroup > .ui-controlgroup-item:focus,\n.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {\n\tz-index: 9999;\n}\n\n.ui-controlgroup-vertical > .ui-controlgroup-item {\n\tdisplay: block;\n\tfloat: none;\n\twidth: 100%;\n\tmargin-top: 0;\n\tmargin-bottom: 0;\n\ttext-align: left;\n}\n\n.ui-controlgroup-vertical .ui-controlgroup-item {\n\tbox-sizing: border-box;\n}\n\n.ui-controlgroup .ui-controlgroup-label {\n\tpadding: .4em 1em;\n}\n\n.ui-controlgroup .ui-controlgroup-label span {\n\tfont-size: 80%;\n}\n\n.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {\n\tborder-left: none;\n}\n\n.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {\n\tborder-top: none;\n}\n\n.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {\n\tborder-right: none;\n}\n\n.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {\n\tborder-bottom: none;\n}\n\n/* Spinner specific style fixes */\n.ui-controlgroup-vertical .ui-spinner-input {\n\t/* Support: IE8 only, Android < 4.4 only */\n\twidth: 75%;\n\twidth: calc( 100% - 2.4em );\n}\n\n.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {\n\tborder-top-style: solid;\n}\n\n.ui-checkboxradio-label .ui-icon-background {\n\tbox-shadow: inset 1px 1px 1px #CCC;\n\tborder-radius: .12em;\n\tborder: none;\n}\n\n.ui-checkboxradio-radio-label .ui-icon-background {\n\twidth: 16px;\n\theight: 16px;\n\tborder-radius: 1em;\n\toverflow: visible;\n\tborder: none;\n}\n\n.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,\n.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {\n\tbackground-image: none;\n\twidth: 8px;\n\theight: 8px;\n\tborder-width: 4px;\n\tborder-style: solid;\n}\n\n.ui-checkboxradio-disabled {\n\tpointer-events: none;\n}\n\n.ui-datepicker {\n\twidth: 17em;\n\tpadding: .2em .2em 0;\n\tdisplay: none;\n}\n\n.ui-datepicker .ui-datepicker-header {\n\tposition: relative;\n\tpadding: .2em 0;\n}\n\n.ui-datepicker .ui-datepicker-prev,\n.ui-datepicker .ui-datepicker-next {\n\tposition: absolute;\n\ttop: 2px;\n\twidth: 1.8em;\n\theight: 1.8em;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover,\n.ui-datepicker .ui-datepicker-next-hover {\n\ttop: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev {\n\tleft: 2px;\n}\n\n.ui-datepicker .ui-datepicker-next {\n\tright: 2px;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover {\n\tleft: 1px;\n}\n\n.ui-datepicker .ui-datepicker-next-hover {\n\tright: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev span,\n.ui-datepicker .ui-datepicker-next span {\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 50%;\n\tmargin-left: -8px;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-datepicker .ui-datepicker-title {\n\tmargin: 0 2.3em;\n\tline-height: 1.8em;\n\ttext-align: center;\n}\n\n.ui-datepicker .ui-datepicker-title select {\n\tfont-size: 1em;\n\tmargin: 1px 0;\n}\n\n.ui-datepicker select.ui-datepicker-month,\n.ui-datepicker select.ui-datepicker-year {\n\twidth: 45%;\n}\n\n.ui-datepicker table {\n\twidth: 100%;\n\tfont-size: .9em;\n\tborder-collapse: collapse;\n\tmargin: 0 0 .4em;\n}\n\n.ui-datepicker th {\n\tpadding: .7em .3em;\n\ttext-align: center;\n\tfont-weight: bold;\n\tborder: 0;\n}\n\n.ui-datepicker td {\n\tborder: 0;\n\tpadding: 1px;\n}\n\n.ui-datepicker td span,\n.ui-datepicker td a {\n\tdisplay: block;\n\tpadding: .2em;\n\ttext-align: right;\n\ttext-decoration: none;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane {\n\tbackground-image: none;\n\tmargin: .7em 0 0 0;\n\tpadding: 0 .2em;\n\tborder-left: 0;\n\tborder-right: 0;\n\tborder-bottom: 0;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button {\n\tfloat: right;\n\tmargin: .5em .2em .4em;\n\tcursor: pointer;\n\tpadding: .2em .6em .3em .6em;\n\twidth: auto;\n\toverflow: visible;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {\n\tfloat: left;\n}\n\n/* with multiple calendars */\n.ui-datepicker.ui-datepicker-multi {\n\twidth: auto;\n}\n\n.ui-datepicker-multi .ui-datepicker-group {\n\tfloat: left;\n}\n\n.ui-datepicker-multi .ui-datepicker-group table {\n\twidth: 95%;\n\tmargin: 0 auto .4em;\n}\n\n.ui-datepicker-multi-2 .ui-datepicker-group {\n\twidth: 50%;\n}\n\n.ui-datepicker-multi-3 .ui-datepicker-group {\n\twidth: 33.3%;\n}\n\n.ui-datepicker-multi-4 .ui-datepicker-group {\n\twidth: 25%;\n}\n\n.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-left-width: 0;\n}\n\n.ui-datepicker-multi .ui-datepicker-buttonpane {\n\tclear: left;\n}\n\n.ui-datepicker-row-break {\n\tclear: both;\n\twidth: 100%;\n\tfont-size: 0;\n}\n\n/* RTL support */\n.ui-datepicker-rtl {\n\tdirection: rtl;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev {\n\tright: 2px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next {\n\tleft: 2px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev:hover {\n\tright: 1px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next:hover {\n\tleft: 1px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane {\n\tclear: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button {\n\tfloat: left;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,\n.ui-datepicker-rtl .ui-datepicker-group {\n\tfloat: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-right-width: 0;\n\tborder-left-width: 1px;\n}\n\n/* Icons */\n.ui-datepicker .ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n\tleft: .5em;\n\ttop: .3em;\n}\n\n.ui-dialog {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tpadding: .2em;\n\toutline: 0;\n}\n\n.ui-dialog .ui-dialog-titlebar {\n\tpadding: .4em 1em;\n\tposition: relative;\n}\n\n.ui-dialog .ui-dialog-title {\n\tfloat: left;\n\tmargin: .1em 0;\n\twhite-space: nowrap;\n\twidth: 90%;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n.ui-dialog .ui-dialog-titlebar-close {\n\tposition: absolute;\n\tright: .3em;\n\ttop: 50%;\n\twidth: 20px;\n\tmargin: -10px 0 0 0;\n\tpadding: 1px;\n\theight: 20px;\n}\n\n.ui-dialog .ui-dialog-content {\n\tposition: relative;\n\tborder: 0;\n\tpadding: .5em 1em;\n\tbackground: none;\n\toverflow: auto;\n}\n\n.ui-dialog .ui-dialog-buttonpane {\n\ttext-align: left;\n\tborder-width: 1px 0 0 0;\n\tbackground-image: none;\n\tmargin-top: .5em;\n\tpadding: .3em 1em .5em .4em;\n}\n\n.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {\n\tfloat: right;\n}\n\n.ui-dialog .ui-dialog-buttonpane button {\n\tmargin: .5em .4em .5em 0;\n\tcursor: pointer;\n}\n\n.ui-dialog .ui-resizable-n {\n\theight: 2px;\n\ttop: 0;\n}\n\n.ui-dialog .ui-resizable-e {\n\twidth: 2px;\n\tright: 0;\n}\n\n.ui-dialog .ui-resizable-s {\n\theight: 2px;\n\tbottom: 0;\n}\n\n.ui-dialog .ui-resizable-w {\n\twidth: 2px;\n\tleft: 0;\n}\n\n.ui-dialog .ui-resizable-se,\n.ui-dialog .ui-resizable-sw,\n.ui-dialog .ui-resizable-ne,\n.ui-dialog .ui-resizable-nw {\n\twidth: 7px;\n\theight: 7px;\n}\n\n.ui-dialog .ui-resizable-se {\n\tright: 0;\n\tbottom: 0;\n}\n\n.ui-dialog .ui-resizable-sw {\n\tleft: 0;\n\tbottom: 0;\n}\n\n.ui-dialog .ui-resizable-ne {\n\tright: 0;\n\ttop: 0;\n}\n\n.ui-dialog .ui-resizable-nw {\n\tleft: 0;\n\ttop: 0;\n}\n\n.ui-draggable .ui-dialog-titlebar {\n\tcursor: move;\n}\n\n.ui-progressbar {\n\theight: 2em;\n\ttext-align: left;\n\toverflow: hidden;\n}\n\n.ui-progressbar .ui-progressbar-value {\n\tmargin: -1px;\n\theight: 100%;\n}\n\n.ui-progressbar .ui-progressbar-overlay {\n\tbackground: url(\"data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==\");\n\theight: 100%;\n\tfilter: alpha(opacity=25); /* support: IE8 */\n\topacity: 0.25;\n}\n\n.ui-progressbar-indeterminate .ui-progressbar-value {\n\tbackground-image: none;\n}\n\n.ui-selectmenu-menu {\n\tpadding: 0;\n\tmargin: 0;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tdisplay: none;\n}\n\n.ui-selectmenu-menu .ui-menu {\n\toverflow: auto;\n\toverflow-x: hidden;\n\tpadding-bottom: 1px;\n}\n\n.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {\n\tfont-size: 1em;\n\tfont-weight: bold;\n\tline-height: 1.5;\n\tpadding: 2px 0.4em;\n\tmargin: 0.5em 0 0 0;\n\theight: auto;\n\tborder: 0;\n}\n\n.ui-selectmenu-open {\n\tdisplay: block;\n}\n\n.ui-selectmenu-text {\n\tdisplay: block;\n\tmargin-right: 20px;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n.ui-selectmenu-button.ui-button {\n\ttext-align: left;\n\twhite-space: nowrap;\n\twidth: 14em;\n}\n\n.ui-selectmenu-icon.ui-icon {\n\tfloat: right;\n\tmargin-top: 0;\n}\n\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* support: IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n\n.ui-spinner {\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tpadding: 0;\n\tvertical-align: middle;\n}\n\n.ui-spinner-input {\n\tborder: none;\n\tbackground: none;\n\tcolor: inherit;\n\tpadding: .222em 0;\n\tmargin: .2em 0;\n\tvertical-align: middle;\n\tmargin-left: .4em;\n\tmargin-right: 2em;\n}\n\n.ui-spinner-button {\n\twidth: 1.6em;\n\theight: 50%;\n\tfont-size: .5em;\n\tpadding: 0;\n\tmargin: 0;\n\ttext-align: center;\n\tposition: absolute;\n\tcursor: default;\n\tdisplay: block;\n\toverflow: hidden;\n\tright: 0;\n}\n\n/* more specificity required here to override default borders */\n.ui-spinner a.ui-spinner-button {\n\tborder-top-style: none;\n\tborder-bottom-style: none;\n\tborder-right-style: none;\n}\n\n.ui-spinner-up {\n\ttop: 0;\n}\n\n.ui-spinner-down {\n\tbottom: 0;\n}\n\n.ui-tabs {\n\tposition: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as \"fixed\") */\n\tpadding: .2em;\n}\n\n.ui-tabs .ui-tabs-nav {\n\tmargin: 0;\n\tpadding: .2em .2em 0;\n}\n\n.ui-tabs .ui-tabs-nav li {\n\tlist-style: none;\n\tfloat: left;\n\tposition: relative;\n\ttop: 0;\n\tmargin: 1px .2em 0 0;\n\tborder-bottom-width: 0;\n\tpadding: 0;\n\twhite-space: nowrap;\n}\n\n.ui-tabs .ui-tabs-nav .ui-tabs-anchor {\n\tfloat: left;\n\tpadding: .5em 1em;\n\ttext-decoration: none;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active {\n\tmargin-bottom: -1px;\n\tpadding-bottom: 1px;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {\n\tcursor: text;\n}\n\n.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {\n\tcursor: pointer;\n}\n\n.ui-tabs .ui-tabs-panel {\n\tdisplay: block;\n\tborder-width: 0;\n\tpadding: 1em 1.4em;\n\tbackground: none;\n}\n\n.ui-tooltip {\n\tpadding: 8px;\n\tposition: absolute;\n\tz-index: 9999;\n\tmax-width: 300px;\n}\n\nbody .ui-tooltip {\n\tborder-width: 2px;\n}\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1.1em;\n}\n\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1em;\n}\n\n.ui-widget.ui-widget-content {\n\tborder: 1px solid #CCC;\n}\n\n.ui-widget-content {\n\tborder: 1px solid #DDD;\n\tbackground: #EEE;\n\tcolor: #333;\n}\n\n.ui-widget-content a {\n\tcolor: #333;\n}\n\n.ui-widget-header {\n\tborder: 1px solid #E78F08;\n\tbackground: #F6A828;\n\tcolor: #FFF;\n\tfont-weight: bold;\n}\n\n.ui-widget-header a {\n\tcolor: #FFF;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default,\n.ui-button,\n\n/* We use html here because we need a greater specificity to make sure disabled\nworks properly when clicked or hovered */\nhtml .ui-button.ui-state-disabled:hover,\nhtml .ui-button.ui-state-disabled:active {\n\tborder: 1px solid #CCC;\n\tbackground: #F6F6F6 url(\"images/ui-bg_glass_100_f6f6f6_1x400.png\") 50% 50% repeat-x;\n\tfont-weight: normal;\n\tcolor: #2B2B2B;\n}\n\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited,\na.ui-button,\na:link.ui-button,\na:visited.ui-button,\n.ui-button {\n\tcolor: #2B2B2B;\n\ttext-decoration: none;\n}\n\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus,\n.ui-button:hover,\n.ui-button:focus {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited,\na.ui-button:hover,\na.ui-button:focus {\n\tcolor: #454545;\n\ttext-decoration: none;\n}\n\n.ui-visual-focus {\n\tbox-shadow: 0 0 3px 1px rgb(94, 158, 214);\n}\n\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active,\na.ui-button:active,\n.ui-button:active,\n.ui-button.ui-state-active:hover {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-icon-background,\n.ui-state-active .ui-icon-background {\n\tborder: #C5C5C5;\n\tbackground-color: #454545;\n}\n\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #454545;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #FED22F;\n\tbackground: #FFE45C;\n\tcolor: #363636;\n}\n\n.ui-state-checked {\n\tborder: 1px solid #FED22F;\n\tbackground: #FFE45C;\n}\n\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #363636;\n}\n\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #CD0A0A;\n\tbackground: #B81900;\n\tcolor: #FFF;\n}\n\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #FFF;\n}\n\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #FFF;\n}\n\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: .7;\n\tfilter: alpha(opacity=70); /* support: IE8 */\n\tfont-weight: normal;\n}\n\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: .35;\n\tfilter: alpha(opacity=35); /* support: IE8 */\n\tbackground-image: none;\n}\n\n.ui-state-disabled .ui-icon {\n\tfilter: alpha(opacity=35); /* support: IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-widget-header .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffffff_256x240.png\");\n}\n\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon,\n.ui-button:hover .ui-icon,\n.ui-button:focus .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-active .ui-icon,\n.ui-button:active .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-highlight .ui-icon,\n.ui-button .ui-state-highlight.ui-icon {\n\tbackground-image: url(\"images/ui-icons_228ef1_256x240.png\");\n}\n\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffd27a_256x240.png\");\n}\n\n.ui-button .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n/* positioning */\n.ui-icon-blank {\n\tbackground-position: 16px 16px;\n}\n\n.ui-icon-caret-1-n {\n\tbackground-position: 0 0;\n}\n\n.ui-icon-caret-1-ne {\n\tbackground-position: -16px 0;\n}\n\n.ui-icon-caret-1-e {\n\tbackground-position: -32px 0;\n}\n\n.ui-icon-caret-1-se {\n\tbackground-position: -48px 0;\n}\n\n.ui-icon-caret-1-s {\n\tbackground-position: -65px 0;\n}\n\n.ui-icon-caret-1-sw {\n\tbackground-position: -80px 0;\n}\n\n.ui-icon-caret-1-w {\n\tbackground-position: -96px 0;\n}\n\n.ui-icon-caret-1-nw {\n\tbackground-position: -112px 0;\n}\n\n.ui-icon-caret-2-n-s {\n\tbackground-position: -128px 0;\n}\n\n.ui-icon-caret-2-e-w {\n\tbackground-position: -144px 0;\n}\n\n.ui-icon-triangle-1-n {\n\tbackground-position: 0 -16px;\n}\n\n.ui-icon-triangle-1-ne {\n\tbackground-position: -16px -16px;\n}\n\n.ui-icon-triangle-1-e {\n\tbackground-position: -32px -16px;\n}\n\n.ui-icon-triangle-1-se {\n\tbackground-position: -48px -16px;\n}\n\n.ui-icon-triangle-1-s {\n\tbackground-position: -65px -16px;\n}\n\n.ui-icon-triangle-1-sw {\n\tbackground-position: -80px -16px;\n}\n\n.ui-icon-triangle-1-w {\n\tbackground-position: -96px -16px;\n}\n\n.ui-icon-triangle-1-nw {\n\tbackground-position: -112px -16px;\n}\n\n.ui-icon-triangle-2-n-s {\n\tbackground-position: -128px -16px;\n}\n\n.ui-icon-triangle-2-e-w {\n\tbackground-position: -144px -16px;\n}\n\n.ui-icon-arrow-1-n {\n\tbackground-position: 0 -32px;\n}\n\n.ui-icon-arrow-1-ne {\n\tbackground-position: -16px -32px;\n}\n\n.ui-icon-arrow-1-e {\n\tbackground-position: -32px -32px;\n}\n\n.ui-icon-arrow-1-se {\n\tbackground-position: -48px -32px;\n}\n\n.ui-icon-arrow-1-s {\n\tbackground-position: -65px -32px;\n}\n\n.ui-icon-arrow-1-sw {\n\tbackground-position: -80px -32px;\n}\n\n.ui-icon-arrow-1-w {\n\tbackground-position: -96px -32px;\n}\n\n.ui-icon-arrow-1-nw {\n\tbackground-position: -112px -32px;\n}\n\n.ui-icon-arrow-2-n-s {\n\tbackground-position: -128px -32px;\n}\n\n.ui-icon-arrow-2-ne-sw {\n\tbackground-position: -144px -32px;\n}\n\n.ui-icon-arrow-2-e-w {\n\tbackground-position: -160px -32px;\n}\n\n.ui-icon-arrow-2-se-nw {\n\tbackground-position: -176px -32px;\n}\n\n.ui-icon-arrowstop-1-n {\n\tbackground-position: -192px -32px;\n}\n\n.ui-icon-arrowstop-1-e {\n\tbackground-position: -208px -32px;\n}\n\n.ui-icon-arrowstop-1-s {\n\tbackground-position: -224px -32px;\n}\n\n.ui-icon-arrowstop-1-w {\n\tbackground-position: -240px -32px;\n}\n\n.ui-icon-arrowthick-1-n {\n\tbackground-position: 1px -48px;\n}\n\n.ui-icon-arrowthick-1-ne {\n\tbackground-position: -16px -48px;\n}\n\n.ui-icon-arrowthick-1-e {\n\tbackground-position: -32px -48px;\n}\n\n.ui-icon-arrowthick-1-se {\n\tbackground-position: -48px -48px;\n}\n\n.ui-icon-arrowthick-1-s {\n\tbackground-position: -64px -48px;\n}\n\n.ui-icon-arrowthick-1-sw {\n\tbackground-position: -80px -48px;\n}\n\n.ui-icon-arrowthick-1-w {\n\tbackground-position: -96px -48px;\n}\n\n.ui-icon-arrowthick-1-nw {\n\tbackground-position: -112px -48px;\n}\n\n.ui-icon-arrowthick-2-n-s {\n\tbackground-position: -128px -48px;\n}\n\n.ui-icon-arrowthick-2-ne-sw {\n\tbackground-position: -144px -48px;\n}\n\n.ui-icon-arrowthick-2-e-w {\n\tbackground-position: -160px -48px;\n}\n\n.ui-icon-arrowthick-2-se-nw {\n\tbackground-position: -176px -48px;\n}\n\n.ui-icon-arrowthickstop-1-n {\n\tbackground-position: -192px -48px;\n}\n\n.ui-icon-arrowthickstop-1-e {\n\tbackground-position: -208px -48px;\n}\n\n.ui-icon-arrowthickstop-1-s {\n\tbackground-position: -224px -48px;\n}\n\n.ui-icon-arrowthickstop-1-w {\n\tbackground-position: -240px -48px;\n}\n\n.ui-icon-arrowreturnthick-1-w {\n\tbackground-position: 0 -64px;\n}\n\n.ui-icon-arrowreturnthick-1-n {\n\tbackground-position: -16px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-e {\n\tbackground-position: -32px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-s {\n\tbackground-position: -48px -64px;\n}\n\n.ui-icon-arrowreturn-1-w {\n\tbackground-position: -64px -64px;\n}\n\n.ui-icon-arrowreturn-1-n {\n\tbackground-position: -80px -64px;\n}\n\n.ui-icon-arrowreturn-1-e {\n\tbackground-position: -96px -64px;\n}\n\n.ui-icon-arrowreturn-1-s {\n\tbackground-position: -112px -64px;\n}\n\n.ui-icon-arrowrefresh-1-w {\n\tbackground-position: -128px -64px;\n}\n\n.ui-icon-arrowrefresh-1-n {\n\tbackground-position: -144px -64px;\n}\n\n.ui-icon-arrowrefresh-1-e {\n\tbackground-position: -160px -64px;\n}\n\n.ui-icon-arrowrefresh-1-s {\n\tbackground-position: -176px -64px;\n}\n\n.ui-icon-arrow-4 {\n\tbackground-position: 0 -80px;\n}\n\n.ui-icon-arrow-4-diag {\n\tbackground-position: -16px -80px;\n}\n\n.ui-icon-extlink {\n\tbackground-position: -32px -80px;\n}\n\n.ui-icon-newwin {\n\tbackground-position: -48px -80px;\n}\n\n.ui-icon-refresh {\n\tbackground-position: -64px -80px;\n}\n\n.ui-icon-shuffle {\n\tbackground-position: -80px -80px;\n}\n\n.ui-icon-transfer-e-w {\n\tbackground-position: -96px -80px;\n}\n\n.ui-icon-transferthick-e-w {\n\tbackground-position: -112px -80px;\n}\n\n.ui-icon-folder-collapsed {\n\tbackground-position: 0 -96px;\n}\n\n.ui-icon-folder-open {\n\tbackground-position: -16px -96px;\n}\n\n.ui-icon-document {\n\tbackground-position: -32px -96px;\n}\n\n.ui-icon-document-b {\n\tbackground-position: -48px -96px;\n}\n\n.ui-icon-note {\n\tbackground-position: -64px -96px;\n}\n\n.ui-icon-mail-closed {\n\tbackground-position: -80px -96px;\n}\n\n.ui-icon-mail-open {\n\tbackground-position: -96px -96px;\n}\n\n.ui-icon-suitcase {\n\tbackground-position: -112px -96px;\n}\n\n.ui-icon-comment {\n\tbackground-position: -128px -96px;\n}\n\n.ui-icon-person {\n\tbackground-position: -144px -96px;\n}\n\n.ui-icon-print {\n\tbackground-position: -160px -96px;\n}\n\n.ui-icon-trash {\n\tbackground-position: -176px -96px;\n}\n\n.ui-icon-locked {\n\tbackground-position: -192px -96px;\n}\n\n.ui-icon-unlocked {\n\tbackground-position: -208px -96px;\n}\n\n.ui-icon-bookmark {\n\tbackground-position: -224px -96px;\n}\n\n.ui-icon-tag {\n\tbackground-position: -240px -96px;\n}\n\n.ui-icon-home {\n\tbackground-position: 0 -112px;\n}\n\n.ui-icon-flag {\n\tbackground-position: -16px -112px;\n}\n\n.ui-icon-calendar {\n\tbackground-position: -32px -112px;\n}\n\n.ui-icon-cart {\n\tbackground-position: -48px -112px;\n}\n\n.ui-icon-pencil {\n\tbackground-position: -64px -112px;\n}\n\n.ui-icon-clock {\n\tbackground-position: -80px -112px;\n}\n\n.ui-icon-disk {\n\tbackground-position: -96px -112px;\n}\n\n.ui-icon-calculator {\n\tbackground-position: -112px -112px;\n}\n\n.ui-icon-zoomin {\n\tbackground-position: -128px -112px;\n}\n\n.ui-icon-zoomout {\n\tbackground-position: -144px -112px;\n}\n\n.ui-icon-search {\n\tbackground-position: -160px -112px;\n}\n\n.ui-icon-wrench {\n\tbackground-position: -176px -112px;\n}\n\n.ui-icon-gear {\n\tbackground-position: -192px -112px;\n}\n\n.ui-icon-heart {\n\tbackground-position: -208px -112px;\n}\n\n.ui-icon-star {\n\tbackground-position: -224px -112px;\n}\n\n.ui-icon-link {\n\tbackground-position: -240px -112px;\n}\n\n.ui-icon-cancel {\n\tbackground-position: 0 -128px;\n}\n\n.ui-icon-plus {\n\tbackground-position: -16px -128px;\n}\n\n.ui-icon-plusthick {\n\tbackground-position: -32px -128px;\n}\n\n.ui-icon-minus {\n\tbackground-position: -48px -128px;\n}\n\n.ui-icon-minusthick {\n\tbackground-position: -64px -128px;\n}\n\n.ui-icon-close {\n\tbackground-position: -80px -128px;\n}\n\n.ui-icon-closethick {\n\tbackground-position: -96px -128px;\n}\n\n.ui-icon-key {\n\tbackground-position: -112px -128px;\n}\n\n.ui-icon-lightbulb {\n\tbackground-position: -128px -128px;\n}\n\n.ui-icon-scissors {\n\tbackground-position: -144px -128px;\n}\n\n.ui-icon-clipboard {\n\tbackground-position: -160px -128px;\n}\n\n.ui-icon-copy {\n\tbackground-position: -176px -128px;\n}\n\n.ui-icon-contact {\n\tbackground-position: -192px -128px;\n}\n\n.ui-icon-image {\n\tbackground-position: -208px -128px;\n}\n\n.ui-icon-video {\n\tbackground-position: -224px -128px;\n}\n\n.ui-icon-script {\n\tbackground-position: -240px -128px;\n}\n\n.ui-icon-alert {\n\tbackground-position: 0 -144px;\n}\n\n.ui-icon-info {\n\tbackground-position: -16px -144px;\n}\n\n.ui-icon-notice {\n\tbackground-position: -32px -144px;\n}\n\n.ui-icon-help {\n\tbackground-position: -48px -144px;\n}\n\n.ui-icon-check {\n\tbackground-position: -64px -144px;\n}\n\n.ui-icon-bullet {\n\tbackground-position: -80px -144px;\n}\n\n.ui-icon-radio-on {\n\tbackground-position: -96px -144px;\n}\n\n.ui-icon-radio-off {\n\tbackground-position: -112px -144px;\n}\n\n.ui-icon-pin-w {\n\tbackground-position: -128px -144px;\n}\n\n.ui-icon-pin-s {\n\tbackground-position: -144px -144px;\n}\n\n.ui-icon-play {\n\tbackground-position: 0 -160px;\n}\n\n.ui-icon-pause {\n\tbackground-position: -16px -160px;\n}\n\n.ui-icon-seek-next {\n\tbackground-position: -32px -160px;\n}\n\n.ui-icon-seek-prev {\n\tbackground-position: -48px -160px;\n}\n\n.ui-icon-seek-end {\n\tbackground-position: -64px -160px;\n}\n\n.ui-icon-seek-start {\n\tbackground-position: -80px -160px;\n}\n\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first {\n\tbackground-position: -80px -160px;\n}\n\n.ui-icon-stop {\n\tbackground-position: -96px -160px;\n}\n\n.ui-icon-eject {\n\tbackground-position: -112px -160px;\n}\n\n.ui-icon-volume-off {\n\tbackground-position: -128px -160px;\n}\n\n.ui-icon-volume-on {\n\tbackground-position: -144px -160px;\n}\n\n.ui-icon-power {\n\tbackground-position: 0 -176px;\n}\n\n.ui-icon-signal-diag {\n\tbackground-position: -16px -176px;\n}\n\n.ui-icon-signal {\n\tbackground-position: -32px -176px;\n}\n\n.ui-icon-battery-0 {\n\tbackground-position: -48px -176px;\n}\n\n.ui-icon-battery-1 {\n\tbackground-position: -64px -176px;\n}\n\n.ui-icon-battery-2 {\n\tbackground-position: -80px -176px;\n}\n\n.ui-icon-battery-3 {\n\tbackground-position: -96px -176px;\n}\n\n.ui-icon-circle-plus {\n\tbackground-position: 0 -192px;\n}\n\n.ui-icon-circle-minus {\n\tbackground-position: -16px -192px;\n}\n\n.ui-icon-circle-close {\n\tbackground-position: -32px -192px;\n}\n\n.ui-icon-circle-triangle-e {\n\tbackground-position: -48px -192px;\n}\n\n.ui-icon-circle-triangle-s {\n\tbackground-position: -64px -192px;\n}\n\n.ui-icon-circle-triangle-w {\n\tbackground-position: -80px -192px;\n}\n\n.ui-icon-circle-triangle-n {\n\tbackground-position: -96px -192px;\n}\n\n.ui-icon-circle-arrow-e {\n\tbackground-position: -112px -192px;\n}\n\n.ui-icon-circle-arrow-s {\n\tbackground-position: -128px -192px;\n}\n\n.ui-icon-circle-arrow-w {\n\tbackground-position: -144px -192px;\n}\n\n.ui-icon-circle-arrow-n {\n\tbackground-position: -160px -192px;\n}\n\n.ui-icon-circle-zoomin {\n\tbackground-position: -176px -192px;\n}\n\n.ui-icon-circle-zoomout {\n\tbackground-position: -192px -192px;\n}\n\n.ui-icon-circle-check {\n\tbackground-position: -208px -192px;\n}\n\n.ui-icon-circlesmall-plus {\n\tbackground-position: 0 -208px;\n}\n\n.ui-icon-circlesmall-minus {\n\tbackground-position: -16px -208px;\n}\n\n.ui-icon-circlesmall-close {\n\tbackground-position: -32px -208px;\n}\n\n.ui-icon-squaresmall-plus {\n\tbackground-position: -48px -208px;\n}\n\n.ui-icon-squaresmall-minus {\n\tbackground-position: -64px -208px;\n}\n\n.ui-icon-squaresmall-close {\n\tbackground-position: -80px -208px;\n}\n\n.ui-icon-grip-dotted-vertical {\n\tbackground-position: 0 -224px;\n}\n\n.ui-icon-grip-dotted-horizontal {\n\tbackground-position: -16px -224px;\n}\n\n.ui-icon-grip-solid-vertical {\n\tbackground-position: -32px -224px;\n}\n\n.ui-icon-grip-solid-horizontal {\n\tbackground-position: -48px -224px;\n}\n\n.ui-icon-gripsmall-diagonal-se {\n\tbackground-position: -64px -224px;\n}\n\n.ui-icon-grip-diagonal-se {\n\tbackground-position: -80px -224px;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 4px;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #666;\n\topacity: .5;\n\tfilter: alpha(opacity=50); /* support: IE8 */\n}\n\n.ui-widget-shadow {\n\t-webkit-box-shadow: -5px -5px 5px #000;\n\tbox-shadow: -5px -5px 5px #000;\n}"]}
|
File without changes
|
@@ -1,2 +1,2 @@
|
|
1 |
/* * LABELAUTY jQuery Plugin Styles * * @file: jquery-labelauty.css * @author: Francisco Neves (@fntneves) * @site: www.francisconeves.com * @license: MIT License */input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty{display:none !important}input.labelauty+label{display:inline-block;font-size:13px;padding:10px;background-color:#efefef;color:black;cursor:pointer;margin-top:10px;margin-right:10px;width:96%;border-radius:3px 3px 3px 3px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;transition:background-color .25s;-moz-transition:background-color .25s;-webkit-transition:background-color .25s;-o-transition:background-color .25s;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}input.labelauty+label>span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked{display:inline-block;line-height:1.1;vertical-align:middle}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:inline-block;width:30px;height:30px;vertical-align:middle;background-repeat:no-repeat;background-position:left center;background-size:contain;transition:background-image .5s linear;-moz-transition:background-image .5s linear;-webkit-transition:background-image .5s linear;-o-transition:background-image .5s linear}input.labelauty+label>span.labelauty-unchecked-image+span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked-image+span.labelauty-checked{margin-left:7px}input.labelauty:not(:checked):not([disabled])+label:hover{background-color:#eaeaea;color:#a7a7a7}input.labelauty:not(:checked)+label>span.labelauty-checked-image{display:none}input.labelauty:not(:checked)+label>span.labelauty-checked{display:none}input.labelauty:checked+label{background-color:#3498db;color:#fff}input.labelauty:checked:not([disabled])+label:hover{background-color:#72c5fd}input.labelauty:checked+label>span.labelauty-unchecked-image{display:none}input.labelauty:checked+label>span.labelauty-unchecked{display:none}input.labelauty:checked+label>span.labelauty-checked{display:inline-block}input.labelauty.no-label:checked+label>span.labelauty-checked{display:block}input.labelauty[disabled]+label{opacity:.5}input.labelauty+label>span.labelauty-unchecked-image{background-image:url(images/icons/folder.png)}input.labelauty+label>span.labelauty-checked-image{background-image:url(images/icons/folder.png)}input.labelauty.email+label>span.labelauty-checked-image,input.labelauty.email+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/email.png)}input.labelauty.cloudfiles+label>span.labelauty-checked-image,input.labelauty.cloudfiles+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/cloudfiles.png)}input.labelauty.dreamobjects+label>span.labelauty-checked-image,input.labelauty.dreamobjects+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dreamobjects.png)}input.labelauty.dropbox+label>span.labelauty-checked-image,input.labelauty.dropbox+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dropbox.png)}input.labelauty.ftp+label>span.labelauty-checked-image,input.labelauty.ftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.sftp+label>span.labelauty-checked-image,input.labelauty.sftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.googledrive+label>span.labelauty-checked-image,input.labelauty.googledrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googledrive.png)}input.labelauty.s3generic+label>span.labelauty-checked-image,input.labelauty.s3generic+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.onedrive+label>span.labelauty-checked-image,input.labelauty.onedrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/onedrive.png)}input.labelauty.azure+label>span.labelauty-checked-image,input.labelauty.azure+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/azure.png)}input.labelauty.backblaze+label>span.labelauty-checked-image,input.labelauty.backblaze+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/backblaze.png)}input.labelauty.openstack+label>span.labelauty-checked-image,input.labelauty.openstack+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/openstack.png)}input.labelauty.s3+label>span.labelauty-checked-image,input.labelauty.s3+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/s3.png)}input.labelauty.updraftvault+label>span.labelauty-checked-image,input.labelauty.updraftvault+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/updraftvault.png)}input.labelauty.webdav+label>span.labelauty-checked-image,input.labelauty.webdav+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/webdav.png)}input.labelauty.googlecloud+label>span.labelauty-checked-image,input.labelauty.googlecloud+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googlecloud.png)}#remote-storage-container{height:auto;width:auto;-moz-column-count:2;-webkit-column-count:2;column-count:2}@media only screen and (min-width:480px){#remote-storage-container{height:auto;width:auto}}@media only screen and (min-width:1000px){#remote-storage-container{-moz-column-count:3;-webkit-column-count:3;column-count:3;height:auto;width:auto}}@media only screen and (max-width:480px){input.labelauty+label{text-align:center}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:block;margin:0 auto;margin-bottom:4px}}
|
2 |
-
/*# sourceMappingURL=jquery-labelauty-1-16-
|
1 |
/* * LABELAUTY jQuery Plugin Styles * * @file: jquery-labelauty.css * @author: Francisco Neves (@fntneves) * @site: www.francisconeves.com * @license: MIT License */input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty{display:none !important}input.labelauty+label{display:inline-block;font-size:13px;padding:10px;background-color:#efefef;color:black;cursor:pointer;margin-top:10px;margin-right:10px;width:96%;border-radius:3px 3px 3px 3px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;transition:background-color .25s;-moz-transition:background-color .25s;-webkit-transition:background-color .25s;-o-transition:background-color .25s;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}input.labelauty+label>span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked{display:inline-block;line-height:1.1;vertical-align:middle}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:inline-block;width:30px;height:30px;vertical-align:middle;background-repeat:no-repeat;background-position:left center;background-size:contain;transition:background-image .5s linear;-moz-transition:background-image .5s linear;-webkit-transition:background-image .5s linear;-o-transition:background-image .5s linear}input.labelauty+label>span.labelauty-unchecked-image+span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked-image+span.labelauty-checked{margin-left:7px}input.labelauty:not(:checked):not([disabled])+label:hover{background-color:#eaeaea;color:#a7a7a7}input.labelauty:not(:checked)+label>span.labelauty-checked-image{display:none}input.labelauty:not(:checked)+label>span.labelauty-checked{display:none}input.labelauty:checked+label{background-color:#3498db;color:#fff}input.labelauty:checked:not([disabled])+label:hover{background-color:#72c5fd}input.labelauty:checked+label>span.labelauty-unchecked-image{display:none}input.labelauty:checked+label>span.labelauty-unchecked{display:none}input.labelauty:checked+label>span.labelauty-checked{display:inline-block}input.labelauty.no-label:checked+label>span.labelauty-checked{display:block}input.labelauty[disabled]+label{opacity:.5}input.labelauty+label>span.labelauty-unchecked-image{background-image:url(images/icons/folder.png)}input.labelauty+label>span.labelauty-checked-image{background-image:url(images/icons/folder.png)}input.labelauty.email+label>span.labelauty-checked-image,input.labelauty.email+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/email.png)}input.labelauty.cloudfiles+label>span.labelauty-checked-image,input.labelauty.cloudfiles+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/cloudfiles.png)}input.labelauty.dreamobjects+label>span.labelauty-checked-image,input.labelauty.dreamobjects+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dreamobjects.png)}input.labelauty.dropbox+label>span.labelauty-checked-image,input.labelauty.dropbox+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dropbox.png)}input.labelauty.ftp+label>span.labelauty-checked-image,input.labelauty.ftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.sftp+label>span.labelauty-checked-image,input.labelauty.sftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.googledrive+label>span.labelauty-checked-image,input.labelauty.googledrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googledrive.png)}input.labelauty.s3generic+label>span.labelauty-checked-image,input.labelauty.s3generic+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.onedrive+label>span.labelauty-checked-image,input.labelauty.onedrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/onedrive.png)}input.labelauty.azure+label>span.labelauty-checked-image,input.labelauty.azure+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/azure.png)}input.labelauty.backblaze+label>span.labelauty-checked-image,input.labelauty.backblaze+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/backblaze.png)}input.labelauty.openstack+label>span.labelauty-checked-image,input.labelauty.openstack+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/openstack.png)}input.labelauty.s3+label>span.labelauty-checked-image,input.labelauty.s3+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/s3.png)}input.labelauty.updraftvault+label>span.labelauty-checked-image,input.labelauty.updraftvault+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/updraftvault.png)}input.labelauty.webdav+label>span.labelauty-checked-image,input.labelauty.webdav+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/webdav.png)}input.labelauty.googlecloud+label>span.labelauty-checked-image,input.labelauty.googlecloud+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googlecloud.png)}#remote-storage-container{height:auto;width:auto;-moz-column-count:2;-webkit-column-count:2;column-count:2}@media only screen and (min-width:480px){#remote-storage-container{height:auto;width:auto}}@media only screen and (min-width:1000px){#remote-storage-container{-moz-column-count:3;-webkit-column-count:3;column-count:3;height:auto;width:auto}}@media only screen and (max-width:480px){input.labelauty+label{text-align:center}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:block;margin:0 auto;margin-bottom:4px}}
|
2 |
+
/*# sourceMappingURL=jquery-labelauty-1-16-67.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["includes/labelauty/jquery-labelauty.css"],"names":[],"mappings":"AAAA;;;;;;;EAOE;;AAEF,sCAAsC;AACtC,2CAAsC,wCAAwC,EAAE;AAAhF,sCAAsC,wCAAwC,EAAE;AAChF,2CAA2C,wCAAwC,EAAE;;AAErF,6CAA6C;AAC7C,kBAAkB,wBAAwB,EAAE;;AAE5C;;;EAGE;AACF;;CAEC,qBAAqB;CACrB,eAAe;CACf,aAAa;CACb,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf,gBAAgB;CAChB,kBAAkB;CAClB,UAAU;;CAEV,8BAA8B;CAC9B,mCAAmC;CACnC,sCAAsC;;;CAGtC,kCAAkC;CAClC,uCAAuC;CACvC,0CAA0C;CAC1C,qCAAqC;;CAErC,sBAAsB;CACtB,wBAAwB;CACxB,yBAAyB;CACzB,oBAAoB;AACrB;;AAEA,8BAA8B;;AAE9B;;;CAGC,qBAAqB;CACrB,gBAAgB;CAChB,sBAAsB;AACvB;;AAEA,+BAA+B;;AAE/B;;;CAGC,qBAAqB;CACrB,WAAW;CACX,YAAY;CACZ,sBAAsB;CACtB,4BAA4B;CAC5B,gCAAgC;CAChC,wBAAwB;;CAExB,wCAAwC;CACxC,6CAA6C;CAC7C,gDAAgD;CAChD,2CAA2C;AAC5C;;AAEA,0DAA0D;AAC1D;;;CAGC,gBAAgB;AACjB;;AAEA,qBAAqB;AACrB;;CAEC,yBAAyB;CACzB,cAAc;AACf;AACA;;CAEC,aAAa;AACd;;AAEA;;CAEC,aAAa;AACd;;AAEA,iBAAiB;AACjB;;CAEC,yBAAyB;CACzB,cAAc;AACf;;AAEA;;CAEC,yBAAyB;AAC1B;AACA;;CAEC,aAAa;AACd;;AAEA;;CAEC,aAAa;AACd;;AAEA;;CAEC,qBAAqB;AACtB;;AAEA;;CAEC,cAAc;AACf;;AAEA,kBAAkB;AAClB;;CAEC,YAAY;AACb;;AAEA,2CAA2C;AAC3C;;CAEC,gDAAgD;AACjD;;AAEA;;CAEC,gDAAgD;AACjD;;AAEA;;CAEC,qDAAqD;AACtD;;AAEA;;CAEC,0DAA0D;AAC3D;;AAEA;;CAEC,4DAA4D;AAC7D;;AAEA;;CAEC,uDAAuD;AACxD;;AAEA;;CAEC,sDAAsD;AACvD;;AAEA;;CAEC,sDAAsD;AACvD;;AAEA;;CAEC,2DAA2D;AAC5D;;AAEA;;CAEC,sDAAsD;AACvD;;AAEA;;CAEC,wDAAwD;AACzD;;AAEA;;CAEC,qDAAqD;AACtD;;AAEA;;CAEC,yDAAyD;AAC1D;;AAEA;;CAEC,yDAAyD;AAC1D;;AAEA;;CAEC,kDAAkD;AACnD;;AAEA;;CAEC,4DAA4D;AAC7D;;AAEA;;CAEC,sDAAsD;AACvD;;AAEA;;CAEC,2DAA2D;AAC5D;;AAEA;IACI,YAAY;IACZ,WAAW;CACd,oBAAoB;CACpB,uBAAuB;CACvB,eAAe;AAChB;;AAEA;;CAEC;EACC,YAAY;EACZ,WAAW;CACZ;;AAED;;AAEA;;CAEC;EACC,oBAAoB;EACpB,uBAAuB;EACvB,eAAe;EACf,YAAY;EACZ,WAAW;CACZ;;AAED;;AAEA;;CAEC;EACC,kBAAkB;CACnB;;CAEA;EACC,cAAc;EACd,cAAc;EACd,kBAAkB;CACnB;;AAED","file":"jquery-labelauty-1-16-
|
1 |
+
{"version":3,"sources":["includes/labelauty/jquery-labelauty.css"],"names":[],"mappings":"AAAA;;;;;;;EAOE;;AAEF,sCAAsC;AACtC,2CAAsC,wCAAwC,EAAE;AAAhF,sCAAsC,wCAAwC,EAAE;AAChF,2CAA2C,wCAAwC,EAAE;;AAErF,6CAA6C;AAC7C,kBAAkB,wBAAwB,EAAE;;AAE5C;;;EAGE;AACF;;CAEC,qBAAqB;CACrB,eAAe;CACf,aAAa;CACb,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf,gBAAgB;CAChB,kBAAkB;CAClB,UAAU;;CAEV,8BAA8B;CAC9B,mCAAmC;CACnC,sCAAsC;;;CAGtC,kCAAkC;CAClC,uCAAuC;CACvC,0CAA0C;CAC1C,qCAAqC;;CAErC,sBAAsB;CACtB,wBAAwB;CACxB,yBAAyB;CACzB,oBAAoB;AACrB;;AAEA,8BAA8B;;AAE9B;;;CAGC,qBAAqB;CACrB,gBAAgB;CAChB,sBAAsB;AACvB;;AAEA,+BAA+B;;AAE/B;;;CAGC,qBAAqB;CACrB,WAAW;CACX,YAAY;CACZ,sBAAsB;CACtB,4BAA4B;CAC5B,gCAAgC;CAChC,wBAAwB;;CAExB,wCAAwC;CACxC,6CAA6C;CAC7C,gDAAgD;CAChD,2CAA2C;AAC5C;;AAEA,0DAA0D;AAC1D;;;CAGC,gBAAgB;AACjB;;AAEA,qBAAqB;AACrB;;CAEC,yBAAyB;CACzB,cAAc;AACf;AACA;;CAEC,aAAa;AACd;;AAEA;;CAEC,aAAa;AACd;;AAEA,iBAAiB;AACjB;;CAEC,yBAAyB;CACzB,cAAc;AACf;;AAEA;;CAEC,yBAAyB;AAC1B;AACA;;CAEC,aAAa;AACd;;AAEA;;CAEC,aAAa;AACd;;AAEA;;CAEC,qBAAqB;AACtB;;AAEA;;CAEC,cAAc;AACf;;AAEA,kBAAkB;AAClB;;CAEC,YAAY;AACb;;AAEA,2CAA2C;AAC3C;;CAEC,gDAAgD;AACjD;;AAEA;;CAEC,gDAAgD;AACjD;;AAEA;;CAEC,qDAAqD;AACtD;;AAEA;;CAEC,0DAA0D;AAC3D;;AAEA;;CAEC,4DAA4D;AAC7D;;AAEA;;CAEC,uDAAuD;AACxD;;AAEA;;CAEC,sDAAsD;AACvD;;AAEA;;CAEC,sDAAsD;AACvD;;AAEA;;CAEC,2DAA2D;AAC5D;;AAEA;;CAEC,sDAAsD;AACvD;;AAEA;;CAEC,wDAAwD;AACzD;;AAEA;;CAEC,qDAAqD;AACtD;;AAEA;;CAEC,yDAAyD;AAC1D;;AAEA;;CAEC,yDAAyD;AAC1D;;AAEA;;CAEC,kDAAkD;AACnD;;AAEA;;CAEC,4DAA4D;AAC7D;;AAEA;;CAEC,sDAAsD;AACvD;;AAEA;;CAEC,2DAA2D;AAC5D;;AAEA;IACI,YAAY;IACZ,WAAW;CACd,oBAAoB;CACpB,uBAAuB;CACvB,eAAe;AAChB;;AAEA;;CAEC;EACC,YAAY;EACZ,WAAW;CACZ;;AAED;;AAEA;;CAEC;EACC,oBAAoB;EACpB,uBAAuB;EACvB,eAAe;EACf,YAAY;EACZ,WAAW;CACZ;;AAED;;AAEA;;CAEC;EACC,kBAAkB;CACnB;;CAEA;EACC,cAAc;EACd,cAAc;EACd,kBAAkB;CACnB;;AAED","file":"jquery-labelauty-1-16-67.min.css","sourcesContent":["/*!\n * LABELAUTY jQuery Plugin Styles\n *\n * @file: jquery-labelauty.css\n * @author: Francisco Neves (@fntneves)\n * @site: www.francisconeves.com\n * @license: MIT License\n */\n\n/* Prevent text and blocks selection */\ninput.labelauty + label ::selection { background-color: rgba(255, 255, 255, 0); }\ninput.labelauty + label ::-moz-selection { background-color: rgba(255, 255, 255, 0); }\n\n/* Hide original checkboxes. They are ugly! */\ninput.labelauty { display: none !important; }\n\n/*\n * Let's style the input\n * Feel free to work with it as you wish!\n */\ninput.labelauty + label\n{\n\tdisplay: inline-block;\n\tfont-size: 13px;\n\tpadding: 10px;\n\tbackground-color: #efefef;\n\tcolor: black;\n\tcursor: pointer;\n\tmargin-top: 10px;\n\tmargin-right: 10px;\n\twidth: 96%;\n\n\tborder-radius: 3px 3px 3px 3px;\n\t-moz-border-radius: 3px 3px 3px 3px;\n\t-webkit-border-radius: 3px 3px 3px 3px;\n\n\n\ttransition: background-color 0.25s;\n\t-moz-transition: background-color 0.25s;\n\t-webkit-transition: background-color 0.25s;\n\t-o-transition: background-color 0.25s;\n\n\t-moz-user-select: none;\n\t-khtml-user-select: none;\n\t-webkit-user-select: none;\n\t-o-user-select: none;\n}\n\n/* Stylish text inside label */\n\ninput.labelauty + label > span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n\tline-height: 1.1;\n\tvertical-align: middle;\n}\n\n/* Stylish icons inside label */\n\ninput.labelauty + label > span.labelauty-unchecked-image,\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tdisplay: inline-block;\n\twidth: 30px;\n\theight: 30px;\n\tvertical-align: middle;\n\tbackground-repeat: no-repeat;\n\tbackground-position: left center;\n\tbackground-size: contain;\n\n\ttransition: background-image 0.5s linear;\n\t-moz-transition: background-image 0.5s linear;\n\t-webkit-transition: background-image 0.5s linear;\n\t-o-transition: background-image 0.5s linear;\n}\n\n/* When there's a label, add a little margin to the left */\ninput.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked-image + span.labelauty-checked\n{\n\tmargin-left: 7px;\n}\n\n/* When not Checked */\ninput.labelauty:not(:checked):not([disabled]) + label:hover\n{\n\tbackground-color: #eaeaea;\n\tcolor: #a7a7a7;\n}\ninput.labelauty:not(:checked) + label > span.labelauty-checked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:not(:checked) + label > span.labelauty-checked\n{\n\tdisplay: none;\n}\n\n/* When Checked */\ninput.labelauty:checked + label\n{\n\tbackground-color: #3498db;\n\tcolor: #ffffff;\n}\n\ninput.labelauty:checked:not([disabled]) + label:hover\n{\n\tbackground-color: #72c5fd;\n}\ninput.labelauty:checked + label > span.labelauty-unchecked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-unchecked\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n}\n\ninput.labelauty.no-label:checked + label > span.labelauty-checked\n{\n\tdisplay: block;\n}\n\n/* When Disabled */\ninput.labelauty[disabled] + label\n{\n\topacity: 0.5;\n}\n\n/* Add a background to (un)checked images */\ninput.labelauty + label > span.labelauty-unchecked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty.email + label > span.labelauty-checked-image,\ninput.labelauty.email + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/email.png );\n}\n\ninput.labelauty.cloudfiles + label > span.labelauty-checked-image,\ninput.labelauty.cloudfiles + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/cloudfiles.png );\n}\n\ninput.labelauty.dreamobjects + label > span.labelauty-checked-image,\ninput.labelauty.dreamobjects + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dreamobjects.png );\n}\n\ninput.labelauty.dropbox + label > span.labelauty-checked-image,\ninput.labelauty.dropbox + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dropbox.png );\n}\n\ninput.labelauty.ftp + label > span.labelauty-checked-image,\ninput.labelauty.ftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.sftp + label > span.labelauty-checked-image,\ninput.labelauty.sftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.googledrive + label > span.labelauty-checked-image,\ninput.labelauty.googledrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googledrive.png );\n}\n\ninput.labelauty.s3generic + label > span.labelauty-checked-image,\ninput.labelauty.s3generic + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.onedrive + label > span.labelauty-checked-image,\ninput.labelauty.onedrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/onedrive.png );\n}\n\ninput.labelauty.azure + label > span.labelauty-checked-image,\ninput.labelauty.azure + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/azure.png );\n}\n\ninput.labelauty.backblaze + label > span.labelauty-checked-image,\ninput.labelauty.backblaze + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/backblaze.png );\n}\n\ninput.labelauty.openstack + label > span.labelauty-checked-image,\ninput.labelauty.openstack + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/openstack.png );\n}\n\ninput.labelauty.s3 + label > span.labelauty-checked-image,\ninput.labelauty.s3 + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/s3.png );\n}\n\ninput.labelauty.updraftvault + label > span.labelauty-checked-image,\ninput.labelauty.updraftvault + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/updraftvault.png );\n}\n\ninput.labelauty.webdav + label > span.labelauty-checked-image,\ninput.labelauty.webdav + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/webdav.png );\n}\n\ninput.labelauty.googlecloud + label > span.labelauty-checked-image,\ninput.labelauty.googlecloud + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googlecloud.png );\n}\n\n#remote-storage-container {\n height: auto;\n width: auto;\n\t-moz-column-count: 2;\n\t-webkit-column-count: 2;\n\tcolumn-count: 2;\n}\n\n@media only screen and (min-width: 480px) {\n\n\t#remote-storage-container {\n\t\theight: auto;\n\t\twidth: auto;\n\t}\n\n}\n\n@media only screen and (min-width: 1000px) {\n\n\t#remote-storage-container {\n\t\t-moz-column-count: 3;\n\t\t-webkit-column-count: 3;\n\t\tcolumn-count: 3;\n\t\theight: auto;\n\t\twidth: auto;\n\t}\n\n}\n\n@media only screen and (max-width: 480px) {\n\n\tinput.labelauty + label {\n\t\ttext-align: center;\n\t}\n\n\tinput.labelauty + label > span.labelauty-unchecked-image, input.labelauty + label > span.labelauty-checked-image {\n\t\tdisplay: block;\n\t\tmargin: 0 auto;\n\t\tmargin-bottom: 4px;\n\t}\n\n}"]}
|
File without changes
|
File without changes
|
@@ -29,7 +29,7 @@ class UpdraftPlus_Temporary_Clone_User_Notice {
|
|
29 |
<div id="updraftplus_temporary_clone-usernotice" class="updated">
|
30 |
<h1><?php _e('UpdraftPlus temporary clone user login settings:', 'updraftplus'); ?></h1>
|
31 |
<p><?php _e('You can forbid non-admins logins to this cloned site by checking the checkbox below', 'updraftplus'); ?></p>
|
32 |
-
<input type="checkbox" name="updraftplus_clone_admin_only" value="1" <?php if ($admin_login) echo 'checked="checked"'; ?> onclick="jQuery.post('<?php echo admin_url('admin-ajax.php'); ?>', {action: 'updraftplus_user_notice_ajax', subaction: 'admin_only_login', nonce: '<?php echo wp_create_nonce('updraftplus_admin_only_login');?>', admin_only_login: jQuery(this).is(':checked') });">
|
33 |
</div>
|
34 |
<?php
|
35 |
}
|
29 |
<div id="updraftplus_temporary_clone-usernotice" class="updated">
|
30 |
<h1><?php _e('UpdraftPlus temporary clone user login settings:', 'updraftplus'); ?></h1>
|
31 |
<p><?php _e('You can forbid non-admins logins to this cloned site by checking the checkbox below', 'updraftplus'); ?></p>
|
32 |
+
<input type="checkbox" id="updraftplus_clone_admin_only" name="updraftplus_clone_admin_only" value="1" <?php if ($admin_login) echo 'checked="checked"'; ?> onclick="jQuery.post('<?php echo admin_url('admin-ajax.php'); ?>', {action: 'updraftplus_user_notice_ajax', subaction: 'admin_only_login', nonce: '<?php echo wp_create_nonce('updraftplus_admin_only_login');?>', admin_only_login: jQuery(this).is(':checked') });"> <label for="updraftplus_clone_admin_only"><?php _e('Allow only administrators to log in', 'updraftplus'); ?></label><br>
|
33 |
</div>
|
34 |
<?php
|
35 |
}
|
File without changes
|
File without changes
|
@@ -11,6 +11,18 @@ msgstr ""
|
|
11 |
"Language: af_ZA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/udaddons/options.php:98
|
15 |
msgid "An update is available for UpdraftPlus - please connect here to gain access to it."
|
16 |
msgstr ""
|
@@ -229,47 +241,47 @@ msgstr ""
|
|
229 |
msgid "If you have an existing backup that you wish to upload and restore from, then please use the \"Upload backup files\" link above."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: src/class-updraftplus.php:
|
233 |
msgid "Include all tables not listed below"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: src/class-updraftplus.php:
|
237 |
msgid "The amount of database tables scanned is near or over the php_max_input_vars value so some tables maybe truncated. This option will ensure all tables not found will be backed up."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: src/class-updraftplus.php:
|
241 |
msgid "The database scan was taking too long and consequently the list of all tables in the database could not be completed. This option will ensure all tables not found will be backed up."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: src/class-updraftplus.php:
|
245 |
msgid "Therefore, affected tables on the current site which already exist will not be replaced by default, to avoid corrupting them (you can review this in the list of tables below)."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: src/class-updraftplus.php:
|
249 |
msgid "Therefore it is advised that you take a fresh backup on the source site, using a later version."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: src/class-updraftplus.php:
|
253 |
msgid "This backup was created on a previous UpdraftPlus version (%s) which did not correctly backup tables with composite primary keys (such as the term_relationships table, which records tags and product attributes)."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: src/class-updraftplus.php:
|
257 |
msgid "This backup is of a site with an empty table prefix, which WordPress does not officially support; the results may be unreliable."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: src/class-updraftplus.php:
|
261 |
msgid "View log"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: src/class-updraftplus.php:
|
265 |
msgid "You can view the log by pressing the 'View log' button."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: src/class-updraftplus.php:
|
269 |
msgid "UpdraftPlus on %s"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: src/class-updraftplus.php:
|
273 |
msgid " Your hosting provider only allows you to take one incremental backup per day."
|
274 |
msgstr ""
|
275 |
|
@@ -317,71 +329,71 @@ msgstr ""
|
|
317 |
msgid "The plugin you wish to activate is either not installed or has been removed recently."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: src/backup.php:
|
321 |
msgid "two unsuccessful attempts were made to include it, and it will now be omitted from the backup"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: src/backup.php:
|
325 |
msgid "a second attempt is being made (upon further failure it will be skipped)"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: src/backup.php:
|
329 |
msgid "Error getting table details"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: src/backup.php:
|
333 |
msgid "Failed to backup database table:"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: src/backup.php:
|
337 |
msgid "Failed to open directory for reading:"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: src/admin.php:
|
341 |
msgid "The download link is broken or the backup file is no longer available"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: src/admin.php:
|
345 |
msgid "The download link is broken, you may have clicked the link from untrusted source"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: src/admin.php:
|
349 |
msgid "Due to the restriction, some settings can be automatically adjusted, disabled or not available."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: src/admin.php:
|
353 |
msgid "%s permits UpdraftPlus to perform only one backup per month. Thus, we recommend you choose a full backup when performing a manual backup and to use that option when creating a scheduled backup."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: src/admin.php:
|
357 |
msgid "Your website is hosted with %s (%s)."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: src/admin.php:
|
361 |
msgid "The following remote storage (%s) have only been partially configured, if you are having problems you can try to manually authorise at the UpdraftPlus settings page."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: src/admin.php:
|
365 |
msgid "The following remote storage (%s) have only been partially configured, manual authorization is not supported with this remote storage, please try again and if the problem persists contact support."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: src/admin.php:
|
369 |
msgid "more info"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: src/admin.php:
|
373 |
msgid "The following remote storage options are configured."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: src/admin.php:
|
377 |
msgid "No remote storage locations with valid options found."
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: src/admin.php:
|
381 |
msgid "This may prevent the restore procedure from being able to proceed."
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: src/admin.php:
|
385 |
msgid "(the asterisk character matches zero or more characters)"
|
386 |
msgstr ""
|
387 |
|
@@ -437,20 +449,20 @@ msgstr ""
|
|
437 |
msgid "Your hosting provider only allows you to take one incremental backup per day."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: src/admin.php:1049, src/class-updraftplus.php:
|
441 |
msgid "You have reached the daily limit for the number of incremental backups you can create at this time."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: src/admin.php:1048, src/admin.php:1049, src/class-updraftplus.php:
|
445 |
-
#: src/class-updraftplus.php:
|
446 |
msgid "Please contact your hosting company (%s) if you require further support."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: src/admin.php:1048, src/class-updraftplus.php:
|
450 |
msgid "Your hosting provider only allows you to take one backup per month."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: src/admin.php:1048, src/class-updraftplus.php:
|
454 |
msgid "You have reached the monthly limit for the number of backups you can create at this time."
|
455 |
msgstr ""
|
456 |
|
@@ -470,7 +482,7 @@ msgstr ""
|
|
470 |
msgid "Exit full-screen"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: src/admin.php:904, src/admin.php:
|
474 |
msgid "Full-screen"
|
475 |
msgstr ""
|
476 |
|
@@ -747,35 +759,35 @@ msgstr ""
|
|
747 |
msgid "Makes your site fast and efficient. It cleans the database, compresses images and caches pages for ultimate speed."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: src/restorer.php:
|
751 |
msgid "The Database connection has been closed and cannot be reopened."
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: src/restorer.php:
|
755 |
msgid "Skipping table %s: already restored on a prior run; next table to restore: %s"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: src/restorer.php:
|
759 |
msgid "Skipping table %s: user has chosen not to restore this table"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: src/restorer.php:
|
763 |
msgid "Found and replaced existing table foreign key constraints as the table prefix has changed."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: src/restorer.php:
|
767 |
msgid "An error occurred while attempting to set a new value to the MySQL global log_bin_trust_function_creators variable %s"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: src/restorer.php:
|
771 |
msgid "An error occurred while attempting to retrieve the MySQL global log_bin_trust_function_creators variable %s"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: src/restorer.php:
|
775 |
msgid "The directory does not exist, and the attempt to create it failed"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: src/restorer.php:
|
779 |
msgid "Could not delete old path."
|
780 |
msgstr ""
|
781 |
|
@@ -968,31 +980,31 @@ msgstr ""
|
|
968 |
msgid "No backup will be started. The creation of your clone should now begin, and your WordPress username and password will be displayed below when ready."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: src/class-updraftplus.php:
|
972 |
msgid "If you do not want to restore all your database tables, then choose some to exclude here."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: src/class-updraftplus.php:
|
976 |
msgid "You should only proceed if you have checked and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the new %s version."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: src/class-updraftplus.php:
|
980 |
msgid "This is older than the server which you are now restoring onto (version %s)."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: src/class-updraftplus.php:
|
984 |
msgid "Incomplete"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: src/class-updraftplus.php:
|
988 |
msgid "The backup is being aborted for a repeated failure to progress."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: src/class-updraftplus.php:
|
992 |
msgid "Briefly unavailable for scheduled maintenance. Check back in a minute."
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: src/class-updraftplus.php:
|
996 |
msgid "Under Maintenance"
|
997 |
msgstr ""
|
998 |
|
@@ -1044,81 +1056,81 @@ msgstr ""
|
|
1044 |
msgid "Unable to connect to the filesystem"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: src/admin.php:
|
1048 |
msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/admin.php:
|
1052 |
msgid "Clone package"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/admin.php:
|
1056 |
msgid "An empty WordPress install"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: src/admin.php:
|
1060 |
msgid "This current site"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: src/admin.php:
|
1064 |
msgid "Clone:"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: src/admin.php:
|
1068 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:98
|
1069 |
msgid "3. Restoration"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: src/admin.php:
|
1073 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:97
|
1074 |
msgid "2. Verifications"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: src/admin.php:
|
1078 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:96
|
1079 |
msgid "1. Component selection"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: src/admin.php:
|
1083 |
msgid "Activity log"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: src/admin.php:
|
1087 |
msgid "Cleaning"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: src/admin.php:
|
1091 |
msgid "Verifying"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: src/admin.php:
|
1095 |
msgid "Restoration progress:"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: src/admin.php:
|
1099 |
msgid "The restore operation has begun (%s). Do not close this page until it reports itself as having finished."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: src/admin.php:
|
1103 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
|
1104 |
msgid "UpdraftPlus Restoration"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: src/admin.php:
|
1108 |
msgid "(%d archive(s) in set, total %s)."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: src/admin.php:
|
1112 |
msgid "Learn more about UpdraftCentral"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: src/admin.php:
|
1116 |
msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: src/admin.php:
|
1120 |
-
#: src/admin.php:
|
1121 |
-
#: src/admin.php:
|
1122 |
msgid "Return to UpdraftPlus configuration"
|
1123 |
msgstr ""
|
1124 |
|
@@ -1202,7 +1214,7 @@ msgstr ""
|
|
1202 |
msgid "Begun"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: src/admin.php:1038, src/admin.php:
|
1206 |
msgid "Finished"
|
1207 |
msgstr ""
|
1208 |
|
@@ -1444,7 +1456,7 @@ msgstr ""
|
|
1444 |
msgid "Azure China"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: src/admin.php:
|
1448 |
msgid "Clone region:"
|
1449 |
msgstr ""
|
1450 |
|
@@ -1478,7 +1490,7 @@ msgstr ""
|
|
1478 |
msgid "Or, use an UpdraftClone key"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: src/restorer.php:
|
1482 |
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
1483 |
msgstr ""
|
1484 |
|
@@ -1502,11 +1514,11 @@ msgstr ""
|
|
1502 |
msgid "Automatic updates"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: src/restorer.php:
|
1506 |
msgid "Your database user does not have permission to drop tables"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: src/admin.php:
|
1510 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
1511 |
msgstr ""
|
1512 |
|
@@ -1670,11 +1682,11 @@ msgstr ""
|
|
1670 |
msgid "WordPress installed"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: src/admin.php:
|
1674 |
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."
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: src/admin.php:
|
1678 |
msgid "Exclude these from"
|
1679 |
msgstr ""
|
1680 |
|
@@ -1722,15 +1734,15 @@ msgstr ""
|
|
1722 |
msgid "failed to upload file to %s (see log file for more)"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: src/admin.php:
|
1726 |
msgid "Dashboard:"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: src/admin.php:
|
1730 |
msgid "Front page:"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: src/admin.php:
|
1734 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
1735 |
msgstr ""
|
1736 |
|
@@ -1742,7 +1754,7 @@ msgstr ""
|
|
1742 |
msgid "Current clones"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: src/class-updraftplus.php:
|
1746 |
msgid "Your clone will now deploy this data to re-create your site."
|
1747 |
msgstr ""
|
1748 |
|
@@ -1750,7 +1762,7 @@ msgstr ""
|
|
1750 |
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."
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: src/addons/migrator.php:
|
1754 |
msgid "Site key"
|
1755 |
msgstr ""
|
1756 |
|
@@ -1758,16 +1770,16 @@ msgstr ""
|
|
1758 |
msgid "Add a site"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: src/addons/migrator.php:
|
1762 |
-
#: src/addons/migrator.php:
|
1763 |
msgid "back"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: src/addons/migrator.php:
|
1767 |
msgid "Read this article to see step-by-step how it's done."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: src/addons/migrator.php:
|
1771 |
#: src/templates/wp-admin/settings/migrator-no-migrator.php:6
|
1772 |
msgid "Migrate (create a copy of a site on hosting you control)"
|
1773 |
msgstr ""
|
@@ -2044,7 +2056,7 @@ msgstr ""
|
|
2044 |
msgid "You can buy more temporary clone tokens here."
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: src/admin.php:
|
2048 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
2049 |
msgstr ""
|
2050 |
|
@@ -2064,19 +2076,19 @@ msgstr ""
|
|
2064 |
msgid "The creation of your data for creating the clone should now begin."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: src/admin.php:
|
2068 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: src/class-updraftplus.php:
|
2072 |
msgid "Choose a default for each table"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: src/admin.php:
|
2076 |
msgid "Sending files to remote site"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: src/admin.php:
|
2080 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
2081 |
msgstr ""
|
2082 |
|
@@ -2084,15 +2096,15 @@ msgstr ""
|
|
2084 |
msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: src/addons/migrator.php:
|
2088 |
msgid "To import a backup set, go to the \"Existing backups\" section in the \"Backup/Restore\" tab"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: src/admin.php:
|
2092 |
msgid "Backup / Restore"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: src/admin.php:701, src/admin.php:
|
2096 |
msgid "Backup"
|
2097 |
msgstr ""
|
2098 |
|
@@ -2112,7 +2124,7 @@ msgstr ""
|
|
2112 |
msgid "No previous backup found to add an increment to."
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: src/restorer.php:
|
2116 |
msgid "Requested character set (%s) is not present - changing to %s."
|
2117 |
msgstr ""
|
2118 |
|
@@ -2164,11 +2176,11 @@ msgstr ""
|
|
2164 |
msgid "More information here."
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: src/admin.php:709, src/admin.php:
|
2168 |
msgid "Migrate / Clone"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: src/admin.php:
|
2172 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76,
|
2173 |
#: src/templates/wp-admin/settings/existing-backups-table.php:79
|
2174 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
@@ -2178,7 +2190,7 @@ msgstr ""
|
|
2178 |
msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: src/restorer.php:
|
2182 |
msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
|
2183 |
msgstr ""
|
2184 |
|
@@ -2190,15 +2202,15 @@ msgstr ""
|
|
2190 |
msgid "Run this command to see the log file for this restoration (needed for any support requests)."
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: src/class-updraftplus.php:
|
2194 |
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."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: src/admin.php:
|
2198 |
msgid "(current version)"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: src/admin.php:
|
2202 |
msgid "press here"
|
2203 |
msgstr ""
|
2204 |
|
@@ -2220,7 +2232,7 @@ msgstr ""
|
|
2220 |
msgid "And then add an incremental backup"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: src/addons/incremental.php:339, src/admin.php:
|
2224 |
msgid "Every hour"
|
2225 |
msgstr ""
|
2226 |
|
@@ -2232,7 +2244,7 @@ msgstr ""
|
|
2232 |
msgid "Available temporary clone tokens:"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: src/admin.php:
|
2236 |
#: src/includes/class-commands.php:1081, src/includes/class-commands.php:1083,
|
2237 |
#: src/methods/backup-module.php:663,
|
2238 |
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
@@ -2252,7 +2264,7 @@ msgstr ""
|
|
2252 |
msgid "I consent to %s"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: src/admin.php:
|
2256 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
2257 |
msgid "One Time Password (check your OTP app to get this password)"
|
2258 |
msgstr ""
|
@@ -2301,7 +2313,7 @@ msgstr ""
|
|
2301 |
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."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: src/admin.php:
|
2305 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
2306 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
2307 |
msgstr[0] ""
|
@@ -2405,7 +2417,7 @@ msgstr ""
|
|
2405 |
msgid "Upload backup"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: src/admin.php:
|
2409 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
2410 |
msgstr ""
|
2411 |
|
@@ -2417,7 +2429,7 @@ msgstr ""
|
|
2417 |
msgid "Local backup upload has started; please check the log file to see the upload progress"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#: src/admin.php:902, src/admin.php:
|
2421 |
msgid "Upload"
|
2422 |
msgstr ""
|
2423 |
|
@@ -2433,7 +2445,7 @@ msgstr ""
|
|
2433 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: src/addons/migrator.php:
|
2437 |
msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
|
2438 |
msgstr ""
|
2439 |
|
@@ -2479,15 +2491,15 @@ msgstr ""
|
|
2479 |
msgid "The given value for the '%s' option is not valid"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: src/addons/migrator.php:
|
2483 |
msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: src/addons/migrator.php:
|
2487 |
msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: src/addons/migrator.php:
|
2491 |
msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
|
2492 |
msgstr ""
|
2493 |
|
@@ -2515,15 +2527,15 @@ msgstr ""
|
|
2515 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: src/restorer.php:
|
2519 |
msgid "Failed to read from the working directory."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: src/restorer.php:
|
2523 |
msgid "Failed to find a manifest file in the backup."
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: src/restorer.php:
|
2527 |
msgid "Failed to read the manifest file from backup."
|
2528 |
msgstr ""
|
2529 |
|
@@ -2535,11 +2547,11 @@ msgstr ""
|
|
2535 |
msgid "Ensure you are logged into the correct account before continuing."
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: src/admin.php:
|
2539 |
msgid "Remote storage method and instance id are required for authentication."
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: src/admin.php:
|
2543 |
msgid "authentication error"
|
2544 |
msgstr ""
|
2545 |
|
@@ -2547,15 +2559,15 @@ msgstr ""
|
|
2547 |
msgid "(Nothing has been logged yet)"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: src/addons/migrator.php:
|
2551 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: src/addons/migrator.php:
|
2555 |
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 below search and replace so that the non-https links are automatically replaced."
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: src/addons/migrator.php:
|
2559 |
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 below search and replace to search/replace the site address so that the site can be visited without https."
|
2560 |
msgstr ""
|
2561 |
|
@@ -2603,31 +2615,31 @@ msgstr ""
|
|
2603 |
msgid "Invalid bucket name"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: src/restorer.php:
|
2607 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
2608 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
2609 |
msgstr[0] ""
|
2610 |
msgstr[1] ""
|
2611 |
|
2612 |
-
#: src/class-updraftplus.php:
|
2613 |
msgid "Your chosen replacement collation"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: src/class-updraftplus.php:
|
2617 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: src/class-updraftplus.php:
|
2621 |
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."
|
2622 |
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."
|
2623 |
msgstr[0] ""
|
2624 |
msgstr[1] ""
|
2625 |
|
2626 |
-
#: src/addons/migrator.php:
|
2627 |
msgid "Database restoration options:"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: src/addons/migrator.php:
|
2631 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
2632 |
msgstr ""
|
2633 |
|
@@ -2675,25 +2687,25 @@ msgstr ""
|
|
2675 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: src/addons/migrator.php:
|
2679 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
2680 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
2681 |
msgstr[0] ""
|
2682 |
msgstr[1] ""
|
2683 |
|
2684 |
-
#: src/restorer.php:
|
2685 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: src/class-updraftplus.php:
|
2689 |
msgid "Your chosen character set to use instead:"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: src/class-updraftplus.php:
|
2693 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: src/class-updraftplus.php:
|
2697 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
2698 |
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."
|
2699 |
msgstr[0] ""
|
@@ -2786,23 +2798,23 @@ msgstr ""
|
|
2786 |
msgid "Account ID"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#: src/class-updraftplus.php:
|
2790 |
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."
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#: src/class-updraftplus.php:
|
2794 |
msgid "the migrator add-on"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#: src/class-updraftplus.php:
|
2798 |
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."
|
2799 |
msgstr ""
|
2800 |
|
2801 |
-
#: src/class-updraftplus.php:
|
2802 |
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."
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#: src/class-updraftplus.php:
|
2806 |
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."
|
2807 |
msgstr ""
|
2808 |
|
@@ -2818,15 +2830,15 @@ msgstr ""
|
|
2818 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#: src/backup.php:
|
2822 |
-
#: src/class-updraftplus.php:
|
2823 |
-
#: src/includes/class-storage-methods-interface.php:381, src/restorer.php:
|
2824 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: src/backup.php:
|
2828 |
-
#: src/class-updraftplus.php:
|
2829 |
-
#: src/includes/class-storage-methods-interface.php:372, src/restorer.php:
|
2830 |
msgid "A PHP exception (%s) has occurred: %s"
|
2831 |
msgstr ""
|
2832 |
|
@@ -2876,7 +2888,7 @@ msgstr ""
|
|
2876 |
msgid "Rackspace Storage Region"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: src/admin.php:
|
2880 |
msgid "Value"
|
2881 |
msgstr ""
|
2882 |
|
@@ -2892,11 +2904,11 @@ msgstr ""
|
|
2892 |
msgid "Cloud Files"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: src/admin.php:
|
2896 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: src/admin.php:
|
2900 |
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."
|
2901 |
msgstr ""
|
2902 |
|
@@ -2913,7 +2925,7 @@ msgstr ""
|
|
2913 |
msgid "Extra database"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: src/admin.php:
|
2917 |
msgid "Press here to download or browse"
|
2918 |
msgstr ""
|
2919 |
|
@@ -2953,11 +2965,11 @@ msgstr ""
|
|
2953 |
msgid "Browse contents"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: src/restorer.php:
|
2957 |
msgid "Skipped tables:"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: src/class-updraftplus.php:
|
2961 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
2962 |
msgstr ""
|
2963 |
|
@@ -3395,11 +3407,11 @@ msgstr ""
|
|
3395 |
msgid "Export / import settings"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: src/restorer.php:
|
3399 |
msgid "Processing table (%s)"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: src/restorer.php:
|
3403 |
msgid "Backup of: %s"
|
3404 |
msgstr ""
|
3405 |
|
@@ -3419,7 +3431,7 @@ msgstr ""
|
|
3419 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: src/backup.php:
|
3423 |
msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
|
3424 |
msgstr ""
|
3425 |
|
@@ -3512,11 +3524,11 @@ msgstr ""
|
|
3512 |
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"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: src/admin.php:
|
3516 |
msgid "To fix this problem go here."
|
3517 |
msgstr ""
|
3518 |
|
3519 |
-
#: src/admin.php:
|
3520 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
3521 |
msgstr ""
|
3522 |
|
@@ -3596,31 +3608,31 @@ msgstr ""
|
|
3596 |
msgid "Public key was sent to:"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
#: src/backup.php:
|
3600 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: src/backup.php:
|
3604 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
#: src/addons/migrator.php:
|
3608 |
msgid "Create key"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
-
#: src/addons/migrator.php:
|
3612 |
msgid "slower, strongest"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
-
#: src/addons/migrator.php:
|
3616 |
msgid "recommended"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: src/addons/migrator.php:
|
3620 |
msgid "%s bytes"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: src/addons/migrator.php:
|
3624 |
msgid "faster (possibility for slow PHP installs)"
|
3625 |
msgstr ""
|
3626 |
|
@@ -3628,20 +3640,20 @@ msgstr ""
|
|
3628 |
msgid "easy to break, fastest"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/addons/migrator.php:
|
3632 |
#: src/central/translations-updraftplus.php:49
|
3633 |
msgid "%s bits"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: src/addons/migrator.php:
|
3637 |
msgid "Encryption key size:"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: src/addons/migrator.php:
|
3641 |
msgid "Enter your chosen name"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: src/addons/migrator.php:
|
3645 |
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
|
3646 |
msgstr ""
|
3647 |
|
@@ -3666,7 +3678,7 @@ msgstr ""
|
|
3666 |
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."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: src/class-updraftplus.php:
|
3670 |
msgid "Size: %s MB"
|
3671 |
msgstr ""
|
3672 |
|
@@ -3674,7 +3686,7 @@ msgstr ""
|
|
3674 |
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)."
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: src/class-updraftplus.php:
|
3678 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
3679 |
msgstr ""
|
3680 |
|
@@ -3696,7 +3708,7 @@ msgstr ""
|
|
3696 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#: src/class-updraftplus.php:
|
3700 |
msgid "The given file was not found, or could not be read."
|
3701 |
msgstr ""
|
3702 |
|
@@ -3780,23 +3792,23 @@ msgstr ""
|
|
3780 |
msgid "UpdraftCentral Connection"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
-
#: src/class-updraftplus.php:
|
3784 |
msgid "The backup was aborted by the user"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: src/admin.php:
|
3788 |
msgid "Your settings have been saved."
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
#: src/admin.php:
|
3792 |
msgid "Total backup size:"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
-
#: src/admin.php:
|
3796 |
msgid "stop"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
-
#: src/admin.php:964, src/admin.php:
|
3800 |
msgid "The backup has finished running"
|
3801 |
msgstr ""
|
3802 |
|
@@ -3850,7 +3862,7 @@ msgstr ""
|
|
3850 |
msgid "Asia Pacific (Seoul)"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: src/restorer.php:
|
3854 |
msgid "Uploads URL:"
|
3855 |
msgstr ""
|
3856 |
|
@@ -3858,19 +3870,19 @@ msgstr ""
|
|
3858 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: src/class-updraftplus.php:
|
3862 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: src/class-updraftplus.php:
|
3866 |
msgid "Please read this link for important information on this process."
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: src/class-updraftplus.php:
|
3870 |
msgid "It will be imported as a new site."
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: src/admin.php:
|
3874 |
#: src/templates/wp-admin/notices/autobackup-notice.php:18,
|
3875 |
#: src/templates/wp-admin/notices/horizontal-notice.php:48,
|
3876 |
#: src/templates/wp-admin/notices/horizontal-notice.php:50
|
@@ -3897,40 +3909,40 @@ msgstr ""
|
|
3897 |
msgid "Which site to restore"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: src/addons/migrator.php:
|
3901 |
msgid "Error when creating new site at your chosen address:"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: src/addons/migrator.php:
|
3905 |
msgid "Required information for restoring this backup was not given (%s)"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: src/addons/migrator.php:
|
3909 |
msgid "Attribute imported content to user"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
-
#: src/addons/migrator.php:
|
3913 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
3914 |
msgstr ""
|
3915 |
|
3916 |
-
#: src/addons/migrator.php:
|
3917 |
msgid "This feature is not compatible with %s"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: src/addons/migrator.php:
|
3921 |
msgid "Importing a single site into a multisite install"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: src/addons/migrator.php:
|
3925 |
msgid "other content from wp-content"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: src/addons/migrator.php:
|
3929 |
msgid "WordPress core"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: src/addons/migrator.php:
|
3933 |
-
#: src/addons/migrator.php:
|
3934 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
3935 |
msgstr ""
|
3936 |
|
@@ -3942,7 +3954,7 @@ msgstr ""
|
|
3942 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: src/restorer.php:
|
3946 |
msgid "Skipping: this archive was already restored."
|
3947 |
msgstr ""
|
3948 |
|
@@ -3970,23 +3982,23 @@ msgstr ""
|
|
3970 |
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)."
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: src/admin.php:
|
3974 |
msgid "Send this backup to remote storage"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: src/admin.php:
|
3978 |
msgid "Check out UpdraftPlus Vault."
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: src/admin.php:
|
3982 |
msgid "Not got any remote storage?"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
#: src/admin.php:
|
3986 |
msgid "settings"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#: src/admin.php:
|
3990 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
3991 |
msgstr ""
|
3992 |
|
@@ -3998,31 +4010,31 @@ msgstr ""
|
|
3998 |
msgid "Include your database in the backup"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: src/admin.php:
|
4002 |
msgid "Continue restoration"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: src/admin.php:
|
4006 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: src/admin.php:
|
4010 |
msgid "Unfinished restoration"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: src/admin.php:
|
4014 |
msgid "%s minutes, %s seconds"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#: src/admin.php:
|
4018 |
msgid "Backup Contents And Schedule"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#: src/admin.php:
|
4022 |
msgid "Premium / Extensions"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
-
#: src/admin.php:
|
4026 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
4027 |
msgstr ""
|
4028 |
|
@@ -4039,7 +4051,7 @@ msgstr ""
|
|
4039 |
msgid "Extensions"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: src/admin.php:725, src/admin.php:
|
4043 |
msgid "Advanced Tools"
|
4044 |
msgstr ""
|
4045 |
|
@@ -4159,23 +4171,23 @@ msgstr ""
|
|
4159 |
msgid "Could not access container"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: src/class-updraftplus.php:
|
4163 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: src/backup.php:
|
4167 |
msgid "the options table was not found"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: src/backup.php:
|
4171 |
msgid "no options or sitemeta table was found"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: src/backup.php:
|
4175 |
msgid "The database backup appears to have failed"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: src/backup.php:
|
4179 |
msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
|
4180 |
msgstr ""
|
4181 |
|
@@ -4327,11 +4339,11 @@ msgstr ""
|
|
4327 |
msgid "Add an additional retention rule..."
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: src/restorer.php:
|
4331 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: src/restorer.php:
|
4335 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
4336 |
msgstr ""
|
4337 |
|
@@ -4339,15 +4351,15 @@ msgstr ""
|
|
4339 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: src/class-updraftplus.php:
|
4343 |
msgid "You must upgrade MySQL to be able to use this database."
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: src/class-updraftplus.php:
|
4347 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
4348 |
msgstr ""
|
4349 |
|
4350 |
-
#: src/admin.php:
|
4351 |
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."
|
4352 |
msgstr ""
|
4353 |
|
@@ -4413,7 +4425,7 @@ msgid "Get more quota"
|
|
4413 |
msgstr ""
|
4414 |
|
4415 |
#: src/methods/updraftvault.php:529, src/methods/updraftvault.php:545,
|
4416 |
-
#: src/methods/updraftvault.php:
|
4417 |
msgid "Current use:"
|
4418 |
msgstr ""
|
4419 |
|
@@ -4510,7 +4522,7 @@ msgstr ""
|
|
4510 |
msgid "Delete failed:"
|
4511 |
msgstr ""
|
4512 |
|
4513 |
-
#: src/backup.php:
|
4514 |
msgid "The zip engine returned the message: %s."
|
4515 |
msgstr ""
|
4516 |
|
@@ -4542,7 +4554,7 @@ msgstr ""
|
|
4542 |
msgid "Existing keys"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
-
#: src/addons/migrator.php:
|
4546 |
msgid "Your new key:"
|
4547 |
msgstr ""
|
4548 |
|
@@ -4575,11 +4587,11 @@ msgstr ""
|
|
4575 |
msgid "Backup data will be sent to:"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
-
#: src/addons/migrator.php:
|
4579 |
msgid "Restore an existing backup set onto this site"
|
4580 |
msgstr ""
|
4581 |
|
4582 |
-
#: src/addons/migrator.php:
|
4583 |
msgid "This site has no backups to restore from yet."
|
4584 |
msgstr ""
|
4585 |
|
@@ -4591,7 +4603,7 @@ msgstr ""
|
|
4591 |
msgid "This storage method does not allow downloading"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
-
#: src/admin.php:
|
4595 |
msgid "(backup set imported from remote location)"
|
4596 |
msgstr ""
|
4597 |
|
@@ -4634,23 +4646,23 @@ msgstr ""
|
|
4634 |
msgid "Creating..."
|
4635 |
msgstr ""
|
4636 |
|
4637 |
-
#: src/addons/migrator.php:
|
4638 |
msgid "Receive a backup from a remote site"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
-
#: src/addons/migrator.php:
|
4642 |
msgid "Paste key here"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
-
#: src/addons/migrator.php:
|
4646 |
msgid "How do I get a site's key?"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: src/addons/migrator.php:
|
4650 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
4651 |
msgstr ""
|
4652 |
|
4653 |
-
#: src/addons/migrator.php:
|
4654 |
msgid "Send a backup to another site"
|
4655 |
msgstr ""
|
4656 |
|
@@ -4717,11 +4729,11 @@ msgstr ""
|
|
4717 |
msgid "FTP server"
|
4718 |
msgstr ""
|
4719 |
|
4720 |
-
#: src/addons/migrator.php:
|
4721 |
msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
|
4722 |
msgstr ""
|
4723 |
|
4724 |
-
#: src/addons/migrator.php:
|
4725 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
4726 |
msgstr ""
|
4727 |
|
@@ -4729,7 +4741,7 @@ msgstr ""
|
|
4729 |
msgid "Resetting..."
|
4730 |
msgstr ""
|
4731 |
|
4732 |
-
#: src/addons/migrator.php:
|
4733 |
msgid "Add site"
|
4734 |
msgstr ""
|
4735 |
|
@@ -4741,7 +4753,7 @@ msgstr ""
|
|
4741 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
-
#: src/restorer.php:
|
4745 |
msgid "To use this backup, your database server needs to support the %s character set."
|
4746 |
msgstr ""
|
4747 |
|
@@ -4757,7 +4769,7 @@ msgstr ""
|
|
4757 |
msgid "Go here to re-enter your password."
|
4758 |
msgstr ""
|
4759 |
|
4760 |
-
#: src/addons/migrator.php:
|
4761 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
4762 |
msgstr ""
|
4763 |
|
@@ -5016,7 +5028,7 @@ msgstr ""
|
|
5016 |
msgid "(at same time as files backup)"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
-
#: src/admin.php:
|
5020 |
msgid "No backup has been completed"
|
5021 |
msgstr ""
|
5022 |
|
@@ -5090,12 +5102,12 @@ msgstr ""
|
|
5090 |
msgid "Check this box to have a basic report sent to"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
-
#: src/admin.php:
|
5094 |
msgctxt "i.e. Non-automatic"
|
5095 |
msgid "Manual"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
-
#: src/restorer.php:
|
5099 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
5100 |
msgid "An error (%s) occurred:"
|
5101 |
msgstr ""
|
@@ -5108,7 +5120,7 @@ msgstr ""
|
|
5108 |
msgid "Any other file/directory on your server that you wish to backup"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#: src/admin.php:
|
5112 |
msgid "For even more features and personal support, check out "
|
5113 |
msgstr ""
|
5114 |
|
@@ -5202,7 +5214,7 @@ msgstr ""
|
|
5202 |
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."
|
5203 |
msgstr ""
|
5204 |
|
5205 |
-
#: src/admin.php:
|
5206 |
msgid "View Log"
|
5207 |
msgstr ""
|
5208 |
|
@@ -5221,7 +5233,7 @@ msgstr ""
|
|
5221 |
msgid "and retain this many scheduled backups"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
-
#: src/admin.php:
|
5225 |
msgid "incremental backup; base backup: %s"
|
5226 |
msgstr ""
|
5227 |
|
@@ -5239,7 +5251,7 @@ msgstr ""
|
|
5239 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
5240 |
msgstr ""
|
5241 |
|
5242 |
-
#: src/class-updraftplus.php:
|
5243 |
msgid "Backup label:"
|
5244 |
msgstr ""
|
5245 |
|
@@ -5247,15 +5259,15 @@ msgstr ""
|
|
5247 |
msgid "Error: unexpected file read fail"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: src/backup.php:
|
5251 |
msgid "check your log for more details."
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: src/backup.php:
|
5255 |
msgid "your web hosting account appears to be full; please see: %s"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: src/backup.php:
|
5259 |
msgid "A zip error occurred"
|
5260 |
msgstr ""
|
5261 |
|
@@ -5279,36 +5291,36 @@ msgstr ""
|
|
5279 |
msgid "You need to supply both an email address and a password"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: src/class-updraftplus.php:
|
5283 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#: src/class-updraftplus.php:
|
5287 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: src/addons/migrator.php:
|
5291 |
msgid "already done"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: src/addons/migrator.php:
|
5295 |
msgid "skipped (not in list)"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#: src/addons/migrator.php:
|
5299 |
#: src/includes/class-search-replace.php:91
|
5300 |
msgid "Search and replacing table:"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
-
#: src/addons/migrator.php:
|
5304 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
5305 |
msgstr ""
|
5306 |
|
5307 |
-
#: src/addons/migrator.php:
|
5308 |
msgid "These tables only"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
-
#: src/addons/migrator.php:
|
5312 |
msgid "Rows per batch"
|
5313 |
msgstr ""
|
5314 |
|
@@ -5320,19 +5332,19 @@ msgstr ""
|
|
5320 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
5321 |
msgstr ""
|
5322 |
|
5323 |
-
#: src/class-updraftplus.php:
|
5324 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
5325 |
msgstr ""
|
5326 |
|
5327 |
-
#: src/class-updraftplus.php:
|
5328 |
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."
|
5329 |
msgstr ""
|
5330 |
|
5331 |
-
#: src/class-updraftplus.php:
|
5332 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
5333 |
msgstr ""
|
5334 |
|
5335 |
-
#: src/class-updraftplus.php:
|
5336 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
5337 |
msgstr ""
|
5338 |
|
@@ -5369,11 +5381,11 @@ msgstr ""
|
|
5369 |
msgid "Start backup"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
#: src/class-updraftplus.php:
|
5373 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
5374 |
msgstr ""
|
5375 |
|
5376 |
-
#: src/admin.php:
|
5377 |
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."
|
5378 |
msgstr ""
|
5379 |
|
@@ -5405,15 +5417,15 @@ msgstr ""
|
|
5405 |
msgid "Memory limit"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: src/includes/class-filesystem-functions.php:302, src/restorer.php:
|
5409 |
msgid "restoration"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/class-updraftplus.php:
|
5413 |
msgid "Incremental"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
-
#: src/class-updraftplus.php:
|
5417 |
msgid "Full backup"
|
5418 |
msgstr ""
|
5419 |
|
@@ -5431,55 +5443,56 @@ msgstr ""
|
|
5431 |
|
5432 |
#: src/addons/incremental.php:340, src/addons/incremental.php:341,
|
5433 |
#: src/addons/incremental.php:342, src/addons/incremental.php:343,
|
5434 |
-
#: src/admin.php:
|
5435 |
-
#: src/admin.php:
|
5436 |
#: src/updraftplus.php:103
|
5437 |
msgid "Every %s hours"
|
5438 |
msgstr ""
|
5439 |
|
5440 |
-
#: src/addons/migrator.php:
|
|
|
5441 |
msgid "search and replace"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
-
#: src/addons/migrator.php:
|
5445 |
msgid "Go"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: src/addons/migrator.php:
|
5449 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: src/addons/migrator.php:
|
5453 |
msgid "This can easily destroy your site; so, use it with care!"
|
5454 |
msgstr ""
|
5455 |
|
5456 |
-
#: src/addons/migrator.php:
|
5457 |
msgid "Replace with"
|
5458 |
msgstr ""
|
5459 |
|
5460 |
-
#: src/addons/migrator.php:
|
5461 |
msgid "Search for"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: src/addons/migrator.php:
|
5465 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
5466 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
5467 |
msgid "Search / replace database"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: src/addons/migrator.php:
|
5471 |
msgid "search term"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: src/restorer.php:
|
5475 |
msgid "Too many database errors have occurred - aborting"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: src/class-updraftplus.php:
|
5479 |
msgid "read more at %s"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: src/class-updraftplus.php:
|
5483 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
5484 |
msgstr ""
|
5485 |
|
@@ -5495,10 +5508,6 @@ msgstr ""
|
|
5495 |
msgid "Database Options"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/templates/wp-admin/advanced/site-info.php:109
|
5499 |
-
msgid "Plugins for debugging:"
|
5500 |
-
msgstr ""
|
5501 |
-
|
5502 |
#: src/templates/wp-admin/advanced/site-info.php:88
|
5503 |
msgid "%s (%s used)"
|
5504 |
msgstr ""
|
@@ -5507,7 +5516,7 @@ msgstr ""
|
|
5507 |
msgid "Free disk space in account:"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
-
#: src/admin.php:
|
5511 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
5512 |
msgstr ""
|
5513 |
|
@@ -5591,7 +5600,7 @@ msgstr ""
|
|
5591 |
msgid "user"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: src/class-updraftplus.php:
|
5595 |
msgid "External database (%s)"
|
5596 |
msgstr ""
|
5597 |
|
@@ -5609,7 +5618,7 @@ msgstr ""
|
|
5609 |
msgid "However, subsequent access attempts failed:"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: src/addons/wp-cli.php:434, src/admin.php:
|
5613 |
msgid "External database"
|
5614 |
msgstr ""
|
5615 |
|
@@ -5641,7 +5650,7 @@ msgstr ""
|
|
5641 |
msgid "use UpdraftPlus Premium"
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#: src/class-updraftplus.php:
|
5645 |
msgid "Decryption failed. The database file is encrypted."
|
5646 |
msgstr ""
|
5647 |
|
@@ -5649,20 +5658,20 @@ msgstr ""
|
|
5649 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
5650 |
msgstr ""
|
5651 |
|
5652 |
-
#: src/restorer.php:
|
5653 |
-
#: src/restorer.php:
|
5654 |
msgid "An error occurred on the first %s command - aborting run"
|
5655 |
msgstr ""
|
5656 |
|
5657 |
-
#: src/addons/moredatabase.php:136, src/backup.php:
|
5658 |
msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
|
5659 |
msgstr ""
|
5660 |
|
5661 |
-
#: src/backup.php:
|
5662 |
msgid "database connection attempt failed."
|
5663 |
msgstr ""
|
5664 |
|
5665 |
-
#: src/addons/migrator.php:
|
5666 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
5667 |
msgstr ""
|
5668 |
|
@@ -5696,8 +5705,8 @@ msgstr ""
|
|
5696 |
msgid "Tenant"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#: src/admin.php:1044, src/admin.php:
|
5700 |
-
#: src/restorer.php:
|
5701 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
5702 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
5703 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:14
|
@@ -5830,18 +5839,18 @@ msgstr ""
|
|
5830 |
msgid "Fetch"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: src/addons/migrator.php:
|
5834 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
|
5835 |
#: src/templates/wp-admin/settings/form-contents.php:183,
|
5836 |
#: src/templates/wp-admin/settings/tab-backups.php:74
|
5837 |
msgid "This feature requires %s version %s or later"
|
5838 |
msgstr ""
|
5839 |
|
5840 |
-
#: src/restorer.php:
|
5841 |
msgid "Failed to unpack the archive"
|
5842 |
msgstr ""
|
5843 |
|
5844 |
-
#: src/class-updraftplus.php:
|
5845 |
msgid "Error - failed to download the file"
|
5846 |
msgstr ""
|
5847 |
|
@@ -5866,8 +5875,8 @@ msgstr ""
|
|
5866 |
msgid "password/key"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
-
#: src/addons/migrator.php:
|
5870 |
-
#: src/admin.php:
|
5871 |
msgid "Key"
|
5872 |
msgstr ""
|
5873 |
|
@@ -5883,24 +5892,24 @@ msgstr ""
|
|
5883 |
msgid "SCP/SFTP password/key"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
-
#: src/addons/wp-cli.php:445, src/admin.php:
|
5887 |
msgid "Files backup (created by %s)"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
-
#: src/addons/wp-cli.php:445, src/admin.php:
|
5891 |
msgid "Files and database WordPress backup (created by %s)"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
-
#: src/addons/importer.php:276, src/admin.php:
|
5895 |
#: src/includes/class-backup-history.php:505
|
5896 |
msgid "Backup created by: %s."
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#: src/addons/wp-cli.php:428, src/admin.php:
|
5900 |
msgid "Database (created by %s)"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
-
#: src/addons/wp-cli.php:426, src/admin.php:
|
5904 |
msgid "unknown source"
|
5905 |
msgstr ""
|
5906 |
|
@@ -5940,16 +5949,16 @@ msgstr ""
|
|
5940 |
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))."
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#: src/admin.php:
|
5944 |
-
#: src/restorer.php:
|
5945 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
5946 |
msgstr ""
|
5947 |
|
5948 |
-
#: src/restorer.php:
|
5949 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
5950 |
msgstr ""
|
5951 |
|
5952 |
-
#: src/restorer.php:
|
5953 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
5954 |
msgstr ""
|
5955 |
|
@@ -6001,12 +6010,12 @@ msgstr ""
|
|
6001 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
6002 |
msgstr ""
|
6003 |
|
6004 |
-
#: src/addons/morefiles.php:357, src/admin.php:
|
6005 |
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."
|
6006 |
msgstr ""
|
6007 |
|
6008 |
#: src/includes/class-filesystem-functions.php:302, src/methods/ftp.php:344,
|
6009 |
-
#: src/restorer.php:
|
6010 |
msgid "Your hosting company must enable these functions before %s can work."
|
6011 |
msgstr ""
|
6012 |
|
@@ -6026,7 +6035,7 @@ msgstr ""
|
|
6026 |
msgid "regular non-encrypted FTP"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
-
#: src/restorer.php:
|
6030 |
msgid "Backup created by:"
|
6031 |
msgstr ""
|
6032 |
|
@@ -6097,15 +6106,15 @@ msgstr ""
|
|
6097 |
msgid "Constants"
|
6098 |
msgstr ""
|
6099 |
|
6100 |
-
#: src/backup.php:
|
6101 |
msgid "Failed to open database file for reading:"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: src/backup.php:
|
6105 |
msgid "No database tables found"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
-
#: src/backup.php:
|
6109 |
msgid "please wait for the rescheduled attempt"
|
6110 |
msgstr ""
|
6111 |
|
@@ -6122,7 +6131,7 @@ msgstr ""
|
|
6122 |
msgid "Errors occurred:"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: src/addons/wp-cli.php:752, src/admin.php:
|
6126 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
6127 |
msgstr ""
|
6128 |
|
@@ -6142,15 +6151,15 @@ msgstr ""
|
|
6142 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: src/restorer.php:
|
6146 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: src/admin.php:1300, src/class-updraftplus.php:
|
6150 |
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)"
|
6151 |
msgstr ""
|
6152 |
|
6153 |
-
#: src/addons/migrator.php:
|
6154 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
6155 |
msgstr ""
|
6156 |
|
@@ -6163,11 +6172,11 @@ msgstr ""
|
|
6163 |
msgid "Messages:"
|
6164 |
msgstr ""
|
6165 |
|
6166 |
-
#: src/restorer.php:
|
6167 |
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"
|
6168 |
msgstr ""
|
6169 |
|
6170 |
-
#: src/restorer.php:
|
6171 |
msgid "The directory does not exist"
|
6172 |
msgstr ""
|
6173 |
|
@@ -6337,39 +6346,39 @@ msgstr ""
|
|
6337 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
-
#: src/admin.php:872, src/restorer.php:
|
6341 |
msgid "Error data:"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: src/admin.php:
|
6345 |
msgid "Backup does not exist in the backup history"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
-
#: src/admin.php:
|
6349 |
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."
|
6350 |
msgstr ""
|
6351 |
|
6352 |
-
#: src/restorer.php:
|
6353 |
msgid "Split line to avoid exceeding maximum packet size"
|
6354 |
msgstr ""
|
6355 |
|
6356 |
-
#: src/restorer.php:
|
6357 |
msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
-
#: src/restorer.php:
|
6361 |
msgid "Could not move the files into place. Check your file permissions."
|
6362 |
msgstr ""
|
6363 |
|
6364 |
-
#: src/restorer.php:
|
6365 |
msgid "Could not move new files into place. Check your wp-content/upgrade folder."
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: src/restorer.php:
|
6369 |
msgid "Could not move old files out of the way."
|
6370 |
msgstr ""
|
6371 |
|
6372 |
-
#: src/restorer.php:
|
6373 |
msgid "Moving old data out of the way..."
|
6374 |
msgstr ""
|
6375 |
|
@@ -6381,11 +6390,11 @@ msgstr ""
|
|
6381 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
6382 |
msgstr ""
|
6383 |
|
6384 |
-
#: src/class-updraftplus.php:
|
6385 |
msgid "%s checksum: %s"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
-
#: src/class-updraftplus.php:
|
6389 |
msgid "files: %s"
|
6390 |
msgstr ""
|
6391 |
|
@@ -6397,7 +6406,7 @@ msgstr ""
|
|
6397 |
msgid "Debugging information"
|
6398 |
msgstr ""
|
6399 |
|
6400 |
-
#: src/addons/reporting.php:238, src/admin.php:
|
6401 |
msgid "Uploaded to:"
|
6402 |
msgstr ""
|
6403 |
|
@@ -6442,7 +6451,7 @@ msgstr ""
|
|
6442 |
msgid "%s authentication"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: src/addons/onedrive.php:891, src/class-updraftplus.php:
|
6446 |
#: src/methods/dropbox.php:267, src/methods/dropbox.php:757,
|
6447 |
#: src/methods/dropbox.php:814, src/methods/dropbox.php:828,
|
6448 |
#: src/methods/dropbox.php:848, src/methods/dropbox.php:1005
|
@@ -6465,13 +6474,13 @@ msgstr ""
|
|
6465 |
msgid "Your site's admin email address (%s) will be used."
|
6466 |
msgstr ""
|
6467 |
|
6468 |
-
#: src/admin.php:913, src/admin.php:
|
6469 |
#: src/methods/updraftvault.php:411,
|
6470 |
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
6471 |
msgid "Connect"
|
6472 |
msgstr ""
|
6473 |
|
6474 |
-
#: src/class-updraftplus.php:
|
6475 |
msgid "(version: %s)"
|
6476 |
msgstr ""
|
6477 |
|
@@ -6479,44 +6488,44 @@ msgstr ""
|
|
6479 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
6480 |
msgstr ""
|
6481 |
|
6482 |
-
#: src/addons/reporting.php:197, src/class-updraftplus.php:
|
6483 |
msgid "Latest status:"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
-
#: src/class-updraftplus.php:
|
6487 |
msgid "Backup contains:"
|
6488 |
msgstr ""
|
6489 |
|
6490 |
-
#: src/class-updraftplus.php:
|
6491 |
msgid "Backed up: %s"
|
6492 |
msgstr ""
|
6493 |
|
6494 |
-
#: src/addons/reporting.php:280, src/class-updraftplus.php:
|
6495 |
-
#: src/class-updraftplus.php:
|
6496 |
msgid "The log file has been attached to this email."
|
6497 |
msgstr ""
|
6498 |
|
6499 |
-
#: src/class-updraftplus.php:
|
6500 |
msgid "Unknown/unexpected error - please raise a support request"
|
6501 |
msgstr ""
|
6502 |
|
6503 |
-
#: src/class-updraftplus.php:
|
6504 |
msgid "Database only (files were not part of this particular schedule)"
|
6505 |
msgstr ""
|
6506 |
|
6507 |
-
#: src/class-updraftplus.php:
|
6508 |
msgid "Database (files backup has not completed)"
|
6509 |
msgstr ""
|
6510 |
|
6511 |
-
#: src/class-updraftplus.php:
|
6512 |
msgid "Files only (database was not part of this particular schedule)"
|
6513 |
msgstr ""
|
6514 |
|
6515 |
-
#: src/class-updraftplus.php:
|
6516 |
msgid "Files (database backup has not completed)"
|
6517 |
msgstr ""
|
6518 |
|
6519 |
-
#: src/admin.php:384, src/class-updraftplus.php:
|
6520 |
msgid "Files and database"
|
6521 |
msgstr ""
|
6522 |
|
@@ -6604,7 +6613,7 @@ msgstr ""
|
|
6604 |
msgid "Reporting"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
-
#: src/admin.php:
|
6608 |
msgid "Options (raw)"
|
6609 |
msgstr ""
|
6610 |
|
@@ -6612,19 +6621,19 @@ msgstr ""
|
|
6612 |
msgid "Send a report only when there are warnings/errors"
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#: src/restorer.php:
|
6616 |
msgid "Content URL:"
|
6617 |
msgstr ""
|
6618 |
|
6619 |
-
#: src/restorer.php:
|
6620 |
msgid "You should check the file ownerships and permissions in your WordPress installation"
|
6621 |
msgstr ""
|
6622 |
|
6623 |
-
#: src/backup.php:
|
6624 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
6625 |
msgstr ""
|
6626 |
|
6627 |
-
#: src/class-updraftplus.php:
|
6628 |
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)"
|
6629 |
msgstr ""
|
6630 |
|
@@ -6700,19 +6709,19 @@ msgstr ""
|
|
6700 |
msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
|
6701 |
msgstr ""
|
6702 |
|
6703 |
-
#: src/admin.php:
|
6704 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
6705 |
msgstr ""
|
6706 |
|
6707 |
-
#: src/admin.php:
|
6708 |
msgid "Forgotten your details?"
|
6709 |
msgstr ""
|
6710 |
|
6711 |
-
#: src/admin.php:
|
6712 |
msgid "Not yet got an account (it's free)? Go get one!"
|
6713 |
msgstr ""
|
6714 |
|
6715 |
-
#: src/admin.php:
|
6716 |
msgid "Connect with your UpdraftPlus.Com account"
|
6717 |
msgstr ""
|
6718 |
|
@@ -6775,7 +6784,7 @@ msgstr ""
|
|
6775 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#: src/restorer.php:
|
6779 |
msgid "Site home:"
|
6780 |
msgstr ""
|
6781 |
|
@@ -6800,11 +6809,11 @@ msgstr ""
|
|
6800 |
msgid "You can send a backup to more than one destination with Premium."
|
6801 |
msgstr ""
|
6802 |
|
6803 |
-
#: src/admin.php:
|
6804 |
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."
|
6805 |
msgstr ""
|
6806 |
|
6807 |
-
#: src/admin.php:
|
6808 |
msgid "(%s%%, file %s of %s)"
|
6809 |
msgstr ""
|
6810 |
|
@@ -6845,11 +6854,11 @@ msgstr ""
|
|
6845 |
msgid "%s settings test result:"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
-
#: src/admin.php:
|
6849 |
msgid "(Not finished)"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#: src/admin.php:
|
6853 |
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."
|
6854 |
msgstr ""
|
6855 |
|
@@ -6861,69 +6870,69 @@ msgstr ""
|
|
6861 |
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)."
|
6862 |
msgstr ""
|
6863 |
|
6864 |
-
#: src/admin.php:
|
6865 |
msgid "Job ID: %s"
|
6866 |
msgstr ""
|
6867 |
|
6868 |
-
#: src/admin.php:
|
6869 |
msgid "last activity: %ss ago"
|
6870 |
msgstr ""
|
6871 |
|
6872 |
-
#: src/admin.php:
|
6873 |
msgid "next resumption: %d (after %ss)"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
-
#: src/admin.php:
|
6877 |
#: src/methods/updraftvault.php:459, src/methods/updraftvault.php:506,
|
6878 |
#: src/methods/updraftvault.php:594
|
6879 |
msgid "Unknown"
|
6880 |
msgstr ""
|
6881 |
|
6882 |
-
#: src/admin.php:
|
6883 |
msgid "Backup finished"
|
6884 |
msgstr ""
|
6885 |
|
6886 |
-
#: src/admin.php:
|
6887 |
msgid "Waiting until scheduled time to retry because of errors"
|
6888 |
msgstr ""
|
6889 |
|
6890 |
-
#: src/admin.php:
|
6891 |
msgid "Pruning old backup sets"
|
6892 |
msgstr ""
|
6893 |
|
6894 |
-
#: src/admin.php:
|
6895 |
msgid "Uploading files to remote storage"
|
6896 |
msgstr ""
|
6897 |
|
6898 |
-
#: src/admin.php:
|
6899 |
msgid "Encrypted database"
|
6900 |
msgstr ""
|
6901 |
|
6902 |
-
#: src/admin.php:
|
6903 |
msgid "Encrypting database"
|
6904 |
msgstr ""
|
6905 |
|
6906 |
-
#: src/admin.php:
|
6907 |
msgid "Created database backup"
|
6908 |
msgstr ""
|
6909 |
|
6910 |
-
#: src/admin.php:
|
6911 |
msgid "table: %s"
|
6912 |
msgstr ""
|
6913 |
|
6914 |
-
#: src/admin.php:
|
6915 |
msgid "Creating database backup"
|
6916 |
msgstr ""
|
6917 |
|
6918 |
-
#: src/admin.php:
|
6919 |
msgid "Created file backup zips"
|
6920 |
msgstr ""
|
6921 |
|
6922 |
-
#: src/admin.php:
|
6923 |
msgid "Creating file backup zips"
|
6924 |
msgstr ""
|
6925 |
|
6926 |
-
#: src/admin.php:
|
6927 |
msgid "Backup begun"
|
6928 |
msgstr ""
|
6929 |
|
@@ -6931,23 +6940,23 @@ msgstr ""
|
|
6931 |
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."
|
6932 |
msgstr ""
|
6933 |
|
6934 |
-
#: src/restorer.php:
|
6935 |
msgid "file"
|
6936 |
msgstr ""
|
6937 |
|
6938 |
-
#: src/addons/onedrive.php:1243, src/restorer.php:
|
6939 |
msgid "folder"
|
6940 |
msgstr ""
|
6941 |
|
6942 |
-
#: src/restorer.php:
|
6943 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
6944 |
msgstr ""
|
6945 |
|
6946 |
-
#: src/class-updraftplus.php:
|
6947 |
msgid "The backup has not finished; a resumption is scheduled"
|
6948 |
msgstr ""
|
6949 |
|
6950 |
-
#: src/class-updraftplus.php:
|
6951 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
6952 |
msgstr ""
|
6953 |
|
@@ -6956,7 +6965,7 @@ msgstr ""
|
|
6956 |
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)."
|
6957 |
msgstr ""
|
6958 |
|
6959 |
-
#: src/admin.php:
|
6960 |
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)."
|
6961 |
msgstr ""
|
6962 |
|
@@ -7036,23 +7045,23 @@ msgstr ""
|
|
7036 |
msgid "Support"
|
7037 |
msgstr ""
|
7038 |
|
7039 |
-
#: src/class-updraftplus.php:
|
7040 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
7041 |
msgstr ""
|
7042 |
|
7043 |
-
#: src/class-updraftplus.php:
|
7044 |
msgid "This database backup is missing core WordPress tables: %s"
|
7045 |
msgstr ""
|
7046 |
|
7047 |
-
#: src/class-updraftplus.php:
|
7048 |
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."
|
7049 |
msgstr ""
|
7050 |
|
7051 |
-
#: src/class-updraftplus.php:
|
7052 |
msgid "%s version: %s"
|
7053 |
msgstr ""
|
7054 |
|
7055 |
-
#: src/class-updraftplus.php:
|
7056 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
7057 |
msgstr ""
|
7058 |
|
@@ -7060,7 +7069,7 @@ msgstr ""
|
|
7060 |
msgid "Be safe with an automatic backup"
|
7061 |
msgstr ""
|
7062 |
|
7063 |
-
#: src/admin.php:
|
7064 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7065 |
msgstr ""
|
7066 |
|
@@ -7112,7 +7121,7 @@ msgstr ""
|
|
7112 |
msgid "Examples of S3-compatible storage providers:"
|
7113 |
msgstr ""
|
7114 |
|
7115 |
-
#: src/admin.php:
|
7116 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
7117 |
msgstr ""
|
7118 |
|
@@ -7174,11 +7183,11 @@ msgstr ""
|
|
7174 |
msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
|
7175 |
msgstr ""
|
7176 |
|
7177 |
-
#: src/restorer.php:
|
7178 |
msgid "Moving unpacked backup into place..."
|
7179 |
msgstr ""
|
7180 |
|
7181 |
-
#: src/backup.php:
|
7182 |
msgid "Failed to open the zip file (%s) - %s"
|
7183 |
msgstr ""
|
7184 |
|
@@ -7203,11 +7212,11 @@ msgstr ""
|
|
7203 |
msgid "File is not locally present - needs retrieving from remote storage"
|
7204 |
msgstr ""
|
7205 |
|
7206 |
-
#: src/restorer.php:
|
7207 |
msgid "Looking for %s archive: file name: %s"
|
7208 |
msgstr ""
|
7209 |
|
7210 |
-
#: src/restorer.php:
|
7211 |
msgid "Final checks"
|
7212 |
msgstr ""
|
7213 |
|
@@ -7219,7 +7228,7 @@ msgstr ""
|
|
7219 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
7220 |
msgstr ""
|
7221 |
|
7222 |
-
#: src/admin.php:
|
7223 |
msgid "Your wp-content directory server path: %s"
|
7224 |
msgstr ""
|
7225 |
|
@@ -7240,15 +7249,15 @@ msgstr ""
|
|
7240 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
7241 |
msgstr ""
|
7242 |
|
7243 |
-
#: src/class-updraftplus.php:
|
7244 |
msgid "Failed to open database file."
|
7245 |
msgstr ""
|
7246 |
|
7247 |
-
#: src/admin.php:
|
7248 |
msgid "Known backups (raw)"
|
7249 |
msgstr ""
|
7250 |
|
7251 |
-
#: src/restorer.php:
|
7252 |
msgid "Files found:"
|
7253 |
msgstr ""
|
7254 |
|
@@ -7256,23 +7265,23 @@ msgstr ""
|
|
7256 |
msgid "Restoring table: %s"
|
7257 |
msgstr ""
|
7258 |
|
7259 |
-
#: src/restorer.php:
|
7260 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#: src/restorer.php:
|
7264 |
msgid "file is size:"
|
7265 |
msgstr ""
|
7266 |
|
7267 |
-
#: src/addons/googlecloud.php:1067, src/addons/migrator.php:
|
7268 |
-
#: src/addons/migrator.php:
|
7269 |
-
#: src/admin.php:1305, src/admin.php:
|
7270 |
-
#: src/backup.php:
|
7271 |
-
#: src/class-updraftplus.php:
|
7272 |
msgid "Go here for more information."
|
7273 |
msgstr ""
|
7274 |
|
7275 |
-
#: src/admin.php:
|
7276 |
msgid "Warning: If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7277 |
msgstr ""
|
7278 |
|
@@ -7280,7 +7289,7 @@ msgstr ""
|
|
7280 |
msgid "Some files are still downloading or being processed - please wait."
|
7281 |
msgstr ""
|
7282 |
|
7283 |
-
#: src/class-updraftplus.php:
|
7284 |
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."
|
7285 |
msgstr ""
|
7286 |
|
@@ -7322,7 +7331,7 @@ msgstr ""
|
|
7322 |
msgid "%s error - failed to upload file"
|
7323 |
msgstr ""
|
7324 |
|
7325 |
-
#: src/class-updraftplus.php:
|
7326 |
msgid "%s error - failed to re-assemble chunks"
|
7327 |
msgstr ""
|
7328 |
|
@@ -7333,77 +7342,77 @@ msgstr ""
|
|
7333 |
msgid "%s authentication failed"
|
7334 |
msgstr ""
|
7335 |
|
7336 |
-
#: src/addons/googlecloud.php:475, src/addons/migrator.php:
|
7337 |
#: src/admin.php:2605, src/admin.php:2626, src/admin.php:2634,
|
7338 |
-
#: src/class-updraftplus.php:
|
7339 |
-
#: src/class-updraftplus.php:
|
7340 |
-
#: src/class-updraftplus.php:
|
7341 |
-
#: src/class-updraftplus.php:
|
7342 |
#: src/methods/s3.php:383
|
7343 |
msgid "Error: %s"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
-
#: src/admin.php:
|
7347 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
7348 |
msgstr ""
|
7349 |
|
7350 |
-
#: src/admin.php:
|
7351 |
msgid "Backup directory specified does <b>not</b> exist."
|
7352 |
msgstr ""
|
7353 |
|
7354 |
-
#: src/admin.php:
|
7355 |
msgid "Warning: %s"
|
7356 |
msgstr ""
|
7357 |
|
7358 |
-
#: src/backup.php:
|
7359 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
7360 |
msgstr ""
|
7361 |
|
7362 |
-
#: src/backup.php:
|
7363 |
msgid "%s: unreadable file - could not be backed up"
|
7364 |
msgstr ""
|
7365 |
|
7366 |
-
#: src/backup.php:
|
7367 |
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."
|
7368 |
msgstr ""
|
7369 |
|
7370 |
-
#: src/backup.php:
|
7371 |
msgid "An error occurred whilst closing the final database file"
|
7372 |
msgstr ""
|
7373 |
|
7374 |
-
#: src/class-updraftplus.php:
|
7375 |
msgid "Warnings encountered:"
|
7376 |
msgstr ""
|
7377 |
|
7378 |
-
#: src/class-updraftplus.php:
|
7379 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
7380 |
msgstr ""
|
7381 |
|
7382 |
-
#: src/class-updraftplus.php:
|
7383 |
msgid "Your free disk space is very low - only %s Mb remain"
|
7384 |
msgstr ""
|
7385 |
|
7386 |
-
#: src/addons/migrator.php:
|
7387 |
msgid "New site:"
|
7388 |
msgstr ""
|
7389 |
|
7390 |
-
#: src/addons/migrator.php:
|
7391 |
msgid "Migrated site (from UpdraftPlus)"
|
7392 |
msgstr ""
|
7393 |
|
7394 |
-
#: src/addons/migrator.php:
|
7395 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
7396 |
msgstr ""
|
7397 |
|
7398 |
-
#: src/addons/migrator.php:
|
7399 |
msgid "Information needed to continue:"
|
7400 |
msgstr ""
|
7401 |
|
7402 |
-
#: src/addons/migrator.php:
|
7403 |
msgid "Network activating theme:"
|
7404 |
msgstr ""
|
7405 |
|
7406 |
-
#: src/addons/migrator.php:
|
7407 |
msgid "Processed plugin:"
|
7408 |
msgstr ""
|
7409 |
|
@@ -7427,33 +7436,33 @@ msgstr ""
|
|
7427 |
msgid "The error reported by %s was:"
|
7428 |
msgstr ""
|
7429 |
|
7430 |
-
#: src/restorer.php:
|
7431 |
msgid "Please supply the requested information, and then continue."
|
7432 |
msgstr ""
|
7433 |
|
7434 |
-
#: src/class-updraftplus.php:
|
7435 |
msgid "Site information:"
|
7436 |
msgstr ""
|
7437 |
|
7438 |
-
#: src/restorer.php:
|
7439 |
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."
|
7440 |
msgstr ""
|
7441 |
|
7442 |
-
#: src/admin.php:1044, src/admin.php:
|
7443 |
-
#: src/restorer.php:
|
7444 |
msgid "Warning:"
|
7445 |
msgstr ""
|
7446 |
|
7447 |
-
#: src/class-updraftplus.php:
|
7448 |
-
#: src/restorer.php:
|
7449 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
7450 |
msgstr ""
|
7451 |
|
7452 |
-
#: src/restorer.php:
|
7453 |
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."
|
7454 |
msgstr ""
|
7455 |
|
7456 |
-
#: src/addons/azure.php:604, src/admin.php:
|
7457 |
#: src/methods/updraftvault.php:343
|
7458 |
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."
|
7459 |
msgstr ""
|
@@ -7497,7 +7506,7 @@ msgstr ""
|
|
7497 |
msgid "Also delete from remote storage"
|
7498 |
msgstr ""
|
7499 |
|
7500 |
-
#: src/admin.php:
|
7501 |
msgid "Latest UpdraftPlus.com news:"
|
7502 |
msgstr ""
|
7503 |
|
@@ -7514,7 +7523,7 @@ msgstr ""
|
|
7514 |
msgid "Backup set not found"
|
7515 |
msgstr ""
|
7516 |
|
7517 |
-
#: src/backup.php:
|
7518 |
msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
|
7519 |
msgstr ""
|
7520 |
|
@@ -7549,7 +7558,7 @@ msgstr ""
|
|
7549 |
msgid "Notice"
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#: src/class-updraftplus.php:
|
7553 |
msgid "Errors encountered:"
|
7554 |
msgstr ""
|
7555 |
|
@@ -7581,65 +7590,67 @@ msgstr ""
|
|
7581 |
msgid "rows: %d"
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: src/addons/migrator.php:
|
7585 |
msgid "Time taken (seconds):"
|
7586 |
msgstr ""
|
7587 |
|
7588 |
-
#: src/addons/migrator.php:
|
7589 |
msgid "Errors:"
|
7590 |
msgstr ""
|
7591 |
|
7592 |
-
#: src/addons/migrator.php:
|
7593 |
msgid "SQL update commands run:"
|
7594 |
msgstr ""
|
7595 |
|
7596 |
-
#: src/addons/migrator.php:
|
7597 |
msgid "Changes made:"
|
7598 |
msgstr ""
|
7599 |
|
7600 |
-
#: src/addons/migrator.php:
|
7601 |
msgid "Rows examined:"
|
7602 |
msgstr ""
|
7603 |
|
7604 |
-
#: src/addons/migrator.php:
|
7605 |
msgid "Tables examined:"
|
7606 |
msgstr ""
|
7607 |
|
7608 |
-
#: src/addons/migrator.php:
|
7609 |
msgid "Could not get list of tables"
|
7610 |
msgstr ""
|
7611 |
|
7612 |
-
#: src/addons/migrator.php:
|
7613 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
7614 |
msgstr ""
|
7615 |
|
7616 |
-
#: src/addons/migrator.php:
|
7617 |
msgid "Nothing to do: the site URL is already: %s"
|
7618 |
msgstr ""
|
7619 |
|
7620 |
-
#: src/addons/migrator.php:
|
7621 |
-
#: src/addons/migrator.php:
|
7622 |
-
#: src/addons/migrator.php:
|
7623 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
-
#: src/addons/migrator.php:
|
7627 |
msgid "Database: search and replace site URL"
|
7628 |
msgstr ""
|
7629 |
|
7630 |
-
#: src/addons/migrator.php:
|
|
|
7631 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
7632 |
msgstr ""
|
7633 |
|
7634 |
-
#: src/addons/migrator.php:
|
|
|
7635 |
msgid "Failed: the %s operation was not able to start."
|
7636 |
msgstr ""
|
7637 |
|
7638 |
-
#: src/addons/migrator.php:
|
7639 |
msgid "Search and replace site location in the database (migrate)"
|
7640 |
msgstr ""
|
7641 |
|
7642 |
-
#: src/addons/migrator.php:
|
7643 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
7644 |
msgstr ""
|
7645 |
|
@@ -7647,7 +7658,7 @@ msgstr ""
|
|
7647 |
msgid "Blog uploads"
|
7648 |
msgstr ""
|
7649 |
|
7650 |
-
#: src/addons/migrator.php:
|
7651 |
msgid "Must-use plugins"
|
7652 |
msgstr ""
|
7653 |
|
@@ -7685,7 +7696,7 @@ msgstr ""
|
|
7685 |
|
7686 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:265,
|
7687 |
#: src/addons/sftp.php:496, src/addons/webdav.php:248, src/admin.php:1032,
|
7688 |
-
#: src/admin.php:
|
7689 |
#: src/methods/updraftvault.php:410,
|
7690 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
7691 |
msgid "Password"
|
@@ -7754,8 +7765,8 @@ msgstr ""
|
|
7754 |
|
7755 |
#: src/addons/googlecloud.php:809, src/addons/googlecloud.php:843,
|
7756 |
#: src/addons/googlecloud.php:849, src/addons/sftp.php:591,
|
7757 |
-
#: src/addons/webdav.php:325, src/admin.php:
|
7758 |
-
#: src/admin.php:
|
7759 |
msgid "Failed"
|
7760 |
msgstr ""
|
7761 |
|
@@ -7957,7 +7968,7 @@ msgstr ""
|
|
7957 |
msgid "API key"
|
7958 |
msgstr ""
|
7959 |
|
7960 |
-
#: src/addons/migrator.php:
|
7961 |
#: src/addons/moredatabase.php:115, src/addons/moredatabase.php:117,
|
7962 |
#: src/addons/sftp.php:560, src/addons/sftp.php:564, src/addons/sftp.php:568,
|
7963 |
#: src/addons/webdav.php:316, src/admin.php:927,
|
@@ -8007,8 +8018,8 @@ msgstr ""
|
|
8007 |
msgid "Test %s Settings"
|
8008 |
msgstr ""
|
8009 |
|
8010 |
-
#: src/addons/webdav.php:638, src/class-updraftplus.php:
|
8011 |
-
#: src/class-updraftplus.php:
|
8012 |
msgid "Error opening local file: Failed to download"
|
8013 |
msgstr ""
|
8014 |
|
@@ -8017,7 +8028,7 @@ msgstr ""
|
|
8017 |
msgid "%s Error: Failed to upload"
|
8018 |
msgstr ""
|
8019 |
|
8020 |
-
#: src/class-updraftplus.php:
|
8021 |
msgid "%s Error: Failed to open local file"
|
8022 |
msgstr ""
|
8023 |
|
@@ -8126,120 +8137,120 @@ msgstr ""
|
|
8126 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
8127 |
msgstr ""
|
8128 |
|
8129 |
-
#: src/admin.php:
|
8130 |
#: src/includes/class-remote-send.php:441,
|
8131 |
-
#: src/includes/class-storage-methods-interface.php:323, src/restorer.php:
|
8132 |
-
#: src/restorer.php:
|
8133 |
msgid "OK"
|
8134 |
msgstr ""
|
8135 |
|
8136 |
-
#: src/restorer.php:
|
8137 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
8138 |
msgstr ""
|
8139 |
|
8140 |
-
#: src/includes/class-search-replace.php:496, src/restorer.php:
|
8141 |
msgid "the database query being run was:"
|
8142 |
msgstr ""
|
8143 |
|
8144 |
-
#: src/restorer.php:
|
8145 |
msgid "will restore as:"
|
8146 |
msgstr ""
|
8147 |
|
8148 |
-
#: src/class-updraftplus.php:
|
8149 |
-
#: src/restorer.php:
|
8150 |
msgid "Old table prefix:"
|
8151 |
msgstr ""
|
8152 |
|
8153 |
#: src/addons/reporting.php:87, src/addons/reporting.php:196,
|
8154 |
-
#: src/class-updraftplus.php:
|
8155 |
msgid "Backup of:"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
-
#: src/restorer.php:
|
8159 |
msgid "Failed to open database file"
|
8160 |
msgstr ""
|
8161 |
|
8162 |
-
#: src/restorer.php:
|
8163 |
msgid "Failed to find database file"
|
8164 |
msgstr ""
|
8165 |
|
8166 |
-
#: src/restorer.php:
|
8167 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
8168 |
msgstr ""
|
8169 |
|
8170 |
-
#: src/restorer.php:
|
8171 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
8172 |
msgstr ""
|
8173 |
|
8174 |
-
#: src/restorer.php:
|
8175 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
-
#: src/restorer.php:
|
8179 |
msgid "Failed to write out the decrypted database to the filesystem"
|
8180 |
msgstr ""
|
8181 |
|
8182 |
-
#: src/restorer.php:
|
8183 |
msgid "Failed to create a temporary directory"
|
8184 |
msgstr ""
|
8185 |
|
8186 |
-
#: src/restorer.php:
|
8187 |
msgid "Failed to delete working directory after restoring."
|
8188 |
msgstr ""
|
8189 |
|
8190 |
-
#: src/restorer.php:
|
8191 |
msgid "Cleaning up rubbish..."
|
8192 |
msgstr ""
|
8193 |
|
8194 |
-
#: src/restorer.php:
|
8195 |
msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
|
8196 |
msgstr ""
|
8197 |
|
8198 |
-
#: src/restorer.php:
|
8199 |
msgid "Database successfully decrypted."
|
8200 |
msgstr ""
|
8201 |
|
8202 |
-
#: src/restorer.php:
|
8203 |
msgid "Decrypting database (can take a while)..."
|
8204 |
msgstr ""
|
8205 |
|
8206 |
-
#: src/restorer.php:
|
8207 |
msgid "Unpacking backup..."
|
8208 |
msgstr ""
|
8209 |
|
8210 |
-
#: src/restorer.php:
|
8211 |
msgid "Copying this entity failed."
|
8212 |
msgstr ""
|
8213 |
|
8214 |
-
#: src/restorer.php:
|
8215 |
msgid "Backup file not available."
|
8216 |
msgstr ""
|
8217 |
|
8218 |
-
#: src/restorer.php:
|
8219 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
8220 |
msgstr ""
|
8221 |
|
8222 |
-
#: src/restorer.php:
|
8223 |
msgid "Could not read one of the files for restoration"
|
8224 |
msgstr ""
|
8225 |
|
8226 |
-
#: src/restorer.php:
|
8227 |
msgid "Error message"
|
8228 |
msgstr ""
|
8229 |
|
8230 |
-
#: src/restorer.php:
|
8231 |
msgid "The backup records do not contain information about the proper size of this file."
|
8232 |
msgstr ""
|
8233 |
|
8234 |
-
#: src/restorer.php:
|
8235 |
msgid "Archive is expected to be size:"
|
8236 |
msgstr ""
|
8237 |
|
8238 |
-
#: src/admin.php:
|
8239 |
msgid "If making a request for support, please include this information:"
|
8240 |
msgstr ""
|
8241 |
|
8242 |
-
#: src/admin.php:
|
8243 |
msgid "ABORT: Could not find the information on which entities to restore."
|
8244 |
msgstr ""
|
8245 |
|
@@ -8247,27 +8258,27 @@ msgstr ""
|
|
8247 |
msgid "UpdraftPlus Restoration: Progress"
|
8248 |
msgstr ""
|
8249 |
|
8250 |
-
#: src/admin.php:
|
8251 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
8252 |
msgstr ""
|
8253 |
|
8254 |
-
#: src/admin.php:
|
8255 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
8256 |
msgstr ""
|
8257 |
|
8258 |
-
#: src/admin.php:
|
8259 |
msgid "Delete this backup set"
|
8260 |
msgstr ""
|
8261 |
|
8262 |
-
#: src/admin.php:
|
8263 |
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."
|
8264 |
msgstr ""
|
8265 |
|
8266 |
-
#: src/admin.php:
|
8267 |
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."
|
8268 |
msgstr ""
|
8269 |
|
8270 |
-
#: src/admin.php:
|
8271 |
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)."
|
8272 |
msgstr ""
|
8273 |
|
@@ -8308,19 +8319,19 @@ msgstr ""
|
|
8308 |
msgid "Use the server's SSL certificates"
|
8309 |
msgstr ""
|
8310 |
|
8311 |
-
#: src/admin.php:
|
8312 |
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."
|
8313 |
msgstr ""
|
8314 |
|
8315 |
-
#: src/admin.php:
|
8316 |
msgid "or, to reset this option"
|
8317 |
msgstr ""
|
8318 |
|
8319 |
-
#: src/admin.php:
|
8320 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
8321 |
msgstr ""
|
8322 |
|
8323 |
-
#: src/admin.php:
|
8324 |
msgid "Backup directory specified is writable, which is good."
|
8325 |
msgstr ""
|
8326 |
|
@@ -8362,7 +8373,7 @@ msgid "Cancel"
|
|
8362 |
msgstr ""
|
8363 |
|
8364 |
#: src/addons/incremental.php:330, src/addons/incremental.php:338,
|
8365 |
-
#: src/addons/reporting.php:260, src/admin.php:
|
8366 |
msgid "None"
|
8367 |
msgstr ""
|
8368 |
|
@@ -8378,7 +8389,7 @@ msgstr ""
|
|
8378 |
msgid "Database encryption phrase"
|
8379 |
msgstr ""
|
8380 |
|
8381 |
-
#: src/admin.php:
|
8382 |
#: src/templates/wp-admin/settings/form-contents.php:256,
|
8383 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
8384 |
msgid "Email"
|
@@ -8392,7 +8403,7 @@ msgstr ""
|
|
8392 |
msgid "Exclude these:"
|
8393 |
msgstr ""
|
8394 |
|
8395 |
-
#: src/admin.php:
|
8396 |
msgid "Any other directories found inside wp-content"
|
8397 |
msgstr ""
|
8398 |
|
@@ -8413,22 +8424,22 @@ msgid "Database backup interval"
|
|
8413 |
msgstr ""
|
8414 |
|
8415 |
#: src/addons/incremental.php:334, src/addons/incremental.php:347,
|
8416 |
-
#: src/admin.php:
|
8417 |
msgid "Monthly"
|
8418 |
msgstr ""
|
8419 |
|
8420 |
#: src/addons/incremental.php:333, src/addons/incremental.php:346,
|
8421 |
-
#: src/admin.php:
|
8422 |
msgid "Fortnightly"
|
8423 |
msgstr ""
|
8424 |
|
8425 |
#: src/addons/incremental.php:332, src/addons/incremental.php:345,
|
8426 |
-
#: src/admin.php:
|
8427 |
msgid "Weekly"
|
8428 |
msgstr ""
|
8429 |
|
8430 |
#: src/addons/incremental.php:331, src/addons/incremental.php:344,
|
8431 |
-
#: src/admin.php:
|
8432 |
msgid "Daily"
|
8433 |
msgstr ""
|
8434 |
|
@@ -8436,30 +8447,30 @@ msgstr ""
|
|
8436 |
msgid "Files backup interval"
|
8437 |
msgstr ""
|
8438 |
|
8439 |
-
#: src/admin.php:909, src/admin.php:
|
8440 |
msgid "Download log file"
|
8441 |
msgstr ""
|
8442 |
|
8443 |
-
#: src/admin.php:
|
8444 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
8445 |
msgstr ""
|
8446 |
|
8447 |
-
#: src/admin.php:
|
8448 |
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"
|
8449 |
msgstr ""
|
8450 |
|
8451 |
-
#: src/admin.php:
|
8452 |
msgid "The request to the filesystem to create the directory failed."
|
8453 |
msgstr ""
|
8454 |
|
8455 |
-
#: src/admin.php:900, src/admin.php:
|
8456 |
-
#: src/admin.php:
|
8457 |
#: src/templates/wp-admin/settings/existing-backups-table.php:167,
|
8458 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
8459 |
msgid "Delete"
|
8460 |
msgstr ""
|
8461 |
|
8462 |
-
#: src/admin.php:
|
8463 |
msgid "show log"
|
8464 |
msgstr ""
|
8465 |
|
@@ -8524,7 +8535,7 @@ msgstr ""
|
|
8524 |
msgid "Yes"
|
8525 |
msgstr ""
|
8526 |
|
8527 |
-
#: src/admin.php:
|
8528 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
8529 |
#: src/templates/wp-admin/advanced/site-info.php:64,
|
8530 |
#: src/templates/wp-admin/advanced/site-info.php:72,
|
@@ -8556,7 +8567,7 @@ msgstr ""
|
|
8556 |
msgid "Do read this helpful article of useful things to know before restoring."
|
8557 |
msgstr ""
|
8558 |
|
8559 |
-
#: src/class-updraftplus.php:
|
8560 |
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"
|
8561 |
msgstr ""
|
8562 |
|
@@ -8598,8 +8609,8 @@ msgid "Download error: the server sent us a response which we did not understand
|
|
8598 |
msgstr ""
|
8599 |
|
8600 |
#: src/addons/backblaze.php:205, src/addons/backblaze.php:230,
|
8601 |
-
#: src/addons/cloudfiles-enhanced.php:123, src/addons/migrator.php:
|
8602 |
-
#: src/addons/migrator.php:
|
8603 |
#: src/addons/s3-enhanced.php:161, src/addons/s3-enhanced.php:166,
|
8604 |
#: src/addons/s3-enhanced.php:168, src/addons/sftp.php:962,
|
8605 |
#: src/addons/webdav.php:258, src/admin.php:91, src/admin.php:873,
|
@@ -8616,7 +8627,8 @@ msgstr ""
|
|
8616 |
#: src/includes/class-search-replace.php:326,
|
8617 |
#: src/includes/class-search-replace.php:496, src/methods/remotesend.php:74,
|
8618 |
#: src/methods/remotesend.php:252, src/methods/updraftvault.php:592,
|
8619 |
-
#: src/restorer.php:
|
|
|
8620 |
msgid "Error:"
|
8621 |
msgstr ""
|
8622 |
|
@@ -8670,7 +8682,7 @@ msgstr ""
|
|
8670 |
msgid "More tasks:"
|
8671 |
msgstr ""
|
8672 |
|
8673 |
-
#: src/admin.php:
|
8674 |
msgid "Download most recently modified log file"
|
8675 |
msgstr ""
|
8676 |
|
@@ -8679,13 +8691,13 @@ msgid "(Nothing yet logged)"
|
|
8679 |
msgstr ""
|
8680 |
|
8681 |
#: src/addons/autobackup.php:368, src/addons/autobackup.php:463,
|
8682 |
-
#: src/admin.php:
|
8683 |
#: src/templates/wp-admin/settings/take-backup.php:72
|
8684 |
msgid "Last log message"
|
8685 |
msgstr ""
|
8686 |
|
8687 |
-
#: src/addons/migrator.php:
|
8688 |
-
#: src/admin.php:
|
8689 |
msgid "Restore"
|
8690 |
msgstr ""
|
8691 |
|
@@ -8698,18 +8710,18 @@ msgid "Time now"
|
|
8698 |
msgstr ""
|
8699 |
|
8700 |
#: src/addons/moredatabase.php:266, src/addons/reporting.php:275,
|
8701 |
-
#: src/addons/wp-cli.php:428, src/admin.php:394, src/admin.php:
|
8702 |
-
#: src/admin.php:
|
8703 |
#: src/includes/class-remote-send.php:445,
|
8704 |
#: src/includes/class-wpadmin-commands.php:154,
|
8705 |
-
#: src/includes/class-wpadmin-commands.php:612, src/restorer.php:
|
8706 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
|
8707 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
|
8708 |
#: src/templates/wp-admin/settings/take-backup.php:34
|
8709 |
msgid "Database"
|
8710 |
msgstr ""
|
8711 |
|
8712 |
-
#: src/admin.php:384, src/admin.php:
|
8713 |
#: src/templates/wp-admin/settings/take-backup.php:24
|
8714 |
msgid "Files"
|
8715 |
msgstr ""
|
@@ -8735,15 +8747,15 @@ msgstr ""
|
|
8735 |
msgid "JavaScript warning"
|
8736 |
msgstr ""
|
8737 |
|
8738 |
-
#: src/admin.php:884, src/admin.php:
|
8739 |
msgid "Delete Old Directories"
|
8740 |
msgstr ""
|
8741 |
|
8742 |
-
#: src/admin.php:
|
8743 |
msgid "Current limit is:"
|
8744 |
msgstr ""
|
8745 |
|
8746 |
-
#: src/admin.php:
|
8747 |
msgid "Your backup has been restored."
|
8748 |
msgstr ""
|
8749 |
|
@@ -8755,36 +8767,36 @@ msgstr ""
|
|
8755 |
msgid "Lead developer's homepage"
|
8756 |
msgstr ""
|
8757 |
|
8758 |
-
#: src/admin.php:
|
8759 |
msgid "Your settings have been wiped."
|
8760 |
msgstr ""
|
8761 |
|
8762 |
-
#: src/admin.php:
|
8763 |
msgid "Backup directory successfully created."
|
8764 |
msgstr ""
|
8765 |
|
8766 |
-
#: src/admin.php:
|
8767 |
msgid "Backup directory could not be created"
|
8768 |
msgstr ""
|
8769 |
|
8770 |
-
#: src/admin.php:
|
8771 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
8772 |
msgstr ""
|
8773 |
|
8774 |
-
#: src/admin.php:
|
8775 |
msgid "Old directories successfully removed."
|
8776 |
msgstr ""
|
8777 |
|
8778 |
-
#: src/admin.php:
|
8779 |
msgid "Remove old directories"
|
8780 |
msgstr ""
|
8781 |
|
8782 |
-
#: src/addons/migrator.php:
|
8783 |
msgid "Return to UpdraftPlus Configuration"
|
8784 |
msgstr ""
|
8785 |
|
8786 |
-
#: src/admin.php:877, src/admin.php:
|
8787 |
-
#: src/admin.php:
|
8788 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
8789 |
#: src/templates/wp-admin/settings/existing-backups-table.php:142
|
8790 |
msgid "Actions"
|
@@ -8815,13 +8827,13 @@ msgid "Download failed"
|
|
8815 |
msgstr ""
|
8816 |
|
8817 |
#: src/addons/webdav.php:584, src/addons/wp-cli.php:497, src/admin.php:874,
|
8818 |
-
#: src/class-updraftplus.php:
|
8819 |
#: src/includes/class-filesystem-functions.php:437,
|
8820 |
#: src/includes/class-storage-methods-interface.php:332,
|
8821 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
8822 |
#: src/methods/addon-base-v2.php:251, src/methods/addon-base-v2.php:271,
|
8823 |
-
#: src/methods/googledrive.php:1343, src/restorer.php:
|
8824 |
-
#: src/restorer.php:
|
8825 |
#: src/updraftplus.php:158
|
8826 |
msgid "Error"
|
8827 |
msgstr ""
|
@@ -8858,11 +8870,11 @@ msgstr ""
|
|
8858 |
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."
|
8859 |
msgstr ""
|
8860 |
|
8861 |
-
#: src/addons/azure.php:604, src/addons/migrator.php:
|
8862 |
#: src/admin.php:1305, src/admin.php:1311, src/admin.php:1315,
|
8863 |
-
#: src/admin.php:1319, src/admin.php:1328, src/admin.php:
|
8864 |
-
#: src/admin.php:
|
8865 |
-
#: src/admin.php:
|
8866 |
#: src/methods/cloudfiles.php:455, src/methods/ftp.php:344,
|
8867 |
#: src/methods/openstack-base.php:576, src/methods/s3.php:892,
|
8868 |
#: src/methods/s3.php:896, src/methods/updraftvault.php:343,
|
@@ -8872,19 +8884,19 @@ msgstr ""
|
|
8872 |
msgid "Warning"
|
8873 |
msgstr ""
|
8874 |
|
8875 |
-
#: src/admin.php:717, src/admin.php:1222, src/admin.php:
|
8876 |
msgid "Settings"
|
8877 |
msgstr ""
|
8878 |
|
8879 |
-
#: src/backup.php:
|
8880 |
msgid "Could not create %s zip. Consult the log file for more information."
|
8881 |
msgstr ""
|
8882 |
|
8883 |
-
#: src/backup.php:
|
8884 |
msgid "Infinite recursion: consult your log for more information"
|
8885 |
msgstr ""
|
8886 |
|
8887 |
-
#: src/addons/azure.php:267, src/class-updraftplus.php:
|
8888 |
#: src/methods/googledrive.php:1343, src/methods/s3.php:383
|
8889 |
msgid "File not found"
|
8890 |
msgstr ""
|
@@ -8893,41 +8905,41 @@ msgstr ""
|
|
8893 |
msgid "The decryption key used:"
|
8894 |
msgstr ""
|
8895 |
|
8896 |
-
#: src/class-updraftplus.php:
|
8897 |
-
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:
|
8898 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
8899 |
msgstr ""
|
8900 |
|
8901 |
-
#: src/class-updraftplus.php:
|
8902 |
-
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:
|
8903 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
8904 |
msgstr ""
|
8905 |
|
8906 |
-
#: src/backup.php:
|
8907 |
msgid "Could not open the backup file for writing"
|
8908 |
msgstr ""
|
8909 |
|
8910 |
-
#: src/class-updraftplus.php:
|
8911 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
8912 |
msgstr ""
|
8913 |
|
8914 |
-
#: src/class-updraftplus.php:
|
8915 |
msgid "Could not read the directory"
|
8916 |
msgstr ""
|
8917 |
|
8918 |
-
#: src/admin.php:2568, src/backup.php:
|
8919 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
8920 |
msgstr ""
|
8921 |
|
8922 |
-
#: src/class-updraftplus.php:
|
8923 |
msgid "WordPress backup is complete"
|
8924 |
msgstr ""
|
8925 |
|
8926 |
-
#: src/class-updraftplus.php:
|
8927 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
8928 |
msgstr ""
|
8929 |
|
8930 |
-
#: src/class-updraftplus.php:
|
8931 |
msgid "The backup apparently succeeded and is now complete"
|
8932 |
msgstr ""
|
8933 |
|
@@ -8935,37 +8947,37 @@ msgstr ""
|
|
8935 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
8936 |
msgstr ""
|
8937 |
|
8938 |
-
#: src/class-updraftplus.php:
|
8939 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
8940 |
msgstr ""
|
8941 |
|
8942 |
-
#: src/class-updraftplus.php:
|
8943 |
msgid "Others"
|
8944 |
msgstr ""
|
8945 |
|
8946 |
-
#: src/addons/multisite.php:504, src/class-updraftplus.php:
|
8947 |
msgid "Uploads"
|
8948 |
msgstr ""
|
8949 |
|
8950 |
-
#: src/class-updraftplus.php:
|
8951 |
msgid "Themes"
|
8952 |
msgstr ""
|
8953 |
|
8954 |
-
#: src/class-updraftplus.php:
|
8955 |
msgid "Plugins"
|
8956 |
msgstr ""
|
8957 |
|
8958 |
-
#: src/class-updraftplus.php:
|
8959 |
msgid "No log files were found."
|
8960 |
msgstr ""
|
8961 |
|
8962 |
-
#: src/admin.php:2430, src/admin.php:2434, src/class-updraftplus.php:
|
8963 |
msgid "The log file could not be read."
|
8964 |
msgstr ""
|
8965 |
|
8966 |
#: src/admin.php:1348, src/admin.php:1369, src/admin.php:1407,
|
8967 |
-
#: src/class-updraftplus.php:
|
8968 |
-
#: src/class-updraftplus.php:
|
8969 |
msgid "UpdraftPlus notice:"
|
8970 |
msgstr ""
|
8971 |
|
11 |
"Language: af_ZA\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/advanced/site-info.php:109
|
15 |
+
msgid "Install debugging plugins:"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/restorer.php:2918
|
19 |
+
msgid "Old ABSPATH:"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/admin.php:2772
|
23 |
+
msgid "Enjoyed %s? Please leave us a %s rating. We really appreciate your support!"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
#: src/udaddons/options.php:98
|
27 |
msgid "An update is available for UpdraftPlus - please connect here to gain access to it."
|
28 |
msgstr ""
|
241 |
msgid "If you have an existing backup that you wish to upload and restore from, then please use the \"Upload backup files\" link above."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: src/class-updraftplus.php:5358
|
245 |
msgid "Include all tables not listed below"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: src/class-updraftplus.php:5356
|
249 |
msgid "The amount of database tables scanned is near or over the php_max_input_vars value so some tables maybe truncated. This option will ensure all tables not found will be backed up."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: src/class-updraftplus.php:5355
|
253 |
msgid "The database scan was taking too long and consequently the list of all tables in the database could not be completed. This option will ensure all tables not found will be backed up."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: src/class-updraftplus.php:5345
|
257 |
msgid "Therefore, affected tables on the current site which already exist will not be replaced by default, to avoid corrupting them (you can review this in the list of tables below)."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: src/class-updraftplus.php:5343
|
261 |
msgid "Therefore it is advised that you take a fresh backup on the source site, using a later version."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: src/class-updraftplus.php:5343, src/class-updraftplus.php:5345
|
265 |
msgid "This backup was created on a previous UpdraftPlus version (%s) which did not correctly backup tables with composite primary keys (such as the term_relationships table, which records tags and product attributes)."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: src/class-updraftplus.php:5296
|
269 |
msgid "This backup is of a site with an empty table prefix, which WordPress does not officially support; the results may be unreliable."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: src/class-updraftplus.php:3868
|
273 |
msgid "View log"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: src/class-updraftplus.php:3862
|
277 |
msgid "You can view the log by pressing the 'View log' button."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: src/class-updraftplus.php:3820
|
281 |
msgid "UpdraftPlus on %s"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: src/class-updraftplus.php:3154
|
285 |
msgid " Your hosting provider only allows you to take one incremental backup per day."
|
286 |
msgstr ""
|
287 |
|
329 |
msgid "The plugin you wish to activate is either not installed or has been removed recently."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: src/backup.php:3844
|
333 |
msgid "two unsuccessful attempts were made to include it, and it will now be omitted from the backup"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: src/backup.php:3840
|
337 |
msgid "a second attempt is being made (upon further failure it will be skipped)"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: src/backup.php:2381
|
341 |
msgid "Error getting table details"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: src/backup.php:1761
|
345 |
msgid "Failed to backup database table:"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: src/backup.php:1610
|
349 |
msgid "Failed to open directory for reading:"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: src/admin.php:6206
|
353 |
msgid "The download link is broken or the backup file is no longer available"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: src/admin.php:6204
|
357 |
msgid "The download link is broken, you may have clicked the link from untrusted source"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: src/admin.php:6189
|
361 |
msgid "Due to the restriction, some settings can be automatically adjusted, disabled or not available."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: src/admin.php:6188
|
365 |
msgid "%s permits UpdraftPlus to perform only one backup per month. Thus, we recommend you choose a full backup when performing a manual backup and to use that option when creating a scheduled backup."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: src/admin.php:6187
|
369 |
msgid "Your website is hosted with %s (%s)."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: src/admin.php:6123
|
373 |
msgid "The following remote storage (%s) have only been partially configured, if you are having problems you can try to manually authorise at the UpdraftPlus settings page."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: src/admin.php:6117
|
377 |
msgid "The following remote storage (%s) have only been partially configured, manual authorization is not supported with this remote storage, please try again and if the problem persists contact support."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: src/admin.php:5981
|
381 |
msgid "more info"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: src/admin.php:5371
|
385 |
msgid "The following remote storage options are configured."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: src/admin.php:5368
|
389 |
msgid "No remote storage locations with valid options found."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: src/admin.php:4965
|
393 |
msgid "This may prevent the restore procedure from being able to proceed."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: src/admin.php:4192
|
397 |
msgid "(the asterisk character matches zero or more characters)"
|
398 |
msgstr ""
|
399 |
|
449 |
msgid "Your hosting provider only allows you to take one incremental backup per day."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: src/admin.php:1049, src/class-updraftplus.php:3154
|
453 |
msgid "You have reached the daily limit for the number of incremental backups you can create at this time."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: src/admin.php:1048, src/admin.php:1049, src/class-updraftplus.php:3154,
|
457 |
+
#: src/class-updraftplus.php:3157
|
458 |
msgid "Please contact your hosting company (%s) if you require further support."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: src/admin.php:1048, src/class-updraftplus.php:3157
|
462 |
msgid "Your hosting provider only allows you to take one backup per month."
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: src/admin.php:1048, src/class-updraftplus.php:3157
|
466 |
msgid "You have reached the monthly limit for the number of backups you can create at this time."
|
467 |
msgstr ""
|
468 |
|
482 |
msgid "Exit full-screen"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: src/admin.php:904, src/admin.php:4994
|
486 |
msgid "Full-screen"
|
487 |
msgstr ""
|
488 |
|
759 |
msgid "Makes your site fast and efficient. It cleans the database, compresses images and caches pages for ultimate speed."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: src/restorer.php:3798
|
763 |
msgid "The Database connection has been closed and cannot be reopened."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: src/restorer.php:3462
|
767 |
msgid "Skipping table %s: already restored on a prior run; next table to restore: %s"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: src/restorer.php:3459
|
771 |
msgid "Skipping table %s: user has chosen not to restore this table"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: src/restorer.php:2384
|
775 |
msgid "Found and replaced existing table foreign key constraints as the table prefix has changed."
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: src/restorer.php:2227
|
779 |
msgid "An error occurred while attempting to set a new value to the MySQL global log_bin_trust_function_creators variable %s"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: src/restorer.php:2220
|
783 |
msgid "An error occurred while attempting to retrieve the MySQL global log_bin_trust_function_creators variable %s"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: src/restorer.php:1148
|
787 |
msgid "The directory does not exist, and the attempt to create it failed"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: src/restorer.php:750
|
791 |
msgid "Could not delete old path."
|
792 |
msgstr ""
|
793 |
|
980 |
msgid "No backup will be started. The creation of your clone should now begin, and your WordPress username and password will be displayed below when ready."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: src/class-updraftplus.php:5350
|
984 |
msgid "If you do not want to restore all your database tables, then choose some to exclude here."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: src/class-updraftplus.php:5050
|
988 |
msgid "You should only proceed if you have checked and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the new %s version."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/class-updraftplus.php:5050
|
992 |
msgid "This is older than the server which you are now restoring onto (version %s)."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/class-updraftplus.php:3620
|
996 |
msgid "Incomplete"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: src/class-updraftplus.php:2385
|
1000 |
msgid "The backup is being aborted for a repeated failure to progress."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: src/class-updraftplus.php:652
|
1004 |
msgid "Briefly unavailable for scheduled maintenance. Check back in a minute."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: src/class-updraftplus.php:652
|
1008 |
msgid "Under Maintenance"
|
1009 |
msgstr ""
|
1010 |
|
1056 |
msgid "Unable to connect to the filesystem"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: src/admin.php:6132, src/admin.php:6134
|
1060 |
msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/admin.php:5981
|
1064 |
msgid "Clone package"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/admin.php:5968
|
1068 |
msgid "An empty WordPress install"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/admin.php:5967
|
1072 |
msgid "This current site"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/admin.php:5965
|
1076 |
msgid "Clone:"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: src/admin.php:5002,
|
1080 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:98
|
1081 |
msgid "3. Restoration"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: src/admin.php:5001,
|
1085 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:97
|
1086 |
msgid "2. Verifications"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: src/admin.php:5000,
|
1090 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:96
|
1091 |
msgid "1. Component selection"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: src/admin.php:4994
|
1095 |
msgid "Activity log"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: src/admin.php:4987
|
1099 |
msgid "Cleaning"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: src/admin.php:4981
|
1103 |
msgid "Verifying"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: src/admin.php:4978
|
1107 |
msgid "Restoration progress:"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: src/admin.php:4977
|
1111 |
msgid "The restore operation has begun (%s). Do not close this page until it reports itself as having finished."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: src/admin.php:4968,
|
1115 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
|
1116 |
msgid "UpdraftPlus Restoration"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: src/admin.php:4463
|
1120 |
msgid "(%d archive(s) in set, total %s)."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: src/admin.php:3312
|
1124 |
msgid "Learn more about UpdraftCentral"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: src/admin.php:3312
|
1128 |
msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: src/admin.php:2852, src/admin.php:3777, src/admin.php:4910,
|
1132 |
+
#: src/admin.php:4922, src/admin.php:4933, src/admin.php:5168,
|
1133 |
+
#: src/admin.php:6123, src/admin.php:6134
|
1134 |
msgid "Return to UpdraftPlus configuration"
|
1135 |
msgstr ""
|
1136 |
|
1214 |
msgid "Begun"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: src/admin.php:1038, src/admin.php:4988
|
1218 |
msgid "Finished"
|
1219 |
msgstr ""
|
1220 |
|
1456 |
msgid "Azure China"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: src/admin.php:5951
|
1460 |
msgid "Clone region:"
|
1461 |
msgstr ""
|
1462 |
|
1490 |
msgid "Or, use an UpdraftClone key"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: src/restorer.php:3164
|
1494 |
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
1495 |
msgstr ""
|
1496 |
|
1514 |
msgid "Automatic updates"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: src/restorer.php:2735, src/restorer.php:2786
|
1518 |
msgid "Your database user does not have permission to drop tables"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: src/admin.php:3301
|
1522 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
1523 |
msgstr ""
|
1524 |
|
1682 |
msgid "WordPress installed"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: src/admin.php:6056
|
1686 |
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."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: src/admin.php:4192
|
1690 |
msgid "Exclude these from"
|
1691 |
msgstr ""
|
1692 |
|
1734 |
msgid "failed to upload file to %s (see log file for more)"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: src/admin.php:6052
|
1738 |
msgid "Dashboard:"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: src/admin.php:6051
|
1742 |
msgid "Front page:"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: src/admin.php:6050
|
1746 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
1747 |
msgstr ""
|
1748 |
|
1754 |
msgid "Current clones"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: src/class-updraftplus.php:3538
|
1758 |
msgid "Your clone will now deploy this data to re-create your site."
|
1759 |
msgstr ""
|
1760 |
|
1762 |
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."
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: src/addons/migrator.php:1402
|
1766 |
msgid "Site key"
|
1767 |
msgstr ""
|
1768 |
|
1770 |
msgid "Add a site"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: src/addons/migrator.php:233, src/addons/migrator.php:1389,
|
1774 |
+
#: src/addons/migrator.php:1409
|
1775 |
msgid "back"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: src/addons/migrator.php:199
|
1779 |
msgid "Read this article to see step-by-step how it's done."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: src/addons/migrator.php:193,
|
1783 |
#: src/templates/wp-admin/settings/migrator-no-migrator.php:6
|
1784 |
msgid "Migrate (create a copy of a site on hosting you control)"
|
1785 |
msgstr ""
|
2056 |
msgid "You can buy more temporary clone tokens here."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: src/admin.php:6004
|
2060 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
2061 |
msgstr ""
|
2062 |
|
2076 |
msgid "The creation of your data for creating the clone should now begin."
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: src/admin.php:6054, src/admin.php:6057
|
2080 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: src/class-updraftplus.php:5255
|
2084 |
msgid "Choose a default for each table"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: src/admin.php:3617
|
2088 |
msgid "Sending files to remote site"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: src/admin.php:3612
|
2092 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
2093 |
msgstr ""
|
2094 |
|
2096 |
msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: src/addons/migrator.php:237
|
2100 |
msgid "To import a backup set, go to the \"Existing backups\" section in the \"Backup/Restore\" tab"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: src/admin.php:3091
|
2104 |
msgid "Backup / Restore"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: src/admin.php:701, src/admin.php:4968
|
2108 |
msgid "Backup"
|
2109 |
msgstr ""
|
2110 |
|
2124 |
msgid "No previous backup found to add an increment to."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: src/restorer.php:3170
|
2128 |
msgid "Requested character set (%s) is not present - changing to %s."
|
2129 |
msgstr ""
|
2130 |
|
2176 |
msgid "More information here."
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: src/admin.php:709, src/admin.php:3092
|
2180 |
msgid "Migrate / Clone"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: src/admin.php:4323, src/templates/wp-admin/settings/backupnow-modal.php:60,
|
2184 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76,
|
2185 |
#: src/templates/wp-admin/settings/existing-backups-table.php:79
|
2186 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
2190 |
msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: src/restorer.php:279
|
2194 |
msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
|
2195 |
msgstr ""
|
2196 |
|
2202 |
msgid "Run this command to see the log file for this restoration (needed for any support requests)."
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: src/class-updraftplus.php:216
|
2206 |
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."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: src/admin.php:5986, src/admin.php:6030
|
2210 |
msgid "(current version)"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: src/admin.php:4101
|
2214 |
msgid "press here"
|
2215 |
msgstr ""
|
2216 |
|
2232 |
msgid "And then add an incremental backup"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: src/addons/incremental.php:339, src/admin.php:4074, src/updraftplus.php:100
|
2236 |
msgid "Every hour"
|
2237 |
msgstr ""
|
2238 |
|
2244 |
msgid "Available temporary clone tokens:"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: src/admin.php:3225, src/includes/class-commands.php:1027,
|
2248 |
#: src/includes/class-commands.php:1081, src/includes/class-commands.php:1083,
|
2249 |
#: src/methods/backup-module.php:663,
|
2250 |
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
2264 |
msgid "I consent to %s"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: src/admin.php:3338,
|
2268 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
2269 |
msgid "One Time Password (check your OTP app to get this password)"
|
2270 |
msgstr ""
|
2313 |
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."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: src/admin.php:5913
|
2317 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
2318 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
2319 |
msgstr[0] ""
|
2417 |
msgid "Upload backup"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: src/admin.php:4580
|
2421 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
2422 |
msgstr ""
|
2423 |
|
2429 |
msgid "Local backup upload has started; please check the log file to see the upload progress"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: src/admin.php:902, src/admin.php:4580
|
2433 |
msgid "Upload"
|
2434 |
msgstr ""
|
2435 |
|
2445 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: src/addons/migrator.php:279
|
2449 |
msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
|
2450 |
msgstr ""
|
2451 |
|
2491 |
msgid "The given value for the '%s' option is not valid"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: src/addons/migrator.php:1412
|
2495 |
msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: src/addons/migrator.php:1398
|
2499 |
msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: src/addons/migrator.php:1398
|
2503 |
msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
|
2504 |
msgstr ""
|
2505 |
|
2527 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: src/restorer.php:758
|
2531 |
msgid "Failed to read from the working directory."
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: src/restorer.php:757
|
2535 |
msgid "Failed to find a manifest file in the backup."
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: src/restorer.php:756
|
2539 |
msgid "Failed to read the manifest file from backup."
|
2540 |
msgstr ""
|
2541 |
|
2547 |
msgid "Ensure you are logged into the correct account before continuing."
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: src/admin.php:5558
|
2551 |
msgid "Remote storage method and instance id are required for authentication."
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: src/admin.php:5554
|
2555 |
msgid "authentication error"
|
2556 |
msgstr ""
|
2557 |
|
2559 |
msgid "(Nothing has been logged yet)"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: src/addons/migrator.php:444
|
2563 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: src/addons/migrator.php:433
|
2567 |
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 below search and replace so that the non-https links are automatically replaced."
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: src/addons/migrator.php:422
|
2571 |
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 below search and replace to search/replace the site address so that the site can be visited without https."
|
2572 |
msgstr ""
|
2573 |
|
2615 |
msgid "Invalid bucket name"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: src/restorer.php:2428
|
2619 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
2620 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
2621 |
msgstr[0] ""
|
2622 |
msgstr[1] ""
|
2623 |
|
2624 |
+
#: src/class-updraftplus.php:5232
|
2625 |
msgid "Your chosen replacement collation"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: src/class-updraftplus.php:5209
|
2629 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: src/class-updraftplus.php:5209
|
2633 |
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."
|
2634 |
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."
|
2635 |
msgstr[0] ""
|
2636 |
msgstr[1] ""
|
2637 |
|
2638 |
+
#: src/addons/migrator.php:568
|
2639 |
msgid "Database restoration options:"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: src/addons/migrator.php:411
|
2643 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
2644 |
msgstr ""
|
2645 |
|
2687 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: src/addons/migrator.php:978
|
2691 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
2692 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
2693 |
msgstr[0] ""
|
2694 |
msgstr[1] ""
|
2695 |
|
2696 |
+
#: src/restorer.php:2369
|
2697 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: src/class-updraftplus.php:5185
|
2701 |
msgid "Your chosen character set to use instead:"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: src/class-updraftplus.php:5175
|
2705 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: src/class-updraftplus.php:5175
|
2709 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
2710 |
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."
|
2711 |
msgstr[0] ""
|
2798 |
msgid "Account ID"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: src/class-updraftplus.php:5000
|
2802 |
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."
|
2803 |
msgstr ""
|
2804 |
|
2805 |
+
#: src/class-updraftplus.php:4998, src/class-updraftplus.php:5000
|
2806 |
msgid "the migrator add-on"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
+
#: src/class-updraftplus.php:4998
|
2810 |
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."
|
2811 |
msgstr ""
|
2812 |
|
2813 |
+
#: src/class-updraftplus.php:4996
|
2814 |
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."
|
2815 |
msgstr ""
|
2816 |
|
2817 |
+
#: src/class-updraftplus.php:4991
|
2818 |
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."
|
2819 |
msgstr ""
|
2820 |
|
2830 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: src/backup.php:514, src/backup.php:2761, src/class-updraftplus.php:2449,
|
2834 |
+
#: src/class-updraftplus.php:2516, src/includes/class-search-replace.php:291,
|
2835 |
+
#: src/includes/class-storage-methods-interface.php:381, src/restorer.php:611
|
2836 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: src/backup.php:508, src/backup.php:2752, src/class-updraftplus.php:2440,
|
2840 |
+
#: src/class-updraftplus.php:2509, src/includes/class-search-replace.php:284,
|
2841 |
+
#: src/includes/class-storage-methods-interface.php:372, src/restorer.php:599
|
2842 |
msgid "A PHP exception (%s) has occurred: %s"
|
2843 |
msgstr ""
|
2844 |
|
2888 |
msgid "Rackspace Storage Region"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: src/admin.php:5760
|
2892 |
msgid "Value"
|
2893 |
msgstr ""
|
2894 |
|
2904 |
msgid "Cloud Files"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: src/admin.php:5506
|
2908 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: src/admin.php:5465
|
2912 |
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."
|
2913 |
msgstr ""
|
2914 |
|
2925 |
msgid "Extra database"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: src/admin.php:4462
|
2929 |
msgid "Press here to download or browse"
|
2930 |
msgstr ""
|
2931 |
|
2965 |
msgid "Browse contents"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: src/restorer.php:2894
|
2969 |
msgid "Skipped tables:"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: src/class-updraftplus.php:5315
|
2973 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
2974 |
msgstr ""
|
2975 |
|
3407 |
msgid "Export / import settings"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: src/restorer.php:2430
|
3411 |
msgid "Processing table (%s)"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: src/restorer.php:2861
|
3415 |
msgid "Backup of: %s"
|
3416 |
msgstr ""
|
3417 |
|
3431 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: src/backup.php:2007
|
3435 |
msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
|
3436 |
msgstr ""
|
3437 |
|
3524 |
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"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: src/admin.php:2889
|
3528 |
msgid "To fix this problem go here."
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: src/admin.php:2889
|
3532 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
3533 |
msgstr ""
|
3534 |
|
3608 |
msgid "Public key was sent to:"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: src/backup.php:2975
|
3612 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
+
#: src/backup.php:2953
|
3616 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: src/addons/migrator.php:1424
|
3620 |
msgid "Create key"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: src/addons/migrator.php:1421, src/central/translations-updraftplus.php:54
|
3624 |
msgid "slower, strongest"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: src/addons/migrator.php:1420, src/central/translations-updraftplus.php:53
|
3628 |
msgid "recommended"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: src/addons/migrator.php:1420, src/central/translations-updraftplus.php:50
|
3632 |
msgid "%s bytes"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: src/addons/migrator.php:1419, src/central/translations-updraftplus.php:52
|
3636 |
msgid "faster (possibility for slow PHP installs)"
|
3637 |
msgstr ""
|
3638 |
|
3640 |
msgid "easy to break, fastest"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: src/addons/migrator.php:1419, src/addons/migrator.php:1421,
|
3644 |
#: src/central/translations-updraftplus.php:49
|
3645 |
msgid "%s bits"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: src/addons/migrator.php:1417, src/central/translations-updraftplus.php:48
|
3649 |
msgid "Encryption key size:"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: src/addons/migrator.php:1415
|
3653 |
msgid "Enter your chosen name"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: src/addons/migrator.php:1414
|
3657 |
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
|
3658 |
msgstr ""
|
3659 |
|
3678 |
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."
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: src/class-updraftplus.php:1984
|
3682 |
msgid "Size: %s MB"
|
3683 |
msgstr ""
|
3684 |
|
3686 |
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)."
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: src/class-updraftplus.php:5018, src/restorer.php:1710
|
3690 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
3691 |
msgstr ""
|
3692 |
|
3708 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: src/class-updraftplus.php:617, src/class-updraftplus.php:694
|
3712 |
msgid "The given file was not found, or could not be read."
|
3713 |
msgstr ""
|
3714 |
|
3792 |
msgid "UpdraftCentral Connection"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: src/class-updraftplus.php:3519, src/class-updraftplus.php:3611
|
3796 |
msgid "The backup was aborted by the user"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: src/admin.php:5501
|
3800 |
msgid "Your settings have been saved."
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: src/admin.php:4371
|
3804 |
msgid "Total backup size:"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: src/admin.php:3760
|
3808 |
msgid "stop"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: src/admin.php:964, src/admin.php:3547
|
3812 |
msgid "The backup has finished running"
|
3813 |
msgstr ""
|
3814 |
|
3862 |
msgid "Asia Pacific (Seoul)"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
+
#: src/restorer.php:2884
|
3866 |
msgid "Uploads URL:"
|
3867 |
msgstr ""
|
3868 |
|
3870 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
3871 |
msgstr ""
|
3872 |
|
3873 |
+
#: src/class-updraftplus.php:5073, src/restorer.php:2902
|
3874 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
#: src/class-updraftplus.php:5069
|
3878 |
msgid "Please read this link for important information on this process."
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: src/class-updraftplus.php:5069
|
3882 |
msgid "It will be imported as a new site."
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: src/admin.php:3178, src/templates/wp-admin/notices/autobackup-notice.php:16,
|
3886 |
#: src/templates/wp-admin/notices/autobackup-notice.php:18,
|
3887 |
#: src/templates/wp-admin/notices/horizontal-notice.php:48,
|
3888 |
#: src/templates/wp-admin/notices/horizontal-notice.php:50
|
3909 |
msgid "Which site to restore"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: src/addons/migrator.php:636, src/addons/migrator.php:637
|
3913 |
msgid "Error when creating new site at your chosen address:"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
#: src/addons/migrator.php:580
|
3917 |
msgid "Required information for restoring this backup was not given (%s)"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: src/addons/migrator.php:532
|
3921 |
msgid "Attribute imported content to user"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: src/addons/migrator.php:522, src/addons/migrator.php:524
|
3925 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: src/addons/migrator.php:510
|
3929 |
msgid "This feature is not compatible with %s"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: src/addons/migrator.php:508, src/addons/migrator.php:510
|
3933 |
msgid "Importing a single site into a multisite install"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: src/addons/migrator.php:500
|
3937 |
msgid "other content from wp-content"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: src/addons/migrator.php:497
|
3941 |
msgid "WordPress core"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: src/addons/migrator.php:497, src/addons/migrator.php:500,
|
3945 |
+
#: src/addons/migrator.php:503
|
3946 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
3947 |
msgstr ""
|
3948 |
|
3954 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: src/restorer.php:421
|
3958 |
msgid "Skipping: this archive was already restored."
|
3959 |
msgstr ""
|
3960 |
|
3982 |
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)."
|
3983 |
msgstr ""
|
3984 |
|
3985 |
+
#: src/admin.php:5371
|
3986 |
msgid "Send this backup to remote storage"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
+
#: src/admin.php:5364
|
3990 |
msgid "Check out UpdraftPlus Vault."
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: src/admin.php:5364
|
3994 |
msgid "Not got any remote storage?"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
+
#: src/admin.php:5364
|
3998 |
msgid "settings"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: src/admin.php:5364
|
4002 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
4003 |
msgstr ""
|
4004 |
|
4010 |
msgid "Include your database in the backup"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: src/admin.php:3174, src/admin.php:3176
|
4014 |
msgid "Continue restoration"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/admin.php:3166
|
4018 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
4019 |
msgstr ""
|
4020 |
|
4021 |
+
#: src/admin.php:3165
|
4022 |
msgid "Unfinished restoration"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: src/admin.php:3162
|
4026 |
msgid "%s minutes, %s seconds"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
+
#: src/admin.php:2992
|
4030 |
msgid "Backup Contents And Schedule"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: src/admin.php:3095
|
4034 |
msgid "Premium / Extensions"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: src/admin.php:4860, src/admin.php:4869
|
4038 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
4039 |
msgstr ""
|
4040 |
|
4051 |
msgid "Extensions"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: src/admin.php:725, src/admin.php:3094
|
4055 |
msgid "Advanced Tools"
|
4056 |
msgstr ""
|
4057 |
|
4171 |
msgid "Could not access container"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: src/class-updraftplus.php:3538
|
4175 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: src/backup.php:1812
|
4179 |
msgid "the options table was not found"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: src/backup.php:1810
|
4183 |
msgid "no options or sitemeta table was found"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: src/backup.php:1810, src/backup.php:1812
|
4187 |
msgid "The database backup appears to have failed"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
+
#: src/backup.php:1572
|
4191 |
msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
|
4192 |
msgstr ""
|
4193 |
|
4339 |
msgid "Add an additional retention rule..."
|
4340 |
msgstr ""
|
4341 |
|
4342 |
+
#: src/restorer.php:3825
|
4343 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
4344 |
msgstr ""
|
4345 |
|
4346 |
+
#: src/restorer.php:3825
|
4347 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
4348 |
msgstr ""
|
4349 |
|
4351 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
+
#: src/class-updraftplus.php:5150
|
4355 |
msgid "You must upgrade MySQL to be able to use this database."
|
4356 |
msgstr ""
|
4357 |
|
4358 |
+
#: src/class-updraftplus.php:5150
|
4359 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
4360 |
msgstr ""
|
4361 |
|
4362 |
+
#: src/admin.php:2874
|
4363 |
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."
|
4364 |
msgstr ""
|
4365 |
|
4425 |
msgstr ""
|
4426 |
|
4427 |
#: src/methods/updraftvault.php:529, src/methods/updraftvault.php:545,
|
4428 |
+
#: src/methods/updraftvault.php:589
|
4429 |
msgid "Current use:"
|
4430 |
msgstr ""
|
4431 |
|
4522 |
msgid "Delete failed:"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: src/backup.php:4169
|
4526 |
msgid "The zip engine returned the message: %s."
|
4527 |
msgstr ""
|
4528 |
|
4554 |
msgid "Existing keys"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
+
#: src/addons/migrator.php:1429
|
4558 |
msgid "Your new key:"
|
4559 |
msgstr ""
|
4560 |
|
4587 |
msgid "Backup data will be sent to:"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: src/addons/migrator.php:234
|
4591 |
msgid "Restore an existing backup set onto this site"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
+
#: src/addons/migrator.php:240
|
4595 |
msgid "This site has no backups to restore from yet."
|
4596 |
msgstr ""
|
4597 |
|
4603 |
msgid "This storage method does not allow downloading"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: src/admin.php:4513
|
4607 |
msgid "(backup set imported from remote location)"
|
4608 |
msgstr ""
|
4609 |
|
4646 |
msgid "Creating..."
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: src/addons/migrator.php:1410
|
4650 |
msgid "Receive a backup from a remote site"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: src/addons/migrator.php:1402
|
4654 |
msgid "Paste key here"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
+
#: src/addons/migrator.php:1398
|
4658 |
msgid "How do I get a site's key?"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
+
#: src/addons/migrator.php:1398
|
4662 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
4663 |
msgstr ""
|
4664 |
|
4665 |
+
#: src/addons/migrator.php:1390
|
4666 |
msgid "Send a backup to another site"
|
4667 |
msgstr ""
|
4668 |
|
4729 |
msgid "FTP server"
|
4730 |
msgstr ""
|
4731 |
|
4732 |
+
#: src/addons/migrator.php:198
|
4733 |
msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
|
4734 |
msgstr ""
|
4735 |
|
4736 |
+
#: src/addons/migrator.php:198
|
4737 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
4738 |
msgstr ""
|
4739 |
|
4741 |
msgid "Resetting..."
|
4742 |
msgstr ""
|
4743 |
|
4744 |
+
#: src/addons/migrator.php:1402, src/admin.php:920
|
4745 |
msgid "Add site"
|
4746 |
msgstr ""
|
4747 |
|
4753 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: src/restorer.php:3827
|
4757 |
msgid "To use this backup, your database server needs to support the %s character set."
|
4758 |
msgstr ""
|
4759 |
|
4769 |
msgid "Go here to re-enter your password."
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: src/addons/migrator.php:275
|
4773 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
4774 |
msgstr ""
|
4775 |
|
5028 |
msgid "(at same time as files backup)"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
+
#: src/admin.php:4049
|
5032 |
msgid "No backup has been completed"
|
5033 |
msgstr ""
|
5034 |
|
5102 |
msgid "Check this box to have a basic report sent to"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
+
#: src/admin.php:4068, src/admin.php:4073
|
5106 |
msgctxt "i.e. Non-automatic"
|
5107 |
msgid "Manual"
|
5108 |
msgstr ""
|
5109 |
|
5110 |
+
#: src/restorer.php:3780
|
5111 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
5112 |
msgid "An error (%s) occurred:"
|
5113 |
msgstr ""
|
5120 |
msgid "Any other file/directory on your server that you wish to backup"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: src/admin.php:2891
|
5124 |
msgid "For even more features and personal support, check out "
|
5125 |
msgstr ""
|
5126 |
|
5214 |
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."
|
5215 |
msgstr ""
|
5216 |
|
5217 |
+
#: src/admin.php:3547, src/admin.php:4610
|
5218 |
msgid "View Log"
|
5219 |
msgstr ""
|
5220 |
|
5233 |
msgid "and retain this many scheduled backups"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
+
#: src/admin.php:4019
|
5237 |
msgid "incremental backup; base backup: %s"
|
5238 |
msgstr ""
|
5239 |
|
5251 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
5252 |
msgstr ""
|
5253 |
|
5254 |
+
#: src/class-updraftplus.php:5058
|
5255 |
msgid "Backup label:"
|
5256 |
msgstr ""
|
5257 |
|
5259 |
msgid "Error: unexpected file read fail"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: src/backup.php:4175
|
5263 |
msgid "check your log for more details."
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: src/backup.php:4173
|
5267 |
msgid "your web hosting account appears to be full; please see: %s"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: src/backup.php:4171
|
5271 |
msgid "A zip error occurred"
|
5272 |
msgstr ""
|
5273 |
|
5291 |
msgid "You need to supply both an email address and a password"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: src/class-updraftplus.php:5077
|
5295 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: src/class-updraftplus.php:5077
|
5299 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: src/addons/migrator.php:1291
|
5303 |
msgid "already done"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: src/addons/migrator.php:1251
|
5307 |
msgid "skipped (not in list)"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#: src/addons/migrator.php:1251, src/addons/migrator.php:1291,
|
5311 |
#: src/includes/class-search-replace.php:91
|
5312 |
msgid "Search and replacing table:"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
+
#: src/addons/migrator.php:392
|
5316 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
5317 |
msgstr ""
|
5318 |
|
5319 |
+
#: src/addons/migrator.php:392
|
5320 |
msgid "These tables only"
|
5321 |
msgstr ""
|
5322 |
|
5323 |
+
#: src/addons/migrator.php:391
|
5324 |
msgid "Rows per batch"
|
5325 |
msgstr ""
|
5326 |
|
5332 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
5333 |
msgstr ""
|
5334 |
|
5335 |
+
#: src/class-updraftplus.php:5048, src/class-updraftplus.php:5050
|
5336 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
5337 |
msgstr ""
|
5338 |
|
5339 |
+
#: src/class-updraftplus.php:5048
|
5340 |
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."
|
5341 |
msgstr ""
|
5342 |
|
5343 |
+
#: src/class-updraftplus.php:5048
|
5344 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
+
#: src/class-updraftplus.php:5048, src/class-updraftplus.php:5050
|
5348 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
5349 |
msgstr ""
|
5350 |
|
5381 |
msgid "Start backup"
|
5382 |
msgstr ""
|
5383 |
|
5384 |
+
#: src/class-updraftplus.php:5018, src/restorer.php:1710
|
5385 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
5386 |
msgstr ""
|
5387 |
|
5388 |
+
#: src/admin.php:3917
|
5389 |
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."
|
5390 |
msgstr ""
|
5391 |
|
5417 |
msgid "Memory limit"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
+
#: src/includes/class-filesystem-functions.php:302, src/restorer.php:2627
|
5421 |
msgid "restoration"
|
5422 |
msgstr ""
|
5423 |
|
5424 |
+
#: src/class-updraftplus.php:3606
|
5425 |
msgid "Incremental"
|
5426 |
msgstr ""
|
5427 |
|
5428 |
+
#: src/class-updraftplus.php:3606
|
5429 |
msgid "Full backup"
|
5430 |
msgstr ""
|
5431 |
|
5443 |
|
5444 |
#: src/addons/incremental.php:340, src/addons/incremental.php:341,
|
5445 |
#: src/addons/incremental.php:342, src/addons/incremental.php:343,
|
5446 |
+
#: src/admin.php:4075, src/admin.php:4076, src/admin.php:4077,
|
5447 |
+
#: src/admin.php:4078, src/updraftplus.php:101, src/updraftplus.php:102,
|
5448 |
#: src/updraftplus.php:103
|
5449 |
msgid "Every %s hours"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
+
#: src/addons/migrator.php:937, src/addons/migrator.php:939,
|
5453 |
+
#: src/restorer.php:4146, src/restorer.php:4148
|
5454 |
msgid "search and replace"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
+
#: src/addons/migrator.php:394
|
5458 |
msgid "Go"
|
5459 |
msgstr ""
|
5460 |
|
5461 |
+
#: src/addons/migrator.php:383
|
5462 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
5463 |
msgstr ""
|
5464 |
|
5465 |
+
#: src/addons/migrator.php:382
|
5466 |
msgid "This can easily destroy your site; so, use it with care!"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
+
#: src/addons/migrator.php:337, src/addons/migrator.php:390
|
5470 |
msgid "Replace with"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
+
#: src/addons/migrator.php:336, src/addons/migrator.php:389
|
5474 |
msgid "Search for"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
+
#: src/addons/migrator.php:335, src/addons/migrator.php:381,
|
5478 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
5479 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
5480 |
msgid "Search / replace database"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: src/addons/migrator.php:341
|
5484 |
msgid "search term"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: src/restorer.php:3839
|
5488 |
msgid "Too many database errors have occurred - aborting"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: src/class-updraftplus.php:3674
|
5492 |
msgid "read more at %s"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: src/class-updraftplus.php:3674
|
5496 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
5497 |
msgstr ""
|
5498 |
|
5508 |
msgid "Database Options"
|
5509 |
msgstr ""
|
5510 |
|
|
|
|
|
|
|
|
|
5511 |
#: src/templates/wp-admin/advanced/site-info.php:88
|
5512 |
msgid "%s (%s used)"
|
5513 |
msgstr ""
|
5516 |
msgid "Free disk space in account:"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: src/admin.php:5472, src/templates/wp-admin/settings/take-backup.php:52
|
5520 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
5521 |
msgstr ""
|
5522 |
|
5600 |
msgid "user"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: src/class-updraftplus.php:1981
|
5604 |
msgid "External database (%s)"
|
5605 |
msgstr ""
|
5606 |
|
5618 |
msgid "However, subsequent access attempts failed:"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
+
#: src/addons/wp-cli.php:434, src/admin.php:4396
|
5622 |
msgid "External database"
|
5623 |
msgstr ""
|
5624 |
|
5650 |
msgid "use UpdraftPlus Premium"
|
5651 |
msgstr ""
|
5652 |
|
5653 |
+
#: src/class-updraftplus.php:4888
|
5654 |
msgid "Decryption failed. The database file is encrypted."
|
5655 |
msgstr ""
|
5656 |
|
5658 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
5659 |
msgstr ""
|
5660 |
|
5661 |
+
#: src/restorer.php:3033, src/restorer.php:3737, src/restorer.php:3810,
|
5662 |
+
#: src/restorer.php:3827
|
5663 |
msgid "An error occurred on the first %s command - aborting run"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: src/addons/moredatabase.php:136, src/backup.php:1509
|
5667 |
msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
|
5668 |
msgstr ""
|
5669 |
|
5670 |
+
#: src/backup.php:1509
|
5671 |
msgid "database connection attempt failed."
|
5672 |
msgstr ""
|
5673 |
|
5674 |
+
#: src/addons/migrator.php:1182
|
5675 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
5676 |
msgstr ""
|
5677 |
|
5705 |
msgid "Tenant"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: src/admin.php:1044, src/admin.php:5913, src/methods/openstack2.php:144,
|
5709 |
+
#: src/restorer.php:289, src/restorer.php:291,
|
5710 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
5711 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
5712 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:14
|
5839 |
msgid "Fetch"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
+
#: src/addons/migrator.php:508,
|
5843 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
|
5844 |
#: src/templates/wp-admin/settings/form-contents.php:183,
|
5845 |
#: src/templates/wp-admin/settings/tab-backups.php:74
|
5846 |
msgid "This feature requires %s version %s or later"
|
5847 |
msgstr ""
|
5848 |
|
5849 |
+
#: src/restorer.php:755
|
5850 |
msgid "Failed to unpack the archive"
|
5851 |
msgstr ""
|
5852 |
|
5853 |
+
#: src/class-updraftplus.php:1573, src/methods/cloudfiles.php:428
|
5854 |
msgid "Error - failed to download the file"
|
5855 |
msgstr ""
|
5856 |
|
5875 |
msgid "password/key"
|
5876 |
msgstr ""
|
5877 |
|
5878 |
+
#: src/addons/migrator.php:1415, src/addons/sftp.php:504, src/admin.php:926,
|
5879 |
+
#: src/admin.php:5760, src/templates/wp-admin/settings/temporary-clone.php:63
|
5880 |
msgid "Key"
|
5881 |
msgstr ""
|
5882 |
|
5892 |
msgid "SCP/SFTP password/key"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: src/addons/wp-cli.php:445, src/admin.php:4440
|
5896 |
msgid "Files backup (created by %s)"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: src/addons/wp-cli.php:445, src/admin.php:4440
|
5900 |
msgid "Files and database WordPress backup (created by %s)"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: src/addons/importer.php:276, src/admin.php:4434,
|
5904 |
#: src/includes/class-backup-history.php:505
|
5905 |
msgid "Backup created by: %s."
|
5906 |
msgstr ""
|
5907 |
|
5908 |
+
#: src/addons/wp-cli.php:428, src/admin.php:4394
|
5909 |
msgid "Database (created by %s)"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
+
#: src/addons/wp-cli.php:426, src/admin.php:4388, src/admin.php:4436
|
5913 |
msgid "unknown source"
|
5914 |
msgstr ""
|
5915 |
|
5949 |
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))."
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: src/admin.php:4437, src/includes/class-wpadmin-commands.php:159,
|
5953 |
+
#: src/restorer.php:2596
|
5954 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
5955 |
msgstr ""
|
5956 |
|
5957 |
+
#: src/restorer.php:1522, src/restorer.php:1570
|
5958 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
5959 |
msgstr ""
|
5960 |
|
5961 |
+
#: src/restorer.php:1416
|
5962 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
5963 |
msgstr ""
|
5964 |
|
6010 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
6011 |
msgstr ""
|
6012 |
|
6013 |
+
#: src/addons/morefiles.php:357, src/admin.php:4195
|
6014 |
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."
|
6015 |
msgstr ""
|
6016 |
|
6017 |
#: src/includes/class-filesystem-functions.php:302, src/methods/ftp.php:344,
|
6018 |
+
#: src/restorer.php:2627
|
6019 |
msgid "Your hosting company must enable these functions before %s can work."
|
6020 |
msgstr ""
|
6021 |
|
6035 |
msgid "regular non-encrypted FTP"
|
6036 |
msgstr ""
|
6037 |
|
6038 |
+
#: src/restorer.php:2868
|
6039 |
msgid "Backup created by:"
|
6040 |
msgstr ""
|
6041 |
|
6106 |
msgid "Constants"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
+
#: src/backup.php:1883
|
6110 |
msgid "Failed to open database file for reading:"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: src/backup.php:1561
|
6114 |
msgid "No database tables found"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
+
#: src/backup.php:1559
|
6118 |
msgid "please wait for the rescheduled attempt"
|
6119 |
msgstr ""
|
6120 |
|
6131 |
msgid "Errors occurred:"
|
6132 |
msgstr ""
|
6133 |
|
6134 |
+
#: src/addons/wp-cli.php:752, src/admin.php:4991
|
6135 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
6136 |
msgstr ""
|
6137 |
|
6151 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
6152 |
msgstr ""
|
6153 |
|
6154 |
+
#: src/restorer.php:1408
|
6155 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
6156 |
msgstr ""
|
6157 |
|
6158 |
+
#: src/admin.php:1300, src/class-updraftplus.php:965
|
6159 |
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)"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
+
#: src/addons/migrator.php:308
|
6163 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
6164 |
msgstr ""
|
6165 |
|
6172 |
msgid "Messages:"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
+
#: src/restorer.php:3614
|
6176 |
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"
|
6177 |
msgstr ""
|
6178 |
|
6179 |
+
#: src/restorer.php:1151
|
6180 |
msgid "The directory does not exist"
|
6181 |
msgstr ""
|
6182 |
|
6346 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
6347 |
msgstr ""
|
6348 |
|
6349 |
+
#: src/admin.php:872, src/restorer.php:285
|
6350 |
msgid "Error data:"
|
6351 |
msgstr ""
|
6352 |
|
6353 |
+
#: src/admin.php:5084
|
6354 |
msgid "Backup does not exist in the backup history"
|
6355 |
msgstr ""
|
6356 |
|
6357 |
+
#: src/admin.php:3479
|
6358 |
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."
|
6359 |
msgstr ""
|
6360 |
|
6361 |
+
#: src/restorer.php:3002
|
6362 |
msgid "Split line to avoid exceeding maximum packet size"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
+
#: src/restorer.php:2791
|
6366 |
msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
|
6367 |
msgstr ""
|
6368 |
|
6369 |
+
#: src/restorer.php:752
|
6370 |
msgid "Could not move the files into place. Check your file permissions."
|
6371 |
msgstr ""
|
6372 |
|
6373 |
+
#: src/restorer.php:751
|
6374 |
msgid "Could not move new files into place. Check your wp-content/upgrade folder."
|
6375 |
msgstr ""
|
6376 |
|
6377 |
+
#: src/restorer.php:749
|
6378 |
msgid "Could not move old files out of the way."
|
6379 |
msgstr ""
|
6380 |
|
6381 |
+
#: src/restorer.php:745
|
6382 |
msgid "Moving old data out of the way..."
|
6383 |
msgstr ""
|
6384 |
|
6390 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
6391 |
msgstr ""
|
6392 |
|
6393 |
+
#: src/class-updraftplus.php:1989, src/class-updraftplus.php:1994
|
6394 |
msgid "%s checksum: %s"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
+
#: src/class-updraftplus.php:1921, src/class-updraftplus.php:1923
|
6398 |
msgid "files: %s"
|
6399 |
msgstr ""
|
6400 |
|
6406 |
msgid "Debugging information"
|
6407 |
msgstr ""
|
6408 |
|
6409 |
+
#: src/addons/reporting.php:238, src/admin.php:4354
|
6410 |
msgid "Uploaded to:"
|
6411 |
msgstr ""
|
6412 |
|
6451 |
msgid "%s authentication"
|
6452 |
msgstr ""
|
6453 |
|
6454 |
+
#: src/addons/onedrive.php:891, src/class-updraftplus.php:565,
|
6455 |
#: src/methods/dropbox.php:267, src/methods/dropbox.php:757,
|
6456 |
#: src/methods/dropbox.php:814, src/methods/dropbox.php:828,
|
6457 |
#: src/methods/dropbox.php:848, src/methods/dropbox.php:1005
|
6474 |
msgid "Your site's admin email address (%s) will be used."
|
6475 |
msgstr ""
|
6476 |
|
6477 |
+
#: src/admin.php:913, src/admin.php:3215, src/methods/updraftvault.php:356,
|
6478 |
#: src/methods/updraftvault.php:411,
|
6479 |
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
6480 |
msgid "Connect"
|
6481 |
msgstr ""
|
6482 |
|
6483 |
+
#: src/class-updraftplus.php:4977
|
6484 |
msgid "(version: %s)"
|
6485 |
msgstr ""
|
6486 |
|
6488 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
6489 |
msgstr ""
|
6490 |
|
6491 |
+
#: src/addons/reporting.php:197, src/class-updraftplus.php:3709
|
6492 |
msgid "Latest status:"
|
6493 |
msgstr ""
|
6494 |
|
6495 |
+
#: src/class-updraftplus.php:3708
|
6496 |
msgid "Backup contains:"
|
6497 |
msgstr ""
|
6498 |
|
6499 |
+
#: src/class-updraftplus.php:3665
|
6500 |
msgid "Backed up: %s"
|
6501 |
msgstr ""
|
6502 |
|
6503 |
+
#: src/addons/reporting.php:280, src/class-updraftplus.php:3659,
|
6504 |
+
#: src/class-updraftplus.php:3834
|
6505 |
msgid "The log file has been attached to this email."
|
6506 |
msgstr ""
|
6507 |
|
6508 |
+
#: src/class-updraftplus.php:3623
|
6509 |
msgid "Unknown/unexpected error - please raise a support request"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: src/class-updraftplus.php:3618
|
6513 |
msgid "Database only (files were not part of this particular schedule)"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
+
#: src/class-updraftplus.php:3618
|
6517 |
msgid "Database (files backup has not completed)"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
+
#: src/class-updraftplus.php:3615
|
6521 |
msgid "Files only (database was not part of this particular schedule)"
|
6522 |
msgstr ""
|
6523 |
|
6524 |
+
#: src/class-updraftplus.php:3615
|
6525 |
msgid "Files (database backup has not completed)"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
+
#: src/admin.php:384, src/class-updraftplus.php:3613
|
6529 |
msgid "Files and database"
|
6530 |
msgstr ""
|
6531 |
|
6613 |
msgid "Reporting"
|
6614 |
msgstr ""
|
6615 |
|
6616 |
+
#: src/admin.php:5757
|
6617 |
msgid "Options (raw)"
|
6618 |
msgstr ""
|
6619 |
|
6621 |
msgid "Send a report only when there are warnings/errors"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
+
#: src/restorer.php:2879
|
6625 |
msgid "Content URL:"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
+
#: src/restorer.php:749
|
6629 |
msgid "You should check the file ownerships and permissions in your WordPress installation"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
+
#: src/backup.php:4162, src/class-updraftplus.php:978
|
6633 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
+
#: src/class-updraftplus.php:962
|
6637 |
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)"
|
6638 |
msgstr ""
|
6639 |
|
6709 |
msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: src/admin.php:3213
|
6713 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: src/admin.php:3289
|
6717 |
msgid "Forgotten your details?"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: src/admin.php:3202
|
6721 |
msgid "Not yet got an account (it's free)? Go get one!"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: src/admin.php:3268
|
6725 |
msgid "Connect with your UpdraftPlus.Com account"
|
6726 |
msgstr ""
|
6727 |
|
6784 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
6785 |
msgstr ""
|
6786 |
|
6787 |
+
#: src/restorer.php:2873
|
6788 |
msgid "Site home:"
|
6789 |
msgstr ""
|
6790 |
|
6809 |
msgid "You can send a backup to more than one destination with Premium."
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: src/admin.php:3760
|
6813 |
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."
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: src/admin.php:3624
|
6817 |
msgid "(%s%%, file %s of %s)"
|
6818 |
msgstr ""
|
6819 |
|
6854 |
msgid "%s settings test result:"
|
6855 |
msgstr ""
|
6856 |
|
6857 |
+
#: src/admin.php:4486, src/admin.php:4488
|
6858 |
msgid "(Not finished)"
|
6859 |
msgstr ""
|
6860 |
|
6861 |
+
#: src/admin.php:4488
|
6862 |
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."
|
6863 |
msgstr ""
|
6864 |
|
6870 |
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)."
|
6871 |
msgstr ""
|
6872 |
|
6873 |
+
#: src/admin.php:3725
|
6874 |
msgid "Job ID: %s"
|
6875 |
msgstr ""
|
6876 |
|
6877 |
+
#: src/admin.php:3705
|
6878 |
msgid "last activity: %ss ago"
|
6879 |
msgstr ""
|
6880 |
|
6881 |
+
#: src/admin.php:3704
|
6882 |
msgid "next resumption: %d (after %ss)"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
+
#: src/admin.php:3687, src/central/translations-updraftplus.php:28,
|
6886 |
#: src/methods/updraftvault.php:459, src/methods/updraftvault.php:506,
|
6887 |
#: src/methods/updraftvault.php:594
|
6888 |
msgid "Unknown"
|
6889 |
msgstr ""
|
6890 |
|
6891 |
+
#: src/admin.php:3638
|
6892 |
msgid "Backup finished"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
+
#: src/admin.php:3633
|
6896 |
msgid "Waiting until scheduled time to retry because of errors"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
+
#: src/admin.php:3629
|
6900 |
msgid "Pruning old backup sets"
|
6901 |
msgstr ""
|
6902 |
|
6903 |
+
#: src/admin.php:3616
|
6904 |
msgid "Uploading files to remote storage"
|
6905 |
msgstr ""
|
6906 |
|
6907 |
+
#: src/admin.php:3685
|
6908 |
msgid "Encrypted database"
|
6909 |
msgstr ""
|
6910 |
|
6911 |
+
#: src/admin.php:3677
|
6912 |
msgid "Encrypting database"
|
6913 |
msgstr ""
|
6914 |
|
6915 |
+
#: src/admin.php:3651
|
6916 |
msgid "Created database backup"
|
6917 |
msgstr ""
|
6918 |
|
6919 |
+
#: src/admin.php:3664
|
6920 |
msgid "table: %s"
|
6921 |
msgstr ""
|
6922 |
|
6923 |
+
#: src/admin.php:3662
|
6924 |
msgid "Creating database backup"
|
6925 |
msgstr ""
|
6926 |
|
6927 |
+
#: src/admin.php:3607
|
6928 |
msgid "Created file backup zips"
|
6929 |
msgstr ""
|
6930 |
|
6931 |
+
#: src/admin.php:3594
|
6932 |
msgid "Creating file backup zips"
|
6933 |
msgstr ""
|
6934 |
|
6935 |
+
#: src/admin.php:3589
|
6936 |
msgid "Backup begun"
|
6937 |
msgstr ""
|
6938 |
|
6940 |
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."
|
6941 |
msgstr ""
|
6942 |
|
6943 |
+
#: src/restorer.php:1392
|
6944 |
msgid "file"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
+
#: src/addons/onedrive.php:1243, src/restorer.php:1384
|
6948 |
msgid "folder"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: src/restorer.php:1384, src/restorer.php:1392
|
6952 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
+
#: src/class-updraftplus.php:3553
|
6956 |
msgid "The backup has not finished; a resumption is scheduled"
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: src/class-updraftplus.php:2283
|
6960 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
6961 |
msgstr ""
|
6962 |
|
6965 |
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)."
|
6966 |
msgstr ""
|
6967 |
|
6968 |
+
#: src/admin.php:2931
|
6969 |
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)."
|
6970 |
msgstr ""
|
6971 |
|
7045 |
msgid "Support"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
+
#: src/class-updraftplus.php:5320
|
7049 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
7050 |
msgstr ""
|
7051 |
|
7052 |
+
#: src/class-updraftplus.php:5312
|
7053 |
msgid "This database backup is missing core WordPress tables: %s"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
+
#: src/class-updraftplus.php:5041
|
7057 |
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."
|
7058 |
msgstr ""
|
7059 |
|
7060 |
+
#: src/class-updraftplus.php:5040, src/class-updraftplus.php:5047
|
7061 |
msgid "%s version: %s"
|
7062 |
msgstr ""
|
7063 |
|
7064 |
+
#: src/class-updraftplus.php:4905
|
7065 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
7066 |
msgstr ""
|
7067 |
|
7069 |
msgid "Be safe with an automatic backup"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: src/admin.php:2871
|
7073 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7074 |
msgstr ""
|
7075 |
|
7121 |
msgid "Examples of S3-compatible storage providers:"
|
7122 |
msgstr ""
|
7123 |
|
7124 |
+
#: src/admin.php:4464
|
7125 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
7126 |
msgstr ""
|
7127 |
|
7183 |
msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
|
7184 |
msgstr ""
|
7185 |
|
7186 |
+
#: src/restorer.php:746
|
7187 |
msgid "Moving unpacked backup into place..."
|
7188 |
msgstr ""
|
7189 |
|
7190 |
+
#: src/backup.php:3805, src/backup.php:4115
|
7191 |
msgid "Failed to open the zip file (%s) - %s"
|
7192 |
msgstr ""
|
7193 |
|
7212 |
msgid "File is not locally present - needs retrieving from remote storage"
|
7213 |
msgstr ""
|
7214 |
|
7215 |
+
#: src/restorer.php:418
|
7216 |
msgid "Looking for %s archive: file name: %s"
|
7217 |
msgstr ""
|
7218 |
|
7219 |
+
#: src/restorer.php:534
|
7220 |
msgid "Final checks"
|
7221 |
msgstr ""
|
7222 |
|
7228 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
+
#: src/admin.php:4181
|
7232 |
msgid "Your wp-content directory server path: %s"
|
7233 |
msgstr ""
|
7234 |
|
7249 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
7250 |
msgstr ""
|
7251 |
|
7252 |
+
#: src/class-updraftplus.php:4919
|
7253 |
msgid "Failed to open database file."
|
7254 |
msgstr ""
|
7255 |
|
7256 |
+
#: src/admin.php:5722
|
7257 |
msgid "Known backups (raw)"
|
7258 |
msgstr ""
|
7259 |
|
7260 |
+
#: src/restorer.php:1663
|
7261 |
msgid "Files found:"
|
7262 |
msgstr ""
|
7263 |
|
7265 |
msgid "Restoring table: %s"
|
7266 |
msgstr ""
|
7267 |
|
7268 |
+
#: src/restorer.php:2355
|
7269 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
7270 |
msgstr ""
|
7271 |
|
7272 |
+
#: src/restorer.php:438
|
7273 |
msgid "file is size:"
|
7274 |
msgstr ""
|
7275 |
|
7276 |
+
#: src/addons/googlecloud.php:1067, src/addons/migrator.php:497,
|
7277 |
+
#: src/addons/migrator.php:500, src/addons/migrator.php:503,
|
7278 |
+
#: src/admin.php:1305, src/admin.php:2876, src/admin.php:4966,
|
7279 |
+
#: src/backup.php:4169, src/class-updraftplus.php:5175,
|
7280 |
+
#: src/class-updraftplus.php:5175, src/updraftplus.php:158
|
7281 |
msgid "Go here for more information."
|
7282 |
msgstr ""
|
7283 |
|
7284 |
+
#: src/admin.php:4965
|
7285 |
msgid "Warning: If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7286 |
msgstr ""
|
7287 |
|
7289 |
msgid "Some files are still downloading or being processed - please wait."
|
7290 |
msgstr ""
|
7291 |
|
7292 |
+
#: src/class-updraftplus.php:5010, src/class-updraftplus.php:5031
|
7293 |
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."
|
7294 |
msgstr ""
|
7295 |
|
7331 |
msgid "%s error - failed to upload file"
|
7332 |
msgstr ""
|
7333 |
|
7334 |
+
#: src/class-updraftplus.php:1462
|
7335 |
msgid "%s error - failed to re-assemble chunks"
|
7336 |
msgstr ""
|
7337 |
|
7342 |
msgid "%s authentication failed"
|
7343 |
msgstr ""
|
7344 |
|
7345 |
+
#: src/addons/googlecloud.php:475, src/addons/migrator.php:592,
|
7346 |
#: src/admin.php:2605, src/admin.php:2626, src/admin.php:2634,
|
7347 |
+
#: src/class-updraftplus.php:1165, src/class-updraftplus.php:1171,
|
7348 |
+
#: src/class-updraftplus.php:4886, src/class-updraftplus.php:4888,
|
7349 |
+
#: src/class-updraftplus.php:5066, src/class-updraftplus.php:5073,
|
7350 |
+
#: src/class-updraftplus.php:5150, src/methods/googledrive.php:534,
|
7351 |
#: src/methods/s3.php:383
|
7352 |
msgid "Error: %s"
|
7353 |
msgstr ""
|
7354 |
|
7355 |
+
#: src/admin.php:4099
|
7356 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
7357 |
msgstr ""
|
7358 |
|
7359 |
+
#: src/admin.php:4097
|
7360 |
msgid "Backup directory specified does <b>not</b> exist."
|
7361 |
msgstr ""
|
7362 |
|
7363 |
+
#: src/admin.php:3739, src/admin.php:4031
|
7364 |
msgid "Warning: %s"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
+
#: src/backup.php:3834
|
7368 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
7369 |
msgstr ""
|
7370 |
|
7371 |
+
#: src/backup.php:3036
|
7372 |
msgid "%s: unreadable file - could not be backed up"
|
7373 |
msgstr ""
|
7374 |
|
7375 |
+
#: src/backup.php:2007
|
7376 |
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."
|
7377 |
msgstr ""
|
7378 |
|
7379 |
+
#: src/backup.php:1961
|
7380 |
msgid "An error occurred whilst closing the final database file"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
+
#: src/class-updraftplus.php:3650
|
7384 |
msgid "Warnings encountered:"
|
7385 |
msgstr ""
|
7386 |
|
7387 |
+
#: src/class-updraftplus.php:3532
|
7388 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
7389 |
msgstr ""
|
7390 |
|
7391 |
+
#: src/class-updraftplus.php:991
|
7392 |
msgid "Your free disk space is very low - only %s Mb remain"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
+
#: src/addons/migrator.php:600
|
7396 |
msgid "New site:"
|
7397 |
msgstr ""
|
7398 |
|
7399 |
+
#: src/addons/migrator.php:577
|
7400 |
msgid "Migrated site (from UpdraftPlus)"
|
7401 |
msgstr ""
|
7402 |
|
7403 |
+
#: src/addons/migrator.php:517
|
7404 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
+
#: src/addons/migrator.php:516
|
7408 |
msgid "Information needed to continue:"
|
7409 |
msgstr ""
|
7410 |
|
7411 |
+
#: src/addons/migrator.php:459
|
7412 |
msgid "Network activating theme:"
|
7413 |
msgstr ""
|
7414 |
|
7415 |
+
#: src/addons/migrator.php:449
|
7416 |
msgid "Processed plugin:"
|
7417 |
msgstr ""
|
7418 |
|
7436 |
msgid "The error reported by %s was:"
|
7437 |
msgstr ""
|
7438 |
|
7439 |
+
#: src/restorer.php:2150
|
7440 |
msgid "Please supply the requested information, and then continue."
|
7441 |
msgstr ""
|
7442 |
|
7443 |
+
#: src/class-updraftplus.php:5084, src/restorer.php:2908
|
7444 |
msgid "Site information:"
|
7445 |
msgstr ""
|
7446 |
|
7447 |
+
#: src/restorer.php:2738
|
7448 |
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."
|
7449 |
msgstr ""
|
7450 |
|
7451 |
+
#: src/admin.php:1044, src/admin.php:2871, src/class-updraftplus.php:5077,
|
7452 |
+
#: src/restorer.php:3614
|
7453 |
msgid "Warning:"
|
7454 |
msgstr ""
|
7455 |
|
7456 |
+
#: src/class-updraftplus.php:5066, src/class-updraftplus.php:5069,
|
7457 |
+
#: src/restorer.php:754
|
7458 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
7459 |
msgstr ""
|
7460 |
|
7461 |
+
#: src/restorer.php:407
|
7462 |
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."
|
7463 |
msgstr ""
|
7464 |
|
7465 |
+
#: src/addons/azure.php:604, src/admin.php:4273,
|
7466 |
#: src/methods/updraftvault.php:343
|
7467 |
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."
|
7468 |
msgstr ""
|
7506 |
msgid "Also delete from remote storage"
|
7507 |
msgstr ""
|
7508 |
|
7509 |
+
#: src/admin.php:3409
|
7510 |
msgid "Latest UpdraftPlus.com news:"
|
7511 |
msgstr ""
|
7512 |
|
7523 |
msgid "Backup set not found"
|
7524 |
msgstr ""
|
7525 |
|
7526 |
+
#: src/backup.php:237
|
7527 |
msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
|
7528 |
msgstr ""
|
7529 |
|
7558 |
msgid "Notice"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
+
#: src/class-updraftplus.php:3632
|
7562 |
msgid "Errors encountered:"
|
7563 |
msgstr ""
|
7564 |
|
7590 |
msgid "rows: %d"
|
7591 |
msgstr ""
|
7592 |
|
7593 |
+
#: src/addons/migrator.php:1342
|
7594 |
msgid "Time taken (seconds):"
|
7595 |
msgstr ""
|
7596 |
|
7597 |
+
#: src/addons/migrator.php:1341, src/admin.php:870
|
7598 |
msgid "Errors:"
|
7599 |
msgstr ""
|
7600 |
|
7601 |
+
#: src/addons/migrator.php:1340
|
7602 |
msgid "SQL update commands run:"
|
7603 |
msgstr ""
|
7604 |
|
7605 |
+
#: src/addons/migrator.php:1339
|
7606 |
msgid "Changes made:"
|
7607 |
msgstr ""
|
7608 |
|
7609 |
+
#: src/addons/migrator.php:1338
|
7610 |
msgid "Rows examined:"
|
7611 |
msgstr ""
|
7612 |
|
7613 |
+
#: src/addons/migrator.php:1337
|
7614 |
msgid "Tables examined:"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
+
#: src/addons/migrator.php:1229
|
7618 |
msgid "Could not get list of tables"
|
7619 |
msgstr ""
|
7620 |
|
7621 |
+
#: src/addons/migrator.php:1174
|
7622 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
7623 |
msgstr ""
|
7624 |
|
7625 |
+
#: src/addons/migrator.php:1163
|
7626 |
msgid "Nothing to do: the site URL is already: %s"
|
7627 |
msgstr ""
|
7628 |
|
7629 |
+
#: src/addons/migrator.php:1126, src/addons/migrator.php:1130,
|
7630 |
+
#: src/addons/migrator.php:1134, src/addons/migrator.php:1139,
|
7631 |
+
#: src/addons/migrator.php:1143, src/addons/migrator.php:1148
|
7632 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
7633 |
msgstr ""
|
7634 |
|
7635 |
+
#: src/addons/migrator.php:1084
|
7636 |
msgid "Database: search and replace site URL"
|
7637 |
msgstr ""
|
7638 |
|
7639 |
+
#: src/addons/migrator.php:939, src/addons/migrator.php:1323,
|
7640 |
+
#: src/restorer.php:4148
|
7641 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
7642 |
msgstr ""
|
7643 |
|
7644 |
+
#: src/addons/migrator.php:937, src/addons/migrator.php:1321,
|
7645 |
+
#: src/restorer.php:4146
|
7646 |
msgid "Failed: the %s operation was not able to start."
|
7647 |
msgstr ""
|
7648 |
|
7649 |
+
#: src/addons/migrator.php:569
|
7650 |
msgid "Search and replace site location in the database (migrate)"
|
7651 |
msgstr ""
|
7652 |
|
7653 |
+
#: src/addons/migrator.php:569
|
7654 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
7655 |
msgstr ""
|
7656 |
|
7658 |
msgid "Blog uploads"
|
7659 |
msgstr ""
|
7660 |
|
7661 |
+
#: src/addons/migrator.php:503, src/addons/multisite.php:742
|
7662 |
msgid "Must-use plugins"
|
7663 |
msgstr ""
|
7664 |
|
7696 |
|
7697 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:265,
|
7698 |
#: src/addons/sftp.php:496, src/addons/webdav.php:248, src/admin.php:1032,
|
7699 |
+
#: src/admin.php:3284, src/methods/openstack2.php:164,
|
7700 |
#: src/methods/updraftvault.php:410,
|
7701 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
7702 |
msgid "Password"
|
7765 |
|
7766 |
#: src/addons/googlecloud.php:809, src/addons/googlecloud.php:843,
|
7767 |
#: src/addons/googlecloud.php:849, src/addons/sftp.php:591,
|
7768 |
+
#: src/addons/webdav.php:325, src/admin.php:3810, src/admin.php:3846,
|
7769 |
+
#: src/admin.php:3856, src/methods/addon-base-v2.php:356
|
7770 |
msgid "Failed"
|
7771 |
msgstr ""
|
7772 |
|
7968 |
msgid "API key"
|
7969 |
msgstr ""
|
7970 |
|
7971 |
+
#: src/addons/migrator.php:341, src/addons/moredatabase.php:113,
|
7972 |
#: src/addons/moredatabase.php:115, src/addons/moredatabase.php:117,
|
7973 |
#: src/addons/sftp.php:560, src/addons/sftp.php:564, src/addons/sftp.php:568,
|
7974 |
#: src/addons/webdav.php:316, src/admin.php:927,
|
8018 |
msgid "Test %s Settings"
|
8019 |
msgstr ""
|
8020 |
|
8021 |
+
#: src/addons/webdav.php:638, src/class-updraftplus.php:1505,
|
8022 |
+
#: src/class-updraftplus.php:1549, src/methods/cloudfiles.php:398
|
8023 |
msgid "Error opening local file: Failed to download"
|
8024 |
msgstr ""
|
8025 |
|
8028 |
msgid "%s Error: Failed to upload"
|
8029 |
msgstr ""
|
8030 |
|
8031 |
+
#: src/class-updraftplus.php:1347
|
8032 |
msgid "%s Error: Failed to open local file"
|
8033 |
msgstr ""
|
8034 |
|
8137 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
8138 |
msgstr ""
|
8139 |
|
8140 |
+
#: src/admin.php:3814, src/admin.php:3849, src/admin.php:3853,
|
8141 |
#: src/includes/class-remote-send.php:441,
|
8142 |
+
#: src/includes/class-storage-methods-interface.php:323, src/restorer.php:436,
|
8143 |
+
#: src/restorer.php:3975, src/restorer.php:4095
|
8144 |
msgid "OK"
|
8145 |
msgstr ""
|
8146 |
|
8147 |
+
#: src/restorer.php:3969, src/restorer.php:4059
|
8148 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
8149 |
msgstr ""
|
8150 |
|
8151 |
+
#: src/includes/class-search-replace.php:496, src/restorer.php:3780
|
8152 |
msgid "the database query being run was:"
|
8153 |
msgstr ""
|
8154 |
|
8155 |
+
#: src/restorer.php:2434
|
8156 |
msgid "will restore as:"
|
8157 |
msgstr ""
|
8158 |
|
8159 |
+
#: src/class-updraftplus.php:5055, src/restorer.php:2263,
|
8160 |
+
#: src/restorer.php:2891, src/restorer.php:3059
|
8161 |
msgid "Old table prefix:"
|
8162 |
msgstr ""
|
8163 |
|
8164 |
#: src/addons/reporting.php:87, src/addons/reporting.php:196,
|
8165 |
+
#: src/class-updraftplus.php:3706, src/class-updraftplus.php:4977
|
8166 |
msgid "Backup of:"
|
8167 |
msgstr ""
|
8168 |
|
8169 |
+
#: src/restorer.php:2633
|
8170 |
msgid "Failed to open database file"
|
8171 |
msgstr ""
|
8172 |
|
8173 |
+
#: src/restorer.php:2612
|
8174 |
msgid "Failed to find database file"
|
8175 |
msgstr ""
|
8176 |
|
8177 |
+
#: src/restorer.php:2589
|
8178 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
8179 |
msgstr ""
|
8180 |
|
8181 |
+
#: src/restorer.php:1199
|
8182 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
+
#: src/restorer.php:1192
|
8186 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
8187 |
msgstr ""
|
8188 |
|
8189 |
+
#: src/restorer.php:1068
|
8190 |
msgid "Failed to write out the decrypted database to the filesystem"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
+
#: src/restorer.php:1052
|
8194 |
msgid "Failed to create a temporary directory"
|
8195 |
msgstr ""
|
8196 |
|
8197 |
+
#: src/restorer.php:753
|
8198 |
msgid "Failed to delete working directory after restoring."
|
8199 |
msgstr ""
|
8200 |
|
8201 |
+
#: src/restorer.php:748
|
8202 |
msgid "Cleaning up rubbish..."
|
8203 |
msgstr ""
|
8204 |
|
8205 |
+
#: src/restorer.php:747
|
8206 |
msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
|
8207 |
msgstr ""
|
8208 |
|
8209 |
+
#: src/restorer.php:744
|
8210 |
msgid "Database successfully decrypted."
|
8211 |
msgstr ""
|
8212 |
|
8213 |
+
#: src/restorer.php:743
|
8214 |
msgid "Decrypting database (can take a while)..."
|
8215 |
msgstr ""
|
8216 |
|
8217 |
+
#: src/restorer.php:742
|
8218 |
msgid "Unpacking backup..."
|
8219 |
msgstr ""
|
8220 |
|
8221 |
+
#: src/restorer.php:741
|
8222 |
msgid "Copying this entity failed."
|
8223 |
msgstr ""
|
8224 |
|
8225 |
+
#: src/restorer.php:740
|
8226 |
msgid "Backup file not available."
|
8227 |
msgstr ""
|
8228 |
|
8229 |
+
#: src/restorer.php:739
|
8230 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
8231 |
msgstr ""
|
8232 |
|
8233 |
+
#: src/restorer.php:444, src/restorer.php:445
|
8234 |
msgid "Could not read one of the files for restoration"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
+
#: src/restorer.php:623
|
8238 |
msgid "Error message"
|
8239 |
msgstr ""
|
8240 |
|
8241 |
+
#: src/restorer.php:441
|
8242 |
msgid "The backup records do not contain information about the proper size of this file."
|
8243 |
msgstr ""
|
8244 |
|
8245 |
+
#: src/restorer.php:433
|
8246 |
msgid "Archive is expected to be size:"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
+
#: src/admin.php:5120
|
8250 |
msgid "If making a request for support, please include this information:"
|
8251 |
msgstr ""
|
8252 |
|
8253 |
+
#: src/admin.php:5120
|
8254 |
msgid "ABORT: Could not find the information on which entities to restore."
|
8255 |
msgstr ""
|
8256 |
|
8258 |
msgid "UpdraftPlus Restoration: Progress"
|
8259 |
msgstr ""
|
8260 |
|
8261 |
+
#: src/admin.php:5083
|
8262 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
8263 |
msgstr ""
|
8264 |
|
8265 |
+
#: src/admin.php:4516
|
8266 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
8267 |
msgstr ""
|
8268 |
|
8269 |
+
#: src/admin.php:4600
|
8270 |
msgid "Delete this backup set"
|
8271 |
msgstr ""
|
8272 |
|
8273 |
+
#: src/admin.php:4285
|
8274 |
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."
|
8275 |
msgstr ""
|
8276 |
|
8277 |
+
#: src/admin.php:4282
|
8278 |
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."
|
8279 |
msgstr ""
|
8280 |
|
8281 |
+
#: src/admin.php:4280
|
8282 |
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)."
|
8283 |
msgstr ""
|
8284 |
|
8319 |
msgid "Use the server's SSL certificates"
|
8320 |
msgstr ""
|
8321 |
|
8322 |
+
#: src/admin.php:4101
|
8323 |
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."
|
8324 |
msgstr ""
|
8325 |
|
8326 |
+
#: src/admin.php:4101
|
8327 |
msgid "or, to reset this option"
|
8328 |
msgstr ""
|
8329 |
|
8330 |
+
#: src/admin.php:4101
|
8331 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
8332 |
msgstr ""
|
8333 |
|
8334 |
+
#: src/admin.php:4093
|
8335 |
msgid "Backup directory specified is writable, which is good."
|
8336 |
msgstr ""
|
8337 |
|
8373 |
msgstr ""
|
8374 |
|
8375 |
#: src/addons/incremental.php:330, src/addons/incremental.php:338,
|
8376 |
+
#: src/addons/reporting.php:260, src/admin.php:4366
|
8377 |
msgid "None"
|
8378 |
msgstr ""
|
8379 |
|
8389 |
msgid "Database encryption phrase"
|
8390 |
msgstr ""
|
8391 |
|
8392 |
+
#: src/admin.php:3274, src/methods/updraftvault.php:409,
|
8393 |
#: src/templates/wp-admin/settings/form-contents.php:256,
|
8394 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
8395 |
msgid "Email"
|
8403 |
msgid "Exclude these:"
|
8404 |
msgstr ""
|
8405 |
|
8406 |
+
#: src/admin.php:4181
|
8407 |
msgid "Any other directories found inside wp-content"
|
8408 |
msgstr ""
|
8409 |
|
8424 |
msgstr ""
|
8425 |
|
8426 |
#: src/addons/incremental.php:334, src/addons/incremental.php:347,
|
8427 |
+
#: src/admin.php:4069, src/admin.php:4082
|
8428 |
msgid "Monthly"
|
8429 |
msgstr ""
|
8430 |
|
8431 |
#: src/addons/incremental.php:333, src/addons/incremental.php:346,
|
8432 |
+
#: src/admin.php:4081
|
8433 |
msgid "Fortnightly"
|
8434 |
msgstr ""
|
8435 |
|
8436 |
#: src/addons/incremental.php:332, src/addons/incremental.php:345,
|
8437 |
+
#: src/admin.php:4080
|
8438 |
msgid "Weekly"
|
8439 |
msgstr ""
|
8440 |
|
8441 |
#: src/addons/incremental.php:331, src/addons/incremental.php:344,
|
8442 |
+
#: src/admin.php:4079
|
8443 |
msgid "Daily"
|
8444 |
msgstr ""
|
8445 |
|
8447 |
msgid "Files backup interval"
|
8448 |
msgstr ""
|
8449 |
|
8450 |
+
#: src/admin.php:909, src/admin.php:4045
|
8451 |
msgid "Download log file"
|
8452 |
msgstr ""
|
8453 |
|
8454 |
+
#: src/admin.php:3917
|
8455 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
8456 |
msgstr ""
|
8457 |
|
8458 |
+
#: src/admin.php:3912
|
8459 |
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"
|
8460 |
msgstr ""
|
8461 |
|
8462 |
+
#: src/admin.php:3898
|
8463 |
msgid "The request to the filesystem to create the directory failed."
|
8464 |
msgstr ""
|
8465 |
|
8466 |
+
#: src/admin.php:900, src/admin.php:3807, src/admin.php:3841,
|
8467 |
+
#: src/admin.php:4600, src/includes/class-remote-send.php:692,
|
8468 |
#: src/templates/wp-admin/settings/existing-backups-table.php:167,
|
8469 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
8470 |
msgid "Delete"
|
8471 |
msgstr ""
|
8472 |
|
8473 |
+
#: src/admin.php:3759
|
8474 |
msgid "show log"
|
8475 |
msgstr ""
|
8476 |
|
8535 |
msgid "Yes"
|
8536 |
msgstr ""
|
8537 |
|
8538 |
+
#: src/admin.php:5943, src/admin.php:5947,
|
8539 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
8540 |
#: src/templates/wp-admin/advanced/site-info.php:64,
|
8541 |
#: src/templates/wp-admin/advanced/site-info.php:72,
|
8567 |
msgid "Do read this helpful article of useful things to know before restoring."
|
8568 |
msgstr ""
|
8569 |
|
8570 |
+
#: src/class-updraftplus.php:5013
|
8571 |
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"
|
8572 |
msgstr ""
|
8573 |
|
8609 |
msgstr ""
|
8610 |
|
8611 |
#: src/addons/backblaze.php:205, src/addons/backblaze.php:230,
|
8612 |
+
#: src/addons/cloudfiles-enhanced.php:123, src/addons/migrator.php:924,
|
8613 |
+
#: src/addons/migrator.php:1229, src/addons/migrator.php:1307,
|
8614 |
#: src/addons/s3-enhanced.php:161, src/addons/s3-enhanced.php:166,
|
8615 |
#: src/addons/s3-enhanced.php:168, src/addons/sftp.php:962,
|
8616 |
#: src/addons/webdav.php:258, src/admin.php:91, src/admin.php:873,
|
8627 |
#: src/includes/class-search-replace.php:326,
|
8628 |
#: src/includes/class-search-replace.php:496, src/methods/remotesend.php:74,
|
8629 |
#: src/methods/remotesend.php:252, src/methods/updraftvault.php:592,
|
8630 |
+
#: src/restorer.php:438, src/restorer.php:466, src/restorer.php:2155,
|
8631 |
+
#: src/restorer.php:4135
|
8632 |
msgid "Error:"
|
8633 |
msgstr ""
|
8634 |
|
8682 |
msgid "More tasks:"
|
8683 |
msgstr ""
|
8684 |
|
8685 |
+
#: src/admin.php:3436
|
8686 |
msgid "Download most recently modified log file"
|
8687 |
msgstr ""
|
8688 |
|
8691 |
msgstr ""
|
8692 |
|
8693 |
#: src/addons/autobackup.php:368, src/addons/autobackup.php:463,
|
8694 |
+
#: src/admin.php:3392, src/admin.php:3398,
|
8695 |
#: src/templates/wp-admin/settings/take-backup.php:72
|
8696 |
msgid "Last log message"
|
8697 |
msgstr ""
|
8698 |
|
8699 |
+
#: src/addons/migrator.php:275, src/admin.php:701, src/admin.php:908,
|
8700 |
+
#: src/admin.php:4516
|
8701 |
msgid "Restore"
|
8702 |
msgstr ""
|
8703 |
|
8710 |
msgstr ""
|
8711 |
|
8712 |
#: src/addons/moredatabase.php:266, src/addons/reporting.php:275,
|
8713 |
+
#: src/addons/wp-cli.php:428, src/admin.php:394, src/admin.php:4341,
|
8714 |
+
#: src/admin.php:4394, src/admin.php:4984,
|
8715 |
#: src/includes/class-remote-send.php:445,
|
8716 |
#: src/includes/class-wpadmin-commands.php:154,
|
8717 |
+
#: src/includes/class-wpadmin-commands.php:612, src/restorer.php:576,
|
8718 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
|
8719 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
|
8720 |
#: src/templates/wp-admin/settings/take-backup.php:34
|
8721 |
msgid "Database"
|
8722 |
msgstr ""
|
8723 |
|
8724 |
+
#: src/admin.php:384, src/admin.php:5729,
|
8725 |
#: src/templates/wp-admin/settings/take-backup.php:24
|
8726 |
msgid "Files"
|
8727 |
msgstr ""
|
8747 |
msgid "JavaScript warning"
|
8748 |
msgstr ""
|
8749 |
|
8750 |
+
#: src/admin.php:884, src/admin.php:3485
|
8751 |
msgid "Delete Old Directories"
|
8752 |
msgstr ""
|
8753 |
|
8754 |
+
#: src/admin.php:2931
|
8755 |
msgid "Current limit is:"
|
8756 |
msgstr ""
|
8757 |
|
8758 |
+
#: src/admin.php:2893
|
8759 |
msgid "Your backup has been restored."
|
8760 |
msgstr ""
|
8761 |
|
8767 |
msgid "Lead developer's homepage"
|
8768 |
msgstr ""
|
8769 |
|
8770 |
+
#: src/admin.php:5623
|
8771 |
msgid "Your settings have been wiped."
|
8772 |
msgstr ""
|
8773 |
|
8774 |
+
#: src/admin.php:2850
|
8775 |
msgid "Backup directory successfully created."
|
8776 |
msgstr ""
|
8777 |
|
8778 |
+
#: src/admin.php:2843
|
8779 |
msgid "Backup directory could not be created"
|
8780 |
msgstr ""
|
8781 |
|
8782 |
+
#: src/admin.php:3775
|
8783 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
8784 |
msgstr ""
|
8785 |
|
8786 |
+
#: src/admin.php:3773
|
8787 |
msgid "Old directories successfully removed."
|
8788 |
msgstr ""
|
8789 |
|
8790 |
+
#: src/admin.php:3770, src/admin.php:3770
|
8791 |
msgid "Remove old directories"
|
8792 |
msgstr ""
|
8793 |
|
8794 |
+
#: src/addons/migrator.php:344, src/addons/migrator.php:360
|
8795 |
msgid "Return to UpdraftPlus Configuration"
|
8796 |
msgstr ""
|
8797 |
|
8798 |
+
#: src/admin.php:877, src/admin.php:2852, src/admin.php:3777,
|
8799 |
+
#: src/admin.php:4910, src/admin.php:4922, src/admin.php:4933,
|
8800 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
8801 |
#: src/templates/wp-admin/settings/existing-backups-table.php:142
|
8802 |
msgid "Actions"
|
8827 |
msgstr ""
|
8828 |
|
8829 |
#: src/addons/webdav.php:584, src/addons/wp-cli.php:497, src/admin.php:874,
|
8830 |
+
#: src/class-updraftplus.php:1505, src/class-updraftplus.php:1549,
|
8831 |
#: src/includes/class-filesystem-functions.php:437,
|
8832 |
#: src/includes/class-storage-methods-interface.php:332,
|
8833 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
8834 |
#: src/methods/addon-base-v2.php:251, src/methods/addon-base-v2.php:271,
|
8835 |
+
#: src/methods/googledrive.php:1343, src/restorer.php:3971,
|
8836 |
+
#: src/restorer.php:3996, src/restorer.php:4092, src/udaddons/options.php:236,
|
8837 |
#: src/updraftplus.php:158
|
8838 |
msgid "Error"
|
8839 |
msgstr ""
|
8870 |
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."
|
8871 |
msgstr ""
|
8872 |
|
8873 |
+
#: src/addons/azure.php:604, src/addons/migrator.php:978, src/admin.php:1300,
|
8874 |
#: src/admin.php:1305, src/admin.php:1311, src/admin.php:1315,
|
8875 |
+
#: src/admin.php:1319, src/admin.php:1328, src/admin.php:4273,
|
8876 |
+
#: src/admin.php:4280, src/admin.php:4282, src/admin.php:5913,
|
8877 |
+
#: src/admin.php:6191, src/methods/cloudfiles-new.php:96,
|
8878 |
#: src/methods/cloudfiles.php:455, src/methods/ftp.php:344,
|
8879 |
#: src/methods/openstack-base.php:576, src/methods/s3.php:892,
|
8880 |
#: src/methods/s3.php:896, src/methods/updraftvault.php:343,
|
8884 |
msgid "Warning"
|
8885 |
msgstr ""
|
8886 |
|
8887 |
+
#: src/admin.php:717, src/admin.php:1222, src/admin.php:3093
|
8888 |
msgid "Settings"
|
8889 |
msgstr ""
|
8890 |
|
8891 |
+
#: src/backup.php:310
|
8892 |
msgid "Could not create %s zip. Consult the log file for more information."
|
8893 |
msgstr ""
|
8894 |
|
8895 |
+
#: src/backup.php:2918
|
8896 |
msgid "Infinite recursion: consult your log for more information"
|
8897 |
msgstr ""
|
8898 |
|
8899 |
+
#: src/addons/azure.php:267, src/class-updraftplus.php:4673,
|
8900 |
#: src/methods/googledrive.php:1343, src/methods/s3.php:383
|
8901 |
msgid "File not found"
|
8902 |
msgstr ""
|
8905 |
msgid "The decryption key used:"
|
8906 |
msgstr ""
|
8907 |
|
8908 |
+
#: src/class-updraftplus.php:4898,
|
8909 |
+
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:1073
|
8910 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
8911 |
msgstr ""
|
8912 |
|
8913 |
+
#: src/class-updraftplus.php:4886,
|
8914 |
+
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:1060
|
8915 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
8916 |
msgstr ""
|
8917 |
|
8918 |
+
#: src/backup.php:2801
|
8919 |
msgid "Could not open the backup file for writing"
|
8920 |
msgstr ""
|
8921 |
|
8922 |
+
#: src/class-updraftplus.php:4388
|
8923 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
8924 |
msgstr ""
|
8925 |
|
8926 |
+
#: src/class-updraftplus.php:4372
|
8927 |
msgid "Could not read the directory"
|
8928 |
msgstr ""
|
8929 |
|
8930 |
+
#: src/admin.php:2568, src/backup.php:1262
|
8931 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
8932 |
msgstr ""
|
8933 |
|
8934 |
+
#: src/class-updraftplus.php:3707
|
8935 |
msgid "WordPress backup is complete"
|
8936 |
msgstr ""
|
8937 |
|
8938 |
+
#: src/class-updraftplus.php:3549
|
8939 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
8940 |
msgstr ""
|
8941 |
|
8942 |
+
#: src/class-updraftplus.php:3526
|
8943 |
msgid "The backup apparently succeeded and is now complete"
|
8944 |
msgstr ""
|
8945 |
|
8947 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
8948 |
msgstr ""
|
8949 |
|
8950 |
+
#: src/class-updraftplus.php:3172
|
8951 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
8952 |
msgstr ""
|
8953 |
|
8954 |
+
#: src/class-updraftplus.php:2041
|
8955 |
msgid "Others"
|
8956 |
msgstr ""
|
8957 |
|
8958 |
+
#: src/addons/multisite.php:504, src/class-updraftplus.php:2026
|
8959 |
msgid "Uploads"
|
8960 |
msgstr ""
|
8961 |
|
8962 |
+
#: src/class-updraftplus.php:2025
|
8963 |
msgid "Themes"
|
8964 |
msgstr ""
|
8965 |
|
8966 |
+
#: src/class-updraftplus.php:2024
|
8967 |
msgid "Plugins"
|
8968 |
msgstr ""
|
8969 |
|
8970 |
+
#: src/class-updraftplus.php:689
|
8971 |
msgid "No log files were found."
|
8972 |
msgstr ""
|
8973 |
|
8974 |
+
#: src/admin.php:2430, src/admin.php:2434, src/class-updraftplus.php:684
|
8975 |
msgid "The log file could not be read."
|
8976 |
msgstr ""
|
8977 |
|
8978 |
#: src/admin.php:1348, src/admin.php:1369, src/admin.php:1407,
|
8979 |
+
#: src/class-updraftplus.php:617, src/class-updraftplus.php:684,
|
8980 |
+
#: src/class-updraftplus.php:689, src/class-updraftplus.php:694
|
8981 |
msgid "UpdraftPlus notice:"
|
8982 |
msgstr ""
|
8983 |
|
@@ -11,6 +11,18 @@ msgstr ""
|
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/udaddons/options.php:98
|
15 |
msgid "An update is available for UpdraftPlus - please connect here to gain access to it."
|
16 |
msgstr ""
|
@@ -229,47 +241,47 @@ msgstr ""
|
|
229 |
msgid "If you have an existing backup that you wish to upload and restore from, then please use the \"Upload backup files\" link above."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: src/class-updraftplus.php:
|
233 |
msgid "Include all tables not listed below"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: src/class-updraftplus.php:
|
237 |
msgid "The amount of database tables scanned is near or over the php_max_input_vars value so some tables maybe truncated. This option will ensure all tables not found will be backed up."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: src/class-updraftplus.php:
|
241 |
msgid "The database scan was taking too long and consequently the list of all tables in the database could not be completed. This option will ensure all tables not found will be backed up."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: src/class-updraftplus.php:
|
245 |
msgid "Therefore, affected tables on the current site which already exist will not be replaced by default, to avoid corrupting them (you can review this in the list of tables below)."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: src/class-updraftplus.php:
|
249 |
msgid "Therefore it is advised that you take a fresh backup on the source site, using a later version."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: src/class-updraftplus.php:
|
253 |
msgid "This backup was created on a previous UpdraftPlus version (%s) which did not correctly backup tables with composite primary keys (such as the term_relationships table, which records tags and product attributes)."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: src/class-updraftplus.php:
|
257 |
msgid "This backup is of a site with an empty table prefix, which WordPress does not officially support; the results may be unreliable."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: src/class-updraftplus.php:
|
261 |
msgid "View log"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: src/class-updraftplus.php:
|
265 |
msgid "You can view the log by pressing the 'View log' button."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: src/class-updraftplus.php:
|
269 |
msgid "UpdraftPlus on %s"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: src/class-updraftplus.php:
|
273 |
msgid " Your hosting provider only allows you to take one incremental backup per day."
|
274 |
msgstr ""
|
275 |
|
@@ -317,71 +329,71 @@ msgstr ""
|
|
317 |
msgid "The plugin you wish to activate is either not installed or has been removed recently."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: src/backup.php:
|
321 |
msgid "two unsuccessful attempts were made to include it, and it will now be omitted from the backup"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: src/backup.php:
|
325 |
msgid "a second attempt is being made (upon further failure it will be skipped)"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: src/backup.php:
|
329 |
msgid "Error getting table details"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: src/backup.php:
|
333 |
msgid "Failed to backup database table:"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: src/backup.php:
|
337 |
msgid "Failed to open directory for reading:"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: src/admin.php:
|
341 |
msgid "The download link is broken or the backup file is no longer available"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: src/admin.php:
|
345 |
msgid "The download link is broken, you may have clicked the link from untrusted source"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: src/admin.php:
|
349 |
msgid "Due to the restriction, some settings can be automatically adjusted, disabled or not available."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: src/admin.php:
|
353 |
msgid "%s permits UpdraftPlus to perform only one backup per month. Thus, we recommend you choose a full backup when performing a manual backup and to use that option when creating a scheduled backup."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: src/admin.php:
|
357 |
msgid "Your website is hosted with %s (%s)."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: src/admin.php:
|
361 |
msgid "The following remote storage (%s) have only been partially configured, if you are having problems you can try to manually authorise at the UpdraftPlus settings page."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: src/admin.php:
|
365 |
msgid "The following remote storage (%s) have only been partially configured, manual authorization is not supported with this remote storage, please try again and if the problem persists contact support."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: src/admin.php:
|
369 |
msgid "more info"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: src/admin.php:
|
373 |
msgid "The following remote storage options are configured."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: src/admin.php:
|
377 |
msgid "No remote storage locations with valid options found."
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: src/admin.php:
|
381 |
msgid "This may prevent the restore procedure from being able to proceed."
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: src/admin.php:
|
385 |
msgid "(the asterisk character matches zero or more characters)"
|
386 |
msgstr ""
|
387 |
|
@@ -437,20 +449,20 @@ msgstr ""
|
|
437 |
msgid "Your hosting provider only allows you to take one incremental backup per day."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: src/admin.php:1049, src/class-updraftplus.php:
|
441 |
msgid "You have reached the daily limit for the number of incremental backups you can create at this time."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: src/admin.php:1048, src/admin.php:1049, src/class-updraftplus.php:
|
445 |
-
#: src/class-updraftplus.php:
|
446 |
msgid "Please contact your hosting company (%s) if you require further support."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: src/admin.php:1048, src/class-updraftplus.php:
|
450 |
msgid "Your hosting provider only allows you to take one backup per month."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: src/admin.php:1048, src/class-updraftplus.php:
|
454 |
msgid "You have reached the monthly limit for the number of backups you can create at this time."
|
455 |
msgstr ""
|
456 |
|
@@ -470,7 +482,7 @@ msgstr ""
|
|
470 |
msgid "Exit full-screen"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: src/admin.php:904, src/admin.php:
|
474 |
msgid "Full-screen"
|
475 |
msgstr ""
|
476 |
|
@@ -747,35 +759,35 @@ msgstr ""
|
|
747 |
msgid "Makes your site fast and efficient. It cleans the database, compresses images and caches pages for ultimate speed."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: src/restorer.php:
|
751 |
msgid "The Database connection has been closed and cannot be reopened."
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: src/restorer.php:
|
755 |
msgid "Skipping table %s: already restored on a prior run; next table to restore: %s"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: src/restorer.php:
|
759 |
msgid "Skipping table %s: user has chosen not to restore this table"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: src/restorer.php:
|
763 |
msgid "Found and replaced existing table foreign key constraints as the table prefix has changed."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: src/restorer.php:
|
767 |
msgid "An error occurred while attempting to set a new value to the MySQL global log_bin_trust_function_creators variable %s"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: src/restorer.php:
|
771 |
msgid "An error occurred while attempting to retrieve the MySQL global log_bin_trust_function_creators variable %s"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: src/restorer.php:
|
775 |
msgid "The directory does not exist, and the attempt to create it failed"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: src/restorer.php:
|
779 |
msgid "Could not delete old path."
|
780 |
msgstr ""
|
781 |
|
@@ -972,31 +984,31 @@ msgstr ""
|
|
972 |
msgid "No backup will be started. The creation of your clone should now begin, and your WordPress username and password will be displayed below when ready."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: src/class-updraftplus.php:
|
976 |
msgid "If you do not want to restore all your database tables, then choose some to exclude here."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: src/class-updraftplus.php:
|
980 |
msgid "You should only proceed if you have checked and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the new %s version."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: src/class-updraftplus.php:
|
984 |
msgid "This is older than the server which you are now restoring onto (version %s)."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: src/class-updraftplus.php:
|
988 |
msgid "Incomplete"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: src/class-updraftplus.php:
|
992 |
msgid "The backup is being aborted for a repeated failure to progress."
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: src/class-updraftplus.php:
|
996 |
msgid "Briefly unavailable for scheduled maintenance. Check back in a minute."
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: src/class-updraftplus.php:
|
1000 |
msgid "Under Maintenance"
|
1001 |
msgstr ""
|
1002 |
|
@@ -1048,81 +1060,81 @@ msgstr ""
|
|
1048 |
msgid "Unable to connect to the filesystem"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: src/admin.php:
|
1052 |
msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/admin.php:
|
1056 |
msgid "Clone package"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: src/admin.php:
|
1060 |
msgid "An empty WordPress install"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: src/admin.php:
|
1064 |
msgid "This current site"
|
1065 |
msgstr "هذا الموقع الحالي"
|
1066 |
|
1067 |
-
#: src/admin.php:
|
1068 |
msgid "Clone:"
|
1069 |
msgstr "استنساخ:"
|
1070 |
|
1071 |
-
#: src/admin.php:
|
1072 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:98
|
1073 |
msgid "3. Restoration"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: src/admin.php:
|
1077 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:97
|
1078 |
msgid "2. Verifications"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: src/admin.php:
|
1082 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:96
|
1083 |
msgid "1. Component selection"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: src/admin.php:
|
1087 |
msgid "Activity log"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: src/admin.php:
|
1091 |
msgid "Cleaning"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: src/admin.php:
|
1095 |
msgid "Verifying"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: src/admin.php:
|
1099 |
msgid "Restoration progress:"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: src/admin.php:
|
1103 |
msgid "The restore operation has begun (%s). Do not close this page until it reports itself as having finished."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: src/admin.php:
|
1107 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
|
1108 |
msgid "UpdraftPlus Restoration"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: src/admin.php:
|
1112 |
msgid "(%d archive(s) in set, total %s)."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: src/admin.php:
|
1116 |
msgid "Learn more about UpdraftCentral"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: src/admin.php:
|
1120 |
msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: src/admin.php:
|
1124 |
-
#: src/admin.php:
|
1125 |
-
#: src/admin.php:
|
1126 |
msgid "Return to UpdraftPlus configuration"
|
1127 |
msgstr ""
|
1128 |
|
@@ -1206,7 +1218,7 @@ msgstr ""
|
|
1206 |
msgid "Begun"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: src/admin.php:1038, src/admin.php:
|
1210 |
msgid "Finished"
|
1211 |
msgstr ""
|
1212 |
|
@@ -1448,7 +1460,7 @@ msgstr ""
|
|
1448 |
msgid "Azure China"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: src/admin.php:
|
1452 |
msgid "Clone region:"
|
1453 |
msgstr ""
|
1454 |
|
@@ -1482,7 +1494,7 @@ msgstr ""
|
|
1482 |
msgid "Or, use an UpdraftClone key"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: src/restorer.php:
|
1486 |
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
1487 |
msgstr ""
|
1488 |
|
@@ -1506,11 +1518,11 @@ msgstr ""
|
|
1506 |
msgid "Automatic updates"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: src/restorer.php:
|
1510 |
msgid "Your database user does not have permission to drop tables"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: src/admin.php:
|
1514 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
1515 |
msgstr ""
|
1516 |
|
@@ -1674,11 +1686,11 @@ msgstr ""
|
|
1674 |
msgid "WordPress installed"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: src/admin.php:
|
1678 |
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."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: src/admin.php:
|
1682 |
msgid "Exclude these from"
|
1683 |
msgstr ""
|
1684 |
|
@@ -1726,15 +1738,15 @@ msgstr ""
|
|
1726 |
msgid "failed to upload file to %s (see log file for more)"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: src/admin.php:
|
1730 |
msgid "Dashboard:"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: src/admin.php:
|
1734 |
msgid "Front page:"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: src/admin.php:
|
1738 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
1739 |
msgstr ""
|
1740 |
|
@@ -1746,7 +1758,7 @@ msgstr ""
|
|
1746 |
msgid "Current clones"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: src/class-updraftplus.php:
|
1750 |
msgid "Your clone will now deploy this data to re-create your site."
|
1751 |
msgstr ""
|
1752 |
|
@@ -1754,7 +1766,7 @@ msgstr ""
|
|
1754 |
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."
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: src/addons/migrator.php:
|
1758 |
msgid "Site key"
|
1759 |
msgstr ""
|
1760 |
|
@@ -1762,16 +1774,16 @@ msgstr ""
|
|
1762 |
msgid "Add a site"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: src/addons/migrator.php:
|
1766 |
-
#: src/addons/migrator.php:
|
1767 |
msgid "back"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: src/addons/migrator.php:
|
1771 |
msgid "Read this article to see step-by-step how it's done."
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: src/addons/migrator.php:
|
1775 |
#: src/templates/wp-admin/settings/migrator-no-migrator.php:6
|
1776 |
msgid "Migrate (create a copy of a site on hosting you control)"
|
1777 |
msgstr ""
|
@@ -2048,7 +2060,7 @@ msgstr ""
|
|
2048 |
msgid "You can buy more temporary clone tokens here."
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: src/admin.php:
|
2052 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
2053 |
msgstr ""
|
2054 |
|
@@ -2068,19 +2080,19 @@ msgstr ""
|
|
2068 |
msgid "The creation of your data for creating the clone should now begin."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: src/admin.php:
|
2072 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: src/class-updraftplus.php:
|
2076 |
msgid "Choose a default for each table"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: src/admin.php:
|
2080 |
msgid "Sending files to remote site"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: src/admin.php:
|
2084 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
2085 |
msgstr ""
|
2086 |
|
@@ -2088,15 +2100,15 @@ msgstr ""
|
|
2088 |
msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: src/addons/migrator.php:
|
2092 |
msgid "To import a backup set, go to the \"Existing backups\" section in the \"Backup/Restore\" tab"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: src/admin.php:
|
2096 |
msgid "Backup / Restore"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: src/admin.php:701, src/admin.php:
|
2100 |
msgid "Backup"
|
2101 |
msgstr ""
|
2102 |
|
@@ -2116,7 +2128,7 @@ msgstr ""
|
|
2116 |
msgid "No previous backup found to add an increment to."
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: src/restorer.php:
|
2120 |
msgid "Requested character set (%s) is not present - changing to %s."
|
2121 |
msgstr ""
|
2122 |
|
@@ -2168,11 +2180,11 @@ msgstr ""
|
|
2168 |
msgid "More information here."
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: src/admin.php:709, src/admin.php:
|
2172 |
msgid "Migrate / Clone"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: src/admin.php:
|
2176 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76,
|
2177 |
#: src/templates/wp-admin/settings/existing-backups-table.php:79
|
2178 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
@@ -2182,7 +2194,7 @@ msgstr ""
|
|
2182 |
msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: src/restorer.php:
|
2186 |
msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
|
2187 |
msgstr ""
|
2188 |
|
@@ -2194,15 +2206,15 @@ msgstr ""
|
|
2194 |
msgid "Run this command to see the log file for this restoration (needed for any support requests)."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: src/class-updraftplus.php:
|
2198 |
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."
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: src/admin.php:
|
2202 |
msgid "(current version)"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: src/admin.php:
|
2206 |
msgid "press here"
|
2207 |
msgstr ""
|
2208 |
|
@@ -2224,7 +2236,7 @@ msgstr ""
|
|
2224 |
msgid "And then add an incremental backup"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: src/addons/incremental.php:339, src/admin.php:
|
2228 |
msgid "Every hour"
|
2229 |
msgstr ""
|
2230 |
|
@@ -2236,7 +2248,7 @@ msgstr ""
|
|
2236 |
msgid "Available temporary clone tokens:"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: src/admin.php:
|
2240 |
#: src/includes/class-commands.php:1081, src/includes/class-commands.php:1083,
|
2241 |
#: src/methods/backup-module.php:663,
|
2242 |
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
@@ -2256,7 +2268,7 @@ msgstr ""
|
|
2256 |
msgid "I consent to %s"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: src/admin.php:
|
2260 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
2261 |
msgid "One Time Password (check your OTP app to get this password)"
|
2262 |
msgstr ""
|
@@ -2305,7 +2317,7 @@ msgstr ""
|
|
2305 |
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."
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: src/admin.php:
|
2309 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
2310 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
2311 |
msgstr[0] ""
|
@@ -2413,7 +2425,7 @@ msgstr ""
|
|
2413 |
msgid "Upload backup"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: src/admin.php:
|
2417 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
2418 |
msgstr ""
|
2419 |
|
@@ -2425,7 +2437,7 @@ msgstr ""
|
|
2425 |
msgid "Local backup upload has started; please check the log file to see the upload progress"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: src/admin.php:902, src/admin.php:
|
2429 |
msgid "Upload"
|
2430 |
msgstr ""
|
2431 |
|
@@ -2441,7 +2453,7 @@ msgstr ""
|
|
2441 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: src/addons/migrator.php:
|
2445 |
msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
|
2446 |
msgstr ""
|
2447 |
|
@@ -2487,15 +2499,15 @@ msgstr ""
|
|
2487 |
msgid "The given value for the '%s' option is not valid"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: src/addons/migrator.php:
|
2491 |
msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: src/addons/migrator.php:
|
2495 |
msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: src/addons/migrator.php:
|
2499 |
msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
|
2500 |
msgstr ""
|
2501 |
|
@@ -2523,15 +2535,15 @@ msgstr ""
|
|
2523 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: src/restorer.php:
|
2527 |
msgid "Failed to read from the working directory."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: src/restorer.php:
|
2531 |
msgid "Failed to find a manifest file in the backup."
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: src/restorer.php:
|
2535 |
msgid "Failed to read the manifest file from backup."
|
2536 |
msgstr ""
|
2537 |
|
@@ -2543,11 +2555,11 @@ msgstr ""
|
|
2543 |
msgid "Ensure you are logged into the correct account before continuing."
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: src/admin.php:
|
2547 |
msgid "Remote storage method and instance id are required for authentication."
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: src/admin.php:
|
2551 |
msgid "authentication error"
|
2552 |
msgstr ""
|
2553 |
|
@@ -2555,15 +2567,15 @@ msgstr ""
|
|
2555 |
msgid "(Nothing has been logged yet)"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: src/addons/migrator.php:
|
2559 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: src/addons/migrator.php:
|
2563 |
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 below search and replace so that the non-https links are automatically replaced."
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: src/addons/migrator.php:
|
2567 |
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 below search and replace to search/replace the site address so that the site can be visited without https."
|
2568 |
msgstr ""
|
2569 |
|
@@ -2611,7 +2623,7 @@ msgstr ""
|
|
2611 |
msgid "Invalid bucket name"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: src/restorer.php:
|
2615 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
2616 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
2617 |
msgstr[0] ""
|
@@ -2621,15 +2633,15 @@ msgstr[3] ""
|
|
2621 |
msgstr[4] ""
|
2622 |
msgstr[5] ""
|
2623 |
|
2624 |
-
#: src/class-updraftplus.php:
|
2625 |
msgid "Your chosen replacement collation"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: src/class-updraftplus.php:
|
2629 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: src/class-updraftplus.php:
|
2633 |
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."
|
2634 |
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."
|
2635 |
msgstr[0] ""
|
@@ -2639,11 +2651,11 @@ msgstr[3] ""
|
|
2639 |
msgstr[4] ""
|
2640 |
msgstr[5] ""
|
2641 |
|
2642 |
-
#: src/addons/migrator.php:
|
2643 |
msgid "Database restoration options:"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: src/addons/migrator.php:
|
2647 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
2648 |
msgstr ""
|
2649 |
|
@@ -2691,7 +2703,7 @@ msgstr ""
|
|
2691 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: src/addons/migrator.php:
|
2695 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
2696 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
2697 |
msgstr[0] ""
|
@@ -2701,19 +2713,19 @@ msgstr[3] ""
|
|
2701 |
msgstr[4] ""
|
2702 |
msgstr[5] ""
|
2703 |
|
2704 |
-
#: src/restorer.php:
|
2705 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: src/class-updraftplus.php:
|
2709 |
msgid "Your chosen character set to use instead:"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: src/class-updraftplus.php:
|
2713 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: src/class-updraftplus.php:
|
2717 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
2718 |
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."
|
2719 |
msgstr[0] ""
|
@@ -2810,23 +2822,23 @@ msgstr ""
|
|
2810 |
msgid "Account ID"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#: src/class-updraftplus.php:
|
2814 |
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."
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#: src/class-updraftplus.php:
|
2818 |
msgid "the migrator add-on"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#: src/class-updraftplus.php:
|
2822 |
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."
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: src/class-updraftplus.php:
|
2826 |
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."
|
2827 |
msgstr ""
|
2828 |
|
2829 |
-
#: src/class-updraftplus.php:
|
2830 |
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."
|
2831 |
msgstr ""
|
2832 |
|
@@ -2842,15 +2854,15 @@ msgstr ""
|
|
2842 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#: src/backup.php:
|
2846 |
-
#: src/class-updraftplus.php:
|
2847 |
-
#: src/includes/class-storage-methods-interface.php:381, src/restorer.php:
|
2848 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: src/backup.php:
|
2852 |
-
#: src/class-updraftplus.php:
|
2853 |
-
#: src/includes/class-storage-methods-interface.php:372, src/restorer.php:
|
2854 |
msgid "A PHP exception (%s) has occurred: %s"
|
2855 |
msgstr ""
|
2856 |
|
@@ -2900,7 +2912,7 @@ msgstr ""
|
|
2900 |
msgid "Rackspace Storage Region"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/admin.php:
|
2904 |
msgid "Value"
|
2905 |
msgstr ""
|
2906 |
|
@@ -2916,11 +2928,11 @@ msgstr ""
|
|
2916 |
msgid "Cloud Files"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: src/admin.php:
|
2920 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: src/admin.php:
|
2924 |
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."
|
2925 |
msgstr ""
|
2926 |
|
@@ -2937,7 +2949,7 @@ msgstr ""
|
|
2937 |
msgid "Extra database"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: src/admin.php:
|
2941 |
msgid "Press here to download or browse"
|
2942 |
msgstr ""
|
2943 |
|
@@ -2977,11 +2989,11 @@ msgstr ""
|
|
2977 |
msgid "Browse contents"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
#: src/restorer.php:
|
2981 |
msgid "Skipped tables:"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: src/class-updraftplus.php:
|
2985 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
2986 |
msgstr ""
|
2987 |
|
@@ -3419,11 +3431,11 @@ msgstr ""
|
|
3419 |
msgid "Export / import settings"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: src/restorer.php:
|
3423 |
msgid "Processing table (%s)"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: src/restorer.php:
|
3427 |
msgid "Backup of: %s"
|
3428 |
msgstr ""
|
3429 |
|
@@ -3443,7 +3455,7 @@ msgstr ""
|
|
3443 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: src/backup.php:
|
3447 |
msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
|
3448 |
msgstr ""
|
3449 |
|
@@ -3536,11 +3548,11 @@ msgstr ""
|
|
3536 |
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"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: src/admin.php:
|
3540 |
msgid "To fix this problem go here."
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: src/admin.php:
|
3544 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
3545 |
msgstr ""
|
3546 |
|
@@ -3620,31 +3632,31 @@ msgstr ""
|
|
3620 |
msgid "Public key was sent to:"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: src/backup.php:
|
3624 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
-
#: src/backup.php:
|
3628 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/addons/migrator.php:
|
3632 |
msgid "Create key"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: src/addons/migrator.php:
|
3636 |
msgid "slower, strongest"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
-
#: src/addons/migrator.php:
|
3640 |
msgid "recommended"
|
3641 |
msgstr "موصى به"
|
3642 |
|
3643 |
-
#: src/addons/migrator.php:
|
3644 |
msgid "%s bytes"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
-
#: src/addons/migrator.php:
|
3648 |
msgid "faster (possibility for slow PHP installs)"
|
3649 |
msgstr ""
|
3650 |
|
@@ -3652,20 +3664,20 @@ msgstr ""
|
|
3652 |
msgid "easy to break, fastest"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
-
#: src/addons/migrator.php:
|
3656 |
#: src/central/translations-updraftplus.php:49
|
3657 |
msgid "%s bits"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: src/addons/migrator.php:
|
3661 |
msgid "Encryption key size:"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: src/addons/migrator.php:
|
3665 |
msgid "Enter your chosen name"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#: src/addons/migrator.php:
|
3669 |
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
|
3670 |
msgstr ""
|
3671 |
|
@@ -3690,7 +3702,7 @@ msgstr ""
|
|
3690 |
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."
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: src/class-updraftplus.php:
|
3694 |
msgid "Size: %s MB"
|
3695 |
msgstr ""
|
3696 |
|
@@ -3698,7 +3710,7 @@ msgstr ""
|
|
3698 |
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)."
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
#: src/class-updraftplus.php:
|
3702 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
3703 |
msgstr ""
|
3704 |
|
@@ -3720,7 +3732,7 @@ msgstr ""
|
|
3720 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: src/class-updraftplus.php:
|
3724 |
msgid "The given file was not found, or could not be read."
|
3725 |
msgstr ""
|
3726 |
|
@@ -3804,23 +3816,23 @@ msgstr ""
|
|
3804 |
msgid "UpdraftCentral Connection"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: src/class-updraftplus.php:
|
3808 |
msgid "The backup was aborted by the user"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: src/admin.php:
|
3812 |
msgid "Your settings have been saved."
|
3813 |
msgstr "تم حفظ إعداداتك."
|
3814 |
|
3815 |
-
#: src/admin.php:
|
3816 |
msgid "Total backup size:"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: src/admin.php:
|
3820 |
msgid "stop"
|
3821 |
msgstr "توقف"
|
3822 |
|
3823 |
-
#: src/admin.php:964, src/admin.php:
|
3824 |
msgid "The backup has finished running"
|
3825 |
msgstr ""
|
3826 |
|
@@ -3874,7 +3886,7 @@ msgstr ""
|
|
3874 |
msgid "Asia Pacific (Seoul)"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#: src/restorer.php:
|
3878 |
msgid "Uploads URL:"
|
3879 |
msgstr ""
|
3880 |
|
@@ -3882,19 +3894,19 @@ msgstr ""
|
|
3882 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: src/class-updraftplus.php:
|
3886 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#: src/class-updraftplus.php:
|
3890 |
msgid "Please read this link for important information on this process."
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: src/class-updraftplus.php:
|
3894 |
msgid "It will be imported as a new site."
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: src/admin.php:
|
3898 |
#: src/templates/wp-admin/notices/autobackup-notice.php:18,
|
3899 |
#: src/templates/wp-admin/notices/horizontal-notice.php:48,
|
3900 |
#: src/templates/wp-admin/notices/horizontal-notice.php:50
|
@@ -3921,40 +3933,40 @@ msgstr ""
|
|
3921 |
msgid "Which site to restore"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: src/addons/migrator.php:
|
3925 |
msgid "Error when creating new site at your chosen address:"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: src/addons/migrator.php:
|
3929 |
msgid "Required information for restoring this backup was not given (%s)"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: src/addons/migrator.php:
|
3933 |
msgid "Attribute imported content to user"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: src/addons/migrator.php:
|
3937 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: src/addons/migrator.php:
|
3941 |
msgid "This feature is not compatible with %s"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
#: src/addons/migrator.php:
|
3945 |
msgid "Importing a single site into a multisite install"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: src/addons/migrator.php:
|
3949 |
msgid "other content from wp-content"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: src/addons/migrator.php:
|
3953 |
msgid "WordPress core"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: src/addons/migrator.php:
|
3957 |
-
#: src/addons/migrator.php:
|
3958 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
3959 |
msgstr ""
|
3960 |
|
@@ -3966,7 +3978,7 @@ msgstr ""
|
|
3966 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: src/restorer.php:
|
3970 |
msgid "Skipping: this archive was already restored."
|
3971 |
msgstr ""
|
3972 |
|
@@ -3994,23 +4006,23 @@ msgstr ""
|
|
3994 |
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)."
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#: src/admin.php:
|
3998 |
msgid "Send this backup to remote storage"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: src/admin.php:
|
4002 |
msgid "Check out UpdraftPlus Vault."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: src/admin.php:
|
4006 |
msgid "Not got any remote storage?"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: src/admin.php:
|
4010 |
msgid "settings"
|
4011 |
msgstr "إعدادات"
|
4012 |
|
4013 |
-
#: src/admin.php:
|
4014 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
4015 |
msgstr ""
|
4016 |
|
@@ -4022,31 +4034,31 @@ msgstr ""
|
|
4022 |
msgid "Include your database in the backup"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
-
#: src/admin.php:
|
4026 |
msgid "Continue restoration"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
-
#: src/admin.php:
|
4030 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
4031 |
msgstr ""
|
4032 |
|
4033 |
-
#: src/admin.php:
|
4034 |
msgid "Unfinished restoration"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
-
#: src/admin.php:
|
4038 |
msgid "%s minutes, %s seconds"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
-
#: src/admin.php:
|
4042 |
msgid "Backup Contents And Schedule"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
-
#: src/admin.php:
|
4046 |
msgid "Premium / Extensions"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
-
#: src/admin.php:
|
4050 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
4051 |
msgstr ""
|
4052 |
|
@@ -4063,7 +4075,7 @@ msgstr ""
|
|
4063 |
msgid "Extensions"
|
4064 |
msgstr "Extensions"
|
4065 |
|
4066 |
-
#: src/admin.php:725, src/admin.php:
|
4067 |
msgid "Advanced Tools"
|
4068 |
msgstr ""
|
4069 |
|
@@ -4183,23 +4195,23 @@ msgstr ""
|
|
4183 |
msgid "Could not access container"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: src/class-updraftplus.php:
|
4187 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: src/backup.php:
|
4191 |
msgid "the options table was not found"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: src/backup.php:
|
4195 |
msgid "no options or sitemeta table was found"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#: src/backup.php:
|
4199 |
msgid "The database backup appears to have failed"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: src/backup.php:
|
4203 |
msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
|
4204 |
msgstr ""
|
4205 |
|
@@ -4351,11 +4363,11 @@ msgstr ""
|
|
4351 |
msgid "Add an additional retention rule..."
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
#: src/restorer.php:
|
4355 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: src/restorer.php:
|
4359 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
4360 |
msgstr ""
|
4361 |
|
@@ -4363,15 +4375,15 @@ msgstr ""
|
|
4363 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
4364 |
msgstr ""
|
4365 |
|
4366 |
-
#: src/class-updraftplus.php:
|
4367 |
msgid "You must upgrade MySQL to be able to use this database."
|
4368 |
msgstr ""
|
4369 |
|
4370 |
-
#: src/class-updraftplus.php:
|
4371 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
4372 |
msgstr ""
|
4373 |
|
4374 |
-
#: src/admin.php:
|
4375 |
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."
|
4376 |
msgstr ""
|
4377 |
|
@@ -4437,7 +4449,7 @@ msgid "Get more quota"
|
|
4437 |
msgstr ""
|
4438 |
|
4439 |
#: src/methods/updraftvault.php:529, src/methods/updraftvault.php:545,
|
4440 |
-
#: src/methods/updraftvault.php:
|
4441 |
msgid "Current use:"
|
4442 |
msgstr ""
|
4443 |
|
@@ -4534,7 +4546,7 @@ msgstr ""
|
|
4534 |
msgid "Delete failed:"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: src/backup.php:
|
4538 |
msgid "The zip engine returned the message: %s."
|
4539 |
msgstr ""
|
4540 |
|
@@ -4566,7 +4578,7 @@ msgstr ""
|
|
4566 |
msgid "Existing keys"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
-
#: src/addons/migrator.php:
|
4570 |
msgid "Your new key:"
|
4571 |
msgstr ""
|
4572 |
|
@@ -4599,11 +4611,11 @@ msgstr ""
|
|
4599 |
msgid "Backup data will be sent to:"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
-
#: src/addons/migrator.php:
|
4603 |
msgid "Restore an existing backup set onto this site"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
-
#: src/addons/migrator.php:
|
4607 |
msgid "This site has no backups to restore from yet."
|
4608 |
msgstr ""
|
4609 |
|
@@ -4615,7 +4627,7 @@ msgstr ""
|
|
4615 |
msgid "This storage method does not allow downloading"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
-
#: src/admin.php:
|
4619 |
msgid "(backup set imported from remote location)"
|
4620 |
msgstr ""
|
4621 |
|
@@ -4658,23 +4670,23 @@ msgstr ""
|
|
4658 |
msgid "Creating..."
|
4659 |
msgstr ""
|
4660 |
|
4661 |
-
#: src/addons/migrator.php:
|
4662 |
msgid "Receive a backup from a remote site"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
-
#: src/addons/migrator.php:
|
4666 |
msgid "Paste key here"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
-
#: src/addons/migrator.php:
|
4670 |
msgid "How do I get a site's key?"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
-
#: src/addons/migrator.php:
|
4674 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: src/addons/migrator.php:
|
4678 |
msgid "Send a backup to another site"
|
4679 |
msgstr ""
|
4680 |
|
@@ -4741,11 +4753,11 @@ msgstr ""
|
|
4741 |
msgid "FTP server"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
-
#: src/addons/migrator.php:
|
4745 |
msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
|
4746 |
msgstr ""
|
4747 |
|
4748 |
-
#: src/addons/migrator.php:
|
4749 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
4750 |
msgstr ""
|
4751 |
|
@@ -4753,7 +4765,7 @@ msgstr ""
|
|
4753 |
msgid "Resetting..."
|
4754 |
msgstr ""
|
4755 |
|
4756 |
-
#: src/addons/migrator.php:
|
4757 |
msgid "Add site"
|
4758 |
msgstr ""
|
4759 |
|
@@ -4765,7 +4777,7 @@ msgstr ""
|
|
4765 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
-
#: src/restorer.php:
|
4769 |
msgid "To use this backup, your database server needs to support the %s character set."
|
4770 |
msgstr ""
|
4771 |
|
@@ -4781,7 +4793,7 @@ msgstr ""
|
|
4781 |
msgid "Go here to re-enter your password."
|
4782 |
msgstr ""
|
4783 |
|
4784 |
-
#: src/addons/migrator.php:
|
4785 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
4786 |
msgstr ""
|
4787 |
|
@@ -5040,7 +5052,7 @@ msgstr ""
|
|
5040 |
msgid "(at same time as files backup)"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#: src/admin.php:
|
5044 |
msgid "No backup has been completed"
|
5045 |
msgstr ""
|
5046 |
|
@@ -5114,12 +5126,12 @@ msgstr ""
|
|
5114 |
msgid "Check this box to have a basic report sent to"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: src/admin.php:
|
5118 |
msgctxt "i.e. Non-automatic"
|
5119 |
msgid "Manual"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: src/restorer.php:
|
5123 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
5124 |
msgid "An error (%s) occurred:"
|
5125 |
msgstr ""
|
@@ -5132,7 +5144,7 @@ msgstr ""
|
|
5132 |
msgid "Any other file/directory on your server that you wish to backup"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
-
#: src/admin.php:
|
5136 |
msgid "For even more features and personal support, check out "
|
5137 |
msgstr ""
|
5138 |
|
@@ -5226,7 +5238,7 @@ msgstr ""
|
|
5226 |
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."
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#: src/admin.php:
|
5230 |
msgid "View Log"
|
5231 |
msgstr ""
|
5232 |
|
@@ -5245,7 +5257,7 @@ msgstr ""
|
|
5245 |
msgid "and retain this many scheduled backups"
|
5246 |
msgstr ""
|
5247 |
|
5248 |
-
#: src/admin.php:
|
5249 |
msgid "incremental backup; base backup: %s"
|
5250 |
msgstr ""
|
5251 |
|
@@ -5263,7 +5275,7 @@ msgstr ""
|
|
5263 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: src/class-updraftplus.php:
|
5267 |
msgid "Backup label:"
|
5268 |
msgstr ""
|
5269 |
|
@@ -5271,15 +5283,15 @@ msgstr ""
|
|
5271 |
msgid "Error: unexpected file read fail"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: src/backup.php:
|
5275 |
msgid "check your log for more details."
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: src/backup.php:
|
5279 |
msgid "your web hosting account appears to be full; please see: %s"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: src/backup.php:
|
5283 |
msgid "A zip error occurred"
|
5284 |
msgstr ""
|
5285 |
|
@@ -5303,36 +5315,36 @@ msgstr ""
|
|
5303 |
msgid "You need to supply both an email address and a password"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
-
#: src/class-updraftplus.php:
|
5307 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
5308 |
msgstr ""
|
5309 |
|
5310 |
-
#: src/class-updraftplus.php:
|
5311 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#: src/addons/migrator.php:
|
5315 |
msgid "already done"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
-
#: src/addons/migrator.php:
|
5319 |
msgid "skipped (not in list)"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
-
#: src/addons/migrator.php:
|
5323 |
#: src/includes/class-search-replace.php:91
|
5324 |
msgid "Search and replacing table:"
|
5325 |
msgstr ""
|
5326 |
|
5327 |
-
#: src/addons/migrator.php:
|
5328 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
5329 |
msgstr ""
|
5330 |
|
5331 |
-
#: src/addons/migrator.php:
|
5332 |
msgid "These tables only"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
-
#: src/addons/migrator.php:
|
5336 |
msgid "Rows per batch"
|
5337 |
msgstr ""
|
5338 |
|
@@ -5344,19 +5356,19 @@ msgstr ""
|
|
5344 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: src/class-updraftplus.php:
|
5348 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
5349 |
msgstr ""
|
5350 |
|
5351 |
-
#: src/class-updraftplus.php:
|
5352 |
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."
|
5353 |
msgstr ""
|
5354 |
|
5355 |
-
#: src/class-updraftplus.php:
|
5356 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: src/class-updraftplus.php:
|
5360 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
5361 |
msgstr ""
|
5362 |
|
@@ -5393,11 +5405,11 @@ msgstr ""
|
|
5393 |
msgid "Start backup"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: src/class-updraftplus.php:
|
5397 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: src/admin.php:
|
5401 |
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."
|
5402 |
msgstr ""
|
5403 |
|
@@ -5429,15 +5441,15 @@ msgstr ""
|
|
5429 |
msgid "Memory limit"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: src/includes/class-filesystem-functions.php:302, src/restorer.php:
|
5433 |
msgid "restoration"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
-
#: src/class-updraftplus.php:
|
5437 |
msgid "Incremental"
|
5438 |
msgstr ""
|
5439 |
|
5440 |
-
#: src/class-updraftplus.php:
|
5441 |
msgid "Full backup"
|
5442 |
msgstr ""
|
5443 |
|
@@ -5455,55 +5467,56 @@ msgstr ""
|
|
5455 |
|
5456 |
#: src/addons/incremental.php:340, src/addons/incremental.php:341,
|
5457 |
#: src/addons/incremental.php:342, src/addons/incremental.php:343,
|
5458 |
-
#: src/admin.php:
|
5459 |
-
#: src/admin.php:
|
5460 |
#: src/updraftplus.php:103
|
5461 |
msgid "Every %s hours"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: src/addons/migrator.php:
|
|
|
5465 |
msgid "search and replace"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: src/addons/migrator.php:
|
5469 |
msgid "Go"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: src/addons/migrator.php:
|
5473 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: src/addons/migrator.php:
|
5477 |
msgid "This can easily destroy your site; so, use it with care!"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
-
#: src/addons/migrator.php:
|
5481 |
msgid "Replace with"
|
5482 |
msgstr ""
|
5483 |
|
5484 |
-
#: src/addons/migrator.php:
|
5485 |
msgid "Search for"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
-
#: src/addons/migrator.php:
|
5489 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
5490 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
5491 |
msgid "Search / replace database"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: src/addons/migrator.php:
|
5495 |
msgid "search term"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: src/restorer.php:
|
5499 |
msgid "Too many database errors have occurred - aborting"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: src/class-updraftplus.php:
|
5503 |
msgid "read more at %s"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: src/class-updraftplus.php:
|
5507 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
5508 |
msgstr ""
|
5509 |
|
@@ -5519,10 +5532,6 @@ msgstr ""
|
|
5519 |
msgid "Database Options"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: src/templates/wp-admin/advanced/site-info.php:109
|
5523 |
-
msgid "Plugins for debugging:"
|
5524 |
-
msgstr ""
|
5525 |
-
|
5526 |
#: src/templates/wp-admin/advanced/site-info.php:88
|
5527 |
msgid "%s (%s used)"
|
5528 |
msgstr ""
|
@@ -5531,7 +5540,7 @@ msgstr ""
|
|
5531 |
msgid "Free disk space in account:"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
-
#: src/admin.php:
|
5535 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
5536 |
msgstr ""
|
5537 |
|
@@ -5615,7 +5624,7 @@ msgstr ""
|
|
5615 |
msgid "user"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
-
#: src/class-updraftplus.php:
|
5619 |
msgid "External database (%s)"
|
5620 |
msgstr ""
|
5621 |
|
@@ -5633,7 +5642,7 @@ msgstr ""
|
|
5633 |
msgid "However, subsequent access attempts failed:"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
-
#: src/addons/wp-cli.php:434, src/admin.php:
|
5637 |
msgid "External database"
|
5638 |
msgstr ""
|
5639 |
|
@@ -5665,7 +5674,7 @@ msgstr ""
|
|
5665 |
msgid "use UpdraftPlus Premium"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
#: src/class-updraftplus.php:
|
5669 |
msgid "Decryption failed. The database file is encrypted."
|
5670 |
msgstr ""
|
5671 |
|
@@ -5673,20 +5682,20 @@ msgstr ""
|
|
5673 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: src/restorer.php:
|
5677 |
-
#: src/restorer.php:
|
5678 |
msgid "An error occurred on the first %s command - aborting run"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: src/addons/moredatabase.php:136, src/backup.php:
|
5682 |
msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
|
5683 |
msgstr ""
|
5684 |
|
5685 |
-
#: src/backup.php:
|
5686 |
msgid "database connection attempt failed."
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: src/addons/migrator.php:
|
5690 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
5691 |
msgstr ""
|
5692 |
|
@@ -5720,8 +5729,8 @@ msgstr ""
|
|
5720 |
msgid "Tenant"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#: src/admin.php:1044, src/admin.php:
|
5724 |
-
#: src/restorer.php:
|
5725 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
5726 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
5727 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:14
|
@@ -5854,18 +5863,18 @@ msgstr ""
|
|
5854 |
msgid "Fetch"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: src/addons/migrator.php:
|
5858 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
|
5859 |
#: src/templates/wp-admin/settings/form-contents.php:183,
|
5860 |
#: src/templates/wp-admin/settings/tab-backups.php:74
|
5861 |
msgid "This feature requires %s version %s or later"
|
5862 |
msgstr ""
|
5863 |
|
5864 |
-
#: src/restorer.php:
|
5865 |
msgid "Failed to unpack the archive"
|
5866 |
msgstr ""
|
5867 |
|
5868 |
-
#: src/class-updraftplus.php:
|
5869 |
msgid "Error - failed to download the file"
|
5870 |
msgstr ""
|
5871 |
|
@@ -5890,8 +5899,8 @@ msgstr ""
|
|
5890 |
msgid "password/key"
|
5891 |
msgstr " الرقم السري/المفتاح"
|
5892 |
|
5893 |
-
#: src/addons/migrator.php:
|
5894 |
-
#: src/admin.php:
|
5895 |
msgid "Key"
|
5896 |
msgstr "مفتاح"
|
5897 |
|
@@ -5907,24 +5916,24 @@ msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فا
|
|
5907 |
msgid "SCP/SFTP password/key"
|
5908 |
msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
|
5909 |
|
5910 |
-
#: src/addons/wp-cli.php:445, src/admin.php:
|
5911 |
msgid "Files backup (created by %s)"
|
5912 |
msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
|
5913 |
|
5914 |
-
#: src/addons/wp-cli.php:445, src/admin.php:
|
5915 |
msgid "Files and database WordPress backup (created by %s)"
|
5916 |
msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
|
5917 |
|
5918 |
-
#: src/addons/importer.php:276, src/admin.php:
|
5919 |
#: src/includes/class-backup-history.php:505
|
5920 |
msgid "Backup created by: %s."
|
5921 |
msgstr "ولدت النسخة الإحتياطية من طرف: %s."
|
5922 |
|
5923 |
-
#: src/addons/wp-cli.php:428, src/admin.php:
|
5924 |
msgid "Database (created by %s)"
|
5925 |
msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
|
5926 |
|
5927 |
-
#: src/addons/wp-cli.php:426, src/admin.php:
|
5928 |
msgid "unknown source"
|
5929 |
msgstr "مصدر غير معروف"
|
5930 |
|
@@ -5964,16 +5973,16 @@ msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zi
|
|
5964 |
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))."
|
5965 |
msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
5966 |
|
5967 |
-
#: src/admin.php:
|
5968 |
-
#: src/restorer.php:
|
5969 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
5970 |
msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
|
5971 |
|
5972 |
-
#: src/restorer.php:
|
5973 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
5974 |
msgstr "مجلد (wp-content) غير موجود البثة بهذا الملف المضغوط."
|
5975 |
|
5976 |
-
#: src/restorer.php:
|
5977 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
5978 |
msgstr "هذه النسخة من UpdraftPlus لا تستطيع التعامل مع نوع النسخ الإحتياطية هذا."
|
5979 |
|
@@ -6025,12 +6034,12 @@ msgstr "الأسئلة الشائعة %s الأخرى."
|
|
6025 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
6026 |
msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
|
6027 |
|
6028 |
-
#: src/addons/morefiles.php:357, src/admin.php:
|
6029 |
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."
|
6030 |
msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
|
6031 |
|
6032 |
#: src/includes/class-filesystem-functions.php:302, src/methods/ftp.php:344,
|
6033 |
-
#: src/restorer.php:
|
6034 |
msgid "Your hosting company must enable these functions before %s can work."
|
6035 |
msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
|
6036 |
|
@@ -6050,7 +6059,7 @@ msgstr "خادم FTP مشفر (تشفير غير واضح)"
|
|
6050 |
msgid "regular non-encrypted FTP"
|
6051 |
msgstr "خادم FTP غير مشفر اعتيادي"
|
6052 |
|
6053 |
-
#: src/restorer.php:
|
6054 |
msgid "Backup created by:"
|
6055 |
msgstr "نسخة احتياطية أنشأها:"
|
6056 |
|
@@ -6121,15 +6130,15 @@ msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مر
|
|
6121 |
msgid "Constants"
|
6122 |
msgstr "ثوابت"
|
6123 |
|
6124 |
-
#: src/backup.php:
|
6125 |
msgid "Failed to open database file for reading:"
|
6126 |
msgstr "فشل في فتح ملف قاعدة البيانات للقراءة:"
|
6127 |
|
6128 |
-
#: src/backup.php:
|
6129 |
msgid "No database tables found"
|
6130 |
msgstr "لم نجد أي جداول لقاعدة البيانات"
|
6131 |
|
6132 |
-
#: src/backup.php:
|
6133 |
msgid "please wait for the rescheduled attempt"
|
6134 |
msgstr "فضلا انتظر محاولة إعادة الجدولة"
|
6135 |
|
@@ -6146,7 +6155,7 @@ msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبق
|
|
6146 |
msgid "Errors occurred:"
|
6147 |
msgstr "أخطاء حدثت:"
|
6148 |
|
6149 |
-
#: src/addons/wp-cli.php:752, src/admin.php:
|
6150 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
6151 |
msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
|
6152 |
|
@@ -6166,15 +6175,15 @@ msgstr "استرجاع (إذا لزم الأمر) وإعداد ملفات الن
|
|
6166 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
6167 |
msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %s ثانية فقط، ولا تسمح لوصول لهذا الحد. إن لم تتمكن من استرداد حجم كبير من البيانات بسبب هذا الحد، يمكنك الإتصال بشرك الإستضافة الخاصة بك (أو محاولة الإسترداد قطعة-قطعة)"
|
6168 |
|
6169 |
-
#: src/restorer.php:
|
6170 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
6171 |
msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
|
6172 |
|
6173 |
-
#: src/admin.php:1300, src/class-updraftplus.php:
|
6174 |
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)"
|
6175 |
msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
|
6176 |
|
6177 |
-
#: src/addons/migrator.php:
|
6178 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
6179 |
msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
|
6180 |
|
@@ -6187,11 +6196,11 @@ msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الم
|
|
6187 |
msgid "Messages:"
|
6188 |
msgstr "رسائل:"
|
6189 |
|
6190 |
-
#: src/restorer.php:
|
6191 |
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"
|
6192 |
msgstr "تم العثور على خط SQL أكبر من الحد الأقصى لحجم الحزمة ولا يمكن تقسيمها، هذا الخط لن نتمكن من معالجته، وسنقوم بإبعاده: %s"
|
6193 |
|
6194 |
-
#: src/restorer.php:
|
6195 |
msgid "The directory does not exist"
|
6196 |
msgstr "المجلد غير متوفر"
|
6197 |
|
@@ -6361,39 +6370,39 @@ msgstr "اعادة المحاولة..."
|
|
6361 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
6362 |
msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
|
6363 |
|
6364 |
-
#: src/admin.php:872, src/restorer.php:
|
6365 |
msgid "Error data:"
|
6366 |
msgstr "خطأ بالبيانات:"
|
6367 |
|
6368 |
-
#: src/admin.php:
|
6369 |
msgid "Backup does not exist in the backup history"
|
6370 |
msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
|
6371 |
|
6372 |
-
#: src/admin.php:
|
6373 |
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."
|
6374 |
msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
|
6375 |
|
6376 |
-
#: src/restorer.php:
|
6377 |
msgid "Split line to avoid exceeding maximum packet size"
|
6378 |
msgstr "تقسيم الخط لتفاذي الحجم الأقصى للحزم"
|
6379 |
|
6380 |
-
#: src/restorer.php:
|
6381 |
msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
|
6382 |
msgstr "المستخدم لا يمتلك صلاحيات لتحريك الجداول. سنحاول الإستعادة عن طريق إفراغ الجداول، يمكن لهذه العملية النجاح طالما أننا نستعيد من نسخة ووردبريس مع نفس بنية قاعدة البيانات (%s)"
|
6383 |
|
6384 |
-
#: src/restorer.php:
|
6385 |
msgid "Could not move the files into place. Check your file permissions."
|
6386 |
msgstr "لا يمكن نقل الملفات من مكانها. تحقق من أذونات الملف."
|
6387 |
|
6388 |
-
#: src/restorer.php:
|
6389 |
msgid "Could not move new files into place. Check your wp-content/upgrade folder."
|
6390 |
msgstr "لا يمكن نقل الملفات من مكانها. تحقق من المجلد wp-content/upgrade. "
|
6391 |
|
6392 |
-
#: src/restorer.php:
|
6393 |
msgid "Could not move old files out of the way."
|
6394 |
msgstr "لا يمكن نقل البيانات بعيدا."
|
6395 |
|
6396 |
-
#: src/restorer.php:
|
6397 |
msgid "Moving old data out of the way..."
|
6398 |
msgstr "نقل البيانات القديمة بعيدا ..."
|
6399 |
|
@@ -6405,11 +6414,11 @@ msgstr "إضافة عنوان آخر ..."
|
|
6405 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
6406 |
msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تقرير لها عند انتهاء مهمة النسخ الاحتياطي."
|
6407 |
|
6408 |
-
#: src/class-updraftplus.php:
|
6409 |
msgid "%s checksum: %s"
|
6410 |
msgstr "%s الاختباري:%s"
|
6411 |
|
6412 |
-
#: src/class-updraftplus.php:
|
6413 |
msgid "files: %s"
|
6414 |
msgstr "ملفات:%s"
|
6415 |
|
@@ -6421,7 +6430,7 @@ msgstr "استخدام قسم \"التقارير\" لتكوين عناوين ا
|
|
6421 |
msgid "Debugging information"
|
6422 |
msgstr "معلومات التصحيح"
|
6423 |
|
6424 |
-
#: src/addons/reporting.php:238, src/admin.php:
|
6425 |
msgid "Uploaded to:"
|
6426 |
msgstr "تحميلها على:"
|
6427 |
|
@@ -6466,7 +6475,7 @@ msgstr "%d الأخطاء، %d تحذيرات"
|
|
6466 |
msgid "%s authentication"
|
6467 |
msgstr "%s مصادقة"
|
6468 |
|
6469 |
-
#: src/addons/onedrive.php:891, src/class-updraftplus.php:
|
6470 |
#: src/methods/dropbox.php:267, src/methods/dropbox.php:757,
|
6471 |
#: src/methods/dropbox.php:814, src/methods/dropbox.php:828,
|
6472 |
#: src/methods/dropbox.php:848, src/methods/dropbox.php:1005
|
@@ -6489,13 +6498,13 @@ msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة ش
|
|
6489 |
msgid "Your site's admin email address (%s) will be used."
|
6490 |
msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
|
6491 |
|
6492 |
-
#: src/admin.php:913, src/admin.php:
|
6493 |
#: src/methods/updraftvault.php:411,
|
6494 |
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
6495 |
msgid "Connect"
|
6496 |
msgstr "الإتصال"
|
6497 |
|
6498 |
-
#: src/class-updraftplus.php:
|
6499 |
msgid "(version: %s)"
|
6500 |
msgstr "(الإصدار: %s)"
|
6501 |
|
@@ -6503,44 +6512,44 @@ msgstr "(الإصدار: %s)"
|
|
6503 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
6504 |
msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
|
6505 |
|
6506 |
-
#: src/addons/reporting.php:197, src/class-updraftplus.php:
|
6507 |
msgid "Latest status:"
|
6508 |
msgstr "آخر التحديثات:"
|
6509 |
|
6510 |
-
#: src/class-updraftplus.php:
|
6511 |
msgid "Backup contains:"
|
6512 |
msgstr "تحتوي النسخة الإحتياطية على:"
|
6513 |
|
6514 |
-
#: src/class-updraftplus.php:
|
6515 |
msgid "Backed up: %s"
|
6516 |
msgstr "نسخ احتياطي: %s"
|
6517 |
|
6518 |
-
#: src/addons/reporting.php:280, src/class-updraftplus.php:
|
6519 |
-
#: src/class-updraftplus.php:
|
6520 |
msgid "The log file has been attached to this email."
|
6521 |
msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
|
6522 |
|
6523 |
-
#: src/class-updraftplus.php:
|
6524 |
msgid "Unknown/unexpected error - please raise a support request"
|
6525 |
msgstr "خطأ غير معروف / غير متوقع - يرجى رفع طلب دعم"
|
6526 |
|
6527 |
-
#: src/class-updraftplus.php:
|
6528 |
msgid "Database only (files were not part of this particular schedule)"
|
6529 |
msgstr " قاعدة البيانات فقط (لن يتم خلق نسخ احتياطية للملفات)"
|
6530 |
|
6531 |
-
#: src/class-updraftplus.php:
|
6532 |
msgid "Database (files backup has not completed)"
|
6533 |
msgstr "قاعدة بيانات (لم يتم إكمال نسخ الملفات احتياطيا)"
|
6534 |
|
6535 |
-
#: src/class-updraftplus.php:
|
6536 |
msgid "Files only (database was not part of this particular schedule)"
|
6537 |
msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقاعدة البيانات)"
|
6538 |
|
6539 |
-
#: src/class-updraftplus.php:
|
6540 |
msgid "Files (database backup has not completed)"
|
6541 |
msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
|
6542 |
|
6543 |
-
#: src/admin.php:384, src/class-updraftplus.php:
|
6544 |
msgid "Files and database"
|
6545 |
msgstr "ملفات وقواعد البيانات"
|
6546 |
|
@@ -6628,7 +6637,7 @@ msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
|
|
6628 |
msgid "Reporting"
|
6629 |
msgstr "التقارير"
|
6630 |
|
6631 |
-
#: src/admin.php:
|
6632 |
msgid "Options (raw)"
|
6633 |
msgstr "خيارات (الخام)"
|
6634 |
|
@@ -6636,19 +6645,19 @@ msgstr "خيارات (الخام)"
|
|
6636 |
msgid "Send a report only when there are warnings/errors"
|
6637 |
msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
|
6638 |
|
6639 |
-
#: src/restorer.php:
|
6640 |
msgid "Content URL:"
|
6641 |
msgstr "رابط المحتوى:"
|
6642 |
|
6643 |
-
#: src/restorer.php:
|
6644 |
msgid "You should check the file ownerships and permissions in your WordPress installation"
|
6645 |
msgstr ""
|
6646 |
|
6647 |
-
#: src/backup.php:
|
6648 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
6649 |
msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
|
6650 |
|
6651 |
-
#: src/class-updraftplus.php:
|
6652 |
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)"
|
6653 |
msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
|
6654 |
|
@@ -6724,19 +6733,19 @@ msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتب
|
|
6724 |
msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
|
6725 |
msgstr ""
|
6726 |
|
6727 |
-
#: src/admin.php:
|
6728 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
6729 |
msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
|
6730 |
|
6731 |
-
#: src/admin.php:
|
6732 |
msgid "Forgotten your details?"
|
6733 |
msgstr "هل نسيت التفاصيل الخاصة بك؟"
|
6734 |
|
6735 |
-
#: src/admin.php:
|
6736 |
msgid "Not yet got an account (it's free)? Go get one!"
|
6737 |
msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
|
6738 |
|
6739 |
-
#: src/admin.php:
|
6740 |
msgid "Connect with your UpdraftPlus.Com account"
|
6741 |
msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
|
6742 |
|
@@ -6799,7 +6808,7 @@ msgstr ""
|
|
6799 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
6800 |
msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
|
6801 |
|
6802 |
-
#: src/restorer.php:
|
6803 |
msgid "Site home:"
|
6804 |
msgstr "الصفحة الرئيسية للموقع:"
|
6805 |
|
@@ -6824,11 +6833,11 @@ msgstr "فشل التحميل"
|
|
6824 |
msgid "You can send a backup to more than one destination with Premium."
|
6825 |
msgstr ""
|
6826 |
|
6827 |
-
#: src/admin.php:
|
6828 |
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."
|
6829 |
msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
|
6830 |
|
6831 |
-
#: src/admin.php:
|
6832 |
msgid "(%s%%, file %s of %s)"
|
6833 |
msgstr "(%s%%, ملف %s من%s)"
|
6834 |
|
@@ -6869,11 +6878,11 @@ msgstr "النسخ الأحتياطى من: %s"
|
|
6869 |
msgid "%s settings test result:"
|
6870 |
msgstr "اعدادات نتيجة اختبار %s"
|
6871 |
|
6872 |
-
#: src/admin.php:
|
6873 |
msgid "(Not finished)"
|
6874 |
msgstr "(غير منتهي)"
|
6875 |
|
6876 |
-
#: src/admin.php:
|
6877 |
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."
|
6878 |
msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
|
6879 |
|
@@ -6885,69 +6894,69 @@ msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل ا
|
|
6885 |
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)."
|
6886 |
msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
|
6887 |
|
6888 |
-
#: src/admin.php:
|
6889 |
msgid "Job ID: %s"
|
6890 |
msgstr "رقم الوظيفة: %s"
|
6891 |
|
6892 |
-
#: src/admin.php:
|
6893 |
msgid "last activity: %ss ago"
|
6894 |
msgstr "آخر نشاط: منذ %ss"
|
6895 |
|
6896 |
-
#: src/admin.php:
|
6897 |
msgid "next resumption: %d (after %ss)"
|
6898 |
msgstr "الاستئناف التالي: %d (بعد %ss)"
|
6899 |
|
6900 |
-
#: src/admin.php:
|
6901 |
#: src/methods/updraftvault.php:459, src/methods/updraftvault.php:506,
|
6902 |
#: src/methods/updraftvault.php:594
|
6903 |
msgid "Unknown"
|
6904 |
msgstr "غير معروف"
|
6905 |
|
6906 |
-
#: src/admin.php:
|
6907 |
msgid "Backup finished"
|
6908 |
msgstr "الانتهاء من النسخ الاحتياطي"
|
6909 |
|
6910 |
-
#: src/admin.php:
|
6911 |
msgid "Waiting until scheduled time to retry because of errors"
|
6912 |
msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
|
6913 |
|
6914 |
-
#: src/admin.php:
|
6915 |
msgid "Pruning old backup sets"
|
6916 |
msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
|
6917 |
|
6918 |
-
#: src/admin.php:
|
6919 |
msgid "Uploading files to remote storage"
|
6920 |
msgstr "تحميل الملفات للمخزن البعيد"
|
6921 |
|
6922 |
-
#: src/admin.php:
|
6923 |
msgid "Encrypted database"
|
6924 |
msgstr "قاعدة بيانات مشفرة"
|
6925 |
|
6926 |
-
#: src/admin.php:
|
6927 |
msgid "Encrypting database"
|
6928 |
msgstr "تشفير قاعدة البيانات"
|
6929 |
|
6930 |
-
#: src/admin.php:
|
6931 |
msgid "Created database backup"
|
6932 |
msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
|
6933 |
|
6934 |
-
#: src/admin.php:
|
6935 |
msgid "table: %s"
|
6936 |
msgstr "الجدول: %s"
|
6937 |
|
6938 |
-
#: src/admin.php:
|
6939 |
msgid "Creating database backup"
|
6940 |
msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
|
6941 |
|
6942 |
-
#: src/admin.php:
|
6943 |
msgid "Created file backup zips"
|
6944 |
msgstr "تم انشاء ملف النسخ الاحتياطى zips"
|
6945 |
|
6946 |
-
#: src/admin.php:
|
6947 |
msgid "Creating file backup zips"
|
6948 |
msgstr "انشاء ملف النسخ الاحتياطى zips"
|
6949 |
|
6950 |
-
#: src/admin.php:
|
6951 |
msgid "Backup begun"
|
6952 |
msgstr "بدأ النسخ الاحتياطى"
|
6953 |
|
@@ -6955,23 +6964,23 @@ msgstr "بدأ النسخ الاحتياطى"
|
|
6955 |
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."
|
6956 |
msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
|
6957 |
|
6958 |
-
#: src/restorer.php:
|
6959 |
msgid "file"
|
6960 |
msgstr "ملف"
|
6961 |
|
6962 |
-
#: src/addons/onedrive.php:1243, src/restorer.php:
|
6963 |
msgid "folder"
|
6964 |
msgstr "مجلد"
|
6965 |
|
6966 |
-
#: src/restorer.php:
|
6967 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
6968 |
msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
|
6969 |
|
6970 |
-
#: src/class-updraftplus.php:
|
6971 |
msgid "The backup has not finished; a resumption is scheduled"
|
6972 |
msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
|
6973 |
|
6974 |
-
#: src/class-updraftplus.php:
|
6975 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
6976 |
msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
|
6977 |
|
@@ -6980,7 +6989,7 @@ msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثي
|
|
6980 |
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)."
|
6981 |
msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
|
6982 |
|
6983 |
-
#: src/admin.php:
|
6984 |
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)."
|
6985 |
msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
|
6986 |
|
@@ -7060,23 +7069,23 @@ msgstr "مزيد من الإضافات"
|
|
7060 |
msgid "Support"
|
7061 |
msgstr "الدعم الفني"
|
7062 |
|
7063 |
-
#: src/class-updraftplus.php:
|
7064 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
7065 |
msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
|
7066 |
|
7067 |
-
#: src/class-updraftplus.php:
|
7068 |
msgid "This database backup is missing core WordPress tables: %s"
|
7069 |
msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
|
7070 |
|
7071 |
-
#: src/class-updraftplus.php:
|
7072 |
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."
|
7073 |
msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
|
7074 |
|
7075 |
-
#: src/class-updraftplus.php:
|
7076 |
msgid "%s version: %s"
|
7077 |
msgstr "%s النسخة: %s"
|
7078 |
|
7079 |
-
#: src/class-updraftplus.php:
|
7080 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
7081 |
msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
|
7082 |
|
@@ -7084,7 +7093,7 @@ msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقا
|
|
7084 |
msgid "Be safe with an automatic backup"
|
7085 |
msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
|
7086 |
|
7087 |
-
#: src/admin.php:
|
7088 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7089 |
msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
|
7090 |
|
@@ -7136,7 +7145,7 @@ msgstr "حذف من خادم الويب الخاص بك"
|
|
7136 |
msgid "Examples of S3-compatible storage providers:"
|
7137 |
msgstr "امثلة من مقدمى التخزين المتوافق-s3:"
|
7138 |
|
7139 |
-
#: src/admin.php:
|
7140 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
7141 |
msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
|
7142 |
|
@@ -7198,11 +7207,11 @@ msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احت
|
|
7198 |
msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
|
7199 |
msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
|
7200 |
|
7201 |
-
#: src/restorer.php:
|
7202 |
msgid "Moving unpacked backup into place..."
|
7203 |
msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
|
7204 |
|
7205 |
-
#: src/backup.php:
|
7206 |
msgid "Failed to open the zip file (%s) - %s"
|
7207 |
msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
|
7208 |
|
@@ -7227,11 +7236,11 @@ msgstr "S3 (متوافق)"
|
|
7227 |
msgid "File is not locally present - needs retrieving from remote storage"
|
7228 |
msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
|
7229 |
|
7230 |
-
#: src/restorer.php:
|
7231 |
msgid "Looking for %s archive: file name: %s"
|
7232 |
msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
|
7233 |
|
7234 |
-
#: src/restorer.php:
|
7235 |
msgid "Final checks"
|
7236 |
msgstr "الفحوصات النهائية"
|
7237 |
|
@@ -7243,7 +7252,7 @@ msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأح
|
|
7243 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
7244 |
msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
|
7245 |
|
7246 |
-
#: src/admin.php:
|
7247 |
msgid "Your wp-content directory server path: %s"
|
7248 |
msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
|
7249 |
|
@@ -7264,15 +7273,15 @@ msgstr "تجهيز الملفات - يرجى الأنتظار..."
|
|
7264 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
7265 |
msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
|
7266 |
|
7267 |
-
#: src/class-updraftplus.php:
|
7268 |
msgid "Failed to open database file."
|
7269 |
msgstr "فشل فى فتح ملف قاعدة البيانات."
|
7270 |
|
7271 |
-
#: src/admin.php:
|
7272 |
msgid "Known backups (raw)"
|
7273 |
msgstr "النسخ الأحتياطى المعروفة (الخام)"
|
7274 |
|
7275 |
-
#: src/restorer.php:
|
7276 |
msgid "Files found:"
|
7277 |
msgstr "العثور على ملفات:"
|
7278 |
|
@@ -7280,23 +7289,23 @@ msgstr "العثور على ملفات:"
|
|
7280 |
msgid "Restoring table: %s"
|
7281 |
msgstr ""
|
7282 |
|
7283 |
-
#: src/restorer.php:
|
7284 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
7285 |
msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
|
7286 |
|
7287 |
-
#: src/restorer.php:
|
7288 |
msgid "file is size:"
|
7289 |
msgstr "حجم الملف:"
|
7290 |
|
7291 |
-
#: src/addons/googlecloud.php:1067, src/addons/migrator.php:
|
7292 |
-
#: src/addons/migrator.php:
|
7293 |
-
#: src/admin.php:1305, src/admin.php:
|
7294 |
-
#: src/backup.php:
|
7295 |
-
#: src/class-updraftplus.php:
|
7296 |
msgid "Go here for more information."
|
7297 |
msgstr "اذهب هنا لمزيد من المعلومات."
|
7298 |
|
7299 |
-
#: src/admin.php:
|
7300 |
msgid "Warning: If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7301 |
msgstr ""
|
7302 |
|
@@ -7304,7 +7313,7 @@ msgstr ""
|
|
7304 |
msgid "Some files are still downloading or being processed - please wait."
|
7305 |
msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
|
7306 |
|
7307 |
-
#: src/class-updraftplus.php:
|
7308 |
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."
|
7309 |
msgstr ""
|
7310 |
|
@@ -7346,7 +7355,7 @@ msgstr "خطأ %s"
|
|
7346 |
msgid "%s error - failed to upload file"
|
7347 |
msgstr "خطأ %s - فشل فى ارسال الملف"
|
7348 |
|
7349 |
-
#: src/class-updraftplus.php:
|
7350 |
msgid "%s error - failed to re-assemble chunks"
|
7351 |
msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
|
7352 |
|
@@ -7357,77 +7366,77 @@ msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
|
|
7357 |
msgid "%s authentication failed"
|
7358 |
msgstr "المصادقة فشلت %s"
|
7359 |
|
7360 |
-
#: src/addons/googlecloud.php:475, src/addons/migrator.php:
|
7361 |
#: src/admin.php:2605, src/admin.php:2626, src/admin.php:2634,
|
7362 |
-
#: src/class-updraftplus.php:
|
7363 |
-
#: src/class-updraftplus.php:
|
7364 |
-
#: src/class-updraftplus.php:
|
7365 |
-
#: src/class-updraftplus.php:
|
7366 |
#: src/methods/s3.php:383
|
7367 |
msgid "Error: %s"
|
7368 |
msgstr "خطأ: %s"
|
7369 |
|
7370 |
-
#: src/admin.php:
|
7371 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
7372 |
msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
|
7373 |
|
7374 |
-
#: src/admin.php:
|
7375 |
msgid "Backup directory specified does <b>not</b> exist."
|
7376 |
msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
|
7377 |
|
7378 |
-
#: src/admin.php:
|
7379 |
msgid "Warning: %s"
|
7380 |
msgstr "تحذير: %s"
|
7381 |
|
7382 |
-
#: src/backup.php:
|
7383 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
7384 |
msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
|
7385 |
|
7386 |
-
#: src/backup.php:
|
7387 |
msgid "%s: unreadable file - could not be backed up"
|
7388 |
msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
|
7389 |
|
7390 |
-
#: src/backup.php:
|
7391 |
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."
|
7392 |
msgstr ""
|
7393 |
|
7394 |
-
#: src/backup.php:
|
7395 |
msgid "An error occurred whilst closing the final database file"
|
7396 |
msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
|
7397 |
|
7398 |
-
#: src/class-updraftplus.php:
|
7399 |
msgid "Warnings encountered:"
|
7400 |
msgstr "مصادفة تحذيرات:"
|
7401 |
|
7402 |
-
#: src/class-updraftplus.php:
|
7403 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
7404 |
msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
|
7405 |
|
7406 |
-
#: src/class-updraftplus.php:
|
7407 |
msgid "Your free disk space is very low - only %s Mb remain"
|
7408 |
msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
|
7409 |
|
7410 |
-
#: src/addons/migrator.php:
|
7411 |
msgid "New site:"
|
7412 |
msgstr "الموقع الجديد:"
|
7413 |
|
7414 |
-
#: src/addons/migrator.php:
|
7415 |
msgid "Migrated site (from UpdraftPlus)"
|
7416 |
msgstr "المواقع المدمجة (من UpdraftPlus)"
|
7417 |
|
7418 |
-
#: src/addons/migrator.php:
|
7419 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
7420 |
msgstr "ادخل تفاصيل عن مكان هذا الموقع الجديد ضمن المواقع المتعددة الخاصة بك:"
|
7421 |
|
7422 |
-
#: src/addons/migrator.php:
|
7423 |
msgid "Information needed to continue:"
|
7424 |
msgstr "المعلومات اللازمة للأستمرار:"
|
7425 |
|
7426 |
-
#: src/addons/migrator.php:
|
7427 |
msgid "Network activating theme:"
|
7428 |
msgstr "تفعيل ثيم الشبكة:"
|
7429 |
|
7430 |
-
#: src/addons/migrator.php:
|
7431 |
msgid "Processed plugin:"
|
7432 |
msgstr "المكون الأضافى:"
|
7433 |
|
@@ -7451,33 +7460,33 @@ msgstr "يرجى التحقق من وصول بيانات الأعتماد."
|
|
7451 |
msgid "The error reported by %s was:"
|
7452 |
msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
|
7453 |
|
7454 |
-
#: src/restorer.php:
|
7455 |
msgid "Please supply the requested information, and then continue."
|
7456 |
msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
|
7457 |
|
7458 |
-
#: src/class-updraftplus.php:
|
7459 |
msgid "Site information:"
|
7460 |
msgstr "معلومات عن الموقع:"
|
7461 |
|
7462 |
-
#: src/restorer.php:
|
7463 |
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."
|
7464 |
msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
|
7465 |
|
7466 |
-
#: src/admin.php:1044, src/admin.php:
|
7467 |
-
#: src/restorer.php:
|
7468 |
msgid "Warning:"
|
7469 |
msgstr "تحذير:"
|
7470 |
|
7471 |
-
#: src/class-updraftplus.php:
|
7472 |
-
#: src/restorer.php:
|
7473 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
7474 |
msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
|
7475 |
|
7476 |
-
#: src/restorer.php:
|
7477 |
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."
|
7478 |
msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
|
7479 |
|
7480 |
-
#: src/addons/azure.php:604, src/admin.php:
|
7481 |
#: src/methods/updraftvault.php:343
|
7482 |
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."
|
7483 |
msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
|
@@ -7521,7 +7530,7 @@ msgstr ""
|
|
7521 |
msgid "Also delete from remote storage"
|
7522 |
msgstr "حذف ايضاً من التخزين البعيد"
|
7523 |
|
7524 |
-
#: src/admin.php:
|
7525 |
msgid "Latest UpdraftPlus.com news:"
|
7526 |
msgstr "اخر اخبار UpdraftPlus.com:"
|
7527 |
|
@@ -7538,7 +7547,7 @@ msgstr "اخبار"
|
|
7538 |
msgid "Backup set not found"
|
7539 |
msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
|
7540 |
|
7541 |
-
#: src/backup.php:
|
7542 |
msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
|
7543 |
msgstr "%s - لا يمكن دعم هذا الكيان; دليل المقابلة غير موجود (%s)"
|
7544 |
|
@@ -7573,7 +7582,7 @@ msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد م
|
|
7573 |
msgid "Notice"
|
7574 |
msgstr "ملاحظة"
|
7575 |
|
7576 |
-
#: src/class-updraftplus.php:
|
7577 |
msgid "Errors encountered:"
|
7578 |
msgstr "مصادفة اخطاء:"
|
7579 |
|
@@ -7605,65 +7614,67 @@ msgstr "\"%s\" لا يوجد لدية مفتاح اساسى, تحتاج الى
|
|
7605 |
msgid "rows: %d"
|
7606 |
msgstr "الصفوف: %d"
|
7607 |
|
7608 |
-
#: src/addons/migrator.php:
|
7609 |
msgid "Time taken (seconds):"
|
7610 |
msgstr "الوقت المستغرق (ثانية):"
|
7611 |
|
7612 |
-
#: src/addons/migrator.php:
|
7613 |
msgid "Errors:"
|
7614 |
msgstr "الأخطاء:"
|
7615 |
|
7616 |
-
#: src/addons/migrator.php:
|
7617 |
msgid "SQL update commands run:"
|
7618 |
msgstr "تشغيل اوامر تحديث SQL:"
|
7619 |
|
7620 |
-
#: src/addons/migrator.php:
|
7621 |
msgid "Changes made:"
|
7622 |
msgstr "التغييرات التي تم إجراؤها:"
|
7623 |
|
7624 |
-
#: src/addons/migrator.php:
|
7625 |
msgid "Rows examined:"
|
7626 |
msgstr "فحص الصفوف:"
|
7627 |
|
7628 |
-
#: src/addons/migrator.php:
|
7629 |
msgid "Tables examined:"
|
7630 |
msgstr "فحص الجداول:"
|
7631 |
|
7632 |
-
#: src/addons/migrator.php:
|
7633 |
msgid "Could not get list of tables"
|
7634 |
msgstr "لا يمكن الحصول على قائمة الجداول"
|
7635 |
|
7636 |
-
#: src/addons/migrator.php:
|
7637 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
7638 |
msgstr "تحذير: رابط موقع قواعد البيانات (%s) يختلف عن ما كنا نتوقعة (%s)"
|
7639 |
|
7640 |
-
#: src/addons/migrator.php:
|
7641 |
msgid "Nothing to do: the site URL is already: %s"
|
7642 |
msgstr "لا شئ لعملة: رابط الموقع بالفعل: %s"
|
7643 |
|
7644 |
-
#: src/addons/migrator.php:
|
7645 |
-
#: src/addons/migrator.php:
|
7646 |
-
#: src/addons/migrator.php:
|
7647 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
7648 |
msgstr "خطأ: معلمة فارغة غير متوقعة (%s, %s)"
|
7649 |
|
7650 |
-
#: src/addons/migrator.php:
|
7651 |
msgid "Database: search and replace site URL"
|
7652 |
msgstr "قاعدة البيانات: بحث واستبدال عنوان الموقع"
|
7653 |
|
7654 |
-
#: src/addons/migrator.php:
|
|
|
7655 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
7656 |
msgstr "فشل: لم نستطع فهم نتيجة العملية بواسطة %s ."
|
7657 |
|
7658 |
-
#: src/addons/migrator.php:
|
|
|
7659 |
msgid "Failed: the %s operation was not able to start."
|
7660 |
msgstr "فشل: العملية %s لم تكن قادرة على البدأ."
|
7661 |
|
7662 |
-
#: src/addons/migrator.php:
|
7663 |
msgid "Search and replace site location in the database (migrate)"
|
7664 |
msgstr "بحث واستبدال قاعدة البيانات فى الموقع (ترحيل)"
|
7665 |
|
7666 |
-
#: src/addons/migrator.php:
|
7667 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
7668 |
msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
|
7669 |
|
@@ -7671,7 +7682,7 @@ msgstr "سيتم استبدال كافة المراجع الى الموقع فى
|
|
7671 |
msgid "Blog uploads"
|
7672 |
msgstr "مدونة الملفات المرفوعة"
|
7673 |
|
7674 |
-
#: src/addons/migrator.php:
|
7675 |
msgid "Must-use plugins"
|
7676 |
msgstr "لابد من استخدام الأضافات"
|
7677 |
|
@@ -7709,7 +7720,7 @@ msgstr "مسار الدليل"
|
|
7709 |
|
7710 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:265,
|
7711 |
#: src/addons/sftp.php:496, src/addons/webdav.php:248, src/admin.php:1032,
|
7712 |
-
#: src/admin.php:
|
7713 |
#: src/methods/updraftvault.php:410,
|
7714 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
7715 |
msgid "Password"
|
@@ -7778,8 +7789,8 @@ msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الد
|
|
7778 |
|
7779 |
#: src/addons/googlecloud.php:809, src/addons/googlecloud.php:843,
|
7780 |
#: src/addons/googlecloud.php:849, src/addons/sftp.php:591,
|
7781 |
-
#: src/addons/webdav.php:325, src/admin.php:
|
7782 |
-
#: src/admin.php:
|
7783 |
msgid "Failed"
|
7784 |
msgstr "فشل"
|
7785 |
|
@@ -7981,7 +7992,7 @@ msgstr "اسم المستخدم"
|
|
7981 |
msgid "API key"
|
7982 |
msgstr "مفتاح API"
|
7983 |
|
7984 |
-
#: src/addons/migrator.php:
|
7985 |
#: src/addons/moredatabase.php:115, src/addons/moredatabase.php:117,
|
7986 |
#: src/addons/sftp.php:560, src/addons/sftp.php:564, src/addons/sftp.php:568,
|
7987 |
#: src/addons/webdav.php:316, src/admin.php:927,
|
@@ -8031,8 +8042,8 @@ msgstr ""
|
|
8031 |
msgid "Test %s Settings"
|
8032 |
msgstr "اختبار %s الإعدادات"
|
8033 |
|
8034 |
-
#: src/addons/webdav.php:638, src/class-updraftplus.php:
|
8035 |
-
#: src/class-updraftplus.php:
|
8036 |
msgid "Error opening local file: Failed to download"
|
8037 |
msgstr "خطأ في فتح ملف محلي: فشل التحميل"
|
8038 |
|
@@ -8041,7 +8052,7 @@ msgstr "خطأ في فتح ملف محلي: فشل التحميل"
|
|
8041 |
msgid "%s Error: Failed to upload"
|
8042 |
msgstr "%s خطأ: فشل في تحميل"
|
8043 |
|
8044 |
-
#: src/class-updraftplus.php:
|
8045 |
msgid "%s Error: Failed to open local file"
|
8046 |
msgstr "%s خطأ: فشل في فتح ملف محلي"
|
8047 |
|
@@ -8150,120 +8161,120 @@ msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها
|
|
8150 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
8151 |
msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
|
8152 |
|
8153 |
-
#: src/admin.php:
|
8154 |
#: src/includes/class-remote-send.php:441,
|
8155 |
-
#: src/includes/class-storage-methods-interface.php:323, src/restorer.php:
|
8156 |
-
#: src/restorer.php:
|
8157 |
msgid "OK"
|
8158 |
msgstr "حسنا"
|
8159 |
|
8160 |
-
#: src/restorer.php:
|
8161 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
8162 |
msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
|
8163 |
|
8164 |
-
#: src/includes/class-search-replace.php:496, src/restorer.php:
|
8165 |
msgid "the database query being run was:"
|
8166 |
msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
8167 |
|
8168 |
-
#: src/restorer.php:
|
8169 |
msgid "will restore as:"
|
8170 |
msgstr "إستعادة على النحو التالي:"
|
8171 |
|
8172 |
-
#: src/class-updraftplus.php:
|
8173 |
-
#: src/restorer.php:
|
8174 |
msgid "Old table prefix:"
|
8175 |
msgstr "بادئة الجدول القديمة:"
|
8176 |
|
8177 |
#: src/addons/reporting.php:87, src/addons/reporting.php:196,
|
8178 |
-
#: src/class-updraftplus.php:
|
8179 |
msgid "Backup of:"
|
8180 |
msgstr "نسخة احتياطية لـ:"
|
8181 |
|
8182 |
-
#: src/restorer.php:
|
8183 |
msgid "Failed to open database file"
|
8184 |
msgstr "فشل في فتح ملف قاعدة البيانات"
|
8185 |
|
8186 |
-
#: src/restorer.php:
|
8187 |
msgid "Failed to find database file"
|
8188 |
msgstr "فشل في العثور على ملف قاعدة البيانات"
|
8189 |
|
8190 |
-
#: src/restorer.php:
|
8191 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
8192 |
msgstr "تحذير: PHP safe_mode نشط بخادمكم. سنكون عرضة لحالة المهلات بكثرة. ان حدث هذا المشكل بالفعل، ستكون مضطر للإسترجاع الملف من phpMyAdmin أو بطريقة أخرى."
|
8193 |
|
8194 |
-
#: src/restorer.php:
|
8195 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
8196 |
msgstr "wp-config.php من النسخ الإحتياطية: إستعادة (بناءا على طلب السمتخدم)"
|
8197 |
|
8198 |
-
#: src/restorer.php:
|
8199 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
8200 |
msgstr "wp-config.php من النسخ الاحتياطي: سيتم إستعادته كمسمى wp-config-backup.php"
|
8201 |
|
8202 |
-
#: src/restorer.php:
|
8203 |
msgid "Failed to write out the decrypted database to the filesystem"
|
8204 |
msgstr "فشل في كتابة قاعدة البيانات مفككت التشفير لنظام الملفات"
|
8205 |
|
8206 |
-
#: src/restorer.php:
|
8207 |
msgid "Failed to create a temporary directory"
|
8208 |
msgstr "فشل في إنشاء دليل مؤقت"
|
8209 |
|
8210 |
-
#: src/restorer.php:
|
8211 |
msgid "Failed to delete working directory after restoring."
|
8212 |
msgstr "فشل في حذف دليل العمل بعد الإستعادة."
|
8213 |
|
8214 |
-
#: src/restorer.php:
|
8215 |
msgid "Cleaning up rubbish..."
|
8216 |
msgstr "تنظيف القمامة ..."
|
8217 |
|
8218 |
-
#: src/restorer.php:
|
8219 |
msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
|
8220 |
msgstr "استرجاع قاعدة البيانات (بالمواقع الكبيرة ستأخد هذه العملية وقت طويل - ان واجهت مشكل انقضاء المهلة (سببه نقص في استخدام موارد السيرفر للإستضافة) يمكنك استخدام طريقة أخرى، كـ phpMyAdmin)"
|
8221 |
|
8222 |
-
#: src/restorer.php:
|
8223 |
msgid "Database successfully decrypted."
|
8224 |
msgstr "تم فك تشفير قاعدة البيانات بنجاح."
|
8225 |
|
8226 |
-
#: src/restorer.php:
|
8227 |
msgid "Decrypting database (can take a while)..."
|
8228 |
msgstr "فك تشفير قاعدة البيانات (يمكن أن يستغرق بعض الوقت) ..."
|
8229 |
|
8230 |
-
#: src/restorer.php:
|
8231 |
msgid "Unpacking backup..."
|
8232 |
msgstr "تفريغ النسخ الاحتياطي ..."
|
8233 |
|
8234 |
-
#: src/restorer.php:
|
8235 |
msgid "Copying this entity failed."
|
8236 |
msgstr "فشل نسخ هذا الكيان."
|
8237 |
|
8238 |
-
#: src/restorer.php:
|
8239 |
msgid "Backup file not available."
|
8240 |
msgstr "ملف النسخ الاحتياطي غير متوفر."
|
8241 |
|
8242 |
-
#: src/restorer.php:
|
8243 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
8244 |
msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
|
8245 |
|
8246 |
-
#: src/restorer.php:
|
8247 |
msgid "Could not read one of the files for restoration"
|
8248 |
msgstr ""
|
8249 |
|
8250 |
-
#: src/restorer.php:
|
8251 |
msgid "Error message"
|
8252 |
msgstr "رسالة الخطأ"
|
8253 |
|
8254 |
-
#: src/restorer.php:
|
8255 |
msgid "The backup records do not contain information about the proper size of this file."
|
8256 |
msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
|
8257 |
|
8258 |
-
#: src/restorer.php:
|
8259 |
msgid "Archive is expected to be size:"
|
8260 |
msgstr "من المتوقع أن يكون حجم الأرشيف:"
|
8261 |
|
8262 |
-
#: src/admin.php:
|
8263 |
msgid "If making a request for support, please include this information:"
|
8264 |
msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
|
8265 |
|
8266 |
-
#: src/admin.php:
|
8267 |
msgid "ABORT: Could not find the information on which entities to restore."
|
8268 |
msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
|
8269 |
|
@@ -8271,27 +8282,27 @@ msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكي
|
|
8271 |
msgid "UpdraftPlus Restoration: Progress"
|
8272 |
msgstr "استرجاع UpdraftPlus: تقدم"
|
8273 |
|
8274 |
-
#: src/admin.php:
|
8275 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
8276 |
msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
|
8277 |
|
8278 |
-
#: src/admin.php:
|
8279 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
8280 |
msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
|
8281 |
|
8282 |
-
#: src/admin.php:
|
8283 |
msgid "Delete this backup set"
|
8284 |
msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
|
8285 |
|
8286 |
-
#: src/admin.php:
|
8287 |
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."
|
8288 |
msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
|
8289 |
|
8290 |
-
#: src/admin.php:
|
8291 |
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."
|
8292 |
msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
|
8293 |
|
8294 |
-
#: src/admin.php:
|
8295 |
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)."
|
8296 |
msgstr ""
|
8297 |
|
@@ -8332,19 +8343,19 @@ msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من
|
|
8332 |
msgid "Use the server's SSL certificates"
|
8333 |
msgstr "استخدام شهادات SSL للملقم"
|
8334 |
|
8335 |
-
#: src/admin.php:
|
8336 |
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."
|
8337 |
msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
|
8338 |
|
8339 |
-
#: src/admin.php:
|
8340 |
msgid "or, to reset this option"
|
8341 |
msgstr "أو، لإعادة هذا الخيار"
|
8342 |
|
8343 |
-
#: src/admin.php:
|
8344 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
8345 |
msgstr ""
|
8346 |
|
8347 |
-
#: src/admin.php:
|
8348 |
msgid "Backup directory specified is writable, which is good."
|
8349 |
msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
|
8350 |
|
@@ -8386,7 +8397,7 @@ msgid "Cancel"
|
|
8386 |
msgstr "إلغاء"
|
8387 |
|
8388 |
#: src/addons/incremental.php:330, src/addons/incremental.php:338,
|
8389 |
-
#: src/addons/reporting.php:260, src/admin.php:
|
8390 |
msgid "None"
|
8391 |
msgstr "لا شيء"
|
8392 |
|
@@ -8402,7 +8413,7 @@ msgstr "فك تشفير ملف النسخ الاحتياطي لقاعدة الب
|
|
8402 |
msgid "Database encryption phrase"
|
8403 |
msgstr "عبارة تشفير قاعدة البيانات"
|
8404 |
|
8405 |
-
#: src/admin.php:
|
8406 |
#: src/templates/wp-admin/settings/form-contents.php:256,
|
8407 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
8408 |
msgid "Email"
|
@@ -8416,7 +8427,7 @@ msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلد
|
|
8416 |
msgid "Exclude these:"
|
8417 |
msgstr "استبعاد هذه:"
|
8418 |
|
8419 |
-
#: src/admin.php:
|
8420 |
msgid "Any other directories found inside wp-content"
|
8421 |
msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
|
8422 |
|
@@ -8437,22 +8448,22 @@ msgid "Database backup interval"
|
|
8437 |
msgstr ""
|
8438 |
|
8439 |
#: src/addons/incremental.php:334, src/addons/incremental.php:347,
|
8440 |
-
#: src/admin.php:
|
8441 |
msgid "Monthly"
|
8442 |
msgstr "شهريا"
|
8443 |
|
8444 |
#: src/addons/incremental.php:333, src/addons/incremental.php:346,
|
8445 |
-
#: src/admin.php:
|
8446 |
msgid "Fortnightly"
|
8447 |
msgstr "نصف شهري"
|
8448 |
|
8449 |
#: src/addons/incremental.php:332, src/addons/incremental.php:345,
|
8450 |
-
#: src/admin.php:
|
8451 |
msgid "Weekly"
|
8452 |
msgstr "أسبوعيا"
|
8453 |
|
8454 |
#: src/addons/incremental.php:331, src/addons/incremental.php:344,
|
8455 |
-
#: src/admin.php:
|
8456 |
msgid "Daily"
|
8457 |
msgstr "يوميا"
|
8458 |
|
@@ -8460,30 +8471,30 @@ msgstr "يوميا"
|
|
8460 |
msgid "Files backup interval"
|
8461 |
msgstr ""
|
8462 |
|
8463 |
-
#: src/admin.php:909, src/admin.php:
|
8464 |
msgid "Download log file"
|
8465 |
msgstr "تحميل ملف السجل"
|
8466 |
|
8467 |
-
#: src/admin.php:
|
8468 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
8469 |
msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
|
8470 |
|
8471 |
-
#: src/admin.php:
|
8472 |
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"
|
8473 |
msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
|
8474 |
|
8475 |
-
#: src/admin.php:
|
8476 |
msgid "The request to the filesystem to create the directory failed."
|
8477 |
msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
|
8478 |
|
8479 |
-
#: src/admin.php:900, src/admin.php:
|
8480 |
-
#: src/admin.php:
|
8481 |
#: src/templates/wp-admin/settings/existing-backups-table.php:167,
|
8482 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
8483 |
msgid "Delete"
|
8484 |
msgstr "حذف"
|
8485 |
|
8486 |
-
#: src/admin.php:
|
8487 |
msgid "show log"
|
8488 |
msgstr "عرض السجل"
|
8489 |
|
@@ -8548,7 +8559,7 @@ msgstr "لا"
|
|
8548 |
msgid "Yes"
|
8549 |
msgstr "نعم"
|
8550 |
|
8551 |
-
#: src/admin.php:
|
8552 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
8553 |
#: src/templates/wp-admin/advanced/site-info.php:64,
|
8554 |
#: src/templates/wp-admin/advanced/site-info.php:72,
|
@@ -8580,7 +8591,7 @@ msgstr "مواقع متعددة"
|
|
8580 |
msgid "Do read this helpful article of useful things to know before restoring."
|
8581 |
msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
|
8582 |
|
8583 |
-
#: src/class-updraftplus.php:
|
8584 |
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"
|
8585 |
msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
|
8586 |
|
@@ -8622,8 +8633,8 @@ msgid "Download error: the server sent us a response which we did not understand
|
|
8622 |
msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
|
8623 |
|
8624 |
#: src/addons/backblaze.php:205, src/addons/backblaze.php:230,
|
8625 |
-
#: src/addons/cloudfiles-enhanced.php:123, src/addons/migrator.php:
|
8626 |
-
#: src/addons/migrator.php:
|
8627 |
#: src/addons/s3-enhanced.php:161, src/addons/s3-enhanced.php:166,
|
8628 |
#: src/addons/s3-enhanced.php:168, src/addons/sftp.php:962,
|
8629 |
#: src/addons/webdav.php:258, src/admin.php:91, src/admin.php:873,
|
@@ -8640,7 +8651,8 @@ msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم
|
|
8640 |
#: src/includes/class-search-replace.php:326,
|
8641 |
#: src/includes/class-search-replace.php:496, src/methods/remotesend.php:74,
|
8642 |
#: src/methods/remotesend.php:252, src/methods/updraftvault.php:592,
|
8643 |
-
#: src/restorer.php:
|
|
|
8644 |
msgid "Error:"
|
8645 |
msgstr "خطأ:"
|
8646 |
|
@@ -8694,7 +8706,7 @@ msgstr "متصفح الويب أوبرا "
|
|
8694 |
msgid "More tasks:"
|
8695 |
msgstr "المزيد من المهام:"
|
8696 |
|
8697 |
-
#: src/admin.php:
|
8698 |
msgid "Download most recently modified log file"
|
8699 |
msgstr "تحميل ملف السجل المعدل مؤخرا"
|
8700 |
|
@@ -8703,13 +8715,13 @@ msgid "(Nothing yet logged)"
|
|
8703 |
msgstr "(لا شيء حتى الآن تم تسجيله)"
|
8704 |
|
8705 |
#: src/addons/autobackup.php:368, src/addons/autobackup.php:463,
|
8706 |
-
#: src/admin.php:
|
8707 |
#: src/templates/wp-admin/settings/take-backup.php:72
|
8708 |
msgid "Last log message"
|
8709 |
msgstr "رسالة السجل الأخيرة"
|
8710 |
|
8711 |
-
#: src/addons/migrator.php:
|
8712 |
-
#: src/admin.php:
|
8713 |
msgid "Restore"
|
8714 |
msgstr "استعادة"
|
8715 |
|
@@ -8722,18 +8734,18 @@ msgid "Time now"
|
|
8722 |
msgstr "الساعة الآن"
|
8723 |
|
8724 |
#: src/addons/moredatabase.php:266, src/addons/reporting.php:275,
|
8725 |
-
#: src/addons/wp-cli.php:428, src/admin.php:394, src/admin.php:
|
8726 |
-
#: src/admin.php:
|
8727 |
#: src/includes/class-remote-send.php:445,
|
8728 |
#: src/includes/class-wpadmin-commands.php:154,
|
8729 |
-
#: src/includes/class-wpadmin-commands.php:612, src/restorer.php:
|
8730 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
|
8731 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
|
8732 |
#: src/templates/wp-admin/settings/take-backup.php:34
|
8733 |
msgid "Database"
|
8734 |
msgstr "قاعدة بيانات"
|
8735 |
|
8736 |
-
#: src/admin.php:384, src/admin.php:
|
8737 |
#: src/templates/wp-admin/settings/take-backup.php:24
|
8738 |
msgid "Files"
|
8739 |
msgstr "ملفات"
|
@@ -8759,15 +8771,15 @@ msgstr "واجهة المشرف هذه تستخدم الجافا سكريبت ب
|
|
8759 |
msgid "JavaScript warning"
|
8760 |
msgstr "تحذير جافا سكريبت"
|
8761 |
|
8762 |
-
#: src/admin.php:884, src/admin.php:
|
8763 |
msgid "Delete Old Directories"
|
8764 |
msgstr "حذف الدلائل القديمة"
|
8765 |
|
8766 |
-
#: src/admin.php:
|
8767 |
msgid "Current limit is:"
|
8768 |
msgstr "الحد الحالي هو:"
|
8769 |
|
8770 |
-
#: src/admin.php:
|
8771 |
msgid "Your backup has been restored."
|
8772 |
msgstr "تمت استعادة النسخ الاحتياطي."
|
8773 |
|
@@ -8779,36 +8791,36 @@ msgstr "الإصدار"
|
|
8779 |
msgid "Lead developer's homepage"
|
8780 |
msgstr "الولوج لموقع المطور"
|
8781 |
|
8782 |
-
#: src/admin.php:
|
8783 |
msgid "Your settings have been wiped."
|
8784 |
msgstr "تم القضاء على الإعدادات الخاصة بك."
|
8785 |
|
8786 |
-
#: src/admin.php:
|
8787 |
msgid "Backup directory successfully created."
|
8788 |
msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
|
8789 |
|
8790 |
-
#: src/admin.php:
|
8791 |
msgid "Backup directory could not be created"
|
8792 |
msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
|
8793 |
|
8794 |
-
#: src/admin.php:
|
8795 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
8796 |
msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
|
8797 |
|
8798 |
-
#: src/admin.php:
|
8799 |
msgid "Old directories successfully removed."
|
8800 |
msgstr "تم إزالة الدلائل القديمة بنجاح."
|
8801 |
|
8802 |
-
#: src/admin.php:
|
8803 |
msgid "Remove old directories"
|
8804 |
msgstr "إزالة الدلائل القديمة"
|
8805 |
|
8806 |
-
#: src/addons/migrator.php:
|
8807 |
msgid "Return to UpdraftPlus Configuration"
|
8808 |
msgstr "العودة إلى اعدادات UpdraftPlus"
|
8809 |
|
8810 |
-
#: src/admin.php:877, src/admin.php:
|
8811 |
-
#: src/admin.php:
|
8812 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
8813 |
#: src/templates/wp-admin/settings/existing-backups-table.php:142
|
8814 |
msgid "Actions"
|
@@ -8839,13 +8851,13 @@ msgid "Download failed"
|
|
8839 |
msgstr "فشل في التنزيل"
|
8840 |
|
8841 |
#: src/addons/webdav.php:584, src/addons/wp-cli.php:497, src/admin.php:874,
|
8842 |
-
#: src/class-updraftplus.php:
|
8843 |
#: src/includes/class-filesystem-functions.php:437,
|
8844 |
#: src/includes/class-storage-methods-interface.php:332,
|
8845 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
8846 |
#: src/methods/addon-base-v2.php:251, src/methods/addon-base-v2.php:271,
|
8847 |
-
#: src/methods/googledrive.php:1343, src/restorer.php:
|
8848 |
-
#: src/restorer.php:
|
8849 |
#: src/updraftplus.php:158
|
8850 |
msgid "Error"
|
8851 |
msgstr "خطأ"
|
@@ -8882,11 +8894,11 @@ msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام وور
|
|
8882 |
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."
|
8883 |
msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
|
8884 |
|
8885 |
-
#: src/addons/azure.php:604, src/addons/migrator.php:
|
8886 |
#: src/admin.php:1305, src/admin.php:1311, src/admin.php:1315,
|
8887 |
-
#: src/admin.php:1319, src/admin.php:1328, src/admin.php:
|
8888 |
-
#: src/admin.php:
|
8889 |
-
#: src/admin.php:
|
8890 |
#: src/methods/cloudfiles.php:455, src/methods/ftp.php:344,
|
8891 |
#: src/methods/openstack-base.php:576, src/methods/s3.php:892,
|
8892 |
#: src/methods/s3.php:896, src/methods/updraftvault.php:343,
|
@@ -8896,19 +8908,19 @@ msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد در
|
|
8896 |
msgid "Warning"
|
8897 |
msgstr "تحذير"
|
8898 |
|
8899 |
-
#: src/admin.php:717, src/admin.php:1222, src/admin.php:
|
8900 |
msgid "Settings"
|
8901 |
msgstr "إعدادات"
|
8902 |
|
8903 |
-
#: src/backup.php:
|
8904 |
msgid "Could not create %s zip. Consult the log file for more information."
|
8905 |
msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
|
8906 |
|
8907 |
-
#: src/backup.php:
|
8908 |
msgid "Infinite recursion: consult your log for more information"
|
8909 |
msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
|
8910 |
|
8911 |
-
#: src/addons/azure.php:267, src/class-updraftplus.php:
|
8912 |
#: src/methods/googledrive.php:1343, src/methods/s3.php:383
|
8913 |
msgid "File not found"
|
8914 |
msgstr "لم يتم العثور على ملف"
|
@@ -8917,41 +8929,41 @@ msgstr "لم يتم العثور على ملف"
|
|
8917 |
msgid "The decryption key used:"
|
8918 |
msgstr "مفتاح فك التشفير المستخدم:"
|
8919 |
|
8920 |
-
#: src/class-updraftplus.php:
|
8921 |
-
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:
|
8922 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
8923 |
msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
|
8924 |
|
8925 |
-
#: src/class-updraftplus.php:
|
8926 |
-
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:
|
8927 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
8928 |
msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
|
8929 |
|
8930 |
-
#: src/backup.php:
|
8931 |
msgid "Could not open the backup file for writing"
|
8932 |
msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
|
8933 |
|
8934 |
-
#: src/class-updraftplus.php:
|
8935 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
8936 |
msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
|
8937 |
|
8938 |
-
#: src/class-updraftplus.php:
|
8939 |
msgid "Could not read the directory"
|
8940 |
msgstr "لا يمكن قراءة الدليل"
|
8941 |
|
8942 |
-
#: src/admin.php:2568, src/backup.php:
|
8943 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
8944 |
msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
|
8945 |
|
8946 |
-
#: src/class-updraftplus.php:
|
8947 |
msgid "WordPress backup is complete"
|
8948 |
msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
|
8949 |
|
8950 |
-
#: src/class-updraftplus.php:
|
8951 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
8952 |
msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
|
8953 |
|
8954 |
-
#: src/class-updraftplus.php:
|
8955 |
msgid "The backup apparently succeeded and is now complete"
|
8956 |
msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
|
8957 |
|
@@ -8959,37 +8971,37 @@ msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت و
|
|
8959 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
8960 |
msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
|
8961 |
|
8962 |
-
#: src/class-updraftplus.php:
|
8963 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
8964 |
msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
|
8965 |
|
8966 |
-
#: src/class-updraftplus.php:
|
8967 |
msgid "Others"
|
8968 |
msgstr "أخرى"
|
8969 |
|
8970 |
-
#: src/addons/multisite.php:504, src/class-updraftplus.php:
|
8971 |
msgid "Uploads"
|
8972 |
msgstr "الملفات المرفوعة"
|
8973 |
|
8974 |
-
#: src/class-updraftplus.php:
|
8975 |
msgid "Themes"
|
8976 |
msgstr "تصاميم"
|
8977 |
|
8978 |
-
#: src/class-updraftplus.php:
|
8979 |
msgid "Plugins"
|
8980 |
msgstr "الإضافات"
|
8981 |
|
8982 |
-
#: src/class-updraftplus.php:
|
8983 |
msgid "No log files were found."
|
8984 |
msgstr "لا توجد ملفات السجل."
|
8985 |
|
8986 |
-
#: src/admin.php:2430, src/admin.php:2434, src/class-updraftplus.php:
|
8987 |
msgid "The log file could not be read."
|
8988 |
msgstr "لا يمكن قراءة ملف السجل."
|
8989 |
|
8990 |
#: src/admin.php:1348, src/admin.php:1369, src/admin.php:1407,
|
8991 |
-
#: src/class-updraftplus.php:
|
8992 |
-
#: src/class-updraftplus.php:
|
8993 |
msgid "UpdraftPlus notice:"
|
8994 |
msgstr "إشعار UpdraftPlus :"
|
8995 |
|
11 |
"Language: ar\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/advanced/site-info.php:109
|
15 |
+
msgid "Install debugging plugins:"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/restorer.php:2918
|
19 |
+
msgid "Old ABSPATH:"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/admin.php:2772
|
23 |
+
msgid "Enjoyed %s? Please leave us a %s rating. We really appreciate your support!"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
#: src/udaddons/options.php:98
|
27 |
msgid "An update is available for UpdraftPlus - please connect here to gain access to it."
|
28 |
msgstr ""
|
241 |
msgid "If you have an existing backup that you wish to upload and restore from, then please use the \"Upload backup files\" link above."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: src/class-updraftplus.php:5358
|
245 |
msgid "Include all tables not listed below"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: src/class-updraftplus.php:5356
|
249 |
msgid "The amount of database tables scanned is near or over the php_max_input_vars value so some tables maybe truncated. This option will ensure all tables not found will be backed up."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: src/class-updraftplus.php:5355
|
253 |
msgid "The database scan was taking too long and consequently the list of all tables in the database could not be completed. This option will ensure all tables not found will be backed up."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: src/class-updraftplus.php:5345
|
257 |
msgid "Therefore, affected tables on the current site which already exist will not be replaced by default, to avoid corrupting them (you can review this in the list of tables below)."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: src/class-updraftplus.php:5343
|
261 |
msgid "Therefore it is advised that you take a fresh backup on the source site, using a later version."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: src/class-updraftplus.php:5343, src/class-updraftplus.php:5345
|
265 |
msgid "This backup was created on a previous UpdraftPlus version (%s) which did not correctly backup tables with composite primary keys (such as the term_relationships table, which records tags and product attributes)."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: src/class-updraftplus.php:5296
|
269 |
msgid "This backup is of a site with an empty table prefix, which WordPress does not officially support; the results may be unreliable."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: src/class-updraftplus.php:3868
|
273 |
msgid "View log"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: src/class-updraftplus.php:3862
|
277 |
msgid "You can view the log by pressing the 'View log' button."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: src/class-updraftplus.php:3820
|
281 |
msgid "UpdraftPlus on %s"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: src/class-updraftplus.php:3154
|
285 |
msgid " Your hosting provider only allows you to take one incremental backup per day."
|
286 |
msgstr ""
|
287 |
|
329 |
msgid "The plugin you wish to activate is either not installed or has been removed recently."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: src/backup.php:3844
|
333 |
msgid "two unsuccessful attempts were made to include it, and it will now be omitted from the backup"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: src/backup.php:3840
|
337 |
msgid "a second attempt is being made (upon further failure it will be skipped)"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: src/backup.php:2381
|
341 |
msgid "Error getting table details"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: src/backup.php:1761
|
345 |
msgid "Failed to backup database table:"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: src/backup.php:1610
|
349 |
msgid "Failed to open directory for reading:"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: src/admin.php:6206
|
353 |
msgid "The download link is broken or the backup file is no longer available"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: src/admin.php:6204
|
357 |
msgid "The download link is broken, you may have clicked the link from untrusted source"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: src/admin.php:6189
|
361 |
msgid "Due to the restriction, some settings can be automatically adjusted, disabled or not available."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: src/admin.php:6188
|
365 |
msgid "%s permits UpdraftPlus to perform only one backup per month. Thus, we recommend you choose a full backup when performing a manual backup and to use that option when creating a scheduled backup."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: src/admin.php:6187
|
369 |
msgid "Your website is hosted with %s (%s)."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: src/admin.php:6123
|
373 |
msgid "The following remote storage (%s) have only been partially configured, if you are having problems you can try to manually authorise at the UpdraftPlus settings page."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: src/admin.php:6117
|
377 |
msgid "The following remote storage (%s) have only been partially configured, manual authorization is not supported with this remote storage, please try again and if the problem persists contact support."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: src/admin.php:5981
|
381 |
msgid "more info"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: src/admin.php:5371
|
385 |
msgid "The following remote storage options are configured."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: src/admin.php:5368
|
389 |
msgid "No remote storage locations with valid options found."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: src/admin.php:4965
|
393 |
msgid "This may prevent the restore procedure from being able to proceed."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: src/admin.php:4192
|
397 |
msgid "(the asterisk character matches zero or more characters)"
|
398 |
msgstr ""
|
399 |
|
449 |
msgid "Your hosting provider only allows you to take one incremental backup per day."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: src/admin.php:1049, src/class-updraftplus.php:3154
|
453 |
msgid "You have reached the daily limit for the number of incremental backups you can create at this time."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: src/admin.php:1048, src/admin.php:1049, src/class-updraftplus.php:3154,
|
457 |
+
#: src/class-updraftplus.php:3157
|
458 |
msgid "Please contact your hosting company (%s) if you require further support."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: src/admin.php:1048, src/class-updraftplus.php:3157
|
462 |
msgid "Your hosting provider only allows you to take one backup per month."
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: src/admin.php:1048, src/class-updraftplus.php:3157
|
466 |
msgid "You have reached the monthly limit for the number of backups you can create at this time."
|
467 |
msgstr ""
|
468 |
|
482 |
msgid "Exit full-screen"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: src/admin.php:904, src/admin.php:4994
|
486 |
msgid "Full-screen"
|
487 |
msgstr ""
|
488 |
|
759 |
msgid "Makes your site fast and efficient. It cleans the database, compresses images and caches pages for ultimate speed."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: src/restorer.php:3798
|
763 |
msgid "The Database connection has been closed and cannot be reopened."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: src/restorer.php:3462
|
767 |
msgid "Skipping table %s: already restored on a prior run; next table to restore: %s"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: src/restorer.php:3459
|
771 |
msgid "Skipping table %s: user has chosen not to restore this table"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: src/restorer.php:2384
|
775 |
msgid "Found and replaced existing table foreign key constraints as the table prefix has changed."
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: src/restorer.php:2227
|
779 |
msgid "An error occurred while attempting to set a new value to the MySQL global log_bin_trust_function_creators variable %s"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: src/restorer.php:2220
|
783 |
msgid "An error occurred while attempting to retrieve the MySQL global log_bin_trust_function_creators variable %s"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: src/restorer.php:1148
|
787 |
msgid "The directory does not exist, and the attempt to create it failed"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: src/restorer.php:750
|
791 |
msgid "Could not delete old path."
|
792 |
msgstr ""
|
793 |
|
984 |
msgid "No backup will be started. The creation of your clone should now begin, and your WordPress username and password will be displayed below when ready."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: src/class-updraftplus.php:5350
|
988 |
msgid "If you do not want to restore all your database tables, then choose some to exclude here."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: src/class-updraftplus.php:5050
|
992 |
msgid "You should only proceed if you have checked and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the new %s version."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: src/class-updraftplus.php:5050
|
996 |
msgid "This is older than the server which you are now restoring onto (version %s)."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: src/class-updraftplus.php:3620
|
1000 |
msgid "Incomplete"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: src/class-updraftplus.php:2385
|
1004 |
msgid "The backup is being aborted for a repeated failure to progress."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: src/class-updraftplus.php:652
|
1008 |
msgid "Briefly unavailable for scheduled maintenance. Check back in a minute."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: src/class-updraftplus.php:652
|
1012 |
msgid "Under Maintenance"
|
1013 |
msgstr ""
|
1014 |
|
1060 |
msgid "Unable to connect to the filesystem"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/admin.php:6132, src/admin.php:6134
|
1064 |
msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/admin.php:5981
|
1068 |
msgid "Clone package"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/admin.php:5968
|
1072 |
msgid "An empty WordPress install"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/admin.php:5967
|
1076 |
msgid "This current site"
|
1077 |
msgstr "هذا الموقع الحالي"
|
1078 |
|
1079 |
+
#: src/admin.php:5965
|
1080 |
msgid "Clone:"
|
1081 |
msgstr "استنساخ:"
|
1082 |
|
1083 |
+
#: src/admin.php:5002,
|
1084 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:98
|
1085 |
msgid "3. Restoration"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: src/admin.php:5001,
|
1089 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:97
|
1090 |
msgid "2. Verifications"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: src/admin.php:5000,
|
1094 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:96
|
1095 |
msgid "1. Component selection"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: src/admin.php:4994
|
1099 |
msgid "Activity log"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: src/admin.php:4987
|
1103 |
msgid "Cleaning"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: src/admin.php:4981
|
1107 |
msgid "Verifying"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: src/admin.php:4978
|
1111 |
msgid "Restoration progress:"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: src/admin.php:4977
|
1115 |
msgid "The restore operation has begun (%s). Do not close this page until it reports itself as having finished."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: src/admin.php:4968,
|
1119 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
|
1120 |
msgid "UpdraftPlus Restoration"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: src/admin.php:4463
|
1124 |
msgid "(%d archive(s) in set, total %s)."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: src/admin.php:3312
|
1128 |
msgid "Learn more about UpdraftCentral"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: src/admin.php:3312
|
1132 |
msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: src/admin.php:2852, src/admin.php:3777, src/admin.php:4910,
|
1136 |
+
#: src/admin.php:4922, src/admin.php:4933, src/admin.php:5168,
|
1137 |
+
#: src/admin.php:6123, src/admin.php:6134
|
1138 |
msgid "Return to UpdraftPlus configuration"
|
1139 |
msgstr ""
|
1140 |
|
1218 |
msgid "Begun"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: src/admin.php:1038, src/admin.php:4988
|
1222 |
msgid "Finished"
|
1223 |
msgstr ""
|
1224 |
|
1460 |
msgid "Azure China"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: src/admin.php:5951
|
1464 |
msgid "Clone region:"
|
1465 |
msgstr ""
|
1466 |
|
1494 |
msgid "Or, use an UpdraftClone key"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: src/restorer.php:3164
|
1498 |
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
1499 |
msgstr ""
|
1500 |
|
1518 |
msgid "Automatic updates"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: src/restorer.php:2735, src/restorer.php:2786
|
1522 |
msgid "Your database user does not have permission to drop tables"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: src/admin.php:3301
|
1526 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
1527 |
msgstr ""
|
1528 |
|
1686 |
msgid "WordPress installed"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: src/admin.php:6056
|
1690 |
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."
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: src/admin.php:4192
|
1694 |
msgid "Exclude these from"
|
1695 |
msgstr ""
|
1696 |
|
1738 |
msgid "failed to upload file to %s (see log file for more)"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: src/admin.php:6052
|
1742 |
msgid "Dashboard:"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: src/admin.php:6051
|
1746 |
msgid "Front page:"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: src/admin.php:6050
|
1750 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
1751 |
msgstr ""
|
1752 |
|
1758 |
msgid "Current clones"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: src/class-updraftplus.php:3538
|
1762 |
msgid "Your clone will now deploy this data to re-create your site."
|
1763 |
msgstr ""
|
1764 |
|
1766 |
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."
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: src/addons/migrator.php:1402
|
1770 |
msgid "Site key"
|
1771 |
msgstr ""
|
1772 |
|
1774 |
msgid "Add a site"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: src/addons/migrator.php:233, src/addons/migrator.php:1389,
|
1778 |
+
#: src/addons/migrator.php:1409
|
1779 |
msgid "back"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: src/addons/migrator.php:199
|
1783 |
msgid "Read this article to see step-by-step how it's done."
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: src/addons/migrator.php:193,
|
1787 |
#: src/templates/wp-admin/settings/migrator-no-migrator.php:6
|
1788 |
msgid "Migrate (create a copy of a site on hosting you control)"
|
1789 |
msgstr ""
|
2060 |
msgid "You can buy more temporary clone tokens here."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: src/admin.php:6004
|
2064 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
2065 |
msgstr ""
|
2066 |
|
2080 |
msgid "The creation of your data for creating the clone should now begin."
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: src/admin.php:6054, src/admin.php:6057
|
2084 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: src/class-updraftplus.php:5255
|
2088 |
msgid "Choose a default for each table"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: src/admin.php:3617
|
2092 |
msgid "Sending files to remote site"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: src/admin.php:3612
|
2096 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
2097 |
msgstr ""
|
2098 |
|
2100 |
msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: src/addons/migrator.php:237
|
2104 |
msgid "To import a backup set, go to the \"Existing backups\" section in the \"Backup/Restore\" tab"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: src/admin.php:3091
|
2108 |
msgid "Backup / Restore"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: src/admin.php:701, src/admin.php:4968
|
2112 |
msgid "Backup"
|
2113 |
msgstr ""
|
2114 |
|
2128 |
msgid "No previous backup found to add an increment to."
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: src/restorer.php:3170
|
2132 |
msgid "Requested character set (%s) is not present - changing to %s."
|
2133 |
msgstr ""
|
2134 |
|
2180 |
msgid "More information here."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: src/admin.php:709, src/admin.php:3092
|
2184 |
msgid "Migrate / Clone"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: src/admin.php:4323, src/templates/wp-admin/settings/backupnow-modal.php:60,
|
2188 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76,
|
2189 |
#: src/templates/wp-admin/settings/existing-backups-table.php:79
|
2190 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
2194 |
msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: src/restorer.php:279
|
2198 |
msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
|
2199 |
msgstr ""
|
2200 |
|
2206 |
msgid "Run this command to see the log file for this restoration (needed for any support requests)."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: src/class-updraftplus.php:216
|
2210 |
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."
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: src/admin.php:5986, src/admin.php:6030
|
2214 |
msgid "(current version)"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: src/admin.php:4101
|
2218 |
msgid "press here"
|
2219 |
msgstr ""
|
2220 |
|
2236 |
msgid "And then add an incremental backup"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: src/addons/incremental.php:339, src/admin.php:4074, src/updraftplus.php:100
|
2240 |
msgid "Every hour"
|
2241 |
msgstr ""
|
2242 |
|
2248 |
msgid "Available temporary clone tokens:"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: src/admin.php:3225, src/includes/class-commands.php:1027,
|
2252 |
#: src/includes/class-commands.php:1081, src/includes/class-commands.php:1083,
|
2253 |
#: src/methods/backup-module.php:663,
|
2254 |
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
2268 |
msgid "I consent to %s"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: src/admin.php:3338,
|
2272 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
2273 |
msgid "One Time Password (check your OTP app to get this password)"
|
2274 |
msgstr ""
|
2317 |
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."
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: src/admin.php:5913
|
2321 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
2322 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
2323 |
msgstr[0] ""
|
2425 |
msgid "Upload backup"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: src/admin.php:4580
|
2429 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
2430 |
msgstr ""
|
2431 |
|
2437 |
msgid "Local backup upload has started; please check the log file to see the upload progress"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: src/admin.php:902, src/admin.php:4580
|
2441 |
msgid "Upload"
|
2442 |
msgstr ""
|
2443 |
|
2453 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: src/addons/migrator.php:279
|
2457 |
msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
|
2458 |
msgstr ""
|
2459 |
|
2499 |
msgid "The given value for the '%s' option is not valid"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: src/addons/migrator.php:1412
|
2503 |
msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: src/addons/migrator.php:1398
|
2507 |
msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: src/addons/migrator.php:1398
|
2511 |
msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
|
2512 |
msgstr ""
|
2513 |
|
2535 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: src/restorer.php:758
|
2539 |
msgid "Failed to read from the working directory."
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: src/restorer.php:757
|
2543 |
msgid "Failed to find a manifest file in the backup."
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: src/restorer.php:756
|
2547 |
msgid "Failed to read the manifest file from backup."
|
2548 |
msgstr ""
|
2549 |
|
2555 |
msgid "Ensure you are logged into the correct account before continuing."
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: src/admin.php:5558
|
2559 |
msgid "Remote storage method and instance id are required for authentication."
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: src/admin.php:5554
|
2563 |
msgid "authentication error"
|
2564 |
msgstr ""
|
2565 |
|
2567 |
msgid "(Nothing has been logged yet)"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: src/addons/migrator.php:444
|
2571 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: src/addons/migrator.php:433
|
2575 |
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 below search and replace so that the non-https links are automatically replaced."
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: src/addons/migrator.php:422
|
2579 |
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 below search and replace to search/replace the site address so that the site can be visited without https."
|
2580 |
msgstr ""
|
2581 |
|
2623 |
msgid "Invalid bucket name"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: src/restorer.php:2428
|
2627 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
2628 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
2629 |
msgstr[0] ""
|
2633 |
msgstr[4] ""
|
2634 |
msgstr[5] ""
|
2635 |
|
2636 |
+
#: src/class-updraftplus.php:5232
|
2637 |
msgid "Your chosen replacement collation"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: src/class-updraftplus.php:5209
|
2641 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: src/class-updraftplus.php:5209
|
2645 |
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."
|
2646 |
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."
|
2647 |
msgstr[0] ""
|
2651 |
msgstr[4] ""
|
2652 |
msgstr[5] ""
|
2653 |
|
2654 |
+
#: src/addons/migrator.php:568
|
2655 |
msgid "Database restoration options:"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: src/addons/migrator.php:411
|
2659 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
2660 |
msgstr ""
|
2661 |
|
2703 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: src/addons/migrator.php:978
|
2707 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
2708 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
2709 |
msgstr[0] ""
|
2713 |
msgstr[4] ""
|
2714 |
msgstr[5] ""
|
2715 |
|
2716 |
+
#: src/restorer.php:2369
|
2717 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: src/class-updraftplus.php:5185
|
2721 |
msgid "Your chosen character set to use instead:"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: src/class-updraftplus.php:5175
|
2725 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: src/class-updraftplus.php:5175
|
2729 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
2730 |
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."
|
2731 |
msgstr[0] ""
|
2822 |
msgid "Account ID"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
+
#: src/class-updraftplus.php:5000
|
2826 |
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."
|
2827 |
msgstr ""
|
2828 |
|
2829 |
+
#: src/class-updraftplus.php:4998, src/class-updraftplus.php:5000
|
2830 |
msgid "the migrator add-on"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: src/class-updraftplus.php:4998
|
2834 |
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."
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
#: src/class-updraftplus.php:4996
|
2838 |
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."
|
2839 |
msgstr ""
|
2840 |
|
2841 |
+
#: src/class-updraftplus.php:4991
|
2842 |
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."
|
2843 |
msgstr ""
|
2844 |
|
2854 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
2855 |
msgstr ""
|
2856 |
|
2857 |
+
#: src/backup.php:514, src/backup.php:2761, src/class-updraftplus.php:2449,
|
2858 |
+
#: src/class-updraftplus.php:2516, src/includes/class-search-replace.php:291,
|
2859 |
+
#: src/includes/class-storage-methods-interface.php:381, src/restorer.php:611
|
2860 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: src/backup.php:508, src/backup.php:2752, src/class-updraftplus.php:2440,
|
2864 |
+
#: src/class-updraftplus.php:2509, src/includes/class-search-replace.php:284,
|
2865 |
+
#: src/includes/class-storage-methods-interface.php:372, src/restorer.php:599
|
2866 |
msgid "A PHP exception (%s) has occurred: %s"
|
2867 |
msgstr ""
|
2868 |
|
2912 |
msgid "Rackspace Storage Region"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: src/admin.php:5760
|
2916 |
msgid "Value"
|
2917 |
msgstr ""
|
2918 |
|
2928 |
msgid "Cloud Files"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
+
#: src/admin.php:5506
|
2932 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
+
#: src/admin.php:5465
|
2936 |
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."
|
2937 |
msgstr ""
|
2938 |
|
2949 |
msgid "Extra database"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/admin.php:4462
|
2953 |
msgid "Press here to download or browse"
|
2954 |
msgstr ""
|
2955 |
|
2989 |
msgid "Browse contents"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: src/restorer.php:2894
|
2993 |
msgid "Skipped tables:"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: src/class-updraftplus.php:5315
|
2997 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
2998 |
msgstr ""
|
2999 |
|
3431 |
msgid "Export / import settings"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: src/restorer.php:2430
|
3435 |
msgid "Processing table (%s)"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: src/restorer.php:2861
|
3439 |
msgid "Backup of: %s"
|
3440 |
msgstr ""
|
3441 |
|
3455 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: src/backup.php:2007
|
3459 |
msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
|
3460 |
msgstr ""
|
3461 |
|
3548 |
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"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: src/admin.php:2889
|
3552 |
msgid "To fix this problem go here."
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: src/admin.php:2889
|
3556 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
3557 |
msgstr ""
|
3558 |
|
3632 |
msgid "Public key was sent to:"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: src/backup.php:2975
|
3636 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: src/backup.php:2953
|
3640 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: src/addons/migrator.php:1424
|
3644 |
msgid "Create key"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: src/addons/migrator.php:1421, src/central/translations-updraftplus.php:54
|
3648 |
msgid "slower, strongest"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: src/addons/migrator.php:1420, src/central/translations-updraftplus.php:53
|
3652 |
msgid "recommended"
|
3653 |
msgstr "موصى به"
|
3654 |
|
3655 |
+
#: src/addons/migrator.php:1420, src/central/translations-updraftplus.php:50
|
3656 |
msgid "%s bytes"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
+
#: src/addons/migrator.php:1419, src/central/translations-updraftplus.php:52
|
3660 |
msgid "faster (possibility for slow PHP installs)"
|
3661 |
msgstr ""
|
3662 |
|
3664 |
msgid "easy to break, fastest"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: src/addons/migrator.php:1419, src/addons/migrator.php:1421,
|
3668 |
#: src/central/translations-updraftplus.php:49
|
3669 |
msgid "%s bits"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: src/addons/migrator.php:1417, src/central/translations-updraftplus.php:48
|
3673 |
msgid "Encryption key size:"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: src/addons/migrator.php:1415
|
3677 |
msgid "Enter your chosen name"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: src/addons/migrator.php:1414
|
3681 |
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
|
3682 |
msgstr ""
|
3683 |
|
3702 |
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."
|
3703 |
msgstr ""
|
3704 |
|
3705 |
+
#: src/class-updraftplus.php:1984
|
3706 |
msgid "Size: %s MB"
|
3707 |
msgstr ""
|
3708 |
|
3710 |
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)."
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: src/class-updraftplus.php:5018, src/restorer.php:1710
|
3714 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
3715 |
msgstr ""
|
3716 |
|
3732 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: src/class-updraftplus.php:617, src/class-updraftplus.php:694
|
3736 |
msgid "The given file was not found, or could not be read."
|
3737 |
msgstr ""
|
3738 |
|
3816 |
msgid "UpdraftCentral Connection"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: src/class-updraftplus.php:3519, src/class-updraftplus.php:3611
|
3820 |
msgid "The backup was aborted by the user"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: src/admin.php:5501
|
3824 |
msgid "Your settings have been saved."
|
3825 |
msgstr "تم حفظ إعداداتك."
|
3826 |
|
3827 |
+
#: src/admin.php:4371
|
3828 |
msgid "Total backup size:"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
+
#: src/admin.php:3760
|
3832 |
msgid "stop"
|
3833 |
msgstr "توقف"
|
3834 |
|
3835 |
+
#: src/admin.php:964, src/admin.php:3547
|
3836 |
msgid "The backup has finished running"
|
3837 |
msgstr ""
|
3838 |
|
3886 |
msgid "Asia Pacific (Seoul)"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
+
#: src/restorer.php:2884
|
3890 |
msgid "Uploads URL:"
|
3891 |
msgstr ""
|
3892 |
|
3894 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: src/class-updraftplus.php:5073, src/restorer.php:2902
|
3898 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: src/class-updraftplus.php:5069
|
3902 |
msgid "Please read this link for important information on this process."
|
3903 |
msgstr ""
|
3904 |
|
3905 |
+
#: src/class-updraftplus.php:5069
|
3906 |
msgid "It will be imported as a new site."
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: src/admin.php:3178, src/templates/wp-admin/notices/autobackup-notice.php:16,
|
3910 |
#: src/templates/wp-admin/notices/autobackup-notice.php:18,
|
3911 |
#: src/templates/wp-admin/notices/horizontal-notice.php:48,
|
3912 |
#: src/templates/wp-admin/notices/horizontal-notice.php:50
|
3933 |
msgid "Which site to restore"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: src/addons/migrator.php:636, src/addons/migrator.php:637
|
3937 |
msgid "Error when creating new site at your chosen address:"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: src/addons/migrator.php:580
|
3941 |
msgid "Required information for restoring this backup was not given (%s)"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: src/addons/migrator.php:532
|
3945 |
msgid "Attribute imported content to user"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: src/addons/migrator.php:522, src/addons/migrator.php:524
|
3949 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: src/addons/migrator.php:510
|
3953 |
msgid "This feature is not compatible with %s"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: src/addons/migrator.php:508, src/addons/migrator.php:510
|
3957 |
msgid "Importing a single site into a multisite install"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: src/addons/migrator.php:500
|
3961 |
msgid "other content from wp-content"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: src/addons/migrator.php:497
|
3965 |
msgid "WordPress core"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: src/addons/migrator.php:497, src/addons/migrator.php:500,
|
3969 |
+
#: src/addons/migrator.php:503
|
3970 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
3971 |
msgstr ""
|
3972 |
|
3978 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: src/restorer.php:421
|
3982 |
msgid "Skipping: this archive was already restored."
|
3983 |
msgstr ""
|
3984 |
|
4006 |
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)."
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: src/admin.php:5371
|
4010 |
msgid "Send this backup to remote storage"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: src/admin.php:5364
|
4014 |
msgid "Check out UpdraftPlus Vault."
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: src/admin.php:5364
|
4018 |
msgid "Not got any remote storage?"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
+
#: src/admin.php:5364
|
4022 |
msgid "settings"
|
4023 |
msgstr "إعدادات"
|
4024 |
|
4025 |
+
#: src/admin.php:5364
|
4026 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
4027 |
msgstr ""
|
4028 |
|
4034 |
msgid "Include your database in the backup"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: src/admin.php:3174, src/admin.php:3176
|
4038 |
msgid "Continue restoration"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
+
#: src/admin.php:3166
|
4042 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: src/admin.php:3165
|
4046 |
msgid "Unfinished restoration"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: src/admin.php:3162
|
4050 |
msgid "%s minutes, %s seconds"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: src/admin.php:2992
|
4054 |
msgid "Backup Contents And Schedule"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: src/admin.php:3095
|
4058 |
msgid "Premium / Extensions"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: src/admin.php:4860, src/admin.php:4869
|
4062 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
4063 |
msgstr ""
|
4064 |
|
4075 |
msgid "Extensions"
|
4076 |
msgstr "Extensions"
|
4077 |
|
4078 |
+
#: src/admin.php:725, src/admin.php:3094
|
4079 |
msgid "Advanced Tools"
|
4080 |
msgstr ""
|
4081 |
|
4195 |
msgid "Could not access container"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: src/class-updraftplus.php:3538
|
4199 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
4200 |
msgstr ""
|
4201 |
|
4202 |
+
#: src/backup.php:1812
|
4203 |
msgid "the options table was not found"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: src/backup.php:1810
|
4207 |
msgid "no options or sitemeta table was found"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
+
#: src/backup.php:1810, src/backup.php:1812
|
4211 |
msgid "The database backup appears to have failed"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
+
#: src/backup.php:1572
|
4215 |
msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
|
4216 |
msgstr ""
|
4217 |
|
4363 |
msgid "Add an additional retention rule..."
|
4364 |
msgstr ""
|
4365 |
|
4366 |
+
#: src/restorer.php:3825
|
4367 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
4368 |
msgstr ""
|
4369 |
|
4370 |
+
#: src/restorer.php:3825
|
4371 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
4372 |
msgstr ""
|
4373 |
|
4375 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
4376 |
msgstr ""
|
4377 |
|
4378 |
+
#: src/class-updraftplus.php:5150
|
4379 |
msgid "You must upgrade MySQL to be able to use this database."
|
4380 |
msgstr ""
|
4381 |
|
4382 |
+
#: src/class-updraftplus.php:5150
|
4383 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
4384 |
msgstr ""
|
4385 |
|
4386 |
+
#: src/admin.php:2874
|
4387 |
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."
|
4388 |
msgstr ""
|
4389 |
|
4449 |
msgstr ""
|
4450 |
|
4451 |
#: src/methods/updraftvault.php:529, src/methods/updraftvault.php:545,
|
4452 |
+
#: src/methods/updraftvault.php:589
|
4453 |
msgid "Current use:"
|
4454 |
msgstr ""
|
4455 |
|
4546 |
msgid "Delete failed:"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
+
#: src/backup.php:4169
|
4550 |
msgid "The zip engine returned the message: %s."
|
4551 |
msgstr ""
|
4552 |
|
4578 |
msgid "Existing keys"
|
4579 |
msgstr ""
|
4580 |
|
4581 |
+
#: src/addons/migrator.php:1429
|
4582 |
msgid "Your new key:"
|
4583 |
msgstr ""
|
4584 |
|
4611 |
msgid "Backup data will be sent to:"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: src/addons/migrator.php:234
|
4615 |
msgid "Restore an existing backup set onto this site"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: src/addons/migrator.php:240
|
4619 |
msgid "This site has no backups to restore from yet."
|
4620 |
msgstr ""
|
4621 |
|
4627 |
msgid "This storage method does not allow downloading"
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: src/admin.php:4513
|
4631 |
msgid "(backup set imported from remote location)"
|
4632 |
msgstr ""
|
4633 |
|
4670 |
msgid "Creating..."
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: src/addons/migrator.php:1410
|
4674 |
msgid "Receive a backup from a remote site"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: src/addons/migrator.php:1402
|
4678 |
msgid "Paste key here"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: src/addons/migrator.php:1398
|
4682 |
msgid "How do I get a site's key?"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: src/addons/migrator.php:1398
|
4686 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: src/addons/migrator.php:1390
|
4690 |
msgid "Send a backup to another site"
|
4691 |
msgstr ""
|
4692 |
|
4753 |
msgid "FTP server"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: src/addons/migrator.php:198
|
4757 |
msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: src/addons/migrator.php:198
|
4761 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
4762 |
msgstr ""
|
4763 |
|
4765 |
msgid "Resetting..."
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: src/addons/migrator.php:1402, src/admin.php:920
|
4769 |
msgid "Add site"
|
4770 |
msgstr ""
|
4771 |
|
4777 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
+
#: src/restorer.php:3827
|
4781 |
msgid "To use this backup, your database server needs to support the %s character set."
|
4782 |
msgstr ""
|
4783 |
|
4793 |
msgid "Go here to re-enter your password."
|
4794 |
msgstr ""
|
4795 |
|
4796 |
+
#: src/addons/migrator.php:275
|
4797 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
4798 |
msgstr ""
|
4799 |
|
5052 |
msgid "(at same time as files backup)"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
+
#: src/admin.php:4049
|
5056 |
msgid "No backup has been completed"
|
5057 |
msgstr ""
|
5058 |
|
5126 |
msgid "Check this box to have a basic report sent to"
|
5127 |
msgstr ""
|
5128 |
|
5129 |
+
#: src/admin.php:4068, src/admin.php:4073
|
5130 |
msgctxt "i.e. Non-automatic"
|
5131 |
msgid "Manual"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
+
#: src/restorer.php:3780
|
5135 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
5136 |
msgid "An error (%s) occurred:"
|
5137 |
msgstr ""
|
5144 |
msgid "Any other file/directory on your server that you wish to backup"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
+
#: src/admin.php:2891
|
5148 |
msgid "For even more features and personal support, check out "
|
5149 |
msgstr ""
|
5150 |
|
5238 |
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."
|
5239 |
msgstr ""
|
5240 |
|
5241 |
+
#: src/admin.php:3547, src/admin.php:4610
|
5242 |
msgid "View Log"
|
5243 |
msgstr ""
|
5244 |
|
5257 |
msgid "and retain this many scheduled backups"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
+
#: src/admin.php:4019
|
5261 |
msgid "incremental backup; base backup: %s"
|
5262 |
msgstr ""
|
5263 |
|
5275 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
5276 |
msgstr ""
|
5277 |
|
5278 |
+
#: src/class-updraftplus.php:5058
|
5279 |
msgid "Backup label:"
|
5280 |
msgstr ""
|
5281 |
|
5283 |
msgid "Error: unexpected file read fail"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: src/backup.php:4175
|
5287 |
msgid "check your log for more details."
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: src/backup.php:4173
|
5291 |
msgid "your web hosting account appears to be full; please see: %s"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: src/backup.php:4171
|
5295 |
msgid "A zip error occurred"
|
5296 |
msgstr ""
|
5297 |
|
5315 |
msgid "You need to supply both an email address and a password"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: src/class-updraftplus.php:5077
|
5319 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: src/class-updraftplus.php:5077
|
5323 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: src/addons/migrator.php:1291
|
5327 |
msgid "already done"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: src/addons/migrator.php:1251
|
5331 |
msgid "skipped (not in list)"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: src/addons/migrator.php:1251, src/addons/migrator.php:1291,
|
5335 |
#: src/includes/class-search-replace.php:91
|
5336 |
msgid "Search and replacing table:"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
+
#: src/addons/migrator.php:392
|
5340 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
5341 |
msgstr ""
|
5342 |
|
5343 |
+
#: src/addons/migrator.php:392
|
5344 |
msgid "These tables only"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
+
#: src/addons/migrator.php:391
|
5348 |
msgid "Rows per batch"
|
5349 |
msgstr ""
|
5350 |
|
5356 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
5357 |
msgstr ""
|
5358 |
|
5359 |
+
#: src/class-updraftplus.php:5048, src/class-updraftplus.php:5050
|
5360 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
5361 |
msgstr ""
|
5362 |
|
5363 |
+
#: src/class-updraftplus.php:5048
|
5364 |
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."
|
5365 |
msgstr ""
|
5366 |
|
5367 |
+
#: src/class-updraftplus.php:5048
|
5368 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
5369 |
msgstr ""
|
5370 |
|
5371 |
+
#: src/class-updraftplus.php:5048, src/class-updraftplus.php:5050
|
5372 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
5373 |
msgstr ""
|
5374 |
|
5405 |
msgid "Start backup"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
+
#: src/class-updraftplus.php:5018, src/restorer.php:1710
|
5409 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
5410 |
msgstr ""
|
5411 |
|
5412 |
+
#: src/admin.php:3917
|
5413 |
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."
|
5414 |
msgstr ""
|
5415 |
|
5441 |
msgid "Memory limit"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
+
#: src/includes/class-filesystem-functions.php:302, src/restorer.php:2627
|
5445 |
msgid "restoration"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
+
#: src/class-updraftplus.php:3606
|
5449 |
msgid "Incremental"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
+
#: src/class-updraftplus.php:3606
|
5453 |
msgid "Full backup"
|
5454 |
msgstr ""
|
5455 |
|
5467 |
|
5468 |
#: src/addons/incremental.php:340, src/addons/incremental.php:341,
|
5469 |
#: src/addons/incremental.php:342, src/addons/incremental.php:343,
|
5470 |
+
#: src/admin.php:4075, src/admin.php:4076, src/admin.php:4077,
|
5471 |
+
#: src/admin.php:4078, src/updraftplus.php:101, src/updraftplus.php:102,
|
5472 |
#: src/updraftplus.php:103
|
5473 |
msgid "Every %s hours"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: src/addons/migrator.php:937, src/addons/migrator.php:939,
|
5477 |
+
#: src/restorer.php:4146, src/restorer.php:4148
|
5478 |
msgid "search and replace"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: src/addons/migrator.php:394
|
5482 |
msgid "Go"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
+
#: src/addons/migrator.php:383
|
5486 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: src/addons/migrator.php:382
|
5490 |
msgid "This can easily destroy your site; so, use it with care!"
|
5491 |
msgstr ""
|
5492 |
|
5493 |
+
#: src/addons/migrator.php:337, src/addons/migrator.php:390
|
5494 |
msgid "Replace with"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
+
#: src/addons/migrator.php:336, src/addons/migrator.php:389
|
5498 |
msgid "Search for"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
+
#: src/addons/migrator.php:335, src/addons/migrator.php:381,
|
5502 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
5503 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
5504 |
msgid "Search / replace database"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: src/addons/migrator.php:341
|
5508 |
msgid "search term"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: src/restorer.php:3839
|
5512 |
msgid "Too many database errors have occurred - aborting"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: src/class-updraftplus.php:3674
|
5516 |
msgid "read more at %s"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: src/class-updraftplus.php:3674
|
5520 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
5521 |
msgstr ""
|
5522 |
|
5532 |
msgid "Database Options"
|
5533 |
msgstr ""
|
5534 |
|
|
|
|
|
|
|
|
|
5535 |
#: src/templates/wp-admin/advanced/site-info.php:88
|
5536 |
msgid "%s (%s used)"
|
5537 |
msgstr ""
|
5540 |
msgid "Free disk space in account:"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
+
#: src/admin.php:5472, src/templates/wp-admin/settings/take-backup.php:52
|
5544 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
5545 |
msgstr ""
|
5546 |
|
5624 |
msgid "user"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: src/class-updraftplus.php:1981
|
5628 |
msgid "External database (%s)"
|
5629 |
msgstr ""
|
5630 |
|
5642 |
msgid "However, subsequent access attempts failed:"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: src/addons/wp-cli.php:434, src/admin.php:4396
|
5646 |
msgid "External database"
|
5647 |
msgstr ""
|
5648 |
|
5674 |
msgid "use UpdraftPlus Premium"
|
5675 |
msgstr ""
|
5676 |
|
5677 |
+
#: src/class-updraftplus.php:4888
|
5678 |
msgid "Decryption failed. The database file is encrypted."
|
5679 |
msgstr ""
|
5680 |
|
5682 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
5683 |
msgstr ""
|
5684 |
|
5685 |
+
#: src/restorer.php:3033, src/restorer.php:3737, src/restorer.php:3810,
|
5686 |
+
#: src/restorer.php:3827
|
5687 |
msgid "An error occurred on the first %s command - aborting run"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
+
#: src/addons/moredatabase.php:136, src/backup.php:1509
|
5691 |
msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
|
5692 |
msgstr ""
|
5693 |
|
5694 |
+
#: src/backup.php:1509
|
5695 |
msgid "database connection attempt failed."
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: src/addons/migrator.php:1182
|
5699 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
5700 |
msgstr ""
|
5701 |
|
5729 |
msgid "Tenant"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
+
#: src/admin.php:1044, src/admin.php:5913, src/methods/openstack2.php:144,
|
5733 |
+
#: src/restorer.php:289, src/restorer.php:291,
|
5734 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
5735 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
5736 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:14
|
5863 |
msgid "Fetch"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
+
#: src/addons/migrator.php:508,
|
5867 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
|
5868 |
#: src/templates/wp-admin/settings/form-contents.php:183,
|
5869 |
#: src/templates/wp-admin/settings/tab-backups.php:74
|
5870 |
msgid "This feature requires %s version %s or later"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
+
#: src/restorer.php:755
|
5874 |
msgid "Failed to unpack the archive"
|
5875 |
msgstr ""
|
5876 |
|
5877 |
+
#: src/class-updraftplus.php:1573, src/methods/cloudfiles.php:428
|
5878 |
msgid "Error - failed to download the file"
|
5879 |
msgstr ""
|
5880 |
|
5899 |
msgid "password/key"
|
5900 |
msgstr " الرقم السري/المفتاح"
|
5901 |
|
5902 |
+
#: src/addons/migrator.php:1415, src/addons/sftp.php:504, src/admin.php:926,
|
5903 |
+
#: src/admin.php:5760, src/templates/wp-admin/settings/temporary-clone.php:63
|
5904 |
msgid "Key"
|
5905 |
msgstr "مفتاح"
|
5906 |
|
5916 |
msgid "SCP/SFTP password/key"
|
5917 |
msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
|
5918 |
|
5919 |
+
#: src/addons/wp-cli.php:445, src/admin.php:4440
|
5920 |
msgid "Files backup (created by %s)"
|
5921 |
msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
|
5922 |
|
5923 |
+
#: src/addons/wp-cli.php:445, src/admin.php:4440
|
5924 |
msgid "Files and database WordPress backup (created by %s)"
|
5925 |
msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
|
5926 |
|
5927 |
+
#: src/addons/importer.php:276, src/admin.php:4434,
|
5928 |
#: src/includes/class-backup-history.php:505
|
5929 |
msgid "Backup created by: %s."
|
5930 |
msgstr "ولدت النسخة الإحتياطية من طرف: %s."
|
5931 |
|
5932 |
+
#: src/addons/wp-cli.php:428, src/admin.php:4394
|
5933 |
msgid "Database (created by %s)"
|
5934 |
msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
|
5935 |
|
5936 |
+
#: src/addons/wp-cli.php:426, src/admin.php:4388, src/admin.php:4436
|
5937 |
msgid "unknown source"
|
5938 |
msgstr "مصدر غير معروف"
|
5939 |
|
5973 |
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))."
|
5974 |
msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
|
5975 |
|
5976 |
+
#: src/admin.php:4437, src/includes/class-wpadmin-commands.php:159,
|
5977 |
+
#: src/restorer.php:2596
|
5978 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
5979 |
msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
|
5980 |
|
5981 |
+
#: src/restorer.php:1522, src/restorer.php:1570
|
5982 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
5983 |
msgstr "مجلد (wp-content) غير موجود البثة بهذا الملف المضغوط."
|
5984 |
|
5985 |
+
#: src/restorer.php:1416
|
5986 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
5987 |
msgstr "هذه النسخة من UpdraftPlus لا تستطيع التعامل مع نوع النسخ الإحتياطية هذا."
|
5988 |
|
6034 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
6035 |
msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
|
6036 |
|
6037 |
+
#: src/addons/morefiles.php:357, src/admin.php:4195
|
6038 |
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."
|
6039 |
msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
|
6040 |
|
6041 |
#: src/includes/class-filesystem-functions.php:302, src/methods/ftp.php:344,
|
6042 |
+
#: src/restorer.php:2627
|
6043 |
msgid "Your hosting company must enable these functions before %s can work."
|
6044 |
msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
|
6045 |
|
6059 |
msgid "regular non-encrypted FTP"
|
6060 |
msgstr "خادم FTP غير مشفر اعتيادي"
|
6061 |
|
6062 |
+
#: src/restorer.php:2868
|
6063 |
msgid "Backup created by:"
|
6064 |
msgstr "نسخة احتياطية أنشأها:"
|
6065 |
|
6130 |
msgid "Constants"
|
6131 |
msgstr "ثوابت"
|
6132 |
|
6133 |
+
#: src/backup.php:1883
|
6134 |
msgid "Failed to open database file for reading:"
|
6135 |
msgstr "فشل في فتح ملف قاعدة البيانات للقراءة:"
|
6136 |
|
6137 |
+
#: src/backup.php:1561
|
6138 |
msgid "No database tables found"
|
6139 |
msgstr "لم نجد أي جداول لقاعدة البيانات"
|
6140 |
|
6141 |
+
#: src/backup.php:1559
|
6142 |
msgid "please wait for the rescheduled attempt"
|
6143 |
msgstr "فضلا انتظر محاولة إعادة الجدولة"
|
6144 |
|
6155 |
msgid "Errors occurred:"
|
6156 |
msgstr "أخطاء حدثت:"
|
6157 |
|
6158 |
+
#: src/addons/wp-cli.php:752, src/admin.php:4991
|
6159 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
6160 |
msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
|
6161 |
|
6175 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
6176 |
msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %s ثانية فقط، ولا تسمح لوصول لهذا الحد. إن لم تتمكن من استرداد حجم كبير من البيانات بسبب هذا الحد، يمكنك الإتصال بشرك الإستضافة الخاصة بك (أو محاولة الإسترداد قطعة-قطعة)"
|
6177 |
|
6178 |
+
#: src/restorer.php:1408
|
6179 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
6180 |
msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
|
6181 |
|
6182 |
+
#: src/admin.php:1300, src/class-updraftplus.php:965
|
6183 |
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)"
|
6184 |
msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
|
6185 |
|
6186 |
+
#: src/addons/migrator.php:308
|
6187 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
6188 |
msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
|
6189 |
|
6196 |
msgid "Messages:"
|
6197 |
msgstr "رسائل:"
|
6198 |
|
6199 |
+
#: src/restorer.php:3614
|
6200 |
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"
|
6201 |
msgstr "تم العثور على خط SQL أكبر من الحد الأقصى لحجم الحزمة ولا يمكن تقسيمها، هذا الخط لن نتمكن من معالجته، وسنقوم بإبعاده: %s"
|
6202 |
|
6203 |
+
#: src/restorer.php:1151
|
6204 |
msgid "The directory does not exist"
|
6205 |
msgstr "المجلد غير متوفر"
|
6206 |
|
6370 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
6371 |
msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
|
6372 |
|
6373 |
+
#: src/admin.php:872, src/restorer.php:285
|
6374 |
msgid "Error data:"
|
6375 |
msgstr "خطأ بالبيانات:"
|
6376 |
|
6377 |
+
#: src/admin.php:5084
|
6378 |
msgid "Backup does not exist in the backup history"
|
6379 |
msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
|
6380 |
|
6381 |
+
#: src/admin.php:3479
|
6382 |
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."
|
6383 |
msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
|
6384 |
|
6385 |
+
#: src/restorer.php:3002
|
6386 |
msgid "Split line to avoid exceeding maximum packet size"
|
6387 |
msgstr "تقسيم الخط لتفاذي الحجم الأقصى للحزم"
|
6388 |
|
6389 |
+
#: src/restorer.php:2791
|
6390 |
msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
|
6391 |
msgstr "المستخدم لا يمتلك صلاحيات لتحريك الجداول. سنحاول الإستعادة عن طريق إفراغ الجداول، يمكن لهذه العملية النجاح طالما أننا نستعيد من نسخة ووردبريس مع نفس بنية قاعدة البيانات (%s)"
|
6392 |
|
6393 |
+
#: src/restorer.php:752
|
6394 |
msgid "Could not move the files into place. Check your file permissions."
|
6395 |
msgstr "لا يمكن نقل الملفات من مكانها. تحقق من أذونات الملف."
|
6396 |
|
6397 |
+
#: src/restorer.php:751
|
6398 |
msgid "Could not move new files into place. Check your wp-content/upgrade folder."
|
6399 |
msgstr "لا يمكن نقل الملفات من مكانها. تحقق من المجلد wp-content/upgrade. "
|
6400 |
|
6401 |
+
#: src/restorer.php:749
|
6402 |
msgid "Could not move old files out of the way."
|
6403 |
msgstr "لا يمكن نقل البيانات بعيدا."
|
6404 |
|
6405 |
+
#: src/restorer.php:745
|
6406 |
msgid "Moving old data out of the way..."
|
6407 |
msgstr "نقل البيانات القديمة بعيدا ..."
|
6408 |
|
6414 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
6415 |
msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تقرير لها عند انتهاء مهمة النسخ الاحتياطي."
|
6416 |
|
6417 |
+
#: src/class-updraftplus.php:1989, src/class-updraftplus.php:1994
|
6418 |
msgid "%s checksum: %s"
|
6419 |
msgstr "%s الاختباري:%s"
|
6420 |
|
6421 |
+
#: src/class-updraftplus.php:1921, src/class-updraftplus.php:1923
|
6422 |
msgid "files: %s"
|
6423 |
msgstr "ملفات:%s"
|
6424 |
|
6430 |
msgid "Debugging information"
|
6431 |
msgstr "معلومات التصحيح"
|
6432 |
|
6433 |
+
#: src/addons/reporting.php:238, src/admin.php:4354
|
6434 |
msgid "Uploaded to:"
|
6435 |
msgstr "تحميلها على:"
|
6436 |
|
6475 |
msgid "%s authentication"
|
6476 |
msgstr "%s مصادقة"
|
6477 |
|
6478 |
+
#: src/addons/onedrive.php:891, src/class-updraftplus.php:565,
|
6479 |
#: src/methods/dropbox.php:267, src/methods/dropbox.php:757,
|
6480 |
#: src/methods/dropbox.php:814, src/methods/dropbox.php:828,
|
6481 |
#: src/methods/dropbox.php:848, src/methods/dropbox.php:1005
|
6498 |
msgid "Your site's admin email address (%s) will be used."
|
6499 |
msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
|
6500 |
|
6501 |
+
#: src/admin.php:913, src/admin.php:3215, src/methods/updraftvault.php:356,
|
6502 |
#: src/methods/updraftvault.php:411,
|
6503 |
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
6504 |
msgid "Connect"
|
6505 |
msgstr "الإتصال"
|
6506 |
|
6507 |
+
#: src/class-updraftplus.php:4977
|
6508 |
msgid "(version: %s)"
|
6509 |
msgstr "(الإصدار: %s)"
|
6510 |
|
6512 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
6513 |
msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
|
6514 |
|
6515 |
+
#: src/addons/reporting.php:197, src/class-updraftplus.php:3709
|
6516 |
msgid "Latest status:"
|
6517 |
msgstr "آخر التحديثات:"
|
6518 |
|
6519 |
+
#: src/class-updraftplus.php:3708
|
6520 |
msgid "Backup contains:"
|
6521 |
msgstr "تحتوي النسخة الإحتياطية على:"
|
6522 |
|
6523 |
+
#: src/class-updraftplus.php:3665
|
6524 |
msgid "Backed up: %s"
|
6525 |
msgstr "نسخ احتياطي: %s"
|
6526 |
|
6527 |
+
#: src/addons/reporting.php:280, src/class-updraftplus.php:3659,
|
6528 |
+
#: src/class-updraftplus.php:3834
|
6529 |
msgid "The log file has been attached to this email."
|
6530 |
msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
|
6531 |
|
6532 |
+
#: src/class-updraftplus.php:3623
|
6533 |
msgid "Unknown/unexpected error - please raise a support request"
|
6534 |
msgstr "خطأ غير معروف / غير متوقع - يرجى رفع طلب دعم"
|
6535 |
|
6536 |
+
#: src/class-updraftplus.php:3618
|
6537 |
msgid "Database only (files were not part of this particular schedule)"
|
6538 |
msgstr " قاعدة البيانات فقط (لن يتم خلق نسخ احتياطية للملفات)"
|
6539 |
|
6540 |
+
#: src/class-updraftplus.php:3618
|
6541 |
msgid "Database (files backup has not completed)"
|
6542 |
msgstr "قاعدة بيانات (لم يتم إكمال نسخ الملفات احتياطيا)"
|
6543 |
|
6544 |
+
#: src/class-updraftplus.php:3615
|
6545 |
msgid "Files only (database was not part of this particular schedule)"
|
6546 |
msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقاعدة البيانات)"
|
6547 |
|
6548 |
+
#: src/class-updraftplus.php:3615
|
6549 |
msgid "Files (database backup has not completed)"
|
6550 |
msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
|
6551 |
|
6552 |
+
#: src/admin.php:384, src/class-updraftplus.php:3613
|
6553 |
msgid "Files and database"
|
6554 |
msgstr "ملفات وقواعد البيانات"
|
6555 |
|
6637 |
msgid "Reporting"
|
6638 |
msgstr "التقارير"
|
6639 |
|
6640 |
+
#: src/admin.php:5757
|
6641 |
msgid "Options (raw)"
|
6642 |
msgstr "خيارات (الخام)"
|
6643 |
|
6645 |
msgid "Send a report only when there are warnings/errors"
|
6646 |
msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
|
6647 |
|
6648 |
+
#: src/restorer.php:2879
|
6649 |
msgid "Content URL:"
|
6650 |
msgstr "رابط المحتوى:"
|
6651 |
|
6652 |
+
#: src/restorer.php:749
|
6653 |
msgid "You should check the file ownerships and permissions in your WordPress installation"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: src/backup.php:4162, src/class-updraftplus.php:978
|
6657 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
6658 |
msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
|
6659 |
|
6660 |
+
#: src/class-updraftplus.php:962
|
6661 |
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)"
|
6662 |
msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
|
6663 |
|
6733 |
msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: src/admin.php:3213
|
6737 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
6738 |
msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
|
6739 |
|
6740 |
+
#: src/admin.php:3289
|
6741 |
msgid "Forgotten your details?"
|
6742 |
msgstr "هل نسيت التفاصيل الخاصة بك؟"
|
6743 |
|
6744 |
+
#: src/admin.php:3202
|
6745 |
msgid "Not yet got an account (it's free)? Go get one!"
|
6746 |
msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
|
6747 |
|
6748 |
+
#: src/admin.php:3268
|
6749 |
msgid "Connect with your UpdraftPlus.Com account"
|
6750 |
msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
|
6751 |
|
6808 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
6809 |
msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
|
6810 |
|
6811 |
+
#: src/restorer.php:2873
|
6812 |
msgid "Site home:"
|
6813 |
msgstr "الصفحة الرئيسية للموقع:"
|
6814 |
|
6833 |
msgid "You can send a backup to more than one destination with Premium."
|
6834 |
msgstr ""
|
6835 |
|
6836 |
+
#: src/admin.php:3760
|
6837 |
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."
|
6838 |
msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
|
6839 |
|
6840 |
+
#: src/admin.php:3624
|
6841 |
msgid "(%s%%, file %s of %s)"
|
6842 |
msgstr "(%s%%, ملف %s من%s)"
|
6843 |
|
6878 |
msgid "%s settings test result:"
|
6879 |
msgstr "اعدادات نتيجة اختبار %s"
|
6880 |
|
6881 |
+
#: src/admin.php:4486, src/admin.php:4488
|
6882 |
msgid "(Not finished)"
|
6883 |
msgstr "(غير منتهي)"
|
6884 |
|
6885 |
+
#: src/admin.php:4488
|
6886 |
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."
|
6887 |
msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
|
6888 |
|
6894 |
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)."
|
6895 |
msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
|
6896 |
|
6897 |
+
#: src/admin.php:3725
|
6898 |
msgid "Job ID: %s"
|
6899 |
msgstr "رقم الوظيفة: %s"
|
6900 |
|
6901 |
+
#: src/admin.php:3705
|
6902 |
msgid "last activity: %ss ago"
|
6903 |
msgstr "آخر نشاط: منذ %ss"
|
6904 |
|
6905 |
+
#: src/admin.php:3704
|
6906 |
msgid "next resumption: %d (after %ss)"
|
6907 |
msgstr "الاستئناف التالي: %d (بعد %ss)"
|
6908 |
|
6909 |
+
#: src/admin.php:3687, src/central/translations-updraftplus.php:28,
|
6910 |
#: src/methods/updraftvault.php:459, src/methods/updraftvault.php:506,
|
6911 |
#: src/methods/updraftvault.php:594
|
6912 |
msgid "Unknown"
|
6913 |
msgstr "غير معروف"
|
6914 |
|
6915 |
+
#: src/admin.php:3638
|
6916 |
msgid "Backup finished"
|
6917 |
msgstr "الانتهاء من النسخ الاحتياطي"
|
6918 |
|
6919 |
+
#: src/admin.php:3633
|
6920 |
msgid "Waiting until scheduled time to retry because of errors"
|
6921 |
msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
|
6922 |
|
6923 |
+
#: src/admin.php:3629
|
6924 |
msgid "Pruning old backup sets"
|
6925 |
msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
|
6926 |
|
6927 |
+
#: src/admin.php:3616
|
6928 |
msgid "Uploading files to remote storage"
|
6929 |
msgstr "تحميل الملفات للمخزن البعيد"
|
6930 |
|
6931 |
+
#: src/admin.php:3685
|
6932 |
msgid "Encrypted database"
|
6933 |
msgstr "قاعدة بيانات مشفرة"
|
6934 |
|
6935 |
+
#: src/admin.php:3677
|
6936 |
msgid "Encrypting database"
|
6937 |
msgstr "تشفير قاعدة البيانات"
|
6938 |
|
6939 |
+
#: src/admin.php:3651
|
6940 |
msgid "Created database backup"
|
6941 |
msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
|
6942 |
|
6943 |
+
#: src/admin.php:3664
|
6944 |
msgid "table: %s"
|
6945 |
msgstr "الجدول: %s"
|
6946 |
|
6947 |
+
#: src/admin.php:3662
|
6948 |
msgid "Creating database backup"
|
6949 |
msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
|
6950 |
|
6951 |
+
#: src/admin.php:3607
|
6952 |
msgid "Created file backup zips"
|
6953 |
msgstr "تم انشاء ملف النسخ الاحتياطى zips"
|
6954 |
|
6955 |
+
#: src/admin.php:3594
|
6956 |
msgid "Creating file backup zips"
|
6957 |
msgstr "انشاء ملف النسخ الاحتياطى zips"
|
6958 |
|
6959 |
+
#: src/admin.php:3589
|
6960 |
msgid "Backup begun"
|
6961 |
msgstr "بدأ النسخ الاحتياطى"
|
6962 |
|
6964 |
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."
|
6965 |
msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
|
6966 |
|
6967 |
+
#: src/restorer.php:1392
|
6968 |
msgid "file"
|
6969 |
msgstr "ملف"
|
6970 |
|
6971 |
+
#: src/addons/onedrive.php:1243, src/restorer.php:1384
|
6972 |
msgid "folder"
|
6973 |
msgstr "مجلد"
|
6974 |
|
6975 |
+
#: src/restorer.php:1384, src/restorer.php:1392
|
6976 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
6977 |
msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
|
6978 |
|
6979 |
+
#: src/class-updraftplus.php:3553
|
6980 |
msgid "The backup has not finished; a resumption is scheduled"
|
6981 |
msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
|
6982 |
|
6983 |
+
#: src/class-updraftplus.php:2283
|
6984 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
6985 |
msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
|
6986 |
|
6989 |
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)."
|
6990 |
msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
|
6991 |
|
6992 |
+
#: src/admin.php:2931
|
6993 |
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)."
|
6994 |
msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
|
6995 |
|
7069 |
msgid "Support"
|
7070 |
msgstr "الدعم الفني"
|
7071 |
|
7072 |
+
#: src/class-updraftplus.php:5320
|
7073 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
7074 |
msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
|
7075 |
|
7076 |
+
#: src/class-updraftplus.php:5312
|
7077 |
msgid "This database backup is missing core WordPress tables: %s"
|
7078 |
msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
|
7079 |
|
7080 |
+
#: src/class-updraftplus.php:5041
|
7081 |
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."
|
7082 |
msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
|
7083 |
|
7084 |
+
#: src/class-updraftplus.php:5040, src/class-updraftplus.php:5047
|
7085 |
msgid "%s version: %s"
|
7086 |
msgstr "%s النسخة: %s"
|
7087 |
|
7088 |
+
#: src/class-updraftplus.php:4905
|
7089 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
7090 |
msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
|
7091 |
|
7093 |
msgid "Be safe with an automatic backup"
|
7094 |
msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
|
7095 |
|
7096 |
+
#: src/admin.php:2871
|
7097 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7098 |
msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
|
7099 |
|
7145 |
msgid "Examples of S3-compatible storage providers:"
|
7146 |
msgstr "امثلة من مقدمى التخزين المتوافق-s3:"
|
7147 |
|
7148 |
+
#: src/admin.php:4464
|
7149 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
7150 |
msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
|
7151 |
|
7207 |
msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
|
7208 |
msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
|
7209 |
|
7210 |
+
#: src/restorer.php:746
|
7211 |
msgid "Moving unpacked backup into place..."
|
7212 |
msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
|
7213 |
|
7214 |
+
#: src/backup.php:3805, src/backup.php:4115
|
7215 |
msgid "Failed to open the zip file (%s) - %s"
|
7216 |
msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
|
7217 |
|
7236 |
msgid "File is not locally present - needs retrieving from remote storage"
|
7237 |
msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
|
7238 |
|
7239 |
+
#: src/restorer.php:418
|
7240 |
msgid "Looking for %s archive: file name: %s"
|
7241 |
msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
|
7242 |
|
7243 |
+
#: src/restorer.php:534
|
7244 |
msgid "Final checks"
|
7245 |
msgstr "الفحوصات النهائية"
|
7246 |
|
7252 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
7253 |
msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
|
7254 |
|
7255 |
+
#: src/admin.php:4181
|
7256 |
msgid "Your wp-content directory server path: %s"
|
7257 |
msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
|
7258 |
|
7273 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
7274 |
msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
|
7275 |
|
7276 |
+
#: src/class-updraftplus.php:4919
|
7277 |
msgid "Failed to open database file."
|
7278 |
msgstr "فشل فى فتح ملف قاعدة البيانات."
|
7279 |
|
7280 |
+
#: src/admin.php:5722
|
7281 |
msgid "Known backups (raw)"
|
7282 |
msgstr "النسخ الأحتياطى المعروفة (الخام)"
|
7283 |
|
7284 |
+
#: src/restorer.php:1663
|
7285 |
msgid "Files found:"
|
7286 |
msgstr "العثور على ملفات:"
|
7287 |
|
7289 |
msgid "Restoring table: %s"
|
7290 |
msgstr ""
|
7291 |
|
7292 |
+
#: src/restorer.php:2355
|
7293 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
7294 |
msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
|
7295 |
|
7296 |
+
#: src/restorer.php:438
|
7297 |
msgid "file is size:"
|
7298 |
msgstr "حجم الملف:"
|
7299 |
|
7300 |
+
#: src/addons/googlecloud.php:1067, src/addons/migrator.php:497,
|
7301 |
+
#: src/addons/migrator.php:500, src/addons/migrator.php:503,
|
7302 |
+
#: src/admin.php:1305, src/admin.php:2876, src/admin.php:4966,
|
7303 |
+
#: src/backup.php:4169, src/class-updraftplus.php:5175,
|
7304 |
+
#: src/class-updraftplus.php:5175, src/updraftplus.php:158
|
7305 |
msgid "Go here for more information."
|
7306 |
msgstr "اذهب هنا لمزيد من المعلومات."
|
7307 |
|
7308 |
+
#: src/admin.php:4965
|
7309 |
msgid "Warning: If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7310 |
msgstr ""
|
7311 |
|
7313 |
msgid "Some files are still downloading or being processed - please wait."
|
7314 |
msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
|
7315 |
|
7316 |
+
#: src/class-updraftplus.php:5010, src/class-updraftplus.php:5031
|
7317 |
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."
|
7318 |
msgstr ""
|
7319 |
|
7355 |
msgid "%s error - failed to upload file"
|
7356 |
msgstr "خطأ %s - فشل فى ارسال الملف"
|
7357 |
|
7358 |
+
#: src/class-updraftplus.php:1462
|
7359 |
msgid "%s error - failed to re-assemble chunks"
|
7360 |
msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
|
7361 |
|
7366 |
msgid "%s authentication failed"
|
7367 |
msgstr "المصادقة فشلت %s"
|
7368 |
|
7369 |
+
#: src/addons/googlecloud.php:475, src/addons/migrator.php:592,
|
7370 |
#: src/admin.php:2605, src/admin.php:2626, src/admin.php:2634,
|
7371 |
+
#: src/class-updraftplus.php:1165, src/class-updraftplus.php:1171,
|
7372 |
+
#: src/class-updraftplus.php:4886, src/class-updraftplus.php:4888,
|
7373 |
+
#: src/class-updraftplus.php:5066, src/class-updraftplus.php:5073,
|
7374 |
+
#: src/class-updraftplus.php:5150, src/methods/googledrive.php:534,
|
7375 |
#: src/methods/s3.php:383
|
7376 |
msgid "Error: %s"
|
7377 |
msgstr "خطأ: %s"
|
7378 |
|
7379 |
+
#: src/admin.php:4099
|
7380 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
7381 |
msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
|
7382 |
|
7383 |
+
#: src/admin.php:4097
|
7384 |
msgid "Backup directory specified does <b>not</b> exist."
|
7385 |
msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
|
7386 |
|
7387 |
+
#: src/admin.php:3739, src/admin.php:4031
|
7388 |
msgid "Warning: %s"
|
7389 |
msgstr "تحذير: %s"
|
7390 |
|
7391 |
+
#: src/backup.php:3834
|
7392 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
7393 |
msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
|
7394 |
|
7395 |
+
#: src/backup.php:3036
|
7396 |
msgid "%s: unreadable file - could not be backed up"
|
7397 |
msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
|
7398 |
|
7399 |
+
#: src/backup.php:2007
|
7400 |
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."
|
7401 |
msgstr ""
|
7402 |
|
7403 |
+
#: src/backup.php:1961
|
7404 |
msgid "An error occurred whilst closing the final database file"
|
7405 |
msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
|
7406 |
|
7407 |
+
#: src/class-updraftplus.php:3650
|
7408 |
msgid "Warnings encountered:"
|
7409 |
msgstr "مصادفة تحذيرات:"
|
7410 |
|
7411 |
+
#: src/class-updraftplus.php:3532
|
7412 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
7413 |
msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
|
7414 |
|
7415 |
+
#: src/class-updraftplus.php:991
|
7416 |
msgid "Your free disk space is very low - only %s Mb remain"
|
7417 |
msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
|
7418 |
|
7419 |
+
#: src/addons/migrator.php:600
|
7420 |
msgid "New site:"
|
7421 |
msgstr "الموقع الجديد:"
|
7422 |
|
7423 |
+
#: src/addons/migrator.php:577
|
7424 |
msgid "Migrated site (from UpdraftPlus)"
|
7425 |
msgstr "المواقع المدمجة (من UpdraftPlus)"
|
7426 |
|
7427 |
+
#: src/addons/migrator.php:517
|
7428 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
7429 |
msgstr "ادخل تفاصيل عن مكان هذا الموقع الجديد ضمن المواقع المتعددة الخاصة بك:"
|
7430 |
|
7431 |
+
#: src/addons/migrator.php:516
|
7432 |
msgid "Information needed to continue:"
|
7433 |
msgstr "المعلومات اللازمة للأستمرار:"
|
7434 |
|
7435 |
+
#: src/addons/migrator.php:459
|
7436 |
msgid "Network activating theme:"
|
7437 |
msgstr "تفعيل ثيم الشبكة:"
|
7438 |
|
7439 |
+
#: src/addons/migrator.php:449
|
7440 |
msgid "Processed plugin:"
|
7441 |
msgstr "المكون الأضافى:"
|
7442 |
|
7460 |
msgid "The error reported by %s was:"
|
7461 |
msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
|
7462 |
|
7463 |
+
#: src/restorer.php:2150
|
7464 |
msgid "Please supply the requested information, and then continue."
|
7465 |
msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
|
7466 |
|
7467 |
+
#: src/class-updraftplus.php:5084, src/restorer.php:2908
|
7468 |
msgid "Site information:"
|
7469 |
msgstr "معلومات عن الموقع:"
|
7470 |
|
7471 |
+
#: src/restorer.php:2738
|
7472 |
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."
|
7473 |
msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
|
7474 |
|
7475 |
+
#: src/admin.php:1044, src/admin.php:2871, src/class-updraftplus.php:5077,
|
7476 |
+
#: src/restorer.php:3614
|
7477 |
msgid "Warning:"
|
7478 |
msgstr "تحذير:"
|
7479 |
|
7480 |
+
#: src/class-updraftplus.php:5066, src/class-updraftplus.php:5069,
|
7481 |
+
#: src/restorer.php:754
|
7482 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
7483 |
msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
|
7484 |
|
7485 |
+
#: src/restorer.php:407
|
7486 |
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."
|
7487 |
msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
|
7488 |
|
7489 |
+
#: src/addons/azure.php:604, src/admin.php:4273,
|
7490 |
#: src/methods/updraftvault.php:343
|
7491 |
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."
|
7492 |
msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
|
7530 |
msgid "Also delete from remote storage"
|
7531 |
msgstr "حذف ايضاً من التخزين البعيد"
|
7532 |
|
7533 |
+
#: src/admin.php:3409
|
7534 |
msgid "Latest UpdraftPlus.com news:"
|
7535 |
msgstr "اخر اخبار UpdraftPlus.com:"
|
7536 |
|
7547 |
msgid "Backup set not found"
|
7548 |
msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
|
7549 |
|
7550 |
+
#: src/backup.php:237
|
7551 |
msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
|
7552 |
msgstr "%s - لا يمكن دعم هذا الكيان; دليل المقابلة غير موجود (%s)"
|
7553 |
|
7582 |
msgid "Notice"
|
7583 |
msgstr "ملاحظة"
|
7584 |
|
7585 |
+
#: src/class-updraftplus.php:3632
|
7586 |
msgid "Errors encountered:"
|
7587 |
msgstr "مصادفة اخطاء:"
|
7588 |
|
7614 |
msgid "rows: %d"
|
7615 |
msgstr "الصفوف: %d"
|
7616 |
|
7617 |
+
#: src/addons/migrator.php:1342
|
7618 |
msgid "Time taken (seconds):"
|
7619 |
msgstr "الوقت المستغرق (ثانية):"
|
7620 |
|
7621 |
+
#: src/addons/migrator.php:1341, src/admin.php:870
|
7622 |
msgid "Errors:"
|
7623 |
msgstr "الأخطاء:"
|
7624 |
|
7625 |
+
#: src/addons/migrator.php:1340
|
7626 |
msgid "SQL update commands run:"
|
7627 |
msgstr "تشغيل اوامر تحديث SQL:"
|
7628 |
|
7629 |
+
#: src/addons/migrator.php:1339
|
7630 |
msgid "Changes made:"
|
7631 |
msgstr "التغييرات التي تم إجراؤها:"
|
7632 |
|
7633 |
+
#: src/addons/migrator.php:1338
|
7634 |
msgid "Rows examined:"
|
7635 |
msgstr "فحص الصفوف:"
|
7636 |
|
7637 |
+
#: src/addons/migrator.php:1337
|
7638 |
msgid "Tables examined:"
|
7639 |
msgstr "فحص الجداول:"
|
7640 |
|
7641 |
+
#: src/addons/migrator.php:1229
|
7642 |
msgid "Could not get list of tables"
|
7643 |
msgstr "لا يمكن الحصول على قائمة الجداول"
|
7644 |
|
7645 |
+
#: src/addons/migrator.php:1174
|
7646 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
7647 |
msgstr "تحذير: رابط موقع قواعد البيانات (%s) يختلف عن ما كنا نتوقعة (%s)"
|
7648 |
|
7649 |
+
#: src/addons/migrator.php:1163
|
7650 |
msgid "Nothing to do: the site URL is already: %s"
|
7651 |
msgstr "لا شئ لعملة: رابط الموقع بالفعل: %s"
|
7652 |
|
7653 |
+
#: src/addons/migrator.php:1126, src/addons/migrator.php:1130,
|
7654 |
+
#: src/addons/migrator.php:1134, src/addons/migrator.php:1139,
|
7655 |
+
#: src/addons/migrator.php:1143, src/addons/migrator.php:1148
|
7656 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
7657 |
msgstr "خطأ: معلمة فارغة غير متوقعة (%s, %s)"
|
7658 |
|
7659 |
+
#: src/addons/migrator.php:1084
|
7660 |
msgid "Database: search and replace site URL"
|
7661 |
msgstr "قاعدة البيانات: بحث واستبدال عنوان الموقع"
|
7662 |
|
7663 |
+
#: src/addons/migrator.php:939, src/addons/migrator.php:1323,
|
7664 |
+
#: src/restorer.php:4148
|
7665 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
7666 |
msgstr "فشل: لم نستطع فهم نتيجة العملية بواسطة %s ."
|
7667 |
|
7668 |
+
#: src/addons/migrator.php:937, src/addons/migrator.php:1321,
|
7669 |
+
#: src/restorer.php:4146
|
7670 |
msgid "Failed: the %s operation was not able to start."
|
7671 |
msgstr "فشل: العملية %s لم تكن قادرة على البدأ."
|
7672 |
|
7673 |
+
#: src/addons/migrator.php:569
|
7674 |
msgid "Search and replace site location in the database (migrate)"
|
7675 |
msgstr "بحث واستبدال قاعدة البيانات فى الموقع (ترحيل)"
|
7676 |
|
7677 |
+
#: src/addons/migrator.php:569
|
7678 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
7679 |
msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
|
7680 |
|
7682 |
msgid "Blog uploads"
|
7683 |
msgstr "مدونة الملفات المرفوعة"
|
7684 |
|
7685 |
+
#: src/addons/migrator.php:503, src/addons/multisite.php:742
|
7686 |
msgid "Must-use plugins"
|
7687 |
msgstr "لابد من استخدام الأضافات"
|
7688 |
|
7720 |
|
7721 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:265,
|
7722 |
#: src/addons/sftp.php:496, src/addons/webdav.php:248, src/admin.php:1032,
|
7723 |
+
#: src/admin.php:3284, src/methods/openstack2.php:164,
|
7724 |
#: src/methods/updraftvault.php:410,
|
7725 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
7726 |
msgid "Password"
|
7789 |
|
7790 |
#: src/addons/googlecloud.php:809, src/addons/googlecloud.php:843,
|
7791 |
#: src/addons/googlecloud.php:849, src/addons/sftp.php:591,
|
7792 |
+
#: src/addons/webdav.php:325, src/admin.php:3810, src/admin.php:3846,
|
7793 |
+
#: src/admin.php:3856, src/methods/addon-base-v2.php:356
|
7794 |
msgid "Failed"
|
7795 |
msgstr "فشل"
|
7796 |
|
7992 |
msgid "API key"
|
7993 |
msgstr "مفتاح API"
|
7994 |
|
7995 |
+
#: src/addons/migrator.php:341, src/addons/moredatabase.php:113,
|
7996 |
#: src/addons/moredatabase.php:115, src/addons/moredatabase.php:117,
|
7997 |
#: src/addons/sftp.php:560, src/addons/sftp.php:564, src/addons/sftp.php:568,
|
7998 |
#: src/addons/webdav.php:316, src/admin.php:927,
|
8042 |
msgid "Test %s Settings"
|
8043 |
msgstr "اختبار %s الإعدادات"
|
8044 |
|
8045 |
+
#: src/addons/webdav.php:638, src/class-updraftplus.php:1505,
|
8046 |
+
#: src/class-updraftplus.php:1549, src/methods/cloudfiles.php:398
|
8047 |
msgid "Error opening local file: Failed to download"
|
8048 |
msgstr "خطأ في فتح ملف محلي: فشل التحميل"
|
8049 |
|
8052 |
msgid "%s Error: Failed to upload"
|
8053 |
msgstr "%s خطأ: فشل في تحميل"
|
8054 |
|
8055 |
+
#: src/class-updraftplus.php:1347
|
8056 |
msgid "%s Error: Failed to open local file"
|
8057 |
msgstr "%s خطأ: فشل في فتح ملف محلي"
|
8058 |
|
8161 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
8162 |
msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
|
8163 |
|
8164 |
+
#: src/admin.php:3814, src/admin.php:3849, src/admin.php:3853,
|
8165 |
#: src/includes/class-remote-send.php:441,
|
8166 |
+
#: src/includes/class-storage-methods-interface.php:323, src/restorer.php:436,
|
8167 |
+
#: src/restorer.php:3975, src/restorer.php:4095
|
8168 |
msgid "OK"
|
8169 |
msgstr "حسنا"
|
8170 |
|
8171 |
+
#: src/restorer.php:3969, src/restorer.php:4059
|
8172 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
8173 |
msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
|
8174 |
|
8175 |
+
#: src/includes/class-search-replace.php:496, src/restorer.php:3780
|
8176 |
msgid "the database query being run was:"
|
8177 |
msgstr "ادارة استعلام قاعدة البيانات كانت في:"
|
8178 |
|
8179 |
+
#: src/restorer.php:2434
|
8180 |
msgid "will restore as:"
|
8181 |
msgstr "إستعادة على النحو التالي:"
|
8182 |
|
8183 |
+
#: src/class-updraftplus.php:5055, src/restorer.php:2263,
|
8184 |
+
#: src/restorer.php:2891, src/restorer.php:3059
|
8185 |
msgid "Old table prefix:"
|
8186 |
msgstr "بادئة الجدول القديمة:"
|
8187 |
|
8188 |
#: src/addons/reporting.php:87, src/addons/reporting.php:196,
|
8189 |
+
#: src/class-updraftplus.php:3706, src/class-updraftplus.php:4977
|
8190 |
msgid "Backup of:"
|
8191 |
msgstr "نسخة احتياطية لـ:"
|
8192 |
|
8193 |
+
#: src/restorer.php:2633
|
8194 |
msgid "Failed to open database file"
|
8195 |
msgstr "فشل في فتح ملف قاعدة البيانات"
|
8196 |
|
8197 |
+
#: src/restorer.php:2612
|
8198 |
msgid "Failed to find database file"
|
8199 |
msgstr "فشل في العثور على ملف قاعدة البيانات"
|
8200 |
|
8201 |
+
#: src/restorer.php:2589
|
8202 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
8203 |
msgstr "تحذير: PHP safe_mode نشط بخادمكم. سنكون عرضة لحالة المهلات بكثرة. ان حدث هذا المشكل بالفعل، ستكون مضطر للإسترجاع الملف من phpMyAdmin أو بطريقة أخرى."
|
8204 |
|
8205 |
+
#: src/restorer.php:1199
|
8206 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
8207 |
msgstr "wp-config.php من النسخ الإحتياطية: إستعادة (بناءا على طلب السمتخدم)"
|
8208 |
|
8209 |
+
#: src/restorer.php:1192
|
8210 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
8211 |
msgstr "wp-config.php من النسخ الاحتياطي: سيتم إستعادته كمسمى wp-config-backup.php"
|
8212 |
|
8213 |
+
#: src/restorer.php:1068
|
8214 |
msgid "Failed to write out the decrypted database to the filesystem"
|
8215 |
msgstr "فشل في كتابة قاعدة البيانات مفككت التشفير لنظام الملفات"
|
8216 |
|
8217 |
+
#: src/restorer.php:1052
|
8218 |
msgid "Failed to create a temporary directory"
|
8219 |
msgstr "فشل في إنشاء دليل مؤقت"
|
8220 |
|
8221 |
+
#: src/restorer.php:753
|
8222 |
msgid "Failed to delete working directory after restoring."
|
8223 |
msgstr "فشل في حذف دليل العمل بعد الإستعادة."
|
8224 |
|
8225 |
+
#: src/restorer.php:748
|
8226 |
msgid "Cleaning up rubbish..."
|
8227 |
msgstr "تنظيف القمامة ..."
|
8228 |
|
8229 |
+
#: src/restorer.php:747
|
8230 |
msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
|
8231 |
msgstr "استرجاع قاعدة البيانات (بالمواقع الكبيرة ستأخد هذه العملية وقت طويل - ان واجهت مشكل انقضاء المهلة (سببه نقص في استخدام موارد السيرفر للإستضافة) يمكنك استخدام طريقة أخرى، كـ phpMyAdmin)"
|
8232 |
|
8233 |
+
#: src/restorer.php:744
|
8234 |
msgid "Database successfully decrypted."
|
8235 |
msgstr "تم فك تشفير قاعدة البيانات بنجاح."
|
8236 |
|
8237 |
+
#: src/restorer.php:743
|
8238 |
msgid "Decrypting database (can take a while)..."
|
8239 |
msgstr "فك تشفير قاعدة البيانات (يمكن أن يستغرق بعض الوقت) ..."
|
8240 |
|
8241 |
+
#: src/restorer.php:742
|
8242 |
msgid "Unpacking backup..."
|
8243 |
msgstr "تفريغ النسخ الاحتياطي ..."
|
8244 |
|
8245 |
+
#: src/restorer.php:741
|
8246 |
msgid "Copying this entity failed."
|
8247 |
msgstr "فشل نسخ هذا الكيان."
|
8248 |
|
8249 |
+
#: src/restorer.php:740
|
8250 |
msgid "Backup file not available."
|
8251 |
msgstr "ملف النسخ الاحتياطي غير متوفر."
|
8252 |
|
8253 |
+
#: src/restorer.php:739
|
8254 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
8255 |
msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
|
8256 |
|
8257 |
+
#: src/restorer.php:444, src/restorer.php:445
|
8258 |
msgid "Could not read one of the files for restoration"
|
8259 |
msgstr ""
|
8260 |
|
8261 |
+
#: src/restorer.php:623
|
8262 |
msgid "Error message"
|
8263 |
msgstr "رسالة الخطأ"
|
8264 |
|
8265 |
+
#: src/restorer.php:441
|
8266 |
msgid "The backup records do not contain information about the proper size of this file."
|
8267 |
msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
|
8268 |
|
8269 |
+
#: src/restorer.php:433
|
8270 |
msgid "Archive is expected to be size:"
|
8271 |
msgstr "من المتوقع أن يكون حجم الأرشيف:"
|
8272 |
|
8273 |
+
#: src/admin.php:5120
|
8274 |
msgid "If making a request for support, please include this information:"
|
8275 |
msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
|
8276 |
|
8277 |
+
#: src/admin.php:5120
|
8278 |
msgid "ABORT: Could not find the information on which entities to restore."
|
8279 |
msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
|
8280 |
|
8282 |
msgid "UpdraftPlus Restoration: Progress"
|
8283 |
msgstr "استرجاع UpdraftPlus: تقدم"
|
8284 |
|
8285 |
+
#: src/admin.php:5083
|
8286 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
8287 |
msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
|
8288 |
|
8289 |
+
#: src/admin.php:4516
|
8290 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
8291 |
msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
|
8292 |
|
8293 |
+
#: src/admin.php:4600
|
8294 |
msgid "Delete this backup set"
|
8295 |
msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
|
8296 |
|
8297 |
+
#: src/admin.php:4285
|
8298 |
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."
|
8299 |
msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
|
8300 |
|
8301 |
+
#: src/admin.php:4282
|
8302 |
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."
|
8303 |
msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
|
8304 |
|
8305 |
+
#: src/admin.php:4280
|
8306 |
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)."
|
8307 |
msgstr ""
|
8308 |
|
8343 |
msgid "Use the server's SSL certificates"
|
8344 |
msgstr "استخدام شهادات SSL للملقم"
|
8345 |
|
8346 |
+
#: src/admin.php:4101
|
8347 |
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."
|
8348 |
msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
|
8349 |
|
8350 |
+
#: src/admin.php:4101
|
8351 |
msgid "or, to reset this option"
|
8352 |
msgstr "أو، لإعادة هذا الخيار"
|
8353 |
|
8354 |
+
#: src/admin.php:4101
|
8355 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
8356 |
msgstr ""
|
8357 |
|
8358 |
+
#: src/admin.php:4093
|
8359 |
msgid "Backup directory specified is writable, which is good."
|
8360 |
msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
|
8361 |
|
8397 |
msgstr "إلغاء"
|
8398 |
|
8399 |
#: src/addons/incremental.php:330, src/addons/incremental.php:338,
|
8400 |
+
#: src/addons/reporting.php:260, src/admin.php:4366
|
8401 |
msgid "None"
|
8402 |
msgstr "لا شيء"
|
8403 |
|
8413 |
msgid "Database encryption phrase"
|
8414 |
msgstr "عبارة تشفير قاعدة البيانات"
|
8415 |
|
8416 |
+
#: src/admin.php:3274, src/methods/updraftvault.php:409,
|
8417 |
#: src/templates/wp-admin/settings/form-contents.php:256,
|
8418 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
8419 |
msgid "Email"
|
8427 |
msgid "Exclude these:"
|
8428 |
msgstr "استبعاد هذه:"
|
8429 |
|
8430 |
+
#: src/admin.php:4181
|
8431 |
msgid "Any other directories found inside wp-content"
|
8432 |
msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
|
8433 |
|
8448 |
msgstr ""
|
8449 |
|
8450 |
#: src/addons/incremental.php:334, src/addons/incremental.php:347,
|
8451 |
+
#: src/admin.php:4069, src/admin.php:4082
|
8452 |
msgid "Monthly"
|
8453 |
msgstr "شهريا"
|
8454 |
|
8455 |
#: src/addons/incremental.php:333, src/addons/incremental.php:346,
|
8456 |
+
#: src/admin.php:4081
|
8457 |
msgid "Fortnightly"
|
8458 |
msgstr "نصف شهري"
|
8459 |
|
8460 |
#: src/addons/incremental.php:332, src/addons/incremental.php:345,
|
8461 |
+
#: src/admin.php:4080
|
8462 |
msgid "Weekly"
|
8463 |
msgstr "أسبوعيا"
|
8464 |
|
8465 |
#: src/addons/incremental.php:331, src/addons/incremental.php:344,
|
8466 |
+
#: src/admin.php:4079
|
8467 |
msgid "Daily"
|
8468 |
msgstr "يوميا"
|
8469 |
|
8471 |
msgid "Files backup interval"
|
8472 |
msgstr ""
|
8473 |
|
8474 |
+
#: src/admin.php:909, src/admin.php:4045
|
8475 |
msgid "Download log file"
|
8476 |
msgstr "تحميل ملف السجل"
|
8477 |
|
8478 |
+
#: src/admin.php:3917
|
8479 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
8480 |
msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
|
8481 |
|
8482 |
+
#: src/admin.php:3912
|
8483 |
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"
|
8484 |
msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
|
8485 |
|
8486 |
+
#: src/admin.php:3898
|
8487 |
msgid "The request to the filesystem to create the directory failed."
|
8488 |
msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
|
8489 |
|
8490 |
+
#: src/admin.php:900, src/admin.php:3807, src/admin.php:3841,
|
8491 |
+
#: src/admin.php:4600, src/includes/class-remote-send.php:692,
|
8492 |
#: src/templates/wp-admin/settings/existing-backups-table.php:167,
|
8493 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
8494 |
msgid "Delete"
|
8495 |
msgstr "حذف"
|
8496 |
|
8497 |
+
#: src/admin.php:3759
|
8498 |
msgid "show log"
|
8499 |
msgstr "عرض السجل"
|
8500 |
|
8559 |
msgid "Yes"
|
8560 |
msgstr "نعم"
|
8561 |
|
8562 |
+
#: src/admin.php:5943, src/admin.php:5947,
|
8563 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
8564 |
#: src/templates/wp-admin/advanced/site-info.php:64,
|
8565 |
#: src/templates/wp-admin/advanced/site-info.php:72,
|
8591 |
msgid "Do read this helpful article of useful things to know before restoring."
|
8592 |
msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
|
8593 |
|
8594 |
+
#: src/class-updraftplus.php:5013
|
8595 |
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"
|
8596 |
msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
|
8597 |
|
8633 |
msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
|
8634 |
|
8635 |
#: src/addons/backblaze.php:205, src/addons/backblaze.php:230,
|
8636 |
+
#: src/addons/cloudfiles-enhanced.php:123, src/addons/migrator.php:924,
|
8637 |
+
#: src/addons/migrator.php:1229, src/addons/migrator.php:1307,
|
8638 |
#: src/addons/s3-enhanced.php:161, src/addons/s3-enhanced.php:166,
|
8639 |
#: src/addons/s3-enhanced.php:168, src/addons/sftp.php:962,
|
8640 |
#: src/addons/webdav.php:258, src/admin.php:91, src/admin.php:873,
|
8651 |
#: src/includes/class-search-replace.php:326,
|
8652 |
#: src/includes/class-search-replace.php:496, src/methods/remotesend.php:74,
|
8653 |
#: src/methods/remotesend.php:252, src/methods/updraftvault.php:592,
|
8654 |
+
#: src/restorer.php:438, src/restorer.php:466, src/restorer.php:2155,
|
8655 |
+
#: src/restorer.php:4135
|
8656 |
msgid "Error:"
|
8657 |
msgstr "خطأ:"
|
8658 |
|
8706 |
msgid "More tasks:"
|
8707 |
msgstr "المزيد من المهام:"
|
8708 |
|
8709 |
+
#: src/admin.php:3436
|
8710 |
msgid "Download most recently modified log file"
|
8711 |
msgstr "تحميل ملف السجل المعدل مؤخرا"
|
8712 |
|
8715 |
msgstr "(لا شيء حتى الآن تم تسجيله)"
|
8716 |
|
8717 |
#: src/addons/autobackup.php:368, src/addons/autobackup.php:463,
|
8718 |
+
#: src/admin.php:3392, src/admin.php:3398,
|
8719 |
#: src/templates/wp-admin/settings/take-backup.php:72
|
8720 |
msgid "Last log message"
|
8721 |
msgstr "رسالة السجل الأخيرة"
|
8722 |
|
8723 |
+
#: src/addons/migrator.php:275, src/admin.php:701, src/admin.php:908,
|
8724 |
+
#: src/admin.php:4516
|
8725 |
msgid "Restore"
|
8726 |
msgstr "استعادة"
|
8727 |
|
8734 |
msgstr "الساعة الآن"
|
8735 |
|
8736 |
#: src/addons/moredatabase.php:266, src/addons/reporting.php:275,
|
8737 |
+
#: src/addons/wp-cli.php:428, src/admin.php:394, src/admin.php:4341,
|
8738 |
+
#: src/admin.php:4394, src/admin.php:4984,
|
8739 |
#: src/includes/class-remote-send.php:445,
|
8740 |
#: src/includes/class-wpadmin-commands.php:154,
|
8741 |
+
#: src/includes/class-wpadmin-commands.php:612, src/restorer.php:576,
|
8742 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
|
8743 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
|
8744 |
#: src/templates/wp-admin/settings/take-backup.php:34
|
8745 |
msgid "Database"
|
8746 |
msgstr "قاعدة بيانات"
|
8747 |
|
8748 |
+
#: src/admin.php:384, src/admin.php:5729,
|
8749 |
#: src/templates/wp-admin/settings/take-backup.php:24
|
8750 |
msgid "Files"
|
8751 |
msgstr "ملفات"
|
8771 |
msgid "JavaScript warning"
|
8772 |
msgstr "تحذير جافا سكريبت"
|
8773 |
|
8774 |
+
#: src/admin.php:884, src/admin.php:3485
|
8775 |
msgid "Delete Old Directories"
|
8776 |
msgstr "حذف الدلائل القديمة"
|
8777 |
|
8778 |
+
#: src/admin.php:2931
|
8779 |
msgid "Current limit is:"
|
8780 |
msgstr "الحد الحالي هو:"
|
8781 |
|
8782 |
+
#: src/admin.php:2893
|
8783 |
msgid "Your backup has been restored."
|
8784 |
msgstr "تمت استعادة النسخ الاحتياطي."
|
8785 |
|
8791 |
msgid "Lead developer's homepage"
|
8792 |
msgstr "الولوج لموقع المطور"
|
8793 |
|
8794 |
+
#: src/admin.php:5623
|
8795 |
msgid "Your settings have been wiped."
|
8796 |
msgstr "تم القضاء على الإعدادات الخاصة بك."
|
8797 |
|
8798 |
+
#: src/admin.php:2850
|
8799 |
msgid "Backup directory successfully created."
|
8800 |
msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
|
8801 |
|
8802 |
+
#: src/admin.php:2843
|
8803 |
msgid "Backup directory could not be created"
|
8804 |
msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
|
8805 |
|
8806 |
+
#: src/admin.php:3775
|
8807 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
8808 |
msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
|
8809 |
|
8810 |
+
#: src/admin.php:3773
|
8811 |
msgid "Old directories successfully removed."
|
8812 |
msgstr "تم إزالة الدلائل القديمة بنجاح."
|
8813 |
|
8814 |
+
#: src/admin.php:3770, src/admin.php:3770
|
8815 |
msgid "Remove old directories"
|
8816 |
msgstr "إزالة الدلائل القديمة"
|
8817 |
|
8818 |
+
#: src/addons/migrator.php:344, src/addons/migrator.php:360
|
8819 |
msgid "Return to UpdraftPlus Configuration"
|
8820 |
msgstr "العودة إلى اعدادات UpdraftPlus"
|
8821 |
|
8822 |
+
#: src/admin.php:877, src/admin.php:2852, src/admin.php:3777,
|
8823 |
+
#: src/admin.php:4910, src/admin.php:4922, src/admin.php:4933,
|
8824 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
8825 |
#: src/templates/wp-admin/settings/existing-backups-table.php:142
|
8826 |
msgid "Actions"
|
8851 |
msgstr "فشل في التنزيل"
|
8852 |
|
8853 |
#: src/addons/webdav.php:584, src/addons/wp-cli.php:497, src/admin.php:874,
|
8854 |
+
#: src/class-updraftplus.php:1505, src/class-updraftplus.php:1549,
|
8855 |
#: src/includes/class-filesystem-functions.php:437,
|
8856 |
#: src/includes/class-storage-methods-interface.php:332,
|
8857 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
8858 |
#: src/methods/addon-base-v2.php:251, src/methods/addon-base-v2.php:271,
|
8859 |
+
#: src/methods/googledrive.php:1343, src/restorer.php:3971,
|
8860 |
+
#: src/restorer.php:3996, src/restorer.php:4092, src/udaddons/options.php:236,
|
8861 |
#: src/updraftplus.php:158
|
8862 |
msgid "Error"
|
8863 |
msgstr "خطأ"
|
8894 |
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."
|
8895 |
msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
|
8896 |
|
8897 |
+
#: src/addons/azure.php:604, src/addons/migrator.php:978, src/admin.php:1300,
|
8898 |
#: src/admin.php:1305, src/admin.php:1311, src/admin.php:1315,
|
8899 |
+
#: src/admin.php:1319, src/admin.php:1328, src/admin.php:4273,
|
8900 |
+
#: src/admin.php:4280, src/admin.php:4282, src/admin.php:5913,
|
8901 |
+
#: src/admin.php:6191, src/methods/cloudfiles-new.php:96,
|
8902 |
#: src/methods/cloudfiles.php:455, src/methods/ftp.php:344,
|
8903 |
#: src/methods/openstack-base.php:576, src/methods/s3.php:892,
|
8904 |
#: src/methods/s3.php:896, src/methods/updraftvault.php:343,
|
8908 |
msgid "Warning"
|
8909 |
msgstr "تحذير"
|
8910 |
|
8911 |
+
#: src/admin.php:717, src/admin.php:1222, src/admin.php:3093
|
8912 |
msgid "Settings"
|
8913 |
msgstr "إعدادات"
|
8914 |
|
8915 |
+
#: src/backup.php:310
|
8916 |
msgid "Could not create %s zip. Consult the log file for more information."
|
8917 |
msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
|
8918 |
|
8919 |
+
#: src/backup.php:2918
|
8920 |
msgid "Infinite recursion: consult your log for more information"
|
8921 |
msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
|
8922 |
|
8923 |
+
#: src/addons/azure.php:267, src/class-updraftplus.php:4673,
|
8924 |
#: src/methods/googledrive.php:1343, src/methods/s3.php:383
|
8925 |
msgid "File not found"
|
8926 |
msgstr "لم يتم العثور على ملف"
|
8929 |
msgid "The decryption key used:"
|
8930 |
msgstr "مفتاح فك التشفير المستخدم:"
|
8931 |
|
8932 |
+
#: src/class-updraftplus.php:4898,
|
8933 |
+
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:1073
|
8934 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
8935 |
msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
|
8936 |
|
8937 |
+
#: src/class-updraftplus.php:4886,
|
8938 |
+
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:1060
|
8939 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
8940 |
msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
|
8941 |
|
8942 |
+
#: src/backup.php:2801
|
8943 |
msgid "Could not open the backup file for writing"
|
8944 |
msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
|
8945 |
|
8946 |
+
#: src/class-updraftplus.php:4388
|
8947 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
8948 |
msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
|
8949 |
|
8950 |
+
#: src/class-updraftplus.php:4372
|
8951 |
msgid "Could not read the directory"
|
8952 |
msgstr "لا يمكن قراءة الدليل"
|
8953 |
|
8954 |
+
#: src/admin.php:2568, src/backup.php:1262
|
8955 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
8956 |
msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
|
8957 |
|
8958 |
+
#: src/class-updraftplus.php:3707
|
8959 |
msgid "WordPress backup is complete"
|
8960 |
msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
|
8961 |
|
8962 |
+
#: src/class-updraftplus.php:3549
|
8963 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
8964 |
msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
|
8965 |
|
8966 |
+
#: src/class-updraftplus.php:3526
|
8967 |
msgid "The backup apparently succeeded and is now complete"
|
8968 |
msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
|
8969 |
|
8971 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
8972 |
msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
|
8973 |
|
8974 |
+
#: src/class-updraftplus.php:3172
|
8975 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
8976 |
msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
|
8977 |
|
8978 |
+
#: src/class-updraftplus.php:2041
|
8979 |
msgid "Others"
|
8980 |
msgstr "أخرى"
|
8981 |
|
8982 |
+
#: src/addons/multisite.php:504, src/class-updraftplus.php:2026
|
8983 |
msgid "Uploads"
|
8984 |
msgstr "الملفات المرفوعة"
|
8985 |
|
8986 |
+
#: src/class-updraftplus.php:2025
|
8987 |
msgid "Themes"
|
8988 |
msgstr "تصاميم"
|
8989 |
|
8990 |
+
#: src/class-updraftplus.php:2024
|
8991 |
msgid "Plugins"
|
8992 |
msgstr "الإضافات"
|
8993 |
|
8994 |
+
#: src/class-updraftplus.php:689
|
8995 |
msgid "No log files were found."
|
8996 |
msgstr "لا توجد ملفات السجل."
|
8997 |
|
8998 |
+
#: src/admin.php:2430, src/admin.php:2434, src/class-updraftplus.php:684
|
8999 |
msgid "The log file could not be read."
|
9000 |
msgstr "لا يمكن قراءة ملف السجل."
|
9001 |
|
9002 |
#: src/admin.php:1348, src/admin.php:1369, src/admin.php:1407,
|
9003 |
+
#: src/class-updraftplus.php:617, src/class-updraftplus.php:684,
|
9004 |
+
#: src/class-updraftplus.php:689, src/class-updraftplus.php:694
|
9005 |
msgid "UpdraftPlus notice:"
|
9006 |
msgstr "إشعار UpdraftPlus :"
|
9007 |
|
Binary file
|
@@ -11,6 +11,18 @@ msgstr ""
|
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
#: src/udaddons/options.php:98
|
15 |
msgid "An update is available for UpdraftPlus - please connect here to gain access to it."
|
16 |
msgstr ""
|
@@ -229,47 +241,47 @@ msgstr ""
|
|
229 |
msgid "If you have an existing backup that you wish to upload and restore from, then please use the \"Upload backup files\" link above."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: src/class-updraftplus.php:
|
233 |
msgid "Include all tables not listed below"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: src/class-updraftplus.php:
|
237 |
msgid "The amount of database tables scanned is near or over the php_max_input_vars value so some tables maybe truncated. This option will ensure all tables not found will be backed up."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: src/class-updraftplus.php:
|
241 |
msgid "The database scan was taking too long and consequently the list of all tables in the database could not be completed. This option will ensure all tables not found will be backed up."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: src/class-updraftplus.php:
|
245 |
msgid "Therefore, affected tables on the current site which already exist will not be replaced by default, to avoid corrupting them (you can review this in the list of tables below)."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: src/class-updraftplus.php:
|
249 |
msgid "Therefore it is advised that you take a fresh backup on the source site, using a later version."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: src/class-updraftplus.php:
|
253 |
msgid "This backup was created on a previous UpdraftPlus version (%s) which did not correctly backup tables with composite primary keys (such as the term_relationships table, which records tags and product attributes)."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: src/class-updraftplus.php:
|
257 |
msgid "This backup is of a site with an empty table prefix, which WordPress does not officially support; the results may be unreliable."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: src/class-updraftplus.php:
|
261 |
msgid "View log"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: src/class-updraftplus.php:
|
265 |
msgid "You can view the log by pressing the 'View log' button."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: src/class-updraftplus.php:
|
269 |
msgid "UpdraftPlus on %s"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: src/class-updraftplus.php:
|
273 |
msgid " Your hosting provider only allows you to take one incremental backup per day."
|
274 |
msgstr ""
|
275 |
|
@@ -317,71 +329,71 @@ msgstr ""
|
|
317 |
msgid "The plugin you wish to activate is either not installed or has been removed recently."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: src/backup.php:
|
321 |
msgid "two unsuccessful attempts were made to include it, and it will now be omitted from the backup"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: src/backup.php:
|
325 |
msgid "a second attempt is being made (upon further failure it will be skipped)"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: src/backup.php:
|
329 |
msgid "Error getting table details"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: src/backup.php:
|
333 |
msgid "Failed to backup database table:"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: src/backup.php:
|
337 |
msgid "Failed to open directory for reading:"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: src/admin.php:
|
341 |
msgid "The download link is broken or the backup file is no longer available"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: src/admin.php:
|
345 |
msgid "The download link is broken, you may have clicked the link from untrusted source"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: src/admin.php:
|
349 |
msgid "Due to the restriction, some settings can be automatically adjusted, disabled or not available."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: src/admin.php:
|
353 |
msgid "%s permits UpdraftPlus to perform only one backup per month. Thus, we recommend you choose a full backup when performing a manual backup and to use that option when creating a scheduled backup."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: src/admin.php:
|
357 |
msgid "Your website is hosted with %s (%s)."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: src/admin.php:
|
361 |
msgid "The following remote storage (%s) have only been partially configured, if you are having problems you can try to manually authorise at the UpdraftPlus settings page."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: src/admin.php:
|
365 |
msgid "The following remote storage (%s) have only been partially configured, manual authorization is not supported with this remote storage, please try again and if the problem persists contact support."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: src/admin.php:
|
369 |
msgid "more info"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: src/admin.php:
|
373 |
msgid "The following remote storage options are configured."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: src/admin.php:
|
377 |
msgid "No remote storage locations with valid options found."
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: src/admin.php:
|
381 |
msgid "This may prevent the restore procedure from being able to proceed."
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: src/admin.php:
|
385 |
msgid "(the asterisk character matches zero or more characters)"
|
386 |
msgstr ""
|
387 |
|
@@ -437,20 +449,20 @@ msgstr ""
|
|
437 |
msgid "Your hosting provider only allows you to take one incremental backup per day."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: src/admin.php:1049, src/class-updraftplus.php:
|
441 |
msgid "You have reached the daily limit for the number of incremental backups you can create at this time."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: src/admin.php:1048, src/admin.php:1049, src/class-updraftplus.php:
|
445 |
-
#: src/class-updraftplus.php:
|
446 |
msgid "Please contact your hosting company (%s) if you require further support."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: src/admin.php:1048, src/class-updraftplus.php:
|
450 |
msgid "Your hosting provider only allows you to take one backup per month."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: src/admin.php:1048, src/class-updraftplus.php:
|
454 |
msgid "You have reached the monthly limit for the number of backups you can create at this time."
|
455 |
msgstr ""
|
456 |
|
@@ -470,7 +482,7 @@ msgstr ""
|
|
470 |
msgid "Exit full-screen"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: src/admin.php:904, src/admin.php:
|
474 |
msgid "Full-screen"
|
475 |
msgstr ""
|
476 |
|
@@ -747,35 +759,35 @@ msgstr "Вземете ново архивно копие"
|
|
747 |
msgid "Makes your site fast and efficient. It cleans the database, compresses images and caches pages for ultimate speed."
|
748 |
msgstr "Прави сайта Ви бърз и ефективен. Той почиства базата данни, компресира изображения и кешира страници за крайната скорост."
|
749 |
|
750 |
-
#: src/restorer.php:
|
751 |
msgid "The Database connection has been closed and cannot be reopened."
|
752 |
msgstr "Връзката с базата данни е затворена и не може да бъде отворена отново."
|
753 |
|
754 |
-
#: src/restorer.php:
|
755 |
msgid "Skipping table %s: already restored on a prior run; next table to restore: %s"
|
756 |
msgstr "Пропускаща таблица %s: вече е възстановена при по-предходно изпълнение; следваща таблица за възстановяване: %s"
|
757 |
|
758 |
-
#: src/restorer.php:
|
759 |
msgid "Skipping table %s: user has chosen not to restore this table"
|
760 |
msgstr "Пропускане на таблица %s: потребителят е избрал да не възстановява тази таблица"
|
761 |
|
762 |
-
#: src/restorer.php:
|
763 |
msgid "Found and replaced existing table foreign key constraints as the table prefix has changed."
|
764 |
msgstr "Намерени и заменени съществуващи ограничения за чужди ключови таблици, тъй като префиксът на таблицата е променен."
|
765 |
|
766 |
-
#: src/restorer.php:
|
767 |
msgid "An error occurred while attempting to set a new value to the MySQL global log_bin_trust_function_creators variable %s"
|
768 |
msgstr "Възникна грешка при опит за задаване на нова стойност на глобалната log_bin_trust_function_creators променлива на MySQL %s"
|
769 |
|
770 |
-
#: src/restorer.php:
|
771 |
msgid "An error occurred while attempting to retrieve the MySQL global log_bin_trust_function_creators variable %s"
|
772 |
msgstr "Възникна грешка при опит за извличане на глобалната log_bin_trust_function_creators променлива на MySQL %s"
|
773 |
|
774 |
-
#: src/restorer.php:
|
775 |
msgid "The directory does not exist, and the attempt to create it failed"
|
776 |
msgstr "Директорията не съществува и опитът за създаване на нея е неуспешен"
|
777 |
|
778 |
-
#: src/restorer.php:
|
779 |
msgid "Could not delete old path."
|
780 |
msgstr "Не може да се изтрие старият път."
|
781 |
|
@@ -968,31 +980,31 @@ msgstr ""
|
|
968 |
msgid "No backup will be started. The creation of your clone should now begin, and your WordPress username and password will be displayed below when ready."
|
969 |
msgstr "Няма да се стартира никакво архивиране. Създаването на клона трябва да започне сега и вашето потребителско име и парола за WordPress ще се показват по-долу, когато сте готови."
|
970 |
|
971 |
-
#: src/class-updraftplus.php:
|
972 |
msgid "If you do not want to restore all your database tables, then choose some to exclude here."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: src/class-updraftplus.php:
|
976 |
msgid "You should only proceed if you have checked and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the new %s version."
|
977 |
msgstr "Трябва да продължите само ако сте проверили и сте сигурни (или сте готови да рискувате), че вашите плъгини/теми/и т.н. са съвместими с новата версия на %s."
|
978 |
|
979 |
-
#: src/class-updraftplus.php:
|
980 |
msgid "This is older than the server which you are now restoring onto (version %s)."
|
981 |
msgstr "Това е по-старо от сървъра, на който се възстановява (версия %s)."
|
982 |
|
983 |
-
#: src/class-updraftplus.php:
|
984 |
msgid "Incomplete"
|
985 |
msgstr "Недовършено"
|
986 |
|
987 |
-
#: src/class-updraftplus.php:
|
988 |
msgid "The backup is being aborted for a repeated failure to progress."
|
989 |
msgstr "Архивирането е прекратено поради повтарящ се неуспех."
|
990 |
|
991 |
-
#: src/class-updraftplus.php:
|
992 |
msgid "Briefly unavailable for scheduled maintenance. Check back in a minute."
|
993 |
msgstr "За кратко недостъпна за планирано техническо обслужване. Провери след минута."
|
994 |
|
995 |
-
#: src/class-updraftplus.php:
|
996 |
msgid "Under Maintenance"
|
997 |
msgstr "В Профилактика"
|
998 |
|
@@ -1044,81 +1056,81 @@ msgstr "%s не може да бъде активиран успешно. Уве
|
|
1044 |
msgid "Unable to connect to the filesystem"
|
1045 |
msgstr "Не може да се свърже с файловата система"
|
1046 |
|
1047 |
-
#: src/admin.php:
|
1048 |
msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
|
1049 |
msgstr "Поискахте записване в отдалечено хранилище (%s), но без да въвеждате никакви настройки за това място за съхранение."
|
1050 |
|
1051 |
-
#: src/admin.php:
|
1052 |
msgid "Clone package"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: src/admin.php:
|
1056 |
msgid "An empty WordPress install"
|
1057 |
msgstr "Празна WordPress инсталация"
|
1058 |
|
1059 |
-
#: src/admin.php:
|
1060 |
msgid "This current site"
|
1061 |
msgstr "Този текущ сайт"
|
1062 |
|
1063 |
-
#: src/admin.php:
|
1064 |
msgid "Clone:"
|
1065 |
msgstr "Клонинг:"
|
1066 |
|
1067 |
-
#: src/admin.php:
|
1068 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:98
|
1069 |
msgid "3. Restoration"
|
1070 |
msgstr "3. Възстановяване"
|
1071 |
|
1072 |
-
#: src/admin.php:
|
1073 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:97
|
1074 |
msgid "2. Verifications"
|
1075 |
msgstr "2. Проверки"
|
1076 |
|
1077 |
-
#: src/admin.php:
|
1078 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:96
|
1079 |
msgid "1. Component selection"
|
1080 |
msgstr "1. Избор на компонент"
|
1081 |
|
1082 |
-
#: src/admin.php:
|
1083 |
msgid "Activity log"
|
1084 |
msgstr "Регистър на дейностите"
|
1085 |
|
1086 |
-
#: src/admin.php:
|
1087 |
msgid "Cleaning"
|
1088 |
msgstr "Изчистване"
|
1089 |
|
1090 |
-
#: src/admin.php:
|
1091 |
msgid "Verifying"
|
1092 |
msgstr "Проверка"
|
1093 |
|
1094 |
-
#: src/admin.php:
|
1095 |
msgid "Restoration progress:"
|
1096 |
msgstr "Напредък на възстановяването:"
|
1097 |
|
1098 |
-
#: src/admin.php:
|
1099 |
msgid "The restore operation has begun (%s). Do not close this page until it reports itself as having finished."
|
1100 |
msgstr "Операцията по възстановяване е започнала (%s). Не затваряйте тази страница, докато не се отчита като завършена."
|
1101 |
|
1102 |
-
#: src/admin.php:
|
1103 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
|
1104 |
msgid "UpdraftPlus Restoration"
|
1105 |
msgstr "Възстановяване на updraftPlus"
|
1106 |
|
1107 |
-
#: src/admin.php:
|
1108 |
msgid "(%d archive(s) in set, total %s)."
|
1109 |
msgstr "(%d архив(а) в комплект, общо %s)."
|
1110 |
|
1111 |
-
#: src/admin.php:
|
1112 |
msgid "Learn more about UpdraftCentral"
|
1113 |
msgstr "Научете повече за UpdraftCentral"
|
1114 |
|
1115 |
-
#: src/admin.php:
|
1116 |
msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
|
1117 |
msgstr "Добавете този сайт към UpdraftCentral (дистанционно, централизирано управление) - безплатно за до 5 сайта."
|
1118 |
|
1119 |
-
#: src/admin.php:
|
1120 |
-
#: src/admin.php:
|
1121 |
-
#: src/admin.php:
|
1122 |
msgid "Return to UpdraftPlus configuration"
|
1123 |
msgstr "Връщане към конфигурацията на UpdraftPlus"
|
1124 |
|
@@ -1202,7 +1214,7 @@ msgstr "Изтегляне на архивни файлове, ако е нео
|
|
1202 |
msgid "Begun"
|
1203 |
msgstr "Започнал"
|
1204 |
|
1205 |
-
#: src/admin.php:1038, src/admin.php:
|
1206 |
msgid "Finished"
|
1207 |
msgstr "Завършен"
|
1208 |
|
@@ -1444,7 +1456,7 @@ msgstr "За помощ при конфигуриране на %s, включи
|
|
1444 |
msgid "Azure China"
|
1445 |
msgstr "Лазурен Китай"
|
1446 |
|
1447 |
-
#: src/admin.php:
|
1448 |
msgid "Clone region:"
|
1449 |
msgstr "Клонинг област:"
|
1450 |
|
@@ -1478,7 +1490,7 @@ msgstr "Можете да научите повече за клонинг клю
|
|
1478 |
msgid "Or, use an UpdraftClone key"
|
1479 |
msgstr "Или използвайте updraftClone ключ"
|
1480 |
|
1481 |
-
#: src/restorer.php:
|
1482 |
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
1483 |
msgstr "Намерени са имена на зададени адреси %s, но се променя на %s, както е предложено от WPDB::determine_charset()."
|
1484 |
|
@@ -1502,11 +1514,11 @@ msgstr "Помолете WordPress да актуализира автомати
|
|
1502 |
msgid "Automatic updates"
|
1503 |
msgstr "Автоматични актуализации"
|
1504 |
|
1505 |
-
#: src/restorer.php:
|
1506 |
msgid "Your database user does not have permission to drop tables"
|
1507 |
msgstr "Вашата база данни потребител няма разрешение да пуснете таблици"
|
1508 |
|
1509 |
-
#: src/admin.php:
|
1510 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
1511 |
msgstr "Помолете WordPress да актуализира UpdraftPlus автоматично, когато има налична актуализация"
|
1512 |
|
@@ -1670,11 +1682,11 @@ msgstr "Получаване на данни за сайта"
|
|
1670 |
msgid "WordPress installed"
|
1671 |
msgstr "Инсталиран WordPress"
|
1672 |
|
1673 |
-
#: src/admin.php:
|
1674 |
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."
|
1675 |
msgstr "Вашият клонинг е започнал, мрежовата информация все още не е налична, но ще се покаже тук и на вашия updraftplus.com акаунт, след като е готов."
|
1676 |
|
1677 |
-
#: src/admin.php:
|
1678 |
msgid "Exclude these from"
|
1679 |
msgstr "Изключване на тези"
|
1680 |
|
@@ -1722,15 +1734,15 @@ msgstr "Прочетете често задавани въпроси тук."
|
|
1722 |
msgid "failed to upload file to %s (see log file for more)"
|
1723 |
msgstr "неуспешно качване на файл в %s (вижте регистрационния файл за повече)"
|
1724 |
|
1725 |
-
#: src/admin.php:
|
1726 |
msgid "Dashboard:"
|
1727 |
msgstr "Таблото:"
|
1728 |
|
1729 |
-
#: src/admin.php:
|
1730 |
msgid "Front page:"
|
1731 |
msgstr "Заглавна страница:"
|
1732 |
|
1733 |
-
#: src/admin.php:
|
1734 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
1735 |
msgstr "Вашият клонинг е започнал и ще бъде достъпен на следните URL адреси, след като е готов."
|
1736 |
|
@@ -1742,7 +1754,7 @@ msgstr "управление"
|
|
1742 |
msgid "Current clones"
|
1743 |
msgstr "Текущи клонинги"
|
1744 |
|
1745 |
-
#: src/class-updraftplus.php:
|
1746 |
msgid "Your clone will now deploy this data to re-create your site."
|
1747 |
msgstr "Клонингът ви сега ще разположи тези данни, за да създаде отново сайта Ви."
|
1748 |
|
@@ -1750,7 +1762,7 @@ msgstr "Клонингът ви сега ще разположи тези дан
|
|
1750 |
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."
|
1751 |
msgstr "Клонингът е бил осигурен и неговите данни са изпратени до него. След като клонингът приключи с внедряването му, ще получите имейл."
|
1752 |
|
1753 |
-
#: src/addons/migrator.php:
|
1754 |
msgid "Site key"
|
1755 |
msgstr "Ключ за сайта"
|
1756 |
|
@@ -1758,16 +1770,16 @@ msgstr "Ключ за сайта"
|
|
1758 |
msgid "Add a site"
|
1759 |
msgstr "Добавяне на сайт"
|
1760 |
|
1761 |
-
#: src/addons/migrator.php:
|
1762 |
-
#: src/addons/migrator.php:
|
1763 |
msgid "back"
|
1764 |
msgstr "обратно"
|
1765 |
|
1766 |
-
#: src/addons/migrator.php:
|
1767 |
msgid "Read this article to see step-by-step how it's done."
|
1768 |
msgstr "Прочетете тази статия, за да видите стъпка по стъпка как се прави."
|
1769 |
|
1770 |
-
#: src/addons/migrator.php:
|
1771 |
#: src/templates/wp-admin/settings/migrator-no-migrator.php:6
|
1772 |
msgid "Migrate (create a copy of a site on hosting you control)"
|
1773 |
msgstr "Мигриране (създаване на копие на сайт на хостинг, който контролирате)"
|
@@ -2044,7 +2056,7 @@ msgstr "Назад"
|
|
2044 |
msgid "You can buy more temporary clone tokens here."
|
2045 |
msgstr "Тук можете да купите още временни клонинг символи."
|
2046 |
|
2047 |
-
#: src/admin.php:
|
2048 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
2049 |
msgstr "Забраняване на администраторите да влизат в WordPress на вашия клонинг"
|
2050 |
|
@@ -2064,19 +2076,19 @@ msgstr "Други страхотни плъгини"
|
|
2064 |
msgid "The creation of your data for creating the clone should now begin."
|
2065 |
msgstr "Създаването на вашите данни за създаване на клонинга трябва да започне."
|
2066 |
|
2067 |
-
#: src/admin.php:
|
2068 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
2069 |
msgstr "Можете да намерите вашата временна информация за клониране в updraftplus.com си акаунт тук."
|
2070 |
|
2071 |
-
#: src/class-updraftplus.php:
|
2072 |
msgid "Choose a default for each table"
|
2073 |
msgstr "Изберете по подразбиране за всяка таблица"
|
2074 |
|
2075 |
-
#: src/admin.php:
|
2076 |
msgid "Sending files to remote site"
|
2077 |
msgstr "Изпращане на файлове до отдалечен сайт"
|
2078 |
|
2079 |
-
#: src/admin.php:
|
2080 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
2081 |
msgstr "Clone сървър се обезпечава и обувка (може да отнеме няколко минути)"
|
2082 |
|
@@ -2084,15 +2096,15 @@ msgstr "Clone сървър се обезпечава и обувка (може
|
|
2084 |
msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
|
2085 |
msgstr "Предупреждение: избрахте по-ниска версия от инсталираната ви версия. Това може да е неуспешно, ако имате компоненти, които са несъвместими с по-стари версии."
|
2086 |
|
2087 |
-
#: src/addons/migrator.php:
|
2088 |
msgid "To import a backup set, go to the \"Existing backups\" section in the \"Backup/Restore\" tab"
|
2089 |
msgstr "За да импортирате набор от архиви, отидете на раздела \"Съществуващи архиви\" в раздела \"Архивиране/възстановяване\""
|
2090 |
|
2091 |
-
#: src/admin.php:
|
2092 |
msgid "Backup / Restore"
|
2093 |
msgstr "Архивиране / възстановяване"
|
2094 |
|
2095 |
-
#: src/admin.php:701, src/admin.php:
|
2096 |
msgid "Backup"
|
2097 |
msgstr "Архивиране"
|
2098 |
|
@@ -2112,7 +2124,7 @@ msgstr "Отдалечено хранилище: %s"
|
|
2112 |
msgid "No previous backup found to add an increment to."
|
2113 |
msgstr "Не е намерено предишно резервно копие, към което да се добави увеличение."
|
2114 |
|
2115 |
-
#: src/restorer.php:
|
2116 |
msgid "Requested character set (%s) is not present - changing to %s."
|
2117 |
msgstr "Заявеният набор от знаци (%s) не е наличен - промяна в %s."
|
2118 |
|
@@ -2164,11 +2176,11 @@ msgstr "Отпечатъците не съвпадат."
|
|
2164 |
msgid "More information here."
|
2165 |
msgstr "Повече информация тук."
|
2166 |
|
2167 |
-
#: src/admin.php:709, src/admin.php:
|
2168 |
msgid "Migrate / Clone"
|
2169 |
msgstr "Мигриране / Клонинг"
|
2170 |
|
2171 |
-
#: src/admin.php:
|
2172 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76,
|
2173 |
#: src/templates/wp-admin/settings/existing-backups-table.php:79
|
2174 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
@@ -2178,7 +2190,7 @@ msgstr "Позволявайте само ръчно изтриване на т
|
|
2178 |
msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
|
2179 |
msgstr "Вие сте дали опцията %1$s. %1$s работи с добавката \"%2$s\". Вземи добавката \"%2$s\": %3$s"
|
2180 |
|
2181 |
-
#: src/restorer.php:
|
2182 |
msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
|
2183 |
msgstr "Вашата WordPress инсталация има стари директории от своето състояние, преди да сте възстановени / мигрирали (техническа информация: те са наставени с -old)."
|
2184 |
|
@@ -2190,15 +2202,15 @@ msgstr "Това не е постъпково архивиране"
|
|
2190 |
msgid "Run this command to see the log file for this restoration (needed for any support requests)."
|
2191 |
msgstr "Изпълнете тази команда, за да видите регистрационния файл за това възстановяване (необходим за всички заявки за поддръжка)."
|
2192 |
|
2193 |
-
#: src/class-updraftplus.php:
|
2194 |
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."
|
2195 |
msgstr "Вече е инсталирана версия на UpdraftPlus. WordPress ще ви позволи да инсталирате новата си версия само след първото де-инсталиране на съществуващата. Това е безопасно - всички настройки и резервни копия ще бъдат запазени. Така че, отидете на страницата \"Плъгини\", де-активира и де-инсталиране UpdraftPlus, и след това опитайте отново."
|
2196 |
|
2197 |
-
#: src/admin.php:
|
2198 |
msgid "(current version)"
|
2199 |
msgstr "(актуална версия)"
|
2200 |
|
2201 |
-
#: src/admin.php:
|
2202 |
msgid "press here"
|
2203 |
msgstr "натиснете тук"
|
2204 |
|
@@ -2220,7 +2232,7 @@ msgstr "Разкажи ми повече"
|
|
2220 |
msgid "And then add an incremental backup"
|
2221 |
msgstr "След това добавете и постъпково резервно копие"
|
2222 |
|
2223 |
-
#: src/addons/incremental.php:339, src/admin.php:
|
2224 |
msgid "Every hour"
|
2225 |
msgstr "Всеки час"
|
2226 |
|
@@ -2232,7 +2244,7 @@ msgstr "Създаване на клон"
|
|
2232 |
msgid "Available temporary clone tokens:"
|
2233 |
msgstr "Налични временни клонирани маркери:"
|
2234 |
|
2235 |
-
#: src/admin.php:
|
2236 |
#: src/includes/class-commands.php:1081, src/includes/class-commands.php:1083,
|
2237 |
#: src/methods/backup-module.php:663,
|
2238 |
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
@@ -2252,7 +2264,7 @@ msgstr "UpdraftPlus.Com условия и правила на профила"
|
|
2252 |
msgid "I consent to %s"
|
2253 |
msgstr "Съгласен съм с %s"
|
2254 |
|
2255 |
-
#: src/admin.php:
|
2256 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
2257 |
msgid "One Time Password (check your OTP app to get this password)"
|
2258 |
msgstr "Еднократна парола (проверете вашия OTP приложение, за да получите тази парола)"
|
@@ -2301,7 +2313,7 @@ msgstr "Архивиране, актуализиране и управление
|
|
2301 |
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."
|
2302 |
msgstr "Възникна грешка при обработката на заявката ви. Сървърът може да е зает или да сте загубили връзката си с интернет по време на заявката. Моля, опитайте отново по-късно."
|
2303 |
|
2304 |
-
#: src/admin.php:
|
2305 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
2306 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
2307 |
msgstr[0] "Файлът %s има \"байт за ред\" (BOM) в началото си."
|
@@ -2405,7 +2417,7 @@ msgstr "Изберете отдалечените дестинации за съ
|
|
2405 |
msgid "Upload backup"
|
2406 |
msgstr "Качване на резервно копие"
|
2407 |
|
2408 |
-
#: src/admin.php:
|
2409 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
2410 |
msgstr "След като натиснете този бутон, можете да изберете къде да качите архива от списък с вашите текущо запазени местоположения за отдалечено съхранение"
|
2411 |
|
@@ -2417,7 +2429,7 @@ msgstr "(вече е качен)"
|
|
2417 |
msgid "Local backup upload has started; please check the log file to see the upload progress"
|
2418 |
msgstr "Стартира локалното качване на резервно копие; моля, проверете регистрационния файл, за да видите напредъка на качването"
|
2419 |
|
2420 |
-
#: src/admin.php:902, src/admin.php:
|
2421 |
msgid "Upload"
|
2422 |
msgstr "Качи"
|
2423 |
|
@@ -2433,7 +2445,7 @@ msgstr "Имайте предвид, че пощенски сървъри са
|
|
2433 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
2434 |
msgstr "Използвайте тази опция, за да изпращате архиви на бази данни само при изпращане на имейл и да пропуснете други компоненти."
|
2435 |
|
2436 |
-
#: src/addons/migrator.php:
|
2437 |
msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
|
2438 |
msgstr "За допълнителни резервни копия ще можете да избирате кои стъпки да възстановите на по-късен етап."
|
2439 |
|
@@ -2479,15 +2491,15 @@ msgstr "Последно започна иД на заданието за арх
|
|
2479 |
msgid "The given value for the '%s' option is not valid"
|
2480 |
msgstr "Дадената стойност за опцията '%s' е невалидна"
|
2481 |
|
2482 |
-
#: src/addons/migrator.php:
|
2483 |
msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
|
2484 |
msgstr "За да разрешите на друг сайт да изпрати архив на този сайт, създайте ключ по-долу. Когато се покаже клавиша, след това натиснете бутона \"Мигриране\" на другия (изпращане) сайт и копирайте и поставете ключа там (в раздела \"Изпрати резервно копие на друг сайт\")."
|
2485 |
|
2486 |
-
#: src/addons/migrator.php:
|
2487 |
msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
|
2488 |
msgstr "Така че, за да получите ключа за отдалечения сайт, отворете прозореца \"Мигриране на сайта\" на този сайт и отидете на този раздел."
|
2489 |
|
2490 |
-
#: src/addons/migrator.php:
|
2491 |
msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
|
2492 |
msgstr "Ключовете за сайт са създадени в раздела \"получи резервно копие от отдалечен сайт\"."
|
2493 |
|
@@ -2515,15 +2527,15 @@ msgstr "Благодаря ви за инсталирането UpdraftPlus!"
|
|
2515 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
2516 |
msgstr "Няма ключове, които да позволяват на отдалечени сайтове да изпращат резервни данни тук все още са създадени."
|
2517 |
|
2518 |
-
#: src/restorer.php:
|
2519 |
msgid "Failed to read from the working directory."
|
2520 |
msgstr "Неуспешно четене от работната директория."
|
2521 |
|
2522 |
-
#: src/restorer.php:
|
2523 |
msgid "Failed to find a manifest file in the backup."
|
2524 |
msgstr "Неуспешно откриване на манифест в архива."
|
2525 |
|
2526 |
-
#: src/restorer.php:
|
2527 |
msgid "Failed to read the manifest file from backup."
|
2528 |
msgstr "Неуспешно четене на манифеста от архива."
|
2529 |
|
@@ -2535,11 +2547,11 @@ msgstr "(Няма конфигуриран)"
|
|
2535 |
msgid "Ensure you are logged into the correct account before continuing."
|
2536 |
msgstr "Уверете се, че сте влезли в правилния акаунт, преди да продължите."
|
2537 |
|
2538 |
-
#: src/admin.php:
|
2539 |
msgid "Remote storage method and instance id are required for authentication."
|
2540 |
msgstr "Метод за отдалечено съхранение и идентификатор на екземпляр са необходими за удостоверяване."
|
2541 |
|
2542 |
-
#: src/admin.php:
|
2543 |
msgid "authentication error"
|
2544 |
msgstr "грешка при удостоверяване"
|
2545 |
|
@@ -2547,15 +2559,15 @@ msgstr "грешка при удостоверяване"
|
|
2547 |
msgid "(Nothing has been logged yet)"
|
2548 |
msgstr "(Нищо не е записано още)"
|
2549 |
|
2550 |
-
#: src/addons/migrator.php:
|
2551 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
2552 |
msgstr "ще искате да използвате по-долу търсене и да замени място на сайта в базата данни (мигриране) за търсене/замяна на адреса на сайта."
|
2553 |
|
2554 |
-
#: src/addons/migrator.php:
|
2555 |
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 below search and replace so that the non-https links are automatically replaced."
|
2556 |
msgstr "Докато вашият уеб хостинг позволява http (т.е. не-SSL достъп) или ще препраща заявки към https (което е почти винаги случаят), това не е проблем. Ако това все още не е настроено, трябва да го настроите или да използвате търсене и замяна по-долу, така че връзките, които не са https, да се заменят автоматично."
|
2557 |
|
2558 |
-
#: src/addons/migrator.php:
|
2559 |
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 below search and replace to search/replace the site address so that the site can be visited without https."
|
2560 |
msgstr "Това възстановяване ще работи, ако все още имате SSL сертификат (т.е. може да използва https) за достъп до сайта. В противен случай ще искате да използвате търсене по-долу и да замените за търсене/замяна на адреса на сайта, така че сайтът да може да бъде посетен без https."
|
2561 |
|
@@ -2603,31 +2615,31 @@ msgstr "отдалечен сайт"
|
|
2603 |
msgid "Invalid bucket name"
|
2604 |
msgstr "Невалидно име на кофа"
|
2605 |
|
2606 |
-
#: src/restorer.php:
|
2607 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
2608 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
2609 |
msgstr[0] "Исканото сравнение на таблицата (%1$s) не е налично - промяна на %2$s."
|
2610 |
msgstr[1] "Заявените сравнения на таблици (%1$s) не са налични - промяна на %2$s."
|
2611 |
|
2612 |
-
#: src/class-updraftplus.php:
|
2613 |
msgid "Your chosen replacement collation"
|
2614 |
msgstr "Вашият избор на замяна"
|
2615 |
|
2616 |
-
#: src/class-updraftplus.php:
|
2617 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
2618 |
msgstr "Вместо това можете да изберете друго подходящо сравнение и да продължите с възстановяването (на свой собствен риск)."
|
2619 |
|
2620 |
-
#: src/class-updraftplus.php:
|
2621 |
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."
|
2622 |
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."
|
2623 |
msgstr[0] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа сравнението (%s), използвано в базата данни, която се опитвате да импортирате."
|
2624 |
msgstr[1] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа множество сравнения (%s), използвани в базата данни, която се опитвате да импортирате."
|
2625 |
|
2626 |
-
#: src/addons/migrator.php:
|
2627 |
msgid "Database restoration options:"
|
2628 |
msgstr "Опции за възстановяване на база данни:"
|
2629 |
|
2630 |
-
#: src/addons/migrator.php:
|
2631 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
2632 |
msgstr "Това изглежда като миграция (архивирането е от сайт с различен адрес/URL адрес, %s)."
|
2633 |
|
@@ -2675,25 +2687,25 @@ msgstr "Самостоятелно хоства табло"
|
|
2675 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
2676 |
msgstr "На вашия UpdraftCentral табло трябва да натиснете бутона \"Добавяне на сайт\" след това поставете клавиша в полето за въвеждане."
|
2677 |
|
2678 |
-
#: src/addons/migrator.php:
|
2679 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
2680 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
2681 |
msgstr[0] "Вашият .htaccess има стара препратка към сайт на номер %s. Трябва да го премахнете ръчно."
|
2682 |
msgstr[1] "Вашият .htaccess има стари препратки към сайтове за номерата на редове %s. Трябва да ги премахнете ръчно."
|
2683 |
|
2684 |
-
#: src/restorer.php:
|
2685 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
2686 |
msgstr "Исканият набор от знаци на таблицата (%s) липсва - промяна в %s."
|
2687 |
|
2688 |
-
#: src/class-updraftplus.php:
|
2689 |
msgid "Your chosen character set to use instead:"
|
2690 |
msgstr "Вместо това избраният от вас набор от знаци:"
|
2691 |
|
2692 |
-
#: src/class-updraftplus.php:
|
2693 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
2694 |
msgstr "Вместо това можете да изберете друг подходящ набор от символи и да продължите с възстановяването на свой собствен риск."
|
2695 |
|
2696 |
-
#: src/class-updraftplus.php:
|
2697 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
2698 |
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."
|
2699 |
msgstr[0] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа набора от знаци (%s), който се опитвате да импортирате."
|
@@ -2786,23 +2798,23 @@ msgstr "Ключ за Акаунта"
|
|
2786 |
msgid "Account ID"
|
2787 |
msgstr "Акаунт ID"
|
2788 |
|
2789 |
-
#: src/class-updraftplus.php:
|
2790 |
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."
|
2791 |
msgstr "Докато вашият уеб хостинг позволява http (т.е. не-SSL достъп) или ще препраща заявки към https (което е почти винаги случаят), това не е проблем. Ако това все още не е настроено, трябва да го настроите или да използвате %s, така че връзките, които не са https, да бъдат автоматично заменяни."
|
2792 |
|
2793 |
-
#: src/class-updraftplus.php:
|
2794 |
msgid "the migrator add-on"
|
2795 |
msgstr "добавката за мигратора"
|
2796 |
|
2797 |
-
#: src/class-updraftplus.php:
|
2798 |
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."
|
2799 |
msgstr "Това възстановяване ще работи, ако все още имате SSL сертификат (т.е. може да използва https) за достъп до сайта. В противен случай ще искате да използвате %s за търсене/заместване на адреса на сайта, така че сайтът да може да бъде посетен без https."
|
2800 |
|
2801 |
-
#: src/class-updraftplus.php:
|
2802 |
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."
|
2803 |
msgstr "Този архивен набор е на този сайт, но по време на архивирането, който сте използвали %s, докато сайтът сега използва %s."
|
2804 |
|
2805 |
-
#: src/class-updraftplus.php:
|
2806 |
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."
|
2807 |
msgstr "Адресът на уеб сайта в архивния набор (%s) е малко по-различен от този на сайта (%s). Това не се очаква да бъде проблем за възстановяване на сайта, стига посещенията на предишния адрес все още да стигнат до сайта."
|
2808 |
|
@@ -2818,15 +2830,15 @@ msgstr "Следвайте тази връзка, за да премахнете
|
|
2818 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
2819 |
msgstr "Грешка: Избраният файл е повреден. Моля, изберете валиден файл за експортиране на UpdraftPlus."
|
2820 |
|
2821 |
-
#: src/backup.php:
|
2822 |
-
#: src/class-updraftplus.php:
|
2823 |
-
#: src/includes/class-storage-methods-interface.php:381, src/restorer.php:
|
2824 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
2825 |
msgstr "Възникнала е PHP фатална грешка (%s): %s"
|
2826 |
|
2827 |
-
#: src/backup.php:
|
2828 |
-
#: src/class-updraftplus.php:
|
2829 |
-
#: src/includes/class-storage-methods-interface.php:372, src/restorer.php:
|
2830 |
msgid "A PHP exception (%s) has occurred: %s"
|
2831 |
msgstr "Възникна изключение от PHP (%s): %s"
|
2832 |
|
@@ -2876,7 +2888,7 @@ msgstr "Избиране на файл"
|
|
2876 |
msgid "Rackspace Storage Region"
|
2877 |
msgstr "Област за съхранение на rackspace"
|
2878 |
|
2879 |
-
#: src/admin.php:
|
2880 |
msgid "Value"
|
2881 |
msgstr "Стойност"
|
2882 |
|
@@ -2892,11 +2904,11 @@ msgstr "Трябва да добавите следното като URI на о
|
|
2892 |
msgid "Cloud Files"
|
2893 |
msgstr "Файлове в облака"
|
2894 |
|
2895 |
-
#: src/admin.php:
|
2896 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
2897 |
msgstr "Настройките ви не можаха да бъдат записани. Обновете страницата с настройки и опитайте отново"
|
2898 |
|
2899 |
-
#: src/admin.php:
|
2900 |
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."
|
2901 |
msgstr "UpdraftPlus изглежда, че са били актуализирани до версия (%s), която е различна от версията, изпълнявана при зареждането на тази страница с настройки. Заредете отново страницата с настройки, преди да опитате да запишете настройките."
|
2902 |
|
@@ -2913,7 +2925,7 @@ msgstr "архив"
|
|
2913 |
msgid "Extra database"
|
2914 |
msgstr "Допълнителна база данни"
|
2915 |
|
2916 |
-
#: src/admin.php:
|
2917 |
msgid "Press here to download or browse"
|
2918 |
msgstr "Натиснете тук, за да изтеглите или прегледате"
|
2919 |
|
@@ -2953,11 +2965,11 @@ msgstr "С UpdraftPlus Premium можете директно да изтегли
|
|
2953 |
msgid "Browse contents"
|
2954 |
msgstr "Преглед на съдържанието"
|
2955 |
|
2956 |
-
#: src/restorer.php:
|
2957 |
msgid "Skipped tables:"
|
2958 |
msgstr "Пропуснати таблици:"
|
2959 |
|
2960 |
-
#: src/class-updraftplus.php:
|
2961 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
2962 |
msgstr "Това архивиране на база данни е изключено от следните таблици на WordPress: %s"
|
2963 |
|
@@ -3395,11 +3407,11 @@ msgstr "Тук можете да експортирате настройките
|
|
3395 |
msgid "Export / import settings"
|
3396 |
msgstr "Експортиране / импортиране на настройки"
|
3397 |
|
3398 |
-
#: src/restorer.php:
|
3399 |
msgid "Processing table (%s)"
|
3400 |
msgstr "Таблица за обработка (%s)"
|
3401 |
|
3402 |
-
#: src/restorer.php:
|
3403 |
msgid "Backup of: %s"
|
3404 |
msgstr "Архивиране на: %s"
|
3405 |
|
@@ -3419,7 +3431,7 @@ msgstr "Трябва да добавите следното като URI на о
|
|
3419 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
3420 |
msgstr "UpdraftCentral позволява контрол на вашите WordPress сайтове (включително управление на резервни копия и актуализации) от централно табло."
|
3421 |
|
3422 |
-
#: src/backup.php:
|
3423 |
msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
|
3424 |
msgstr "Ако не, ще трябва или да премахнете данни от тази таблица, или да се свържете с вашата хостинг компания, за да поискате повече ресурси."
|
3425 |
|
@@ -3512,11 +3524,11 @@ msgstr "или да възстановите ръчно"
|
|
3512 |
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"
|
3513 |
msgstr "Това прави тайм аизпитва се много по-вероятно. Препоръчително е да изключите safe_mode или да възстановявате само един обект в даден момент"
|
3514 |
|
3515 |
-
#: src/admin.php:
|
3516 |
msgid "To fix this problem go here."
|
3517 |
msgstr "За да решите този проблем, отидете тук."
|
3518 |
|
3519 |
-
#: src/admin.php:
|
3520 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
3521 |
msgstr "OptimizePress 2.0 кодира съдържанието му, така че търсенето/замяната не работи."
|
3522 |
|
@@ -3596,31 +3608,31 @@ msgstr "Размер на ключа: %d бита"
|
|
3596 |
msgid "Public key was sent to:"
|
3597 |
msgstr "Публичен ключ е изпратен на:"
|
3598 |
|
3599 |
-
#: src/backup.php:
|
3600 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
3601 |
msgstr "Грешка при отваряне на директорията (проверете разрешенията за файлове и собствеността): %s"
|
3602 |
|
3603 |
-
#: src/backup.php:
|
3604 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
3605 |
msgstr "%s: нечетим файл - не можа да бъде архивиран (проверете разрешенията за файла и собствеността)"
|
3606 |
|
3607 |
-
#: src/addons/migrator.php:
|
3608 |
msgid "Create key"
|
3609 |
msgstr "Създаване на ключ"
|
3610 |
|
3611 |
-
#: src/addons/migrator.php:
|
3612 |
msgid "slower, strongest"
|
3613 |
msgstr "по-бавна, най-силна"
|
3614 |
|
3615 |
-
#: src/addons/migrator.php:
|
3616 |
msgid "recommended"
|
3617 |
msgstr "препоръчва"
|
3618 |
|
3619 |
-
#: src/addons/migrator.php:
|
3620 |
msgid "%s bytes"
|
3621 |
msgstr "%s байта"
|
3622 |
|
3623 |
-
#: src/addons/migrator.php:
|
3624 |
msgid "faster (possibility for slow PHP installs)"
|
3625 |
msgstr "по-бързо (възможност за бавни PHP инсталации)"
|
3626 |
|
@@ -3628,20 +3640,20 @@ msgstr "по-бързо (възможност за бавни PHP инстала
|
|
3628 |
msgid "easy to break, fastest"
|
3629 |
msgstr "лесно да се счупи, най-бързо"
|
3630 |
|
3631 |
-
#: src/addons/migrator.php:
|
3632 |
#: src/central/translations-updraftplus.php:49
|
3633 |
msgid "%s bits"
|
3634 |
msgstr "%s бита"
|
3635 |
|
3636 |
-
#: src/addons/migrator.php:
|
3637 |
msgid "Encryption key size:"
|
3638 |
msgstr "Размер на шифроващия ключ:"
|
3639 |
|
3640 |
-
#: src/addons/migrator.php:
|
3641 |
msgid "Enter your chosen name"
|
3642 |
msgstr "Въведете избраното от Вас име"
|
3643 |
|
3644 |
-
#: src/addons/migrator.php:
|
3645 |
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
|
3646 |
msgstr "Създайте ключ: дайте на този ключ уникално име (напр. посочете сайта, за който е), след което натиснете \"Създаване на ключ\":"
|
3647 |
|
@@ -3666,7 +3678,7 @@ msgstr "Имайте предвид, че пощенски сървъри са
|
|
3666 |
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."
|
3667 |
msgstr "Този архив е %s МБ по размер - опитът за изпращане на този имейл е вероятно да се провали (няколко имейл сървъра позволяват прикачени файлове с такъв размер). Ако е така, трябва да превключите към използване на различен метод за отдалечено съхранение."
|
3668 |
|
3669 |
-
#: src/class-updraftplus.php:
|
3670 |
msgid "Size: %s MB"
|
3671 |
msgstr "Размер: %s МБ"
|
3672 |
|
@@ -3674,7 +3686,7 @@ msgstr "Размер: %s МБ"
|
|
3674 |
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)."
|
3675 |
msgstr "UpdraftPlus ще раздели архивите, когато те надхвърлят този размер на файла. Стойността по подразбиране е %s мегабайта. Внимавайте да оставите малко марж, ако вашият уеб сървър има ограничение на твърдия размер (напр. ограничението от 2 GB / 2048 MB на някои 32-битови сървъри / файлови системи)."
|
3676 |
|
3677 |
-
#: src/class-updraftplus.php:
|
3678 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
3679 |
msgstr "Трябва да разрешите на %s да направи всички доста пермалин връзки (напр. %s) да работят"
|
3680 |
|
@@ -3696,7 +3708,7 @@ msgstr "или (годишна отстъпка)"
|
|
3696 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
3697 |
msgstr "Не е намерена връзка с трезора за този сайт (преместил ли се е?); свържете отново."
|
3698 |
|
3699 |
-
#: src/class-updraftplus.php:
|
3700 |
msgid "The given file was not found, or could not be read."
|
3701 |
msgstr "Файлът не е намерен или не може да бъде прочетен."
|
3702 |
|
@@ -3780,23 +3792,23 @@ msgstr "UpdraftCentral връзка е направена успешно."
|
|
3780 |
msgid "UpdraftCentral Connection"
|
3781 |
msgstr "Up-централна връзка"
|
3782 |
|
3783 |
-
#: src/class-updraftplus.php:
|
3784 |
msgid "The backup was aborted by the user"
|
3785 |
msgstr "Архивирането е прекратено от потребителя"
|
3786 |
|
3787 |
-
#: src/admin.php:
|
3788 |
msgid "Your settings have been saved."
|
3789 |
msgstr "Настройките ви са записани."
|
3790 |
|
3791 |
-
#: src/admin.php:
|
3792 |
msgid "Total backup size:"
|
3793 |
msgstr "Общ размер на архива:"
|
3794 |
|
3795 |
-
#: src/admin.php:
|
3796 |
msgid "stop"
|
3797 |
msgstr "спиране"
|
3798 |
|
3799 |
-
#: src/admin.php:964, src/admin.php:
|
3800 |
msgid "The backup has finished running"
|
3801 |
msgstr "Архивирането завърши изпълнението"
|
3802 |
|
@@ -3850,7 +3862,7 @@ msgstr "Извлича се..."
|
|
3850 |
msgid "Asia Pacific (Seoul)"
|
3851 |
msgstr "Азия Пасифик (Сеул)"
|
3852 |
|
3853 |
-
#: src/restorer.php:
|
3854 |
msgid "Uploads URL:"
|
3855 |
msgstr "URL адрес за качвания:"
|
3856 |
|
@@ -3858,19 +3870,19 @@ msgstr "URL адрес за качвания:"
|
|
3858 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
3859 |
msgstr "Необходимият php модул %s не е инсталиран - попитайте вашата уеб хостинг компания, за да го разреши."
|
3860 |
|
3861 |
-
#: src/class-updraftplus.php:
|
3862 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
3863 |
msgstr "За да импортирате обикновен WordPress сайт в многостранна инсталация, изисква %s."
|
3864 |
|
3865 |
-
#: src/class-updraftplus.php:
|
3866 |
msgid "Please read this link for important information on this process."
|
3867 |
msgstr "Моля, прочетете този линк за важна информация за този процес."
|
3868 |
|
3869 |
-
#: src/class-updraftplus.php:
|
3870 |
msgid "It will be imported as a new site."
|
3871 |
msgstr "Той ще бъде импортиран като нов сайт."
|
3872 |
|
3873 |
-
#: src/admin.php:
|
3874 |
#: src/templates/wp-admin/notices/autobackup-notice.php:18,
|
3875 |
#: src/templates/wp-admin/notices/horizontal-notice.php:48,
|
3876 |
#: src/templates/wp-admin/notices/horizontal-notice.php:50
|
@@ -3897,40 +3909,40 @@ msgstr "Всички сайтове"
|
|
3897 |
msgid "Which site to restore"
|
3898 |
msgstr "Кой сайт да се възстанови"
|
3899 |
|
3900 |
-
#: src/addons/migrator.php:
|
3901 |
msgid "Error when creating new site at your chosen address:"
|
3902 |
msgstr "Грешка при създаване на нов сайт на избрания от вас адрес:"
|
3903 |
|
3904 |
-
#: src/addons/migrator.php:
|
3905 |
msgid "Required information for restoring this backup was not given (%s)"
|
3906 |
msgstr "Необходимата информация за възстановяване на този архив не е дадена (%s)"
|
3907 |
|
3908 |
-
#: src/addons/migrator.php:
|
3909 |
msgid "Attribute imported content to user"
|
3910 |
msgstr "Атрибут импортирано съдържание на потребител"
|
3911 |
|
3912 |
-
#: src/addons/migrator.php:
|
3913 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
3914 |
msgstr "Трябва да използвате малки букви или цифри само за пътя на сайта."
|
3915 |
|
3916 |
-
#: src/addons/migrator.php:
|
3917 |
msgid "This feature is not compatible with %s"
|
3918 |
msgstr "Тази функция не е съвместима с %s"
|
3919 |
|
3920 |
-
#: src/addons/migrator.php:
|
3921 |
msgid "Importing a single site into a multisite install"
|
3922 |
msgstr "Импортиране на един сайт в многостранна инсталация"
|
3923 |
|
3924 |
-
#: src/addons/migrator.php:
|
3925 |
msgid "other content from wp-content"
|
3926 |
msgstr "друго съдържание от wp-съдържание"
|
3927 |
|
3928 |
-
#: src/addons/migrator.php:
|
3929 |
msgid "WordPress core"
|
3930 |
msgstr "Ядро на WordPress"
|
3931 |
|
3932 |
-
#: src/addons/migrator.php:
|
3933 |
-
#: src/addons/migrator.php:
|
3934 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
3935 |
msgstr "Избрали сте %s да бъде включен във възстановяването - това не може/ не трябва да се прави, когато импортирате един сайт в мрежа."
|
3936 |
|
@@ -3942,7 +3954,7 @@ msgstr "Подкани за действие на WordPress:"
|
|
3942 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
3943 |
msgstr "Запазените настройки също влияят върху това, което се архивира – например изключени файлове."
|
3944 |
|
3945 |
-
#: src/restorer.php:
|
3946 |
msgid "Skipping: this archive was already restored."
|
3947 |
msgstr "Прескачане: този архив вече е възстановен."
|
3948 |
|
@@ -3970,23 +3982,23 @@ msgstr "След това ще трябва да въведете отново
|
|
3970 |
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)."
|
3971 |
msgstr "Този бутон ще изтрие всички настройки на UpdraftPlus и информация за напредъка на архивите в момента (но не и някои от вашите съществуващи архиви от вашето място за съхранение в облака)."
|
3972 |
|
3973 |
-
#: src/admin.php:
|
3974 |
msgid "Send this backup to remote storage"
|
3975 |
msgstr "Изпращане на този архив в отдалечено хранилище"
|
3976 |
|
3977 |
-
#: src/admin.php:
|
3978 |
msgid "Check out UpdraftPlus Vault."
|
3979 |
msgstr "Проверете UpdraftPlus Трезор."
|
3980 |
|
3981 |
-
#: src/admin.php:
|
3982 |
msgid "Not got any remote storage?"
|
3983 |
msgstr "Нямате ли някакво отдалечено хранилище?"
|
3984 |
|
3985 |
-
#: src/admin.php:
|
3986 |
msgid "settings"
|
3987 |
msgstr "настройки"
|
3988 |
|
3989 |
-
#: src/admin.php:
|
3990 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
3991 |
msgstr "Архивирането не може да бъде изпратено до отдалечено хранилище - нито едно не е записано в %s"
|
3992 |
|
@@ -3998,31 +4010,31 @@ msgstr "Включване на файловете в архива"
|
|
3998 |
msgid "Include your database in the backup"
|
3999 |
msgstr "Включване на вашата база данни в архива"
|
4000 |
|
4001 |
-
#: src/admin.php:
|
4002 |
msgid "Continue restoration"
|
4003 |
msgstr "Продължаване на възстановяването"
|
4004 |
|
4005 |
-
#: src/admin.php:
|
4006 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
4007 |
msgstr "Имате незавършена операция по възстановяване, започнала е преди %s."
|
4008 |
|
4009 |
-
#: src/admin.php:
|
4010 |
msgid "Unfinished restoration"
|
4011 |
msgstr "Недовършено възстановяване"
|
4012 |
|
4013 |
-
#: src/admin.php:
|
4014 |
msgid "%s minutes, %s seconds"
|
4015 |
msgstr "%s минути, %s секунди"
|
4016 |
|
4017 |
-
#: src/admin.php:
|
4018 |
msgid "Backup Contents And Schedule"
|
4019 |
msgstr "Съдържание и график за архивиране"
|
4020 |
|
4021 |
-
#: src/admin.php:
|
4022 |
msgid "Premium / Extensions"
|
4023 |
msgstr "Премиум / Разширения"
|
4024 |
|
4025 |
-
#: src/admin.php:
|
4026 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
4027 |
msgstr "Не можа да бъде намерена достатъчно информация за операцията за възстановяване в процес."
|
4028 |
|
@@ -4039,7 +4051,7 @@ msgstr "Избрахте да архивирате файлове, но не с
|
|
4039 |
msgid "Extensions"
|
4040 |
msgstr "Добавки"
|
4041 |
|
4042 |
-
#: src/admin.php:725, src/admin.php:
|
4043 |
msgid "Advanced Tools"
|
4044 |
msgstr "Разширени инструменти"
|
4045 |
|
@@ -4159,23 +4171,23 @@ msgstr "Контейнерът не може да бъде създаден"
|
|
4159 |
msgid "Could not access container"
|
4160 |
msgstr "Не можа да бъде достъпен контейнер"
|
4161 |
|
4162 |
-
#: src/class-updraftplus.php:
|
4163 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
4164 |
msgstr "За да завършите мигрирането/клонинга, сега трябва да влезете в отдалечения сайт и да възстановите архивния набор."
|
4165 |
|
4166 |
-
#: src/backup.php:
|
4167 |
msgid "the options table was not found"
|
4168 |
msgstr "таблицата с опции не е намерена"
|
4169 |
|
4170 |
-
#: src/backup.php:
|
4171 |
msgid "no options or sitemeta table was found"
|
4172 |
msgstr "не са намерени опции или таблица sitemeta"
|
4173 |
|
4174 |
-
#: src/backup.php:
|
4175 |
msgid "The database backup appears to have failed"
|
4176 |
msgstr "Изглежда архивът на базата данни е неуспешен"
|
4177 |
|
4178 |
-
#: src/backup.php:
|
4179 |
msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
|
4180 |
msgstr "Архивната директория не е записваема (или дисково пространство е пълно) - архивиране на базата данни се очаква да скоро неуспешно."
|
4181 |
|
@@ -4327,11 +4339,11 @@ msgstr "(колкото искате)"
|
|
4327 |
msgid "Add an additional retention rule..."
|
4328 |
msgstr "Добавяне на допълнително правило за задържане..."
|
4329 |
|
4330 |
-
#: src/restorer.php:
|
4331 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
4332 |
msgstr "Тази база данни трябва да бъде разположена в MySQL версия %s или по-нова версия."
|
4333 |
|
4334 |
-
#: src/restorer.php:
|
4335 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
4336 |
msgstr "Този проблем се дължи на опит за възстановяване на база данни на много стара MySQL версия, която е несъвместима с базата данни източник."
|
4337 |
|
@@ -4339,15 +4351,15 @@ msgstr "Този проблем се дължи на опит за възста
|
|
4339 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
4340 |
msgstr "В момента нямате updraftPlus квота за трезора"
|
4341 |
|
4342 |
-
#: src/class-updraftplus.php:
|
4343 |
msgid "You must upgrade MySQL to be able to use this database."
|
4344 |
msgstr "Трябва да надстроите MySQL, за да можете да използвате тази база данни."
|
4345 |
|
4346 |
-
#: src/class-updraftplus.php:
|
4347 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
4348 |
msgstr "Архивирането на базата данни използва функциите на MySQL, които не са налични в старата версия на MySQL (%s), на която се изпълнява този сайт."
|
4349 |
|
4350 |
-
#: src/admin.php:
|
4351 |
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."
|
4352 |
msgstr "Директорията UpdraftPlus в wp-съдържание / плъгини има място в него; WordPress не харесва това. Трябва да преименувате директорията на WP-съдържание / плъгини / updraftplus, за да решите този проблем."
|
4353 |
|
@@ -4413,7 +4425,7 @@ msgid "Get more quota"
|
|
4413 |
msgstr "Получете повече квота"
|
4414 |
|
4415 |
#: src/methods/updraftvault.php:529, src/methods/updraftvault.php:545,
|
4416 |
-
#: src/methods/updraftvault.php:
|
4417 |
msgid "Current use:"
|
4418 |
msgstr "Текуща употреба:"
|
4419 |
|
@@ -4510,7 +4522,7 @@ msgstr "Тока за тока"
|
|
4510 |
msgid "Delete failed:"
|
4511 |
msgstr "Изтриването е неуспешно:"
|
4512 |
|
4513 |
-
#: src/backup.php:
|
4514 |
msgid "The zip engine returned the message: %s."
|
4515 |
msgstr "Машината за цип върна съобщението: %s."
|
4516 |
|
@@ -4542,7 +4554,7 @@ msgstr "Трябва да проверите дали отдалеченият
|
|
4542 |
msgid "Existing keys"
|
4543 |
msgstr "Съществуващи ключове"
|
4544 |
|
4545 |
-
#: src/addons/migrator.php:
|
4546 |
msgid "Your new key:"
|
4547 |
msgstr "Вашият нов ключ:"
|
4548 |
|
@@ -4575,11 +4587,11 @@ msgstr "сайтът не е намерен"
|
|
4575 |
msgid "Backup data will be sent to:"
|
4576 |
msgstr "Резервните данни ще бъдат изпратени на:"
|
4577 |
|
4578 |
-
#: src/addons/migrator.php:
|
4579 |
msgid "Restore an existing backup set onto this site"
|
4580 |
msgstr "Възстановяване на съществуващ архивен набор в този сайт"
|
4581 |
|
4582 |
-
#: src/addons/migrator.php:
|
4583 |
msgid "This site has no backups to restore from yet."
|
4584 |
msgstr "Този сайт няма архиви, които да се възстановяват от все още."
|
4585 |
|
@@ -4591,7 +4603,7 @@ msgstr "Архивирането е направено от %s"
|
|
4591 |
msgid "This storage method does not allow downloading"
|
4592 |
msgstr "Този метод за съхранение не позволява изтегляне"
|
4593 |
|
4594 |
-
#: src/admin.php:
|
4595 |
msgid "(backup set imported from remote location)"
|
4596 |
msgstr "(архивен комплект, импортиран от отдалечено местоположение)"
|
4597 |
|
@@ -4634,23 +4646,23 @@ msgstr "Моля, посочете име на този ключ (напр. по
|
|
4634 |
msgid "Creating..."
|
4635 |
msgstr "Създаване..."
|
4636 |
|
4637 |
-
#: src/addons/migrator.php:
|
4638 |
msgid "Receive a backup from a remote site"
|
4639 |
msgstr "Получаване на резервно копие от отдалечен сайт"
|
4640 |
|
4641 |
-
#: src/addons/migrator.php:
|
4642 |
msgid "Paste key here"
|
4643 |
msgstr "Постави ключа тук"
|
4644 |
|
4645 |
-
#: src/addons/migrator.php:
|
4646 |
msgid "How do I get a site's key?"
|
4647 |
msgstr "Как да получа ключ на сайт?"
|
4648 |
|
4649 |
-
#: src/addons/migrator.php:
|
4650 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
4651 |
msgstr "За да добавите сайт като дестинация за изпращане, въведете ключа на този сайт по-долу."
|
4652 |
|
4653 |
-
#: src/addons/migrator.php:
|
4654 |
msgid "Send a backup to another site"
|
4655 |
msgstr "Изпращане на резервно копие на друг сайт"
|
4656 |
|
@@ -4717,11 +4729,11 @@ msgstr "FTP вход"
|
|
4717 |
msgid "FTP server"
|
4718 |
msgstr "FTP сървър"
|
4719 |
|
4720 |
-
#: src/addons/migrator.php:
|
4721 |
msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
|
4722 |
msgstr "UpdraftPlus Migrator променя операцията по възстановяване по подходящ начин, за да се поберат резервните данни към новия сайт."
|
4723 |
|
4724 |
-
#: src/addons/migrator.php:
|
4725 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
4726 |
msgstr "\"Миграция\" в крайна сметка е същото като възстановяване - но с помощта на архиви, които импортирате от друг сайт."
|
4727 |
|
@@ -4729,7 +4741,7 @@ msgstr "\"Миграция\" в крайна сметка е същото кат
|
|
4729 |
msgid "Resetting..."
|
4730 |
msgstr "Възстановяване..."
|
4731 |
|
4732 |
-
#: src/addons/migrator.php:
|
4733 |
msgid "Add site"
|
4734 |
msgstr "Добавяне на сайт"
|
4735 |
|
@@ -4741,7 +4753,7 @@ msgstr "Добавяне..."
|
|
4741 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
4742 |
msgstr "Не е предоставена претенция - може би вече сте използвали тази покупка някъде другаде, или платения ви период за изтегляне от updraftplus.com е изтекъл?"
|
4743 |
|
4744 |
-
#: src/restorer.php:
|
4745 |
msgid "To use this backup, your database server needs to support the %s character set."
|
4746 |
msgstr "За да използвате това архивиране, вашият сървър за база данни трябва да поддържа набора от знаци %s."
|
4747 |
|
@@ -4757,7 +4769,7 @@ msgstr "Ако сте забравили паролата си "
|
|
4757 |
msgid "Go here to re-enter your password."
|
4758 |
msgstr "Отидете тук, за да въведете отново паролата си."
|
4759 |
|
4760 |
-
#: src/addons/migrator.php:
|
4761 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
4762 |
msgstr "След като натиснете този бутон, ще ви бъде дадена възможност да изберете кои компоненти"
|
4763 |
|
@@ -5016,7 +5028,7 @@ msgstr "Отхвърляне (за %s месеца)"
|
|
5016 |
msgid "(at same time as files backup)"
|
5017 |
msgstr "(в същото време като архивиране на файлове)"
|
5018 |
|
5019 |
-
#: src/admin.php:
|
5020 |
msgid "No backup has been completed"
|
5021 |
msgstr "Архивирането не е завършено"
|
5022 |
|
@@ -5090,12 +5102,12 @@ msgstr "администраторски адрес на сайта Ви"
|
|
5090 |
msgid "Check this box to have a basic report sent to"
|
5091 |
msgstr "Поставете отметка в това квадратче, за да изпратите базова справка"
|
5092 |
|
5093 |
-
#: src/admin.php:
|
5094 |
msgctxt "i.e. Non-automatic"
|
5095 |
msgid "Manual"
|
5096 |
msgstr "Ръчна"
|
5097 |
|
5098 |
-
#: src/restorer.php:
|
5099 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
5100 |
msgid "An error (%s) occurred:"
|
5101 |
msgstr "Възникна грешка (%s):"
|
@@ -5108,7 +5120,7 @@ msgstr "Промяна на настройките за заключване"
|
|
5108 |
msgid "Any other file/directory on your server that you wish to backup"
|
5109 |
msgstr "Всеки друг файл/директория на вашия сървър, който искате да архивирате"
|
5110 |
|
5111 |
-
#: src/admin.php:
|
5112 |
msgid "For even more features and personal support, check out "
|
5113 |
msgstr "За още повече функции и лична поддръжка проверете "
|
5114 |
|
@@ -5202,7 +5214,7 @@ msgstr "(научете повече за този важен вариант)"
|
|
5202 |
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."
|
5203 |
msgstr "Имайте предвид, че след като сте заявили добавките си, можете да премахнете паролата си (но не и имейл адреса) от настройките по-долу, без това да засяга достъпа на този сайт до актуализации."
|
5204 |
|
5205 |
-
#: src/admin.php:
|
5206 |
msgid "View Log"
|
5207 |
msgstr "Преглед на регистрационен файл"
|
5208 |
|
@@ -5221,7 +5233,7 @@ msgstr "Дата на архивиране"
|
|
5221 |
msgid "and retain this many scheduled backups"
|
5222 |
msgstr "и да запазите този много планирани архиви"
|
5223 |
|
5224 |
-
#: src/admin.php:
|
5225 |
msgid "incremental backup; base backup: %s"
|
5226 |
msgstr "постъпково резервно копие; базово архивиране: %s"
|
5227 |
|
@@ -5239,7 +5251,7 @@ msgstr "Качване на файлове в UpdraftPlus."
|
|
5239 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
5240 |
msgstr "Бутонът \"Архивиране сега\" е деактивиран, тъй като директорията ви за архивиране не е записваема (отидете в раздела \"Настройки\" и намерете съответната опция)."
|
5241 |
|
5242 |
-
#: src/class-updraftplus.php:
|
5243 |
msgid "Backup label:"
|
5244 |
msgstr "Етикет за архивиране:"
|
5245 |
|
@@ -5247,15 +5259,15 @@ msgstr "Етикет за архивиране:"
|
|
5247 |
msgid "Error: unexpected file read fail"
|
5248 |
msgstr "Грешка: неочакван файл четене е неуспешно"
|
5249 |
|
5250 |
-
#: src/backup.php:
|
5251 |
msgid "check your log for more details."
|
5252 |
msgstr "проверете регистрационния си файл за повече подробности."
|
5253 |
|
5254 |
-
#: src/backup.php:
|
5255 |
msgid "your web hosting account appears to be full; please see: %s"
|
5256 |
msgstr "вашият уеб хостинг акаунт изглежда пълен; моля, вижте: %s"
|
5257 |
|
5258 |
-
#: src/backup.php:
|
5259 |
msgid "A zip error occurred"
|
5260 |
msgstr "Грешка в zip файла"
|
5261 |
|
@@ -5279,36 +5291,36 @@ msgstr "Имейл адресът ви е валиден, но паролата
|
|
5279 |
msgid "You need to supply both an email address and a password"
|
5280 |
msgstr "Трябва да предоставите както имейл адрес, така и парола"
|
5281 |
|
5282 |
-
#: src/class-updraftplus.php:
|
5283 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
5284 |
msgstr "Ако искате да възстановите многостранен архив, първо трябва да настроите wordPress инсталацията като многостранна."
|
5285 |
|
5286 |
-
#: src/class-updraftplus.php:
|
5287 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
5288 |
msgstr "Вашият архив е на wordPress многостранна инсталация; но този сайт не е. Само първият сайт на мрежата ще бъде достъпен."
|
5289 |
|
5290 |
-
#: src/addons/migrator.php:
|
5291 |
msgid "already done"
|
5292 |
msgstr "вече е направено"
|
5293 |
|
5294 |
-
#: src/addons/migrator.php:
|
5295 |
msgid "skipped (not in list)"
|
5296 |
msgstr "прескочи (не в списъка)"
|
5297 |
|
5298 |
-
#: src/addons/migrator.php:
|
5299 |
#: src/includes/class-search-replace.php:91
|
5300 |
msgid "Search and replacing table:"
|
5301 |
msgstr "Търсене и заместване на таблица:"
|
5302 |
|
5303 |
-
#: src/addons/migrator.php:
|
5304 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
5305 |
msgstr "Въведете списък, разделен със запетая; в противен случай оставете празно за всички таблици."
|
5306 |
|
5307 |
-
#: src/addons/migrator.php:
|
5308 |
msgid "These tables only"
|
5309 |
msgstr "Тези таблици само"
|
5310 |
|
5311 |
-
#: src/addons/migrator.php:
|
5312 |
msgid "Rows per batch"
|
5313 |
msgstr "Редове на партида"
|
5314 |
|
@@ -5320,19 +5332,19 @@ msgstr "Все още не сте се свързали с вашия UpdraftPlu
|
|
5320 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
5321 |
msgstr "Трябва да се свържете, за да получавате бъдещи актуализации на UpdraftPlus."
|
5322 |
|
5323 |
-
#: src/class-updraftplus.php:
|
5324 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
5325 |
msgstr "Всички заявки за поддръжка, свързани с %s, трябва да бъдат повдигнати с вашата уеб хостинг компания."
|
5326 |
|
5327 |
-
#: src/class-updraftplus.php:
|
5328 |
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."
|
5329 |
msgstr "Трябва да продължите само ако не можете да актуализирате текущия сървър и сте уверени (или сте готови да рискувате), че вашите плъгини/теми/и т.н. са съвместими с по-старата версия на %s."
|
5330 |
|
5331 |
-
#: src/class-updraftplus.php:
|
5332 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
5333 |
msgstr "Това е значително по-нова от сървъра, на който се възстановява (версия %s)."
|
5334 |
|
5335 |
-
#: src/class-updraftplus.php:
|
5336 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
5337 |
msgstr "Сайтът в този архив се изпълняваше на уеб сървър с версия %s на %s. "
|
5338 |
|
@@ -5369,11 +5381,11 @@ msgstr "Натиснете тук, за да погледнете в updraftPlus
|
|
5369 |
msgid "Start backup"
|
5370 |
msgstr "Стартиране на архивиране"
|
5371 |
|
5372 |
-
#: src/class-updraftplus.php:
|
5373 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
5374 |
msgstr "Използвате уеб сървър %s, но изглежда не е зареден модулът %s."
|
5375 |
|
5376 |
-
#: src/admin.php:
|
5377 |
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."
|
5378 |
msgstr "Ще трябва да се консултирате с вашия доставчик на уеб хостинг, за да разберете как да зададете разрешения за WordPress плъгин, за да пишете в директорията."
|
5379 |
|
@@ -5405,15 +5417,15 @@ msgstr "Кажете ми повече за допълнителните рез
|
|
5405 |
msgid "Memory limit"
|
5406 |
msgstr "Ограничение на паметта"
|
5407 |
|
5408 |
-
#: src/includes/class-filesystem-functions.php:302, src/restorer.php:
|
5409 |
msgid "restoration"
|
5410 |
msgstr "възстановяване"
|
5411 |
|
5412 |
-
#: src/class-updraftplus.php:
|
5413 |
msgid "Incremental"
|
5414 |
msgstr "Допълнителни"
|
5415 |
|
5416 |
-
#: src/class-updraftplus.php:
|
5417 |
msgid "Full backup"
|
5418 |
msgstr "Пълно архивиране"
|
5419 |
|
@@ -5431,55 +5443,56 @@ msgstr "Архивирането е успешно"
|
|
5431 |
|
5432 |
#: src/addons/incremental.php:340, src/addons/incremental.php:341,
|
5433 |
#: src/addons/incremental.php:342, src/addons/incremental.php:343,
|
5434 |
-
#: src/admin.php:
|
5435 |
-
#: src/admin.php:
|
5436 |
#: src/updraftplus.php:103
|
5437 |
msgid "Every %s hours"
|
5438 |
msgstr "На всеки %s часа"
|
5439 |
|
5440 |
-
#: src/addons/migrator.php:
|
|
|
5441 |
msgid "search and replace"
|
5442 |
msgstr "търсене и замяна"
|
5443 |
|
5444 |
-
#: src/addons/migrator.php:
|
5445 |
msgid "Go"
|
5446 |
msgstr "Напред"
|
5447 |
|
5448 |
-
#: src/addons/migrator.php:
|
5449 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
5450 |
msgstr "Търсенето/замяната не може да бъде отменено – сигурни ли сте, че искате да направите това?"
|
5451 |
|
5452 |
-
#: src/addons/migrator.php:
|
5453 |
msgid "This can easily destroy your site; so, use it with care!"
|
5454 |
msgstr "Това може лесно да унищожи сайта ви; така че, да го използвате внимателно!"
|
5455 |
|
5456 |
-
#: src/addons/migrator.php:
|
5457 |
msgid "Replace with"
|
5458 |
msgstr "Замяна с"
|
5459 |
|
5460 |
-
#: src/addons/migrator.php:
|
5461 |
msgid "Search for"
|
5462 |
msgstr "Търсене за"
|
5463 |
|
5464 |
-
#: src/addons/migrator.php:
|
5465 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
5466 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
5467 |
msgid "Search / replace database"
|
5468 |
msgstr "Търсене / заместване на база данни"
|
5469 |
|
5470 |
-
#: src/addons/migrator.php:
|
5471 |
msgid "search term"
|
5472 |
msgstr "търсене термин"
|
5473 |
|
5474 |
-
#: src/restorer.php:
|
5475 |
msgid "Too many database errors have occurred - aborting"
|
5476 |
msgstr "Възникнаха твърде много грешки в базата данни - прекратяване на"
|
5477 |
|
5478 |
-
#: src/class-updraftplus.php:
|
5479 |
msgid "read more at %s"
|
5480 |
msgstr "повече на %s"
|
5481 |
|
5482 |
-
#: src/class-updraftplus.php:
|
5483 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
5484 |
msgstr "Имейл доклади, създадени от UpdraftPlus (безплатно издание) ви носят най-новите новини за UpdraftPlus.com"
|
5485 |
|
@@ -5495,10 +5508,6 @@ msgstr "Все още не сте направили никакви резерв
|
|
5495 |
msgid "Database Options"
|
5496 |
msgstr "Опции за база данни"
|
5497 |
|
5498 |
-
#: src/templates/wp-admin/advanced/site-info.php:109
|
5499 |
-
msgid "Plugins for debugging:"
|
5500 |
-
msgstr "Приставки за отстраняване на грешки:"
|
5501 |
-
|
5502 |
#: src/templates/wp-admin/advanced/site-info.php:88
|
5503 |
msgid "%s (%s used)"
|
5504 |
msgstr "%s (използван е%s)"
|
@@ -5507,7 +5516,7 @@ msgstr "%s (използван е%s)"
|
|
5507 |
msgid "Free disk space in account:"
|
5508 |
msgstr "Свободно място на диска в акаунта:"
|
5509 |
|
5510 |
-
#: src/admin.php:
|
5511 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
5512 |
msgstr "Този бутон е забранен, защото директорията за архивиране не е записваема (вижте настройките)."
|
5513 |
|
@@ -5591,7 +5600,7 @@ msgstr "домакин"
|
|
5591 |
msgid "user"
|
5592 |
msgstr "потребител"
|
5593 |
|
5594 |
-
#: src/class-updraftplus.php:
|
5595 |
msgid "External database (%s)"
|
5596 |
msgstr "Външна база данни (%s)"
|
5597 |
|
@@ -5609,7 +5618,7 @@ msgstr "не можа да се получи достъп до родителс
|
|
5609 |
msgid "However, subsequent access attempts failed:"
|
5610 |
msgstr "Обаче неуспешни последващи опити за достъп:"
|
5611 |
|
5612 |
-
#: src/addons/wp-cli.php:434, src/admin.php:
|
5613 |
msgid "External database"
|
5614 |
msgstr "Външна база данни"
|
5615 |
|
@@ -5641,7 +5650,7 @@ msgstr "Не искаш да те шпионират? UpdraftPlus Premium мож
|
|
5641 |
msgid "use UpdraftPlus Premium"
|
5642 |
msgstr "използване на UpdraftPlus Premium"
|
5643 |
|
5644 |
-
#: src/class-updraftplus.php:
|
5645 |
msgid "Decryption failed. The database file is encrypted."
|
5646 |
msgstr "Неуспешна дешифриране. Файлът на базата данни е шифрован."
|
5647 |
|
@@ -5649,20 +5658,20 @@ msgstr "Неуспешна дешифриране. Файлът на базат
|
|
5649 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
5650 |
msgstr "Само базата данни на WordPress може да бъде възстановена; трябва да се справите с външната база данни ръчно."
|
5651 |
|
5652 |
-
#: src/restorer.php:
|
5653 |
-
#: src/restorer.php:
|
5654 |
msgid "An error occurred on the first %s command - aborting run"
|
5655 |
msgstr "Възникна грешка в първата команда %s - прекъсване на изпълнение"
|
5656 |
|
5657 |
-
#: src/addons/moredatabase.php:136, src/backup.php:
|
5658 |
msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
|
5659 |
msgstr "Връзката е неуспешна: проверете данните за достъпа, дали сървърът на базата данни е нагоре и че мрежовата връзка не е защитна стена."
|
5660 |
|
5661 |
-
#: src/backup.php:
|
5662 |
msgid "database connection attempt failed."
|
5663 |
msgstr "неуспешен опит за свързване с база данни."
|
5664 |
|
5665 |
-
#: src/addons/migrator.php:
|
5666 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
5667 |
msgstr "Предупреждение: домашният URL адрес на базата данни (%s) е различен от очаквания от нас (%s)"
|
5668 |
|
@@ -5696,8 +5705,8 @@ msgstr "Оставете това празно и ще бъде избрана
|
|
5696 |
msgid "Tenant"
|
5697 |
msgstr "Наемател"
|
5698 |
|
5699 |
-
#: src/admin.php:1044, src/admin.php:
|
5700 |
-
#: src/restorer.php:
|
5701 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
5702 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
5703 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:14
|
@@ -5830,18 +5839,18 @@ msgstr "Обаждане"
|
|
5830 |
msgid "Fetch"
|
5831 |
msgstr "Донесе"
|
5832 |
|
5833 |
-
#: src/addons/migrator.php:
|
5834 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
|
5835 |
#: src/templates/wp-admin/settings/form-contents.php:183,
|
5836 |
#: src/templates/wp-admin/settings/tab-backups.php:74
|
5837 |
msgid "This feature requires %s version %s or later"
|
5838 |
msgstr "Този компонент изисква версия %s %s или по-нова версия"
|
5839 |
|
5840 |
-
#: src/restorer.php:
|
5841 |
msgid "Failed to unpack the archive"
|
5842 |
msgstr "Неуспешно разопаковане на архива"
|
5843 |
|
5844 |
-
#: src/class-updraftplus.php:
|
5845 |
msgid "Error - failed to download the file"
|
5846 |
msgstr "Грешка - не успя да изтеглите файла"
|
5847 |
|
@@ -5866,8 +5875,8 @@ msgstr "Инсталираната версия на UpdraftPlus backup/Restore
|
|
5866 |
msgid "password/key"
|
5867 |
msgstr "парола/ключ"
|
5868 |
|
5869 |
-
#: src/addons/migrator.php:
|
5870 |
-
#: src/admin.php:
|
5871 |
msgid "Key"
|
5872 |
msgstr "Ключ"
|
5873 |
|
@@ -5883,24 +5892,24 @@ msgstr "Предоставеният ключ не е във валиден фо
|
|
5883 |
msgid "SCP/SFTP password/key"
|
5884 |
msgstr "SCP/SFTP парола/ключ"
|
5885 |
|
5886 |
-
#: src/addons/wp-cli.php:445, src/admin.php:
|
5887 |
msgid "Files backup (created by %s)"
|
5888 |
msgstr "Архивиране на файлове (създадено от %s)"
|
5889 |
|
5890 |
-
#: src/addons/wp-cli.php:445, src/admin.php:
|
5891 |
msgid "Files and database WordPress backup (created by %s)"
|
5892 |
msgstr "Архивни файлове и база данни на WordPress (създадени от %s)"
|
5893 |
|
5894 |
-
#: src/addons/importer.php:276, src/admin.php:
|
5895 |
#: src/includes/class-backup-history.php:505
|
5896 |
msgid "Backup created by: %s."
|
5897 |
msgstr "Архивирането е създадено от: %s."
|
5898 |
|
5899 |
-
#: src/addons/wp-cli.php:428, src/admin.php:
|
5900 |
msgid "Database (created by %s)"
|
5901 |
msgstr "База данни (създадена от %s)"
|
5902 |
|
5903 |
-
#: src/addons/wp-cli.php:426, src/admin.php:
|
5904 |
msgid "unknown source"
|
5905 |
msgstr "неизвестен източник"
|
5906 |
|
@@ -5940,16 +5949,16 @@ msgstr "Въпреки това, UpdraftPlus архивите са станда
|
|
5940 |
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))."
|
5941 |
msgstr "Този файл не изглежда да бъде Backup архив UpdraftPlus (такива файлове са .zip или .gz файлове, които имат име като: backup_(time)__(име на сайта) _(код)__(тип).( (напр. цип|gz))."
|
5942 |
|
5943 |
-
#: src/admin.php:
|
5944 |
-
#: src/restorer.php:
|
5945 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
5946 |
msgstr "Архивирането, създадено от неизвестен източник (%s) - не може да бъде възстановено."
|
5947 |
|
5948 |
-
#: src/restorer.php:
|
5949 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
5950 |
msgstr "Папката със съдържание на WordPress (wp-съдържание) не е намерена в този zip файл."
|
5951 |
|
5952 |
-
#: src/restorer.php:
|
5953 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
5954 |
msgstr "Тази версия на UpdraftPlus не знае как да се справи с този тип чуждестранен архив"
|
5955 |
|
@@ -6001,12 +6010,12 @@ msgstr "Други често задавани въпроси за %s."
|
|
6001 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
6002 |
msgstr "Проверете това, за да получите повече информация и имейли за процеса на архивиране - полезно, ако нещо се обърка."
|
6003 |
|
6004 |
-
#: src/addons/morefiles.php:357, src/admin.php:
|
6005 |
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."
|
6006 |
msgstr "Ако въведете няколко файла / директории, разделете ги със запетаи. За обекти на най-горното ниво можете да използвате * в началото или края на записа като заместващ символ."
|
6007 |
|
6008 |
#: src/includes/class-filesystem-functions.php:302, src/methods/ftp.php:344,
|
6009 |
-
#: src/restorer.php:
|
6010 |
msgid "Your hosting company must enable these functions before %s can work."
|
6011 |
msgstr "Вашата хостинг компания трябва да разреши тези функции, преди %s да може да работи."
|
6012 |
|
@@ -6026,7 +6035,7 @@ msgstr "криптиран FTP (подразбиращ се шифроване)"
|
|
6026 |
msgid "regular non-encrypted FTP"
|
6027 |
msgstr "редовен нешифрован FTP"
|
6028 |
|
6029 |
-
#: src/restorer.php:
|
6030 |
msgid "Backup created by:"
|
6031 |
msgstr "Архивиране, създадено от:"
|
6032 |
|
@@ -6097,15 +6106,15 @@ msgstr "Файлът на базата данни изглежда е компр
|
|
6097 |
msgid "Constants"
|
6098 |
msgstr "Константи"
|
6099 |
|
6100 |
-
#: src/backup.php:
|
6101 |
msgid "Failed to open database file for reading:"
|
6102 |
msgstr "Грешка при отваряне на файла на базата данни за четене:"
|
6103 |
|
6104 |
-
#: src/backup.php:
|
6105 |
msgid "No database tables found"
|
6106 |
msgstr "Не са намерени таблици от база данни"
|
6107 |
|
6108 |
-
#: src/backup.php:
|
6109 |
msgid "please wait for the rescheduled attempt"
|
6110 |
msgstr "моля изчакайте пренасрочвания опит"
|
6111 |
|
@@ -6122,7 +6131,7 @@ msgstr "Акаунтът е пълен: вашият %s акаунт има са
|
|
6122 |
msgid "Errors occurred:"
|
6123 |
msgstr "Възникнаха грешки:"
|
6124 |
|
6125 |
-
#: src/addons/wp-cli.php:752, src/admin.php:
|
6126 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
6127 |
msgstr "Следвайте тази връзка, за да изтеглите регистрационния файл за това възстановяване (необходим за всички заявки за поддръжка)."
|
6128 |
|
@@ -6142,15 +6151,15 @@ msgstr "Извличане (ако е необходимо) и подготов
|
|
6142 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
6143 |
msgstr "Настройката на PHP на този уеб сървър позволява само %s секунди за PHP да се изпълни и не позволява това ограничение да се повиши. Ако имате много данни за импортиране и ако операцията по възстановяване изтекла, тогава ще трябва да попитате вашата уеб хостинг компания за начини да повишите това ограничение (или да опитате възстановяването на части)."
|
6144 |
|
6145 |
-
#: src/restorer.php:
|
6146 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
6147 |
msgstr "Съществуващи нераздвижени папки от предишна възстановяване съществуват (моля, използвайте бутона \"Изтрий старите директории\", за да ги изтриете, преди да опитате отново): %s"
|
6148 |
|
6149 |
-
#: src/admin.php:1300, src/class-updraftplus.php:
|
6150 |
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)"
|
6151 |
msgstr "Времето, позволено за WordPress плъгини, които да се изпълняват, е много ниско (%s секунди) - трябва да го увеличите, за да се избегнат грешки в архивирането поради времето за изчакване (консултирайте се с уеб хостинг компанията за повече помощ - това е настройката на max_execution_time PHP; препоръчителната стойност е %s секунди или повече)"
|
6152 |
|
6153 |
-
#: src/addons/migrator.php:
|
6154 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
6155 |
msgstr "Забранено е разширението: %s: активирайте го отново ръчно, когато сте готови."
|
6156 |
|
@@ -6163,11 +6172,11 @@ msgstr "Времето за връзка %s изтече; ако сте въве
|
|
6163 |
msgid "Messages:"
|
6164 |
msgstr "Съобщения:"
|
6165 |
|
6166 |
-
#: src/restorer.php:
|
6167 |
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"
|
6168 |
msgstr "Беше намерен SQL ред, който е по-голям от максималния размер на пакета и не може да бъде разделен; този ред няма да бъде обработен, но ще бъде премахнат: %s"
|
6169 |
|
6170 |
-
#: src/restorer.php:
|
6171 |
msgid "The directory does not exist"
|
6172 |
msgstr "Директорията не съществува"
|
6173 |
|
@@ -6337,39 +6346,39 @@ msgstr "Опитва..."
|
|
6337 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
6338 |
msgstr "Паролата на новата конзола RackSpace на потребителя е (това няма да се показва отново):"
|
6339 |
|
6340 |
-
#: src/admin.php:872, src/restorer.php:
|
6341 |
msgid "Error data:"
|
6342 |
msgstr "Данни за грешка:"
|
6343 |
|
6344 |
-
#: src/admin.php:
|
6345 |
msgid "Backup does not exist in the backup history"
|
6346 |
msgstr "Архивирането не съществува в хронологията на архивирането"
|
6347 |
|
6348 |
-
#: src/admin.php:
|
6349 |
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."
|
6350 |
msgstr "Вашата WordPress инсталация има стари директории от своето състояние, преди да сте възстановени / мигрирали (техническа информация: те са наставени с -old). Трябва да натиснете този бутон, за да ги изтриете веднага след като сте проверили, че възстановяването работи."
|
6351 |
|
6352 |
-
#: src/restorer.php:
|
6353 |
msgid "Split line to avoid exceeding maximum packet size"
|
6354 |
msgstr "Разделяне на линия, за да се избегне превишаване на максималния размер на пакета"
|
6355 |
|
6356 |
-
#: src/restorer.php:
|
6357 |
msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
|
6358 |
msgstr "Вашата база данни потребител няма разрешение да пуснете таблици. Ще се опитаме да възстановим, като просто изпразним масите; това трябва да работи толкова дълго, колкото се възстановява от версия на WordPress със същата структура на базата данни (%s)"
|
6359 |
|
6360 |
-
#: src/restorer.php:
|
6361 |
msgid "Could not move the files into place. Check your file permissions."
|
6362 |
msgstr "Файловете не могат да бъдат премествани на място. Проверете разрешенията за файловете си."
|
6363 |
|
6364 |
-
#: src/restorer.php:
|
6365 |
msgid "Could not move new files into place. Check your wp-content/upgrade folder."
|
6366 |
msgstr "Не може да се преместят нови файлове на място. Проверете папката си wp-content/upgrade."
|
6367 |
|
6368 |
-
#: src/restorer.php:
|
6369 |
msgid "Could not move old files out of the way."
|
6370 |
msgstr "Не може да се преместят старите файлове по пътя."
|
6371 |
|
6372 |
-
#: src/restorer.php:
|
6373 |
msgid "Moving old data out of the way..."
|
6374 |
msgstr "Да се махна от пътя..."
|
6375 |
|
@@ -6381,11 +6390,11 @@ msgstr "Добавяне на друг адрес..."
|
|
6381 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
6382 |
msgstr "Въведете адреси тук, за да им изпратите отчет, когато заданието за архивиране завърши."
|
6383 |
|
6384 |
-
#: src/class-updraftplus.php:
|
6385 |
msgid "%s checksum: %s"
|
6386 |
msgstr "%s контролна сума: %s"
|
6387 |
|
6388 |
-
#: src/class-updraftplus.php:
|
6389 |
msgid "files: %s"
|
6390 |
msgstr "файлове: %s"
|
6391 |
|
@@ -6397,7 +6406,7 @@ msgstr "Използвайте секцията \"Отчитане\", за да
|
|
6397 |
msgid "Debugging information"
|
6398 |
msgstr "Информация за отстраняване на грешки"
|
6399 |
|
6400 |
-
#: src/addons/reporting.php:238, src/admin.php:
|
6401 |
msgid "Uploaded to:"
|
6402 |
msgstr "Kачени в:"
|
6403 |
|
@@ -6442,7 +6451,7 @@ msgstr "%d грешки, %d предупреждения"
|
|
6442 |
msgid "%s authentication"
|
6443 |
msgstr "Удостоверяване на %s"
|
6444 |
|
6445 |
-
#: src/addons/onedrive.php:891, src/class-updraftplus.php:
|
6446 |
#: src/methods/dropbox.php:267, src/methods/dropbox.php:757,
|
6447 |
#: src/methods/dropbox.php:814, src/methods/dropbox.php:828,
|
6448 |
#: src/methods/dropbox.php:848, src/methods/dropbox.php:1005
|
@@ -6465,13 +6474,13 @@ msgstr "Необходимият PHP модул %s не е инсталиран
|
|
6465 |
msgid "Your site's admin email address (%s) will be used."
|
6466 |
msgstr "Ще бъде използван администраторския имейл адрес на вашия сайт (%s)."
|
6467 |
|
6468 |
-
#: src/admin.php:913, src/admin.php:
|
6469 |
#: src/methods/updraftvault.php:411,
|
6470 |
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
6471 |
msgid "Connect"
|
6472 |
msgstr "Свързване"
|
6473 |
|
6474 |
-
#: src/class-updraftplus.php:
|
6475 |
msgid "(version: %s)"
|
6476 |
msgstr "(версия: %s)"
|
6477 |
|
@@ -6479,44 +6488,44 @@ msgstr "(версия: %s)"
|
|
6479 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
6480 |
msgstr "Имайте предвид, че пощенски сървъри са склонни да имат ограничения за размера; обикновено около %s Мб; резервни копия, по-големи от всички ограничения, най-вероятно няма да пристигнат."
|
6481 |
|
6482 |
-
#: src/addons/reporting.php:197, src/class-updraftplus.php:
|
6483 |
msgid "Latest status:"
|
6484 |
msgstr "Последно състояние:"
|
6485 |
|
6486 |
-
#: src/class-updraftplus.php:
|
6487 |
msgid "Backup contains:"
|
6488 |
msgstr "Архивирането съдържа:"
|
6489 |
|
6490 |
-
#: src/class-updraftplus.php:
|
6491 |
msgid "Backed up: %s"
|
6492 |
msgstr "Резервно копие: %s"
|
6493 |
|
6494 |
-
#: src/addons/reporting.php:280, src/class-updraftplus.php:
|
6495 |
-
#: src/class-updraftplus.php:
|
6496 |
msgid "The log file has been attached to this email."
|
6497 |
msgstr "Регистрационният файл е прикачен към този имейл."
|
6498 |
|
6499 |
-
#: src/class-updraftplus.php:
|
6500 |
msgid "Unknown/unexpected error - please raise a support request"
|
6501 |
msgstr "Неизвестна/неочаквана грешка - моля, повдигнете заявка за поддръжка"
|
6502 |
|
6503 |
-
#: src/class-updraftplus.php:
|
6504 |
msgid "Database only (files were not part of this particular schedule)"
|
6505 |
msgstr "Само за база данни (файловете не са част от този конкретен график)"
|
6506 |
|
6507 |
-
#: src/class-updraftplus.php:
|
6508 |
msgid "Database (files backup has not completed)"
|
6509 |
msgstr "База данни (архивирането на файлове не е завършено)"
|
6510 |
|
6511 |
-
#: src/class-updraftplus.php:
|
6512 |
msgid "Files only (database was not part of this particular schedule)"
|
6513 |
msgstr "Само файлове (базата данни не е част от този конкретен график)"
|
6514 |
|
6515 |
-
#: src/class-updraftplus.php:
|
6516 |
msgid "Files (database backup has not completed)"
|
6517 |
msgstr "Файлове (архивирането на базата данни не е завършено)"
|
6518 |
|
6519 |
-
#: src/admin.php:384, src/class-updraftplus.php:
|
6520 |
msgid "Files and database"
|
6521 |
msgstr "Файлове и база данни"
|
6522 |
|
@@ -6604,7 +6613,7 @@ msgstr "Неуспешно свързване с UpdraftPlus.Com"
|
|
6604 |
msgid "Reporting"
|
6605 |
msgstr "Репортаж"
|
6606 |
|
6607 |
-
#: src/admin.php:
|
6608 |
msgid "Options (raw)"
|
6609 |
msgstr "Опции (сурови)"
|
6610 |
|
@@ -6612,19 +6621,19 @@ msgstr "Опции (сурови)"
|
|
6612 |
msgid "Send a report only when there are warnings/errors"
|
6613 |
msgstr "Изпращане на отчет само когато има предупреждения/грешки"
|
6614 |
|
6615 |
-
#: src/restorer.php:
|
6616 |
msgid "Content URL:"
|
6617 |
msgstr "URL адрес на съдържание:"
|
6618 |
|
6619 |
-
#: src/restorer.php:
|
6620 |
msgid "You should check the file ownerships and permissions in your WordPress installation"
|
6621 |
msgstr "Трябва да проверите собствеността и разрешенията на файловете в wordPress инсталацията"
|
6622 |
|
6623 |
-
#: src/backup.php:
|
6624 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
6625 |
msgstr "Свободното пространство в хостинг акаунта ви е много ниско - остават само %s Mb"
|
6626 |
|
6627 |
-
#: src/class-updraftplus.php:
|
6628 |
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)"
|
6629 |
msgstr "Размерът на паметта(RAM) разрешен за PHP е много малък (%s Mb) - трябва да я увеличите, за да избегнете грешки поради недостатъчна памет (консултирайте се с уеб хостинг компанията за повече помощ)"
|
6630 |
|
@@ -6700,19 +6709,19 @@ msgstr "Ако сте закупили нови добавки, следвайт
|
|
6700 |
msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
|
6701 |
msgstr "В момента сте <strong class=\"success\">свързани към</strong> UpdraftPlus.Com акаунт."
|
6702 |
|
6703 |
-
#: src/admin.php:
|
6704 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
6705 |
msgstr "Интересувате се от знаейки за вашата UpdraftPlus.Com парола за сигурност? Прочетете за това тук."
|
6706 |
|
6707 |
-
#: src/admin.php:
|
6708 |
msgid "Forgotten your details?"
|
6709 |
msgstr "Забравили сте си детайлите?"
|
6710 |
|
6711 |
-
#: src/admin.php:
|
6712 |
msgid "Not yet got an account (it's free)? Go get one!"
|
6713 |
msgstr "Все още не е сметка (това е безплатно)? Иди да вземеш един!"
|
6714 |
|
6715 |
-
#: src/admin.php:
|
6716 |
msgid "Connect with your UpdraftPlus.Com account"
|
6717 |
msgstr "Свързване с вашия акаунт за UpdraftPlus.Com"
|
6718 |
|
@@ -6775,7 +6784,7 @@ msgstr "Операцията по възстановяване започна.
|
|
6775 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
6776 |
msgstr "Ако изключите и двете база данни и файловете, тогава сте изключили всичко!"
|
6777 |
|
6778 |
-
#: src/restorer.php:
|
6779 |
msgid "Site home:"
|
6780 |
msgstr "Начална страница:"
|
6781 |
|
@@ -6800,11 +6809,11 @@ msgstr "Файловете не успяха да се качат"
|
|
6800 |
msgid "You can send a backup to more than one destination with Premium."
|
6801 |
msgstr ""
|
6802 |
|
6803 |
-
#: src/admin.php:
|
6804 |
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."
|
6805 |
msgstr "Забележка: лентата за напредъка по-долу се основава на етапи, а не на време. Не спирайте архивирането просто защото изглежда, че е останала на същото място за известно време - това е нормално."
|
6806 |
|
6807 |
-
#: src/admin.php:
|
6808 |
msgid "(%s%%, file %s of %s)"
|
6809 |
msgstr "(%s%, файл %s на %s)"
|
6810 |
|
@@ -6845,11 +6854,11 @@ msgstr "Архивирането е на: %s."
|
|
6845 |
msgid "%s settings test result:"
|
6846 |
msgstr "%s резултат от теста:"
|
6847 |
|
6848 |
-
#: src/admin.php:
|
6849 |
msgid "(Not finished)"
|
6850 |
msgstr "(Не е завършено)"
|
6851 |
|
6852 |
-
#: src/admin.php:
|
6853 |
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."
|
6854 |
msgstr "Ако виждате повече архиви, отколкото очаквате, вероятно това е така, защото изтриването на стари комплекти за архивиране не се случва, докато не завърши ново резервно копие."
|
6855 |
|
@@ -6861,69 +6870,69 @@ msgstr "Не го <b>поставяйте</b> в директорията си
|
|
6861 |
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)."
|
6862 |
msgstr "Това е мястото, където UpdraftPlus ще напише zip файловете, които създава първоначално. Тази директория трябва да може да се записва от вашия уеб сървър. Тя е относителна спрямо директорията на съдържанието (която по подразбиране се нарича wp-съдържание)."
|
6863 |
|
6864 |
-
#: src/admin.php:
|
6865 |
msgid "Job ID: %s"
|
6866 |
msgstr "ИД на задание: %s"
|
6867 |
|
6868 |
-
#: src/admin.php:
|
6869 |
msgid "last activity: %ss ago"
|
6870 |
msgstr "последна дейност: преди %ss"
|
6871 |
|
6872 |
-
#: src/admin.php:
|
6873 |
msgid "next resumption: %d (after %ss)"
|
6874 |
msgstr "следващото възобновяване: %d (след %ss)"
|
6875 |
|
6876 |
-
#: src/admin.php:
|
6877 |
#: src/methods/updraftvault.php:459, src/methods/updraftvault.php:506,
|
6878 |
#: src/methods/updraftvault.php:594
|
6879 |
msgid "Unknown"
|
6880 |
msgstr "Неизвестно"
|
6881 |
|
6882 |
-
#: src/admin.php:
|
6883 |
msgid "Backup finished"
|
6884 |
msgstr "Архивирането завърши"
|
6885 |
|
6886 |
-
#: src/admin.php:
|
6887 |
msgid "Waiting until scheduled time to retry because of errors"
|
6888 |
msgstr "Изчакване до планирано време за повторен опит поради грешки"
|
6889 |
|
6890 |
-
#: src/admin.php:
|
6891 |
msgid "Pruning old backup sets"
|
6892 |
msgstr "Резитба стари комплекти за архивиране"
|
6893 |
|
6894 |
-
#: src/admin.php:
|
6895 |
msgid "Uploading files to remote storage"
|
6896 |
msgstr "Качване на файлове в отдалечено хранилище"
|
6897 |
|
6898 |
-
#: src/admin.php:
|
6899 |
msgid "Encrypted database"
|
6900 |
msgstr "Шифрована база данни"
|
6901 |
|
6902 |
-
#: src/admin.php:
|
6903 |
msgid "Encrypting database"
|
6904 |
msgstr "Шифроване на база данни"
|
6905 |
|
6906 |
-
#: src/admin.php:
|
6907 |
msgid "Created database backup"
|
6908 |
msgstr "Създаване на резервно копие на база данни"
|
6909 |
|
6910 |
-
#: src/admin.php:
|
6911 |
msgid "table: %s"
|
6912 |
msgstr "таблица: %s"
|
6913 |
|
6914 |
-
#: src/admin.php:
|
6915 |
msgid "Creating database backup"
|
6916 |
msgstr "Създаване на архивни данни"
|
6917 |
|
6918 |
-
#: src/admin.php:
|
6919 |
msgid "Created file backup zips"
|
6920 |
msgstr "Създадени архивирани zips файлове"
|
6921 |
|
6922 |
-
#: src/admin.php:
|
6923 |
msgid "Creating file backup zips"
|
6924 |
msgstr "Създаване на архивирани файлове"
|
6925 |
|
6926 |
-
#: src/admin.php:
|
6927 |
msgid "Backup begun"
|
6928 |
msgstr "Започна архивиране"
|
6929 |
|
@@ -6931,23 +6940,23 @@ msgstr "Започна архивиране"
|
|
6931 |
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."
|
6932 |
msgstr "Планировчикът е забранен в wordPress инсталацията чрез настройката за DISABLE_WP_CRON. Не може да се стартират бекъпи (дори "Архивиране сега"), освен ако сте настроили устройство, което да се обади ръчно на диспечера, или докато не бъде активиран."
|
6933 |
|
6934 |
-
#: src/restorer.php:
|
6935 |
msgid "file"
|
6936 |
msgstr "файл"
|
6937 |
|
6938 |
-
#: src/addons/onedrive.php:1243, src/restorer.php:
|
6939 |
msgid "folder"
|
6940 |
msgstr "папка"
|
6941 |
|
6942 |
-
#: src/restorer.php:
|
6943 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
6944 |
msgstr "UpdraftPlus е необходимо, за да се създаде %s в директорията на съдържанието, но не успя - проверете разрешенията за файла и активирайте достъпа (%s)"
|
6945 |
|
6946 |
-
#: src/class-updraftplus.php:
|
6947 |
msgid "The backup has not finished; a resumption is scheduled"
|
6948 |
msgstr "Архивирането не е завършено; е планирано възобновяване на"
|
6949 |
|
6950 |
-
#: src/class-updraftplus.php:
|
6951 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
6952 |
msgstr "Вашият сайт се посещава рядко и UpdraftPlus не получава ресурсите, за които се надяваше; моля, прочетете тази страница:"
|
6953 |
|
@@ -6956,7 +6965,7 @@ msgstr "Вашият сайт се посещава рядко и UpdraftPlus н
|
|
6956 |
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)."
|
6957 |
msgstr "Удостоверяването на %s не може да продължи, защото нещо друго на вашия сайт го нарушава. Опитайте да деактивирате другите си плъгини и да преминете към тема по подразбиране. (По-конкретно търсите компонента, който изпраща изхода (най-вероятно PHP предупреждения/грешки) преди началото на страницата. Изключването на всички настройки за отстраняване на грешки също може да помогне)."
|
6958 |
|
6959 |
-
#: src/admin.php:
|
6960 |
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)."
|
6961 |
msgstr "Лимитът на php паметта (зададен от вашата уеб хостинг компания) е много нисък. UpdraftPlus се опита да го вдигне, но не успя. Този плъгин може да се бори с ограничение на паметта от по-малко от 64 Mb - особено ако имате много големи файлове качени (въпреки че, от друга страна, много сайтове ще бъдат успешни с ограничение 32Mb - вашият опит може да варира)."
|
6962 |
|
@@ -7036,23 +7045,23 @@ msgstr "Още плъгини"
|
|
7036 |
msgid "Support"
|
7037 |
msgstr "Поддръжка"
|
7038 |
|
7039 |
-
#: src/class-updraftplus.php:
|
7040 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
7041 |
msgstr "UpdraftPlus не можа да намери префикса на таблицата при сканиране на архива на базата данни."
|
7042 |
|
7043 |
-
#: src/class-updraftplus.php:
|
7044 |
msgid "This database backup is missing core WordPress tables: %s"
|
7045 |
msgstr "Този архив на базата данни липсва ядрото на WordPress таблици: %s"
|
7046 |
|
7047 |
-
#: src/class-updraftplus.php:
|
7048 |
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."
|
7049 |
msgstr "Импортирате от по-нова версия на WordPress (%s) в по-стара (%s). Няма гаранции, че WordPress може да се справи с това."
|
7050 |
|
7051 |
-
#: src/class-updraftplus.php:
|
7052 |
msgid "%s version: %s"
|
7053 |
msgstr "Версия %s: %s"
|
7054 |
|
7055 |
-
#: src/class-updraftplus.php:
|
7056 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
7057 |
msgstr "Базата данни е твърде малка, за да бъде валидна база данни на WordPress (размер: %s Кб)."
|
7058 |
|
@@ -7060,7 +7069,7 @@ msgstr "Базата данни е твърде малка, за да бъде
|
|
7060 |
msgid "Be safe with an automatic backup"
|
7061 |
msgstr "Бъдете в безопасност с автоматично архивиране"
|
7062 |
|
7063 |
-
#: src/admin.php:
|
7064 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7065 |
msgstr "Ако все още можете да прочетете тези думи след завършване на страницата за зареждане, тогава има проблем с JavaScript или jQuery в сайта."
|
7066 |
|
@@ -7112,7 +7121,7 @@ msgstr "Изтриване от вашия уеб сървър"
|
|
7112 |
msgid "Examples of S3-compatible storage providers:"
|
7113 |
msgstr ""
|
7114 |
|
7115 |
-
#: src/admin.php:
|
7116 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
7117 |
msgstr "Изглежда, че липсват един или повече архиви от този много archive набор."
|
7118 |
|
@@ -7174,11 +7183,11 @@ msgstr "Не съществува такъв комплект архивиран
|
|
7174 |
msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
|
7175 |
msgstr "Архивът за този файл не може да бъде намерен. Използваният метод за отдалечено съхранение (%s) не ни позволява да извличаме файлове. За да извършите всяко възстановяване с помощта на UpdraftPlus, ще трябва да получите копие на този файл и да го поставите в работната папка на UpdraftPlus"
|
7176 |
|
7177 |
-
#: src/restorer.php:
|
7178 |
msgid "Moving unpacked backup into place..."
|
7179 |
msgstr "Преместване на неопаковано архивиране на място..."
|
7180 |
|
7181 |
-
#: src/backup.php:
|
7182 |
msgid "Failed to open the zip file (%s) - %s"
|
7183 |
msgstr "Не можа да се отвори zip файл (%s) - %s"
|
7184 |
|
@@ -7203,11 +7212,11 @@ msgstr "S3 (съвместим)"
|
|
7203 |
msgid "File is not locally present - needs retrieving from remote storage"
|
7204 |
msgstr "Файлът не е локално присъстващ - трябва да се извлича от отдалечено хранилище"
|
7205 |
|
7206 |
-
#: src/restorer.php:
|
7207 |
msgid "Looking for %s archive: file name: %s"
|
7208 |
msgstr "Търсене на %s архив: име на файл: %s"
|
7209 |
|
7210 |
-
#: src/restorer.php:
|
7211 |
msgid "Final checks"
|
7212 |
msgstr "Окончателни проверки"
|
7213 |
|
@@ -7219,7 +7228,7 @@ msgstr "Проверете това, за да изтриете излишнит
|
|
7219 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
7220 |
msgstr "Пуснете шифровани файлове на бази данни (db.gz.crypt файлове) тук, за да ги качите за дешифриране"
|
7221 |
|
7222 |
-
#: src/admin.php:
|
7223 |
msgid "Your wp-content directory server path: %s"
|
7224 |
msgstr "Път до вашия wp-content директория на директория: %s"
|
7225 |
|
@@ -7240,15 +7249,15 @@ msgstr "Обработка на файловете - моля изчакайте
|
|
7240 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
7241 |
msgstr "Вашата WordPress инсталация има проблем с извеждането на допълнителни интервали. Това може да повреди архиви, които изтегляте от тук."
|
7242 |
|
7243 |
-
#: src/class-updraftplus.php:
|
7244 |
msgid "Failed to open database file."
|
7245 |
msgstr "Грешка при отваряне на файла на базата данни."
|
7246 |
|
7247 |
-
#: src/admin.php:
|
7248 |
msgid "Known backups (raw)"
|
7249 |
msgstr "Известни архиви (сурови)"
|
7250 |
|
7251 |
-
#: src/restorer.php:
|
7252 |
msgid "Files found:"
|
7253 |
msgstr "Намерени файлове:"
|
7254 |
|
@@ -7256,23 +7265,23 @@ msgstr "Намерени файлове:"
|
|
7256 |
msgid "Restoring table: %s"
|
7257 |
msgstr "Възстановяване на таблица: %s"
|
7258 |
|
7259 |
-
#: src/restorer.php:
|
7260 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
7261 |
msgstr "Исканият двигател на таблица (%s) не е наличен - преминаване към MyISAM."
|
7262 |
|
7263 |
-
#: src/restorer.php:
|
7264 |
msgid "file is size:"
|
7265 |
msgstr "размерът на файла е:"
|
7266 |
|
7267 |
-
#: src/addons/googlecloud.php:1067, src/addons/migrator.php:
|
7268 |
-
#: src/addons/migrator.php:
|
7269 |
-
#: src/admin.php:1305, src/admin.php:
|
7270 |
-
#: src/backup.php:
|
7271 |
-
#: src/class-updraftplus.php:
|
7272 |
msgid "Go here for more information."
|
7273 |
msgstr "Отидете тук за повече информация."
|
7274 |
|
7275 |
-
#: src/admin.php:
|
7276 |
msgid "Warning: If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7277 |
msgstr ""
|
7278 |
|
@@ -7280,7 +7289,7 @@ msgstr ""
|
|
7280 |
msgid "Some files are still downloading or being processed - please wait."
|
7281 |
msgstr "Някои файлове все още се изтеглят или обработват - моля изчакайте."
|
7282 |
|
7283 |
-
#: src/class-updraftplus.php:
|
7284 |
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."
|
7285 |
msgstr "Този архивен набор е от друг сайт (%s) - това не е възстановяване, а миграция. Трябва мигретор добавката, за да се получи това."
|
7286 |
|
@@ -7322,7 +7331,7 @@ msgstr "%s Грешка"
|
|
7322 |
msgid "%s error - failed to upload file"
|
7323 |
msgstr "%s грешка - грешка при качване на файл"
|
7324 |
|
7325 |
-
#: src/class-updraftplus.php:
|
7326 |
msgid "%s error - failed to re-assemble chunks"
|
7327 |
msgstr "%s грешка - неуспешно събиране на блокове"
|
7328 |
|
@@ -7333,77 +7342,77 @@ msgstr "%s грешка - неуспешно събиране на блоков
|
|
7333 |
msgid "%s authentication failed"
|
7334 |
msgstr "%s удостоверяването е неуспешно"
|
7335 |
|
7336 |
-
#: src/addons/googlecloud.php:475, src/addons/migrator.php:
|
7337 |
#: src/admin.php:2605, src/admin.php:2626, src/admin.php:2634,
|
7338 |
-
#: src/class-updraftplus.php:
|
7339 |
-
#: src/class-updraftplus.php:
|
7340 |
-
#: src/class-updraftplus.php:
|
7341 |
-
#: src/class-updraftplus.php:
|
7342 |
#: src/methods/s3.php:383
|
7343 |
msgid "Error: %s"
|
7344 |
msgstr "Грешка: %s"
|
7345 |
|
7346 |
-
#: src/admin.php:
|
7347 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
7348 |
msgstr "Указаната директория за архивиране съществува, но <b>не</b> може да се записва."
|
7349 |
|
7350 |
-
#: src/admin.php:
|
7351 |
msgid "Backup directory specified does <b>not</b> exist."
|
7352 |
msgstr "Указаната директория за архивиране <b>не</b> съществува."
|
7353 |
|
7354 |
-
#: src/admin.php:
|
7355 |
msgid "Warning: %s"
|
7356 |
msgstr "Предупреждение: %s"
|
7357 |
|
7358 |
-
#: src/backup.php:
|
7359 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
7360 |
msgstr "Срещнат е много голям файл: %s (размер: %s Мб)"
|
7361 |
|
7362 |
-
#: src/backup.php:
|
7363 |
msgid "%s: unreadable file - could not be backed up"
|
7364 |
msgstr "%s: нечетим файл - не може да бъде архивиран"
|
7365 |
|
7366 |
-
#: src/backup.php:
|
7367 |
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."
|
7368 |
msgstr ""
|
7369 |
|
7370 |
-
#: src/backup.php:
|
7371 |
msgid "An error occurred whilst closing the final database file"
|
7372 |
msgstr "Възникна грешка при затваряне на крайния файл с база данни"
|
7373 |
|
7374 |
-
#: src/class-updraftplus.php:
|
7375 |
msgid "Warnings encountered:"
|
7376 |
msgstr "Срещнати предупреждения:"
|
7377 |
|
7378 |
-
#: src/class-updraftplus.php:
|
7379 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
7380 |
msgstr "Архивирането очевидно е успешно (с предупреждения) и сега е пълно"
|
7381 |
|
7382 |
-
#: src/class-updraftplus.php:
|
7383 |
msgid "Your free disk space is very low - only %s Mb remain"
|
7384 |
msgstr "Дисковото пространство на диска е много малко - остават само %s Мб"
|
7385 |
|
7386 |
-
#: src/addons/migrator.php:
|
7387 |
msgid "New site:"
|
7388 |
msgstr "Нов сайт:"
|
7389 |
|
7390 |
-
#: src/addons/migrator.php:
|
7391 |
msgid "Migrated site (from UpdraftPlus)"
|
7392 |
msgstr "Мигриране на сайта (от UpdraftPlus)"
|
7393 |
|
7394 |
-
#: src/addons/migrator.php:
|
7395 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
7396 |
msgstr "Въведете подробности за това къде този нов сайт ще живее в рамките на многостранната ви инсталация:"
|
7397 |
|
7398 |
-
#: src/addons/migrator.php:
|
7399 |
msgid "Information needed to continue:"
|
7400 |
msgstr "Информация, необходима за продължаване на:"
|
7401 |
|
7402 |
-
#: src/addons/migrator.php:
|
7403 |
msgid "Network activating theme:"
|
7404 |
msgstr "Мрежа за активиране на тема:"
|
7405 |
|
7406 |
-
#: src/addons/migrator.php:
|
7407 |
msgid "Processed plugin:"
|
7408 |
msgstr "Обработен плъгин:"
|
7409 |
|
@@ -7427,33 +7436,33 @@ msgstr "Проверете вашите идентификационни дан
|
|
7427 |
msgid "The error reported by %s was:"
|
7428 |
msgstr "Грешката, отчетена от %s, е:"
|
7429 |
|
7430 |
-
#: src/restorer.php:
|
7431 |
msgid "Please supply the requested information, and then continue."
|
7432 |
msgstr "Моля, посочете исканата информация и продължете."
|
7433 |
|
7434 |
-
#: src/class-updraftplus.php:
|
7435 |
msgid "Site information:"
|
7436 |
msgstr "Информация за сайта:"
|
7437 |
|
7438 |
-
#: src/restorer.php:
|
7439 |
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."
|
7440 |
msgstr "Вашият потребител на базата данни няма разрешение за създаване на таблици. Ще се опитаме да възстановим, като просто изпразним масите; това трябва да работи толкова дълго, колкото а) се възстановява от версия на WordPress със същата структура на базата данни и b) Вашата импортирана база данни не съдържа никакви таблици, които все още не са налични в сайта за импортиране."
|
7441 |
|
7442 |
-
#: src/admin.php:1044, src/admin.php:
|
7443 |
-
#: src/restorer.php:
|
7444 |
msgid "Warning:"
|
7445 |
msgstr "Внимание:"
|
7446 |
|
7447 |
-
#: src/class-updraftplus.php:
|
7448 |
-
#: src/restorer.php:
|
7449 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
7450 |
msgstr "Вие работите на многостранна wordPress - но вашето архивиране не е на многостранен сайт."
|
7451 |
|
7452 |
-
#: src/restorer.php:
|
7453 |
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."
|
7454 |
msgstr "Пропускане на възстановяването на WordPress ядрото при импортиране на един сайт в многостранна инсталация. Ако сте имали нещо необходимо в wordPress директорията си, тогава ще трябва да го добавите отново ръчно от zip файла."
|
7455 |
|
7456 |
-
#: src/addons/azure.php:604, src/admin.php:
|
7457 |
#: src/methods/updraftvault.php:343
|
7458 |
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."
|
7459 |
msgstr "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."
|
@@ -7497,7 +7506,7 @@ msgstr "Моля, изчакайте да завърши комуникация
|
|
7497 |
msgid "Also delete from remote storage"
|
7498 |
msgstr "Също изтриване от дистанционно съхранение"
|
7499 |
|
7500 |
-
#: src/admin.php:
|
7501 |
msgid "Latest UpdraftPlus.com news:"
|
7502 |
msgstr "Последни новини от UpdraftPlus.com:"
|
7503 |
|
@@ -7514,7 +7523,7 @@ msgstr "Новини"
|
|
7514 |
msgid "Backup set not found"
|
7515 |
msgstr "Архивен набор не е намерен"
|
7516 |
|
7517 |
-
#: src/backup.php:
|
7518 |
msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
|
7519 |
msgstr "%s - не можа да архивира този обект; съответната директория не съществува (%s)"
|
7520 |
|
@@ -7549,7 +7558,7 @@ msgstr "UpdraftPlus е включен режим за отстраняване
|
|
7549 |
msgid "Notice"
|
7550 |
msgstr "Известие"
|
7551 |
|
7552 |
-
#: src/class-updraftplus.php:
|
7553 |
msgid "Errors encountered:"
|
7554 |
msgstr "Открити са грешки:"
|
7555 |
|
@@ -7581,65 +7590,67 @@ msgstr "\"%s\" няма първичен ключ, необходима е ръ
|
|
7581 |
msgid "rows: %d"
|
7582 |
msgstr "редове: %d"
|
7583 |
|
7584 |
-
#: src/addons/migrator.php:
|
7585 |
msgid "Time taken (seconds):"
|
7586 |
msgstr "Време (секунди):"
|
7587 |
|
7588 |
-
#: src/addons/migrator.php:
|
7589 |
msgid "Errors:"
|
7590 |
msgstr "Грешки:"
|
7591 |
|
7592 |
-
#: src/addons/migrator.php:
|
7593 |
msgid "SQL update commands run:"
|
7594 |
msgstr "SQL актуализация команди:"
|
7595 |
|
7596 |
-
#: src/addons/migrator.php:
|
7597 |
msgid "Changes made:"
|
7598 |
msgstr "Направени промени:"
|
7599 |
|
7600 |
-
#: src/addons/migrator.php:
|
7601 |
msgid "Rows examined:"
|
7602 |
msgstr "Проверени редове:"
|
7603 |
|
7604 |
-
#: src/addons/migrator.php:
|
7605 |
msgid "Tables examined:"
|
7606 |
msgstr "Разгледани таблици:"
|
7607 |
|
7608 |
-
#: src/addons/migrator.php:
|
7609 |
msgid "Could not get list of tables"
|
7610 |
msgstr "Не може да се получи списък на таблици"
|
7611 |
|
7612 |
-
#: src/addons/migrator.php:
|
7613 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
7614 |
msgstr "Предупреждение: URL адресът на сайта на базата данни (%s) е различен от очаквания от нас (%s)"
|
7615 |
|
7616 |
-
#: src/addons/migrator.php:
|
7617 |
msgid "Nothing to do: the site URL is already: %s"
|
7618 |
msgstr "Нищо за върша: URL адресът на сайта вече е: %s"
|
7619 |
|
7620 |
-
#: src/addons/migrator.php:
|
7621 |
-
#: src/addons/migrator.php:
|
7622 |
-
#: src/addons/migrator.php:
|
7623 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
7624 |
msgstr "Грешка: неочакван празен параметър (%s, %s)"
|
7625 |
|
7626 |
-
#: src/addons/migrator.php:
|
7627 |
msgid "Database: search and replace site URL"
|
7628 |
msgstr "База данни: търсене и заместване на URL адрес на сайт"
|
7629 |
|
7630 |
-
#: src/addons/migrator.php:
|
|
|
7631 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
7632 |
msgstr "Неуспешно: не разбирахме резултата, върнат от операцията %s."
|
7633 |
|
7634 |
-
#: src/addons/migrator.php:
|
|
|
7635 |
msgid "Failed: the %s operation was not able to start."
|
7636 |
msgstr "Неуспешно: операцията %s не можа да стартира."
|
7637 |
|
7638 |
-
#: src/addons/migrator.php:
|
7639 |
msgid "Search and replace site location in the database (migrate)"
|
7640 |
msgstr "Търсене и заместване на местоположение на сайта в базата данни (мигриране)"
|
7641 |
|
7642 |
-
#: src/addons/migrator.php:
|
7643 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
7644 |
msgstr "Всички препратки към местоположението на сайта в базата данни ще бъдат заменени с текущия url адрес на сайта ви, което е: %s"
|
7645 |
|
@@ -7647,7 +7658,7 @@ msgstr "Всички препратки към местоположението
|
|
7647 |
msgid "Blog uploads"
|
7648 |
msgstr "Качвания на блогове"
|
7649 |
|
7650 |
-
#: src/addons/migrator.php:
|
7651 |
msgid "Must-use plugins"
|
7652 |
msgstr "Приставки за задължително използване"
|
7653 |
|
@@ -7685,7 +7696,7 @@ msgstr "Път до директорията"
|
|
7685 |
|
7686 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:265,
|
7687 |
#: src/addons/sftp.php:496, src/addons/webdav.php:248, src/admin.php:1032,
|
7688 |
-
#: src/admin.php:
|
7689 |
#: src/methods/updraftvault.php:410,
|
7690 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
7691 |
msgid "Password"
|
@@ -7754,8 +7765,8 @@ msgstr "Неуспешно: Не успяхме да поставим файл
|
|
7754 |
|
7755 |
#: src/addons/googlecloud.php:809, src/addons/googlecloud.php:843,
|
7756 |
#: src/addons/googlecloud.php:849, src/addons/sftp.php:591,
|
7757 |
-
#: src/addons/webdav.php:325, src/admin.php:
|
7758 |
-
#: src/admin.php:
|
7759 |
msgid "Failed"
|
7760 |
msgstr "Неуспешно"
|
7761 |
|
@@ -7957,7 +7968,7 @@ msgstr "Потребителско име"
|
|
7957 |
msgid "API key"
|
7958 |
msgstr "Ключ за API"
|
7959 |
|
7960 |
-
#: src/addons/migrator.php:
|
7961 |
#: src/addons/moredatabase.php:115, src/addons/moredatabase.php:117,
|
7962 |
#: src/addons/sftp.php:560, src/addons/sftp.php:564, src/addons/sftp.php:568,
|
7963 |
#: src/addons/webdav.php:316, src/admin.php:927,
|
@@ -8007,8 +8018,8 @@ msgstr "Вземете своя API ключ <a href=\"https://mycloud.rackspace
|
|
8007 |
msgid "Test %s Settings"
|
8008 |
msgstr "Тест на %s Настройки"
|
8009 |
|
8010 |
-
#: src/addons/webdav.php:638, src/class-updraftplus.php:
|
8011 |
-
#: src/class-updraftplus.php:
|
8012 |
msgid "Error opening local file: Failed to download"
|
8013 |
msgstr "Грешка при отваряне на локален файл: Неуспешно изтегляне"
|
8014 |
|
@@ -8017,7 +8028,7 @@ msgstr "Грешка при отваряне на локален файл: Не
|
|
8017 |
msgid "%s Error: Failed to upload"
|
8018 |
msgstr "%s Грешка: Не можа да бъде качено"
|
8019 |
|
8020 |
-
#: src/class-updraftplus.php:
|
8021 |
msgid "%s Error: Failed to open local file"
|
8022 |
msgstr "%s Грешка: Не може да се отвори локален файл"
|
8023 |
|
@@ -8126,120 +8137,120 @@ msgstr "Нямате инсталирана добавката UpdraftPlus %s -
|
|
8126 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
8127 |
msgstr "Трябва да удостоверите отново с %s, тъй като вашите съществуващи идентификационни данни не работят."
|
8128 |
|
8129 |
-
#: src/admin.php:
|
8130 |
#: src/includes/class-remote-send.php:441,
|
8131 |
-
#: src/includes/class-storage-methods-interface.php:323, src/restorer.php:
|
8132 |
-
#: src/restorer.php:
|
8133 |
msgid "OK"
|
8134 |
msgstr "ОК"
|
8135 |
|
8136 |
-
#: src/restorer.php:
|
8137 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
8138 |
msgstr "Префиксът на таблицата е променен: съответно променя полето (полетата на %s) таблица:"
|
8139 |
|
8140 |
-
#: src/includes/class-search-replace.php:496, src/restorer.php:
|
8141 |
msgid "the database query being run was:"
|
8142 |
msgstr "заявката за база данни, която се изпълнява, е:"
|
8143 |
|
8144 |
-
#: src/restorer.php:
|
8145 |
msgid "will restore as:"
|
8146 |
msgstr "ще се възстанови като:"
|
8147 |
|
8148 |
-
#: src/class-updraftplus.php:
|
8149 |
-
#: src/restorer.php:
|
8150 |
msgid "Old table prefix:"
|
8151 |
msgstr "Стар префикс на таблицата:"
|
8152 |
|
8153 |
#: src/addons/reporting.php:87, src/addons/reporting.php:196,
|
8154 |
-
#: src/class-updraftplus.php:
|
8155 |
msgid "Backup of:"
|
8156 |
msgstr "Архивиране на:"
|
8157 |
|
8158 |
-
#: src/restorer.php:
|
8159 |
msgid "Failed to open database file"
|
8160 |
msgstr "Грешка при отваряне на файла на базата данни"
|
8161 |
|
8162 |
-
#: src/restorer.php:
|
8163 |
msgid "Failed to find database file"
|
8164 |
msgstr "Неуспешно намиране на файл на база данни"
|
8165 |
|
8166 |
-
#: src/restorer.php:
|
8167 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
8168 |
msgstr "Предупреждение: PHP safe_mode е активен на сървъра Ви. Времето за изчакване е много по-вероятно. Ако това се случи, тогава ще трябва да възстановите ръчно файла чрез phpMyAdmin или друг метод."
|
8169 |
|
8170 |
-
#: src/restorer.php:
|
8171 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
8172 |
msgstr "wp-config.php от архивиране: възстановяване (според искане на потребителя)"
|
8173 |
|
8174 |
-
#: src/restorer.php:
|
8175 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
8176 |
msgstr "wp-config.php от архивиране: ще се възстанови като WP-config-backup.php"
|
8177 |
|
8178 |
-
#: src/restorer.php:
|
8179 |
msgid "Failed to write out the decrypted database to the filesystem"
|
8180 |
msgstr "Неуспешно записване на разшифрованата база данни във файловата система"
|
8181 |
|
8182 |
-
#: src/restorer.php:
|
8183 |
msgid "Failed to create a temporary directory"
|
8184 |
msgstr "Неуспешно създаване на временна директория"
|
8185 |
|
8186 |
-
#: src/restorer.php:
|
8187 |
msgid "Failed to delete working directory after restoring."
|
8188 |
msgstr "Неуспешно изтриване на работната директория след възстановяване."
|
8189 |
|
8190 |
-
#: src/restorer.php:
|
8191 |
msgid "Cleaning up rubbish..."
|
8192 |
msgstr "Почиствам боклука..."
|
8193 |
|
8194 |
-
#: src/restorer.php:
|
8195 |
msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
|
8196 |
msgstr "Възстановяване на базата данни (на голям сайт това може да отнеме много време - ако това време (което може да се случи, ако уеб хостинг компания е конфигурирала хостинга ви да ограничава ресурсите), тогава трябва да използвате друг метод, като phpMyAdmin)..."
|
8197 |
|
8198 |
-
#: src/restorer.php:
|
8199 |
msgid "Database successfully decrypted."
|
8200 |
msgstr "Базата данни е успешно дешифрирана."
|
8201 |
|
8202 |
-
#: src/restorer.php:
|
8203 |
msgid "Decrypting database (can take a while)..."
|
8204 |
msgstr "Дешифриране на база данни (може да отнеме известно време)..."
|
8205 |
|
8206 |
-
#: src/restorer.php:
|
8207 |
msgid "Unpacking backup..."
|
8208 |
msgstr "Разопаковане на архивно копие..."
|
8209 |
|
8210 |
-
#: src/restorer.php:
|
8211 |
msgid "Copying this entity failed."
|
8212 |
msgstr "Копирането на този обект е неуспешно."
|
8213 |
|
8214 |
-
#: src/restorer.php:
|
8215 |
msgid "Backup file not available."
|
8216 |
msgstr "Няма наличен архивен файл."
|
8217 |
|
8218 |
-
#: src/restorer.php:
|
8219 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
8220 |
msgstr "UpdraftPlus не е в състояние директно да възстанови този вид на обект. Трябва да се възстанови ръчно."
|
8221 |
|
8222 |
-
#: src/restorer.php:
|
8223 |
msgid "Could not read one of the files for restoration"
|
8224 |
msgstr ""
|
8225 |
|
8226 |
-
#: src/restorer.php:
|
8227 |
msgid "Error message"
|
8228 |
msgstr "Съобщение за грешка"
|
8229 |
|
8230 |
-
#: src/restorer.php:
|
8231 |
msgid "The backup records do not contain information about the proper size of this file."
|
8232 |
msgstr "Архивните записи не съдържат информация за правилния размер на този файл."
|
8233 |
|
8234 |
-
#: src/restorer.php:
|
8235 |
msgid "Archive is expected to be size:"
|
8236 |
msgstr "Очаква се архивът да бъде размер:"
|
8237 |
|
8238 |
-
#: src/admin.php:
|
8239 |
msgid "If making a request for support, please include this information:"
|
8240 |
msgstr "Ако правите заявка за поддръжка, моля, включете тази информация:"
|
8241 |
|
8242 |
-
#: src/admin.php:
|
8243 |
msgid "ABORT: Could not find the information on which entities to restore."
|
8244 |
msgstr "ABORT: Не може да се намери информация за това кои обекти да се възстанови."
|
8245 |
|
@@ -8247,27 +8258,27 @@ msgstr "ABORT: Не може да се намери информация за т
|
|
8247 |
msgid "UpdraftPlus Restoration: Progress"
|
8248 |
msgstr "Възстановяване на updraftPlus: Прогрес"
|
8249 |
|
8250 |
-
#: src/admin.php:
|
8251 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
8252 |
msgstr "Това архивиране не съществува в хронологията на архивирането - възстановяването е прекратено. Клеймото:"
|
8253 |
|
8254 |
-
#: src/admin.php:
|
8255 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
8256 |
msgstr "След като натиснете този бутон, ще ви бъде дадена възможност да изберете кои компоненти"
|
8257 |
|
8258 |
-
#: src/admin.php:
|
8259 |
msgid "Delete this backup set"
|
8260 |
msgstr "Изтриване на този архивен набор"
|
8261 |
|
8262 |
-
#: src/admin.php:
|
8263 |
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."
|
8264 |
msgstr "Добра новина: Съобщенията на вашия сайт с %s могат да бъдат шифровани. Ако видите грешки, свързани с шифроването, потърсете в \"Експертни настройки\" за допълнителна помощ."
|
8265 |
|
8266 |
-
#: src/admin.php:
|
8267 |
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."
|
8268 |
msgstr "Php/Curl инсталацията на вашия уеб сървър не поддържа https достъп. Не можем да осъществим достъп до %s без тази поддръжка. Обърнете се към поддръжката на вашия уеб хостинг доставчик. %s <strong>изисква</strong> Curl+https. Моля, не подавайте заявки за поддръжка; няма алтернатива."
|
8269 |
|
8270 |
-
#: src/admin.php:
|
8271 |
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)."
|
8272 |
msgstr "Php/Curl инсталацията на вашия уеб сървър не поддържа https достъп. Комуникациите с %s няма да бъдат закрити. Помолете вашия уеб хост да инсталира Curl/SSL, за да придобие възможност за шифроване (чрез добавка)."
|
8273 |
|
@@ -8308,19 +8319,19 @@ msgstr "По подразбиране UpdraftPlus използва своя со
|
|
8308 |
msgid "Use the server's SSL certificates"
|
8309 |
msgstr "Използване на SSL сертификати на сървъра"
|
8310 |
|
8311 |
-
#: src/admin.php:
|
8312 |
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."
|
8313 |
msgstr "Ако това е неуспешен, проверете разрешенията на вашия сървър или го променете в друга директория, която може да се записва от процеса на вашия уеб сървър."
|
8314 |
|
8315 |
-
#: src/admin.php:
|
8316 |
msgid "or, to reset this option"
|
8317 |
msgstr "или, за да нулирате тази опция"
|
8318 |
|
8319 |
-
#: src/admin.php:
|
8320 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
8321 |
msgstr "Следвайте тази връзка, за да се опитате да създадете директория и да зададете разрешения"
|
8322 |
|
8323 |
-
#: src/admin.php:
|
8324 |
msgid "Backup directory specified is writable, which is good."
|
8325 |
msgstr "Указаната директория за архивиране е записваема, което е добро."
|
8326 |
|
@@ -8362,7 +8373,7 @@ msgid "Cancel"
|
|
8362 |
msgstr "Отмяна"
|
8363 |
|
8364 |
#: src/addons/incremental.php:330, src/addons/incremental.php:338,
|
8365 |
-
#: src/addons/reporting.php:260, src/admin.php:
|
8366 |
msgid "None"
|
8367 |
msgstr "Няма"
|
8368 |
|
@@ -8378,7 +8389,7 @@ msgstr "Ръчно дешифриране на архивен файл на ба
|
|
8378 |
msgid "Database encryption phrase"
|
8379 |
msgstr "Фраза за шифроване на база данни"
|
8380 |
|
8381 |
-
#: src/admin.php:
|
8382 |
#: src/templates/wp-admin/settings/form-contents.php:256,
|
8383 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
8384 |
msgid "Email"
|
@@ -8392,7 +8403,7 @@ msgstr "Горните директории са всичко, с изключе
|
|
8392 |
msgid "Exclude these:"
|
8393 |
msgstr "Без тези артикули:"
|
8394 |
|
8395 |
-
#: src/admin.php:
|
8396 |
msgid "Any other directories found inside wp-content"
|
8397 |
msgstr "Всички други директории, намерени в wp-съдържание"
|
8398 |
|
@@ -8413,22 +8424,22 @@ msgid "Database backup interval"
|
|
8413 |
msgstr "Интервал на архивиране на база данни"
|
8414 |
|
8415 |
#: src/addons/incremental.php:334, src/addons/incremental.php:347,
|
8416 |
-
#: src/admin.php:
|
8417 |
msgid "Monthly"
|
8418 |
msgstr "Месечен"
|
8419 |
|
8420 |
#: src/addons/incremental.php:333, src/addons/incremental.php:346,
|
8421 |
-
#: src/admin.php:
|
8422 |
msgid "Fortnightly"
|
8423 |
msgstr "Две седмици"
|
8424 |
|
8425 |
#: src/addons/incremental.php:332, src/addons/incremental.php:345,
|
8426 |
-
#: src/admin.php:
|
8427 |
msgid "Weekly"
|
8428 |
msgstr "Ежеседмично"
|
8429 |
|
8430 |
#: src/addons/incremental.php:331, src/addons/incremental.php:344,
|
8431 |
-
#: src/admin.php:
|
8432 |
msgid "Daily"
|
8433 |
msgstr "Ежедневно"
|
8434 |
|
@@ -8436,30 +8447,30 @@ msgstr "Ежедневно"
|
|
8436 |
msgid "Files backup interval"
|
8437 |
msgstr "Интервал за архивиране на файлове"
|
8438 |
|
8439 |
-
#: src/admin.php:909, src/admin.php:
|
8440 |
msgid "Download log file"
|
8441 |
msgstr "Изтегляне на регистрационен файл"
|
8442 |
|
8443 |
-
#: src/admin.php:
|
8444 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
8445 |
msgstr "Папката съществува, но вашият уеб сървър няма разрешение да я пише."
|
8446 |
|
8447 |
-
#: src/admin.php:
|
8448 |
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"
|
8449 |
msgstr "Папката е създадена, но трябваше да променим разрешенията си за файлове на 777 (с възможност за world-write), за да може да пише в нея. Трябва да проверите при вашия хостинг доставчик, че това няма да доведе до никакви проблеми"
|
8450 |
|
8451 |
-
#: src/admin.php:
|
8452 |
msgid "The request to the filesystem to create the directory failed."
|
8453 |
msgstr "Искането за създаване на директорията е неуспешно."
|
8454 |
|
8455 |
-
#: src/admin.php:900, src/admin.php:
|
8456 |
-
#: src/admin.php:
|
8457 |
#: src/templates/wp-admin/settings/existing-backups-table.php:167,
|
8458 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
8459 |
msgid "Delete"
|
8460 |
msgstr "Изтрий"
|
8461 |
|
8462 |
-
#: src/admin.php:
|
8463 |
msgid "show log"
|
8464 |
msgstr "показване на дневник"
|
8465 |
|
@@ -8524,7 +8535,7 @@ msgstr "Не"
|
|
8524 |
msgid "Yes"
|
8525 |
msgstr "Да"
|
8526 |
|
8527 |
-
#: src/admin.php:
|
8528 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
8529 |
#: src/templates/wp-admin/advanced/site-info.php:64,
|
8530 |
#: src/templates/wp-admin/advanced/site-info.php:72,
|
@@ -8556,7 +8567,7 @@ msgstr "Многоезичен сайт"
|
|
8556 |
msgid "Do read this helpful article of useful things to know before restoring."
|
8557 |
msgstr "Прочетете тази полезна статия за полезни неща, които трябва да знаете преди да го възстановите."
|
8558 |
|
8559 |
-
#: src/class-updraftplus.php:
|
8560 |
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"
|
8561 |
msgstr "Можете да търсите и замествате вашата база данни (за мигриране на уеб сайт към ново местоположение/URL адрес) с добавката Мигратор - следвайте тази връзка за повече информация"
|
8562 |
|
@@ -8598,8 +8609,8 @@ msgid "Download error: the server sent us a response which we did not understand
|
|
8598 |
msgstr "Грешка при изтегляне: сървърът ни изпрати отговор, който не разбираме."
|
8599 |
|
8600 |
#: src/addons/backblaze.php:205, src/addons/backblaze.php:230,
|
8601 |
-
#: src/addons/cloudfiles-enhanced.php:123, src/addons/migrator.php:
|
8602 |
-
#: src/addons/migrator.php:
|
8603 |
#: src/addons/s3-enhanced.php:161, src/addons/s3-enhanced.php:166,
|
8604 |
#: src/addons/s3-enhanced.php:168, src/addons/sftp.php:962,
|
8605 |
#: src/addons/webdav.php:258, src/admin.php:91, src/admin.php:873,
|
@@ -8616,7 +8627,8 @@ msgstr "Грешка при изтегляне: сървърът ни изпра
|
|
8616 |
#: src/includes/class-search-replace.php:326,
|
8617 |
#: src/includes/class-search-replace.php:496, src/methods/remotesend.php:74,
|
8618 |
#: src/methods/remotesend.php:252, src/methods/updraftvault.php:592,
|
8619 |
-
#: src/restorer.php:
|
|
|
8620 |
msgid "Error:"
|
8621 |
msgstr "Грешка:"
|
8622 |
|
@@ -8670,7 +8682,7 @@ msgstr "Уеб браузър на Opera"
|
|
8670 |
msgid "More tasks:"
|
8671 |
msgstr "Още задачи:"
|
8672 |
|
8673 |
-
#: src/admin.php:
|
8674 |
msgid "Download most recently modified log file"
|
8675 |
msgstr "Изтегляне на последно променения регистрационен файл"
|
8676 |
|
@@ -8679,13 +8691,13 @@ msgid "(Nothing yet logged)"
|
|
8679 |
msgstr "(Нищо не е записано)"
|
8680 |
|
8681 |
#: src/addons/autobackup.php:368, src/addons/autobackup.php:463,
|
8682 |
-
#: src/admin.php:
|
8683 |
#: src/templates/wp-admin/settings/take-backup.php:72
|
8684 |
msgid "Last log message"
|
8685 |
msgstr "Последно съобщение на регистрационния файл"
|
8686 |
|
8687 |
-
#: src/addons/migrator.php:
|
8688 |
-
#: src/admin.php:
|
8689 |
msgid "Restore"
|
8690 |
msgstr "Възстановяване"
|
8691 |
|
@@ -8698,18 +8710,18 @@ msgid "Time now"
|
|
8698 |
msgstr "Време е"
|
8699 |
|
8700 |
#: src/addons/moredatabase.php:266, src/addons/reporting.php:275,
|
8701 |
-
#: src/addons/wp-cli.php:428, src/admin.php:394, src/admin.php:
|
8702 |
-
#: src/admin.php:
|
8703 |
#: src/includes/class-remote-send.php:445,
|
8704 |
#: src/includes/class-wpadmin-commands.php:154,
|
8705 |
-
#: src/includes/class-wpadmin-commands.php:612, src/restorer.php:
|
8706 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
|
8707 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
|
8708 |
#: src/templates/wp-admin/settings/take-backup.php:34
|
8709 |
msgid "Database"
|
8710 |
msgstr "Бази данни"
|
8711 |
|
8712 |
-
#: src/admin.php:384, src/admin.php:
|
8713 |
#: src/templates/wp-admin/settings/take-backup.php:24
|
8714 |
msgid "Files"
|
8715 |
msgstr "Файлове"
|
@@ -8735,15 +8747,15 @@ msgstr "Този администраторски интерфейс изпол
|
|
8735 |
msgid "JavaScript warning"
|
8736 |
msgstr "Предупреждение за JavaScript"
|
8737 |
|
8738 |
-
#: src/admin.php:884, src/admin.php:
|
8739 |
msgid "Delete Old Directories"
|
8740 |
msgstr "Изтриване на стари директории"
|
8741 |
|
8742 |
-
#: src/admin.php:
|
8743 |
msgid "Current limit is:"
|
8744 |
msgstr "Настоящото ограничение е:"
|
8745 |
|
8746 |
-
#: src/admin.php:
|
8747 |
msgid "Your backup has been restored."
|
8748 |
msgstr "Архивирането ви е възстановено."
|
8749 |
|
@@ -8755,36 +8767,36 @@ msgstr "Версия"
|
|
8755 |
msgid "Lead developer's homepage"
|
8756 |
msgstr "Начална страница на програмиста на потенциални клиенти"
|
8757 |
|
8758 |
-
#: src/admin.php:
|
8759 |
msgid "Your settings have been wiped."
|
8760 |
msgstr "Настройките ви са били изтрити."
|
8761 |
|
8762 |
-
#: src/admin.php:
|
8763 |
msgid "Backup directory successfully created."
|
8764 |
msgstr "Архивната директория е създадена успешно."
|
8765 |
|
8766 |
-
#: src/admin.php:
|
8767 |
msgid "Backup directory could not be created"
|
8768 |
msgstr "Директорията за архивиране не може да бъде създадена"
|
8769 |
|
8770 |
-
#: src/admin.php:
|
8771 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
8772 |
msgstr "Премахването на старата директория е неуспешно по някаква причина. Може да искате да направите това ръчно."
|
8773 |
|
8774 |
-
#: src/admin.php:
|
8775 |
msgid "Old directories successfully removed."
|
8776 |
msgstr "Старите директории са успешно премахнати."
|
8777 |
|
8778 |
-
#: src/admin.php:
|
8779 |
msgid "Remove old directories"
|
8780 |
msgstr "Премахване на стари директории"
|
8781 |
|
8782 |
-
#: src/addons/migrator.php:
|
8783 |
msgid "Return to UpdraftPlus Configuration"
|
8784 |
msgstr "Връщане към конфигурацията на UpdraftPlus"
|
8785 |
|
8786 |
-
#: src/admin.php:877, src/admin.php:
|
8787 |
-
#: src/admin.php:
|
8788 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
8789 |
#: src/templates/wp-admin/settings/existing-backups-table.php:142
|
8790 |
msgid "Actions"
|
@@ -8815,13 +8827,13 @@ msgid "Download failed"
|
|
8815 |
msgstr "Неуспешно изтегляне"
|
8816 |
|
8817 |
#: src/addons/webdav.php:584, src/addons/wp-cli.php:497, src/admin.php:874,
|
8818 |
-
#: src/class-updraftplus.php:
|
8819 |
#: src/includes/class-filesystem-functions.php:437,
|
8820 |
#: src/includes/class-storage-methods-interface.php:332,
|
8821 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
8822 |
#: src/methods/addon-base-v2.php:251, src/methods/addon-base-v2.php:271,
|
8823 |
-
#: src/methods/googledrive.php:1343, src/restorer.php:
|
8824 |
-
#: src/restorer.php:
|
8825 |
#: src/updraftplus.php:158
|
8826 |
msgid "Error"
|
8827 |
msgstr "Грешка"
|
@@ -8858,11 +8870,11 @@ msgstr "UpdraftPlus не поддържа официално версии на W
|
|
8858 |
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."
|
8859 |
msgstr "Имате по-малко от %s свободно дисково пространство на диска, който UpdraftPlus е конфигуриран да използва за създаване на архиви. UpdraftPlus може да се изчерпи от пространството. Свържете се с вас, вие сте операторът на вашия сървър (напр. вашата уеб хостинг компания), за да разрешите този проблем."
|
8860 |
|
8861 |
-
#: src/addons/azure.php:604, src/addons/migrator.php:
|
8862 |
#: src/admin.php:1305, src/admin.php:1311, src/admin.php:1315,
|
8863 |
-
#: src/admin.php:1319, src/admin.php:1328, src/admin.php:
|
8864 |
-
#: src/admin.php:
|
8865 |
-
#: src/admin.php:
|
8866 |
#: src/methods/cloudfiles.php:455, src/methods/ftp.php:344,
|
8867 |
#: src/methods/openstack-base.php:576, src/methods/s3.php:892,
|
8868 |
#: src/methods/s3.php:896, src/methods/updraftvault.php:343,
|
@@ -8872,19 +8884,19 @@ msgstr "Имате по-малко от %s свободно дисково пр
|
|
8872 |
msgid "Warning"
|
8873 |
msgstr "Внимание"
|
8874 |
|
8875 |
-
#: src/admin.php:717, src/admin.php:1222, src/admin.php:
|
8876 |
msgid "Settings"
|
8877 |
msgstr "Настройки"
|
8878 |
|
8879 |
-
#: src/backup.php:
|
8880 |
msgid "Could not create %s zip. Consult the log file for more information."
|
8881 |
msgstr "Не може да се създаде %s цип. За повече информация вижте регистрационния файл."
|
8882 |
|
8883 |
-
#: src/backup.php:
|
8884 |
msgid "Infinite recursion: consult your log for more information"
|
8885 |
msgstr "Безкрайно рекурсия: консултирайте се с вашия регистрационен файл за повече информация"
|
8886 |
|
8887 |
-
#: src/addons/azure.php:267, src/class-updraftplus.php:
|
8888 |
#: src/methods/googledrive.php:1343, src/methods/s3.php:383
|
8889 |
msgid "File not found"
|
8890 |
msgstr "Файлът не беше намерен"
|
@@ -8893,41 +8905,41 @@ msgstr "Файлът не беше намерен"
|
|
8893 |
msgid "The decryption key used:"
|
8894 |
msgstr "Използваният ключ за декриптиране:"
|
8895 |
|
8896 |
-
#: src/class-updraftplus.php:
|
8897 |
-
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:
|
8898 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
8899 |
msgstr "Неуспешна дешифриране. Най-вероятната причина е, че сте използвали грешен ключ."
|
8900 |
|
8901 |
-
#: src/class-updraftplus.php:
|
8902 |
-
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:
|
8903 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
8904 |
msgstr "Неуспешна дешифриране. Файлът на базата данни е шифрован, но не е въведен ключ за шифроване."
|
8905 |
|
8906 |
-
#: src/backup.php:
|
8907 |
msgid "Could not open the backup file for writing"
|
8908 |
msgstr "Не може да се отвори архивният файл за запис"
|
8909 |
|
8910 |
-
#: src/class-updraftplus.php:
|
8911 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
8912 |
msgstr "Историята на архивирането не може да се запише, защото нямаме резервен масив. Вероятно архивирането е неуспешно."
|
8913 |
|
8914 |
-
#: src/class-updraftplus.php:
|
8915 |
msgid "Could not read the directory"
|
8916 |
msgstr "Директорията не може да бъде прочетена"
|
8917 |
|
8918 |
-
#: src/admin.php:2568, src/backup.php:
|
8919 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
8920 |
msgstr "Директорията за архивиране (%s) не може да се записва или не съществува."
|
8921 |
|
8922 |
-
#: src/class-updraftplus.php:
|
8923 |
msgid "WordPress backup is complete"
|
8924 |
msgstr "Архивирането в WordPress е завършено"
|
8925 |
|
8926 |
-
#: src/class-updraftplus.php:
|
8927 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
8928 |
msgstr "Опитът за архивиране е завършен, очевидно безуспешно"
|
8929 |
|
8930 |
-
#: src/class-updraftplus.php:
|
8931 |
msgid "The backup apparently succeeded and is now complete"
|
8932 |
msgstr "Архивирането очевидно е успешно и сега е завършено"
|
8933 |
|
@@ -8935,37 +8947,37 @@ msgstr "Архивирането очевидно е успешно и сега
|
|
8935 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
8936 |
msgstr "Грешка при шифроване при шифроване на база данни. Шифроването е прекратено."
|
8937 |
|
8938 |
-
#: src/class-updraftplus.php:
|
8939 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
8940 |
msgstr "Не можаха да се създадат файлове в директорията за архивиране. Архивирането е прекратено - проверете настройките на UpdraftPlus."
|
8941 |
|
8942 |
-
#: src/class-updraftplus.php:
|
8943 |
msgid "Others"
|
8944 |
msgstr "Други"
|
8945 |
|
8946 |
-
#: src/addons/multisite.php:504, src/class-updraftplus.php:
|
8947 |
msgid "Uploads"
|
8948 |
msgstr "Качвания"
|
8949 |
|
8950 |
-
#: src/class-updraftplus.php:
|
8951 |
msgid "Themes"
|
8952 |
msgstr "Теми"
|
8953 |
|
8954 |
-
#: src/class-updraftplus.php:
|
8955 |
msgid "Plugins"
|
8956 |
msgstr "Плъгини"
|
8957 |
|
8958 |
-
#: src/class-updraftplus.php:
|
8959 |
msgid "No log files were found."
|
8960 |
msgstr "Не са намерени лог файлове."
|
8961 |
|
8962 |
-
#: src/admin.php:2430,
|
11 |
"Language: bg\n"
|
12 |
"Project-Id-Version: UpdraftPlus\n"
|
13 |
|
14 |
+
#: src/templates/wp-admin/advanced/site-info.php:109
|
15 |
+
msgid "Install debugging plugins:"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/restorer.php:2918
|
19 |
+
msgid "Old ABSPATH:"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/admin.php:2772
|
23 |
+
msgid "Enjoyed %s? Please leave us a %s rating. We really appreciate your support!"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
#: src/udaddons/options.php:98
|
27 |
msgid "An update is available for UpdraftPlus - please connect here to gain access to it."
|
28 |
msgstr ""
|
241 |
msgid "If you have an existing backup that you wish to upload and restore from, then please use the \"Upload backup files\" link above."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: src/class-updraftplus.php:5358
|
245 |
msgid "Include all tables not listed below"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: src/class-updraftplus.php:5356
|
249 |
msgid "The amount of database tables scanned is near or over the php_max_input_vars value so some tables maybe truncated. This option will ensure all tables not found will be backed up."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: src/class-updraftplus.php:5355
|
253 |
msgid "The database scan was taking too long and consequently the list of all tables in the database could not be completed. This option will ensure all tables not found will be backed up."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: src/class-updraftplus.php:5345
|
257 |
msgid "Therefore, affected tables on the current site which already exist will not be replaced by default, to avoid corrupting them (you can review this in the list of tables below)."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: src/class-updraftplus.php:5343
|
261 |
msgid "Therefore it is advised that you take a fresh backup on the source site, using a later version."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: src/class-updraftplus.php:5343, src/class-updraftplus.php:5345
|
265 |
msgid "This backup was created on a previous UpdraftPlus version (%s) which did not correctly backup tables with composite primary keys (such as the term_relationships table, which records tags and product attributes)."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: src/class-updraftplus.php:5296
|
269 |
msgid "This backup is of a site with an empty table prefix, which WordPress does not officially support; the results may be unreliable."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: src/class-updraftplus.php:3868
|
273 |
msgid "View log"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: src/class-updraftplus.php:3862
|
277 |
msgid "You can view the log by pressing the 'View log' button."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: src/class-updraftplus.php:3820
|
281 |
msgid "UpdraftPlus on %s"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: src/class-updraftplus.php:3154
|
285 |
msgid " Your hosting provider only allows you to take one incremental backup per day."
|
286 |
msgstr ""
|
287 |
|
329 |
msgid "The plugin you wish to activate is either not installed or has been removed recently."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: src/backup.php:3844
|
333 |
msgid "two unsuccessful attempts were made to include it, and it will now be omitted from the backup"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: src/backup.php:3840
|
337 |
msgid "a second attempt is being made (upon further failure it will be skipped)"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: src/backup.php:2381
|
341 |
msgid "Error getting table details"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: src/backup.php:1761
|
345 |
msgid "Failed to backup database table:"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: src/backup.php:1610
|
349 |
msgid "Failed to open directory for reading:"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: src/admin.php:6206
|
353 |
msgid "The download link is broken or the backup file is no longer available"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: src/admin.php:6204
|
357 |
msgid "The download link is broken, you may have clicked the link from untrusted source"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: src/admin.php:6189
|
361 |
msgid "Due to the restriction, some settings can be automatically adjusted, disabled or not available."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: src/admin.php:6188
|
365 |
msgid "%s permits UpdraftPlus to perform only one backup per month. Thus, we recommend you choose a full backup when performing a manual backup and to use that option when creating a scheduled backup."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: src/admin.php:6187
|
369 |
msgid "Your website is hosted with %s (%s)."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: src/admin.php:6123
|
373 |
msgid "The following remote storage (%s) have only been partially configured, if you are having problems you can try to manually authorise at the UpdraftPlus settings page."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: src/admin.php:6117
|
377 |
msgid "The following remote storage (%s) have only been partially configured, manual authorization is not supported with this remote storage, please try again and if the problem persists contact support."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: src/admin.php:5981
|
381 |
msgid "more info"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: src/admin.php:5371
|
385 |
msgid "The following remote storage options are configured."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: src/admin.php:5368
|
389 |
msgid "No remote storage locations with valid options found."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: src/admin.php:4965
|
393 |
msgid "This may prevent the restore procedure from being able to proceed."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: src/admin.php:4192
|
397 |
msgid "(the asterisk character matches zero or more characters)"
|
398 |
msgstr ""
|
399 |
|
449 |
msgid "Your hosting provider only allows you to take one incremental backup per day."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: src/admin.php:1049, src/class-updraftplus.php:3154
|
453 |
msgid "You have reached the daily limit for the number of incremental backups you can create at this time."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: src/admin.php:1048, src/admin.php:1049, src/class-updraftplus.php:3154,
|
457 |
+
#: src/class-updraftplus.php:3157
|
458 |
msgid "Please contact your hosting company (%s) if you require further support."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: src/admin.php:1048, src/class-updraftplus.php:3157
|
462 |
msgid "Your hosting provider only allows you to take one backup per month."
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: src/admin.php:1048, src/class-updraftplus.php:3157
|
466 |
msgid "You have reached the monthly limit for the number of backups you can create at this time."
|
467 |
msgstr ""
|
468 |
|
482 |
msgid "Exit full-screen"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: src/admin.php:904, src/admin.php:4994
|
486 |
msgid "Full-screen"
|
487 |
msgstr ""
|
488 |
|
759 |
msgid "Makes your site fast and efficient. It cleans the database, compresses images and caches pages for ultimate speed."
|
760 |
msgstr "Прави сайта Ви бърз и ефективен. Той почиства базата данни, компресира изображения и кешира страници за крайната скорост."
|
761 |
|
762 |
+
#: src/restorer.php:3798
|
763 |
msgid "The Database connection has been closed and cannot be reopened."
|
764 |
msgstr "Връзката с базата данни е затворена и не може да бъде отворена отново."
|
765 |
|
766 |
+
#: src/restorer.php:3462
|
767 |
msgid "Skipping table %s: already restored on a prior run; next table to restore: %s"
|
768 |
msgstr "Пропускаща таблица %s: вече е възстановена при по-предходно изпълнение; следваща таблица за възстановяване: %s"
|
769 |
|
770 |
+
#: src/restorer.php:3459
|
771 |
msgid "Skipping table %s: user has chosen not to restore this table"
|
772 |
msgstr "Пропускане на таблица %s: потребителят е избрал да не възстановява тази таблица"
|
773 |
|
774 |
+
#: src/restorer.php:2384
|
775 |
msgid "Found and replaced existing table foreign key constraints as the table prefix has changed."
|
776 |
msgstr "Намерени и заменени съществуващи ограничения за чужди ключови таблици, тъй като префиксът на таблицата е променен."
|
777 |
|
778 |
+
#: src/restorer.php:2227
|
779 |
msgid "An error occurred while attempting to set a new value to the MySQL global log_bin_trust_function_creators variable %s"
|
780 |
msgstr "Възникна грешка при опит за задаване на нова стойност на глобалната log_bin_trust_function_creators променлива на MySQL %s"
|
781 |
|
782 |
+
#: src/restorer.php:2220
|
783 |
msgid "An error occurred while attempting to retrieve the MySQL global log_bin_trust_function_creators variable %s"
|
784 |
msgstr "Възникна грешка при опит за извличане на глобалната log_bin_trust_function_creators променлива на MySQL %s"
|
785 |
|
786 |
+
#: src/restorer.php:1148
|
787 |
msgid "The directory does not exist, and the attempt to create it failed"
|
788 |
msgstr "Директорията не съществува и опитът за създаване на нея е неуспешен"
|
789 |
|
790 |
+
#: src/restorer.php:750
|
791 |
msgid "Could not delete old path."
|
792 |
msgstr "Не може да се изтрие старият път."
|
793 |
|
980 |
msgid "No backup will be started. The creation of your clone should now begin, and your WordPress username and password will be displayed below when ready."
|
981 |
msgstr "Няма да се стартира никакво архивиране. Създаването на клона трябва да започне сега и вашето потребителско име и парола за WordPress ще се показват по-долу, когато сте готови."
|
982 |
|
983 |
+
#: src/class-updraftplus.php:5350
|
984 |
msgid "If you do not want to restore all your database tables, then choose some to exclude here."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: src/class-updraftplus.php:5050
|
988 |
msgid "You should only proceed if you have checked and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the new %s version."
|
989 |
msgstr "Трябва да продължите само ако сте проверили и сте сигурни (или сте готови да рискувате), че вашите плъгини/теми/и т.н. са съвместими с новата версия на %s."
|
990 |
|
991 |
+
#: src/class-updraftplus.php:5050
|
992 |
msgid "This is older than the server which you are now restoring onto (version %s)."
|
993 |
msgstr "Това е по-старо от сървъра, на който се възстановява (версия %s)."
|
994 |
|
995 |
+
#: src/class-updraftplus.php:3620
|
996 |
msgid "Incomplete"
|
997 |
msgstr "Недовършено"
|
998 |
|
999 |
+
#: src/class-updraftplus.php:2385
|
1000 |
msgid "The backup is being aborted for a repeated failure to progress."
|
1001 |
msgstr "Архивирането е прекратено поради повтарящ се неуспех."
|
1002 |
|
1003 |
+
#: src/class-updraftplus.php:652
|
1004 |
msgid "Briefly unavailable for scheduled maintenance. Check back in a minute."
|
1005 |
msgstr "За кратко недостъпна за планирано техническо обслужване. Провери след минута."
|
1006 |
|
1007 |
+
#: src/class-updraftplus.php:652
|
1008 |
msgid "Under Maintenance"
|
1009 |
msgstr "В Профилактика"
|
1010 |
|
1056 |
msgid "Unable to connect to the filesystem"
|
1057 |
msgstr "Не може да се свърже с файловата система"
|
1058 |
|
1059 |
+
#: src/admin.php:6132, src/admin.php:6134
|
1060 |
msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
|
1061 |
msgstr "Поискахте записване в отдалечено хранилище (%s), но без да въвеждате никакви настройки за това място за съхранение."
|
1062 |
|
1063 |
+
#: src/admin.php:5981
|
1064 |
msgid "Clone package"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/admin.php:5968
|
1068 |
msgid "An empty WordPress install"
|
1069 |
msgstr "Празна WordPress инсталация"
|
1070 |
|
1071 |
+
#: src/admin.php:5967
|
1072 |
msgid "This current site"
|
1073 |
msgstr "Този текущ сайт"
|
1074 |
|
1075 |
+
#: src/admin.php:5965
|
1076 |
msgid "Clone:"
|
1077 |
msgstr "Клонинг:"
|
1078 |
|
1079 |
+
#: src/admin.php:5002,
|
1080 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:98
|
1081 |
msgid "3. Restoration"
|
1082 |
msgstr "3. Възстановяване"
|
1083 |
|
1084 |
+
#: src/admin.php:5001,
|
1085 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:97
|
1086 |
msgid "2. Verifications"
|
1087 |
msgstr "2. Проверки"
|
1088 |
|
1089 |
+
#: src/admin.php:5000,
|
1090 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:96
|
1091 |
msgid "1. Component selection"
|
1092 |
msgstr "1. Избор на компонент"
|
1093 |
|
1094 |
+
#: src/admin.php:4994
|
1095 |
msgid "Activity log"
|
1096 |
msgstr "Регистър на дейностите"
|
1097 |
|
1098 |
+
#: src/admin.php:4987
|
1099 |
msgid "Cleaning"
|
1100 |
msgstr "Изчистване"
|
1101 |
|
1102 |
+
#: src/admin.php:4981
|
1103 |
msgid "Verifying"
|
1104 |
msgstr "Проверка"
|
1105 |
|
1106 |
+
#: src/admin.php:4978
|
1107 |
msgid "Restoration progress:"
|
1108 |
msgstr "Напредък на възстановяването:"
|
1109 |
|
1110 |
+
#: src/admin.php:4977
|
1111 |
msgid "The restore operation has begun (%s). Do not close this page until it reports itself as having finished."
|
1112 |
msgstr "Операцията по възстановяване е започнала (%s). Не затваряйте тази страница, докато не се отчита като завършена."
|
1113 |
|
1114 |
+
#: src/admin.php:4968,
|
1115 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
|
1116 |
msgid "UpdraftPlus Restoration"
|
1117 |
msgstr "Възстановяване на updraftPlus"
|
1118 |
|
1119 |
+
#: src/admin.php:4463
|
1120 |
msgid "(%d archive(s) in set, total %s)."
|
1121 |
msgstr "(%d архив(а) в комплект, общо %s)."
|
1122 |
|
1123 |
+
#: src/admin.php:3312
|
1124 |
msgid "Learn more about UpdraftCentral"
|
1125 |
msgstr "Научете повече за UpdraftCentral"
|
1126 |
|
1127 |
+
#: src/admin.php:3312
|
1128 |
msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
|
1129 |
msgstr "Добавете този сайт към UpdraftCentral (дистанционно, централизирано управление) - безплатно за до 5 сайта."
|
1130 |
|
1131 |
+
#: src/admin.php:2852, src/admin.php:3777, src/admin.php:4910,
|
1132 |
+
#: src/admin.php:4922, src/admin.php:4933, src/admin.php:5168,
|
1133 |
+
#: src/admin.php:6123, src/admin.php:6134
|
1134 |
msgid "Return to UpdraftPlus configuration"
|
1135 |
msgstr "Връщане към конфигурацията на UpdraftPlus"
|
1136 |
|
1214 |
msgid "Begun"
|
1215 |
msgstr "Започнал"
|
1216 |
|
1217 |
+
#: src/admin.php:1038, src/admin.php:4988
|
1218 |
msgid "Finished"
|
1219 |
msgstr "Завършен"
|
1220 |
|
1456 |
msgid "Azure China"
|
1457 |
msgstr "Лазурен Китай"
|
1458 |
|
1459 |
+
#: src/admin.php:5951
|
1460 |
msgid "Clone region:"
|
1461 |
msgstr "Клонинг област:"
|
1462 |
|
1490 |
msgid "Or, use an UpdraftClone key"
|
1491 |
msgstr "Или използвайте updraftClone ключ"
|
1492 |
|
1493 |
+
#: src/restorer.php:3164
|
1494 |
msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
|
1495 |
msgstr "Намерени са имена на зададени адреси %s, но се променя на %s, както е предложено от WPDB::determine_charset()."
|
1496 |
|
1514 |
msgid "Automatic updates"
|
1515 |
msgstr "Автоматични актуализации"
|
1516 |
|
1517 |
+
#: src/restorer.php:2735, src/restorer.php:2786
|
1518 |
msgid "Your database user does not have permission to drop tables"
|
1519 |
msgstr "Вашата база данни потребител няма разрешение да пуснете таблици"
|
1520 |
|
1521 |
+
#: src/admin.php:3301
|
1522 |
msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
|
1523 |
msgstr "Помолете WordPress да актуализира UpdraftPlus автоматично, когато има налична актуализация"
|
1524 |
|
1682 |
msgid "WordPress installed"
|
1683 |
msgstr "Инсталиран WordPress"
|
1684 |
|
1685 |
+
#: src/admin.php:6056
|
1686 |
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."
|
1687 |
msgstr "Вашият клонинг е започнал, мрежовата информация все още не е налична, но ще се покаже тук и на вашия updraftplus.com акаунт, след като е готов."
|
1688 |
|
1689 |
+
#: src/admin.php:4192
|
1690 |
msgid "Exclude these from"
|
1691 |
msgstr "Изключване на тези"
|
1692 |
|
1734 |
msgid "failed to upload file to %s (see log file for more)"
|
1735 |
msgstr "неуспешно качване на файл в %s (вижте регистрационния файл за повече)"
|
1736 |
|
1737 |
+
#: src/admin.php:6052
|
1738 |
msgid "Dashboard:"
|
1739 |
msgstr "Таблото:"
|
1740 |
|
1741 |
+
#: src/admin.php:6051
|
1742 |
msgid "Front page:"
|
1743 |
msgstr "Заглавна страница:"
|
1744 |
|
1745 |
+
#: src/admin.php:6050
|
1746 |
msgid "Your clone has started and will be available at the following URLs once it is ready."
|
1747 |
msgstr "Вашият клонинг е започнал и ще бъде достъпен на следните URL адреси, след като е готов."
|
1748 |
|
1754 |
msgid "Current clones"
|
1755 |
msgstr "Текущи клонинги"
|
1756 |
|
1757 |
+
#: src/class-updraftplus.php:3538
|
1758 |
msgid "Your clone will now deploy this data to re-create your site."
|
1759 |
msgstr "Клонингът ви сега ще разположи тези данни, за да създаде отново сайта Ви."
|
1760 |
|
1762 |
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."
|
1763 |
msgstr "Клонингът е бил осигурен и неговите данни са изпратени до него. След като клонингът приключи с внедряването му, ще получите имейл."
|
1764 |
|
1765 |
+
#: src/addons/migrator.php:1402
|
1766 |
msgid "Site key"
|
1767 |
msgstr "Ключ за сайта"
|
1768 |
|
1770 |
msgid "Add a site"
|
1771 |
msgstr "Добавяне на сайт"
|
1772 |
|
1773 |
+
#: src/addons/migrator.php:233, src/addons/migrator.php:1389,
|
1774 |
+
#: src/addons/migrator.php:1409
|
1775 |
msgid "back"
|
1776 |
msgstr "обратно"
|
1777 |
|
1778 |
+
#: src/addons/migrator.php:199
|
1779 |
msgid "Read this article to see step-by-step how it's done."
|
1780 |
msgstr "Прочетете тази статия, за да видите стъпка по стъпка как се прави."
|
1781 |
|
1782 |
+
#: src/addons/migrator.php:193,
|
1783 |
#: src/templates/wp-admin/settings/migrator-no-migrator.php:6
|
1784 |
msgid "Migrate (create a copy of a site on hosting you control)"
|
1785 |
msgstr "Мигриране (създаване на копие на сайт на хостинг, който контролирате)"
|
2056 |
msgid "You can buy more temporary clone tokens here."
|
2057 |
msgstr "Тук можете да купите още временни клонинг символи."
|
2058 |
|
2059 |
+
#: src/admin.php:6004
|
2060 |
msgid "Forbid non-administrators to login to WordPress on your clone"
|
2061 |
msgstr "Забраняване на администраторите да влизат в WordPress на вашия клонинг"
|
2062 |
|
2076 |
msgid "The creation of your data for creating the clone should now begin."
|
2077 |
msgstr "Създаването на вашите данни за създаване на клонинга трябва да започне."
|
2078 |
|
2079 |
+
#: src/admin.php:6054, src/admin.php:6057
|
2080 |
msgid "You can find your temporary clone information in your updraftplus.com account here."
|
2081 |
msgstr "Можете да намерите вашата временна информация за клониране в updraftplus.com си акаунт тук."
|
2082 |
|
2083 |
+
#: src/class-updraftplus.php:5255
|
2084 |
msgid "Choose a default for each table"
|
2085 |
msgstr "Изберете по подразбиране за всяка таблица"
|
2086 |
|
2087 |
+
#: src/admin.php:3617
|
2088 |
msgid "Sending files to remote site"
|
2089 |
msgstr "Изпращане на файлове до отдалечен сайт"
|
2090 |
|
2091 |
+
#: src/admin.php:3612
|
2092 |
msgid "Clone server being provisioned and booted (can take several minutes)"
|
2093 |
msgstr "Clone сървър се обезпечава и обувка (може да отнеме няколко минути)"
|
2094 |
|
2096 |
msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
|
2097 |
msgstr "Предупреждение: избрахте по-ниска версия от инсталираната ви версия. Това може да е неуспешно, ако имате компоненти, които са несъвместими с по-стари версии."
|
2098 |
|
2099 |
+
#: src/addons/migrator.php:237
|
2100 |
msgid "To import a backup set, go to the \"Existing backups\" section in the \"Backup/Restore\" tab"
|
2101 |
msgstr "За да импортирате набор от архиви, отидете на раздела \"Съществуващи архиви\" в раздела \"Архивиране/възстановяване\""
|
2102 |
|
2103 |
+
#: src/admin.php:3091
|
2104 |
msgid "Backup / Restore"
|
2105 |
msgstr "Архивиране / възстановяване"
|
2106 |
|
2107 |
+
#: src/admin.php:701, src/admin.php:4968
|
2108 |
msgid "Backup"
|
2109 |
msgstr "Архивиране"
|
2110 |
|
2124 |
msgid "No previous backup found to add an increment to."
|
2125 |
msgstr "Не е намерено предишно резервно копие, към което да се добави увеличение."
|
2126 |
|
2127 |
+
#: src/restorer.php:3170
|
2128 |
msgid "Requested character set (%s) is not present - changing to %s."
|
2129 |
msgstr "Заявеният набор от знаци (%s) не е наличен - промяна в %s."
|
2130 |
|
2176 |
msgid "More information here."
|
2177 |
msgstr "Повече информация тук."
|
2178 |
|
2179 |
+
#: src/admin.php:709, src/admin.php:3092
|
2180 |
msgid "Migrate / Clone"
|
2181 |
msgstr "Мигриране / Клонинг"
|
2182 |
|
2183 |
+
#: src/admin.php:4323, src/templates/wp-admin/settings/backupnow-modal.php:60,
|
2184 |
#: src/templates/wp-admin/settings/existing-backups-table.php:76,
|
2185 |
#: src/templates/wp-admin/settings/existing-backups-table.php:79
|
2186 |
msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
|
2190 |
msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
|
2191 |
msgstr "Вие сте дали опцията %1$s. %1$s работи с добавката \"%2$s\". Вземи добавката \"%2$s\": %3$s"
|
2192 |
|
2193 |
+
#: src/restorer.php:279
|
2194 |
msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
|
2195 |
msgstr "Вашата WordPress инсталация има стари директории от своето състояние, преди да сте възстановени / мигрирали (техническа информация: те са наставени с -old)."
|
2196 |
|
2202 |
msgid "Run this command to see the log file for this restoration (needed for any support requests)."
|
2203 |
msgstr "Изпълнете тази команда, за да видите регистрационния файл за това възстановяване (необходим за всички заявки за поддръжка)."
|
2204 |
|
2205 |
+
#: src/class-updraftplus.php:216
|
2206 |
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."
|
2207 |
msgstr "Вече е инсталирана версия на UpdraftPlus. WordPress ще ви позволи да инсталирате новата си версия само след първото де-инсталиране на съществуващата. Това е безопасно - всички настройки и резервни копия ще бъдат запазени. Така че, отидете на страницата \"Плъгини\", де-активира и де-инсталиране UpdraftPlus, и след това опитайте отново."
|
2208 |
|
2209 |
+
#: src/admin.php:5986, src/admin.php:6030
|
2210 |
msgid "(current version)"
|
2211 |
msgstr "(актуална версия)"
|
2212 |
|
2213 |
+
#: src/admin.php:4101
|
2214 |
msgid "press here"
|
2215 |
msgstr "натиснете тук"
|
2216 |
|
2232 |
msgid "And then add an incremental backup"
|
2233 |
msgstr "След това добавете и постъпково резервно копие"
|
2234 |
|
2235 |
+
#: src/addons/incremental.php:339, src/admin.php:4074, src/updraftplus.php:100
|
2236 |
msgid "Every hour"
|
2237 |
msgstr "Всеки час"
|
2238 |
|
2244 |
msgid "Available temporary clone tokens:"
|
2245 |
msgstr "Налични временни клонирани маркери:"
|
2246 |
|
2247 |
+
#: src/admin.php:3225, src/includes/class-commands.php:1027,
|
2248 |
#: src/includes/class-commands.php:1081, src/includes/class-commands.php:1083,
|
2249 |
#: src/methods/backup-module.php:663,
|
2250 |
#: src/templates/wp-admin/settings/temporary-clone.php:83,
|
2264 |
msgid "I consent to %s"
|
2265 |
msgstr "Съгласен съм с %s"
|
2266 |
|
2267 |
+
#: src/admin.php:3338,
|
2268 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:56
|
2269 |
msgid "One Time Password (check your OTP app to get this password)"
|
2270 |
msgstr "Еднократна парола (проверете вашия OTP приложение, за да получите тази парола)"
|
2313 |
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."
|
2314 |
msgstr "Възникна грешка при обработката на заявката ви. Сървърът може да е зает или да сте загубили връзката си с интернет по време на заявката. Моля, опитайте отново по-късно."
|
2315 |
|
2316 |
+
#: src/admin.php:5913
|
2317 |
msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
|
2318 |
msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
|
2319 |
msgstr[0] "Файлът %s има \"байт за ред\" (BOM) в началото си."
|
2417 |
msgid "Upload backup"
|
2418 |
msgstr "Качване на резервно копие"
|
2419 |
|
2420 |
+
#: src/admin.php:4580
|
2421 |
msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
|
2422 |
msgstr "След като натиснете този бутон, можете да изберете къде да качите архива от списък с вашите текущо запазени местоположения за отдалечено съхранение"
|
2423 |
|
2429 |
msgid "Local backup upload has started; please check the log file to see the upload progress"
|
2430 |
msgstr "Стартира локалното качване на резервно копие; моля, проверете регистрационния файл, за да видите напредъка на качването"
|
2431 |
|
2432 |
+
#: src/admin.php:902, src/admin.php:4580
|
2433 |
msgid "Upload"
|
2434 |
msgstr "Качи"
|
2435 |
|
2445 |
msgid "Use this option to only send database backups when sending to email, and skip other components."
|
2446 |
msgstr "Използвайте тази опция, за да изпращате архиви на бази данни само при изпращане на имейл и да пропуснете други компоненти."
|
2447 |
|
2448 |
+
#: src/addons/migrator.php:279
|
2449 |
msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
|
2450 |
msgstr "За допълнителни резервни копия ще можете да избирате кои стъпки да възстановите на по-късен етап."
|
2451 |
|
2491 |
msgid "The given value for the '%s' option is not valid"
|
2492 |
msgstr "Дадената стойност за опцията '%s' е невалидна"
|
2493 |
|
2494 |
+
#: src/addons/migrator.php:1412
|
2495 |
msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
|
2496 |
msgstr "За да разрешите на друг сайт да изпрати архив на този сайт, създайте ключ по-долу. Когато се покаже клавиша, след това натиснете бутона \"Мигриране\" на другия (изпращане) сайт и копирайте и поставете ключа там (в раздела \"Изпрати резервно копие на друг сайт\")."
|
2497 |
|
2498 |
+
#: src/addons/migrator.php:1398
|
2499 |
msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
|
2500 |
msgstr "Така че, за да получите ключа за отдалечения сайт, отворете прозореца \"Мигриране на сайта\" на този сайт и отидете на този раздел."
|
2501 |
|
2502 |
+
#: src/addons/migrator.php:1398
|
2503 |
msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
|
2504 |
msgstr "Ключовете за сайт са създадени в раздела \"получи резервно копие от отдалечен сайт\"."
|
2505 |
|
2527 |
msgid "No keys to allow remote sites to send backup data here have yet been created."
|
2528 |
msgstr "Няма ключове, които да позволяват на отдалечени сайтове да изпращат резервни данни тук все още са създадени."
|
2529 |
|
2530 |
+
#: src/restorer.php:758
|
2531 |
msgid "Failed to read from the working directory."
|
2532 |
msgstr "Неуспешно четене от работната директория."
|
2533 |
|
2534 |
+
#: src/restorer.php:757
|
2535 |
msgid "Failed to find a manifest file in the backup."
|
2536 |
msgstr "Неуспешно откриване на манифест в архива."
|
2537 |
|
2538 |
+
#: src/restorer.php:756
|
2539 |
msgid "Failed to read the manifest file from backup."
|
2540 |
msgstr "Неуспешно четене на манифеста от архива."
|
2541 |
|
2547 |
msgid "Ensure you are logged into the correct account before continuing."
|
2548 |
msgstr "Уверете се, че сте влезли в правилния акаунт, преди да продължите."
|
2549 |
|
2550 |
+
#: src/admin.php:5558
|
2551 |
msgid "Remote storage method and instance id are required for authentication."
|
2552 |
msgstr "Метод за отдалечено съхранение и идентификатор на екземпляр са необходими за удостоверяване."
|
2553 |
|
2554 |
+
#: src/admin.php:5554
|
2555 |
msgid "authentication error"
|
2556 |
msgstr "грешка при удостоверяване"
|
2557 |
|
2559 |
msgid "(Nothing has been logged yet)"
|
2560 |
msgstr "(Нищо не е записано още)"
|
2561 |
|
2562 |
+
#: src/addons/migrator.php:444
|
2563 |
msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
|
2564 |
msgstr "ще искате да използвате по-долу търсене и да замени място на сайта в базата данни (мигриране) за търсене/замяна на адреса на сайта."
|
2565 |
|
2566 |
+
#: src/addons/migrator.php:433
|
2567 |
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 below search and replace so that the non-https links are automatically replaced."
|
2568 |
msgstr "Докато вашият уеб хостинг позволява http (т.е. не-SSL достъп) или ще препраща заявки към https (което е почти винаги случаят), това не е проблем. Ако това все още не е настроено, трябва да го настроите или да използвате търсене и замяна по-долу, така че връзките, които не са https, да се заменят автоматично."
|
2569 |
|
2570 |
+
#: src/addons/migrator.php:422
|
2571 |
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 below search and replace to search/replace the site address so that the site can be visited without https."
|
2572 |
msgstr "Това възстановяване ще работи, ако все още имате SSL сертификат (т.е. може да използва https) за достъп до сайта. В противен случай ще искате да използвате търсене по-долу и да замените за търсене/замяна на адреса на сайта, така че сайтът да може да бъде посетен без https."
|
2573 |
|
2615 |
msgid "Invalid bucket name"
|
2616 |
msgstr "Невалидно име на кофа"
|
2617 |
|
2618 |
+
#: src/restorer.php:2428
|
2619 |
msgid "Requested table collation (%1$s) is not present - changing to %2$s."
|
2620 |
msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
|
2621 |
msgstr[0] "Исканото сравнение на таблицата (%1$s) не е налично - промяна на %2$s."
|
2622 |
msgstr[1] "Заявените сравнения на таблици (%1$s) не са налични - промяна на %2$s."
|
2623 |
|
2624 |
+
#: src/class-updraftplus.php:5232
|
2625 |
msgid "Your chosen replacement collation"
|
2626 |
msgstr "Вашият избор на замяна"
|
2627 |
|
2628 |
+
#: src/class-updraftplus.php:5209
|
2629 |
msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
|
2630 |
msgstr "Вместо това можете да изберете друго подходящо сравнение и да продължите с възстановяването (на свой собствен риск)."
|
2631 |
|
2632 |
+
#: src/class-updraftplus.php:5209
|
2633 |
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."
|
2634 |
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."
|
2635 |
msgstr[0] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа сравнението (%s), използвано в базата данни, която се опитвате да импортирате."
|
2636 |
msgstr[1] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа множество сравнения (%s), използвани в базата данни, която се опитвате да импортирате."
|
2637 |
|
2638 |
+
#: src/addons/migrator.php:568
|
2639 |
msgid "Database restoration options:"
|
2640 |
msgstr "Опции за възстановяване на база данни:"
|
2641 |
|
2642 |
+
#: src/addons/migrator.php:411
|
2643 |
msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
|
2644 |
msgstr "Това изглежда като миграция (архивирането е от сайт с различен адрес/URL адрес, %s)."
|
2645 |
|
2687 |
msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
|
2688 |
msgstr "На вашия UpdraftCentral табло трябва да натиснете бутона \"Добавяне на сайт\" след това поставете клавиша в полето за въвеждане."
|
2689 |
|
2690 |
+
#: src/addons/migrator.php:978
|
2691 |
msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
|
2692 |
msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
|
2693 |
msgstr[0] "Вашият .htaccess има стара препратка към сайт на номер %s. Трябва да го премахнете ръчно."
|
2694 |
msgstr[1] "Вашият .htaccess има стари препратки към сайтове за номерата на редове %s. Трябва да ги премахнете ръчно."
|
2695 |
|
2696 |
+
#: src/restorer.php:2369
|
2697 |
msgid "Requested table character set (%s) is not present - changing to %s."
|
2698 |
msgstr "Исканият набор от знаци на таблицата (%s) липсва - промяна в %s."
|
2699 |
|
2700 |
+
#: src/class-updraftplus.php:5185
|
2701 |
msgid "Your chosen character set to use instead:"
|
2702 |
msgstr "Вместо това избраният от вас набор от знаци:"
|
2703 |
|
2704 |
+
#: src/class-updraftplus.php:5175
|
2705 |
msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
|
2706 |
msgstr "Вместо това можете да изберете друг подходящ набор от символи и да продължите с възстановяването на свой собствен риск."
|
2707 |
|
2708 |
+
#: src/class-updraftplus.php:5175
|
2709 |
msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
|
2710 |
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."
|
2711 |
msgstr[0] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа набора от знаци (%s), който се опитвате да импортирате."
|
2798 |
msgid "Account ID"
|
2799 |
msgstr "Акаунт ID"
|
2800 |
|
2801 |
+
#: src/class-updraftplus.php:5000
|
2802 |
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."
|
2803 |
msgstr "Докато вашият уеб хостинг позволява http (т.е. не-SSL достъп) или ще препраща заявки към https (което е почти винаги случаят), това не е проблем. Ако това все още не е настроено, трябва да го настроите или да използвате %s, така че връзките, които не са https, да бъдат автоматично заменяни."
|
2804 |
|
2805 |
+
#: src/class-updraftplus.php:4998, src/class-updraftplus.php:5000
|
2806 |
msgid "the migrator add-on"
|
2807 |
msgstr "добавката за мигратора"
|
2808 |
|
2809 |
+
#: src/class-updraftplus.php:4998
|
2810 |
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."
|
2811 |
msgstr "Това възстановяване ще работи, ако все още имате SSL сертификат (т.е. може да използва https) за достъп до сайта. В противен случай ще искате да използвате %s за търсене/заместване на адреса на сайта, така че сайтът да може да бъде посетен без https."
|
2812 |
|
2813 |
+
#: src/class-updraftplus.php:4996
|
2814 |
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."
|
2815 |
msgstr "Този архивен набор е на този сайт, но по време на архивирането, който сте използвали %s, докато сайтът сега използва %s."
|
2816 |
|
2817 |
+
#: src/class-updraftplus.php:4991
|
2818 |
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."
|
2819 |
msgstr "Адресът на уеб сайта в архивния набор (%s) е малко по-различен от този на сайта (%s). Това не се очаква да бъде проблем за възстановяване на сайта, стига посещенията на предишния адрес все още да стигнат до сайта."
|
2820 |
|
2830 |
msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
|
2831 |
msgstr "Грешка: Избраният файл е повреден. Моля, изберете валиден файл за експортиране на UpdraftPlus."
|
2832 |
|
2833 |
+
#: src/backup.php:514, src/backup.php:2761, src/class-updraftplus.php:2449,
|
2834 |
+
#: src/class-updraftplus.php:2516, src/includes/class-search-replace.php:291,
|
2835 |
+
#: src/includes/class-storage-methods-interface.php:381, src/restorer.php:611
|
2836 |
msgid "A PHP fatal error (%s) has occurred: %s"
|
2837 |
msgstr "Възникнала е PHP фатална грешка (%s): %s"
|
2838 |
|
2839 |
+
#: src/backup.php:508, src/backup.php:2752, src/class-updraftplus.php:2440,
|
2840 |
+
#: src/class-updraftplus.php:2509, src/includes/class-search-replace.php:284,
|
2841 |
+
#: src/includes/class-storage-methods-interface.php:372, src/restorer.php:599
|
2842 |
msgid "A PHP exception (%s) has occurred: %s"
|
2843 |
msgstr "Възникна изключение от PHP (%s): %s"
|
2844 |
|
2888 |
msgid "Rackspace Storage Region"
|
2889 |
msgstr "Област за съхранение на rackspace"
|
2890 |
|
2891 |
+
#: src/admin.php:5760
|
2892 |
msgid "Value"
|
2893 |
msgstr "Стойност"
|
2894 |
|
2904 |
msgid "Cloud Files"
|
2905 |
msgstr "Файлове в облака"
|
2906 |
|
2907 |
+
#: src/admin.php:5506
|
2908 |
msgid "Your settings failed to save. Please refresh the settings page and try again"
|
2909 |
msgstr "Настройките ви не можаха да бъдат записани. Обновете страницата с настройки и опитайте отново"
|
2910 |
|
2911 |
+
#: src/admin.php:5465
|
2912 |
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."
|
2913 |
msgstr "UpdraftPlus изглежда, че са били актуализирани до версия (%s), която е различна от версията, изпълнявана при зареждането на тази страница с настройки. Заредете отново страницата с настройки, преди да опитате да запишете настройките."
|
2914 |
|
2925 |
msgid "Extra database"
|
2926 |
msgstr "Допълнителна база данни"
|
2927 |
|
2928 |
+
#: src/admin.php:4462
|
2929 |
msgid "Press here to download or browse"
|
2930 |
msgstr "Натиснете тук, за да изтеглите или прегледате"
|
2931 |
|
2965 |
msgid "Browse contents"
|
2966 |
msgstr "Преглед на съдържанието"
|
2967 |
|
2968 |
+
#: src/restorer.php:2894
|
2969 |
msgid "Skipped tables:"
|
2970 |
msgstr "Пропуснати таблици:"
|
2971 |
|
2972 |
+
#: src/class-updraftplus.php:5315
|
2973 |
msgid "This database backup has the following WordPress tables excluded: %s"
|
2974 |
msgstr "Това архивиране на база данни е изключено от следните таблици на WordPress: %s"
|
2975 |
|
3407 |
msgid "Export / import settings"
|
3408 |
msgstr "Експортиране / импортиране на настройки"
|
3409 |
|
3410 |
+
#: src/restorer.php:2430
|
3411 |
msgid "Processing table (%s)"
|
3412 |
msgstr "Таблица за обработка (%s)"
|
3413 |
|
3414 |
+
#: src/restorer.php:2861
|
3415 |
msgid "Backup of: %s"
|
3416 |
msgstr "Архивиране на: %s"
|
3417 |
|
3431 |
msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
|
3432 |
msgstr "UpdraftCentral позволява контрол на вашите WordPress сайтове (включително управление на резервни копия и актуализации) от централно табло."
|
3433 |
|
3434 |
+
#: src/backup.php:2007
|
3435 |
msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
|
3436 |
msgstr "Ако не, ще трябва или да премахнете данни от тази таблица, или да се свържете с вашата хостинг компания, за да поискате повече ресурси."
|
3437 |
|
3524 |
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"
|
3525 |
msgstr "Това прави тайм аизпитва се много по-вероятно. Препоръчително е да изключите safe_mode или да възстановявате само един обект в даден момент"
|
3526 |
|
3527 |
+
#: src/admin.php:2889
|
3528 |
msgid "To fix this problem go here."
|
3529 |
msgstr "За да решите този проблем, отидете тук."
|
3530 |
|
3531 |
+
#: src/admin.php:2889
|
3532 |
msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
|
3533 |
msgstr "OptimizePress 2.0 кодира съдържанието му, така че търсенето/замяната не работи."
|
3534 |
|
3608 |
msgid "Public key was sent to:"
|
3609 |
msgstr "Публичен ключ е изпратен на:"
|
3610 |
|
3611 |
+
#: src/backup.php:2975
|
3612 |
msgid "Failed to open directory (check the file permissions and ownership): %s"
|
3613 |
msgstr "Грешка при отваряне на директорията (проверете разрешенията за файлове и собствеността): %s"
|
3614 |
|
3615 |
+
#: src/backup.php:2953
|
3616 |
msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
|
3617 |
msgstr "%s: нечетим файл - не можа да бъде архивиран (проверете разрешенията за файла и собствеността)"
|
3618 |
|
3619 |
+
#: src/addons/migrator.php:1424
|
3620 |
msgid "Create key"
|
3621 |
msgstr "Създаване на ключ"
|
3622 |
|
3623 |
+
#: src/addons/migrator.php:1421, src/central/translations-updraftplus.php:54
|
3624 |
msgid "slower, strongest"
|
3625 |
msgstr "по-бавна, най-силна"
|
3626 |
|
3627 |
+
#: src/addons/migrator.php:1420, src/central/translations-updraftplus.php:53
|
3628 |
msgid "recommended"
|
3629 |
msgstr "препоръчва"
|
3630 |
|
3631 |
+
#: src/addons/migrator.php:1420, src/central/translations-updraftplus.php:50
|
3632 |
msgid "%s bytes"
|
3633 |
msgstr "%s байта"
|
3634 |
|
3635 |
+
#: src/addons/migrator.php:1419, src/central/translations-updraftplus.php:52
|
3636 |
msgid "faster (possibility for slow PHP installs)"
|
3637 |
msgstr "по-бързо (възможност за бавни PHP инсталации)"
|
3638 |
|
3640 |
msgid "easy to break, fastest"
|
3641 |
msgstr "лесно да се счупи, най-бързо"
|
3642 |
|
3643 |
+
#: src/addons/migrator.php:1419, src/addons/migrator.php:1421,
|
3644 |
#: src/central/translations-updraftplus.php:49
|
3645 |
msgid "%s bits"
|
3646 |
msgstr "%s бита"
|
3647 |
|
3648 |
+
#: src/addons/migrator.php:1417, src/central/translations-updraftplus.php:48
|
3649 |
msgid "Encryption key size:"
|
3650 |
msgstr "Размер на шифроващия ключ:"
|
3651 |
|
3652 |
+
#: src/addons/migrator.php:1415
|
3653 |
msgid "Enter your chosen name"
|
3654 |
msgstr "Въведете избраното от Вас име"
|
3655 |
|
3656 |
+
#: src/addons/migrator.php:1414
|
3657 |
msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
|
3658 |
msgstr "Създайте ключ: дайте на този ключ уникално име (напр. посочете сайта, за който е), след което натиснете \"Създаване на ключ\":"
|
3659 |
|
3678 |
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."
|
3679 |
msgstr "Този архив е %s МБ по размер - опитът за изпращане на този имейл е вероятно да се провали (няколко имейл сървъра позволяват прикачени файлове с такъв размер). Ако е така, трябва да превключите към използване на различен метод за отдалечено съхранение."
|
3680 |
|
3681 |
+
#: src/class-updraftplus.php:1984
|
3682 |
msgid "Size: %s MB"
|
3683 |
msgstr "Размер: %s МБ"
|
3684 |
|
3686 |
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)."
|
3687 |
msgstr "UpdraftPlus ще раздели архивите, когато те надхвърлят този размер на файла. Стойността по подразбиране е %s мегабайта. Внимавайте да оставите малко марж, ако вашият уеб сървър има ограничение на твърдия размер (напр. ограничението от 2 GB / 2048 MB на някои 32-битови сървъри / файлови системи)."
|
3688 |
|
3689 |
+
#: src/class-updraftplus.php:5018, src/restorer.php:1710
|
3690 |
msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
|
3691 |
msgstr "Трябва да разрешите на %s да направи всички доста пермалин връзки (напр. %s) да работят"
|
3692 |
|
3708 |
msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
|
3709 |
msgstr "Не е намерена връзка с трезора за този сайт (преместил ли се е?); свържете отново."
|
3710 |
|
3711 |
+
#: src/class-updraftplus.php:617, src/class-updraftplus.php:694
|
3712 |
msgid "The given file was not found, or could not be read."
|
3713 |
msgstr "Файлът не е намерен или не може да бъде прочетен."
|
3714 |
|
3792 |
msgid "UpdraftCentral Connection"
|
3793 |
msgstr "Up-централна връзка"
|
3794 |
|
3795 |
+
#: src/class-updraftplus.php:3519, src/class-updraftplus.php:3611
|
3796 |
msgid "The backup was aborted by the user"
|
3797 |
msgstr "Архивирането е прекратено от потребителя"
|
3798 |
|
3799 |
+
#: src/admin.php:5501
|
3800 |
msgid "Your settings have been saved."
|
3801 |
msgstr "Настройките ви са записани."
|
3802 |
|
3803 |
+
#: src/admin.php:4371
|
3804 |
msgid "Total backup size:"
|
3805 |
msgstr "Общ размер на архива:"
|
3806 |
|
3807 |
+
#: src/admin.php:3760
|
3808 |
msgid "stop"
|
3809 |
msgstr "спиране"
|
3810 |
|
3811 |
+
#: src/admin.php:964, src/admin.php:3547
|
3812 |
msgid "The backup has finished running"
|
3813 |
msgstr "Архивирането завърши изпълнението"
|
3814 |
|
3862 |
msgid "Asia Pacific (Seoul)"
|
3863 |
msgstr "Азия Пасифик (Сеул)"
|
3864 |
|
3865 |
+
#: src/restorer.php:2884
|
3866 |
msgid "Uploads URL:"
|
3867 |
msgstr "URL адрес за качвания:"
|
3868 |
|
3870 |
msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
|
3871 |
msgstr "Необходимият php модул %s не е инсталиран - попитайте вашата уеб хостинг компания, за да го разреши."
|
3872 |
|
3873 |
+
#: src/class-updraftplus.php:5073, src/restorer.php:2902
|
3874 |
msgid "To import an ordinary WordPress site into a multisite installation requires %s."
|
3875 |
msgstr "За да импортирате обикновен WordPress сайт в многостранна инсталация, изисква %s."
|
3876 |
|
3877 |
+
#: src/class-updraftplus.php:5069
|
3878 |
msgid "Please read this link for important information on this process."
|
3879 |
msgstr "Моля, прочетете този линк за важна информация за този процес."
|
3880 |
|
3881 |
+
#: src/class-updraftplus.php:5069
|
3882 |
msgid "It will be imported as a new site."
|
3883 |
msgstr "Той ще бъде импортиран като нов сайт."
|
3884 |
|
3885 |
+
#: src/admin.php:3178, src/templates/wp-admin/notices/autobackup-notice.php:16,
|
3886 |
#: src/templates/wp-admin/notices/autobackup-notice.php:18,
|
3887 |
#: src/templates/wp-admin/notices/horizontal-notice.php:48,
|
3888 |
#: src/templates/wp-admin/notices/horizontal-notice.php:50
|
3909 |
msgid "Which site to restore"
|
3910 |
msgstr "Кой сайт да се възстанови"
|
3911 |
|
3912 |
+
#: src/addons/migrator.php:636, src/addons/migrator.php:637
|
3913 |
msgid "Error when creating new site at your chosen address:"
|
3914 |
msgstr "Грешка при създаване на нов сайт на избрания от вас адрес:"
|
3915 |
|
3916 |
+
#: src/addons/migrator.php:580
|
3917 |
msgid "Required information for restoring this backup was not given (%s)"
|
3918 |
msgstr "Необходимата информация за възстановяване на този архив не е дадена (%s)"
|
3919 |
|
3920 |
+
#: src/addons/migrator.php:532
|
3921 |
msgid "Attribute imported content to user"
|
3922 |
msgstr "Атрибут импортирано съдържание на потребител"
|
3923 |
|
3924 |
+
#: src/addons/migrator.php:522, src/addons/migrator.php:524
|
3925 |
msgid "You must use lower-case letters or numbers for the site path, only."
|
3926 |
msgstr "Трябва да използвате малки букви или цифри само за пътя на сайта."
|
3927 |
|
3928 |
+
#: src/addons/migrator.php:510
|
3929 |
msgid "This feature is not compatible with %s"
|
3930 |
msgstr "Тази функция не е съвместима с %s"
|
3931 |
|
3932 |
+
#: src/addons/migrator.php:508, src/addons/migrator.php:510
|
3933 |
msgid "Importing a single site into a multisite install"
|
3934 |
msgstr "Импортиране на един сайт в многостранна инсталация"
|
3935 |
|
3936 |
+
#: src/addons/migrator.php:500
|
3937 |
msgid "other content from wp-content"
|
3938 |
msgstr "друго съдържание от wp-съдържание"
|
3939 |
|
3940 |
+
#: src/addons/migrator.php:497
|
3941 |
msgid "WordPress core"
|
3942 |
msgstr "Ядро на WordPress"
|
3943 |
|
3944 |
+
#: src/addons/migrator.php:497, src/addons/migrator.php:500,
|
3945 |
+
#: src/addons/migrator.php:503
|
3946 |
msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
|
3947 |
msgstr "Избрали сте %s да бъде включен във възстановяването - това не може/ не трябва да се прави, когато импортирате един сайт в мрежа."
|
3948 |
|
3954 |
msgid "Your saved settings also affect what is backed up - e.g. files excluded."
|
3955 |
msgstr "Запазените настройки също влияят върху това, което се архивира – например изключени файлове."
|
3956 |
|
3957 |
+
#: src/restorer.php:421
|
3958 |
msgid "Skipping: this archive was already restored."
|
3959 |
msgstr "Прескачане: този архив вече е възстановен."
|
3960 |
|
3982 |
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)."
|
3983 |
msgstr "Този бутон ще изтрие всички настройки на UpdraftPlus и информация за напредъка на архивите в момента (но не и някои от вашите съществуващи архиви от вашето място за съхранение в облака)."
|
3984 |
|
3985 |
+
#: src/admin.php:5371
|
3986 |
msgid "Send this backup to remote storage"
|
3987 |
msgstr "Изпращане на този архив в отдалечено хранилище"
|
3988 |
|
3989 |
+
#: src/admin.php:5364
|
3990 |
msgid "Check out UpdraftPlus Vault."
|
3991 |
msgstr "Проверете UpdraftPlus Трезор."
|
3992 |
|
3993 |
+
#: src/admin.php:5364
|
3994 |
msgid "Not got any remote storage?"
|
3995 |
msgstr "Нямате ли някакво отдалечено хранилище?"
|
3996 |
|
3997 |
+
#: src/admin.php:5364
|
3998 |
msgid "settings"
|
3999 |
msgstr "настройки"
|
4000 |
|
4001 |
+
#: src/admin.php:5364
|
4002 |
msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
|
4003 |
msgstr "Архивирането не може да бъде изпратено до отдалечено хранилище - нито едно не е записано в %s"
|
4004 |
|
4010 |
msgid "Include your database in the backup"
|
4011 |
msgstr "Включване на вашата база данни в архива"
|
4012 |
|
4013 |
+
#: src/admin.php:3174, src/admin.php:3176
|
4014 |
msgid "Continue restoration"
|
4015 |
msgstr "Продължаване на възстановяването"
|
4016 |
|
4017 |
+
#: src/admin.php:3166
|
4018 |
msgid "You have an unfinished restoration operation, begun %s ago."
|
4019 |
msgstr "Имате незавършена операция по възстановяване, започнала е преди %s."
|
4020 |
|
4021 |
+
#: src/admin.php:3165
|
4022 |
msgid "Unfinished restoration"
|
4023 |
msgstr "Недовършено възстановяване"
|
4024 |
|
4025 |
+
#: src/admin.php:3162
|
4026 |
msgid "%s minutes, %s seconds"
|
4027 |
msgstr "%s минути, %s секунди"
|
4028 |
|
4029 |
+
#: src/admin.php:2992
|
4030 |
msgid "Backup Contents And Schedule"
|
4031 |
msgstr "Съдържание и график за архивиране"
|
4032 |
|
4033 |
+
#: src/admin.php:3095
|
4034 |
msgid "Premium / Extensions"
|
4035 |
msgstr "Премиум / Разширения"
|
4036 |
|
4037 |
+
#: src/admin.php:4860, src/admin.php:4869
|
4038 |
msgid "Sufficient information about the in-progress restoration operation could not be found."
|
4039 |
msgstr "Не можа да бъде намерена достатъчно информация за операцията за възстановяване в процес."
|
4040 |
|
4051 |
msgid "Extensions"
|
4052 |
msgstr "Добавки"
|
4053 |
|
4054 |
+
#: src/admin.php:725, src/admin.php:3094
|
4055 |
msgid "Advanced Tools"
|
4056 |
msgstr "Разширени инструменти"
|
4057 |
|
4171 |
msgid "Could not access container"
|
4172 |
msgstr "Не можа да бъде достъпен контейнер"
|
4173 |
|
4174 |
+
#: src/class-updraftplus.php:3538
|
4175 |
msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
|
4176 |
msgstr "За да завършите мигрирането/клонинга, сега трябва да влезете в отдалечения сайт и да възстановите архивния набор."
|
4177 |
|
4178 |
+
#: src/backup.php:1812
|
4179 |
msgid "the options table was not found"
|
4180 |
msgstr "таблицата с опции не е намерена"
|
4181 |
|
4182 |
+
#: src/backup.php:1810
|
4183 |
msgid "no options or sitemeta table was found"
|
4184 |
msgstr "не са намерени опции или таблица sitemeta"
|
4185 |
|
4186 |
+
#: src/backup.php:1810, src/backup.php:1812
|
4187 |
msgid "The database backup appears to have failed"
|
4188 |
msgstr "Изглежда архивът на базата данни е неуспешен"
|
4189 |
|
4190 |
+
#: src/backup.php:1572
|
4191 |
msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
|
4192 |
msgstr "Архивната директория не е записваема (или дисково пространство е пълно) - архивиране на базата данни се очаква да скоро неуспешно."
|
4193 |
|
4339 |
msgid "Add an additional retention rule..."
|
4340 |
msgstr "Добавяне на допълнително правило за задържане..."
|
4341 |
|
4342 |
+
#: src/restorer.php:3825
|
4343 |
msgid "This database needs to be deployed on MySQL version %s or later."
|
4344 |
msgstr "Тази база данни трябва да бъде разположена в MySQL версия %s или по-нова версия."
|
4345 |
|
4346 |
+
#: src/restorer.php:3825
|
4347 |
msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
|
4348 |
msgstr "Този проблем се дължи на опит за възстановяване на база данни на много стара MySQL версия, която е несъвместима с базата данни източник."
|
4349 |
|
4351 |
msgid "You do not currently have any UpdraftPlus Vault quota"
|
4352 |
msgstr "В момента нямате updraftPlus квота за трезора"
|
4353 |
|
4354 |
+
#: src/class-updraftplus.php:5150
|
4355 |
msgid "You must upgrade MySQL to be able to use this database."
|
4356 |
msgstr "Трябва да надстроите MySQL, за да можете да използвате тази база данни."
|
4357 |
|
4358 |
+
#: src/class-updraftplus.php:5150
|
4359 |
msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
|
4360 |
msgstr "Архивирането на базата данни използва функциите на MySQL, които не са налични в старата версия на MySQL (%s), на която се изпълнява този сайт."
|
4361 |
|
4362 |
+
#: src/admin.php:2874
|
4363 |
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."
|
4364 |
msgstr "Директорията UpdraftPlus в wp-съдържание / плъгини има място в него; WordPress не харесва това. Трябва да преименувате директорията на WP-съдържание / плъгини / updraftplus, за да решите този проблем."
|
4365 |
|
4425 |
msgstr "Получете повече квота"
|
4426 |
|
4427 |
#: src/methods/updraftvault.php:529, src/methods/updraftvault.php:545,
|
4428 |
+
#: src/methods/updraftvault.php:589
|
4429 |
msgid "Current use:"
|
4430 |
msgstr "Текуща употреба:"
|
4431 |
|
4522 |
msgid "Delete failed:"
|
4523 |
msgstr "Изтриването е неуспешно:"
|
4524 |
|
4525 |
+
#: src/backup.php:4169
|
4526 |
msgid "The zip engine returned the message: %s."
|
4527 |
msgstr "Машината за цип върна съобщението: %s."
|
4528 |
|
4554 |
msgid "Existing keys"
|
4555 |
msgstr "Съществуващи ключове"
|
4556 |
|
4557 |
+
#: src/addons/migrator.php:1429
|
4558 |
msgid "Your new key:"
|
4559 |
msgstr "Вашият нов ключ:"
|
4560 |
|
4587 |
msgid "Backup data will be sent to:"
|
4588 |
msgstr "Резервните данни ще бъдат изпратени на:"
|
4589 |
|
4590 |
+
#: src/addons/migrator.php:234
|
4591 |
msgid "Restore an existing backup set onto this site"
|
4592 |
msgstr "Възстановяване на съществуващ архивен набор в този сайт"
|
4593 |
|
4594 |
+
#: src/addons/migrator.php:240
|
4595 |
msgid "This site has no backups to restore from yet."
|
4596 |
msgstr "Този сайт няма архиви, които да се възстановяват от все още."
|
4597 |
|
4603 |
msgid "This storage method does not allow downloading"
|
4604 |
msgstr "Този метод за съхранение не позволява изтегляне"
|
4605 |
|
4606 |
+
#: src/admin.php:4513
|
4607 |
msgid "(backup set imported from remote location)"
|
4608 |
msgstr "(архивен комплект, импортиран от отдалечено местоположение)"
|
4609 |
|
4646 |
msgid "Creating..."
|
4647 |
msgstr "Създаване..."
|
4648 |
|
4649 |
+
#: src/addons/migrator.php:1410
|
4650 |
msgid "Receive a backup from a remote site"
|
4651 |
msgstr "Получаване на резервно копие от отдалечен сайт"
|
4652 |
|
4653 |
+
#: src/addons/migrator.php:1402
|
4654 |
msgid "Paste key here"
|
4655 |
msgstr "Постави ключа тук"
|
4656 |
|
4657 |
+
#: src/addons/migrator.php:1398
|
4658 |
msgid "How do I get a site's key?"
|
4659 |
msgstr "Как да получа ключ на сайт?"
|
4660 |
|
4661 |
+
#: src/addons/migrator.php:1398
|
4662 |
msgid "To add a site as a destination for sending to, enter that site's key below."
|
4663 |
msgstr "За да добавите сайт като дестинация за изпращане, въведете ключа на този сайт по-долу."
|
4664 |
|
4665 |
+
#: src/addons/migrator.php:1390
|
4666 |
msgid "Send a backup to another site"
|
4667 |
msgstr "Изпращане на резервно копие на друг сайт"
|
4668 |
|
4729 |
msgid "FTP server"
|
4730 |
msgstr "FTP сървър"
|
4731 |
|
4732 |
+
#: src/addons/migrator.php:198
|
4733 |
msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
|
4734 |
msgstr "UpdraftPlus Migrator променя операцията по възстановяване по подходящ начин, за да се поберат резервните данни към новия сайт."
|
4735 |
|
4736 |
+
#: src/addons/migrator.php:198
|
4737 |
msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
|
4738 |
msgstr "\"Миграция\" в крайна сметка е същото като възстановяване - но с помощта на архиви, които импортирате от друг сайт."
|
4739 |
|
4741 |
msgid "Resetting..."
|
4742 |
msgstr "Възстановяване..."
|
4743 |
|
4744 |
+
#: src/addons/migrator.php:1402, src/admin.php:920
|
4745 |
msgid "Add site"
|
4746 |
msgstr "Добавяне на сайт"
|
4747 |
|
4753 |
msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
|
4754 |
msgstr "Не е предоставена претенция - може би вече сте използвали тази покупка някъде другаде, или платения ви период за изтегляне от updraftplus.com е изтекъл?"
|
4755 |
|
4756 |
+
#: src/restorer.php:3827
|
4757 |
msgid "To use this backup, your database server needs to support the %s character set."
|
4758 |
msgstr "За да използвате това архивиране, вашият сървър за база данни трябва да поддържа набора от знаци %s."
|
4759 |
|
4769 |
msgid "Go here to re-enter your password."
|
4770 |
msgstr "Отидете тук, за да въведете отново паролата си."
|
4771 |
|
4772 |
+
#: src/addons/migrator.php:275
|
4773 |
msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
|
4774 |
msgstr "След като натиснете този бутон, ще ви бъде дадена възможност да изберете кои компоненти"
|
4775 |
|
5028 |
msgid "(at same time as files backup)"
|
5029 |
msgstr "(в същото време като архивиране на файлове)"
|
5030 |
|
5031 |
+
#: src/admin.php:4049
|
5032 |
msgid "No backup has been completed"
|
5033 |
msgstr "Архивирането не е завършено"
|
5034 |
|
5102 |
msgid "Check this box to have a basic report sent to"
|
5103 |
msgstr "Поставете отметка в това квадратче, за да изпратите базова справка"
|
5104 |
|
5105 |
+
#: src/admin.php:4068, src/admin.php:4073
|
5106 |
msgctxt "i.e. Non-automatic"
|
5107 |
msgid "Manual"
|
5108 |
msgstr "Ръчна"
|
5109 |
|
5110 |
+
#: src/restorer.php:3780
|
5111 |
msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
|
5112 |
msgid "An error (%s) occurred:"
|
5113 |
msgstr "Възникна грешка (%s):"
|
5120 |
msgid "Any other file/directory on your server that you wish to backup"
|
5121 |
msgstr "Всеки друг файл/директория на вашия сървър, който искате да архивирате"
|
5122 |
|
5123 |
+
#: src/admin.php:2891
|
5124 |
msgid "For even more features and personal support, check out "
|
5125 |
msgstr "За още повече функции и лична поддръжка проверете "
|
5126 |
|
5214 |
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."
|
5215 |
msgstr "Имайте предвид, че след като сте заявили добавките си, можете да премахнете паролата си (но не и имейл адреса) от настройките по-долу, без това да засяга достъпа на този сайт до актуализации."
|
5216 |
|
5217 |
+
#: src/admin.php:3547, src/admin.php:4610
|
5218 |
msgid "View Log"
|
5219 |
msgstr "Преглед на регистрационен файл"
|
5220 |
|
5233 |
msgid "and retain this many scheduled backups"
|
5234 |
msgstr "и да запазите този много планирани архиви"
|
5235 |
|
5236 |
+
#: src/admin.php:4019
|
5237 |
msgid "incremental backup; base backup: %s"
|
5238 |
msgstr "постъпково резервно копие; базово архивиране: %s"
|
5239 |
|
5251 |
msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
|
5252 |
msgstr "Бутонът \"Архивиране сега\" е деактивиран, тъй като директорията ви за архивиране не е записваема (отидете в раздела \"Настройки\" и намерете съответната опция)."
|
5253 |
|
5254 |
+
#: src/class-updraftplus.php:5058
|
5255 |
msgid "Backup label:"
|
5256 |
msgstr "Етикет за архивиране:"
|
5257 |
|
5259 |
msgid "Error: unexpected file read fail"
|
5260 |
msgstr "Грешка: неочакван файл четене е неуспешно"
|
5261 |
|
5262 |
+
#: src/backup.php:4175
|
5263 |
msgid "check your log for more details."
|
5264 |
msgstr "проверете регистрационния си файл за повече подробности."
|
5265 |
|
5266 |
+
#: src/backup.php:4173
|
5267 |
msgid "your web hosting account appears to be full; please see: %s"
|
5268 |
msgstr "вашият уеб хостинг акаунт изглежда пълен; моля, вижте: %s"
|
5269 |
|
5270 |
+
#: src/backup.php:4171
|
5271 |
msgid "A zip error occurred"
|
5272 |
msgstr "Грешка в zip файла"
|
5273 |
|
5291 |
msgid "You need to supply both an email address and a password"
|
5292 |
msgstr "Трябва да предоставите както имейл адрес, така и парола"
|
5293 |
|
5294 |
+
#: src/class-updraftplus.php:5077
|
5295 |
msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
|
5296 |
msgstr "Ако искате да възстановите многостранен архив, първо трябва да настроите wordPress инсталацията като многостранна."
|
5297 |
|
5298 |
+
#: src/class-updraftplus.php:5077
|
5299 |
msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
|
5300 |
msgstr "Вашият архив е на wordPress многостранна инсталация; но този сайт не е. Само първият сайт на мрежата ще бъде достъпен."
|
5301 |
|
5302 |
+
#: src/addons/migrator.php:1291
|
5303 |
msgid "already done"
|
5304 |
msgstr "вече е направено"
|
5305 |
|
5306 |
+
#: src/addons/migrator.php:1251
|
5307 |
msgid "skipped (not in list)"
|
5308 |
msgstr "прескочи (не в списъка)"
|
5309 |
|
5310 |
+
#: src/addons/migrator.php:1251, src/addons/migrator.php:1291,
|
5311 |
#: src/includes/class-search-replace.php:91
|
5312 |
msgid "Search and replacing table:"
|
5313 |
msgstr "Търсене и заместване на таблица:"
|
5314 |
|
5315 |
+
#: src/addons/migrator.php:392
|
5316 |
msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
|
5317 |
msgstr "Въведете списък, разделен със запетая; в противен случай оставете празно за всички таблици."
|
5318 |
|
5319 |
+
#: src/addons/migrator.php:392
|
5320 |
msgid "These tables only"
|
5321 |
msgstr "Тези таблици само"
|
5322 |
|
5323 |
+
#: src/addons/migrator.php:391
|
5324 |
msgid "Rows per batch"
|
5325 |
msgstr "Редове на партида"
|
5326 |
|
5332 |
msgid "You need to connect to receive future updates to UpdraftPlus."
|
5333 |
msgstr "Трябва да се свържете, за да получавате бъдещи актуализации на UpdraftPlus."
|
5334 |
|
5335 |
+
#: src/class-updraftplus.php:5048, src/class-updraftplus.php:5050
|
5336 |
msgid "Any support requests to do with %s should be raised with your web hosting company."
|
5337 |
msgstr "Всички заявки за поддръжка, свързани с %s, трябва да бъдат повдигнати с вашата уеб хостинг компания."
|
5338 |
|
5339 |
+
#: src/class-updraftplus.php:5048
|
5340 |
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."
|
5341 |
msgstr "Трябва да продължите само ако не можете да актуализирате текущия сървър и сте уверени (или сте готови да рискувате), че вашите плъгини/теми/и т.н. са съвместими с по-старата версия на %s."
|
5342 |
|
5343 |
+
#: src/class-updraftplus.php:5048
|
5344 |
msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
|
5345 |
msgstr "Това е значително по-нова от сървъра, на който се възстановява (версия %s)."
|
5346 |
|
5347 |
+
#: src/class-updraftplus.php:5048, src/class-updraftplus.php:5050
|
5348 |
msgid "The site in this backup was running on a webserver with version %s of %s. "
|
5349 |
msgstr "Сайтът в този архив се изпълняваше на уеб сървър с версия %s на %s. "
|
5350 |
|
5381 |
msgid "Start backup"
|
5382 |
msgstr "Стартиране на архивиране"
|
5383 |
|
5384 |
+
#: src/class-updraftplus.php:5018, src/restorer.php:1710
|
5385 |
msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
|
5386 |
msgstr "Използвате уеб сървър %s, но изглежда не е зареден модулът %s."
|
5387 |
|
5388 |
+
#: src/admin.php:3917
|
5389 |
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."
|
5390 |
msgstr "Ще трябва да се консултирате с вашия доставчик на уеб хостинг, за да разберете как да зададете разрешения за WordPress плъгин, за да пишете в директорията."
|
5391 |
|
5417 |
msgid "Memory limit"
|
5418 |
msgstr "Ограничение на паметта"
|
5419 |
|
5420 |
+
#: src/includes/class-filesystem-functions.php:302, src/restorer.php:2627
|
5421 |
msgid "restoration"
|
5422 |
msgstr "възстановяване"
|
5423 |
|
5424 |
+
#: src/class-updraftplus.php:3606
|
5425 |
msgid "Incremental"
|
5426 |
msgstr "Допълнителни"
|
5427 |
|
5428 |
+
#: src/class-updraftplus.php:3606
|
5429 |
msgid "Full backup"
|
5430 |
msgstr "Пълно архивиране"
|
5431 |
|
5443 |
|
5444 |
#: src/addons/incremental.php:340, src/addons/incremental.php:341,
|
5445 |
#: src/addons/incremental.php:342, src/addons/incremental.php:343,
|
5446 |
+
#: src/admin.php:4075, src/admin.php:4076, src/admin.php:4077,
|
5447 |
+
#: src/admin.php:4078, src/updraftplus.php:101, src/updraftplus.php:102,
|
5448 |
#: src/updraftplus.php:103
|
5449 |
msgid "Every %s hours"
|
5450 |
msgstr "На всеки %s часа"
|
5451 |
|
5452 |
+
#: src/addons/migrator.php:937, src/addons/migrator.php:939,
|
5453 |
+
#: src/restorer.php:4146, src/restorer.php:4148
|
5454 |
msgid "search and replace"
|
5455 |
msgstr "търсене и замяна"
|
5456 |
|
5457 |
+
#: src/addons/migrator.php:394
|
5458 |
msgid "Go"
|
5459 |
msgstr "Напред"
|
5460 |
|
5461 |
+
#: src/addons/migrator.php:383
|
5462 |
msgid "A search/replace cannot be undone - are you sure you want to do this?"
|
5463 |
msgstr "Търсенето/замяната не може да бъде отменено – сигурни ли сте, че искате да направите това?"
|
5464 |
|
5465 |
+
#: src/addons/migrator.php:382
|
5466 |
msgid "This can easily destroy your site; so, use it with care!"
|
5467 |
msgstr "Това може лесно да унищожи сайта ви; така че, да го използвате внимателно!"
|
5468 |
|
5469 |
+
#: src/addons/migrator.php:337, src/addons/migrator.php:390
|
5470 |
msgid "Replace with"
|
5471 |
msgstr "Замяна с"
|
5472 |
|
5473 |
+
#: src/addons/migrator.php:336, src/addons/migrator.php:389
|
5474 |
msgid "Search for"
|
5475 |
msgstr "Търсене за"
|
5476 |
|
5477 |
+
#: src/addons/migrator.php:335, src/addons/migrator.php:381,
|
5478 |
#: src/templates/wp-admin/advanced/search-replace.php:7,
|
5479 |
#: src/templates/wp-admin/advanced/tools-menu.php:18
|
5480 |
msgid "Search / replace database"
|
5481 |
msgstr "Търсене / заместване на база данни"
|
5482 |
|
5483 |
+
#: src/addons/migrator.php:341
|
5484 |
msgid "search term"
|
5485 |
msgstr "търсене термин"
|
5486 |
|
5487 |
+
#: src/restorer.php:3839
|
5488 |
msgid "Too many database errors have occurred - aborting"
|
5489 |
msgstr "Възникнаха твърде много грешки в базата данни - прекратяване на"
|
5490 |
|
5491 |
+
#: src/class-updraftplus.php:3674
|
5492 |
msgid "read more at %s"
|
5493 |
msgstr "повече на %s"
|
5494 |
|
5495 |
+
#: src/class-updraftplus.php:3674
|
5496 |
msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
|
5497 |
msgstr "Имейл доклади, създадени от UpdraftPlus (безплатно издание) ви носят най-новите новини за UpdraftPlus.com"
|
5498 |
|
5508 |
msgid "Database Options"
|
5509 |
msgstr "Опции за база данни"
|
5510 |
|
|
|
|
|
|
|
|
|
5511 |
#: src/templates/wp-admin/advanced/site-info.php:88
|
5512 |
msgid "%s (%s used)"
|
5513 |
msgstr "%s (използван е%s)"
|
5516 |
msgid "Free disk space in account:"
|
5517 |
msgstr "Свободно място на диска в акаунта:"
|
5518 |
|
5519 |
+
#: src/admin.php:5472, src/templates/wp-admin/settings/take-backup.php:52
|
5520 |
msgid "This button is disabled because your backup directory is not writable (see the settings)."
|
5521 |
msgstr "Този бутон е забранен, защото директорията за архивиране не е записваема (вижте настройките)."
|
5522 |
|
5600 |
msgid "user"
|
5601 |
msgstr "потребител"
|
5602 |
|
5603 |
+
#: src/class-updraftplus.php:1981
|
5604 |
msgid "External database (%s)"
|
5605 |
msgstr "Външна база данни (%s)"
|
5606 |
|
5618 |
msgid "However, subsequent access attempts failed:"
|
5619 |
msgstr "Обаче неуспешни последващи опити за достъп:"
|
5620 |
|
5621 |
+
#: src/addons/wp-cli.php:434, src/admin.php:4396
|
5622 |
msgid "External database"
|
5623 |
msgstr "Външна база данни"
|
5624 |
|
5650 |
msgid "use UpdraftPlus Premium"
|
5651 |
msgstr "използване на UpdraftPlus Premium"
|
5652 |
|
5653 |
+
#: src/class-updraftplus.php:4888
|
5654 |
msgid "Decryption failed. The database file is encrypted."
|
5655 |
msgstr "Неуспешна дешифриране. Файлът на базата данни е шифрован."
|
5656 |
|
5658 |
msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
|
5659 |
msgstr "Само базата данни на WordPress може да бъде възстановена; трябва да се справите с външната база данни ръчно."
|
5660 |
|
5661 |
+
#: src/restorer.php:3033, src/restorer.php:3737, src/restorer.php:3810,
|
5662 |
+
#: src/restorer.php:3827
|
5663 |
msgid "An error occurred on the first %s command - aborting run"
|
5664 |
msgstr "Възникна грешка в първата команда %s - прекъсване на изпълнение"
|
5665 |
|
5666 |
+
#: src/addons/moredatabase.php:136, src/backup.php:1509
|
5667 |
msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
|
5668 |
msgstr "Връзката е неуспешна: проверете данните за достъпа, дали сървърът на базата данни е нагоре и че мрежовата връзка не е защитна стена."
|
5669 |
|
5670 |
+
#: src/backup.php:1509
|
5671 |
msgid "database connection attempt failed."
|
5672 |
msgstr "неуспешен опит за свързване с база данни."
|
5673 |
|
5674 |
+
#: src/addons/migrator.php:1182
|
5675 |
msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
|
5676 |
msgstr "Предупреждение: домашният URL адрес на базата данни (%s) е различен от очаквания от нас (%s)"
|
5677 |
|
5705 |
msgid "Tenant"
|
5706 |
msgstr "Наемател"
|
5707 |
|
5708 |
+
#: src/admin.php:1044, src/admin.php:5913, src/methods/openstack2.php:144,
|
5709 |
+
#: src/restorer.php:289, src/restorer.php:291,
|
5710 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
|
5711 |
#: src/templates/wp-admin/settings/tab-backups.php:27,
|
5712 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:14
|
5839 |
msgid "Fetch"
|
5840 |
msgstr "Донесе"
|
5841 |
|
5842 |
+
#: src/addons/migrator.php:508,
|
5843 |
#: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
|
5844 |
#: src/templates/wp-admin/settings/form-contents.php:183,
|
5845 |
#: src/templates/wp-admin/settings/tab-backups.php:74
|
5846 |
msgid "This feature requires %s version %s or later"
|
5847 |
msgstr "Този компонент изисква версия %s %s или по-нова версия"
|
5848 |
|
5849 |
+
#: src/restorer.php:755
|
5850 |
msgid "Failed to unpack the archive"
|
5851 |
msgstr "Неуспешно разопаковане на архива"
|
5852 |
|
5853 |
+
#: src/class-updraftplus.php:1573, src/methods/cloudfiles.php:428
|
5854 |
msgid "Error - failed to download the file"
|
5855 |
msgstr "Грешка - не успя да изтеглите файла"
|
5856 |
|
5875 |
msgid "password/key"
|
5876 |
msgstr "парола/ключ"
|
5877 |
|
5878 |
+
#: src/addons/migrator.php:1415, src/addons/sftp.php:504, src/admin.php:926,
|
5879 |
+
#: src/admin.php:5760, src/templates/wp-admin/settings/temporary-clone.php:63
|
5880 |
msgid "Key"
|
5881 |
msgstr "Ключ"
|
5882 |
|
5892 |
msgid "SCP/SFTP password/key"
|
5893 |
msgstr "SCP/SFTP парола/ключ"
|
5894 |
|
5895 |
+
#: src/addons/wp-cli.php:445, src/admin.php:4440
|
5896 |
msgid "Files backup (created by %s)"
|
5897 |
msgstr "Архивиране на файлове (създадено от %s)"
|
5898 |
|
5899 |
+
#: src/addons/wp-cli.php:445, src/admin.php:4440
|
5900 |
msgid "Files and database WordPress backup (created by %s)"
|
5901 |
msgstr "Архивни файлове и база данни на WordPress (създадени от %s)"
|
5902 |
|
5903 |
+
#: src/addons/importer.php:276, src/admin.php:4434,
|
5904 |
#: src/includes/class-backup-history.php:505
|
5905 |
msgid "Backup created by: %s."
|
5906 |
msgstr "Архивирането е създадено от: %s."
|
5907 |
|
5908 |
+
#: src/addons/wp-cli.php:428, src/admin.php:4394
|
5909 |
msgid "Database (created by %s)"
|
5910 |
msgstr "База данни (създадена от %s)"
|
5911 |
|
5912 |
+
#: src/addons/wp-cli.php:426, src/admin.php:4388, src/admin.php:4436
|
5913 |
msgid "unknown source"
|
5914 |
msgstr "неизвестен източник"
|
5915 |
|
5949 |
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))."
|
5950 |
msgstr "Този файл не изглежда да бъде Backup архив UpdraftPlus (такива файлове са .zip или .gz файлове, които имат име като: backup_(time)__(име на сайта) _(код)__(тип).( (напр. цип|gz))."
|
5951 |
|
5952 |
+
#: src/admin.php:4437, src/includes/class-wpadmin-commands.php:159,
|
5953 |
+
#: src/restorer.php:2596
|
5954 |
msgid "Backup created by unknown source (%s) - cannot be restored."
|
5955 |
msgstr "Архивирането, създадено от неизвестен източник (%s) - не може да бъде възстановено."
|
5956 |
|
5957 |
+
#: src/restorer.php:1522, src/restorer.php:1570
|
5958 |
msgid "The WordPress content folder (wp-content) was not found in this zip file."
|
5959 |
msgstr "Папката със съдържание на WordPress (wp-съдържание) не е намерена в този zip файл."
|
5960 |
|
5961 |
+
#: src/restorer.php:1416
|
5962 |
msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
|
5963 |
msgstr "Тази версия на UpdraftPlus не знае как да се справи с този тип чуждестранен архив"
|
5964 |
|
6010 |
msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
|
6011 |
msgstr "Проверете това, за да получите повече информация и имейли за процеса на архивиране - полезно, ако нещо се обърка."
|
6012 |
|
6013 |
+
#: src/addons/morefiles.php:357, src/admin.php:4195
|
6014 |
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."
|
6015 |
msgstr "Ако въведете няколко файла / директории, разделете ги със запетаи. За обекти на най-горното ниво можете да използвате * в началото или края на записа като заместващ символ."
|
6016 |
|
6017 |
#: src/includes/class-filesystem-functions.php:302, src/methods/ftp.php:344,
|
6018 |
+
#: src/restorer.php:2627
|
6019 |
msgid "Your hosting company must enable these functions before %s can work."
|
6020 |
msgstr "Вашата хостинг компания трябва да разреши тези функции, преди %s да може да работи."
|
6021 |
|
6035 |
msgid "regular non-encrypted FTP"
|
6036 |
msgstr "редовен нешифрован FTP"
|
6037 |
|
6038 |
+
#: src/restorer.php:2868
|
6039 |
msgid "Backup created by:"
|
6040 |
msgstr "Архивиране, създадено от:"
|
6041 |
|
6106 |
msgid "Constants"
|
6107 |
msgstr "Константи"
|
6108 |
|
6109 |
+
#: src/backup.php:1883
|
6110 |
msgid "Failed to open database file for reading:"
|
6111 |
msgstr "Грешка при отваряне на файла на базата данни за четене:"
|
6112 |
|
6113 |
+
#: src/backup.php:1561
|
6114 |
msgid "No database tables found"
|
6115 |
msgstr "Не са намерени таблици от база данни"
|
6116 |
|
6117 |
+
#: src/backup.php:1559
|
6118 |
msgid "please wait for the rescheduled attempt"
|
6119 |
msgstr "моля изчакайте пренасрочвания опит"
|
6120 |
|
6131 |
msgid "Errors occurred:"
|
6132 |
msgstr "Възникнаха грешки:"
|
6133 |
|
6134 |
+
#: src/addons/wp-cli.php:752, src/admin.php:4991
|
6135 |
msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
|
6136 |
msgstr "Следвайте тази връзка, за да изтеглите регистрационния файл за това възстановяване (необходим за всички заявки за поддръжка)."
|
6137 |
|
6151 |
msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
|
6152 |
msgstr "Настройката на PHP на този уеб сървър позволява само %s секунди за PHP да се изпълни и не позволява това ограничение да се повиши. Ако имате много данни за импортиране и ако операцията по възстановяване изтекла, тогава ще трябва да попитате вашата уеб хостинг компания за начини да повишите това ограничение (или да опитате възстановяването на части)."
|
6153 |
|
6154 |
+
#: src/restorer.php:1408
|
6155 |
msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
|
6156 |
msgstr "Съществуващи нераздвижени папки от предишна възстановяване съществуват (моля, използвайте бутона \"Изтрий старите директории\", за да ги изтриете, преди да опитате отново): %s"
|
6157 |
|
6158 |
+
#: src/admin.php:1300, src/class-updraftplus.php:965
|
6159 |
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)"
|
6160 |
msgstr "Времето, позволено за WordPress плъгини, които да се изпълняват, е много ниско (%s секунди) - трябва да го увеличите, за да се избегнат грешки в архивирането поради времето за изчакване (консултирайте се с уеб хостинг компанията за повече помощ - това е настройката на max_execution_time PHP; препоръчителната стойност е %s секунди или повече)"
|
6161 |
|
6162 |
+
#: src/addons/migrator.php:308
|
6163 |
msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
|
6164 |
msgstr "Забранено е разширението: %s: активирайте го отново ръчно, когато сте готови."
|
6165 |
|
6172 |
msgid "Messages:"
|
6173 |
msgstr "Съобщения:"
|
6174 |
|
6175 |
+
#: src/restorer.php:3614
|
6176 |
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"
|
6177 |
msgstr "Беше намерен SQL ред, който е по-голям от максималния размер на пакета и не може да бъде разделен; този ред няма да бъде обработен, но ще бъде премахнат: %s"
|
6178 |
|
6179 |
+
#: src/restorer.php:1151
|
6180 |
msgid "The directory does not exist"
|
6181 |
msgstr "Директорията не съществува"
|
6182 |
|
6346 |
msgid "The new user's RackSpace console password is (this will not be shown again):"
|
6347 |
msgstr "Паролата на новата конзола RackSpace на потребителя е (това няма да се показва отново):"
|
6348 |
|
6349 |
+
#: src/admin.php:872, src/restorer.php:285
|
6350 |
msgid "Error data:"
|
6351 |
msgstr "Данни за грешка:"
|
6352 |
|
6353 |
+
#: src/admin.php:5084
|
6354 |
msgid "Backup does not exist in the backup history"
|
6355 |
msgstr "Архивирането не съществува в хронологията на архивирането"
|
6356 |
|
6357 |
+
#: src/admin.php:3479
|
6358 |
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."
|
6359 |
msgstr "Вашата WordPress инсталация има стари директории от своето състояние, преди да сте възстановени / мигрирали (техническа информация: те са наставени с -old). Трябва да натиснете този бутон, за да ги изтриете веднага след като сте проверили, че възстановяването работи."
|
6360 |
|
6361 |
+
#: src/restorer.php:3002
|
6362 |
msgid "Split line to avoid exceeding maximum packet size"
|
6363 |
msgstr "Разделяне на линия, за да се избегне превишаване на максималния размер на пакета"
|
6364 |
|
6365 |
+
#: src/restorer.php:2791
|
6366 |
msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
|
6367 |
msgstr "Вашата база данни потребител няма разрешение да пуснете таблици. Ще се опитаме да възстановим, като просто изпразним масите; това трябва да работи толкова дълго, колкото се възстановява от версия на WordPress със същата структура на базата данни (%s)"
|
6368 |
|
6369 |
+
#: src/restorer.php:752
|
6370 |
msgid "Could not move the files into place. Check your file permissions."
|
6371 |
msgstr "Файловете не могат да бъдат премествани на място. Проверете разрешенията за файловете си."
|
6372 |
|
6373 |
+
#: src/restorer.php:751
|
6374 |
msgid "Could not move new files into place. Check your wp-content/upgrade folder."
|
6375 |
msgstr "Не може да се преместят нови файлове на място. Проверете папката си wp-content/upgrade."
|
6376 |
|
6377 |
+
#: src/restorer.php:749
|
6378 |
msgid "Could not move old files out of the way."
|
6379 |
msgstr "Не може да се преместят старите файлове по пътя."
|
6380 |
|
6381 |
+
#: src/restorer.php:745
|
6382 |
msgid "Moving old data out of the way..."
|
6383 |
msgstr "Да се махна от пътя..."
|
6384 |
|
6390 |
msgid "Enter addresses here to have a report sent to them when a backup job finishes."
|
6391 |
msgstr "Въведете адреси тук, за да им изпратите отчет, когато заданието за архивиране завърши."
|
6392 |
|
6393 |
+
#: src/class-updraftplus.php:1989, src/class-updraftplus.php:1994
|
6394 |
msgid "%s checksum: %s"
|
6395 |
msgstr "%s контролна сума: %s"
|
6396 |
|
6397 |
+
#: src/class-updraftplus.php:1921, src/class-updraftplus.php:1923
|
6398 |
msgid "files: %s"
|
6399 |
msgstr "файлове: %s"
|
6400 |
|
6406 |
msgid "Debugging information"
|
6407 |
msgstr "Информация за отстраняване на грешки"
|
6408 |
|
6409 |
+
#: src/addons/reporting.php:238, src/admin.php:4354
|
6410 |
msgid "Uploaded to:"
|
6411 |
msgstr "Kачени в:"
|
6412 |
|
6451 |
msgid "%s authentication"
|
6452 |
msgstr "Удостоверяване на %s"
|
6453 |
|
6454 |
+
#: src/addons/onedrive.php:891, src/class-updraftplus.php:565,
|
6455 |
#: src/methods/dropbox.php:267, src/methods/dropbox.php:757,
|
6456 |
#: src/methods/dropbox.php:814, src/methods/dropbox.php:828,
|
6457 |
#: src/methods/dropbox.php:848, src/methods/dropbox.php:1005
|
6474 |
msgid "Your site's admin email address (%s) will be used."
|
6475 |
msgstr "Ще бъде използван администраторския имейл адрес на вашия сайт (%s)."
|
6476 |
|
6477 |
+
#: src/admin.php:913, src/admin.php:3215, src/methods/updraftvault.php:356,
|
6478 |
#: src/methods/updraftvault.php:411,
|
6479 |
#: src/templates/wp-admin/settings/temporary-clone.php:82
|
6480 |
msgid "Connect"
|
6481 |
msgstr "Свързване"
|
6482 |
|
6483 |
+
#: src/class-updraftplus.php:4977
|
6484 |
msgid "(version: %s)"
|
6485 |
msgstr "(версия: %s)"
|
6486 |
|
6488 |
msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
|
6489 |
msgstr "Имайте предвид, че пощенски сървъри са склонни да имат ограничения за размера; обикновено около %s Мб; резервни копия, по-големи от всички ограничения, най-вероятно няма да пристигнат."
|
6490 |
|
6491 |
+
#: src/addons/reporting.php:197, src/class-updraftplus.php:3709
|
6492 |
msgid "Latest status:"
|
6493 |
msgstr "Последно състояние:"
|
6494 |
|
6495 |
+
#: src/class-updraftplus.php:3708
|
6496 |
msgid "Backup contains:"
|
6497 |
msgstr "Архивирането съдържа:"
|
6498 |
|
6499 |
+
#: src/class-updraftplus.php:3665
|
6500 |
msgid "Backed up: %s"
|
6501 |
msgstr "Резервно копие: %s"
|
6502 |
|
6503 |
+
#: src/addons/reporting.php:280, src/class-updraftplus.php:3659,
|
6504 |
+
#: src/class-updraftplus.php:3834
|
6505 |
msgid "The log file has been attached to this email."
|
6506 |
msgstr "Регистрационният файл е прикачен към този имейл."
|
6507 |
|
6508 |
+
#: src/class-updraftplus.php:3623
|
6509 |
msgid "Unknown/unexpected error - please raise a support request"
|
6510 |
msgstr "Неизвестна/неочаквана грешка - моля, повдигнете заявка за поддръжка"
|
6511 |
|
6512 |
+
#: src/class-updraftplus.php:3618
|
6513 |
msgid "Database only (files were not part of this particular schedule)"
|
6514 |
msgstr "Само за база данни (файловете не са част от този конкретен график)"
|
6515 |
|
6516 |
+
#: src/class-updraftplus.php:3618
|
6517 |
msgid "Database (files backup has not completed)"
|
6518 |
msgstr "База данни (архивирането на файлове не е завършено)"
|
6519 |
|
6520 |
+
#: src/class-updraftplus.php:3615
|
6521 |
msgid "Files only (database was not part of this particular schedule)"
|
6522 |
msgstr "Само файлове (базата данни не е част от този конкретен график)"
|
6523 |
|
6524 |
+
#: src/class-updraftplus.php:3615
|
6525 |
msgid "Files (database backup has not completed)"
|
6526 |
msgstr "Файлове (архивирането на базата данни не е завършено)"
|
6527 |
|
6528 |
+
#: src/admin.php:384, src/class-updraftplus.php:3613
|
6529 |
msgid "Files and database"
|
6530 |
msgstr "Файлове и база данни"
|
6531 |
|
6613 |
msgid "Reporting"
|
6614 |
msgstr "Репортаж"
|
6615 |
|
6616 |
+
#: src/admin.php:5757
|
6617 |
msgid "Options (raw)"
|
6618 |
msgstr "Опции (сурови)"
|
6619 |
|
6621 |
msgid "Send a report only when there are warnings/errors"
|
6622 |
msgstr "Изпращане на отчет само когато има предупреждения/грешки"
|
6623 |
|
6624 |
+
#: src/restorer.php:2879
|
6625 |
msgid "Content URL:"
|
6626 |
msgstr "URL адрес на съдържание:"
|
6627 |
|
6628 |
+
#: src/restorer.php:749
|
6629 |
msgid "You should check the file ownerships and permissions in your WordPress installation"
|
6630 |
msgstr "Трябва да проверите собствеността и разрешенията на файловете в wordPress инсталацията"
|
6631 |
|
6632 |
+
#: src/backup.php:4162, src/class-updraftplus.php:978
|
6633 |
msgid "Your free space in your hosting account is very low - only %s Mb remain"
|
6634 |
msgstr "Свободното пространство в хостинг акаунта ви е много ниско - остават само %s Mb"
|
6635 |
|
6636 |
+
#: src/class-updraftplus.php:962
|
6637 |
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)"
|
6638 |
msgstr "Размерът на паметта(RAM) разрешен за PHP е много малък (%s Mb) - трябва да я увеличите, за да избегнете грешки поради недостатъчна памет (консултирайте се с уеб хостинг компанията за повече помощ)"
|
6639 |
|
6709 |
msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
|
6710 |
msgstr "В момента сте <strong class=\"success\">свързани към</strong> UpdraftPlus.Com акаунт."
|
6711 |
|
6712 |
+
#: src/admin.php:3213
|
6713 |
msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
|
6714 |
msgstr "Интересувате се от знаейки за вашата UpdraftPlus.Com парола за сигурност? Прочетете за това тук."
|
6715 |
|
6716 |
+
#: src/admin.php:3289
|
6717 |
msgid "Forgotten your details?"
|
6718 |
msgstr "Забравили сте си детайлите?"
|
6719 |
|
6720 |
+
#: src/admin.php:3202
|
6721 |
msgid "Not yet got an account (it's free)? Go get one!"
|
6722 |
msgstr "Все още не е сметка (това е безплатно)? Иди да вземеш един!"
|
6723 |
|
6724 |
+
#: src/admin.php:3268
|
6725 |
msgid "Connect with your UpdraftPlus.Com account"
|
6726 |
msgstr "Свързване с вашия акаунт за UpdraftPlus.Com"
|
6727 |
|
6784 |
msgid "If you exclude both the database and the files, then you have excluded everything!"
|
6785 |
msgstr "Ако изключите и двете база данни и файловете, тогава сте изключили всичко!"
|
6786 |
|
6787 |
+
#: src/restorer.php:2873
|
6788 |
msgid "Site home:"
|
6789 |
msgstr "Начална страница:"
|
6790 |
|
6809 |
msgid "You can send a backup to more than one destination with Premium."
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: src/admin.php:3760
|
6813 |
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."
|
6814 |
msgstr "Забележка: лентата за напредъка по-долу се основава на етапи, а не на време. Не спирайте архивирането просто защото изглежда, че е останала на същото място за известно време - това е нормално."
|
6815 |
|
6816 |
+
#: src/admin.php:3624
|
6817 |
msgid "(%s%%, file %s of %s)"
|
6818 |
msgstr "(%s%, файл %s на %s)"
|
6819 |
|
6854 |
msgid "%s settings test result:"
|
6855 |
msgstr "%s резултат от теста:"
|
6856 |
|
6857 |
+
#: src/admin.php:4486, src/admin.php:4488
|
6858 |
msgid "(Not finished)"
|
6859 |
msgstr "(Не е завършено)"
|
6860 |
|
6861 |
+
#: src/admin.php:4488
|
6862 |
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."
|
6863 |
msgstr "Ако виждате повече архиви, отколкото очаквате, вероятно това е така, защото изтриването на стари комплекти за архивиране не се случва, докато не завърши ново резервно копие."
|
6864 |
|
6870 |
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)."
|
6871 |
msgstr "Това е мястото, където UpdraftPlus ще напише zip файловете, които създава първоначално. Тази директория трябва да може да се записва от вашия уеб сървър. Тя е относителна спрямо директорията на съдържанието (която по подразбиране се нарича wp-съдържание)."
|
6872 |
|
6873 |
+
#: src/admin.php:3725
|
6874 |
msgid "Job ID: %s"
|
6875 |
msgstr "ИД на задание: %s"
|
6876 |
|
6877 |
+
#: src/admin.php:3705
|
6878 |
msgid "last activity: %ss ago"
|
6879 |
msgstr "последна дейност: преди %ss"
|
6880 |
|
6881 |
+
#: src/admin.php:3704
|
6882 |
msgid "next resumption: %d (after %ss)"
|
6883 |
msgstr "следващото възобновяване: %d (след %ss)"
|
6884 |
|
6885 |
+
#: src/admin.php:3687, src/central/translations-updraftplus.php:28,
|
6886 |
#: src/methods/updraftvault.php:459, src/methods/updraftvault.php:506,
|
6887 |
#: src/methods/updraftvault.php:594
|
6888 |
msgid "Unknown"
|
6889 |
msgstr "Неизвестно"
|
6890 |
|
6891 |
+
#: src/admin.php:3638
|
6892 |
msgid "Backup finished"
|
6893 |
msgstr "Архивирането завърши"
|
6894 |
|
6895 |
+
#: src/admin.php:3633
|
6896 |
msgid "Waiting until scheduled time to retry because of errors"
|
6897 |
msgstr "Изчакване до планирано време за повторен опит поради грешки"
|
6898 |
|
6899 |
+
#: src/admin.php:3629
|
6900 |
msgid "Pruning old backup sets"
|
6901 |
msgstr "Резитба стари комплекти за архивиране"
|
6902 |
|
6903 |
+
#: src/admin.php:3616
|
6904 |
msgid "Uploading files to remote storage"
|
6905 |
msgstr "Качване на файлове в отдалечено хранилище"
|
6906 |
|
6907 |
+
#: src/admin.php:3685
|
6908 |
msgid "Encrypted database"
|
6909 |
msgstr "Шифрована база данни"
|
6910 |
|
6911 |
+
#: src/admin.php:3677
|
6912 |
msgid "Encrypting database"
|
6913 |
msgstr "Шифроване на база данни"
|
6914 |
|
6915 |
+
#: src/admin.php:3651
|
6916 |
msgid "Created database backup"
|
6917 |
msgstr "Създаване на резервно копие на база данни"
|
6918 |
|
6919 |
+
#: src/admin.php:3664
|
6920 |
msgid "table: %s"
|
6921 |
msgstr "таблица: %s"
|
6922 |
|
6923 |
+
#: src/admin.php:3662
|
6924 |
msgid "Creating database backup"
|
6925 |
msgstr "Създаване на архивни данни"
|
6926 |
|
6927 |
+
#: src/admin.php:3607
|
6928 |
msgid "Created file backup zips"
|
6929 |
msgstr "Създадени архивирани zips файлове"
|
6930 |
|
6931 |
+
#: src/admin.php:3594
|
6932 |
msgid "Creating file backup zips"
|
6933 |
msgstr "Създаване на архивирани файлове"
|
6934 |
|
6935 |
+
#: src/admin.php:3589
|
6936 |
msgid "Backup begun"
|
6937 |
msgstr "Започна архивиране"
|
6938 |
|
6940 |
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."
|
6941 |
msgstr "Планировчикът е забранен в wordPress инсталацията чрез настройката за DISABLE_WP_CRON. Не може да се стартират бекъпи (дори "Архивиране сега"), освен ако сте настроили устройство, което да се обади ръчно на диспечера, или докато не бъде активиран."
|
6942 |
|
6943 |
+
#: src/restorer.php:1392
|
6944 |
msgid "file"
|
6945 |
msgstr "файл"
|
6946 |
|
6947 |
+
#: src/addons/onedrive.php:1243, src/restorer.php:1384
|
6948 |
msgid "folder"
|
6949 |
msgstr "папка"
|
6950 |
|
6951 |
+
#: src/restorer.php:1384, src/restorer.php:1392
|
6952 |
msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
|
6953 |
msgstr "UpdraftPlus е необходимо, за да се създаде %s в директорията на съдържанието, но не успя - проверете разрешенията за файла и активирайте достъпа (%s)"
|
6954 |
|
6955 |
+
#: src/class-updraftplus.php:3553
|
6956 |
msgid "The backup has not finished; a resumption is scheduled"
|
6957 |
msgstr "Архивирането не е завършено; е планирано възобновяване на"
|
6958 |
|
6959 |
+
#: src/class-updraftplus.php:2283
|
6960 |
msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
|
6961 |
msgstr "Вашият сайт се посещава рядко и UpdraftPlus не получава ресурсите, за които се надяваше; моля, прочетете тази страница:"
|
6962 |
|
6965 |
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)."
|
6966 |
msgstr "Удостоверяването на %s не може да продължи, защото нещо друго на вашия сайт го нарушава. Опитайте да деактивирате другите си плъгини и да преминете към тема по подразбиране. (По-конкретно търсите компонента, който изпраща изхода (най-вероятно PHP предупреждения/грешки) преди началото на страницата. Изключването на всички настройки за отстраняване на грешки също може да помогне)."
|
6967 |
|
6968 |
+
#: src/admin.php:2931
|
6969 |
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)."
|
6970 |
msgstr "Лимитът на php паметта (зададен от вашата уеб хостинг компания) е много нисък. UpdraftPlus се опита да го вдигне, но не успя. Този плъгин може да се бори с ограничение на паметта от по-малко от 64 Mb - особено ако имате много големи файлове качени (въпреки че, от друга страна, много сайтове ще бъдат успешни с ограничение 32Mb - вашият опит може да варира)."
|
6971 |
|
7045 |
msgid "Support"
|
7046 |
msgstr "Поддръжка"
|
7047 |
|
7048 |
+
#: src/class-updraftplus.php:5320
|
7049 |
msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
|
7050 |
msgstr "UpdraftPlus не можа да намери префикса на таблицата при сканиране на архива на базата данни."
|
7051 |
|
7052 |
+
#: src/class-updraftplus.php:5312
|
7053 |
msgid "This database backup is missing core WordPress tables: %s"
|
7054 |
msgstr "Този архив на базата данни липсва ядрото на WordPress таблици: %s"
|
7055 |
|
7056 |
+
#: src/class-updraftplus.php:5041
|
7057 |
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."
|
7058 |
msgstr "Импортирате от по-нова версия на WordPress (%s) в по-стара (%s). Няма гаранции, че WordPress може да се справи с това."
|
7059 |
|
7060 |
+
#: src/class-updraftplus.php:5040, src/class-updraftplus.php:5047
|
7061 |
msgid "%s version: %s"
|
7062 |
msgstr "Версия %s: %s"
|
7063 |
|
7064 |
+
#: src/class-updraftplus.php:4905
|
7065 |
msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
|
7066 |
msgstr "Базата данни е твърде малка, за да бъде валидна база данни на WordPress (размер: %s Кб)."
|
7067 |
|
7069 |
msgid "Be safe with an automatic backup"
|
7070 |
msgstr "Бъдете в безопасност с автоматично архивиране"
|
7071 |
|
7072 |
+
#: src/admin.php:2871
|
7073 |
msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7074 |
msgstr "Ако все още можете да прочетете тези думи след завършване на страницата за зареждане, тогава има проблем с JavaScript или jQuery в сайта."
|
7075 |
|
7121 |
msgid "Examples of S3-compatible storage providers:"
|
7122 |
msgstr ""
|
7123 |
|
7124 |
+
#: src/admin.php:4464
|
7125 |
msgid "You appear to be missing one or more archives from this multi-archive set."
|
7126 |
msgstr "Изглежда, че липсват един или повече архиви от този много archive набор."
|
7127 |
|
7183 |
msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
|
7184 |
msgstr "Архивът за този файл не може да бъде намерен. Използваният метод за отдалечено съхранение (%s) не ни позволява да извличаме файлове. За да извършите всяко възстановяване с помощта на UpdraftPlus, ще трябва да получите копие на този файл и да го поставите в работната папка на UpdraftPlus"
|
7185 |
|
7186 |
+
#: src/restorer.php:746
|
7187 |
msgid "Moving unpacked backup into place..."
|
7188 |
msgstr "Преместване на неопаковано архивиране на място..."
|
7189 |
|
7190 |
+
#: src/backup.php:3805, src/backup.php:4115
|
7191 |
msgid "Failed to open the zip file (%s) - %s"
|
7192 |
msgstr "Не можа да се отвори zip файл (%s) - %s"
|
7193 |
|
7212 |
msgid "File is not locally present - needs retrieving from remote storage"
|
7213 |
msgstr "Файлът не е локално присъстващ - трябва да се извлича от отдалечено хранилище"
|
7214 |
|
7215 |
+
#: src/restorer.php:418
|
7216 |
msgid "Looking for %s archive: file name: %s"
|
7217 |
msgstr "Търсене на %s архив: име на файл: %s"
|
7218 |
|
7219 |
+
#: src/restorer.php:534
|
7220 |
msgid "Final checks"
|
7221 |
msgstr "Окончателни проверки"
|
7222 |
|
7228 |
msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
|
7229 |
msgstr "Пуснете шифровани файлове на бази данни (db.gz.crypt файлове) тук, за да ги качите за дешифриране"
|
7230 |
|
7231 |
+
#: src/admin.php:4181
|
7232 |
msgid "Your wp-content directory server path: %s"
|
7233 |
msgstr "Път до вашия wp-content директория на директория: %s"
|
7234 |
|
7249 |
msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
|
7250 |
msgstr "Вашата WordPress инсталация има проблем с извеждането на допълнителни интервали. Това може да повреди архиви, които изтегляте от тук."
|
7251 |
|
7252 |
+
#: src/class-updraftplus.php:4919
|
7253 |
msgid "Failed to open database file."
|
7254 |
msgstr "Грешка при отваряне на файла на базата данни."
|
7255 |
|
7256 |
+
#: src/admin.php:5722
|
7257 |
msgid "Known backups (raw)"
|
7258 |
msgstr "Известни архиви (сурови)"
|
7259 |
|
7260 |
+
#: src/restorer.php:1663
|
7261 |
msgid "Files found:"
|
7262 |
msgstr "Намерени файлове:"
|
7263 |
|
7265 |
msgid "Restoring table: %s"
|
7266 |
msgstr "Възстановяване на таблица: %s"
|
7267 |
|
7268 |
+
#: src/restorer.php:2355
|
7269 |
msgid "Requested table engine (%s) is not present - changing to MyISAM."
|
7270 |
msgstr "Исканият двигател на таблица (%s) не е наличен - преминаване към MyISAM."
|
7271 |
|
7272 |
+
#: src/restorer.php:438
|
7273 |
msgid "file is size:"
|
7274 |
msgstr "размерът на файла е:"
|
7275 |
|
7276 |
+
#: src/addons/googlecloud.php:1067, src/addons/migrator.php:497,
|
7277 |
+
#: src/addons/migrator.php:500, src/addons/migrator.php:503,
|
7278 |
+
#: src/admin.php:1305, src/admin.php:2876, src/admin.php:4966,
|
7279 |
+
#: src/backup.php:4169, src/class-updraftplus.php:5175,
|
7280 |
+
#: src/class-updraftplus.php:5175, src/updraftplus.php:158
|
7281 |
msgid "Go here for more information."
|
7282 |
msgstr "Отидете тук за повече информация."
|
7283 |
|
7284 |
+
#: src/admin.php:4965
|
7285 |
msgid "Warning: If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
|
7286 |
msgstr ""
|
7287 |
|
7289 |
msgid "Some files are still downloading or being processed - please wait."
|
7290 |
msgstr "Някои файлове все още се изтеглят или обработват - моля изчакайте."
|
7291 |
|
7292 |
+
#: src/class-updraftplus.php:5010, src/class-updraftplus.php:5031
|
7293 |
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."
|
7294 |
msgstr "Този архивен набор е от друг сайт (%s) - това не е възстановяване, а миграция. Трябва мигретор добавката, за да се получи това."
|
7295 |
|
7331 |
msgid "%s error - failed to upload file"
|
7332 |
msgstr "%s грешка - грешка при качване на файл"
|
7333 |
|
7334 |
+
#: src/class-updraftplus.php:1462
|
7335 |
msgid "%s error - failed to re-assemble chunks"
|
7336 |
msgstr "%s грешка - неуспешно събиране на блокове"
|
7337 |
|
7342 |
msgid "%s authentication failed"
|
7343 |
msgstr "%s удостоверяването е неуспешно"
|
7344 |
|
7345 |
+
#: src/addons/googlecloud.php:475, src/addons/migrator.php:592,
|
7346 |
#: src/admin.php:2605, src/admin.php:2626, src/admin.php:2634,
|
7347 |
+
#: src/class-updraftplus.php:1165, src/class-updraftplus.php:1171,
|
7348 |
+
#: src/class-updraftplus.php:4886, src/class-updraftplus.php:4888,
|
7349 |
+
#: src/class-updraftplus.php:5066, src/class-updraftplus.php:5073,
|
7350 |
+
#: src/class-updraftplus.php:5150, src/methods/googledrive.php:534,
|
7351 |
#: src/methods/s3.php:383
|
7352 |
msgid "Error: %s"
|
7353 |
msgstr "Грешка: %s"
|
7354 |
|
7355 |
+
#: src/admin.php:4099
|
7356 |
msgid "Backup directory specified exists, but is <b>not</b> writable."
|
7357 |
msgstr "Указаната директория за архивиране съществува, но <b>не</b> може да се записва."
|
7358 |
|
7359 |
+
#: src/admin.php:4097
|
7360 |
msgid "Backup directory specified does <b>not</b> exist."
|
7361 |
msgstr "Указаната директория за архивиране <b>не</b> съществува."
|
7362 |
|
7363 |
+
#: src/admin.php:3739, src/admin.php:4031
|
7364 |
msgid "Warning: %s"
|
7365 |
msgstr "Предупреждение: %s"
|
7366 |
|
7367 |
+
#: src/backup.php:3834
|
7368 |
msgid "A very large file was encountered: %s (size: %s Mb)"
|
7369 |
msgstr "Срещнат е много голям файл: %s (размер: %s Мб)"
|
7370 |
|
7371 |
+
#: src/backup.php:3036
|
7372 |
msgid "%s: unreadable file - could not be backed up"
|
7373 |
msgstr "%s: нечетим файл - не може да бъде архивиран"
|
7374 |
|
7375 |
+
#: src/backup.php:2007
|
7376 |
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."
|
7377 |
msgstr ""
|
7378 |
|
7379 |
+
#: src/backup.php:1961
|
7380 |
msgid "An error occurred whilst closing the final database file"
|
7381 |
msgstr "Възникна грешка при затваряне на крайния файл с база данни"
|
7382 |
|
7383 |
+
#: src/class-updraftplus.php:3650
|
7384 |
msgid "Warnings encountered:"
|
7385 |
msgstr "Срещнати предупреждения:"
|
7386 |
|
7387 |
+
#: src/class-updraftplus.php:3532
|
7388 |
msgid "The backup apparently succeeded (with warnings) and is now complete"
|
7389 |
msgstr "Архивирането очевидно е успешно (с предупреждения) и сега е пълно"
|
7390 |
|
7391 |
+
#: src/class-updraftplus.php:991
|
7392 |
msgid "Your free disk space is very low - only %s Mb remain"
|
7393 |
msgstr "Дисковото пространство на диска е много малко - остават само %s Мб"
|
7394 |
|
7395 |
+
#: src/addons/migrator.php:600
|
7396 |
msgid "New site:"
|
7397 |
msgstr "Нов сайт:"
|
7398 |
|
7399 |
+
#: src/addons/migrator.php:577
|
7400 |
msgid "Migrated site (from UpdraftPlus)"
|
7401 |
msgstr "Мигриране на сайта (от UpdraftPlus)"
|
7402 |
|
7403 |
+
#: src/addons/migrator.php:517
|
7404 |
msgid "Enter details for where this new site is to live within your multisite install:"
|
7405 |
msgstr "Въведете подробности за това къде този нов сайт ще живее в рамките на многостранната ви инсталация:"
|
7406 |
|
7407 |
+
#: src/addons/migrator.php:516
|
7408 |
msgid "Information needed to continue:"
|
7409 |
msgstr "Информация, необходима за продължаване на:"
|
7410 |
|
7411 |
+
#: src/addons/migrator.php:459
|
7412 |
msgid "Network activating theme:"
|
7413 |
msgstr "Мрежа за активиране на тема:"
|
7414 |
|
7415 |
+
#: src/addons/migrator.php:449
|
7416 |
msgid "Processed plugin:"
|
7417 |
msgstr "Обработен плъгин:"
|
7418 |
|
7436 |
msgid "The error reported by %s was:"
|
7437 |
msgstr "Грешката, отчетена от %s, е:"
|
7438 |
|
7439 |
+
#: src/restorer.php:2150
|
7440 |
msgid "Please supply the requested information, and then continue."
|
7441 |
msgstr "Моля, посочете исканата информация и продължете."
|
7442 |
|
7443 |
+
#: src/class-updraftplus.php:5084, src/restorer.php:2908
|
7444 |
msgid "Site information:"
|
7445 |
msgstr "Информация за сайта:"
|
7446 |
|
7447 |
+
#: src/restorer.php:2738
|
7448 |
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."
|
7449 |
msgstr "Вашият потребител на базата данни няма разрешение за създаване на таблици. Ще се опитаме да възстановим, като просто изпразним масите; това трябва да работи толкова дълго, колкото а) се възстановява от версия на WordPress със същата структура на базата данни и b) Вашата импортирана база данни не съдържа никакви таблици, които все още не са налични в сайта за импортиране."
|
7450 |
|
7451 |
+
#: src/admin.php:1044, src/admin.php:2871, src/class-updraftplus.php:5077,
|
7452 |
+
#: src/restorer.php:3614
|
7453 |
msgid "Warning:"
|
7454 |
msgstr "Внимание:"
|
7455 |
|
7456 |
+
#: src/class-updraftplus.php:5066, src/class-updraftplus.php:5069,
|
7457 |
+
#: src/restorer.php:754
|
7458 |
msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
|
7459 |
msgstr "Вие работите на многостранна wordPress - но вашето архивиране не е на многостранен сайт."
|
7460 |
|
7461 |
+
#: src/restorer.php:407
|
7462 |
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."
|
7463 |
msgstr "Пропускане на възстановяването на WordPress ядрото при импортиране на един сайт в многостранна инсталация. Ако сте имали нещо необходимо в wordPress директорията си, тогава ще трябва да го добавите отново ръчно от zip файла."
|
7464 |
|
7465 |
+
#: src/addons/azure.php:604, src/admin.php:4273,
|
7466 |
#: src/methods/updraftvault.php:343
|
7467 |
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."
|
7468 |
msgstr "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."
|
7506 |
msgid "Also delete from remote storage"
|
7507 |
msgstr "Също изтриване от дистанционно съхранение"
|
7508 |
|
7509 |
+
#: src/admin.php:3409
|
7510 |
msgid "Latest UpdraftPlus.com news:"
|
7511 |
msgstr "Последни новини от UpdraftPlus.com:"
|
7512 |
|
7523 |
msgid "Backup set not found"
|
7524 |
msgstr "Архивен набор не е намерен"
|
7525 |
|
7526 |
+
#: src/backup.php:237
|
7527 |
msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
|
7528 |
msgstr "%s - не можа да архивира този обект; съответната директория не съществува (%s)"
|
7529 |
|
7558 |
msgid "Notice"
|
7559 |
msgstr "Известие"
|
7560 |
|
7561 |
+
#: src/class-updraftplus.php:3632
|
7562 |
msgid "Errors encountered:"
|
7563 |
msgstr "Открити са грешки:"
|
7564 |
|
7590 |
msgid "rows: %d"
|
7591 |
msgstr "редове: %d"
|
7592 |
|
7593 |
+
#: src/addons/migrator.php:1342
|
7594 |
msgid "Time taken (seconds):"
|
7595 |
msgstr "Време (секунди):"
|
7596 |
|
7597 |
+
#: src/addons/migrator.php:1341, src/admin.php:870
|
7598 |
msgid "Errors:"
|
7599 |
msgstr "Грешки:"
|
7600 |
|
7601 |
+
#: src/addons/migrator.php:1340
|
7602 |
msgid "SQL update commands run:"
|
7603 |
msgstr "SQL актуализация команди:"
|
7604 |
|
7605 |
+
#: src/addons/migrator.php:1339
|
7606 |
msgid "Changes made:"
|
7607 |
msgstr "Направени промени:"
|
7608 |
|
7609 |
+
#: src/addons/migrator.php:1338
|
7610 |
msgid "Rows examined:"
|
7611 |
msgstr "Проверени редове:"
|
7612 |
|
7613 |
+
#: src/addons/migrator.php:1337
|
7614 |
msgid "Tables examined:"
|
7615 |
msgstr "Разгледани таблици:"
|
7616 |
|
7617 |
+
#: src/addons/migrator.php:1229
|
7618 |
msgid "Could not get list of tables"
|
7619 |
msgstr "Не може да се получи списък на таблици"
|
7620 |
|
7621 |
+
#: src/addons/migrator.php:1174
|
7622 |
msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
|
7623 |
msgstr "Предупреждение: URL адресът на сайта на базата данни (%s) е различен от очаквания от нас (%s)"
|
7624 |
|
7625 |
+
#: src/addons/migrator.php:1163
|
7626 |
msgid "Nothing to do: the site URL is already: %s"
|
7627 |
msgstr "Нищо за върша: URL адресът на сайта вече е: %s"
|
7628 |
|
7629 |
+
#: src/addons/migrator.php:1126, src/addons/migrator.php:1130,
|
7630 |
+
#: src/addons/migrator.php:1134, src/addons/migrator.php:1139,
|
7631 |
+
#: src/addons/migrator.php:1143, src/addons/migrator.php:1148
|
7632 |
msgid "Error: unexpected empty parameter (%s, %s)"
|
7633 |
msgstr "Грешка: неочакван празен параметър (%s, %s)"
|
7634 |
|
7635 |
+
#: src/addons/migrator.php:1084
|
7636 |
msgid "Database: search and replace site URL"
|
7637 |
msgstr "База данни: търсене и заместване на URL адрес на сайт"
|
7638 |
|
7639 |
+
#: src/addons/migrator.php:939, src/addons/migrator.php:1323,
|
7640 |
+
#: src/restorer.php:4148
|
7641 |
msgid "Failed: we did not understand the result returned by the %s operation."
|
7642 |
msgstr "Неуспешно: не разбирахме резултата, върнат от операцията %s."
|
7643 |
|
7644 |
+
#: src/addons/migrator.php:937, src/addons/migrator.php:1321,
|
7645 |
+
#: src/restorer.php:4146
|
7646 |
msgid "Failed: the %s operation was not able to start."
|
7647 |
msgstr "Неуспешно: операцията %s не можа да стартира."
|
7648 |
|
7649 |
+
#: src/addons/migrator.php:569
|
7650 |
msgid "Search and replace site location in the database (migrate)"
|
7651 |
msgstr "Търсене и заместване на местоположение на сайта в базата данни (мигриране)"
|
7652 |
|
7653 |
+
#: src/addons/migrator.php:569
|
7654 |
msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
|
7655 |
msgstr "Всички препратки към местоположението на сайта в базата данни ще бъдат заменени с текущия url адрес на сайта ви, което е: %s"
|
7656 |
|
7658 |
msgid "Blog uploads"
|
7659 |
msgstr "Качвания на блогове"
|
7660 |
|
7661 |
+
#: src/addons/migrator.php:503, src/addons/multisite.php:742
|
7662 |
msgid "Must-use plugins"
|
7663 |
msgstr "Приставки за задължително използване"
|
7664 |
|
7696 |
|
7697 |
#: src/addons/lockadmin.php:171, src/addons/moredatabase.php:265,
|
7698 |
#: src/addons/sftp.php:496, src/addons/webdav.php:248, src/admin.php:1032,
|
7699 |
+
#: src/admin.php:3284, src/methods/openstack2.php:164,
|
7700 |
#: src/methods/updraftvault.php:410,
|
7701 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:50
|
7702 |
msgid "Password"
|
7765 |
|
7766 |
#: src/addons/googlecloud.php:809, src/addons/googlecloud.php:843,
|
7767 |
#: src/addons/googlecloud.php:849, src/addons/sftp.php:591,
|
7768 |
+
#: src/addons/webdav.php:325, src/admin.php:3810, src/admin.php:3846,
|
7769 |
+
#: src/admin.php:3856, src/methods/addon-base-v2.php:356
|
7770 |
msgid "Failed"
|
7771 |
msgstr "Неуспешно"
|
7772 |
|
7968 |
msgid "API key"
|
7969 |
msgstr "Ключ за API"
|
7970 |
|
7971 |
+
#: src/addons/migrator.php:341, src/addons/moredatabase.php:113,
|
7972 |
#: src/addons/moredatabase.php:115, src/addons/moredatabase.php:117,
|
7973 |
#: src/addons/sftp.php:560, src/addons/sftp.php:564, src/addons/sftp.php:568,
|
7974 |
#: src/addons/webdav.php:316, src/admin.php:927,
|
8018 |
msgid "Test %s Settings"
|
8019 |
msgstr "Тест на %s Настройки"
|
8020 |
|
8021 |
+
#: src/addons/webdav.php:638, src/class-updraftplus.php:1505,
|
8022 |
+
#: src/class-updraftplus.php:1549, src/methods/cloudfiles.php:398
|
8023 |
msgid "Error opening local file: Failed to download"
|
8024 |
msgstr "Грешка при отваряне на локален файл: Неуспешно изтегляне"
|
8025 |
|
8028 |
msgid "%s Error: Failed to upload"
|
8029 |
msgstr "%s Грешка: Не можа да бъде качено"
|
8030 |
|
8031 |
+
#: src/class-updraftplus.php:1347
|
8032 |
msgid "%s Error: Failed to open local file"
|
8033 |
msgstr "%s Грешка: Не може да се отвори локален файл"
|
8034 |
|
8137 |
msgid "You need to re-authenticate with %s, as your existing credentials are not working."
|
8138 |
msgstr "Трябва да удостоверите отново с %s, тъй като вашите съществуващи идентификационни данни не работят."
|
8139 |
|
8140 |
+
#: src/admin.php:3814, src/admin.php:3849, src/admin.php:3853,
|
8141 |
#: src/includes/class-remote-send.php:441,
|
8142 |
+
#: src/includes/class-storage-methods-interface.php:323, src/restorer.php:436,
|
8143 |
+
#: src/restorer.php:3975, src/restorer.php:4095
|
8144 |
msgid "OK"
|
8145 |
msgstr "ОК"
|
8146 |
|
8147 |
+
#: src/restorer.php:3969, src/restorer.php:4059
|
8148 |
msgid "Table prefix has changed: changing %s table field(s) accordingly:"
|
8149 |
msgstr "Префиксът на таблицата е променен: съответно променя полето (полетата на %s) таблица:"
|
8150 |
|
8151 |
+
#: src/includes/class-search-replace.php:496, src/restorer.php:3780
|
8152 |
msgid "the database query being run was:"
|
8153 |
msgstr "заявката за база данни, която се изпълнява, е:"
|
8154 |
|
8155 |
+
#: src/restorer.php:2434
|
8156 |
msgid "will restore as:"
|
8157 |
msgstr "ще се възстанови като:"
|
8158 |
|
8159 |
+
#: src/class-updraftplus.php:5055, src/restorer.php:2263,
|
8160 |
+
#: src/restorer.php:2891, src/restorer.php:3059
|
8161 |
msgid "Old table prefix:"
|
8162 |
msgstr "Стар префикс на таблицата:"
|
8163 |
|
8164 |
#: src/addons/reporting.php:87, src/addons/reporting.php:196,
|
8165 |
+
#: src/class-updraftplus.php:3706, src/class-updraftplus.php:4977
|
8166 |
msgid "Backup of:"
|
8167 |
msgstr "Архивиране на:"
|
8168 |
|
8169 |
+
#: src/restorer.php:2633
|
8170 |
msgid "Failed to open database file"
|
8171 |
msgstr "Грешка при отваряне на файла на базата данни"
|
8172 |
|
8173 |
+
#: src/restorer.php:2612
|
8174 |
msgid "Failed to find database file"
|
8175 |
msgstr "Неуспешно намиране на файл на база данни"
|
8176 |
|
8177 |
+
#: src/restorer.php:2589
|
8178 |
msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
|
8179 |
msgstr "Предупреждение: PHP safe_mode е активен на сървъра Ви. Времето за изчакване е много по-вероятно. Ако това се случи, тогава ще трябва да възстановите ръчно файла чрез phpMyAdmin или друг метод."
|
8180 |
|
8181 |
+
#: src/restorer.php:1199
|
8182 |
msgid "wp-config.php from backup: restoring (as per user's request)"
|
8183 |
msgstr "wp-config.php от архивиране: възстановяване (според искане на потребителя)"
|
8184 |
|
8185 |
+
#: src/restorer.php:1192
|
8186 |
msgid "wp-config.php from backup: will restore as wp-config-backup.php"
|
8187 |
msgstr "wp-config.php от архивиране: ще се възстанови като WP-config-backup.php"
|
8188 |
|
8189 |
+
#: src/restorer.php:1068
|
8190 |
msgid "Failed to write out the decrypted database to the filesystem"
|
8191 |
msgstr "Неуспешно записване на разшифрованата база данни във файловата система"
|
8192 |
|
8193 |
+
#: src/restorer.php:1052
|
8194 |
msgid "Failed to create a temporary directory"
|
8195 |
msgstr "Неуспешно създаване на временна директория"
|
8196 |
|
8197 |
+
#: src/restorer.php:753
|
8198 |
msgid "Failed to delete working directory after restoring."
|
8199 |
msgstr "Неуспешно изтриване на работната директория след възстановяване."
|
8200 |
|
8201 |
+
#: src/restorer.php:748
|
8202 |
msgid "Cleaning up rubbish..."
|
8203 |
msgstr "Почиствам боклука..."
|
8204 |
|
8205 |
+
#: src/restorer.php:747
|
8206 |
msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
|
8207 |
msgstr "Възстановяване на базата данни (на голям сайт това може да отнеме много време - ако това време (което може да се случи, ако уеб хостинг компания е конфигурирала хостинга ви да ограничава ресурсите), тогава трябва да използвате друг метод, като phpMyAdmin)..."
|
8208 |
|
8209 |
+
#: src/restorer.php:744
|
8210 |
msgid "Database successfully decrypted."
|
8211 |
msgstr "Базата данни е успешно дешифрирана."
|
8212 |
|
8213 |
+
#: src/restorer.php:743
|
8214 |
msgid "Decrypting database (can take a while)..."
|
8215 |
msgstr "Дешифриране на база данни (може да отнеме известно време)..."
|
8216 |
|
8217 |
+
#: src/restorer.php:742
|
8218 |
msgid "Unpacking backup..."
|
8219 |
msgstr "Разопаковане на архивно копие..."
|
8220 |
|
8221 |
+
#: src/restorer.php:741
|
8222 |
msgid "Copying this entity failed."
|
8223 |
msgstr "Копирането на този обект е неуспешно."
|
8224 |
|
8225 |
+
#: src/restorer.php:740
|
8226 |
msgid "Backup file not available."
|
8227 |
msgstr "Няма наличен архивен файл."
|
8228 |
|
8229 |
+
#: src/restorer.php:739
|
8230 |
msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
|
8231 |
msgstr "UpdraftPlus не е в състояние директно да възстанови този вид на обект. Трябва да се възстанови ръчно."
|
8232 |
|
8233 |
+
#: src/restorer.php:444, src/restorer.php:445
|
8234 |
msgid "Could not read one of the files for restoration"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
+
#: src/restorer.php:623
|
8238 |
msgid "Error message"
|
8239 |
msgstr "Съобщение за грешка"
|
8240 |
|
8241 |
+
#: src/restorer.php:441
|
8242 |
msgid "The backup records do not contain information about the proper size of this file."
|
8243 |
msgstr "Архивните записи не съдържат информация за правилния размер на този файл."
|
8244 |
|
8245 |
+
#: src/restorer.php:433
|
8246 |
msgid "Archive is expected to be size:"
|
8247 |
msgstr "Очаква се архивът да бъде размер:"
|
8248 |
|
8249 |
+
#: src/admin.php:5120
|
8250 |
msgid "If making a request for support, please include this information:"
|
8251 |
msgstr "Ако правите заявка за поддръжка, моля, включете тази информация:"
|
8252 |
|
8253 |
+
#: src/admin.php:5120
|
8254 |
msgid "ABORT: Could not find the information on which entities to restore."
|
8255 |
msgstr "ABORT: Не може да се намери информация за това кои обекти да се възстанови."
|
8256 |
|
8258 |
msgid "UpdraftPlus Restoration: Progress"
|
8259 |
msgstr "Възстановяване на updraftPlus: Прогрес"
|
8260 |
|
8261 |
+
#: src/admin.php:5083
|
8262 |
msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
|
8263 |
msgstr "Това архивиране не съществува в хронологията на архивирането - възстановяването е прекратено. Клеймото:"
|
8264 |
|
8265 |
+
#: src/admin.php:4516
|
8266 |
msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
|
8267 |
msgstr "След като натиснете този бутон, ще ви бъде дадена възможност да изберете кои компоненти"
|
8268 |
|
8269 |
+
#: src/admin.php:4600
|
8270 |
msgid "Delete this backup set"
|
8271 |
msgstr "Изтриване на този архивен набор"
|
8272 |
|
8273 |
+
#: src/admin.php:4285
|
8274 |
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."
|
8275 |
msgstr "Добра новина: Съобщенията на вашия сайт с %s могат да бъдат шифровани. Ако видите грешки, свързани с шифроването, потърсете в \"Експертни настройки\" за допълнителна помощ."
|
8276 |
|
8277 |
+
#: src/admin.php:4282
|
8278 |
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."
|
8279 |
msgstr "Php/Curl инсталацията на вашия уеб сървър не поддържа https достъп. Не можем да осъществим достъп до %s без тази поддръжка. Обърнете се към поддръжката на вашия уеб хостинг доставчик. %s <strong>изисква</strong> Curl+https. Моля, не подавайте заявки за поддръжка; няма алтернатива."
|
8280 |
|
8281 |
+
#: src/admin.php:4280
|
8282 |
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)."
|
8283 |
msgstr "Php/Curl инсталацията на вашия уеб сървър не поддържа https достъп. Комуникациите с %s няма да бъдат закрити. Помолете вашия уеб хост да инсталира Curl/SSL, за да придобие възможност за шифроване (чрез добавка)."
|
8284 |
|
8319 |
msgid "Use the server's SSL certificates"
|
8320 |
msgstr "Използване на SSL сертификати на сървъра"
|
8321 |
|
8322 |
+
#: src/admin.php:4101
|
8323 |
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."
|
8324 |
msgstr "Ако това е неуспешен, проверете разрешенията на вашия сървър или го променете в друга директория, която може да се записва от процеса на вашия уеб сървър."
|
8325 |
|
8326 |
+
#: src/admin.php:4101
|
8327 |
msgid "or, to reset this option"
|
8328 |
msgstr "или, за да нулирате тази опция"
|
8329 |
|
8330 |
+
#: src/admin.php:4101
|
8331 |
msgid "Follow this link to attempt to create the directory and set the permissions"
|
8332 |
msgstr "Следвайте тази връзка, за да се опитате да създадете директория и да зададете разрешения"
|
8333 |
|
8334 |
+
#: src/admin.php:4093
|
8335 |
msgid "Backup directory specified is writable, which is good."
|
8336 |
msgstr "Указаната директория за архивиране е записваема, което е добро."
|
8337 |
|
8373 |
msgstr "Отмяна"
|
8374 |
|
8375 |
#: src/addons/incremental.php:330, src/addons/incremental.php:338,
|
8376 |
+
#: src/addons/reporting.php:260, src/admin.php:4366
|
8377 |
msgid "None"
|
8378 |
msgstr "Няма"
|
8379 |
|
8389 |
msgid "Database encryption phrase"
|
8390 |
msgstr "Фраза за шифроване на база данни"
|
8391 |
|
8392 |
+
#: src/admin.php:3274, src/methods/updraftvault.php:409,
|
8393 |
#: src/templates/wp-admin/settings/form-contents.php:256,
|
8394 |
#: src/templates/wp-admin/settings/updraftcentral-connect.php:44
|
8395 |
msgid "Email"
|
8403 |
msgid "Exclude these:"
|
8404 |
msgstr "Без тези артикули:"
|
8405 |
|
8406 |
+
#: src/admin.php:4181
|
8407 |
msgid "Any other directories found inside wp-content"
|
8408 |
msgstr "Всички други директории, намерени в wp-съдържание"
|
8409 |
|
8424 |
msgstr "Интервал на архивиране на база данни"
|
8425 |
|
8426 |
#: src/addons/incremental.php:334, src/addons/incremental.php:347,
|
8427 |
+
#: src/admin.php:4069, src/admin.php:4082
|
8428 |
msgid "Monthly"
|
8429 |
msgstr "Месечен"
|
8430 |
|
8431 |
#: src/addons/incremental.php:333, src/addons/incremental.php:346,
|
8432 |
+
#: src/admin.php:4081
|
8433 |
msgid "Fortnightly"
|
8434 |
msgstr "Две седмици"
|
8435 |
|
8436 |
#: src/addons/incremental.php:332, src/addons/incremental.php:345,
|
8437 |
+
#: src/admin.php:4080
|
8438 |
msgid "Weekly"
|
8439 |
msgstr "Ежеседмично"
|
8440 |
|
8441 |
#: src/addons/incremental.php:331, src/addons/incremental.php:344,
|
8442 |
+
#: src/admin.php:4079
|
8443 |
msgid "Daily"
|
8444 |
msgstr "Ежедневно"
|
8445 |
|
8447 |
msgid "Files backup interval"
|
8448 |
msgstr "Интервал за архивиране на файлове"
|
8449 |
|
8450 |
+
#: src/admin.php:909, src/admin.php:4045
|
8451 |
msgid "Download log file"
|
8452 |
msgstr "Изтегляне на регистрационен файл"
|
8453 |
|
8454 |
+
#: src/admin.php:3917
|
8455 |
msgid "The folder exists, but your webserver does not have permission to write to it."
|
8456 |
msgstr "Папката съществува, но вашият уеб сървър няма разрешение да я пише."
|
8457 |
|
8458 |
+
#: src/admin.php:3912
|
8459 |
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"
|
8460 |
msgstr "Папката е създадена, но трябваше да променим разрешенията си за файлове на 777 (с възможност за world-write), за да може да пише в нея. Трябва да проверите при вашия хостинг доставчик, че това няма да доведе до никакви проблеми"
|
8461 |
|
8462 |
+
#: src/admin.php:3898
|
8463 |
msgid "The request to the filesystem to create the directory failed."
|
8464 |
msgstr "Искането за създаване на директорията е неуспешно."
|
8465 |
|
8466 |
+
#: src/admin.php:900, src/admin.php:3807, src/admin.php:3841,
|
8467 |
+
#: src/admin.php:4600, src/includes/class-remote-send.php:692,
|
8468 |
#: src/templates/wp-admin/settings/existing-backups-table.php:167,
|
8469 |
#: src/templates/wp-admin/settings/file-backup-exclude.php:11
|
8470 |
msgid "Delete"
|
8471 |
msgstr "Изтрий"
|
8472 |
|
8473 |
+
#: src/admin.php:3759
|
8474 |
msgid "show log"
|
8475 |
msgstr "показване на дневник"
|
8476 |
|
8535 |
msgid "Yes"
|
8536 |
msgstr "Да"
|
8537 |
|
8538 |
+
#: src/admin.php:5943, src/admin.php:5947,
|
8539 |
#: src/templates/wp-admin/advanced/site-info.php:58,
|
8540 |
#: src/templates/wp-admin/advanced/site-info.php:64,
|
8541 |
#: src/templates/wp-admin/advanced/site-info.php:72,
|
8567 |
msgid "Do read this helpful article of useful things to know before restoring."
|
8568 |
msgstr "Прочетете тази полезна статия за полезни неща, които трябва да знаете преди да го възстановите."
|
8569 |
|
8570 |
+
#: src/class-updraftplus.php:5013
|
8571 |
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"
|
8572 |
msgstr "Можете да търсите и замествате вашата база данни (за мигриране на уеб сайт към ново местоположение/URL адрес) с добавката Мигратор - следвайте тази връзка за повече информация"
|
8573 |
|
8609 |
msgstr "Грешка при изтегляне: сървърът ни изпрати отговор, който не разбираме."
|
8610 |
|
8611 |
#: src/addons/backblaze.php:205, src/addons/backblaze.php:230,
|
8612 |
+
#: src/addons/cloudfiles-enhanced.php:123, src/addons/migrator.php:924,
|
8613 |
+
#: src/addons/migrator.php:1229, src/addons/migrator.php:1307,
|
8614 |
#: src/addons/s3-enhanced.php:161, src/addons/s3-enhanced.php:166,
|
8615 |
#: src/addons/s3-enhanced.php:168, src/addons/sftp.php:962,
|
8616 |
#: src/addons/webdav.php:258, src/admin.php:91, src/admin.php:873,
|
8627 |
#: src/includes/class-search-replace.php:326,
|
8628 |
#: src/includes/class-search-replace.php:496, src/methods/remotesend.php:74,
|
8629 |
#: src/methods/remotesend.php:252, src/methods/updraftvault.php:592,
|
8630 |
+
#: src/restorer.php:438, src/restorer.php:466, src/restorer.php:2155,
|
8631 |
+
#: src/restorer.php:4135
|
8632 |
msgid "Error:"
|
8633 |
msgstr "Грешка:"
|
8634 |
|
8682 |
msgid "More tasks:"
|
8683 |
msgstr "Още задачи:"
|
8684 |
|
8685 |
+
#: src/admin.php:3436
|
8686 |
msgid "Download most recently modified log file"
|
8687 |
msgstr "Изтегляне на последно променения регистрационен файл"
|
8688 |
|
8691 |
msgstr "(Нищо не е записано)"
|
8692 |
|
8693 |
#: src/addons/autobackup.php:368, src/addons/autobackup.php:463,
|
8694 |
+
#: src/admin.php:3392, src/admin.php:3398,
|
8695 |
#: src/templates/wp-admin/settings/take-backup.php:72
|
8696 |
msgid "Last log message"
|
8697 |
msgstr "Последно съобщение на регистрационния файл"
|
8698 |
|
8699 |
+
#: src/addons/migrator.php:275, src/admin.php:701, src/admin.php:908,
|
8700 |
+
#: src/admin.php:4516
|
8701 |
msgid "Restore"
|
8702 |
msgstr "Възстановяване"
|
8703 |
|
8710 |
msgstr "Време е"
|
8711 |
|
8712 |
#: src/addons/moredatabase.php:266, src/addons/reporting.php:275,
|
8713 |
+
#: src/addons/wp-cli.php:428, src/admin.php:394, src/admin.php:4341,
|
8714 |
+
#: src/admin.php:4394, src/admin.php:4984,
|
8715 |
#: src/includes/class-remote-send.php:445,
|
8716 |
#: src/includes/class-wpadmin-commands.php:154,
|
8717 |
+
#: src/includes/class-wpadmin-commands.php:612, src/restorer.php:576,
|
8718 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
|
8719 |
#: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
|
8720 |
#: src/templates/wp-admin/settings/take-backup.php:34
|
8721 |
msgid "Database"
|
8722 |
msgstr "Бази данни"
|
8723 |
|
8724 |
+
#: src/admin.php:384, src/admin.php:5729,
|
8725 |
#: src/templates/wp-admin/settings/take-backup.php:24
|
8726 |
msgid "Files"
|
8727 |
msgstr "Файлове"
|
8747 |
msgid "JavaScript warning"
|
8748 |
msgstr "Предупреждение за JavaScript"
|
8749 |
|
8750 |
+
#: src/admin.php:884, src/admin.php:3485
|
8751 |
msgid "Delete Old Directories"
|
8752 |
msgstr "Изтриване на стари директории"
|
8753 |
|
8754 |
+
#: src/admin.php:2931
|
8755 |
msgid "Current limit is:"
|
8756 |
msgstr "Настоящото ограничение е:"
|
8757 |
|
8758 |
+
#: src/admin.php:2893
|
8759 |
msgid "Your backup has been restored."
|
8760 |
msgstr "Архивирането ви е възстановено."
|
8761 |
|
8767 |
msgid "Lead developer's homepage"
|
8768 |
msgstr "Начална страница на програмиста на потенциални клиенти"
|
8769 |
|
8770 |
+
#: src/admin.php:5623
|
8771 |
msgid "Your settings have been wiped."
|
8772 |
msgstr "Настройките ви са били изтрити."
|
8773 |
|
8774 |
+
#: src/admin.php:2850
|
8775 |
msgid "Backup directory successfully created."
|
8776 |
msgstr "Архивната директория е създадена успешно."
|
8777 |
|
8778 |
+
#: src/admin.php:2843
|
8779 |
msgid "Backup directory could not be created"
|
8780 |
msgstr "Директорията за архивиране не може да бъде създадена"
|
8781 |
|
8782 |
+
#: src/admin.php:3775
|
8783 |
msgid "Old directory removal failed for some reason. You may want to do this manually."
|
8784 |
msgstr "Премахването на старата директория е неуспешно по някаква причина. Може да искате да направите това ръчно."
|
8785 |
|
8786 |
+
#: src/admin.php:3773
|
8787 |
msgid "Old directories successfully removed."
|
8788 |
msgstr "Старите директории са успешно премахнати."
|
8789 |
|
8790 |
+
#: src/admin.php:3770, src/admin.php:3770
|
8791 |
msgid "Remove old directories"
|
8792 |
msgstr "Премахване на стари директории"
|
8793 |
|
8794 |
+
#: src/addons/migrator.php:344, src/addons/migrator.php:360
|
8795 |
msgid "Return to UpdraftPlus Configuration"
|
8796 |
msgstr "Връщане към конфигурацията на UpdraftPlus"
|
8797 |
|
8798 |
+
#: src/admin.php:877, src/admin.php:2852, src/admin.php:3777,
|
8799 |
+
#: src/admin.php:4910, src/admin.php:4922, src/admin.php:4933,
|
8800 |
#: src/templates/wp-admin/settings/existing-backups-table.php:19,
|
8801 |
#: src/templates/wp-admin/settings/existing-backups-table.php:142
|
8802 |
msgid "Actions"
|
8827 |
msgstr "Неуспешно изтегляне"
|
8828 |
|
8829 |
#: src/addons/webdav.php:584, src/addons/wp-cli.php:497, src/admin.php:874,
|
8830 |
+
#: src/class-updraftplus.php:1505, src/class-updraftplus.php:1549,
|
8831 |
#: src/includes/class-filesystem-functions.php:437,
|
8832 |
#: src/includes/class-storage-methods-interface.php:332,
|
8833 |
#: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
|
8834 |
#: src/methods/addon-base-v2.php:251, src/methods/addon-base-v2.php:271,
|
8835 |
+
#: src/methods/googledrive.php:1343, src/restorer.php:3971,
|
8836 |
+
#: src/restorer.php:3996, src/restorer.php:4092, src/udaddons/options.php:236,
|
8837 |
#: src/updraftplus.php:158
|
8838 |
msgid "Error"
|
8839 |
msgstr "Грешка"
|
8870 |
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."
|
8871 |
msgstr "Имате по-малко от %s свободно дисково пространство на диска, който UpdraftPlus е конфигуриран да използва за създаване на архиви. UpdraftPlus може да се изчерпи от пространството. Свържете се с вас, вие сте операторът на вашия сървър (напр. вашата уеб хостинг компания), за да разрешите този проблем."
|
8872 |
|
8873 |
+
#: src/addons/azure.php:604, src/addons/migrator.php:978, src/admin.php:1300,
|
8874 |
#: src/admin.php:1305, src/admin.php:1311, src/admin.php:1315,
|
8875 |
+
#: src/admin.php:1319, src/admin.php:1328, src/admin.php:4273,
|
8876 |
+
#: src/admin.php:4280, src/admin.php:4282, src/admin.php:5913,
|
8877 |
+
#: src/admin.php:6191, src/methods/cloudfiles-new.php:96,
|
8878 |
#: src/methods/cloudfiles.php:455, src/methods/ftp.php:344,
|
8879 |
#: src/methods/openstack-base.php:576, src/methods/s3.php:892,
|
8880 |
#: src/methods/s3.php:896, src/methods/updraftvault.php:343,
|
8884 |
msgid "Warning"
|
8885 |
msgstr "Внимание"
|
8886 |
|
8887 |
+
#: src/admin.php:717, src/admin.php:1222, src/admin.php:3093
|
8888 |
msgid "Settings"
|
8889 |
msgstr "Настройки"
|
8890 |
|
8891 |
+
#: src/backup.php:310
|
8892 |
msgid "Could not create %s zip. Consult the log file for more information."
|
8893 |
msgstr "Не може да се създаде %s цип. За повече информация вижте регистрационния файл."
|
8894 |
|
8895 |
+
#: src/backup.php:2918
|
8896 |
msgid "Infinite recursion: consult your log for more information"
|
8897 |
msgstr "Безкрайно рекурсия: консултирайте се с вашия регистрационен файл за повече информация"
|
8898 |
|
8899 |
+
#: src/addons/azure.php:267, src/class-updraftplus.php:4673,
|
8900 |
#: src/methods/googledrive.php:1343, src/methods/s3.php:383
|
8901 |
msgid "File not found"
|
8902 |
msgstr "Файлът не беше намерен"
|
8905 |
msgid "The decryption key used:"
|
8906 |
msgstr "Използваният ключ за декриптиране:"
|
8907 |
|
8908 |
+
#: src/class-updraftplus.php:4898,
|
8909 |
+
#: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:1073
|
8910 |
msgid "Decryption failed. The most likely cause is that you used the wrong key."
|
8911 |
msgstr "Неуспешна дешифриране. Най-вероятната причина е, че сте използвали грешен ключ."
|
8912 |
|
8913 |
+
#: src/class-updraftplus.php:4886,
|
8914 |
+
#: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:1060
|
8915 |
msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
|
8916 |
msgstr "Неуспешна дешифриране. Файлът на базата данни е шифрован, но не е въведен ключ за шифроване."
|
8917 |
|
8918 |
+
#: src/backup.php:2801
|
8919 |
msgid "Could not open the backup file for writing"
|
8920 |
msgstr "Не може да се отвори архивният файл за запис"
|
8921 |
|
8922 |
+
#: src/class-updraftplus.php:4388
|
8923 |
msgid "Could not save backup history because we have no backup array. Backup probably failed."
|
8924 |
msgstr "Историята на архивирането не може да се запише, защото нямаме резервен масив. Вероятно архивирането е неуспешно."
|
8925 |
|
8926 |
+
#: src/class-updraftplus.php:4372
|
8927 |
msgid "Could not read the directory"
|
8928 |
msgstr "Директорията не може да бъде прочетена"
|
8929 |
|
8930 |
+
#: src/admin.php:2568, src/backup.php:1262
|
8931 |
msgid "Backup directory (%s) is not writable, or does not exist."
|
8932 |
msgstr "Директорията за архивиране (%s) не може да се записва или не съществува."
|
8933 |
|
8934 |
+
#: src/class-updraftplus.php:3707
|
8935 |
msgid "WordPress backup is complete"
|
8936 |
msgstr "Архивирането в WordPress е завършено"
|
8937 |
|
8938 |
+
#: src/class-updraftplus.php:3549
|
8939 |
msgid "The backup attempt has finished, apparently unsuccessfully"
|
8940 |
msgstr "Опитът за архивиране е завършен, очевидно безуспешно"
|
8941 |
|
8942 |
+
#: src/class-updraftplus.php:3526
|
8943 |
msgid "The backup apparently succeeded and is now complete"
|
8944 |
msgstr "Архивирането очевидно е успешно и сега е завършено"
|
8945 |
|
8947 |
msgid "Encryption error occurred when encrypting database. Encryption aborted."
|
8948 |
msgstr "Грешка при шифроване при шифроване на база данни. Шифроването е прекратено."
|
8949 |
|
8950 |
+
#: src/class-updraftplus.php:3172
|
8951 |
msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
|
8952 |
msgstr "Не можаха да се създадат файлове в директорията за архивиране. Архивирането е прекратено - проверете настройките на UpdraftPlus."
|
8953 |
|
8954 |
+
#: src/class-updraftplus.php:2041
|
8955 |
msgid "Others"
|
8956 |
msgstr "Други"
|
8957 |
|
8958 |
+
#: src/addons/multisite.php:504, src/class-updraftplus.php:2026
|
8959 |
msgid "Uploads"
|
8960 |
msgstr "Качвания"
|
8961 |
|
8962 |
+
#: src/class-updraftplus.php:2025
|
8963 |
msgid "Themes"
|
8964 |
msgstr "Теми"
|
8965 |
|
8966 |
+
#: src/class-updraftplus.php:2024
|
8967 |
msgid "Plugins"
|
8968 |
msgstr "Плъгини"
|
8969 |
|
8970 |
+
#: src/class-updraftplus.php:689
|
8971 |
msgid "No log files were found."
|
8972 |
msgstr "Не са намерени лог файлове."
|
8973 |
|
8974 |
+
#: src/admin.php:2430,
|