WP Migrate DB - Version 2.4.1

Version Description

Download this release

Release Info

Developer deliciousbrains
Plugin Icon 128x128 WP Migrate DB
Version 2.4.1
Comparing to
See all releases

Code changes from version 2.4.0 to 2.4.1

class/Common/DryRun/DiffEntity.php CHANGED
@@ -111,8 +111,9 @@ class DiffEntity implements \JsonSerializable
111
 
112
  /**
113
  * Json serializes the class data
114
- * @return array
115
  */
 
116
  public function jsonSerialize()
117
  {
118
  return [
111
 
112
  /**
113
  * Json serializes the class data
114
+ * @return mixed
115
  */
116
+ #[\ReturnTypeWillChange]
117
  public function jsonSerialize()
118
  {
119
  return [
class/Common/MigrationPersistence/Persistence.php CHANGED
@@ -52,7 +52,7 @@ class Persistence
52
  $state_data = get_site_option($key);
53
 
54
  if (false === $state_data) {
55
- $filtered = filter_var_array($_POST, FILTER_SANITIZE_STRING);
56
  return $filtered;
57
  }
58
 
@@ -64,7 +64,7 @@ class Persistence
64
  $state_data = get_site_option($key);
65
 
66
  if (false === $state_data) {
67
- return filter_var_array($_POST, FILTER_SANITIZE_STRING);
68
  }
69
 
70
  return $state_data;
52
  $state_data = get_site_option($key);
53
 
54
  if (false === $state_data) {
55
+ $filtered = filter_var_array($_POST, FILTER_SANITIZE_FULL_SPECIAL_CHARS);
56
  return $filtered;
57
  }
58
 
64
  $state_data = get_site_option($key);
65
 
66
  if (false === $state_data) {
67
+ return filter_var_array($_POST, FILTER_SANITIZE_FULL_SPECIAL_CHARS);
68
  }
69
 
70
  return $state_data;
class/Common/MigrationPersistence/debug.log DELETED
@@ -1,2 +0,0 @@
1
- [18-Jul-2022 11:40:12 UTC] PHP Warning: Undefined array key "wp-migrate-db-pro-theme-plugin-files" in /nas/content/live/pwmigratestg/wp-content/plugins/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesRemote.php on line 131
2
- [18-Jul-2022 11:40:12 UTC] PHP Warning: Trying to access array offset on value of type null in /nas/content/live/pwmigratestg/wp-content/plugins/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesRemote.php on line 131
 
 
class/Common/Replace.php CHANGED
@@ -582,7 +582,12 @@ class Replace
582
  }
583
 
584
  if ('find_replace' === $this->intent) {
585
- $this->diff_interpreter->compute(DiffEntity::create($original, $subject, $this->column, is_object($this->row) ? reset($this->row) : null));
 
 
 
 
 
586
  }
587
 
588
  return $subject;
582
  }
583
 
584
  if ('find_replace' === $this->intent) {
585
+ $row = null;
586
+ if (is_object($this->row) ) {
587
+ $get_vars = function_exists('get_mangled_object_vars') ? get_mangled_object_vars($this->row) : $this->row;
588
+ $row = reset($get_vars);
589
+ }
590
+ $this->diff_interpreter->compute(DiffEntity::create($original, $subject, $this->column, $row));
591
  }
592
 
593
  return $subject;
class/Common/Sanitize.php CHANGED
@@ -96,7 +96,7 @@ class Sanitize
96
  if (!is_string($data)) {
97
  throw new SanitizationFailureException(self::create_error_string('a string', $context, $data, self::$field_key));
98
  }
99
- $data = filter_var($data, FILTER_SANITIZE_STRING, FILTER_FLAG_NO_ENCODE_QUOTES);
100
  } elseif ('regex' === $key_rules) {
101
  if (Util::is_regex_pattern_valid($data) === false) {
102
  throw new SanitizationFailureException(self::create_error_string('a regex string', $context, $data, self::$field_key));
96
  if (!is_string($data)) {
97
  throw new SanitizationFailureException(self::create_error_string('a string', $context, $data, self::$field_key));
98
  }
99
+ $data = filter_var($data, FILTER_SANITIZE_FULL_SPECIAL_CHARS, FILTER_FLAG_NO_ENCODE_QUOTES);
100
  } elseif ('regex' === $key_rules) {
101
  if (Util::is_regex_pattern_valid($data) === false) {
102
  throw new SanitizationFailureException(self::create_error_string('a regex string', $context, $data, self::$field_key));
frontend/build-free/asset-manifest.json CHANGED
@@ -1,13 +1,13 @@
1
  {
2
- "styles.css": "./static/css/styles.4761c13e.chunk.css",
3
  "styles.js": "./static/js/styles.44ee11a4d77f.chunk.js",
4
- "main.js": "./static/js/main.373a9f7b81d0.chunk.js",
5
- "wpmdb-runtime.js": "./static/js/wpmdb-runtime.736680ee20b6.js",
6
  "static/js/3.d959a9880319.chunk.js": "./static/js/3.d959a9880319.chunk.js",
7
  "static/js/4.dfe8ab26e599.chunk.js": "./static/js/4.dfe8ab26e599.chunk.js",
8
- "static/js/5.d6f9260fa60c.chunk.js": "./static/js/5.d6f9260fa60c.chunk.js",
9
- "static/js/6.093d2285dd1a.chunk.js": "./static/js/6.093d2285dd1a.chunk.js",
10
- "static/js/7.e4951429e56b.chunk.js": "./static/js/7.e4951429e56b.chunk.js",
11
  "static/media/action-backup-database.ab9022dd.svg": "./static/media/action-backup-database.ab9022dd.svg",
12
  "static/media/action-export-database.617087b6.svg": "./static/media/action-export-database.617087b6.svg",
13
  "static/media/action-import-database.03003cd8.svg": "./static/media/action-import-database.03003cd8.svg",
1
  {
2
+ "styles.css": "./static/css/styles.4fcfe366.chunk.css",
3
  "styles.js": "./static/js/styles.44ee11a4d77f.chunk.js",
4
+ "main.js": "./static/js/main.51adc5c29b2b.chunk.js",
5
+ "wpmdb-runtime.js": "./static/js/wpmdb-runtime.4c0a7bbb4584.js",
6
  "static/js/3.d959a9880319.chunk.js": "./static/js/3.d959a9880319.chunk.js",
7
  "static/js/4.dfe8ab26e599.chunk.js": "./static/js/4.dfe8ab26e599.chunk.js",
8
+ "static/js/5.a7cfeef3855e.chunk.js": "./static/js/5.a7cfeef3855e.chunk.js",
9
+ "static/js/6.4cb73a3e1e21.chunk.js": "./static/js/6.4cb73a3e1e21.chunk.js",
10
+ "static/js/7.3c5af80beb40.chunk.js": "./static/js/7.3c5af80beb40.chunk.js",
11
  "static/media/action-backup-database.ab9022dd.svg": "./static/media/action-backup-database.ab9022dd.svg",
12
  "static/media/action-export-database.617087b6.svg": "./static/media/action-export-database.617087b6.svg",
13
  "static/media/action-import-database.03003cd8.svg": "./static/media/action-import-database.03003cd8.svg",
frontend/build-free/static/css/styles.4761c13e.chunk.css DELETED
@@ -1 +0,0 @@
1
- .wpmdb{min-width:800px}.wpmdb a{margin:0;cursor:pointer;text-decoration:none}.wpmdb .header-wrap{background:#a5ddf1}.wpmdb .nav-wrap{background:#fff;border-bottom:1px solid #d6d6d6;margin-bottom:2.8rem}.wpmdb .wrapper{min-width:920px;max-width:1280px;margin-left:30px}@media(max-width:1500px){.wpmdb .wrapper{margin:0 30px}}.wpmdb a.hover{text-decoration:underline}.wpmdb a,.wpmdb a.link{border-radius:4px}.wpmdb a.link:focus-visible,.wpmdb a:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb button{padding:0;margin:0;border:0;background:none;cursor:pointer}.wpmdb button.link{border-radius:4px}.wpmdb button.link:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .btn-no-outline{outline:0}.wpmdb .full-opacity{opacity:1!important}.wpmdb .margin-bottom{margin-bottom:1rem}.wpmdb .align-right{margin-left:auto}.wpmdb .align-center{margin:0 auto}.wpmdb .text-center{text-align:center}.wpmdb .uppercase{text-transform:uppercase}.wpmdb label,.wpmdb p{font-size:13px;font-weight:400;line-height:1.8}.wpmdb h1,.wpmdb h2,.wpmdb h3,.wpmdb h4,.wpmdb h5,.wpmdb label,.wpmdb p{letter-spacing:.2px}.wpmdb ul{margin:0}.wpmdb label{margin-left:.5rem}.wpmdb li,.wpmdb ul{padding:0}.wpmdb li{margin-top:.25rem;margin-bottom:0!important;list-style:none;margin-bottom:0}.wpmdb .pos-relative{position:relative}.wpmdb .regular{font-weight:400}.wpmdb .semibold{font-weight:600}.wpmdb .bold{font-weight:700}.wpmdb .underline{text-decoration:underline}.wpmdb h1,.wpmdb h2,.wpmdb h3,.wpmdb h4,.wpmdb h5{color:#04223f}.wpmdb h1{font-size:1.3125rem;font-weight:500;padding:0}.wpmdb h2{font-size:1rem;font-weight:600}.wpmdb h3{font-size:.88rem;font-weight:600}.wpmdb h4{font-size:.95rem}.wpmdb h5{font-weight:600;opacity:.8;font-size:.88rem;color:#000;text-transform:uppercase}.wpmdb .icon-16{width:16px;height:16px}.wpmdb .icon-20{width:20px;height:20px}.wpmdb .icon-24{width:24px;height:24px}.wpmdb .icon-32{width:32px;height:32px}.wpmdb .icon-64{width:64px;height:64px}.wpmdb .icon-128{width:128px;height:128px}.wpmdb .width-10{width:10%}.wpmdb input[type=checkbox]{cursor:pointer;margin-top:-2px;margin-right:.5rem;box-shadow:inset 0 0 0 #fff}.wpmdb input[type=checkbox]:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .panel-header-wrap input[type=checkbox]{margin-top:0}.wpmdb .checkbox-default{margin-top:0!important;border-radius:2px!important}.wpmdb .consolas{font-family:Consolas,monaco,monospace}.wpmdb input[type=text]{border:1px solid #d6d6d6;border-radius:5px;padding:12px 10px;min-height:inherit;line-height:normal}.wpmdb input[type=text],.wpmdb textarea{background:#fff;font-size:.8rem;box-sizing:border-box}.wpmdb textarea{border:1px solid #d6d6d6;border-radius:2px;padding:.6rem;width:22rem}.wpmdb select{height:2.75rem;width:23rem;padding-left:16px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);border:1px solid #d6d6d6;font-size:13px;background-position:calc(100% - 14px)}.wpmdb .container-shadow{background:#fff;border:1px solid #d6d6d6;box-shadow:0 2px 8px 0 rgba(0,0,0,.05),0 2px 1px 0 rgba(0,0,0,.05);border-radius:4px}.wpmdb .slider-switch-bg{background:#d6d6d6;width:25rem;border-radius:10rem;height:.25rem}.wpmdb .slider-switch-active{background:#236de7;width:5rem;border-radius:10rem;height:.25rem}.wpmdb .slider-switch{width:1rem;height:1rem;background:#236de7;border-radius:10rem;position:absolute;margin-top:-1.25rem}.wpmdb .link{color:#0073aa;font-size:.88rem;font-weight:600;text-decoration:underline;opacity:1;cursor:pointer;border-radius:4px}.wpmdb .link:hover{text-decoration:none}.wpmdb .bg-black{background:#000}.wpmdb .text-black{color:#000}.wpmdb .bg-white{background:#fff}.wpmdb .text-white{color:#fff}.wpmdb .text-primary{color:#236de7}.wpmdb .bg-primary{background:#236de7}.wpmdb .text-brand-dark{color:#04223f}.wpmdb .bg-brand-dark{background:#04223f}.wpmdb .text-brand-light{color:#a5ddf1}.wpmdb .bg-brand-light{background:#a5ddf1}.wpmdb .db-accordion-expanded{background:#45719b}.wpmdb .bg-success{background:#53aa59}.wpmdb .text-error{color:#dc3232}.wpmdb .bg-error{background:#cf2a27}.wpmdb .bg-alert{background:#ffba00}.wpmdb .text-grey-light{color:#d6d6d6}.wpmdb .text-grey-dark{color:#999}.wpmdb .bg-grey-dark{background:#999}.wpmdb .bg-trans{background:transparent!important}.wpmdb .bg-grey-light{background:#d6d6d6}.wpmdb .grid-container{display:grid}.wpmdb .flex-container{align-items:center;list-style:none;-ms-box-orient:horizontal;display:-moz-flex;display:flex}.wpmdb .column{flex-direction:column}.wpmdb .flex-align-baseline{align-items:baseline}.wpmdb .wrap{flex-wrap:wrap}.wpmdb .header,.wpmdb .padded-container{padding:1.3rem 0;background-repeat:no-repeat;background-size:38%;background-position:top}.wpmdb .header .btn{border-radius:4px}.wpmdb .medallion{-webkit-filter:drop-shadow(0 1px 4px rgba(0,0,0,.2));filter:drop-shadow(0 1px 4px rgba(0,0,0,.2));margin-right:1rem;width:52px;height:52px}.wpmdb .license-message{margin-left:auto;flex-grow:0;flex-shrink:0}.wpmdb .license-message.flex-grow{flex-basis:auto}.wpmdb .license-message .license-icon{position:relative;top:7px}.wpmdb .license-message .license-level{text-align:right;font-size:13px}.wpmdb .license-message .license-level a{font-weight:500;text-decoration:underline}.wpmdb .license-message .license-level a:hover{text-decoration:none}.wpmdb .license-message .license-level a:focus-visible{box-shadow:0 0 0 2px #a5ddf1,0 0 0 4px #4f8aec}.wpmdb .license-message p{font-size:13px;margin:0}.wpmdb .license-block{display:flex;grid-gap:26px;gap:26px;align-items:center;justify-items:flex-end}.wpmdb .license-block.active-license{flex-grow:0;display:block}.wpmdb .license-block.active-license .license-status span{padding:0}.wpmdb .license-block .user-label{color:#314248;font-size:13px;font-weight:400;padding-right:0}.wpmdb .license-block .license-status{font-size:.75rem;font-weight:600;margin:0;position:relative;top:-3px;opacity:1}.wpmdb .license-block .license-status .license-icon{left:-2px}.wpmdb .license-block .license-status span{display:inline-block}.wpmdb .license-block .license-status span.license-label{color:#236de7;display:inline}.wpmdb .license-block .license-status.valid-licence span{padding-right:.4rem}.wpmdb .license-block .license-expired{text-align:right}.wpmdb .license-block .license-expired span{padding:0}.wpmdb .license-block .btn{display:block;padding:10px 20px}.wpmdb .license-block .license-info{position:relative;top:-3px}.wpmdb .license{text-decoration:underline}.wpmdb .nav{font-size:.75rem;font-weight:500;text-transform:uppercase;padding:1.25rem 0 0;align-items:baseline}.wpmdb .nav li{margin-right:1.7rem;padding:.6rem .2rem .4rem}.wpmdb .nav-item-active{border-bottom:3px solid #000}.wpmdb .nav li a{color:#707070}.wpmdb .nav li a:focus{box-shadow:none}.wpmdb .nav li a:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .nav-item-active a{color:#04223f!important}.wpmdb .subnav{border-bottom:1px solid #bbb;padding:0 1.5rem;align-items:baseline}.wpmdb .subnav li{opacity:.4;font-size:.94rem;font-weight:600;margin-right:2rem;padding-left:.5rem;padding-right:.5rem;padding-bottom:1rem}.wpmdb .subnav-item-active{opacity:1!important;border-bottom:3px solid #236de7}.wpmdb .subnav li a{color:#000}.wpmdb .subnav-item-active a{color:#236de7!important}.wpmdb .accordion-collapsed{padding:.5rem 1.5rem}.wpmdb .accordion-label-container{width:10rem}.wpmdb .accordion-locked{opacity:.5;border:1px solid #999;padding:.5rem 1.5rem;border-radius:4px}.wpmdb .locked-accordion-link{color:rgba(0,0,0,.8)}.wpmdb .accordion-icon-locked{margin-right:1rem;opacity:1!important;width:20px;height:20px}.wpmdb .accordion-locked h2,.wpmdb .accordion-locked p{opacity:1}.wpmdb .accordion-wrap{min-width:70rem}.wpmdb .accordion-expand{margin-top:-.15rem;border-radius:0 0 4px 4px!important;padding:1rem 1rem 2.5rem;justify-content:space-between}.wpmdb .nested-accordion{background:#fff;border:1px solid #d6d6d6;box-shadow:0 1px 4px 0 rgba(0,0,0,.05),0 1px 1px 0 rgba(0,0,0,.05);border-radius:3px;padding:0 1.25rem;min-height:3.5rem;margin:1.25rem .6rem 0;cursor:pointer;flex-grow:1}.wpmdb .nested-accordion-arrow{margin-right:1rem}.wpmdb .nested-accordion-title{opacity:.7;font-size:.88rem;font-weight:600;color:#000;margin:0}.wpmdb .nested-accordion-preview{margin:.1rem 0 0;opacity:.6}.wpmdb .nested-accordion-preview-divider{opacity:.3;margin:0 .5rem}.wpmdb .accordion-checkbox{margin-right:1rem!important;border-radius:2px!important}.wpmdb .nested-accordion-expanded{background:#45719b;box-shadow:0 -2px 1px 0 rgba(0,0,0,.05),0 -1px 1px 0 rgba(0,0,0,.05);border-radius:4px 4px 0 0}.wpmdb .nested-accordion-expanded-body{border-radius:0 0 4px 4px;padding:1.5rem 1.25rem;margin:-.1rem .6rem;cursor:inherit;min-height:1rem}.wpmdb .nested-accordion-arrow-expanded{margin-right:1rem;-webkit-transform:rotate(180deg);transform:rotate(180deg);fill:#fff}.wpmdb .nested-accordion-expanded-title{font-size:.88rem;font-weight:700;color:#fff;margin:0}.wpmdb .accordion-divider{width:1px;height:2.1rem;margin-right:2rem}.wpmdb .accordion-preview{opacity:.6;font-size:.8rem;font-weight:400}.wpmdb .btn{background-color:#236de7;color:#fff;border-radius:4px;font-size:.8rem;text-transform:uppercase;font-weight:700;padding:1.1rem 2.25rem;border:1px solid #236de7;letter-spacing:.05rem;cursor:pointer;text-align:center;white-space:nowrap}.wpmdb .btn svg{right:10px;position:relative}.wpmdb .btn:hover{background-color:#397be9;outline:0;border-color:#397be9}.wpmdb .btn:active{background-color:#1f61cf;border-color:#1f61cf;outline:0}.wpmdb .btn:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .btn.delete{background:#dc3232;margin-left:0;border:1px solid #dc3232;padding-top:.4rem}.wpmdb .btn.delete:hover{background:#c1201d;outline:0;border-color:#c1201d}.wpmdb .btn.delete:active{background-color:#ac1714;border-color:#ac1714}.wpmdb .btn.delete:focus{box-shadow:0 0 0 2px #fff,0 0 1px 4px rgba(207,42,39,.6)}.wpmdb .btn-stroke{border:1px solid #236de7;background:transparent;color:#236de7;box-shadow:none;outline:0}.wpmdb .btn-stroke:hover{background:rgba(7,119,239,.15);outline:0}.wpmdb .btn-stroke:active{background:rgba(7,119,239,.3);outline:0}.wpmdb .btn-disabled,.wpmdb .btn-disabled:hover{border:1px solid #dadada;background:transparent;color:#dadada;box-shadow:none}.wpmdb .btn-disabled:hover{cursor:default}.wpmdb .btn-disabled:active{border:1px solid #dadada;background:transparent;color:#dadada;box-shadow:none}.wpmdb .btn-disabled:focus{outline:0;box-shadow:none}.wpmdb .btn-sm{padding:.65rem 1.5rem;min-width:6.5rem}.wpmdb .btn-tooltip,.wpmdb .btn-tooltip-stroke{position:relative;padding:.4rem .6rem .5rem;height:30px;opacity:1;letter-spacing:0;text-transform:none;font-weight:600}.wpmdb .btn-tooltip-stroke.icon,.wpmdb .btn-tooltip.icon{padding-left:20px}.wpmdb .btn-tooltip-stroke svg,.wpmdb .btn-tooltip svg{position:absolute;top:5px;left:4px}.wpmdb .btn-tooltip-stroke.save-profile,.wpmdb .btn-tooltip.save-profile{padding:.4rem .7rem .5rem 1.6rem;margin-left:6px;height:30px}.wpmdb .btn-tooltip-stroke.save-profile svg,.wpmdb .btn-tooltip.save-profile svg{left:6px;top:5px}.wpmdb .btn-tooltip{margin:0 .5rem}.wpmdb .btn-tooltip.delete{padding:.4rem .7rem .5rem 1.6rem}.wpmdb .btn-tooltip.profile-screen #el_0iWebJDPz{width:24px;height:26px}.wpmdb .btn-tooltip-icon{margin-right:.2rem}.wpmdb .btn-tooltip-stroke{border:1px solid #9a9a9a;border-radius:4px;background:transparent;color:#9a9a9a;box-shadow:none;cursor:pointer;font-size:.8rem;text-align:center}.wpmdb .btn-tooltip-stroke:hover{background:hsla(0,0%,56.9%,.15);border-color:#9a9a9a}.wpmdb .btn-tooltip-stroke:active{background:hsla(0,0%,56.9%,.3);border-color:#9a9a9a}.wpmdb .btn-tooltip-stroke:focus{box-shadow:0 0 0 2px #fff,0 0 1px 4px hsla(0,0%,56.9%,.6)}.wpmdb .btn-sm-icon{padding-right:.1rem;margin-left:5px}.wpmdb .notification{font-size:.8rem;margin:.75rem 0;box-shadow:0 1px 8px 0 rgba(0,0,0,.05),0 1px 3px 0 rgba(0,0,0,.1);border-radius:3px;padding:1rem 1.5rem;border-left:5px solid #ffba00}.wpmdb .notification.old-profile-notice{margin:0 0 1.1rem}.wpmdb .notification p{line-height:1.6}.wpmdb .notification strong:first-child{font-size:14px}.wpmdb .notification.h4{font-size:1rem}.wpmdb .notification.success-notice{border-left:5px solid #7ad03a}.wpmdb .notification.error-notice{border-left:5px solid #dc3232}.wpmdb .notification a{text-decoration:underline;font-weight:600}.wpmdb .notification a:hover{text-decoration:none}.wpmdb .notification ul{padding:initial;margin:initial;margin-left:30px}.wpmdb .notification li{list-style:disc outside none;list-style:initial;margin:initial;padding:6px 0}.wpmdb .import-panel .notification{margin:1rem 0}.wpmdb .connect-to-remote{display:grid;grid-template-columns:repeat(3,1fr);grid-column-gap:.6rem;-webkit-column-gap:.6rem;column-gap:.6rem}.wpmdb .connect-to-remote .error-message{margin-top:.8rem;font-weight:500}.wpmdb .connect-to-remote .auth-form{grid-template-columns:repeat(2,1fr);grid-row:2;margin-top:.4rem}.wpmdb .connect-to-remote .version-mismatch-error{font-weight:400}.wpmdb .connect-to-remote .version-mismatch-error .svg-spinner{top:-9px}.wpmdb .connect-to-remote textarea{width:405px;margin-bottom:0}.wpmdb .connect-to-remote .full{grid-column:1/4;margin-bottom:0}.wpmdb .connect-to-remote .notification{margin-top:1rem}@media screen and (max-width:900px){.wpmdb .connect-to-remote{grid-template-columns:repeat(2,1fr)}}.wpmdb .connect-panel.panel-body{padding:32px 40px}.wpmdb .connect-panel .btn{margin-top:.9rem}.wpmdb .connect-panel .connecting-message{margin-bottom:0}.wpmdb .global-notice{margin-bottom:1.25rem}.wpmdb .notification-content{max-width:44rem;line-height:1.5}.wpmdb .button-group{width:28.3333%;margin-right:1%;float:left}.wpmdb .button-group button p{margin:0 0 10px}.wpmdb .actions-panel .panel-header-wrap.has-summary-no-child.panel-open{grid-template-columns:1fr 6fr 0}.wpmdb .actions-panel .action-tooltip{max-width:200px}.wpmdb .action-buttons{padding:1rem 1.7rem .5rem 1.25rem}.wpmdb .action-buttons h4{font-size:.85rem;font-weight:500;margin-top:0;margin-bottom:1.75rem}@media(max-width:1350px){.wpmdb .action-buttons h4{font-size:.8rem}}.wpmdb .action-buttons .action-tooltip.wack:after,.wpmdb .action-buttons .action-tooltip.wack:before{left:20%!important}.wpmdb .migration-buttons{margin-top:30px;display:table}.wpmdb .migration-buttons .run-migration,.wpmdb .migration-buttons span{display:table-cell}.wpmdb .speech-bubble-left{position:relative;background:#fff;border-radius:5px;padding:.75rem 1rem;max-width:10rem}.wpmdb .speech-bubble-left p{margin-top:0}.wpmdb .speech-shadow{box-shadow:0 5px 24px 0 rgba(4,34,63,.16)}.wpmdb .speech-bubble-left:after{display:flex;content:"";position:absolute;left:0;top:50%;width:0;height:0;border:10px solid transparent;border-right-color:#fff;border-left:0;margin-top:-.6rem;margin-left:-.6rem}.wpmdb .speech-bubble-top{position:relative;background:#fff;border-radius:3px;padding:.75rem 1rem;max-width:6rem}.wpmdb .speech-bubble-top:after{display:flex;content:"";position:absolute;left:1.5rem;top:0;width:0;height:0;border:10px solid transparent;border-right-color:#fff;border-left:0;margin-top:-.9rem;-webkit-transform:rotate(90deg);transform:rotate(90deg)}.wpmdb .backup-dir{font-weight:500;color:#000;opacity:.5;padding-left:0;margin-bottom:0}.wpmdb .tooltip-saved{background:#fff;box-shadow:0 1px 4px rgba(0,0,9,.12);border-radius:3px;padding:.2rem .4rem;display:flex;align-items:center}.wpmdb .tooltip-saved-icon{margin-right:.25rem}.wpmdb .tooltip-saved p{font-size:.8rem;font-weight:600;line-height:1}.wpmdb .arrow-search-replace{padding:0 .3rem;margin-top:.1rem}.wpmdb .search-replace-heading .td-1{flex-grow:10}.wpmdb .search-replace-heading .td-2{flex-grow:2.3}.wpmdb .search-replace-data .td-1,.wpmdb .search-replace-heading .td-3,.wpmdb .search-replace-heading .td-4{flex-grow:10}.wpmdb .search-replace-data .td-2{flex-grow:2}.wpmdb .search-replace-data .td-3{flex-grow:10}.wpmdb .custom-search .header-row{padding:10px 0;grid-template-columns:0 5fr .5fr 5fr .5fr}.wpmdb .custom-search .replace-old.disabled:hover{color:rgba(51,51,51,.5)}.wpmdb .custom-search-replace-wrapper tr{padding:.4rem 0}.wpmdb .custom-search-replace-heading .td-1{flex-grow:6}.wpmdb .custom-search-replace-heading .td-2{flex-grow:2.3}.wpmdb .custom-search-replace-heading .td-3{flex-grow:6}.wpmdb .custom-search-replace-heading .td-4{flex-grow:1}.wpmdb .custom-search-replace-data .td-1{flex-grow:.5}.wpmdb .custom-search-replace-data .td-2{flex-grow:6}.wpmdb .custom-search-replace-data .td-3{flex-grow:2}.wpmdb .custom-search-replace-data .td-4{flex-grow:6}.wpmdb .custom-search-replace-data .td-5{flex-grow:.5}.wpmdb tr:nth-child(2n){background:#f7f7f7}.wpmdb tr:nth-child(odd){background:#fff}.wpmdb .table{width:100%}.wpmdb .table td{padding:.5rem}.wpmdb .styled-check{position:relative;top:3px;margin-right:3px}.wpmdb .profile-header-arrow{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);position:relative;top:4px;opacity:.5;margin:0 10px}.wpmdb .shadow-div{background:#fff;border:1px solid #d6d6d6;box-shadow:0 1px 8px 0 rgba(0,0,0,.05),0 2px 1px 0 rgba(0,0,0,.03);border-radius:6px}.wpmdb .backups-table .styled-check polyline,.wpmdb .profile-table .styled-check polyline{stroke:#fff}.wpmdb .backups-table tr.toggled,.wpmdb .profile-table tr.toggled{padding-top:0;padding-bottom:0;padding-right:8px}.wpmdb .backups-table td,.wpmdb .profile-table td{padding:.45rem}.wpmdb .backups-table td.date,.wpmdb .profile-table td.date{width:30%}.wpmdb .backups-table td .confirm-delete,.wpmdb .profile-table td .confirm-delete{position:absolute;top:-2.8rem;left:.6rem}.wpmdb .backups-table td.relative,.wpmdb .profile-table td.relative{position:relative;padding:0}.wpmdb .backups-table td:first-child,.wpmdb .profile-table td:first-child{padding-left:0;overflow-wrap:break-word}.wpmdb .backups-table td .delete-profile,.wpmdb .profile-table td .delete-profile{padding-right:0}.wpmdb .backups-table td:nth-child(4),.wpmdb .profile-table td:nth-child(4){padding-left:1.05rem}.wpmdb .table-heading{padding:.15rem 1.5rem}.wpmdb .table-divider-line{height:1px;width:100%}.wpmdb tr{padding:.4rem 1.25rem}.wpmdb table{width:100%}.wpmdb .table-col-date{flex-grow:4}.wpmdb .table-col-item{flex-grow:16}.wpmdb .table-col-action{flex-grow:1;margin-left:.5rem}.wpmdb .container-default{padding:1rem 1.25rem}.wpmdb .container-default,.wpmdb .container-table{background:#fff;border:1px solid #d6d6d6;border-radius:3px}.wpmdb .container-table{overflow:scroll}.wpmdb .container-table li{margin:.2rem!important;padding:.1rem 1rem}.wpmdb .container-table li:active,.wpmdb .container-table li:hover{background:#a5ddf1}.wpmdb .container-toggle{background:#fff;border:1px solid #d6d6d6;border-radius:3px;width:20rem;padding:1.25rem 1.5rem}.wpmdb .btn-container-toggle{cursor:pointer;text-align:left}.wpmdb .container-toggle-active{background:rgba(128,189,212,.2);border:1px solid #236de7}.wpmdb .migration-progress{background:#fff;box-shadow:0 2px 8px 0 rgba(0,0,0,.05),0 2px 1px 0 rgba(0,0,0,.05);box-sizing:border-box;border-radius:4px;display:flex;max-height:none;padding:40px;width:100%}@media(min-height:680px){.wpmdb .migration-progress{max-height:calc(100vh - 128px)}.wpmdb .migration-progress:not(:last-child){max-height:none}}@media(min-height:840px){.wpmdb .migration-progress:not(:last-child){max-height:calc(100vh - 280px)}}.wpmdb .migration-progress input[type=checkbox]{cursor:pointer;margin-top:-1px!important;margin-right:.05rem}.wpmdb .error-icon{margin-right:10px}.wpmdb .migration-title{margin:.5rem 0 0;max-width:645px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:0;font-weight:400}.wpmdb .migration-title .error-icon{margin-right:15px}.wpmdb .migration-timer{letter-spacing:-.01rem;font-size:.88rem;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";font-variant-numeric:tabular-nums;color:#707070;align-self:center;text-align:right}.wpmdb .migration-progress-steps{align-items:center;font-size:.75rem;display:flex;margin-right:1rem;margin-top:1.2rem}.wpmdb .migration-progress-steps span,.wpmdb .migration-progress-steps svg{margin-right:3px}.wpmdb .migration-progress-btn{padding:.6rem 2.4rem;margin-right:.75rem;clear:both;float:left}.wpmdb .migration-progress-controls{margin-top:3rem;width:100%}.wpmdb .migration-error .migration-percentage{color:#dc3232}.wpmdb .migration-percentage{font-size:1.7rem!important;font-weight:300;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";font-variant-numeric:tabular-nums;color:#236de7;margin:.5rem .5rem 0 0!important}.wpmdb .migration-data-transferred{font-size:.75rem;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";font-variant-numeric:tabular-nums;color:#707070!important;text-transform:uppercase;line-height:1;margin-bottom:.85rem!important}.wpmdb .migration-tables-searched{line-height:1;margin-bottom:.85rem!important;color:#333;margin-left:50px;font-weight:400}.wpmdb .migration-progress-bar{width:100%;overflow:hidden}.wpmdb .migration-progress-bar,.wpmdb .migration-progress-bar-running{height:.5rem;border-radius:5rem}.wpmdb .migration-error .migration-progress-bar-running{background:#dc3232}.wpmdb .migration-error .migration-timer{display:flex;margin-bottom:2rem;align-self:center}.wpmdb .migration-complete{width:100%}.wpmdb .migration-complete .migration-title{margin-bottom:0;margin-top:1rem;font-weight:500}.wpmdb .migration-complete .backup-path{display:block;margin-top:.6rem}.wpmdb .migration-complete .backup-path:hover{text-decoration:underline}.wpmdb .migration-progress-content{display:flex;flex-direction:column;width:100%}.wpmdb .migration-progress-content p{margin-bottom:2rem}.wpmdb .migration-progress-content .btn-sm{min-width:7.5rem}.wpmdb .preview-migration-heading{color:#707070;margin-left:10px;font-weight:400}.wpmdb .migration-complete-summary{text-align:center;margin-bottom:2rem;margin-top:0}.wpmdb .mdb-migration-error h4,.wpmdb .migration-complete-summary{opacity:1;font-size:.95rem!important;font-weight:400!important;line-height:1.5!important}.wpmdb .migration-complete-close-btn{margin:.5rem auto 0;padding-left:2rem;padding-right:2rem}.wpmdb .csv-download-btn,.wpmdb .migration-complete-close-btn{min-width:220px}.wpmdb .popup-close{margin-right:-.8rem;margin-top:-.8rem;height:16px;cursor:pointer}.wpmdb .popup-close:focus-visible{border-radius:4px;outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .twitter{position:absolute;top:.8rem;right:0;height:24px}.wpmdb .review-container{background:rgba(35,109,231,.05);border:1px solid #236de7;border-radius:4px;padding:1.25rem}.wpmdb .review-container-text{font-size:1rem;color:#236de7}.wpmdb .review-stars{margin-left:1rem;cursor:pointer}.wpmdb .migration-free-advert{padding:3rem 3.25rem;max-width:56rem}.wpmdb .migration-free-advert h2{margin-bottom:2rem}.wpmdb .migration-free-advert li{padding:.35rem 0}.wpmdb .migration-free-advert-icon{margin-right:.5rem}.wpmdb .migration-free-advert-btn{margin-top:2rem}.wpmdb .video-container{padding:.65rem 1.5rem;margin-top:1.1rem}.wpmdb .video-container:hover{cursor:pointer}.wpmdb .video-container .column:nth-child(2){margin-left:2rem}.wpmdb .video-container:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .video-container-icon{margin-right:2rem;margin-top:.25rem}.wpmdb .video-container h3{margin-bottom:.5rem}.wpmdb .tweet-testimonial{background:#04223f;border-radius:4px;padding:1.5rem;margin-top:1rem}.wpmdb .twitter-handle{margin-left:.5rem}.wpmdb .tweet-testimonial-text{margin-top:1rem}.wpmdb .avatar{width:3.5rem;height:3.5rem;margin-right:1.5rem}.wpmdb .sidebar{border-radius:4px;max-width:16rem}.wpmdb .sidebar-content{padding:1.25rem}.wpmdb .sidebar-graphic{width:100%}.wpmdb .sidebar h3{margin-bottom:1rem;font-weight:400;font-size:1.3rem}.wpmdb .sidebar-input-text{margin-top:.5rem;width:100%;padding:.4rem;box-sizing:border-box;background:#fff;border:1px solid #d6d6d6;border-radius:3px;font-size:.8rem}.wpmdb .coupon-text{margin-bottom:1rem}.wpmdb .sidebar-btn{margin-top:1rem;text-transform:none;padding:.6rem;width:100%;text-align:center;font-weight:500}.wpmdb .sidebar-smalltext{opacity:.5;font-size:.75rem;color:#000;margin-top:1.5rem;margin-bottom:1rem}.wpmdb .sidebar-tweet-testimonial{background:#04223f;padding:1rem}.wpmdb .sidebar-tweet-testmonial h5{font-size:1rem}.wpmdb .sidebar-tweet-text{font-size:.88rem;color:#fff;margin-top:1rem;margin-bottom:.25rem}.wpmdb .documentation-panel{padding:2rem}.wpmdb .documentation-panel li{padding:.35rem 0}.wpmdb .documentation-link{font-size:1rem}.wpmdb .custom-search-replace .row,.wpmdb .standard-search-replace .row{border-radius:5px}.wpmdb .custom-search-replace .row .header-row,.wpmdb .standard-search-replace .row .header-row{padding-top:0}.wpmdb .custom-search-replace p:last-of-type,.wpmdb .standard-search-replace p:last-of-type{margin-bottom:0}.wpmdb .__react_component_tooltip.type-dark a{color:#fff;text-decoration:underline}.wpmdb .action-tooltip{font-weight:400;max-width:460px;border-color:#d6d6d6!important;box-shadow:0 5px 24px 0 rgba(4,34,63,.16);line-height:1.2rem;padding:.75rem;color:#343434;z-index:99;position:fixed;opacity:1;border-radius:5px}.wpmdb .action-tooltip .dark{font-weight:500;color:grey}.wpmdb .action-tooltip.place-left:before{border-left-color:#d6d6d6!important}.wpmdb .action-tooltip.place-right{margin-left:25px}.wpmdb .action-tooltip.place-right:before{border-right-color:#d6d6d6!important}.wpmdb .action-tooltip.place-top:before{border-top-color:#d6d6d6!important}.wpmdb .action-tooltip.place-bottom{margin-top:30px}.wpmdb .action-tooltip.place-bottom:before{left:50%;border-bottom-color:#d6d6d6!important}.wpmdb .action-tooltip.place-bottom:after{left:50%;border-bottom-color:#fff;border-bottom-style:solid!important;border-bottom-width:6px!important}@media(max-width:700px){.wpmdb .action-tooltip.action-backup_local.place-bottom:after,.wpmdb .action-tooltip.action-backup_local.place-bottom:before{left:80%}}.wpmdb #welcome-wrap{height:170px;margin-top:20px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);clear:both}.wpmdb #welcome-wrap #welcome-img{width:170px;height:170px;float:left}.wpmdb #welcome-wrap .welcome-text{height:130px;padding:20px 25px 20px 195px;background:#fff}.wpmdb #welcome-wrap .welcome-text h3{font-weight:lighter;font-size:22px;margin:10px 0}.wpmdb #welcome-wrap .welcome-text p{font-size:15px;line-height:1.5}.wpmdb #welcome-wrap .welcome-text a{font-weight:700}.wpmdb input.readonly,.wpmdb input[readonly],.wpmdb textarea.readonly,.wpmdb textarea[readonly]{background-color:#e1e7ea;border-color:#c0cad1}.wpmdb .relative{position:relative}.wpmdb .sr-only{position:absolute;width:1px!important;height:1px!important;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.wpmdb input[type=text]:focus,.wpmdb select:focus,.wpmdb textarea:focus{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec;color:#000;color:initial}.wpmdb input[type=text]:hover,.wpmdb select:hover,.wpmdb textarea:hover{color:#000;color:initial}.wpmdb .float-left{float:left}.wpmdb .float-right{float:right}.wpmdb .header-wrap>.wrapper{display:grid}.wpmdb .header-wrap .inline-message.warning,.wpmdb .header-wrap .notification-message.warning-notice{background-color:#fff;border-left:4px solid #ffba00}.wpmdb .header-wrap .notification{margin-top:1.25rem}.wpmdb .header-wrap .inline-message,.wpmdb .header-wrap .notification-message{border-radius:0;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:10px 14px;font-size:13px}.wpmdb .header-wrap .wpmdb div.below-title.warning,.wpmdb .header-wrap div.updated.warning{box-sizing:border-box;margin:10px 0}.wpmdb .child-panel .panel-summary,.wpmdb .muted,.wpmdb .panel-summary .panel-summary{padding-left:0}.wpmdb .collapsed-panel{padding:.75rem;margin-bottom:.8rem}.wpmdb .svg-spinner{position:absolute;top:-2px;left:2px}.wpmdb .error-btn{margin-top:50px}.wpmdb .mdb-migration-error h4{margin:2rem 0 2.5rem}.wpmdb .mdb-migration-error h4 span{color:#236de7;font-weight:600}.wpmdb .mdb-migration-error h4 span .black{color:#000}.wpmdb .mdb-migration-error .mdb-migration-error-message a{color:#80ddff;text-decoration:underline}.wpmdb .mdb-migration-error .mdb-migration-error-message a:hover{text-decoration:none}.wpmdb .mdb-migration-error .mdb-migration-error-message .error-block{padding:15px;background:#424141;color:#fff;border-radius:4px;margin-bottom:38px;overflow:scroll;max-height:200px}.wpmdb .wpmdb-profiles{display:inline;display:initial}.wpmdb .wpmdb-profiles .new-migration{margin-top:30px;display:inline-block;line-height:normal;padding:12px 35px 16px}.wpmdb .wpmdb-profiles .new-migration svg{position:relative;top:3px}.wpmdb #import-file{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;white-space:nowrap;width:1px}.wpmdb #import-file+label{max-width:82px}.wpmdb .import-message input:focus-visible+label{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .import-message label{margin-left:0}.wpmdb .import-message .btn{padding:6px 20px}.wpmdb .import-message span{display:inline-block;margin-left:0;padding-left:1rem}.wpmdb .action-panel input[type=radio]:focus-visible,.wpmdb .child-panel input[type=radio]:focus-visible,.wpmdb .wpmdb-form input[type=radio]:focus-visible{border:1px solid #7e8993;outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .action-panel label,.wpmdb .child-panel label,.wpmdb .wpmdb-form label{margin-left:.25rem}.wpmdb .action-panel input[type=radio],.wpmdb .child-panel input[type=radio],.wpmdb .wpmdb-form input[type=radio]{width:16px;height:16px;min-width:0;margin-top:0}.wpmdb .action-panel input[type=radio]:checked,.wpmdb .child-panel input[type=radio]:checked,.wpmdb .wpmdb-form input[type=radio]:checked{background:#236de7;border:none}.wpmdb .action-panel input[type=radio]:checked:before,.wpmdb .child-panel input[type=radio]:checked:before,.wpmdb .wpmdb-form input[type=radio]:checked:before{background-color:#fff;width:6px;height:6px;margin:0;position:relative;top:5px;left:5px}.wpmdb .action-panel input[type=checkbox],.wpmdb .child-panel input[type=checkbox],.wpmdb .wpmdb-form input[type=checkbox]{width:16px!important;height:16px!important}.wpmdb .action-panel input[type=checkbox]:disabled,.wpmdb .child-panel input[type=checkbox]:disabled,.wpmdb .wpmdb-form input[type=checkbox]:disabled{background:rgba(187,189,198,.3);cursor:not-allowed;opacity:1}.wpmdb .action-panel input[type=checkbox]:disabled+label,.wpmdb .child-panel input[type=checkbox]:disabled+label,.wpmdb .wpmdb-form input[type=checkbox]:disabled+label{cursor:not-allowed;color:#3f3f3f}.wpmdb .action-panel input[type=checkbox]:focus,.wpmdb .child-panel input[type=checkbox]:focus,.wpmdb .wpmdb-form input[type=checkbox]:focus{border:1px solid #7e8993}.wpmdb .action-panel input[type=checkbox]:checked,.wpmdb .child-panel input[type=checkbox]:checked,.wpmdb .wpmdb-form input[type=checkbox]:checked{background-color:#236de7;border-radius:4px;border:none}.wpmdb .action-panel input[type=checkbox]:checked:disabled,.wpmdb .child-panel input[type=checkbox]:checked:disabled,.wpmdb .wpmdb-form input[type=checkbox]:checked:disabled{background:#bbbdc6}.wpmdb .action-panel input[type=checkbox]:checked:before,.wpmdb .child-panel input[type=checkbox]:checked:before,.wpmdb .wpmdb-form input[type=checkbox]:checked:before{content:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M4 8.5L7.2 11 12 5' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");margin:initial;position:relative;width:16px!important;height:16px!important}.wpmdb select option:checked{background-color:#a5ddf1!important}.wpmdb .table-size{font-weight:500;color:grey}.wpmdb .select-wrap{margin-top:16px}.wpmdb .select-wrap ul{padding:8px}.wpmdb .select-wrap ul li{height:32px;margin:0;display:flex;align-items:center;border-radius:4px}.wpmdb .select-wrap ul li:hover{background-color:#f7f7f7}.wpmdb .select-wrap ul li input{margin:0 .25rem 0 8px}.wpmdb .select-wrap ul li label{margin-left:.25rem;width:100%}.wpmdb .multiselect-options{margin-bottom:0}.wpmdb .multiselect-options button{display:inline-block;padding:0 .5rem;color:#0073aa;font-weight:500;text-decoration:underline;margin-bottom:0;border-radius:4px}.wpmdb .multiselect-options button:hover{text-decoration:none}.wpmdb .multiselect-options button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .multiselect-options button:first-child{padding-left:0}.wpmdb .options-list{margin:.15rem 0}.wpmdb .options-list .dark{font-weight:500;color:grey}.wpmdb .options-list>div{margin:.4rem 0}.wpmdb .options-list>div:first-child{margin-top:0}.wpmdb .options-list>div:last-child{margin-bottom:0}.wpmdb .options-list small{margin:15px 0 0 10px;display:block}.wpmdb .question-mark{border-radius:50%}.wpmdb .question-mark:focus{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}@-webkit-keyframes spinner-animation{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(1turn)}}@keyframes spinner-animation{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(1turn)}}.wpmdb #el_6X7lquFKkl{fill:#d6d6d6}.wpmdb .styled-spinner-wrap{width:1.2rem;height:1.2rem;-webkit-animation:spinner-animation .6s infinite;animation:spinner-animation .6s infinite;-webkit-animation-timing-function:cubic-bezier(.42,.44,.74,.74);animation-timing-function:cubic-bezier(.42,.44,.74,.74);-webkit-animation-play-state:running;animation-play-state:running;display:inline-block}.wpmdb .styled-spinner-wrap.paused{-webkit-animation-play-state:paused;animation-play-state:paused}.wpmdb .red{color:#dc3232}.wpmdb .migration-message{color:#000;opacity:.6;font-weight:600;padding:8px 0}.wpmdb .notification .licence-action{margin-top:.8rem}.wpmdb .beta-badge{background:#236de7;color:#fff;font-size:11px;padding:1px 10px;border-radius:5px;margin-left:8px;text-transform:uppercase}.wpmdb .high-performance-setting{margin-top:1rem}.wpmdb .fs-stats-container{display:flex;flex-direction:row;justify-content:space-evenly;text-align:left;align-items:flex-start;background:#f8f8f8;border:1px solid #eee;border-radius:4px;font-weight:400;font-size:11px;margin-top:20px;line-height:11px}.wpmdb .fs-stats-container .fs-stats{text-align:left;display:flex;flex-direction:column;align-items:flex-start;flex-grow:1;border-right:1px solid #eee;padding:16px 0 16px 24px}.wpmdb .fs-stats-container .fs-stats:first-child{padding-left:16px}.wpmdb .fs-stats-container .fs-stats .fs-stat-value{margin-top:6px;font-weight:500;font-size:12.5px;line-height:12.5px}.wp-admin .wpmdb .compatibility-mode-block select[multiple]{height:7rem}.settings-node-enter{opacity:.1}.settings-node-enter-active{opacity:1;transition:opacity .8s}.settings-node-exit{opacity:1}.settings-node-exit-active{opacity:0;transition:opacity .45s}.btn.settings-node-exit-active{display:none}.settings-spinner{position:absolute;top:-2px;left:2px}.settings-spinner.relative{position:relative;top:4px;left:5px;height:22px;width:22px}.settings-spinner #el_6X7lquFKkl{fill:#236de7}.wrap{margin:0}#wpcontent{padding-left:0}.wp-core-ui select[multiple]{padding:2px}option{padding:3px;letter-spacing:-.015rem}.panel-summary{line-height:1.5!important;padding-left:2rem}.version-mismatch-error button{display:inline!important;font-size:inherit!important}.version-mismatch-error .blue-check{position:absolute;margin-top:-2px;display:inline}.remote-update-spinner{position:absolute!important}@media screen and (max-width:782px){.auto-fold #wpcontent{padding-left:0}}.__react_component_tooltip.show{opacity:1!important}.license-notification-spinner{position:absolute;top:-10px;left:2px}.modal-container{max-width:960px;padding-bottom:64px;width:100%}.wpmdb .free .actions-panel .action-button-group{height:100%;display:flex;flex-direction:column}@media(max-width:1400px){.wpmdb .free .actions-panel .action-button-group{max-width:260px}.wpmdb .free .actions-panel .action-button-group:last-child h4{margin-top:35px}}.wpmdb .free .actions-panel .action-row{max-width:100%}@media(max-width:1400px){.wpmdb .free .actions-panel .action-row{grid-template-columns:2fr 2fr;padding-right:0}}.wpmdb .free .addons-container{grid-template-columns:repeat(2,minmax(240px,1fr))!important}.wpmdb .free .addon-container{min-height:16rem}.wpmdb .free .license-block{grid-gap:20px;grid-template-columns:1.2fr 1fr;justify-items:end}.wpmdb .free .license-block .license-status{top:0}@media(max-width:1280px){.wpmdb .free .profiles-list{grid-template-columns:1fr;grid-gap:1.5rem}}.wpmdb .free-advanced-options{display:grid}.wpmdb .wrapper-free{display:grid;grid-template-columns:8fr 315px}.wpmdb .mdb-free-sidebar{margin-left:30px;display:flex;flex-direction:column}.wpmdb .mdb-free-sidebar .inner-wrap{background:#fff;border-radius:7px;border:1px solid #d9e1eb;box-shadow:0 1px 2px 0 rgba(0,0,0,.1)}.wpmdb .mdb-free-sidebar .block{padding:20px}.wpmdb .mdb-free-sidebar .wpmdb-banner{display:block;background-color:#a5ddf1;background-position:0 100%;background-repeat:no-repeat;padding-bottom:180px;box-shadow:none;border-radius:7px 7px 0 0;color:#042340}.wpmdb .mdb-free-sidebar .wpmdb-banner h4{font-weight:300;font-size:28px;margin:0 0 15px;padding:25px 0 0 20px}.wpmdb .mdb-free-sidebar .wpmdb-banner p{font-size:14px;padding:0 20px;margin:0}.wpmdb .mdb-free-sidebar .wpmdb-banner img{display:block}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details{background-color:#042340;padding:10px 20px 20px;color:#eee;font-size:13px;margin:0;display:block;text-decoration:none}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details h1{font-size:28px;color:#a5ddf1;margin:0 0 15px;padding:0;text-decoration:none;font-weight:200;line-height:1}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details h3{color:#a5ddf1;font-weight:500;text-decoration:none;font-size:15px;letter-spacing:-.2px;box-shadow:none;line-height:1.5}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details p{margin:0}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details a{color:#eee;font-weight:700;text-decoration:none;font-size:16px;box-shadow:none}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details a:hover{color:#fff}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details ul{margin:0}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details ul li{list-style:none;margin:8px 0;padding-left:28px;line-height:19px;background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%2388DEF2' d='M15.878 6.61A8 8 0 11.122 9.39a8 8 0 0115.756-2.78zm-8.71 5.618l5.936-5.936a.516.516 0 000-.73l-.73-.73a.516.516 0 00-.73 0l-4.84 4.841-2.26-2.26a.516.516 0 00-.73 0l-.73.73a.516.516 0 000 .73l3.354 3.355a.516.516 0 00.73 0z'/%3E%3C/svg%3E") 0 2px no-repeat}.wpmdb .mdb-free-sidebar .wpmdb-discount{border-top:none;padding-bottom:5px}.wpmdb .mdb-free-sidebar .wpmdb-discount h2{padding:0;margin:0 0 .5em;color:#666;font-size:17px;line-height:1.4em;float:none;font-weight:500}.wpmdb .mdb-free-sidebar .wpmdb-discount h3{font-size:16px;margin:20px 0 0}.wpmdb .mdb-free-sidebar .wpmdb-discount h3 a{color:#fff;display:flex;background:#236de7;box-shadow:0 2px 0 0 #0d51c1;border-radius:4px;margin:0 auto;padding:.9rem 0 .8rem;text-align:center;text-transform:uppercase;font-size:14px;letter-spacing:1px;justify-content:center;box-shadow:0 2px 2px 0 #0d53bf}.wpmdb .mdb-free-sidebar .wpmdb-discount h3 a:hover{background:#145dd6}.wpmdb .mdb-free-sidebar .wpmdb-discount p{margin:0}.wpmdb .mdb-free-sidebar .wpmdb-discount p.interesting{margin-bottom:1em;line-height:1.4}.wpmdb .mdb-free-sidebar .wpmdb-discount .links{margin-bottom:2em}.wpmdb .mdb-free-sidebar .wpmdb-discount .links a{text-decoration:none}.wpmdb .mdb-free-sidebar .wpmdb-discount .discount-applied{color:#999;font-size:12px;line-height:1.4em;text-align:center;margin:1.2rem auto!important;width:100%}.wpmdb .mdb-free-sidebar .wpmdb-discount .field{margin-bottom:.5em}.wpmdb .mdb-free-sidebar .wpmdb-discount .field p{margin-bottom:.3em}.wpmdb .mdb-free-sidebar .wpmdb-discount .field.submit-button{margin-bottom:1em}.wpmdb .mdb-free-sidebar .testimonial{border:1px solid #d9e1eb;border-radius:6px;padding:0 1rem;width:220px;display:flex;flex-direction:column;align-items:center;justify-content:center;margin:0 auto;box-shadow:0 1px 2px 0 rgba(0,0,0,.1)}.wpmdb .mdb-free-sidebar .testimonial p{margin:0}.wpmdb .mdb-free-sidebar .testimonial .header{display:flex;justify-content:space-between;width:100%;padding:1rem 0 .4rem;align-items:center}.wpmdb .mdb-free-sidebar .testimonial .quote{font-size:15px;color:#666;letter-spacing:-.25px;line-height:20px;margin-bottom:1rem}.wpmdb .mdb-free-sidebar .testimonial .author{white-space:nowrap;text-align:right;font-size:16px;font-weight:600;color:#666;margin-top:-7px}.wpmdb .mdb-free-sidebar .testimonial .stars{white-space:nowrap;margin-bottom:5px}.wpmdb .mdb-free-sidebar .testimonial .stars .dashicons.dashicons-star-filled{color:#236de7}.wpmdb .mdb-free-sidebar .testimonial .via{text-align:right;font-size:12px}.wpmdb .mdb-free-sidebar .testimonial .via a{color:#666}.wpmdb .mdb-free-sidebar .testimonial .via a:before{content:"\F301";display:inline-block;-webkit-font-smoothing:antialiased;font:normal 18px/1 dashicons;vertical-align:top;margin-right:3px}.wpmdb .dbi{background:#2e2e31;margin-top:1rem;padding:1rem;color:#fff;font-size:12px;font-weight:300;text-align:center;border-radius:0 0 7px 7px}.wpmdb .dbi .name{font-weight:500;margin-top:.5rem;justify-content:center}.wpmdb .dbi .name svg{padding-right:12px}.wpmdb .free-disabled .panel-header{grid-column:3/span 2;display:grid;grid-template-columns:2fr 32px;text-align:left}.wpmdb .free-disabled .panel-header-wrap{min-height:56px;padding:0 1.25rem}.wpmdb .free-disabled .panel-header-wrap.has-summary-no-child button{display:none}.wpmdb .free-disabled .enabled .panel-header-wrap.has-summary-no-child button{display:block}.wpmdb .free-disabled h4 label{font-size:.9rem;font-weight:600}.wpmdb .free-disabled .panel-title{min-width:95px;color:rgba(68,68,68,.7215686275)}.wpmdb .free-disabled .panel-summary{max-width:1023px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wpmdb .free-disabled .action-panel .panel-header-wrap:hover{cursor:auto}.wpmdb .free-disabled .disabled .panel-summary{text-overflow:clip;max-width:none;white-space:normal;position:relative;color:rgba(68,68,68,.7215686275)}.wpmdb .free-disabled .disabled .panel-summary a{padding:0;color:rgba(68,68,68,.7215686275);text-decoration:underline}.wpmdb .free-disabled .disabled .panel-summary svg{width:18px;position:absolute;top:-3px;left:1px}.wpmdb .free-disabled .panel-header-wrap.no-child{grid-template-columns:20px .4fr 4fr}.wpmdb .free-disabled .panel-header-wrap.has-summary-no-child{grid-template-columns:35px 160px 2fr 2fr}.wpmdb .free-disabled .has-divider .panel-header-wrap.has-summary-no-child{grid-template-columns:35px 160px 0 2fr 2fr}.wpmdb .free-disabled .has-divider .panel-header-wrap.has-summary-no-child .panel-header{grid-column:4/span 2}.wpmdb .custom-search-replace,.wpmdb .standard-search-replace{padding-top:.8rem}.wpmdb .custom-search-replace .row,.wpmdb .standard-search-replace .row{max-width:100%!important}.profiles-list{grid-column:1/3;grid-row:3;display:grid;grid-template-columns:repeat(2,1fr);grid-gap:.5rem;grid-column-gap:2rem}.profiles-list tr.disabled{opacity:.5}.profiles-list tr.disabled .link:hover{text-decoration:underline;cursor:default}.profiles-list .first-col{grid-column:1}.profiles-list .first-col h3{border-bottom:1px solid #000}.profiles-list .second-col{grid-column:2}.profiles-list .second-col .header{display:grid;grid-template-columns:repeat(2,1fr);border-bottom:1px solid #000}.profiles-list .second-col .header h3{margin-bottom:0}.profiles-list .second-col .header a{justify-self:end;align-self:end;padding-bottom:.5rem}.profiles-list .first-col,.profiles-list .second-col{padding:0 .5rem .5rem}.profiles-list .no-items-wrap.one-profile{align-self:center}.profiles-list .no-items-wrap .no-items{padding:1rem 1.5rem;color:#999}.profiles-list .table{display:grid;grid-template-rows:55px 0 1.3fr;padding-bottom:0}.profiles-list input[type=text]{display:flex;width:70%;margin:0 18px 0 0;max-width:382px;padding:10px;font-size:inherit;justify-self:start}.profiles-list .button-wrap{display:flex;height:40px;align-items:center}.profiles-list .action-btn.in-progress{opacity:.5}.profiles-list .action-btn.in-progress:hover{cursor:not-allowed}.profiles-list .action-btn.btn-success{display:flex;height:80%}.profiles-list .action-btn.btn-success svg{top:-1px;flex:1 1}.profiles-list .profile-table.one-profile{align-self:center}.profiles-list .profile-table .toggled td.table-col-action{padding:3px .4rem}.migrate-notice{border-width:1px;border-style:solid;border-radius:4px;display:grid;grid-template-columns:16px 1fr;padding:10px 16px;font-size:13px;grid-gap:16px;gap:16px;margin-top:16px;margin-bottom:16px;grid-column:1;grid-column-end:-1}.migrate-notice svg{margin-top:2px}.migrate-notice-content :first-child{padding-top:0;margin-top:0}.migrate-notice-content :last-child{padding-bottom:0;margin-bottom:0}.migrate-notice.danger{border-color:#dc3232;color:#b12006;background:#fef2f1}.migrate-notice.info{border-color:#0968ff;color:#3b5ed5;background:#edf6ff}.migrate-notice.success{border-color:#46b450;color:#196049;background:#ecfdf5}.migrate-notice.warning{border-color:#ffb92b;color:#ab5a19;background:#fffbea}.wpmdb .dry-run-results-table{background-color:#f7f7f7;position:relative;border-collapse:collapse;display:flex;flex-direction:column;flex:1 1;margin:1.5rem 0;overflow:hidden}.wpmdb .dry-run-results-table thead{border-bottom:1px solid #d6d6d6}.wpmdb .dry-run-results-table tbody{overflow-y:auto}.wpmdb .dry-run-results-table a.upgrade{color:#236de7;text-transform:uppercase;font-weight:700}.wpmdb .dry-run-results-table .flex-container{flex-wrap:nowrap;height:25px}.wpmdb .dry-run-results-table .flex-container :first-child{flex:0 0 40%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;min-width:0}.wpmdb .dry-run-results-table .flex-container :last-child{font-variant-numeric:tabular-nums;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum"}.wpmdb .dry-run-results-table .flex-container :not(:first-child){width:100%;text-align:right}.wpmdb .dry-run-results-table .flex-container .table-heading{color:#707070;padding:.5rem}.wpmdb .dry-run-results-table .result-item .table-results-button{border-radius:4px;font-weight:600;color:#0473aa;text-decoration:underline;font-variant-numeric:tabular-nums;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum"}.wpmdb .dry-run-results-table .result-item .table-results-button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .dry-run-results-table .result-item .table-name{font-weight:500}.wpmdb .dry-run-results-table .action-tooltip{max-width:15rem!important;text-align:left!important}.wpmdb .dry-run-results-table .waiting-dash{color:#707070}.wpmdb .dry-run-results-table th{color:#9fa0a7;text-transform:uppercase;font-weight:500;font-size:1em;text-align:left;position:-webkit-sticky;position:sticky;top:0}.wpmdb .dry-run-results-single-table{border:1px solid #d6d6d6;border-radius:5px;margin-top:1.5rem;overflow-y:scroll}.wpmdb .dry-run-results-single-table:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .dry-run-results-single-table li{border-bottom:1px solid #d6d6d6;margin:0;padding:15px}.wpmdb .dry-run-results-single-table del{background-color:#ffe6e6;color:#950202;text-decoration:line-through}.wpmdb .dry-run-results-single-table ins{background-color:#daf6da;color:#258d26;text-decoration:none}.wpmdb .dry-run-results-single-table code{background-color:#f7f7f7;border-radius:4px;display:block;line-height:1.5;margin:0;overflow-wrap:anywhere;padding:10px 15px}.wpmdb .dry-run-results-single-table .header{border-bottom:none}.wpmdb .dry-run-results-single-table .header :last-child{margin-left:10px}.wpmdb .dry-run-result-meta{display:flex;grid-gap:1rem;gap:1rem;margin-bottom:.5rem}.wpmdb .no-top-margin{margin-top:10px!important}.wpmdb .hidden{display:none!important}.wpmdb .dry-run-notice{margin:0 0 1.5rem}.wpmdb .dry-run-controls{margin-top:0}.wpmdb .dry-run-controls .pagination-controls{margin-left:auto;display:flex;flex-direction:row;align-items:center}.wpmdb .dry-run-controls .pagination-controls span{margin-right:1.5rem}.wpmdb .dry-run-controls .pagination-controls button{min-width:3.5rem}.wpmdb .dry-run-controls .pagination-controls :last-child{margin-right:0}.wpmdb .dry-run-back-btn{align-self:flex-start;color:#0473aa;font-weight:600;text-decoration:underline;margin-bottom:20px!important}.database_panel_has_controls #wpmdb-database{display:grid;grid-template-columns:35px 1fr auto}.database_panel_no_controls #wpmdb-database{display:grid;grid-template-columns:1fr auto}.panel-arrow{transition:-webkit-transform .15s ease-out;transition:transform .15s ease-out;transition:transform .15s ease-out,-webkit-transform .15s ease-out}.panel-arrow.open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.action-panel{display:grid;margin-bottom:1.1rem;border-radius:4px;opacity:1}.action-panel.child-panel{margin-bottom:.95rem}.action-panel.disabled{opacity:.85}.action-panel.shadows{box-shadow:0 -2px 1px 0 rgba(0,0,0,.05),0 -1px 1px 0 rgba(0,0,0,.05);border-radius:4px}.action-panel .panel-header-wrap{transition:background .2s ease-out;align-items:center;align-self:center;padding:8px 1.25rem;min-height:40px;display:grid}.action-panel .panel-header-wrap a{justify-self:end;padding:.3rem}.action-panel .panel-header-wrap:hover{cursor:pointer}.action-panel .panel-header-wrap.has-summary-no-child{display:grid;grid-template-columns:195px 1px 4fr;padding:8px 1.25rem;min-height:40px}.action-panel .panel-header-wrap.has-summary-no-child .button-wrap{justify-self:right}.action-panel .panel-header-wrap.has-summary-no-child .button-wrap button{width:20px;height:20px;border-radius:4px}.action-panel .panel-header-wrap.has-summary-no-child .button-wrap button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.action-panel .panel-header-wrap.no-child{display:grid;grid-template-columns:minmax(0,.8fr) 4fr}.action-panel .panel-header-wrap.child-panel,.action-panel .panel-header-wrap.child-panel .panel-title{color:#575757}.action-panel .panel-header-wrap.child-panel.panel-open{background:#396c9c;color:#fff;border-radius:4px 4px 0 0;margin:-1px -1px 0}.action-panel .panel-header-wrap.child-panel.panel-open .panel-title{color:#fff;opacity:1;font-size:.9rem}.action-panel .panel-header-wrap.child-panel.panel-open #accordion_collapsed_default_active{fill:#fff}.action-panel.actions-panel .panel-header-wrap.has-summary-no-child.panel-open,.action-panel.connect-panel .panel-header-wrap.has-summary-no-child.panel-open,.action-panel.import-panel .panel-header-wrap.has-summary-no-child.panel-open{grid-template-columns:1fr 6fr 0}.action-panel.disabled .panel-header-wrap{border-radius:3px}.action-panel .panel-title{margin:0;align-self:center;font-size:.95rem}.action-panel .panel-title .count{font-size:.8rem}.action-panel .panel-header{text-align:right}.action-panel .panel-header.has-summary{display:grid;grid-template-columns:5fr .3fr;text-align:left}.action-panel .panel-header p{font-size:.8rem;font-weight:400;color:#575757}.action-panel .panel-header.summary{display:grid;grid-template-columns:repeat(2,1fr)}.action-panel .panel-header.child-panel-header{display:grid;grid-template-columns:20px 5fr;text-align:left}.action-panel .panel-header.child-panel-header .button-wrap{display:flex;align-items:center}.action-panel .panel-header.child-panel-header .button-wrap button{border-radius:4px;height:20px;width:20px}.action-panel .panel-header.child-panel-header .button-wrap button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.action-panel .panel-header.child-panel-header p{margin:.1rem 0 0}.action-panel .panel-header.child-panel-header .child-summary{padding-left:1rem;overflow:hidden}.action-panel .panel-header button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.action-panel .panel-body-wrap{position:relative}.action-panel .panel-body-wrap.panel-closed{visibility:hidden}.action-panel .panel-body{padding:26px 22px;background:#fff;border-top:1px solid #d6d6d6;display:grid;grid-template-columns:none;border-radius:0 0 6px 6px}.action-panel .panel-body>div:last-of-type{margin-bottom:0!important}.action-panel .panel-body.panel-closed{visibility:hidden}.action-panel .panel-body .panel-instructions{margin-top:0}.actions-panel .action-button-group{height:100%;display:flex;flex-direction:column}.actions-panel .action-buttons{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));padding:1rem 1.7rem 1.5rem 1.25rem}.actions-panel .action-buttons h4{flex:1 1;font-size:.8rem;letter-spacing:0;font-weight:500;margin-top:0;margin-bottom:1.75rem;text-transform:uppercase}@media(max-width:1350px){.actions-panel .action-buttons h4{font-size:.8rem}}.actions-panel .action-buttons .action-tooltip.wack:after,.actions-panel .action-buttons .action-tooltip.wack:before{left:20%!important}.actions-panel .action-row{grid-row:2;display:grid;grid-column-gap:5%;grid-template-columns:repeat(3,minmax(0,1fr));align-items:end;padding-right:33px;max-width:990px}.actions-panel .buttons{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));grid-gap:15px;gap:15px;padding-right:10px}.actions-panel .action-btn-wrap{position:relative;padding-bottom:100%}.actions-panel .action-btn-wrap a.upgrade{color:#236de7;text-transform:uppercase;font-weight:700}.actions-panel .action-icon{background:#fff;border:1px solid #d6d6d6;border-radius:6px;color:#747474;position:absolute;width:100%;height:100%;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.actions-panel .action-icon:hover{box-shadow:0 15px 13px 0 rgba(0,0,0,.15),0 2px 3px 0 rgba(0,0,0,.05);cursor:pointer;transition-duration:.15s;transition-timing-function:linear}.actions-panel .action-icon:focus{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.actions-panel .action-title{font-weight:500;font-size:.88rem;max-width:70%;margin:.5rem auto 1rem;text-align:center;line-height:1.5}.actions-panel .disabled .action-title{opacity:.5}.actions-panel .action-pull svg,.actions-panel .action-push svg{position:relative;top:10px}.actions-panel .action-icon.active .action-title,.actions-panel .action-icon:hover .action-title{color:#236de7;opacity:1}.actions-panel .disabled{cursor:default}.actions-panel .disabled.action-icon.active .action-title,.actions-panel .disabled.action-icon:hover .action-title{color:#000;color:initial;opacity:.5}.actions-panel .disabled.action-icon:hover{box-shadow:none;cursor:default}.actions-panel .action-title-locked{font-size:.88rem;width:50%;margin-top:1.5rem;margin-bottom:1rem;line-height:1.3;opacity:.5;font-weight:400}.wpmdb-save-profile .row{padding:0 1.4rem}.wpmdb-save-profile .flex-group{display:flex;flex-direction:column;width:100%}.wpmdb-save-profile .header-row{padding:1.4rem 1.4rem 0;border-bottom:1px solid #d6d6d6}.wpmdb-save-profile .header-row button{color:#a9a9a9;display:inline-block;font-weight:500;padding:13px 0}.wpmdb-save-profile .header-row button:nth-child(2){margin-left:1.5rem}.wpmdb-save-profile .header-row button.active{color:#236de7;border-bottom:2px solid #236de7;padding-bottom:11px;transition:none}.wpmdb-save-profile.save-profile-wrap{position:relative}.wpmdb-save-profile .recent-list{display:grid}.wpmdb-save-profile .save-profile-box{background:#fff;border:1px solid #d6d6d6;border-radius:5px;position:absolute;width:350px;min-height:330px;top:-410px;box-shadow:0 3px 60px rgba(0,0,0,.15),0 2px 5px rgba(0,0,0,.2);left:137px}.wpmdb-save-profile .save-profile-box .save-btn{width:100%;margin-top:auto;padding:.65rem 1.5rem;height:40px}.wpmdb-save-profile .save-profile-box .save-btn svg{margin-top:-7px}.wpmdb-save-profile .save-profile-box li{margin:0!important;padding:2px}.wpmdb-save-profile .save-profile-box input[type=text]{width:100%}.wpmdb-save-profile .save-profile-box input#save-new-profile{margin:5px 0 0;padding:13px 10px;font-size:14px}.wpmdb-save-profile .save-profile-box .save-profile-input{margin-top:-24px}.wpmdb-save-profile .save-profile-box .save-profile-input label{font-size:.7rem;margin:0}.wpmdb-save-profile .save-profile-box .close-wrap{position:absolute;height:20px;top:8px;right:8px}.wpmdb-save-profile .save-profile-box .close-wrap .close-picker:focus{box-shadow:none}.wpmdb-save-profile .scroll-div{max-height:90px;overflow-y:scroll;padding:.5rem;border:1px solid #d6d6d6;border-radius:6px}.wpmdb-save-profile .scroll-div.empty{overflow-y:visible;overflow-y:initial}.wpmdb-save-profile .scroll-div label{display:grid;grid-template-columns:10% 12% 5fr;align-items:center;white-space:nowrap;text-overflow:ellipsis}.wpmdb-save-profile .scroll-div label span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wpmdb-save-profile .scroll-div b{padding-left:8px}.wpmdb-save-profile .save-inner{height:200px;display:flex;align-items:center}.wpmdb-save-profile .profile-save-error{margin:18px 0;max-width:100%}.combo-button-container{position:relative;display:inline-block}.combo-button-container .btn-large{display:flex;padding:0;width:-webkit-max-content;width:max-content;min-width:210px;background-color:#236de7;color:#fff;border-radius:4px;border:1px solid #236de7;cursor:pointer;text-align:center;white-space:nowrap}.combo-button-container .btn-large .primary-btn{flex:0 0 78%;border-right:1px solid #1c57b9;border-radius:4px 0 0 4px}.combo-button-container .btn-large .secondary-btn{border-radius:0 4px 4px 0}.combo-button-container .btn-large button{padding:1.1rem;color:#fff;text-transform:uppercase;letter-spacing:.05rem;font-size:.8rem;font-weight:700}.combo-button-container .btn-large button:hover{background-color:#2062d0}.combo-button-container .btn-large button:focus-visible{background-color:#2062d0;outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.combo-button-container .btn-large button:active{background-color:#1c57b9}.combo-button-container .btn-large svg{right:0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.combo-button-container .btn-large svg g{stroke:#fff;fill:#fff}.combo-button-container .btn-large svg.expanded{-webkit-transform:rotate(1turn);transform:rotate(1turn)}.combo-button-container .combo-button-children{display:none;position:absolute;background:#fff;border-radius:6px;border:1px solid #c6d1dd;box-shadow:0 2px 6px rgba(0,0,0,.1);margin-top:-211px;z-index:9999}.combo-button-container .combo-button-children.show{display:flex;flex-direction:column;width:-webkit-max-content;width:max-content}.combo-button-container .combo-button-children .combo-button-child-container{border-bottom:1px solid #c6d1dd}.combo-button-container .combo-button-children .combo-button-child-container:first-child{border-top-left-radius:6px;border-top-right-radius:6px}.combo-button-container .combo-button-children .combo-button-child-container:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.combo-button-container .combo-button-children .combo-button-child-container:focus-visible,.combo-button-container .combo-button-children .combo-button-child-container:hover{background-color:#f1f5f9}.combo-button-container .combo-button-children .combo-button-child-container:active{background-color:#e2e8f0}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child{padding:16px;display:grid;grid-template-columns:1fr;cursor:pointer}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child .text span{clear:both;float:left}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child .text .label{font-weight:500;font-size:13.75px}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child .text .description{margin-top:5px;font-style:normal;font-weight:400;font-size:13px;text-align:left}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child svg polyline{stroke:#fff}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child .label{font-weight:600;text-transform:uppercase}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child.selected .check{display:inline-block}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child.selected .check polyline{stroke:#236de7}.combo-button-container .combo-button-children:last-child{border-bottom:none}.hp-transfers-checkbox-container{display:flex;flex-direction:row;border-radius:6px;border:1px solid #d6d6d6;padding:1.5em;width:45em;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_115_104)'%3E%3Cpath fill='%23fff' d='M0 0h6v96H0z'/%3E%3Cg clip-path='url(%23clip1_115_104)'%3E%3Cpath d='M6-.444V28l-8-3.556V-4L6-.444z' fill='%23222'/%3E%3Cpath d='M6 23.556V52l-8-3.556V20l8 3.556z' fill='%23FFCD4B'/%3E%3Cpath d='M6 47.556V76l-8-3.556V44l8 3.556z' fill='%23222'/%3E%3Cpath d='M6 71.556V100l-8-3.556V68l8 3.556z' fill='%23FFCD4B'/%3E%3Cpath d='M6 95.556V124l-8-3.556V92l8 3.556z' fill='%23222'/%3E%3C/g%3E%3Cpath d='M5-4v344h2V-4H5z' fill='%23000' fill-opacity='.16' mask='url(%23path-1-inside-1_115_104)'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_115_104'%3E%3Cpath fill='%23fff' d='M0 0h6v96H0z'/%3E%3C/clipPath%3E%3CclipPath id='clip1_115_104'%3E%3Cpath d='M6-4v344H0V-4h6z' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-repeat:repeat-y;background-color:#fff;box-shadow:0 2px 8px rgba(0,0,0,.05),0 2px 1px rgba(0,0,0,.05)}.hp-transfers-checkbox-container input[type=checkbox]{margin-top:2px}.hp-transfers-checkbox-container div{padding-left:.75em}.hp-transfers-checkbox-container div label{margin-left:0!important;display:flex;flex-direction:row;align-items:center}.hp-transfers-checkbox-container div label h2{margin:0;font-size:15px;line-height:15px}.hp-transfers-checkbox-container div a{color:#236de7;text-decoration:underline;font-weight:600}.hp-transfers-checkbox-container div p{font-weight:400;padding-top:10px;margin:0}.wpmdb .search-replace{padding-top:0}.wpmdb .search-replace a.upgrade{color:#236de7;text-transform:uppercase;text-decoration:underline;font-weight:700}.wpmdb .search-replace .content-row-wrap{max-width:calc(100% - 32px)}.wpmdb .search-replace .content-row-wrap:nth-child(2n){background:#f7f7f7}.wpmdb .search-replace .extra-row{display:grid;margin:0;grid-template-columns:1fr;padding-left:35px;align-items:center}.wpmdb .search-replace .extra-row .cell{width:50em}.wpmdb .search-replace .row{display:grid;margin:0;grid-template-columns:0fr 5fr 1.2fr 5fr 1fr .5fr;padding:11px 0 11px 22px;align-items:center}.wpmdb .search-replace .row.header-row{padding:18px 0 15px;max-width:100%;grid-template-columns:0fr 5fr 1.53fr 5fr .5fr}.wpmdb .search-replace .row.custom-search.header-row{padding-bottom:0}.wpmdb .search-replace .row .header-2{grid-column:2;text-transform:uppercase;font-weight:600}.wpmdb .search-replace .row .header-4{text-transform:uppercase;font-weight:600;grid-column:4}.wpmdb .search-replace .row.custom-search:nth-child(2n){background:transparent none repeat 0 0/auto auto padding-box border-box scroll;background:initial}.wpmdb .search-replace.standard-search-replace .row{grid-template-columns:20px 1fr 45px 1fr 76px}.wpmdb .search-replace.standard-search-replace .header-row{grid-template-columns:51px 2fr 43px 2fr 104px}.wpmdb .search-replace .custom-search .row{max-width:100%;grid-template-columns:43px 2fr 43px 2fr 24px 76px;grid-gap:8px;gap:8px}.wpmdb .search-replace .custom-search .custom-search-row{padding-left:0;padding-bottom:4px}.wpmdb .search-replace .custom-search .custom-search-row:focus-visible{outline:none}.wpmdb .search-replace .custom-search .custom-search-row:focus-visible .handle{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .search-replace .custom-search .custom-search-row:focus-visible .handle svg g{fill:#236de7}.wpmdb .search-replace .custom-search .custom-search-row .handle{border-radius:4px;border:1px solid #fff;line-height:0;height:43px;display:flex;align-items:center;justify-content:center}.wpmdb .search-replace .custom-search .header-row{padding-bottom:0}.wpmdb .search-replace .custom-search .cell{line-height:1}.wpmdb .search-replace .custom-search .cell input{margin:0}.wpmdb .search-replace .custom-search .cell input.invalid-expression{border:1px solid #dc3232}.wpmdb .search-replace .custom-search .cell input.invalid-expression:focus{box-shadow:0 0 4px 1px rgba(220,50,50,.3)}.wpmdb .search-replace.standard-search-replace .cell.replace,.wpmdb .search-replace.standard-search-replace .cell.search{padding-left:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wpmdb .search-replace .cell{font-size:.8rem}.wpmdb .search-replace .cell svg g,.wpmdb .search-replace .cell svg path{fill:#aaa}.wpmdb .search-replace .cell button:focus-visible svg path{fill:#236de7}.wpmdb .search-replace .cell.close svg path{fill:#eee}.wpmdb .search-replace .cell.close svg circle{fill:#999}.wpmdb .search-replace .cell.close button{height:24px;border-radius:50%}.wpmdb .search-replace .cell.close button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .search-replace .cell.close button:focus-visible svg path{fill:#eee}.wpmdb .search-replace .cell.close button:focus-visible svg circle{fill:#236de7}.wpmdb .search-replace .cell.custom-search-arrow{text-align:center}.wpmdb .search-replace .cell.custom-search-arrow svg{width:28px;height:28px}.wpmdb .search-replace .cell.custom-search-arrow button{border-radius:4px;border:1px solid #fff;width:43px;height:43px;display:flex;justify-content:center;align-items:center}.wpmdb .search-replace .cell.custom-search-arrow button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .search-replace .cell.question{position:relative}.wpmdb .search-replace .cell.question svg{position:absolute;top:-14px;right:-32px;cursor:pointer}.wpmdb .search-replace .cell.question svg path{fill:#eee}.wpmdb .search-replace .cell input[type=text]{width:100%}.wpmdb .search-replace .cell input::-webkit-input-placeholder{color:#aaa}.wpmdb .search-replace .cell input:-ms-input-placeholder{color:#aaa}.wpmdb .search-replace .cell input::placeholder{color:#aaa}.wpmdb .search-replace .search-replace-row-options{display:flex;justify-content:flex-end;grid-gap:12px;gap:12px}.wpmdb .search-replace .search-replace-option input:focus-visible+label,.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover{border:1px solid #236de7}.wpmdb .search-replace .search-replace-option input:focus-visible+label .option-icon circle,.wpmdb .search-replace .search-replace-option input:focus-visible+label .option-icon path,.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover .option-icon circle,.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover .option-icon path{fill:#65707c}.wpmdb .search-replace .search-replace-option .toggle{margin:0}.wpmdb .search-replace .search-replace-row-options fieldset{display:flex;justify-content:flex-end;grid-gap:12px;gap:12px}.wpmdb .search-replace .search-replace-option{outline:none;display:inline-block}.wpmdb .search-replace .search-replace-option input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}.wpmdb .search-replace .search-replace-option input:focus-visible+label{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover{border:1px solid #236de7}.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover .option-icon circle,.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover .option-icon path{fill:#65707c}.wpmdb .search-replace .search-replace-option input:disabled+label{cursor:not-allowed}.wpmdb .search-replace .search-replace-option input.option-disabled+label{background-color:#eaf0ea;border:1px solid #eaf0ea}.wpmdb .search-replace .search-replace-option input.option-disabled+label .option-icon circle,.wpmdb .search-replace .search-replace-option input.option-disabled+label .option-icon path{opacity:.5}.wpmdb .search-replace .search-replace-option .toggle{text-align:center;height:30px;width:30px;border-radius:3px;border:1px solid #b1b1b1;display:flex;align-items:center;justify-content:center}.wpmdb .search-replace .search-replace-option .toggle:active:enabled{background:#d6ecf1!important}.wpmdb .search-replace .search-replace-option .toggle:active:enabled .option-icon circle,.wpmdb .search-replace .search-replace-option .toggle:active:enabled .option-icon path{fill:#041b36!important}.wpmdb .search-replace .search-replace-option .toggle .option-icon circle,.wpmdb .search-replace .search-replace-option .toggle .option-icon path{fill:#b1b1b1}.wpmdb .search-replace .search-replace-option .toggle.active{border:1px solid #236de7;background-color:#edf6f7}.wpmdb .search-replace .search-replace-option .toggle.active:hover .option-icon circle,.wpmdb .search-replace .search-replace-option .toggle.active:hover .option-icon path{fill:#041b36!important;opacity:1!important}.wpmdb .search-replace .search-replace-option .toggle.active .option-icon circle,.wpmdb .search-replace .search-replace-option .toggle.active .option-icon path{fill:#05203f}.wpmdb .search-replace .search-replace-option .search-replace-spinner{margin-top:3px}.wpmdb .search-replace .search-replace-option .search-replace-spinner svg{margin-top:0}.wpmdb .search-replace .search-replace-option .search-replace-option-tooltip{width:15em}.wpmdb .search-replace .search-replace-option .search-replace-option-tooltip.action-tooltip a:not(.underline){text-decoration:none}.wpmdb .search-replace .invalid-expression .toggle.active{border:1px solid #dc3232;color:#05203f;background-color:pink;box-shadow:0 2px 1px rgba(0,12,204,.1)}.wpmdb .search-replace .invalid-expression p{color:#dc3232;margin:0}.wpmdb .search-replace .regex-info{margin-left:35px;padding-top:5px}.flex-col{flex:1 1}.toggle-switch{display:flex}.toggle-switch input:focus-visible+label{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.toggle-switch input[type=checkbox]{all:unset;height:0;width:0}.toggle-switch input[type=checkbox]:focus{box-shadow:none}.toggle-switch label{cursor:pointer;text-indent:-9999px;width:36px;height:20px;background:#cbd5e0;display:block;border-radius:100px;position:relative}.toggle-switch label:after{content:"";position:absolute;top:2px;left:2px;width:16px;height:16px;background:#fff;border-radius:90px;transition:.3s;box-shadow:0 1px 2px 0 rgba(0,0,0,.06),0 1px 3px 0 rgba(0,0,0,.1)}.toggle-switch label.checked{background:#236de7;transition:.3s}.toggle-switch input:checked+label:after{left:calc(100% - 2px);-webkit-transform:translateX(-100%);transform:translateX(-100%)}.wpmdb-settings-page .slider-title,.wpmdb-settings-page .toggle-title{text-transform:none;font-size:15px;margin:0;font-weight:500;position:relative}.wpmdb-settings-page .slider-title .has-tooltip,.wpmdb-settings-page .toggle-title .has-tooltip{display:flex}.wpmdb-settings-page .slider-title .has-tooltip svg,.wpmdb-settings-page .toggle-title .has-tooltip svg{margin-top:-3px;margin-left:8px;border-radius:50%}.wpmdb-settings-page .slider-title .has-tooltip svg:focus,.wpmdb-settings-page .toggle-title .has-tooltip svg:focus{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb-settings-page h6{font-size:14px}.wpmdb-settings-page input[type=text]{width:48%;display:block;margin-bottom:1.1rem}.wpmdb-settings-page .flex{display:flex}.wpmdb-settings-page .settings-row{border-bottom:2px solid #e1e1e1;padding:56px 0}.wpmdb-settings-page .settings-row:first-child{padding-top:0}.wpmdb-settings-page .settings-row>.flex-container{margin-bottom:1.6rem;align-items:baseline}.wpmdb-settings-page .settings-row>.flex-container.licence-buttons{margin-bottom:0}.wpmdb-settings-page .settings-row h4{margin:0}.wpmdb-settings-page .settings-row .migration-permissions .flex-container:nth-child(3){margin-top:1.6rem}.wpmdb-settings-page .settings-row .migration-permissions .settings-spinner{top:-10px}.wpmdb-settings-page .settings-row .migration-action{margin-left:1.2rem}.wpmdb-settings-page .settings-row .migration-action .toggle-error,.wpmdb-settings-page .settings-row .migration-action .toggle-success{top:-30px}.wpmdb-settings-page label{margin:0}.wpmdb-settings-page .section-title{font-size:16px;margin-bottom:1.5rem}.wpmdb-settings-page .section-title:first-child{margin-top:0}.wpmdb-settings-page textarea{width:100%;margin-bottom:1.1rem;border-radius:5px;min-height:58px;max-height:200px}.wpmdb-settings-page .btn:first-child{margin-right:.75rem}.wpmdb-settings-page .connection-info{align-self:flex-start;padding-right:4%}.wpmdb-settings-page .connection-info .btn{position:relative;padding:.65rem 1.5rem}.wpmdb-settings-page .connection-info .btn.copied{min-width:189px}.wpmdb-settings-page .connection-info .styled-check{position:absolute;top:9px;left:27%}@media screen and (max-width:1024px){.wpmdb-settings-page .connection-info .btn.copied{min-width:166px}}.wpmdb-settings-page .migration-permissions{align-self:flex-start}.wpmdb-settings-page .migration-permissions>.flex-container{align-items:normal}.wpmdb-settings-page .request-settings{padding-bottom:40px}.wpmdb-settings-page .request-settings .flex-container{align-items:flex-start}.wpmdb-settings-page .request-settings .tooltip-saved.flex-container{align-items:center}.wpmdb-settings-page .notification{margin-bottom:1rem}.wpmdb-settings-page .settings-tooltip{position:absolute;top:-17px;left:10px;z-index:9}.wpmdb-settings-page .settings-tooltip svg{float:left;margin-right:.2rem;min-width:24px}.wpmdb-settings-page .licence-error .settings-tooltip.toggle-error,.wpmdb-settings-page .licence-error .settings-tooltip.toggle-success{top:-13px}.wpmdb-settings-page .licence-action{margin-top:.8rem}.wpmdb-settings-page .license-row .btn{margin-right:0}.wpmdb-settings-page .license-row h3.no-licence{margin-bottom:0}.wpmdb-settings-page .license-row h3.licence-header{margin-bottom:1rem}.wpmdb-settings-page .license-row .settings-spinner{top:-16px}.wpmdb-settings-page .license-row .licence-error{margin-top:0}.wpmdb-settings-page .slider-wrap{width:30rem;margin:28px 0 0}.wpmdb-settings-page .slider-wrap .slider-header{grid-template-columns:1fr 1fr}.wpmdb-settings-page .slider-wrap .settings-tooltip{right:-90px;left:auto!important}.wpmdb-settings-page .slider-wrap .slider-details{justify-self:end;align-self:self-end;font-weight:500;opacity:.8}.wpmdb-settings-page .slider-wrap h4#slider-delay_between_requests{margin-top:.5rem}.wpmdb-settings-page .slider-wrap .settings-spinner{top:-19px;right:-28px;left:auto}.wpmdb-settings-page .slider-wrap .MuiSlider-thumb.Mui-focusVisible{box-shadow:none}.wpmdb-settings-page .slider-wrap .MuiSlider-thumb:focus-visible{box-shadow:0 0 0 14px rgba(63,81,181,.16)}.wpmdb-settings-page .slider-wrap .Mui-disabled .MuiSlider-thumb{height:18px;width:18px;margin-top:-8px;margin-left:0}.wpmdb-settings-page .compatibility-mode-block .settings-tooltip{top:-30px}.wpmdb-settings-page .compatibility-mode-block .settings-spinner{top:0}.wpmdb-settings-page .compatibility-mode-block .title{margin-bottom:10px;font-size:14px}.wpmdb-settings-page .compatibility-mode-block .select-group{margin-top:16px}.wpmdb-settings-page .advanced-settings{border-bottom:none}.wpmdb-settings-page .advanced-settings .switch-1{margin-top:-5px!important}.wpmdb-settings-page .advanced-settings .flex-container{align-items:start}.wpmdb-settings-page .advanced-settings .flex-container.tooltip-saved{align-items:center}.wpmdb-settings-page .advanced-settings .tooltip-saved,.wpmdb-settings-page .settings-tooltip{align-self:center}.wpmdb-settings-page .compat-plugin-list{background:#fff;max-width:560px}.wpmdb-settings-page.free .advanced-settings{border-bottom:2px solid #e1e1e1}.wpmdb-settings-page.free .request-settings{border:0}.wpmdb-addons .addons-container{display:grid;grid-template-columns:repeat(2,minmax(240px,1fr));grid-gap:1.5rem;gap:1.5rem}@media(min-width:1150px){.wpmdb-addons .addons-container{grid-template-columns:repeat(3,minmax(0,1fr))}}.wpmdb-addons .addons-notice{margin:0 0 1.75rem}.wpmdb-addons .addons-tab-spinner{position:relative;top:5px}.wpmdb-addons .addon-container{flex:1 1;padding:1.5rem;background:#fff;display:flex;flex-direction:column}.wpmdb-addons .addon-container .migrate-notice{margin-bottom:0}.wpmdb-addons .addon-icon{display:block;margin:0 auto}.wpmdb-addons .addon-title{text-transform:uppercase;margin-top:.75rem;margin-bottom:1.5rem;text-align:center}.wpmdb-addons .addon-btn{padding:.6rem 2.8rem;display:block}.wpmdb-addons .addon-content{border-top:1px solid #d6d6d6;padding-top:1rem;margin-top:.9rem;flex:1 1}.wpmdb-addons .more-details-link{text-decoration:underline;font-weight:500}.wpmdb-addons .more-details-link:hover{text-decoration:none}.wpmdb-addons .addon-bottom-controls{flex:1 1;align-self:center}.wpmdb-addons .installed-activated-text{text-align:center;font-weight:500;margin-left:-3px;padding:.48rem}.wpmdb-addons .installed-activated-text svg{vertical-align:middle;margin:-3px 3px 0 0}.wpmdb-addons .addon-link{text-decoration:underline;font-weight:700;margin-top:1.5rem;margin-bottom:.5rem;display:block;text-align:center}.wpmdb-addons .addon-link:hover{text-decoration:none}.wpmdb-addons .licence-action{margin-top:.8rem}.wpmdb-addons .addon-upgrade-container{padding-top:20px;text-align:center}.wpmdb-addons .addon-upgrade-container .edit-key-link{margin-top:.5rem}.wpmdb .wpmdb-help-wrap>.wrapper{margin-right:0}.wpmdb-help-wrap{border-bottom:1px solid #bbb}.wpmdb-help-wrap .wrapper{margin-left:0}.wpmdb-help-wrap.success{border:none}.wpmdb-help-wrap .subnav{border-bottom:none;padding-left:0}.wpmdb-help-wrap .subnav button:focus-visible{border-radius:4px;outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb-help-wrap.email{border-bottom:2px solid #e1e1e1}.wpmdb-help-wrap.email .licence-action{margin-top:.8rem}.wpmdb-help-wrap.videos{border-bottom:none}.wpmdb-help-wrap.videos .additional-help{margin-left:100px}.wpmdb-help-wrap .email-support{margin-top:-4px}.wpmdb-help-tab{min-height:500px}.wpmdb-help-tab .notification{margin:1.4rem 0;padding:1rem 1.5rem}.wpmdb-help-tab .help-spinner{position:relative;top:5px}.wpmdb-help-tab .help-spinner.send-email{left:7px}.wpmdb-help-tab .help-spinner #el_6X7lquFKkl{fill:#b7b7b7}.wpmdb-help-tab .support-form{width:500px;padding-left:9px}.wpmdb-help-tab .support-form .diagnostic-log{padding-left:0}.wpmdb-help-tab .support-form .valid-license{margin-bottom:35px;font-size:14px}.wpmdb-help-tab .support-form h3{margin-top:0}.wpmdb-help-tab .support-form .diagnostic-log.success h2{margin-top:2.5rem}.wpmdb-help-tab .support-videos{width:640px;padding-left:9px}.wpmdb-help-tab .support-videos iframe{border:1px solid #d6d6d6;box-shadow:0 1px 1px 0 rgba(0,0,0,.05),0 0 1px 0 rgba(0,0,0,.05)}.wpmdb-help-tab .additional-help{align-self:baseline;width:265px}.wpmdb-help-tab .additional-help .documentation-panel{margin-left:0}.wpmdb-help-tab .additional-help li{font-size:1rem}.wpmdb-help-tab .additional-help li a{font-weight:600}.wpmdb-help-tab .additional-help h2{font-size:1rem;margin-top:0;margin-bottom:1.6rem;font-weight:600}.wpmdb-help-tab .additional-help h2 a{color:#000}.wpmdb-help-tab .support-wrapper{margin-top:3.5rem;display:grid;grid-template-columns:2fr 1.42fr;grid-gap:20px}.wpmdb-help-tab input[type=text],.wpmdb-help-tab select,.wpmdb-help-tab textarea{width:100%!important;height:2.5rem}.wpmdb-help-tab .help-form{margin-top:5px}.wpmdb-help-tab .help-form a{text-decoration:underline;font-weight:600;color:#236de7}.wpmdb-help-tab .help-form a:hover{text-decoration:none}.wpmdb-help-tab .help-form .field,.wpmdb-help-tab .help-form label,.wpmdb-help-tab .help-form p{font-size:14px;line-height:19px}.wpmdb-help-tab .help-form p{font-size:14px;line-height:22px}.wpmdb-help-tab .help-form .field{color:#000;opacity:.8}.wpmdb-help-tab .help-form p.note{margin-bottom:0;margin-left:2px}.wpmdb-help-tab .help-form p.note a{color:#236de7}.wpmdb-help-tab .help-form input[type=text],.wpmdb-help-tab .help-form select,.wpmdb-help-tab .help-form textarea{font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:13px;color:#000;border-radius:5px;margin:0}.wpmdb-help-tab .help-form input[type=text]::-webkit-input-placeholder,.wpmdb-help-tab .help-form textarea::-webkit-input-placeholder{color:#555}.wpmdb-help-tab .help-form input[type=text]:-ms-input-placeholder,.wpmdb-help-tab .help-form textarea:-ms-input-placeholder{color:#555}.wpmdb-help-tab .help-form input[type=text]::placeholder,.wpmdb-help-tab .help-form textarea::placeholder{color:#555}.wpmdb-help-tab .help-form .from{margin:28px 0 35px}.wpmdb-help-tab .help-form .from p.note{margin-top:16px}.wpmdb-help-tab .help-form .from .select-email{display:grid;grid-template-columns:.65fr 5fr}.wpmdb-help-tab .help-form .from .select-email label{font-weight:500;margin-top:10px}.wpmdb-help-tab .help-form .from .select-email select{padding-left:12px;line-height:1;max-width:100%}.wpmdb-help-tab .help-form .email-message,.wpmdb-help-tab .help-form .subject{margin-bottom:.9rem}.wpmdb-help-tab .help-form .remote-diagnostic{margin-bottom:1rem}.wpmdb-help-tab .help-form .local-diagnostic,.wpmdb-help-tab .help-form .remote-diagnostic.checked{margin-bottom:.43rem}.wpmdb-help-tab .help-form .remote-diagnostic-content{margin-bottom:1.1rem}.wpmdb-help-tab .help-form .remote-diagnostic-content ol{list-style-type:decimal;margin:.9rem 0 .9rem 2em}.wpmdb-help-tab .help-form .remote-diagnostic-content ol li{list-style:decimal;margin-left:1rem;font-size:13px;color:#555}.wpmdb-help-tab .help-form .remote-diagnostic-content textarea{min-height:100px;border-radius:5px}.wpmdb-help-tab .help-form.error .remote-diagnostic-content{margin-bottom:0}.wpmdb-help-tab .help-form p.note.trouble{margin:38px 0 56px}.wpmdb-help-tab .help-form .email-message textarea{min-height:180px;border-radius:5px}.wpmdb-help-tab .help-form .btn{font-size:12px}.diagnostic-log{max-width:500px;padding-left:0}.diagnostic-log.wrapper{margin-left:9px}.diagnostic-log h2{margin-top:56px;margin-bottom:20px;font-size:16px}.diagnostic-log .clear-log-btn{display:block;margin:0 .75rem;line-height:18.2px}.diagnostic-log textarea[readonly]{max-width:500px;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:13px;line-height:19px;height:210px;background:#fff;margin-bottom:.85rem;color:#000;width:100%;border-radius:5px}.help-free{border-bottom:0}.help-free h2{margin-top:0}.help-free .help-message{padding-bottom:56px}.help-free .help-message p:last-of-type{margin:0}.help-free .diagnostic-log-wrap{border-top:2px solid #e1e1e1}.help-free .diagnostic-log{padding-left:0}.help-free.wpmdb-help-wrap{padding-bottom:44px}.rate-mdb{width:100%;padding:15px;background:rgba(35,109,231,.05);border:1px solid #236de7;border-radius:3px}.rate-mdb a{display:grid;color:#236de7;font-size:1rem;width:100%;grid-template-columns:5fr 2fr;justify-content:space-between;font-weight:600}.rate-mdb span{display:inline-block;justify-self:end}.rate-mdb span svg{padding:0 2px}.upgrade-to-pro{display:grid;grid-template-columns:2fr 2.3fr;grid-gap:15px;padding:40px;border-radius:4px;margin-top:40px;background:#fff}.upgrade-to-pro h3{font-size:23px;color:#04223f;margin-top:0;margin-bottom:32px;font-weight:400}.upgrade-to-pro h3 span{font-weight:700}.upgrade-to-pro ul{margin-bottom:32px}.upgrade-to-pro ul li{line-height:39px;margin-top:0;padding-left:32px;background-repeat:no-repeat;background-position:0 9px}.upgrade-to-pro .col-left,.upgrade-to-pro .col-right{display:flex;flex-direction:column;flex:1 1}.upgrade-to-pro .col-left .btn{display:inline-block;margin-top:auto;max-width:120px}.upgrade-to-pro .testimonial{display:grid;grid-template-columns:1fr 8fr;grid-gap:15px;background:#04223f;color:#fff;padding:21px 20px;margin-top:auto;border-radius:3px}.upgrade-to-pro .testimonial figure{margin:0;align-self:center}.upgrade-to-pro .testimonial figure img{width:60px}.upgrade-to-pro .testimonial h4{color:#fff;font-size:.9rem;margin:0;font-weight:400}.upgrade-to-pro .testimonial .testimonial-header{display:grid;grid-template-columns:2.1fr .5fr 1.4fr}.upgrade-to-pro .testimonial .testimonial-header span{font-weight:400;font-size:96%;display:inline-block;position:relative;right:-6px}.upgrade-to-pro .testimonial .testimonial-header span a{color:#fff}.upgrade-to-pro .testimonial .testimonial-header b{justify-self:end}.upgrade-to-pro .testimonial .testimonial-header b svg{padding:0 2px}.upgrade-to-pro .testimonial p{font-size:.8rem;margin-bottom:0}@media(max-width:1200px){.upgrade-to-pro .testimonial figure{align-self:auto}.upgrade-to-pro .testimonial p{line-height:18px}.upgrade-to-pro .testimonial .testimonial-header span{position:relative;left:-10px}.upgrade-to-pro .testimonial .testimonial-header b svg{width:12px}}
 
frontend/build-free/static/css/styles.4fcfe366.chunk.css ADDED
@@ -0,0 +1 @@
 
1
+ .wpmdb{min-width:800px}.wpmdb a{margin:0;cursor:pointer;text-decoration:none}.wpmdb .header-wrap{background:#a5ddf1}.wpmdb .nav-wrap{background:#fff;border-bottom:1px solid #d6d6d6;margin-bottom:2.8rem}.wpmdb .wrapper{min-width:920px;max-width:1280px;margin-left:30px}@media(max-width:1500px){.wpmdb .wrapper{margin:0 30px}}.wpmdb a.hover{text-decoration:underline}.wpmdb a,.wpmdb a.link{border-radius:4px}.wpmdb a.link:focus-visible,.wpmdb a:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb button{padding:0;margin:0;border:0;background:none;cursor:pointer}.wpmdb button.link{border-radius:4px}.wpmdb button.link:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .btn-no-outline{outline:0}.wpmdb .full-opacity{opacity:1!important}.wpmdb .margin-bottom{margin-bottom:1rem}.wpmdb .align-right{margin-left:auto}.wpmdb .align-center{margin:0 auto}.wpmdb .text-center{text-align:center}.wpmdb .uppercase{text-transform:uppercase}.wpmdb label,.wpmdb p{font-size:13px;font-weight:400;line-height:1.8}.wpmdb h1,.wpmdb h2,.wpmdb h3,.wpmdb h4,.wpmdb h5,.wpmdb label,.wpmdb p{letter-spacing:.2px}.wpmdb ul{margin:0}.wpmdb label{margin-left:.5rem}.wpmdb li,.wpmdb ul{padding:0}.wpmdb li{margin-top:.25rem;margin-bottom:0!important;list-style:none;margin-bottom:0}.wpmdb .pos-relative{position:relative}.wpmdb .regular{font-weight:400}.wpmdb .semibold{font-weight:600}.wpmdb .bold{font-weight:700}.wpmdb .underline{text-decoration:underline}.wpmdb h1,.wpmdb h2,.wpmdb h3,.wpmdb h4,.wpmdb h5{color:#04223f}.wpmdb h1{font-size:1.3125rem;font-weight:500;padding:0}.wpmdb h2{font-size:1rem;font-weight:600}.wpmdb h3{font-size:.88rem;font-weight:600}.wpmdb h4{font-size:.95rem}.wpmdb h5{font-weight:600;opacity:.8;font-size:.88rem;color:#000;text-transform:uppercase}.wpmdb .icon-16{width:16px;height:16px}.wpmdb .icon-20{width:20px;height:20px}.wpmdb .icon-24{width:24px;height:24px}.wpmdb .icon-32{width:32px;height:32px}.wpmdb .icon-64{width:64px;height:64px}.wpmdb .icon-128{width:128px;height:128px}.wpmdb .width-10{width:10%}.wpmdb input[type=checkbox]{cursor:pointer;margin-top:-2px;margin-right:.5rem;box-shadow:inset 0 0 0 #fff}.wpmdb input[type=checkbox]:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .panel-header-wrap input[type=checkbox]{margin-top:0}.wpmdb .checkbox-default{margin-top:0!important;border-radius:2px!important}.wpmdb .consolas{font-family:Consolas,monaco,monospace}.wpmdb input[type=text]{padding:12px 10px;min-height:inherit;line-height:normal}.wpmdb input[type=text],.wpmdb textarea{background:#fff;border:1px solid #d6d6d6;border-radius:5px;font-size:.8rem;box-sizing:border-box}.wpmdb textarea{padding:.6rem;width:22rem}.wpmdb select{height:2.75rem;width:23rem;padding-left:16px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);border:1px solid #d6d6d6;font-size:13px;background-position:calc(100% - 14px)}.wpmdb .container-shadow{background:#fff;border:1px solid #d6d6d6;box-shadow:0 2px 8px 0 rgba(0,0,0,.05),0 2px 1px 0 rgba(0,0,0,.05);border-radius:4px}.wpmdb .slider-switch-bg{background:#d6d6d6;width:25rem;border-radius:10rem;height:.25rem}.wpmdb .slider-switch-active{background:#236de7;width:5rem;border-radius:10rem;height:.25rem}.wpmdb .slider-switch{width:1rem;height:1rem;background:#236de7;border-radius:10rem;position:absolute;margin-top:-1.25rem}.wpmdb .link{color:#0073aa;font-size:.88rem;font-weight:600;text-decoration:underline;opacity:1;cursor:pointer;border-radius:4px}.wpmdb .link:hover{text-decoration:none}.wpmdb .bg-black{background:#000}.wpmdb .text-black{color:#000}.wpmdb .bg-white{background:#fff}.wpmdb .text-white{color:#fff}.wpmdb .text-primary{color:#236de7}.wpmdb .bg-primary{background:#236de7}.wpmdb .text-brand-dark{color:#04223f}.wpmdb .bg-brand-dark{background:#04223f}.wpmdb .text-brand-light{color:#a5ddf1}.wpmdb .bg-brand-light{background:#a5ddf1}.wpmdb .db-accordion-expanded{background:#45719b}.wpmdb .bg-success{background:#53aa59}.wpmdb .text-error{color:#dc3232}.wpmdb .bg-error{background:#cf2a27}.wpmdb .bg-alert{background:#ffba00}.wpmdb .text-grey-light{color:#d6d6d6}.wpmdb .text-grey-dark{color:#999}.wpmdb .bg-grey-dark{background:#999}.wpmdb .bg-trans{background:transparent!important}.wpmdb .bg-grey-light{background:#d6d6d6}.wpmdb .grid-container{display:grid}.wpmdb .flex-container{align-items:center;list-style:none;-ms-box-orient:horizontal;display:-moz-flex;display:flex}.wpmdb .column{flex-direction:column}.wpmdb .flex-align-baseline{align-items:baseline}.wpmdb .wrap{flex-wrap:wrap}.wpmdb .header,.wpmdb .padded-container{padding:1.3rem 0;background-repeat:no-repeat;background-size:38%;background-position:top}.wpmdb .header .btn{border-radius:4px}.wpmdb .medallion{-webkit-filter:drop-shadow(0 1px 4px rgba(0,0,0,.2));filter:drop-shadow(0 1px 4px rgba(0,0,0,.2));margin-right:1rem;width:52px;height:52px}.wpmdb .license-message{margin-left:auto;flex-grow:0;flex-shrink:0}.wpmdb .license-message.flex-grow{flex-basis:auto}.wpmdb .license-message .license-icon{position:relative;top:7px}.wpmdb .license-message .license-level{text-align:right;font-size:13px}.wpmdb .license-message .license-level a{font-weight:500;text-decoration:underline}.wpmdb .license-message .license-level a:hover{text-decoration:none}.wpmdb .license-message .license-level a:focus-visible{box-shadow:0 0 0 2px #a5ddf1,0 0 0 4px #4f8aec}.wpmdb .license-message p{font-size:13px;margin:0}.wpmdb .license-block{display:flex;grid-gap:26px;gap:26px;align-items:center;justify-items:flex-end}.wpmdb .license-block.active-license{flex-grow:0;display:block}.wpmdb .license-block.active-license .license-status span{padding:0}.wpmdb .license-block .user-label{color:#314248;font-size:13px;font-weight:400;padding-right:0}.wpmdb .license-block .license-status{font-size:.75rem;font-weight:600;margin:0;position:relative;top:-3px;opacity:1}.wpmdb .license-block .license-status .license-icon{left:-2px}.wpmdb .license-block .license-status span{display:inline-block}.wpmdb .license-block .license-status span.license-label{color:#236de7;display:inline}.wpmdb .license-block .license-status.valid-licence span{padding-right:.4rem}.wpmdb .license-block .license-expired{text-align:right}.wpmdb .license-block .license-expired span{padding:0}.wpmdb .license-block .btn{display:block;padding:10px 20px}.wpmdb .license-block .license-info{position:relative;top:-3px}.wpmdb .license{text-decoration:underline}.wpmdb .nav{font-size:.75rem;font-weight:500;text-transform:uppercase;padding:1.25rem 0 0;align-items:baseline}.wpmdb .nav li{margin-right:1.7rem;padding:.6rem .2rem .4rem}.wpmdb .nav-item-active{border-bottom:3px solid #000}.wpmdb .nav li a{color:#707070}.wpmdb .nav li a:focus{box-shadow:none}.wpmdb .nav li a:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .nav-item-active a{color:#04223f!important}.wpmdb .subnav{border-bottom:1px solid #bbb;padding:0 1.5rem;align-items:baseline}.wpmdb .subnav li{opacity:.4;font-size:.94rem;font-weight:600;margin-right:2rem;padding-left:.5rem;padding-right:.5rem;padding-bottom:1rem}.wpmdb .subnav-item-active{opacity:1!important;border-bottom:3px solid #236de7}.wpmdb .subnav li a{color:#000}.wpmdb .subnav-item-active a{color:#236de7!important}.wpmdb .accordion-collapsed{padding:.5rem 1.5rem}.wpmdb .accordion-label-container{width:10rem}.wpmdb .accordion-locked{opacity:.5;border:1px solid #999;padding:.5rem 1.5rem;border-radius:4px}.wpmdb .locked-accordion-link{color:rgba(0,0,0,.8)}.wpmdb .accordion-icon-locked{margin-right:1rem;opacity:1!important;width:20px;height:20px}.wpmdb .accordion-locked h2,.wpmdb .accordion-locked p{opacity:1}.wpmdb .accordion-wrap{min-width:70rem}.wpmdb .accordion-expand{margin-top:-.15rem;border-radius:0 0 4px 4px!important;padding:1rem 1rem 2.5rem;justify-content:space-between}.wpmdb .nested-accordion{background:#fff;border:1px solid #d6d6d6;box-shadow:0 1px 4px 0 rgba(0,0,0,.05),0 1px 1px 0 rgba(0,0,0,.05);border-radius:3px;padding:0 1.25rem;min-height:3.5rem;margin:1.25rem .6rem 0;cursor:pointer;flex-grow:1}.wpmdb .nested-accordion-arrow{margin-right:1rem}.wpmdb .nested-accordion-title{opacity:.7;font-size:.88rem;font-weight:600;color:#000;margin:0}.wpmdb .nested-accordion-preview{margin:.1rem 0 0;opacity:.6}.wpmdb .nested-accordion-preview-divider{opacity:.3;margin:0 .5rem}.wpmdb .accordion-checkbox{margin-right:1rem!important;border-radius:2px!important}.wpmdb .nested-accordion-expanded{background:#45719b;box-shadow:0 -2px 1px 0 rgba(0,0,0,.05),0 -1px 1px 0 rgba(0,0,0,.05);border-radius:4px 4px 0 0}.wpmdb .nested-accordion-expanded-body{border-radius:0 0 4px 4px;padding:1.5rem 1.25rem;margin:-.1rem .6rem;cursor:inherit;min-height:1rem}.wpmdb .nested-accordion-arrow-expanded{margin-right:1rem;-webkit-transform:rotate(180deg);transform:rotate(180deg);fill:#fff}.wpmdb .nested-accordion-expanded-title{font-size:.88rem;font-weight:700;color:#fff;margin:0}.wpmdb .accordion-divider{width:1px;height:2.1rem;margin-right:2rem}.wpmdb .accordion-preview{opacity:.6;font-size:.8rem;font-weight:400}.wpmdb .btn{background-color:#236de7;color:#fff;border-radius:4px;font-size:.8rem;text-transform:uppercase;font-weight:700;padding:1.1rem 2.25rem;border:1px solid #236de7;letter-spacing:.05rem;cursor:pointer;text-align:center;white-space:nowrap}.wpmdb .btn svg{right:10px;position:relative}.wpmdb .btn:hover{background-color:#397be9;outline:0;border-color:#397be9}.wpmdb .btn:active{background-color:#1f61cf;border-color:#1f61cf;outline:0}.wpmdb .btn:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .btn.delete{background:#dc3232;margin-left:0;border:1px solid #dc3232;padding-top:.4rem}.wpmdb .btn.delete:hover{background:#c1201d;outline:0;border-color:#c1201d}.wpmdb .btn.delete:active{background-color:#ac1714;border-color:#ac1714}.wpmdb .btn.delete:focus{box-shadow:0 0 0 2px #fff,0 0 1px 4px rgba(207,42,39,.6)}.wpmdb .btn-stroke{border:1px solid #236de7;background:transparent;color:#236de7;box-shadow:none;outline:0}.wpmdb .btn-stroke:hover{background:rgba(7,119,239,.15);outline:0}.wpmdb .btn-stroke:active{background:rgba(7,119,239,.3);outline:0}.wpmdb .btn-disabled,.wpmdb .btn-disabled:hover{border:1px solid #dadada;background:transparent;color:#dadada;box-shadow:none}.wpmdb .btn-disabled:hover{cursor:default}.wpmdb .btn-disabled:active{border:1px solid #dadada;background:transparent;color:#dadada;box-shadow:none}.wpmdb .btn-disabled:focus{outline:0;box-shadow:none}.wpmdb .btn-sm{padding:.65rem 1.5rem;min-width:6.5rem}.wpmdb .btn-tooltip,.wpmdb .btn-tooltip-stroke{position:relative;padding:.4rem .6rem .5rem;height:30px;opacity:1;letter-spacing:0;text-transform:none;font-weight:600}.wpmdb .btn-tooltip-stroke.icon,.wpmdb .btn-tooltip.icon{padding-left:20px}.wpmdb .btn-tooltip-stroke svg,.wpmdb .btn-tooltip svg{position:absolute;top:5px;left:4px}.wpmdb .btn-tooltip-stroke.save-profile,.wpmdb .btn-tooltip.save-profile{padding:.4rem .7rem .5rem 1.6rem;margin-left:6px;height:30px}.wpmdb .btn-tooltip-stroke.save-profile svg,.wpmdb .btn-tooltip.save-profile svg{left:6px;top:5px}.wpmdb .btn-tooltip{margin:0 .5rem}.wpmdb .btn-tooltip.delete{padding:.4rem .7rem .5rem 1.6rem}.wpmdb .btn-tooltip.profile-screen #el_0iWebJDPz{width:24px;height:26px}.wpmdb .btn-tooltip-icon{margin-right:.2rem}.wpmdb .btn-tooltip-stroke{border:1px solid #9a9a9a;border-radius:4px;background:transparent;color:#9a9a9a;box-shadow:none;cursor:pointer;font-size:.8rem;text-align:center}.wpmdb .btn-tooltip-stroke:hover{background:hsla(0,0%,56.9%,.15);border-color:#9a9a9a}.wpmdb .btn-tooltip-stroke:active{background:hsla(0,0%,56.9%,.3);border-color:#9a9a9a}.wpmdb .btn-tooltip-stroke:focus{box-shadow:0 0 0 2px #fff,0 0 1px 4px hsla(0,0%,56.9%,.6)}.wpmdb .btn-sm-icon{padding-right:.1rem;margin-left:5px}.wpmdb .notification{font-size:.8rem;margin:.75rem 0;box-shadow:0 1px 8px 0 rgba(0,0,0,.05),0 1px 3px 0 rgba(0,0,0,.1);border-radius:3px;padding:1rem 1.5rem;border-left:5px solid #ffba00}.wpmdb .notification.old-profile-notice{margin:0 0 1.1rem}.wpmdb .notification p{line-height:1.6}.wpmdb .notification strong:first-child{font-size:14px}.wpmdb .notification.h4{font-size:1rem}.wpmdb .notification.success-notice{border-left:5px solid #7ad03a}.wpmdb .notification.error-notice{border-left:5px solid #dc3232}.wpmdb .notification a{text-decoration:underline;font-weight:600}.wpmdb .notification a:hover{text-decoration:none}.wpmdb .notification ul{padding:initial;margin:initial;margin-left:30px}.wpmdb .notification li{list-style:disc outside none;list-style:initial;margin:initial;padding:6px 0}.wpmdb .import-panel .notification{margin:1rem 0}.wpmdb .connect-to-remote{display:grid;grid-template-columns:repeat(3,1fr);grid-column-gap:.6rem;-webkit-column-gap:.6rem;column-gap:.6rem}.wpmdb .connect-to-remote .error-message{margin-top:.8rem;font-weight:500}.wpmdb .connect-to-remote .auth-form{grid-template-columns:repeat(2,1fr);grid-row:2;margin-top:.4rem;grid-gap:5px;gap:5px}.wpmdb .connect-to-remote .version-mismatch-error{font-weight:400}.wpmdb .connect-to-remote .version-mismatch-error .svg-spinner{top:-9px}.wpmdb .connect-to-remote textarea{width:405px;margin-bottom:0}.wpmdb .connect-to-remote .full{grid-column:1/4;margin-bottom:0}.wpmdb .connect-to-remote .notification{margin-top:1rem}@media screen and (max-width:900px){.wpmdb .connect-to-remote{grid-template-columns:repeat(2,1fr)}}.wpmdb .connect-panel.panel-body{padding:32px 40px}.wpmdb .connect-panel .btn{margin-top:.9rem}.wpmdb .connect-panel .connecting-message{margin-bottom:0}.wpmdb .global-notice{margin-bottom:1.25rem}.wpmdb .notification-content{max-width:44rem;line-height:1.5}.wpmdb .button-group{width:28.3333%;margin-right:1%;float:left}.wpmdb .button-group button p{margin:0 0 10px}.wpmdb .actions-panel .panel-header-wrap.has-summary-no-child.panel-open{grid-template-columns:1fr 6fr 0}.wpmdb .actions-panel .action-tooltip{max-width:200px}.wpmdb .action-buttons{padding:1rem 1.7rem .5rem 1.25rem}.wpmdb .action-buttons h4{font-size:.85rem;font-weight:500;margin-top:0;margin-bottom:1.75rem}@media(max-width:1350px){.wpmdb .action-buttons h4{font-size:.8rem}}.wpmdb .action-buttons .action-tooltip.wack:after,.wpmdb .action-buttons .action-tooltip.wack:before{left:20%!important}.wpmdb .migration-buttons{margin-top:30px;display:table}.wpmdb .migration-buttons .run-migration,.wpmdb .migration-buttons span{display:table-cell}.wpmdb .speech-bubble-left{position:relative;background:#fff;border-radius:5px;padding:.75rem 1rem;max-width:10rem}.wpmdb .speech-bubble-left p{margin-top:0}.wpmdb .speech-shadow{box-shadow:0 5px 24px 0 rgba(4,34,63,.16)}.wpmdb .speech-bubble-left:after{display:flex;content:"";position:absolute;left:0;top:50%;width:0;height:0;border:10px solid transparent;border-right-color:#fff;border-left:0;margin-top:-.6rem;margin-left:-.6rem}.wpmdb .speech-bubble-top{position:relative;background:#fff;border-radius:3px;padding:.75rem 1rem;max-width:6rem}.wpmdb .speech-bubble-top:after{display:flex;content:"";position:absolute;left:1.5rem;top:0;width:0;height:0;border:10px solid transparent;border-right-color:#fff;border-left:0;margin-top:-.9rem;-webkit-transform:rotate(90deg);transform:rotate(90deg)}.wpmdb .backup-dir{font-weight:500;color:#000;opacity:.5;padding-left:0;margin-bottom:0}.wpmdb .tooltip-saved{background:#fff;box-shadow:0 1px 4px rgba(0,0,9,.12);border-radius:3px;padding:.2rem .4rem;display:flex;align-items:center}.wpmdb .tooltip-saved-icon{margin-right:.25rem}.wpmdb .tooltip-saved p{font-size:.8rem;font-weight:600;line-height:1}.wpmdb .arrow-search-replace{padding:0 .3rem;margin-top:.1rem}.wpmdb .search-replace-heading .td-1{flex-grow:10}.wpmdb .search-replace-heading .td-2{flex-grow:2.3}.wpmdb .search-replace-data .td-1,.wpmdb .search-replace-heading .td-3,.wpmdb .search-replace-heading .td-4{flex-grow:10}.wpmdb .search-replace-data .td-2{flex-grow:2}.wpmdb .search-replace-data .td-3{flex-grow:10}.wpmdb .custom-search .header-row{padding:10px 0;grid-template-columns:0 5fr .5fr 5fr .5fr}.wpmdb .custom-search .replace-old.disabled:hover{color:rgba(51,51,51,.5)}.wpmdb .custom-search-replace-wrapper tr{padding:.4rem 0}.wpmdb .custom-search-replace-heading .td-1{flex-grow:6}.wpmdb .custom-search-replace-heading .td-2{flex-grow:2.3}.wpmdb .custom-search-replace-heading .td-3{flex-grow:6}.wpmdb .custom-search-replace-heading .td-4{flex-grow:1}.wpmdb .custom-search-replace-data .td-1{flex-grow:.5}.wpmdb .custom-search-replace-data .td-2{flex-grow:6}.wpmdb .custom-search-replace-data .td-3{flex-grow:2}.wpmdb .custom-search-replace-data .td-4{flex-grow:6}.wpmdb .custom-search-replace-data .td-5{flex-grow:.5}.wpmdb tr:nth-child(2n){background:#f7f7f7}.wpmdb tr:nth-child(odd){background:#fff}.wpmdb .table{width:100%}.wpmdb .table td{padding:.5rem}.wpmdb .styled-check{position:relative;top:3px;margin-right:3px}.wpmdb .profile-header-arrow{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);position:relative;top:4px;opacity:.5;margin:0 10px}.wpmdb .shadow-div{background:#fff;border:1px solid #d6d6d6;box-shadow:0 1px 8px 0 rgba(0,0,0,.05),0 2px 1px 0 rgba(0,0,0,.03);border-radius:6px}.wpmdb .backups-table .styled-check polyline,.wpmdb .profile-table .styled-check polyline{stroke:#fff}.wpmdb .backups-table tr.toggled,.wpmdb .profile-table tr.toggled{padding-top:0;padding-bottom:0;padding-right:8px}.wpmdb .backups-table td,.wpmdb .profile-table td{padding:.45rem}.wpmdb .backups-table td.date,.wpmdb .profile-table td.date{width:30%}.wpmdb .backups-table td .confirm-delete,.wpmdb .profile-table td .confirm-delete{position:absolute;top:-2.8rem;left:.6rem}.wpmdb .backups-table td.relative,.wpmdb .profile-table td.relative{position:relative;padding:0}.wpmdb .backups-table td:first-child,.wpmdb .profile-table td:first-child{padding-left:0;overflow-wrap:break-word}.wpmdb .backups-table td .delete-profile,.wpmdb .profile-table td .delete-profile{padding-right:0}.wpmdb .backups-table td:nth-child(4),.wpmdb .profile-table td:nth-child(4){padding-left:1.05rem}.wpmdb .table-heading{padding:.15rem 1.5rem}.wpmdb .table-divider-line{height:1px;width:100%}.wpmdb tr{padding:.4rem 1.25rem}.wpmdb table{width:100%}.wpmdb .table-col-date{flex-grow:4}.wpmdb .table-col-item{flex-grow:16}.wpmdb .table-col-action{flex-grow:1;margin-left:.5rem}.wpmdb .container-default{padding:1rem 1.25rem}.wpmdb .container-default,.wpmdb .container-table{background:#fff;border:1px solid #d6d6d6;border-radius:3px}.wpmdb .container-table{overflow:scroll}.wpmdb .container-table li{margin:.2rem!important;padding:.1rem 1rem}.wpmdb .container-table li:active,.wpmdb .container-table li:hover{background:#a5ddf1}.wpmdb .container-toggle{background:#fff;border:1px solid #d6d6d6;border-radius:3px;width:20rem;padding:1.25rem 1.5rem}.wpmdb .btn-container-toggle{cursor:pointer;text-align:left}.wpmdb .container-toggle-active{background:rgba(128,189,212,.2);border:1px solid #236de7}.wpmdb .migration-progress{background:#fff;box-shadow:0 2px 8px 0 rgba(0,0,0,.05),0 2px 1px 0 rgba(0,0,0,.05);box-sizing:border-box;border-radius:4px;display:flex;max-height:none;padding:40px;width:100%}@media(min-height:680px){.wpmdb .migration-progress{max-height:calc(100vh - 128px)}.wpmdb .migration-progress:not(:last-child){max-height:none}}@media(min-height:840px){.wpmdb .migration-progress:not(:last-child){max-height:calc(100vh - 280px)}}.wpmdb .migration-progress input[type=checkbox]{cursor:pointer;margin-top:-1px!important;margin-right:.05rem}.wpmdb .error-icon{margin-right:10px}.wpmdb .migration-title{margin:.5rem 0 0;max-width:645px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:0;font-weight:400}.wpmdb .migration-title .error-icon{margin-right:15px}.wpmdb .migration-timer{letter-spacing:-.01rem;font-size:.88rem;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";font-variant-numeric:tabular-nums;color:#707070;align-self:center;text-align:right}.wpmdb .migration-progress-steps{align-items:center;font-size:.75rem;display:flex;margin-right:1rem;margin-top:1.2rem}.wpmdb .migration-progress-steps span,.wpmdb .migration-progress-steps svg{margin-right:3px}.wpmdb .migration-progress-btn{padding:.6rem 2.4rem;margin-right:.75rem;clear:both;float:left}.wpmdb .migration-progress-controls{margin-top:3rem;width:100%}.wpmdb .migration-error .migration-percentage{color:#dc3232}.wpmdb .migration-percentage{font-size:1.7rem!important;font-weight:300;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";font-variant-numeric:tabular-nums;color:#236de7;margin:.5rem .5rem 0 0!important}.wpmdb .migration-data-transferred{font-size:.75rem;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";font-variant-numeric:tabular-nums;color:#707070!important;text-transform:uppercase;line-height:1;margin-bottom:.85rem!important}.wpmdb .migration-tables-searched{line-height:1;margin-bottom:.85rem!important;color:#333;margin-left:50px;font-weight:400}.wpmdb .migration-progress-bar{width:100%;overflow:hidden}.wpmdb .migration-progress-bar,.wpmdb .migration-progress-bar-running{height:.5rem;border-radius:5rem}.wpmdb .migration-error .migration-progress-bar-running{background:#dc3232}.wpmdb .migration-error .migration-timer{display:flex;margin-bottom:2rem;align-self:center}.wpmdb .migration-complete{width:100%}.wpmdb .migration-complete .migration-title{margin-bottom:0;margin-top:1rem;font-weight:500}.wpmdb .migration-complete .backup-path{display:block;margin-top:.6rem}.wpmdb .migration-complete .backup-path:hover{text-decoration:underline}.wpmdb .migration-progress-content{display:flex;flex-direction:column;width:100%}.wpmdb .migration-progress-content p{margin-bottom:2rem}.wpmdb .migration-progress-content .btn-sm{min-width:7.5rem}.wpmdb .preview-migration-heading{color:#707070;margin-left:10px;font-weight:400}.wpmdb .migration-complete-summary{text-align:center;margin-bottom:2rem;margin-top:0}.wpmdb .mdb-migration-error h4,.wpmdb .migration-complete-summary{opacity:1;font-size:.95rem!important;font-weight:400!important;line-height:1.5!important}.wpmdb .migration-complete-close-btn{margin:.5rem auto 0;padding-left:2rem;padding-right:2rem}.wpmdb .csv-download-btn,.wpmdb .migration-complete-close-btn{min-width:220px}.wpmdb .popup-close{margin-right:-.8rem;margin-top:-.8rem;height:16px;cursor:pointer}.wpmdb .popup-close:focus-visible{border-radius:4px;outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .twitter{position:absolute;top:.8rem;right:0;height:24px}.wpmdb .review-container{background:rgba(35,109,231,.05);border:1px solid #236de7;border-radius:4px;padding:1.25rem}.wpmdb .review-container-text{font-size:1rem;color:#236de7}.wpmdb .review-stars{margin-left:1rem;cursor:pointer}.wpmdb .migration-free-advert{padding:3rem 3.25rem;max-width:56rem}.wpmdb .migration-free-advert h2{margin-bottom:2rem}.wpmdb .migration-free-advert li{padding:.35rem 0}.wpmdb .migration-free-advert-icon{margin-right:.5rem}.wpmdb .migration-free-advert-btn{margin-top:2rem}.wpmdb .video-container{padding:.65rem 1.5rem;margin-top:1.1rem}.wpmdb .video-container:hover{cursor:pointer}.wpmdb .video-container .column:nth-child(2){margin-left:2rem}.wpmdb .video-container:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .video-container-icon{margin-right:2rem;margin-top:.25rem}.wpmdb .video-container h3{margin-bottom:.5rem}.wpmdb .tweet-testimonial{background:#04223f;border-radius:4px;padding:1.5rem;margin-top:1rem}.wpmdb .twitter-handle{margin-left:.5rem}.wpmdb .tweet-testimonial-text{margin-top:1rem}.wpmdb .avatar{width:3.5rem;height:3.5rem;margin-right:1.5rem}.wpmdb .sidebar{border-radius:4px;max-width:16rem}.wpmdb .sidebar-content{padding:1.25rem}.wpmdb .sidebar-graphic{width:100%}.wpmdb .sidebar h3{margin-bottom:1rem;font-weight:400;font-size:1.3rem}.wpmdb .sidebar-input-text{margin-top:.5rem;width:100%;padding:.4rem;box-sizing:border-box;background:#fff;border:1px solid #d6d6d6;border-radius:3px;font-size:.8rem}.wpmdb .coupon-text{margin-bottom:1rem}.wpmdb .sidebar-btn{margin-top:1rem;text-transform:none;padding:.6rem;width:100%;text-align:center;font-weight:500}.wpmdb .sidebar-smalltext{opacity:.5;font-size:.75rem;color:#000;margin-top:1.5rem;margin-bottom:1rem}.wpmdb .sidebar-tweet-testimonial{background:#04223f;padding:1rem}.wpmdb .sidebar-tweet-testmonial h5{font-size:1rem}.wpmdb .sidebar-tweet-text{font-size:.88rem;color:#fff;margin-top:1rem;margin-bottom:.25rem}.wpmdb .documentation-panel{padding:2rem}.wpmdb .documentation-panel li{padding:.35rem 0}.wpmdb .documentation-link{font-size:1rem}.wpmdb .custom-search-replace .row,.wpmdb .standard-search-replace .row{border-radius:5px}.wpmdb .custom-search-replace .row .header-row,.wpmdb .standard-search-replace .row .header-row{padding-top:0}.wpmdb .custom-search-replace p:last-of-type,.wpmdb .standard-search-replace p:last-of-type{margin-bottom:0}.wpmdb .__react_component_tooltip.type-dark a{color:#fff;text-decoration:underline}.wpmdb .action-tooltip{font-weight:400;max-width:460px;border-color:#d6d6d6!important;box-shadow:0 5px 24px 0 rgba(4,34,63,.16);line-height:1.2rem;padding:.75rem;color:#343434;z-index:99;position:fixed;opacity:1;border-radius:5px}.wpmdb .action-tooltip .dark{font-weight:500;color:grey}.wpmdb .action-tooltip.place-left:before{border-left-color:#d6d6d6!important}.wpmdb .action-tooltip.place-right{margin-left:25px}.wpmdb .action-tooltip.place-right:before{border-right-color:#d6d6d6!important}.wpmdb .action-tooltip.place-top:before{border-top-color:#d6d6d6!important}.wpmdb .action-tooltip.place-bottom{margin-top:30px}.wpmdb .action-tooltip.place-bottom:before{left:50%;border-bottom-color:#d6d6d6!important}.wpmdb .action-tooltip.place-bottom:after{left:50%;border-bottom-color:#fff;border-bottom-style:solid!important;border-bottom-width:6px!important}@media(max-width:700px){.wpmdb .action-tooltip.action-backup_local.place-bottom:after,.wpmdb .action-tooltip.action-backup_local.place-bottom:before{left:80%}}.wpmdb #welcome-wrap{height:170px;margin-top:20px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);clear:both}.wpmdb #welcome-wrap #welcome-img{width:170px;height:170px;float:left}.wpmdb #welcome-wrap .welcome-text{height:130px;padding:20px 25px 20px 195px;background:#fff}.wpmdb #welcome-wrap .welcome-text h3{font-weight:lighter;font-size:22px;margin:10px 0}.wpmdb #welcome-wrap .welcome-text p{font-size:15px;line-height:1.5}.wpmdb #welcome-wrap .welcome-text a{font-weight:700}.wpmdb input.readonly,.wpmdb input[readonly],.wpmdb textarea.readonly,.wpmdb textarea[readonly]{background-color:#e1e7ea;border-color:#c0cad1}.wpmdb .relative{position:relative}.wpmdb .sr-only{position:absolute;width:1px!important;height:1px!important;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.wpmdb input[type=text]:focus,.wpmdb select:focus,.wpmdb textarea:focus{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec;color:#000;color:initial}.wpmdb input[type=text]:hover,.wpmdb select:hover,.wpmdb textarea:hover{color:#000;color:initial}.wpmdb .float-left{float:left}.wpmdb .float-right{float:right}.wpmdb .header-wrap>.wrapper{display:grid}.wpmdb .header-wrap .inline-message.warning,.wpmdb .header-wrap .notification-message.warning-notice{background-color:#fff;border-left:4px solid #ffba00}.wpmdb .header-wrap .notification{margin-top:1.25rem}.wpmdb .header-wrap .inline-message,.wpmdb .header-wrap .notification-message{border-radius:0;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:10px 14px;font-size:13px}.wpmdb .header-wrap .wpmdb div.below-title.warning,.wpmdb .header-wrap div.updated.warning{box-sizing:border-box;margin:10px 0}.wpmdb .child-panel .panel-summary,.wpmdb .muted,.wpmdb .panel-summary .panel-summary{padding-left:0}.wpmdb .collapsed-panel{padding:.75rem;margin-bottom:.8rem}.wpmdb .svg-spinner{position:absolute;top:-2px;left:2px}.wpmdb .error-btn{margin-top:50px}.wpmdb .mdb-migration-error h4{margin:2rem 0 2.5rem}.wpmdb .mdb-migration-error h4 span{color:#236de7;font-weight:600}.wpmdb .mdb-migration-error h4 span .black{color:#000}.wpmdb .mdb-migration-error .mdb-migration-error-message a{color:#80ddff;text-decoration:underline}.wpmdb .mdb-migration-error .mdb-migration-error-message a:hover{text-decoration:none}.wpmdb .mdb-migration-error .mdb-migration-error-message .error-block{padding:15px;background:#424141;color:#fff;border-radius:4px;margin-bottom:38px;overflow:scroll;max-height:200px}.wpmdb .wpmdb-profiles{display:inline;display:initial}.wpmdb .wpmdb-profiles .new-migration{margin-top:30px;display:inline-block;line-height:normal;padding:12px 35px 16px}.wpmdb .wpmdb-profiles .new-migration svg{position:relative;top:3px}.wpmdb #import-file{border:0;clip:rect(0,0,0,0);height:1px;overflow:hidden;padding:0;position:absolute!important;white-space:nowrap;width:1px}.wpmdb #import-file+label{max-width:82px}.wpmdb .import-message input:focus-visible+label{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .import-message label{margin-left:0}.wpmdb .import-message .btn{padding:6px 20px}.wpmdb .import-message span{display:inline-block;margin-left:0;padding-left:1rem}.wpmdb .action-panel input[type=radio]:focus-visible,.wpmdb .child-panel input[type=radio]:focus-visible,.wpmdb .wpmdb-form input[type=radio]:focus-visible{border:1px solid #7e8993;outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .action-panel label,.wpmdb .child-panel label,.wpmdb .wpmdb-form label{margin-left:.25rem}.wpmdb .action-panel input[type=radio],.wpmdb .child-panel input[type=radio],.wpmdb .wpmdb-form input[type=radio]{width:16px;height:16px;min-width:0;margin-top:0}.wpmdb .action-panel input[type=radio]:checked,.wpmdb .child-panel input[type=radio]:checked,.wpmdb .wpmdb-form input[type=radio]:checked{background:#236de7;border:none}.wpmdb .action-panel input[type=radio]:checked:before,.wpmdb .child-panel input[type=radio]:checked:before,.wpmdb .wpmdb-form input[type=radio]:checked:before{background-color:#fff;width:6px;height:6px;margin:0;position:relative;top:5px;left:5px}.wpmdb .action-panel input[type=checkbox],.wpmdb .child-panel input[type=checkbox],.wpmdb .wpmdb-form input[type=checkbox]{width:16px!important;height:16px!important}.wpmdb .action-panel input[type=checkbox]:disabled,.wpmdb .child-panel input[type=checkbox]:disabled,.wpmdb .wpmdb-form input[type=checkbox]:disabled{background:rgba(187,189,198,.3);cursor:not-allowed;opacity:1}.wpmdb .action-panel input[type=checkbox]:disabled+label,.wpmdb .child-panel input[type=checkbox]:disabled+label,.wpmdb .wpmdb-form input[type=checkbox]:disabled+label{cursor:not-allowed;color:#3f3f3f}.wpmdb .action-panel input[type=checkbox]:focus,.wpmdb .child-panel input[type=checkbox]:focus,.wpmdb .wpmdb-form input[type=checkbox]:focus{border:1px solid #7e8993}.wpmdb .action-panel input[type=checkbox]:checked,.wpmdb .child-panel input[type=checkbox]:checked,.wpmdb .wpmdb-form input[type=checkbox]:checked{background-color:#236de7;border-radius:4px;border:none}.wpmdb .action-panel input[type=checkbox]:checked:disabled,.wpmdb .child-panel input[type=checkbox]:checked:disabled,.wpmdb .wpmdb-form input[type=checkbox]:checked:disabled{background:#bbbdc6}.wpmdb .action-panel input[type=checkbox]:checked:before,.wpmdb .child-panel input[type=checkbox]:checked:before,.wpmdb .wpmdb-form input[type=checkbox]:checked:before{content:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M4 8.5L7.2 11 12 5' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");margin:initial;position:relative;width:16px!important;height:16px!important}.wpmdb select option:checked{background-color:#a5ddf1!important}.wpmdb .table-size{font-weight:500;color:grey}.wpmdb .select-wrap{margin-top:16px}.wpmdb .select-wrap ul{padding:8px}.wpmdb .select-wrap ul li{height:32px;margin:0;display:flex;align-items:center;border-radius:4px}.wpmdb .select-wrap ul li:hover{background-color:#f7f7f7}.wpmdb .select-wrap ul li input{margin:0 .25rem 0 8px}.wpmdb .select-wrap ul li label{margin-left:.25rem;width:100%}.wpmdb .multiselect-options{margin-bottom:0}.wpmdb .multiselect-options button{display:inline-block;padding:0 .5rem;color:#0073aa;font-weight:500;text-decoration:underline;margin-bottom:0;border-radius:4px}.wpmdb .multiselect-options button:hover{text-decoration:none}.wpmdb .multiselect-options button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .multiselect-options button:first-child{padding-left:0}.wpmdb .options-list{margin:.15rem 0}.wpmdb .options-list .dark{font-weight:500;color:grey}.wpmdb .options-list>div{margin:.4rem 0}.wpmdb .options-list>div:first-child{margin-top:0}.wpmdb .options-list>div:last-child{margin-bottom:0}.wpmdb .options-list small{margin:15px 0 0 10px;display:block}.wpmdb .question-mark{border-radius:50%}.wpmdb .question-mark:focus{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}@-webkit-keyframes spinner-animation{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(1turn)}}@keyframes spinner-animation{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(1turn)}}.wpmdb #el_6X7lquFKkl{fill:#d6d6d6}.wpmdb .styled-spinner-wrap{width:1.2rem;height:1.2rem;-webkit-animation:spinner-animation .6s infinite;animation:spinner-animation .6s infinite;-webkit-animation-timing-function:cubic-bezier(.42,.44,.74,.74);animation-timing-function:cubic-bezier(.42,.44,.74,.74);-webkit-animation-play-state:running;animation-play-state:running;display:inline-block}.wpmdb .styled-spinner-wrap.paused{-webkit-animation-play-state:paused;animation-play-state:paused}.wpmdb .red{color:#dc3232}.wpmdb .migration-message{color:#000;opacity:.6;font-weight:600;padding:8px 0}.wpmdb .notification .licence-action{margin-top:.8rem}.wpmdb .beta-badge{background:#236de7;color:#fff;font-size:11px;padding:1px 10px;border-radius:5px;margin-left:8px;text-transform:uppercase}.wpmdb .high-performance-setting{margin-top:1rem}.wpmdb .fs-stats-container{display:flex;flex-direction:row;justify-content:space-evenly;text-align:left;align-items:flex-start;background:#f8f8f8;border:1px solid #eee;border-radius:4px;font-weight:400;font-size:11px;margin-top:20px;line-height:11px}.wpmdb .fs-stats-container .fs-stats{text-align:left;display:flex;flex-direction:column;align-items:flex-start;flex-grow:1;border-right:1px solid #eee;padding:16px 0 16px 24px}.wpmdb .fs-stats-container .fs-stats:first-child{padding-left:16px}.wpmdb .fs-stats-container .fs-stats .fs-stat-value{margin-top:6px;font-weight:500;font-size:12.5px;line-height:12.5px}.wp-admin .wpmdb .compatibility-mode-block select[multiple]{height:7rem}.settings-node-enter{opacity:.1}.settings-node-enter-active{opacity:1;transition:opacity .8s}.settings-node-exit{opacity:1}.settings-node-exit-active{opacity:0;transition:opacity .45s}.btn.settings-node-exit-active{display:none}.settings-spinner{position:absolute;top:-2px;left:2px}.settings-spinner.relative{position:relative;top:4px;left:5px;height:22px;width:22px}.settings-spinner #el_6X7lquFKkl{fill:#236de7}.wrap{margin:0}#wpcontent{padding-left:0}.wp-core-ui select[multiple]{padding:2px}option{padding:3px;letter-spacing:-.015rem}.panel-summary{line-height:1.5!important;padding-left:2rem}.version-mismatch-error button{display:inline!important;font-size:inherit!important}.version-mismatch-error .blue-check{position:absolute;margin-top:-2px;display:inline}.remote-update-spinner{position:absolute!important}@media screen and (max-width:782px){.auto-fold #wpcontent{padding-left:0}}.__react_component_tooltip.show{opacity:1!important}.license-notification-spinner{position:absolute;top:-10px;left:2px}.modal-container{max-width:960px;padding-bottom:64px;width:100%}.wpmdb .free .actions-panel .action-button-group{height:100%;display:flex;flex-direction:column}@media(max-width:1400px){.wpmdb .free .actions-panel .action-button-group{max-width:260px}.wpmdb .free .actions-panel .action-button-group:last-child h4{margin-top:35px}}.wpmdb .free .actions-panel .action-row{max-width:100%}@media(max-width:1400px){.wpmdb .free .actions-panel .action-row{grid-template-columns:2fr 2fr;padding-right:0}}.wpmdb .free .addons-container{grid-template-columns:repeat(2,minmax(240px,1fr))!important}.wpmdb .free .addon-container{min-height:16rem}.wpmdb .free .license-block{grid-gap:20px;grid-template-columns:1.2fr 1fr;justify-items:end}.wpmdb .free .license-block .license-status{top:0}@media(max-width:1280px){.wpmdb .free .profiles-list{grid-template-columns:1fr;grid-gap:1.5rem}}.wpmdb .free-advanced-options{display:grid}.wpmdb .wrapper-free{display:grid;grid-template-columns:8fr 315px}.wpmdb .mdb-free-sidebar{margin-left:30px;display:flex;flex-direction:column}.wpmdb .mdb-free-sidebar .inner-wrap{background:#fff;border-radius:7px;border:1px solid #d9e1eb;box-shadow:0 1px 2px 0 rgba(0,0,0,.1)}.wpmdb .mdb-free-sidebar .block{padding:20px}.wpmdb .mdb-free-sidebar .wpmdb-banner{display:block;background-color:#a5ddf1;background-position:0 100%;background-repeat:no-repeat;padding-bottom:180px;box-shadow:none;border-radius:7px 7px 0 0;color:#042340}.wpmdb .mdb-free-sidebar .wpmdb-banner h4{font-weight:300;font-size:28px;margin:0 0 15px;padding:25px 0 0 20px}.wpmdb .mdb-free-sidebar .wpmdb-banner p{font-size:14px;padding:0 20px;margin:0}.wpmdb .mdb-free-sidebar .wpmdb-banner img{display:block}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details{background-color:#042340;padding:10px 20px 20px;color:#eee;font-size:13px;margin:0;display:block;text-decoration:none}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details h1{font-size:28px;color:#a5ddf1;margin:0 0 15px;padding:0;text-decoration:none;font-weight:200;line-height:1}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details h3{color:#a5ddf1;font-weight:500;text-decoration:none;font-size:15px;letter-spacing:-.2px;box-shadow:none;line-height:1.5}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details p{margin:0}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details a{color:#eee;font-weight:700;text-decoration:none;font-size:16px;box-shadow:none}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details a:hover{color:#fff}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details ul{margin:0}.wpmdb .mdb-free-sidebar .wpmdb-upgrade-details ul li{list-style:none;margin:8px 0;padding-left:28px;line-height:19px;background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%2388DEF2' d='M15.878 6.61A8 8 0 11.122 9.39a8 8 0 0115.756-2.78zm-8.71 5.618l5.936-5.936a.516.516 0 000-.73l-.73-.73a.516.516 0 00-.73 0l-4.84 4.841-2.26-2.26a.516.516 0 00-.73 0l-.73.73a.516.516 0 000 .73l3.354 3.355a.516.516 0 00.73 0z'/%3E%3C/svg%3E") 0 2px no-repeat}.wpmdb .mdb-free-sidebar .wpmdb-discount{border-top:none;padding-bottom:5px}.wpmdb .mdb-free-sidebar .wpmdb-discount h2{padding:0;margin:0 0 .5em;color:#666;font-size:17px;line-height:1.4em;float:none;font-weight:500}.wpmdb .mdb-free-sidebar .wpmdb-discount h3{font-size:16px;margin:20px 0 0}.wpmdb .mdb-free-sidebar .wpmdb-discount h3 a{color:#fff;display:flex;background:#236de7;box-shadow:0 2px 0 0 #0d51c1;border-radius:4px;margin:0 auto;padding:.9rem 0 .8rem;text-align:center;text-transform:uppercase;font-size:14px;letter-spacing:1px;justify-content:center;box-shadow:0 2px 2px 0 #0d53bf}.wpmdb .mdb-free-sidebar .wpmdb-discount h3 a:hover{background:#145dd6}.wpmdb .mdb-free-sidebar .wpmdb-discount p{margin:0}.wpmdb .mdb-free-sidebar .wpmdb-discount p.interesting{margin-bottom:1em;line-height:1.4}.wpmdb .mdb-free-sidebar .wpmdb-discount .links{margin-bottom:2em}.wpmdb .mdb-free-sidebar .wpmdb-discount .links a{text-decoration:none}.wpmdb .mdb-free-sidebar .wpmdb-discount .discount-applied{color:#999;font-size:12px;line-height:1.4em;text-align:center;margin:1.2rem auto!important;width:100%}.wpmdb .mdb-free-sidebar .wpmdb-discount .field{margin-bottom:.5em}.wpmdb .mdb-free-sidebar .wpmdb-discount .field p{margin-bottom:.3em}.wpmdb .mdb-free-sidebar .wpmdb-discount .field.submit-button{margin-bottom:1em}.wpmdb .mdb-free-sidebar .testimonial{border:1px solid #d9e1eb;border-radius:6px;padding:0 1rem;width:220px;display:flex;flex-direction:column;align-items:center;justify-content:center;margin:0 auto;box-shadow:0 1px 2px 0 rgba(0,0,0,.1)}.wpmdb .mdb-free-sidebar .testimonial p{margin:0}.wpmdb .mdb-free-sidebar .testimonial .header{display:flex;justify-content:space-between;width:100%;padding:1rem 0 .4rem;align-items:center}.wpmdb .mdb-free-sidebar .testimonial .quote{font-size:15px;color:#666;letter-spacing:-.25px;line-height:20px;margin-bottom:1rem}.wpmdb .mdb-free-sidebar .testimonial .author{white-space:nowrap;text-align:right;font-size:16px;font-weight:600;color:#666;margin-top:-7px}.wpmdb .mdb-free-sidebar .testimonial .stars{white-space:nowrap;margin-bottom:5px}.wpmdb .mdb-free-sidebar .testimonial .stars .dashicons.dashicons-star-filled{color:#236de7}.wpmdb .mdb-free-sidebar .testimonial .via{text-align:right;font-size:12px}.wpmdb .mdb-free-sidebar .testimonial .via a{color:#666}.wpmdb .mdb-free-sidebar .testimonial .via a:before{content:"\F301";display:inline-block;-webkit-font-smoothing:antialiased;font:normal 18px/1 dashicons;vertical-align:top;margin-right:3px}.wpmdb .dbi{background:#2e2e31;margin-top:1rem;padding:1rem;color:#fff;font-size:12px;font-weight:300;text-align:center;border-radius:0 0 7px 7px}.wpmdb .dbi .name{font-weight:500;margin-top:.5rem;justify-content:center}.wpmdb .dbi .name svg{padding-right:12px}.wpmdb .free-disabled .panel-header{grid-column:3/span 2;display:grid;grid-template-columns:2fr 32px;text-align:left}.wpmdb .free-disabled .panel-header-wrap{min-height:56px;padding:0 1.25rem}.wpmdb .free-disabled .panel-header-wrap.has-summary-no-child button{display:none}.wpmdb .free-disabled .enabled .panel-header-wrap.has-summary-no-child button{display:block}.wpmdb .free-disabled h4 label{font-size:.9rem;font-weight:600}.wpmdb .free-disabled .panel-title{min-width:95px;color:rgba(68,68,68,.7215686275)}.wpmdb .free-disabled .panel-summary{max-width:1023px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wpmdb .free-disabled .action-panel .panel-header-wrap:hover{cursor:auto}.wpmdb .free-disabled .disabled .panel-summary{text-overflow:clip;max-width:none;white-space:normal;position:relative;color:rgba(68,68,68,.7215686275)}.wpmdb .free-disabled .disabled .panel-summary a{padding:0;color:rgba(68,68,68,.7215686275);text-decoration:underline}.wpmdb .free-disabled .disabled .panel-summary svg{width:18px;position:absolute;top:-3px;left:1px}.wpmdb .free-disabled .panel-header-wrap.no-child{grid-template-columns:20px .4fr 4fr}.wpmdb .free-disabled .panel-header-wrap.has-summary-no-child{grid-template-columns:35px 160px 2fr 2fr}.wpmdb .free-disabled .has-divider .panel-header-wrap.has-summary-no-child{grid-template-columns:35px 160px 0 2fr 2fr}.wpmdb .free-disabled .has-divider .panel-header-wrap.has-summary-no-child .panel-header{grid-column:4/span 2}.wpmdb .custom-search-replace,.wpmdb .standard-search-replace{padding-top:.8rem}.wpmdb .custom-search-replace .row,.wpmdb .standard-search-replace .row{max-width:100%!important}.profiles-list{grid-column:1/3;grid-row:3;display:grid;grid-template-columns:repeat(2,1fr);grid-gap:.5rem;grid-column-gap:2rem}.profiles-list tr.disabled{opacity:.5}.profiles-list tr.disabled .link:hover{text-decoration:underline;cursor:default}.profiles-list .first-col{grid-column:1}.profiles-list .first-col h3{border-bottom:1px solid #000}.profiles-list .second-col{grid-column:2}.profiles-list .second-col .header{display:grid;grid-template-columns:repeat(2,1fr);border-bottom:1px solid #000}.profiles-list .second-col .header h3{margin-bottom:0}.profiles-list .second-col .header a{justify-self:end;align-self:end;padding-bottom:.5rem}.profiles-list .first-col,.profiles-list .second-col{padding:0 .5rem .5rem}.profiles-list .no-items-wrap.one-profile{align-self:center}.profiles-list .no-items-wrap .no-items{padding:1rem 1.5rem;color:#999}.profiles-list .table{display:grid;grid-template-rows:55px 0 1.3fr;padding-bottom:0}.profiles-list input[type=text]{display:flex;width:70%;margin:0 18px 0 0;max-width:382px;padding:10px;font-size:inherit;justify-self:start}.profiles-list .button-wrap{display:flex;height:40px;align-items:center}.profiles-list .action-btn.in-progress{opacity:.5}.profiles-list .action-btn.in-progress:hover{cursor:not-allowed}.profiles-list .action-btn.btn-success{display:flex;height:80%}.profiles-list .action-btn.btn-success svg{top:-1px;flex:1 1}.profiles-list .profile-table.one-profile{align-self:center}.profiles-list .profile-table .toggled td.table-col-action{padding:3px .4rem}.migrate-notice{border-width:1px;border-style:solid;border-radius:4px;display:grid;grid-template-columns:16px 1fr;padding:10px 16px;font-size:13px;grid-gap:16px;gap:16px;margin-top:16px;margin-bottom:16px;grid-column:1;grid-column-end:-1}.migrate-notice svg{margin-top:2px}.migrate-notice-content :first-child{padding-top:0;margin-top:0}.migrate-notice-content :last-child{padding-bottom:0;margin-bottom:0}.migrate-notice.danger{border-color:#dc3232;color:#b12006;background:#fef2f1}.migrate-notice.info{border-color:#0968ff;color:#3b5ed5;background:#edf6ff}.migrate-notice.success{border-color:#46b450;color:#196049;background:#ecfdf5}.migrate-notice.warning{border-color:#ffb92b;color:#ab5a19;background:#fffbea}.wpmdb .dry-run-results-table{background-color:#f7f7f7;position:relative;border-collapse:collapse;display:flex;flex-direction:column;flex:1 1;margin:1.5rem 0;overflow:hidden}.wpmdb .dry-run-results-table thead{border-bottom:1px solid #d6d6d6}.wpmdb .dry-run-results-table tbody{overflow-y:auto}.wpmdb .dry-run-results-table a.upgrade{color:#236de7;text-transform:uppercase;font-weight:700}.wpmdb .dry-run-results-table .flex-container{flex-wrap:nowrap;height:25px}.wpmdb .dry-run-results-table .flex-container :first-child{flex:0 0 40%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;min-width:0}.wpmdb .dry-run-results-table .flex-container :last-child{font-variant-numeric:tabular-nums;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum"}.wpmdb .dry-run-results-table .flex-container :not(:first-child){width:100%;text-align:right}.wpmdb .dry-run-results-table .flex-container .table-heading{color:#707070;padding:.5rem}.wpmdb .dry-run-results-table .result-item .table-results-button{border-radius:4px;font-weight:600;color:#0473aa;text-decoration:underline;font-variant-numeric:tabular-nums;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum"}.wpmdb .dry-run-results-table .result-item .table-results-button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .dry-run-results-table .result-item .table-name{font-weight:500}.wpmdb .dry-run-results-table .action-tooltip{max-width:15rem!important;text-align:left!important}.wpmdb .dry-run-results-table .waiting-dash{color:#707070}.wpmdb .dry-run-results-table th{color:#9fa0a7;text-transform:uppercase;font-weight:500;font-size:1em;text-align:left;position:-webkit-sticky;position:sticky;top:0}.wpmdb .dry-run-results-single-table{border:1px solid #d6d6d6;border-radius:5px;margin-top:1.5rem;overflow-y:scroll}.wpmdb .dry-run-results-single-table:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .dry-run-results-single-table li{border-bottom:1px solid #d6d6d6;margin:0;padding:15px}.wpmdb .dry-run-results-single-table del{background-color:#ffe6e6;color:#950202;text-decoration:line-through}.wpmdb .dry-run-results-single-table ins{background-color:#daf6da;color:#258d26;text-decoration:none}.wpmdb .dry-run-results-single-table code{background-color:#f7f7f7;border-radius:4px;display:block;line-height:1.5;margin:0;overflow-wrap:anywhere;padding:10px 15px}.wpmdb .dry-run-results-single-table .header{border-bottom:none}.wpmdb .dry-run-results-single-table .header :last-child{margin-left:10px}.wpmdb .dry-run-result-meta{display:flex;grid-gap:1rem;gap:1rem;margin-bottom:.5rem}.wpmdb .no-top-margin{margin-top:10px!important}.wpmdb .hidden{display:none!important}.wpmdb .dry-run-notice{margin:0 0 1.5rem}.wpmdb .dry-run-controls{margin-top:0}.wpmdb .dry-run-controls .pagination-controls{margin-left:auto;display:flex;flex-direction:row;align-items:center}.wpmdb .dry-run-controls .pagination-controls span{margin-right:1.5rem}.wpmdb .dry-run-controls .pagination-controls button{min-width:3.5rem}.wpmdb .dry-run-controls .pagination-controls :last-child{margin-right:0}.wpmdb .dry-run-back-btn{align-self:flex-start;color:#0473aa;font-weight:600;text-decoration:underline;margin-bottom:20px!important}.database_panel_has_controls #wpmdb-database{display:grid;grid-template-columns:35px 1fr auto}.database_panel_no_controls #wpmdb-database{display:grid;grid-template-columns:1fr auto}.panel-arrow{transition:-webkit-transform .15s ease-out;transition:transform .15s ease-out;transition:transform .15s ease-out,-webkit-transform .15s ease-out}.panel-arrow.open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.action-panel{display:grid;margin-bottom:1.1rem;border-radius:4px;opacity:1}.action-panel.child-panel{margin-bottom:.95rem}.action-panel.disabled{opacity:.85}.action-panel.shadows{box-shadow:0 -2px 1px 0 rgba(0,0,0,.05),0 -1px 1px 0 rgba(0,0,0,.05);border-radius:4px}.action-panel .panel-header-wrap{transition:background .2s ease-out;align-items:center;align-self:center;padding:8px 1.25rem;min-height:40px;display:grid}.action-panel .panel-header-wrap a{justify-self:end;padding:.3rem}.action-panel .panel-header-wrap:hover{cursor:pointer}.action-panel .panel-header-wrap.has-summary-no-child{display:grid;grid-template-columns:195px 1px 4fr;padding:8px 1.25rem;min-height:40px}.action-panel .panel-header-wrap.has-summary-no-child .button-wrap{justify-self:right}.action-panel .panel-header-wrap.has-summary-no-child .button-wrap button{width:20px;height:20px;border-radius:4px}.action-panel .panel-header-wrap.has-summary-no-child .button-wrap button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.action-panel .panel-header-wrap.no-child{display:grid;grid-template-columns:minmax(0,.8fr) 4fr}.action-panel .panel-header-wrap.child-panel,.action-panel .panel-header-wrap.child-panel .panel-title{color:#575757}.action-panel .panel-header-wrap.child-panel.panel-open{background:#396c9c;color:#fff;border-radius:4px 4px 0 0;margin:-1px -1px 0}.action-panel .panel-header-wrap.child-panel.panel-open .panel-title{color:#fff;opacity:1;font-size:.9rem}.action-panel .panel-header-wrap.child-panel.panel-open #accordion_collapsed_default_active{fill:#fff}.action-panel.actions-panel .panel-header-wrap.has-summary-no-child.panel-open,.action-panel.connect-panel .panel-header-wrap.has-summary-no-child.panel-open,.action-panel.import-panel .panel-header-wrap.has-summary-no-child.panel-open{grid-template-columns:1fr 6fr 0}.action-panel.disabled .panel-header-wrap{border-radius:3px}.action-panel .panel-title{margin:0;align-self:center;font-size:.95rem}.action-panel .panel-title .count{font-size:.8rem}.action-panel .panel-header{text-align:right}.action-panel .panel-header.has-summary{display:grid;grid-template-columns:5fr .3fr;text-align:left}.action-panel .panel-header p{font-size:.8rem;font-weight:400;color:#575757}.action-panel .panel-header.summary{display:grid;grid-template-columns:repeat(2,1fr)}.action-panel .panel-header.child-panel-header{display:grid;grid-template-columns:20px 5fr;text-align:left}.action-panel .panel-header.child-panel-header .button-wrap{display:flex;align-items:center}.action-panel .panel-header.child-panel-header .button-wrap button{border-radius:4px;height:20px;width:20px}.action-panel .panel-header.child-panel-header .button-wrap button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.action-panel .panel-header.child-panel-header p{margin:.1rem 0 0}.action-panel .panel-header.child-panel-header .child-summary{padding-left:1rem;overflow:hidden}.action-panel .panel-header button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.action-panel .panel-body-wrap{position:relative}.action-panel .panel-body-wrap.panel-closed{visibility:hidden}.action-panel .panel-body{padding:26px 22px;background:#fff;border-top:1px solid #d6d6d6;display:grid;grid-template-columns:none;border-radius:0 0 6px 6px}.action-panel .panel-body>div:last-of-type{margin-bottom:0!important}.action-panel .panel-body.panel-closed{visibility:hidden}.action-panel .panel-body .panel-instructions{margin-top:0}.actions-panel .action-button-group{height:100%;display:flex;flex-direction:column}.actions-panel .action-buttons{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));padding:1rem 1.7rem 1.5rem 1.25rem}.actions-panel .action-buttons h4{flex:1 1;font-size:.8rem;letter-spacing:0;font-weight:500;margin-top:0;margin-bottom:1.75rem;text-transform:uppercase}@media(max-width:1350px){.actions-panel .action-buttons h4{font-size:.8rem}}.actions-panel .action-buttons .action-tooltip.wack:after,.actions-panel .action-buttons .action-tooltip.wack:before{left:20%!important}.actions-panel .action-row{grid-row:2;display:grid;grid-column-gap:5%;grid-template-columns:repeat(3,minmax(0,1fr));align-items:end;padding-right:33px;max-width:990px}.actions-panel .buttons{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));grid-gap:15px;gap:15px;padding-right:10px}.actions-panel .action-btn-wrap{position:relative;padding-bottom:100%}.actions-panel .action-btn-wrap a.upgrade{color:#236de7;text-transform:uppercase;font-weight:700}.actions-panel .action-icon{background:#fff;border:1px solid #d6d6d6;border-radius:6px;color:#747474;position:absolute;width:100%;height:100%;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.actions-panel .action-icon:hover{box-shadow:0 15px 13px 0 rgba(0,0,0,.15),0 2px 3px 0 rgba(0,0,0,.05);cursor:pointer;transition-duration:.15s;transition-timing-function:linear}.actions-panel .action-icon:focus{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.actions-panel .action-title{font-weight:500;font-size:.88rem;max-width:70%;margin:.5rem auto 1rem;text-align:center;line-height:1.5}.actions-panel .disabled .action-title{opacity:.5}.actions-panel .action-pull svg,.actions-panel .action-push svg{position:relative;top:10px}.actions-panel .action-icon.active .action-title,.actions-panel .action-icon:hover .action-title{color:#236de7;opacity:1}.actions-panel .disabled{cursor:default}.actions-panel .disabled.action-icon.active .action-title,.actions-panel .disabled.action-icon:hover .action-title{color:#000;color:initial;opacity:.5}.actions-panel .disabled.action-icon:hover{box-shadow:none;cursor:default}.actions-panel .action-title-locked{font-size:.88rem;width:50%;margin-top:1.5rem;margin-bottom:1rem;line-height:1.3;opacity:.5;font-weight:400}.wpmdb-save-profile .row{padding:0 1.4rem}.wpmdb-save-profile .flex-group{display:flex;flex-direction:column;width:100%}.wpmdb-save-profile .header-row{padding:1.4rem 1.4rem 0;border-bottom:1px solid #d6d6d6}.wpmdb-save-profile .header-row button{color:#a9a9a9;display:inline-block;font-weight:500;padding:13px 0}.wpmdb-save-profile .header-row button:nth-child(2){margin-left:1.5rem}.wpmdb-save-profile .header-row button.active{color:#236de7;border-bottom:2px solid #236de7;padding-bottom:11px;transition:none}.wpmdb-save-profile.save-profile-wrap{position:relative}.wpmdb-save-profile .recent-list{display:grid}.wpmdb-save-profile .save-profile-box{background:#fff;border:1px solid #d6d6d6;border-radius:5px;position:absolute;width:350px;min-height:330px;top:-410px;box-shadow:0 3px 60px rgba(0,0,0,.15),0 2px 5px rgba(0,0,0,.2);left:137px}.wpmdb-save-profile .save-profile-box .save-btn{width:100%;margin-top:auto;padding:.65rem 1.5rem;height:40px}.wpmdb-save-profile .save-profile-box .save-btn svg{margin-top:-7px}.wpmdb-save-profile .save-profile-box li{margin:0!important;padding:2px}.wpmdb-save-profile .save-profile-box input[type=text]{width:100%}.wpmdb-save-profile .save-profile-box input#save-new-profile{margin:5px 0 0;padding:13px 10px;font-size:14px}.wpmdb-save-profile .save-profile-box .save-profile-input{margin-top:-24px}.wpmdb-save-profile .save-profile-box .save-profile-input label{font-size:.7rem;margin:0}.wpmdb-save-profile .save-profile-box .close-wrap{position:absolute;height:20px;top:8px;right:8px}.wpmdb-save-profile .save-profile-box .close-wrap .close-picker:focus{box-shadow:none}.wpmdb-save-profile .scroll-div{max-height:90px;overflow-y:scroll;padding:.5rem;border:1px solid #d6d6d6;border-radius:6px}.wpmdb-save-profile .scroll-div.empty{overflow-y:visible;overflow-y:initial}.wpmdb-save-profile .scroll-div label{display:grid;grid-template-columns:10% 12% 5fr;align-items:center;white-space:nowrap;text-overflow:ellipsis}.wpmdb-save-profile .scroll-div label span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wpmdb-save-profile .scroll-div b{padding-left:8px}.wpmdb-save-profile .save-inner{height:200px;display:flex;align-items:center}.wpmdb-save-profile .profile-save-error{margin:18px 0;max-width:100%}.combo-button-container{position:relative;display:inline-block}.combo-button-container .btn-large{display:flex;padding:0;width:-webkit-max-content;width:max-content;min-width:210px;background-color:#236de7;color:#fff;border-radius:4px;border:1px solid #236de7;cursor:pointer;text-align:center;white-space:nowrap}.combo-button-container .btn-large .primary-btn{flex:0 0 78%;border-right:1px solid #1c57b9;border-radius:4px 0 0 4px}.combo-button-container .btn-large .secondary-btn{border-radius:0 4px 4px 0}.combo-button-container .btn-large button{padding:1.1rem;color:#fff;text-transform:uppercase;letter-spacing:.05rem;font-size:.8rem;font-weight:700}.combo-button-container .btn-large button:hover{background-color:#2062d0}.combo-button-container .btn-large button:focus-visible{background-color:#2062d0;outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.combo-button-container .btn-large button:active{background-color:#1c57b9}.combo-button-container .btn-large svg{right:0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.combo-button-container .btn-large svg g{stroke:#fff;fill:#fff}.combo-button-container .btn-large svg.expanded{-webkit-transform:rotate(1turn);transform:rotate(1turn)}.combo-button-container .combo-button-children{display:none;position:absolute;background:#fff;border-radius:6px;border:1px solid #c6d1dd;box-shadow:0 2px 6px rgba(0,0,0,.1);margin-top:-211px;z-index:9999}.combo-button-container .combo-button-children.show{display:flex;flex-direction:column;width:-webkit-max-content;width:max-content}.combo-button-container .combo-button-children .combo-button-child-container{border-bottom:1px solid #c6d1dd}.combo-button-container .combo-button-children .combo-button-child-container:first-child{border-top-left-radius:6px;border-top-right-radius:6px}.combo-button-container .combo-button-children .combo-button-child-container:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.combo-button-container .combo-button-children .combo-button-child-container:focus-visible,.combo-button-container .combo-button-children .combo-button-child-container:hover{background-color:#f1f5f9}.combo-button-container .combo-button-children .combo-button-child-container:active{background-color:#e2e8f0}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child{padding:16px;display:grid;grid-template-columns:1fr;cursor:pointer}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child .text span{clear:both;float:left}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child .text .label{font-weight:500;font-size:13.75px}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child .text .description{margin-top:5px;font-style:normal;font-weight:400;font-size:13px;text-align:left}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child svg polyline{stroke:#fff}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child .label{font-weight:600;text-transform:uppercase}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child.selected .check{display:inline-block}.combo-button-container .combo-button-children .combo-button-child-container .combo-button-child.selected .check polyline{stroke:#236de7}.combo-button-container .combo-button-children:last-child{border-bottom:none}.hp-transfers-checkbox-container{display:flex;flex-direction:row;border-radius:6px;border:1px solid #d6d6d6;padding:1.5em;width:45em;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_115_104)'%3E%3Cpath fill='%23fff' d='M0 0h6v96H0z'/%3E%3Cg clip-path='url(%23clip1_115_104)'%3E%3Cpath d='M6-.444V28l-8-3.556V-4L6-.444z' fill='%23222'/%3E%3Cpath d='M6 23.556V52l-8-3.556V20l8 3.556z' fill='%23FFCD4B'/%3E%3Cpath d='M6 47.556V76l-8-3.556V44l8 3.556z' fill='%23222'/%3E%3Cpath d='M6 71.556V100l-8-3.556V68l8 3.556z' fill='%23FFCD4B'/%3E%3Cpath d='M6 95.556V124l-8-3.556V92l8 3.556z' fill='%23222'/%3E%3C/g%3E%3Cpath d='M5-4v344h2V-4H5z' fill='%23000' fill-opacity='.16' mask='url(%23path-1-inside-1_115_104)'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_115_104'%3E%3Cpath fill='%23fff' d='M0 0h6v96H0z'/%3E%3C/clipPath%3E%3CclipPath id='clip1_115_104'%3E%3Cpath d='M6-4v344H0V-4h6z' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-repeat:repeat-y;background-color:#fff;box-shadow:0 2px 8px rgba(0,0,0,.05),0 2px 1px rgba(0,0,0,.05)}.hp-transfers-checkbox-container input[type=checkbox]{margin-top:2px}.hp-transfers-checkbox-container div{padding-left:.75em}.hp-transfers-checkbox-container div label{margin-left:0!important;display:flex;flex-direction:row;align-items:center}.hp-transfers-checkbox-container div label h2{margin:0;font-size:15px;line-height:15px}.hp-transfers-checkbox-container div a{color:#236de7;text-decoration:underline;font-weight:600}.hp-transfers-checkbox-container div p{font-weight:400;padding-top:10px;margin:0}.wpmdb .search-replace{padding-top:0}.wpmdb .search-replace a.upgrade{color:#236de7;text-transform:uppercase;text-decoration:underline;font-weight:700}.wpmdb .search-replace .content-row-wrap{max-width:calc(100% - 32px)}.wpmdb .search-replace .content-row-wrap:nth-child(2n){background:#f7f7f7}.wpmdb .search-replace .extra-row{display:grid;margin:0;grid-template-columns:1fr;padding-left:35px;align-items:center}.wpmdb .search-replace .extra-row .cell{width:50em}.wpmdb .search-replace .row{display:grid;margin:0;grid-template-columns:0fr 5fr 1.2fr 5fr 1fr .5fr;padding:11px 0 11px 22px;align-items:center}.wpmdb .search-replace .row.header-row{padding:18px 0 15px;max-width:100%;grid-template-columns:0fr 5fr 1.53fr 5fr .5fr}.wpmdb .search-replace .row.custom-search.header-row{padding-bottom:0}.wpmdb .search-replace .row .header-2{grid-column:2;text-transform:uppercase;font-weight:600}.wpmdb .search-replace .row .header-4{text-transform:uppercase;font-weight:600;grid-column:4}.wpmdb .search-replace .row.custom-search:nth-child(2n){background:transparent none repeat 0 0/auto auto padding-box border-box scroll;background:initial}.wpmdb .search-replace.standard-search-replace .row{grid-template-columns:20px 1fr 45px 1fr 76px}.wpmdb .search-replace.standard-search-replace .header-row{grid-template-columns:51px 2fr 43px 2fr 104px}.wpmdb .search-replace .custom-search .row{max-width:100%;grid-template-columns:43px 2fr 43px 2fr 24px 76px;grid-gap:8px;gap:8px}.wpmdb .search-replace .custom-search .custom-search-row{padding-left:0;padding-bottom:4px}.wpmdb .search-replace .custom-search .custom-search-row:focus-visible{outline:none}.wpmdb .search-replace .custom-search .custom-search-row:focus-visible .handle{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .search-replace .custom-search .custom-search-row:focus-visible .handle svg g{fill:#236de7}.wpmdb .search-replace .custom-search .custom-search-row .handle{border-radius:4px;border:1px solid #fff;line-height:0;height:43px;display:flex;align-items:center;justify-content:center}.wpmdb .search-replace .custom-search .header-row{padding-bottom:0}.wpmdb .search-replace .custom-search .cell{line-height:1}.wpmdb .search-replace .custom-search .cell input{margin:0}.wpmdb .search-replace .custom-search .cell input.invalid-expression{border:1px solid #dc3232}.wpmdb .search-replace .custom-search .cell input.invalid-expression:focus{box-shadow:0 0 4px 1px rgba(220,50,50,.3)}.wpmdb .search-replace.standard-search-replace .cell.replace,.wpmdb .search-replace.standard-search-replace .cell.search{padding-left:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wpmdb .search-replace .cell{font-size:.8rem}.wpmdb .search-replace .cell svg g,.wpmdb .search-replace .cell svg path{fill:#aaa}.wpmdb .search-replace .cell button:focus-visible svg path{fill:#236de7}.wpmdb .search-replace .cell.close svg path{fill:#eee}.wpmdb .search-replace .cell.close svg circle{fill:#999}.wpmdb .search-replace .cell.close button{height:24px;border-radius:50%}.wpmdb .search-replace .cell.close button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .search-replace .cell.close button:focus-visible svg path{fill:#eee}.wpmdb .search-replace .cell.close button:focus-visible svg circle{fill:#236de7}.wpmdb .search-replace .cell.custom-search-arrow{text-align:center}.wpmdb .search-replace .cell.custom-search-arrow svg{width:28px;height:28px}.wpmdb .search-replace .cell.custom-search-arrow button{border-radius:4px;border:1px solid #fff;width:43px;height:43px;display:flex;justify-content:center;align-items:center}.wpmdb .search-replace .cell.custom-search-arrow button:focus-visible{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .search-replace .cell.question{position:relative}.wpmdb .search-replace .cell.question svg{position:absolute;top:-14px;right:-32px;cursor:pointer}.wpmdb .search-replace .cell.question svg path{fill:#eee}.wpmdb .search-replace .cell input[type=text]{width:100%}.wpmdb .search-replace .cell input::-webkit-input-placeholder{color:#aaa}.wpmdb .search-replace .cell input:-ms-input-placeholder{color:#aaa}.wpmdb .search-replace .cell input::placeholder{color:#aaa}.wpmdb .search-replace .search-replace-row-options{display:flex;justify-content:flex-end;grid-gap:12px;gap:12px}.wpmdb .search-replace .search-replace-option input:focus-visible+label,.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover{border:1px solid #236de7}.wpmdb .search-replace .search-replace-option input:focus-visible+label .option-icon circle,.wpmdb .search-replace .search-replace-option input:focus-visible+label .option-icon path,.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover .option-icon circle,.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover .option-icon path{fill:#65707c}.wpmdb .search-replace .search-replace-option .toggle{margin:0}.wpmdb .search-replace .search-replace-row-options fieldset{display:flex;justify-content:flex-end;grid-gap:12px;gap:12px}.wpmdb .search-replace .search-replace-option{outline:none;display:inline-block}.wpmdb .search-replace .search-replace-option input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}.wpmdb .search-replace .search-replace-option input:focus-visible+label{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover{border:1px solid #236de7}.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover .option-icon circle,.wpmdb .search-replace .search-replace-option input:hover:not([disabled])+label:hover .option-icon path{fill:#65707c}.wpmdb .search-replace .search-replace-option input:disabled+label{cursor:not-allowed}.wpmdb .search-replace .search-replace-option input.option-disabled+label{background-color:#eaf0ea;border:1px solid #eaf0ea}.wpmdb .search-replace .search-replace-option input.option-disabled+label .option-icon circle,.wpmdb .search-replace .search-replace-option input.option-disabled+label .option-icon path{opacity:.5}.wpmdb .search-replace .search-replace-option .toggle{text-align:center;height:30px;width:30px;border-radius:3px;border:1px solid #b1b1b1;display:flex;align-items:center;justify-content:center}.wpmdb .search-replace .search-replace-option .toggle:active:enabled{background:#d6ecf1!important}.wpmdb .search-replace .search-replace-option .toggle:active:enabled .option-icon circle,.wpmdb .search-replace .search-replace-option .toggle:active:enabled .option-icon path{fill:#041b36!important}.wpmdb .search-replace .search-replace-option .toggle .option-icon circle,.wpmdb .search-replace .search-replace-option .toggle .option-icon path{fill:#b1b1b1}.wpmdb .search-replace .search-replace-option .toggle.active{border:1px solid #236de7;background-color:#edf6f7}.wpmdb .search-replace .search-replace-option .toggle.active:hover .option-icon circle,.wpmdb .search-replace .search-replace-option .toggle.active:hover .option-icon path{fill:#041b36!important;opacity:1!important}.wpmdb .search-replace .search-replace-option .toggle.active .option-icon circle,.wpmdb .search-replace .search-replace-option .toggle.active .option-icon path{fill:#05203f}.wpmdb .search-replace .search-replace-option .search-replace-spinner{margin-top:3px}.wpmdb .search-replace .search-replace-option .search-replace-spinner svg{margin-top:0}.wpmdb .search-replace .search-replace-option .search-replace-option-tooltip{width:15em}.wpmdb .search-replace .search-replace-option .search-replace-option-tooltip.action-tooltip a:not(.underline){text-decoration:none}.wpmdb .search-replace .invalid-expression .toggle.active{border:1px solid #dc3232;color:#05203f;background-color:pink;box-shadow:0 2px 1px rgba(0,12,204,.1)}.wpmdb .search-replace .invalid-expression p{color:#dc3232;margin:0}.wpmdb .search-replace .regex-info{margin-left:35px;padding-top:5px}.flex-col{flex:1 1}.toggle-switch{display:flex}.toggle-switch input:focus-visible+label{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.toggle-switch input[type=checkbox]{all:unset;height:0;width:0}.toggle-switch input[type=checkbox]:focus{box-shadow:none}.toggle-switch label{cursor:pointer;text-indent:-9999px;width:36px;height:20px;background:#cbd5e0;display:block;border-radius:100px;position:relative}.toggle-switch label:after{content:"";position:absolute;top:2px;left:2px;width:16px;height:16px;background:#fff;border-radius:90px;transition:.3s;box-shadow:0 1px 2px 0 rgba(0,0,0,.06),0 1px 3px 0 rgba(0,0,0,.1)}.toggle-switch label.checked{background:#236de7;transition:.3s}.toggle-switch input:checked+label:after{left:calc(100% - 2px);-webkit-transform:translateX(-100%);transform:translateX(-100%)}.wpmdb-settings-page .slider-title,.wpmdb-settings-page .toggle-title{text-transform:none;font-size:15px;margin:0;font-weight:500;position:relative}.wpmdb-settings-page .slider-title .has-tooltip,.wpmdb-settings-page .toggle-title .has-tooltip{display:flex}.wpmdb-settings-page .slider-title .has-tooltip svg,.wpmdb-settings-page .toggle-title .has-tooltip svg{margin-top:-3px;margin-left:8px;border-radius:50%}.wpmdb-settings-page .slider-title .has-tooltip svg:focus,.wpmdb-settings-page .toggle-title .has-tooltip svg:focus{outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb-settings-page h6{font-size:14px}.wpmdb-settings-page input[type=text]{width:48%;display:block;margin-bottom:1.1rem}.wpmdb-settings-page .flex{display:flex}.wpmdb-settings-page .settings-row{border-bottom:2px solid #e1e1e1;padding:56px 0}.wpmdb-settings-page .settings-row:first-child{padding-top:0}.wpmdb-settings-page .settings-row>.flex-container{margin-bottom:1.6rem;align-items:baseline}.wpmdb-settings-page .settings-row>.flex-container.licence-buttons{margin-bottom:0}.wpmdb-settings-page .settings-row h4{margin:0}.wpmdb-settings-page .settings-row .migration-permissions .flex-container:nth-child(3){margin-top:1.6rem}.wpmdb-settings-page .settings-row .migration-permissions .settings-spinner{top:-10px}.wpmdb-settings-page .settings-row .migration-action{margin-left:1.2rem}.wpmdb-settings-page .settings-row .migration-action .toggle-error,.wpmdb-settings-page .settings-row .migration-action .toggle-success{top:-30px}.wpmdb-settings-page label{margin:0}.wpmdb-settings-page .section-title{font-size:16px;margin-bottom:1.5rem}.wpmdb-settings-page .section-title:first-child{margin-top:0}.wpmdb-settings-page textarea{width:100%;margin-bottom:1.1rem;border-radius:5px;min-height:58px;max-height:200px}.wpmdb-settings-page .btn:first-child{margin-right:.75rem}.wpmdb-settings-page .connection-info{align-self:flex-start;padding-right:4%}.wpmdb-settings-page .connection-info .btn{position:relative;padding:.65rem 1.5rem}.wpmdb-settings-page .connection-info .btn.copied{min-width:189px}.wpmdb-settings-page .connection-info .styled-check{position:absolute;top:9px;left:27%}@media screen and (max-width:1024px){.wpmdb-settings-page .connection-info .btn.copied{min-width:166px}}.wpmdb-settings-page .migration-permissions{align-self:flex-start}.wpmdb-settings-page .migration-permissions>.flex-container{align-items:normal}.wpmdb-settings-page .request-settings{padding-bottom:40px}.wpmdb-settings-page .request-settings .flex-container{align-items:flex-start}.wpmdb-settings-page .request-settings .tooltip-saved.flex-container{align-items:center}.wpmdb-settings-page .notification{margin-bottom:1rem}.wpmdb-settings-page .settings-tooltip{position:absolute;top:-17px;left:10px;z-index:9}.wpmdb-settings-page .settings-tooltip svg{float:left;margin-right:.2rem;min-width:24px}.wpmdb-settings-page .licence-error .settings-tooltip.toggle-error,.wpmdb-settings-page .licence-error .settings-tooltip.toggle-success{top:-13px}.wpmdb-settings-page .licence-action{margin-top:.8rem}.wpmdb-settings-page .license-row .btn{margin-right:0}.wpmdb-settings-page .license-row h3.no-licence{margin-bottom:0}.wpmdb-settings-page .license-row h3.licence-header{margin-bottom:1rem}.wpmdb-settings-page .license-row .settings-spinner{top:-16px}.wpmdb-settings-page .license-row .licence-error{margin-top:0}.wpmdb-settings-page .slider-wrap{width:30rem;margin:28px 0 0}.wpmdb-settings-page .slider-wrap .slider-header{grid-template-columns:1fr 1fr}.wpmdb-settings-page .slider-wrap .settings-tooltip{right:-90px;left:auto!important}.wpmdb-settings-page .slider-wrap .slider-details{justify-self:end;align-self:self-end;font-weight:500;opacity:.8}.wpmdb-settings-page .slider-wrap h4#slider-delay_between_requests{margin-top:.5rem}.wpmdb-settings-page .slider-wrap .settings-spinner{top:-19px;right:-28px;left:auto}.wpmdb-settings-page .slider-wrap .MuiSlider-thumb.Mui-focusVisible{box-shadow:none}.wpmdb-settings-page .slider-wrap .MuiSlider-thumb:focus-visible{box-shadow:0 0 0 14px rgba(63,81,181,.16)}.wpmdb-settings-page .slider-wrap .Mui-disabled .MuiSlider-thumb{height:18px;width:18px;margin-top:-8px;margin-left:0}.wpmdb-settings-page .compatibility-mode-block .settings-tooltip{top:-30px}.wpmdb-settings-page .compatibility-mode-block .settings-spinner{top:0}.wpmdb-settings-page .compatibility-mode-block .title{margin-bottom:10px;font-size:14px}.wpmdb-settings-page .compatibility-mode-block .select-group{margin-top:16px}.wpmdb-settings-page .advanced-settings{border-bottom:none}.wpmdb-settings-page .advanced-settings .switch-1{margin-top:-5px!important}.wpmdb-settings-page .advanced-settings .flex-container{align-items:start}.wpmdb-settings-page .advanced-settings .flex-container.tooltip-saved{align-items:center}.wpmdb-settings-page .advanced-settings .tooltip-saved,.wpmdb-settings-page .settings-tooltip{align-self:center}.wpmdb-settings-page .compat-plugin-list{background:#fff;max-width:560px}.wpmdb-settings-page.free .advanced-settings{border-bottom:2px solid #e1e1e1}.wpmdb-settings-page.free .request-settings{border:0}.wpmdb-addons .addons-container{display:grid;grid-template-columns:repeat(2,minmax(240px,1fr));grid-gap:1.5rem;gap:1.5rem}@media(min-width:1150px){.wpmdb-addons .addons-container{grid-template-columns:repeat(3,minmax(0,1fr))}}.wpmdb-addons .addons-notice{margin:0 0 1.75rem}.wpmdb-addons .addons-tab-spinner{position:relative;top:5px}.wpmdb-addons .addon-container{flex:1 1;padding:1.5rem;background:#fff;display:flex;flex-direction:column}.wpmdb-addons .addon-container .migrate-notice{margin-bottom:0}.wpmdb-addons .addon-icon{display:block;margin:0 auto}.wpmdb-addons .addon-title{text-transform:uppercase;margin-top:.75rem;margin-bottom:1.5rem;text-align:center}.wpmdb-addons .addon-btn{padding:.6rem 2.8rem;display:block}.wpmdb-addons .addon-content{border-top:1px solid #d6d6d6;padding-top:1rem;margin-top:.9rem;flex:1 1}.wpmdb-addons .more-details-link{text-decoration:underline;font-weight:500}.wpmdb-addons .more-details-link:hover{text-decoration:none}.wpmdb-addons .addon-bottom-controls{flex:1 1;align-self:center}.wpmdb-addons .installed-activated-text{text-align:center;font-weight:500;margin-left:-3px;padding:.48rem}.wpmdb-addons .installed-activated-text svg{vertical-align:middle;margin:-3px 3px 0 0}.wpmdb-addons .addon-link{text-decoration:underline;font-weight:700;margin-top:1.5rem;margin-bottom:.5rem;display:block;text-align:center}.wpmdb-addons .addon-link:hover{text-decoration:none}.wpmdb-addons .licence-action{margin-top:.8rem}.wpmdb-addons .addon-upgrade-container{padding-top:20px;text-align:center}.wpmdb-addons .addon-upgrade-container .edit-key-link{margin-top:.5rem}.wpmdb .wpmdb-help-wrap>.wrapper{margin-right:0}.wpmdb-help-wrap{border-bottom:1px solid #bbb}.wpmdb-help-wrap .wrapper{margin-left:0}.wpmdb-help-wrap.success{border:none}.wpmdb-help-wrap .subnav{border-bottom:none;padding-left:0}.wpmdb-help-wrap .subnav button:focus-visible{border-radius:4px;outline:2px solid transparent;box-shadow:0 0 0 2px #fff,0 0 0 4px #4f8aec}.wpmdb-help-wrap.email{border-bottom:2px solid #e1e1e1}.wpmdb-help-wrap.email .licence-action{margin-top:.8rem}.wpmdb-help-wrap.videos{border-bottom:none}.wpmdb-help-wrap.videos .additional-help{margin-left:100px}.wpmdb-help-wrap .email-support{margin-top:-4px}.wpmdb-help-tab{min-height:500px}.wpmdb-help-tab .notification{margin:1.4rem 0;padding:1rem 1.5rem}.wpmdb-help-tab .help-spinner{position:relative;top:5px}.wpmdb-help-tab .help-spinner.send-email{left:7px}.wpmdb-help-tab .help-spinner #el_6X7lquFKkl{fill:#b7b7b7}.wpmdb-help-tab .support-form{width:500px;padding-left:9px}.wpmdb-help-tab .support-form .diagnostic-log{padding-left:0}.wpmdb-help-tab .support-form .valid-license{margin-bottom:35px;font-size:14px}.wpmdb-help-tab .support-form h3{margin-top:0}.wpmdb-help-tab .support-form .diagnostic-log.success h2{margin-top:2.5rem}.wpmdb-help-tab .support-videos{width:640px;padding-left:9px}.wpmdb-help-tab .support-videos iframe{border:1px solid #d6d6d6;box-shadow:0 1px 1px 0 rgba(0,0,0,.05),0 0 1px 0 rgba(0,0,0,.05)}.wpmdb-help-tab .additional-help{align-self:baseline;width:265px}.wpmdb-help-tab .additional-help .documentation-panel{margin-left:0}.wpmdb-help-tab .additional-help li{font-size:1rem}.wpmdb-help-tab .additional-help li a{font-weight:600}.wpmdb-help-tab .additional-help h2{font-size:1rem;margin-top:0;margin-bottom:1.6rem;font-weight:600}.wpmdb-help-tab .additional-help h2 a{color:#000}.wpmdb-help-tab .support-wrapper{margin-top:3.5rem;display:grid;grid-template-columns:2fr 1.42fr;grid-gap:20px}.wpmdb-help-tab input[type=text],.wpmdb-help-tab select,.wpmdb-help-tab textarea{width:100%!important;height:2.5rem}.wpmdb-help-tab .help-form{margin-top:5px}.wpmdb-help-tab .help-form a{text-decoration:underline;font-weight:600;color:#236de7}.wpmdb-help-tab .help-form a:hover{text-decoration:none}.wpmdb-help-tab .help-form .field,.wpmdb-help-tab .help-form label,.wpmdb-help-tab .help-form p{font-size:14px;line-height:19px}.wpmdb-help-tab .help-form p{font-size:14px;line-height:22px}.wpmdb-help-tab .help-form .field{color:#000;opacity:.8}.wpmdb-help-tab .help-form p.note{margin-bottom:0;margin-left:2px}.wpmdb-help-tab .help-form p.note a{color:#236de7}.wpmdb-help-tab .help-form input[type=text],.wpmdb-help-tab .help-form select,.wpmdb-help-tab .help-form textarea{font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:13px;color:#000;border-radius:5px;margin:0}.wpmdb-help-tab .help-form input[type=text]::-webkit-input-placeholder,.wpmdb-help-tab .help-form textarea::-webkit-input-placeholder{color:#555}.wpmdb-help-tab .help-form input[type=text]:-ms-input-placeholder,.wpmdb-help-tab .help-form textarea:-ms-input-placeholder{color:#555}.wpmdb-help-tab .help-form input[type=text]::placeholder,.wpmdb-help-tab .help-form textarea::placeholder{color:#555}.wpmdb-help-tab .help-form .from{margin:28px 0 35px}.wpmdb-help-tab .help-form .from p.note{margin-top:16px}.wpmdb-help-tab .help-form .from .select-email{display:grid;grid-template-columns:.65fr 5fr}.wpmdb-help-tab .help-form .from .select-email label{font-weight:500;margin-top:10px}.wpmdb-help-tab .help-form .from .select-email select{padding-left:12px;line-height:1;max-width:100%}.wpmdb-help-tab .help-form .email-message,.wpmdb-help-tab .help-form .subject{margin-bottom:.9rem}.wpmdb-help-tab .help-form .remote-diagnostic{margin-bottom:1rem}.wpmdb-help-tab .help-form .local-diagnostic,.wpmdb-help-tab .help-form .remote-diagnostic.checked{margin-bottom:.43rem}.wpmdb-help-tab .help-form .remote-diagnostic-content{margin-bottom:1.1rem}.wpmdb-help-tab .help-form .remote-diagnostic-content ol{list-style-type:decimal;margin:.9rem 0 .9rem 2em}.wpmdb-help-tab .help-form .remote-diagnostic-content ol li{list-style:decimal;margin-left:1rem;font-size:13px;color:#555}.wpmdb-help-tab .help-form .remote-diagnostic-content textarea{min-height:100px;border-radius:5px}.wpmdb-help-tab .help-form.error .remote-diagnostic-content{margin-bottom:0}.wpmdb-help-tab .help-form p.note.trouble{margin:38px 0 56px}.wpmdb-help-tab .help-form .email-message textarea{min-height:180px;border-radius:5px}.wpmdb-help-tab .help-form .btn{font-size:12px}.diagnostic-log{max-width:500px;padding-left:0}.diagnostic-log.wrapper{margin-left:9px}.diagnostic-log h2{margin-top:56px;margin-bottom:20px;font-size:16px}.diagnostic-log .clear-log-btn{display:block;margin:0 .75rem;line-height:18.2px}.diagnostic-log textarea[readonly]{max-width:500px;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:13px;line-height:19px;height:210px;background:#fff;margin-bottom:.85rem;color:#000;width:100%;border-radius:5px}.help-free{border-bottom:0}.help-free h2{margin-top:0}.help-free .help-message{padding-bottom:56px}.help-free .help-message p:last-of-type{margin:0}.help-free .diagnostic-log-wrap{border-top:2px solid #e1e1e1}.help-free .diagnostic-log{padding-left:0}.help-free.wpmdb-help-wrap{padding-bottom:44px}.rate-mdb{width:100%;padding:15px;background:rgba(35,109,231,.05);border:1px solid #236de7;border-radius:3px}.rate-mdb a{display:grid;color:#236de7;font-size:1rem;width:100%;grid-template-columns:5fr 2fr;justify-content:space-between;font-weight:600}.rate-mdb span{display:inline-block;justify-self:end}.rate-mdb span svg{padding:0 2px}.upgrade-to-pro{display:grid;grid-template-columns:2fr 2.3fr;grid-gap:15px;padding:40px;border-radius:4px;margin-top:40px;background:#fff}.upgrade-to-pro h3{font-size:23px;color:#04223f;margin-top:0;margin-bottom:32px;font-weight:400}.upgrade-to-pro h3 span{font-weight:700}.upgrade-to-pro ul{margin-bottom:32px}.upgrade-to-pro ul li{line-height:39px;margin-top:0;padding-left:32px;background-repeat:no-repeat;background-position:0 9px}.upgrade-to-pro .col-left,.upgrade-to-pro .col-right{display:flex;flex-direction:column;flex:1 1}.upgrade-to-pro .col-left .btn{display:inline-block;margin-top:auto;max-width:120px}.upgrade-to-pro .testimonial{display:grid;grid-template-columns:1fr 8fr;grid-gap:15px;background:#04223f;color:#fff;padding:21px 20px;margin-top:auto;border-radius:3px}.upgrade-to-pro .testimonial figure{margin:0;align-self:center}.upgrade-to-pro .testimonial figure img{width:60px}.upgrade-to-pro .testimonial h4{color:#fff;font-size:.9rem;margin:0;font-weight:400}.upgrade-to-pro .testimonial .testimonial-header{display:grid;grid-template-columns:2.1fr .5fr 1.4fr}.upgrade-to-pro .testimonial .testimonial-header span{font-weight:400;font-size:96%;display:inline-block;position:relative;right:-6px}.upgrade-to-pro .testimonial .testimonial-header span a{color:#fff}.upgrade-to-pro .testimonial .testimonial-header b{justify-self:end}.upgrade-to-pro .testimonial .testimonial-header b svg{padding:0 2px}.upgrade-to-pro .testimonial p{font-size:.8rem;margin-bottom:0}@media(max-width:1200px){.upgrade-to-pro .testimonial figure{align-self:auto}.upgrade-to-pro .testimonial p{line-height:18px}.upgrade-to-pro .testimonial .testimonial-header span{position:relative;left:-10px}.upgrade-to-pro .testimonial .testimonial-header b svg{width:12px}}
frontend/build-free/static/js/{5.d6f9260fa60c.chunk.js → 5.a7cfeef3855e.chunk.js} RENAMED
File without changes
frontend/build-free/static/js/{6.093d2285dd1a.chunk.js → 6.4cb73a3e1e21.chunk.js} RENAMED
File without changes
frontend/build-free/static/js/{7.e4951429e56b.chunk.js → 7.3c5af80beb40.chunk.js} RENAMED
File without changes
frontend/build-free/static/js/{main.373a9f7b81d0.chunk.js → main.51adc5c29b2b.chunk.js} RENAMED
File without changes
frontend/build-free/static/js/{wpmdb-runtime.736680ee20b6.js → wpmdb-runtime.4c0a7bbb4584.js} RENAMED
@@ -1 +1 @@
1
- !function(e){function r(r){for(var n,a,i=r[0],c=r[1],f=r[2],p=0,s=[];p<i.length;p++)a=i[p],Object.prototype.hasOwnProperty.call(o,a)&&o[a]&&s.push(o[a][0]),o[a]=0;for(n in c)Object.prototype.hasOwnProperty.call(c,n)&&(e[n]=c[n]);for(l&&l(r);s.length;)s.shift()();return u.push.apply(u,f||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var c=t[i];0!==o[c]&&(n=!1)}n&&(u.splice(r--,1),e=a(a.s=t[0]))}return e}var n={},o={2:0},u=[];function a(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,a),t.l=!0,t.exports}a.e=function(e){var r=[],t=o[e];if(0!==t)if(t)r.push(t[2]);else{var n=new Promise(function(r,n){t=o[e]=[r,n]});r.push(t[2]=n);var u,i=document.createElement("script");i.charset="utf-8",i.timeout=120,a.nc&&i.setAttribute("nonce",a.nc),i.src=function(e){return a.p+"static/js/"+({}[e]||e)+"."+{3:"d959a9880319",4:"dfe8ab26e599",5:"d6f9260fa60c",6:"093d2285dd1a",7:"e4951429e56b"}[e]+".chunk.js"}(e);var c=new Error;u=function(r){i.onerror=i.onload=null,clearTimeout(f);var t=o[e];if(0!==t){if(t){var n=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.src;c.message="Loading chunk "+e+" failed.\n("+n+": "+u+")",c.name="ChunkLoadError",c.type=n,c.request=u,t[1](c)}o[e]=void 0}};var f=setTimeout(function(){u({type:"timeout",target:i})},12e4);i.onerror=i.onload=u,document.head.appendChild(i)}return Promise.all(r)},a.m=e,a.c=n,a.d=function(e,r,t){a.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},a.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,r){if(1&r&&(e=a(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(a.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)a.d(t,n,function(r){return e[r]}.bind(null,n));return t},a.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(r,"a",r),r},a.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},a.p="/",a.oe=function(e){throw console.error(e),e};var i=this.webpackJSONPwpmdb=this.webpackJSONPwpmdb||[],c=i.push.bind(i);i.push=r,i=i.slice();for(var f=0;f<i.length;f++)r(i[f]);var l=c;t()}([]);
1
+ !function(e){function r(r){for(var n,a,i=r[0],c=r[1],f=r[2],p=0,s=[];p<i.length;p++)a=i[p],Object.prototype.hasOwnProperty.call(o,a)&&o[a]&&s.push(o[a][0]),o[a]=0;for(n in c)Object.prototype.hasOwnProperty.call(c,n)&&(e[n]=c[n]);for(l&&l(r);s.length;)s.shift()();return u.push.apply(u,f||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var c=t[i];0!==o[c]&&(n=!1)}n&&(u.splice(r--,1),e=a(a.s=t[0]))}return e}var n={},o={2:0},u=[];function a(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,a),t.l=!0,t.exports}a.e=function(e){var r=[],t=o[e];if(0!==t)if(t)r.push(t[2]);else{var n=new Promise(function(r,n){t=o[e]=[r,n]});r.push(t[2]=n);var u,i=document.createElement("script");i.charset="utf-8",i.timeout=120,a.nc&&i.setAttribute("nonce",a.nc),i.src=function(e){return a.p+"static/js/"+({}[e]||e)+"."+{3:"d959a9880319",4:"dfe8ab26e599",5:"a7cfeef3855e",6:"4cb73a3e1e21",7:"3c5af80beb40"}[e]+".chunk.js"}(e);var c=new Error;u=function(r){i.onerror=i.onload=null,clearTimeout(f);var t=o[e];if(0!==t){if(t){var n=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.src;c.message="Loading chunk "+e+" failed.\n("+n+": "+u+")",c.name="ChunkLoadError",c.type=n,c.request=u,t[1](c)}o[e]=void 0}};var f=setTimeout(function(){u({type:"timeout",target:i})},12e4);i.onerror=i.onload=u,document.head.appendChild(i)}return Promise.all(r)},a.m=e,a.c=n,a.d=function(e,r,t){a.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},a.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,r){if(1&r&&(e=a(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(a.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)a.d(t,n,function(r){return e[r]}.bind(null,n));return t},a.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(r,"a",r),r},a.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},a.p="/",a.oe=function(e){throw console.error(e),e};var i=this.webpackJSONPwpmdb=this.webpackJSONPwpmdb||[],c=i.push.bind(i);i.push=r,i=i.slice();for(var f=0;f<i.length;f++)r(i[f]);var l=c;t()}([]);
languages/wp-migrate-db-en.pot CHANGED
@@ -8,7 +8,7 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: wp-migrate-db-pro\n"
10
  "Report-Msgid-Bugs-To: nom@deliciousbrains.com\n"
11
- "POT-Creation-Date: 2022-09-22 16:44-0400\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -50,6 +50,48 @@ msgstr ""
50
  msgid "Your current PHP run time limit is set to %s seconds."
51
  msgstr ""
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  #: src/wp-migrate-db-pro/class/Pro/Api.php:136
54
  #: src/wp-migrate-db-pro/class/Pro/License.php:479
55
  #, php-format
@@ -129,6 +171,7 @@ msgid "The import file could not be read."
129
  msgstr ""
130
 
131
  #: src/wp-migrate-db-pro/class/Pro/Import.php:515
 
132
  #, php-format
133
  msgid "Failed to import the SQL query: %s"
134
  msgstr ""
@@ -292,10 +335,10 @@ msgid ""
292
  msgstr ""
293
 
294
  #: src/wp-migrate-db-pro/class/Pro/License.php:646
 
 
295
  #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:239
296
  #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:543
297
- #: src/wp-migrate-db-pro/class/Free/Plugin/PluginManager.php:81
298
- #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:84
299
  msgctxt "Plugin configuration and preferences"
300
  msgid "Settings"
301
  msgstr ""
@@ -352,49 +395,6 @@ msgctxt "Delete license"
352
  msgid "Remove"
353
  msgstr ""
354
 
355
- #: src/wp-migrate-db-pro/class/Common/BackupExport.php:87
356
- msgid "MySQL export file not found."
357
- msgstr ""
358
-
359
- #: src/wp-migrate-db-pro/class/Common/BackupExport.php:91
360
- msgid "Could not delete the MySQL export file."
361
- msgstr ""
362
-
363
- #: src/wp-migrate-db-pro/class/Common/Replace.php:656
364
- #, php-format
365
- msgid ""
366
- "WP Migrate - Failed to instantiate object for replacement. If the serialized "
367
- "object's class is defined by a plugin, you should enable that plugin for "
368
- "migration requests. \n"
369
- "Class Name: %s"
370
- msgstr ""
371
-
372
- #: src/wp-migrate-db-pro/class/Common/Replace.php:714
373
- msgid ""
374
- "Failed attempting to do the recursive unserialize replace. Please contact "
375
- "support."
376
- msgstr ""
377
-
378
- #: src/wp-migrate-db-pro/class/Common/Sanitize.php:48
379
- #: src/wp-migrate-db-pro/class/Common/Sanitize.php:49
380
- #, php-format
381
- msgid ""
382
- "Sanitization Error: `%1$s` method was expecting %2$s for the `%3$s` field, "
383
- "but got something else: \"%4$s\""
384
- msgstr ""
385
-
386
- #: src/wp-migrate-db-pro/class/Common/Sanitize.php:71
387
- #: src/wp-migrate-db-pro/class/Common/Sanitize.php:72
388
- #, php-format
389
- msgid "%1$s was not expecting data to be an array."
390
- msgstr ""
391
-
392
- #: src/wp-migrate-db-pro/class/Common/Sanitize.php:175
393
- #: src/wp-migrate-db-pro/class/Common/Sanitize.php:181
394
- #, php-format
395
- msgid "Unknown sanitization rule \"%1$s\" supplied by %2$s"
396
- msgstr ""
397
-
398
  #: src/wp-migrate-db-pro/template/common/muplugin-failed-update-warning.php:3
399
  msgid "<strong>Compatibility Plugin Update Failed</strong> &mdash; "
400
  msgstr ""
@@ -445,1127 +445,1016 @@ msgid ""
445
  "a> and reset your secret key."
446
  msgstr ""
447
 
448
- #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:140
449
- msgctxt "A new version of the plugin is available"
450
- msgid "Update Available"
451
  msgstr ""
452
 
453
- #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:141
 
 
 
 
454
  #, php-format
455
- msgid "A new version of %1$s is now available. %2$s"
456
  msgstr ""
457
 
458
- #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:141
459
- msgctxt "Download and install a new version of the plugin"
460
- msgid "Update Now"
 
 
461
  msgstr ""
462
 
463
- #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:150
464
- msgid "Beta Update Available"
465
  msgstr ""
466
 
467
- #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:151
468
- msgid "Update Available"
469
  msgstr ""
470
 
471
- #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:153
472
- #, php-format
473
- msgid ""
474
- "%1$s %2$s is now available. You currently have %3$s installed. <a href=\"%4$s"
475
- "\">%5$s</a>"
476
  msgstr ""
477
 
478
- #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:153
479
- msgid "Update Now"
 
480
  msgstr ""
481
 
482
- #: src/wp-migrate-db-pro/class/Pro/Addon/AddonAbstract.php:117
483
- #, php-format
484
- msgid ""
485
- "The version of %1$s you have installed requires version %2$s of WP Migrate. "
486
- "You currently have %3$s installed. <strong><a href=\"%4$s\">Update Now</a></"
487
- "strong>"
488
  msgstr ""
489
 
490
- #: src/wp-migrate-db-pro/class/Pro/Addon/AddonsFacade.php:110
491
- #: src/wp-migrate-db-pro/class/Pro/Addon/AddonsFacade.php:114
492
- msgid ""
493
- "Legacy addons cannot be activated alongside WP Migrate version 2.3.0 or "
494
- "above. These features have been moved to WP Migrate."
495
  msgstr ""
496
 
497
- #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:81
498
- msgid "Backup not found."
499
  msgstr ""
500
 
501
- #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:95
502
- msgid "Could not find backup file to download:"
503
  msgstr ""
504
 
505
- #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:123
506
- #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:147
507
  #, php-format
508
- msgid "File does not exist — %s"
509
  msgstr ""
510
 
511
- #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:154
512
- #, php-format
513
- msgid "Unable to delete file — %s"
514
  msgstr ""
515
 
516
- #: src/wp-migrate-db-pro/class/Pro/Beta/BetaManager.php:116
517
- msgid "Would you like to rollback WP Migrate to the latest stable release now?"
518
  msgstr ""
519
 
520
- #: src/wp-migrate-db-pro/class/Pro/MF/MediaFilesAddon.php:102
521
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:181
522
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:182
523
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:186
524
- msgid "Downloading files"
525
  msgstr ""
526
 
527
- #: src/wp-migrate-db-pro/class/Pro/MF/MediaFilesAddon.php:103
528
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:180
529
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:181
530
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:185
531
- msgid "Uploading files"
532
  msgstr ""
533
 
534
- #: src/wp-migrate-db-pro/class/Pro/MF/MediaFilesLocal.php:190
535
- msgid "Invalid folder path supplied."
 
536
  msgstr ""
537
 
538
- #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:423
539
- #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:424
540
- msgid ""
541
- "Please only enter letters, numbers or underscores for the new table prefix."
542
  msgstr ""
543
 
544
- #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:890
545
- #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:891
546
- #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:892
547
- msgid "Expected local subsite \"short_basedir\" missing from `state_data`."
548
  msgstr ""
549
 
550
- #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:896
551
- #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:897
552
- #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:898
553
- msgid "Expected remote subsite \"short_basedir\" missing from `state_data`."
554
  msgstr ""
555
 
556
- #: src/wp-migrate-db-pro/class/Pro/Queue/Cron.php:86
557
  #, php-format
558
- msgid "Every %d Minutes"
559
  msgstr ""
560
 
561
- #: src/wp-migrate-db-pro/class/Pro/Queue/QueueHelper.php:61
562
- msgid "File list empty or incomplete. Please contact support."
 
 
 
563
  msgstr ""
564
 
565
- #: src/wp-migrate-db-pro/class/Pro/Queue/QueueHelper.php:182
566
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesLocal.php:172
567
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesLocal.php:178
568
- msgid "Error: empty folder list supplied."
569
  msgstr ""
570
 
571
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:229
572
- #, php-format
573
- msgid "There is a new version of %s available."
574
  msgstr ""
575
 
576
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:231
 
577
  #, php-format
578
- msgid "View version %s details"
579
  msgstr ""
580
 
581
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:241
582
- #, php-format
583
- msgid ""
584
- "To update, go to %1$s and enter your license key. If you don't have a "
585
- "license key, you may <a href=\"%2$s\">purchase one</a>."
586
  msgstr ""
587
 
588
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:243
589
  #, php-format
590
  msgid ""
591
- "To finish activating %1$s, please go to %2$s and enter your license key. If "
592
- "you don't have a license key, you may <a href=\"%3$s\">purchase one</a>."
593
- msgstr ""
594
-
595
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:246
596
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:584
597
- msgid "Check my license again"
598
  msgstr ""
599
 
600
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:310
601
  #, php-format
602
  msgid ""
603
- "<strong>Addon No Longer Required</strong> - As of WP Migrate version 2.3.0, "
604
- "this addon is <a href=\"%s\" target=\"_blank\">no longer required</a> and "
605
- "can be safely deleted."
606
  msgstr ""
607
 
608
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:344
609
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:355
610
- msgid "Could not retrieve version details. Please try again."
611
  msgstr ""
612
 
613
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:542
614
- #: src/wp-migrate-db-pro/class/Free/Plugin/PluginManager.php:80
615
- msgid "Migrate"
616
- msgstr ""
617
-
618
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:584
619
- msgid "A problem occurred when trying to check the license, please try again."
620
- msgstr ""
621
-
622
- #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:621
623
- #: src/wp-migrate-db-pro/class/Common/Plugin/Menu.php:95
624
- #: src/wp-migrate-db-pro/class/Common/Plugin/Menu.php:134
625
- #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:374
626
- msgid "WP Migrate"
627
- msgstr ""
628
-
629
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:168
630
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:169
631
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:173
632
- msgid "Themes"
633
- msgstr ""
634
-
635
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:169
636
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:170
637
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:174
638
- msgid "Plugins"
639
- msgstr ""
640
-
641
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:170
642
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:171
643
- msgid "Theme & Plugin Files"
644
- msgstr ""
645
-
646
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:171
647
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:172
648
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:176
649
- msgid "(active)"
650
- msgstr ""
651
-
652
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:172
653
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:173
654
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:177
655
- msgid "Please select themes for migration."
656
- msgstr ""
657
-
658
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:173
659
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:174
660
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:178
661
- msgid "Please select plugins for migration."
662
- msgstr ""
663
-
664
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:174
665
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:175
666
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:179
667
- msgid "remote"
668
- msgstr ""
669
-
670
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:175
671
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:176
672
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:180
673
- msgid "local"
674
- msgstr ""
675
-
676
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:176
677
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:177
678
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:181
679
- msgid "Failed to transfer file."
680
  msgstr ""
681
 
682
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:177
683
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:178
684
- msgid "Theme & Plugin Files Transfer Error"
685
  msgstr ""
686
 
687
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:178
688
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:179
689
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:183
690
- msgid "Loading transfer queue"
691
  msgstr ""
692
 
693
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:179
694
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:180
695
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:184
696
- msgid "Transferring: "
697
  msgstr ""
698
 
699
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:126
700
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:142
701
  #, php-format
702
- msgid "Unable to determine folder name for theme %s"
703
  msgstr ""
704
 
705
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:162
706
  #, php-format
707
  msgid ""
708
- "Temporary file not found when finalizing Theme & Plugin Files migration: %s "
 
 
 
 
709
  msgstr ""
710
 
711
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:170
712
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:220
713
  #, php-format
714
  msgid ""
715
- "Unable to overwrite destination file when finalizing Theme & Plugin Files "
716
- "migration: %s"
717
  msgstr ""
718
 
719
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:186
720
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:236
721
  #, php-format
722
  msgid ""
723
- "Unable to move file into place when finalizing Theme & Plugin Files "
724
- "migration. Source: %s | Destination: %s"
725
  msgstr ""
726
 
727
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:265
728
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:323
729
  #, php-format
730
- msgid "Unable to verify file migration, %s does not exist."
731
- msgstr ""
732
-
733
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesLocal.php:188
734
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesLocal.php:194
735
- msgid "Invalid folder list supplied (invalid array)"
736
- msgstr ""
737
-
738
- #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:58
739
- #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:59
740
- msgid "A problem occurred starting the Theme & Plugin files migration."
741
- msgstr ""
742
-
743
- #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:73
744
- #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:74
745
  msgid ""
746
- "Unfortunately it looks like we can't migrate your theme or plugin files. "
747
- "However, running a migration without theme and plugin files should work. "
748
- "Please uncheck the Theme Files checkbox, uncheck the Plugin Files checkbox, "
749
- "and try your migration again."
750
  msgstr ""
751
 
752
- #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:75
753
- #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:76
754
- msgid "More Details »"
 
 
 
 
 
755
  msgstr ""
756
 
757
- #: src/wp-migrate-db-pro/class/Pro/RemoteUpdates/RemoteUpdatesManager.php:114
758
- msgid "Please activate your license before updating."
 
 
759
  msgstr ""
760
 
761
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:103
762
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:104
763
  #, php-format
764
- msgid "Remote server responded with %s and body of %s"
 
 
765
  msgstr ""
766
 
767
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:135
768
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:151
769
  #, php-format
770
- msgid "File transfer error - Unable to create a temporary folder. (%s)"
 
 
771
  msgstr ""
772
 
773
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:145
774
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:149
775
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:165
776
  #, php-format
777
- msgid "File transfer error - Unable to create a PHP file on the server. (%s)"
 
 
778
  msgstr ""
779
 
780
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:155
781
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:159
782
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:175
783
  #, php-format
784
  msgid ""
785
- "File transfer error - Unable to update file contents using using PHP's "
786
- "file_put_contents() function. (%s)"
787
  msgstr ""
788
 
789
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:165
790
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:169
791
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:185
792
- #, php-format
793
- msgid ""
794
- "File transfer error - Unable to move file to the correct location using "
795
- "PHP's rename() function. (%s)"
796
  msgstr ""
797
 
798
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:176
799
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:180
800
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:196
801
  #, php-format
802
- msgid ""
803
- "File transfer error - Unable to delete file using PHP's unlink() function. "
804
- "(%s)"
805
  msgstr ""
806
 
807
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:228
808
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:232
809
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:248
810
- msgid "Unable to process payload."
 
 
811
  msgstr ""
812
 
813
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:56
814
- msgid "$_POST['batch'] is empty."
 
 
 
 
815
  msgstr ""
816
 
817
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:63
818
- msgid "Request for batch of files failed."
819
  msgstr ""
820
 
821
- #: src/wp-migrate-db-pro/class/Pro/UI/Template.php:78
822
- msgctxt "Get backups"
823
- msgid "Backups"
824
  msgstr ""
825
 
826
- #: src/wp-migrate-db-pro/class/Pro/UI/Template.php:129
827
  #, php-format
828
  msgid ""
829
- "The version of the %1$s addon you have installed%2$s is out-of-date and will "
830
- "not work with this beta version WP Migrate. There may be a <a href=\"%3$s"
831
- "\">beta update available</a>, otherwise please <a href=\"%4$s\">deactivate "
832
- "this addon</a>."
833
  msgstr ""
834
 
835
- #: src/wp-migrate-db-pro/class/Pro/UI/Template.php:132
836
- #, php-format
837
- msgid ""
838
- "The version of the %1$s addon you have installed%2$s is out-of-date and will "
839
- "not work with this version WP Migrate. <a href=\"%3$s\">Update Now</a>"
840
  msgstr ""
841
 
842
- #: src/wp-migrate-db-pro/class/Free/Plugin/PluginManager.php:84
843
- msgid "Upgrade"
844
  msgstr ""
845
 
846
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:174
847
- msgid "Profile not found or unable to be generated from params."
 
848
  msgstr ""
849
 
850
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:201
851
- msgid "Missing path to import file. Use --import-file=/path/to/import.sql.gz"
 
852
  msgstr ""
853
 
854
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:238
 
 
 
 
855
  #, php-format
856
- msgid "The following table(s) do not exist in the %1$s database: %2$s"
 
 
 
 
857
  msgstr ""
858
 
859
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:306
860
  #, php-format
861
  msgid ""
862
- "We were expecting a JSON response, instead we received: %2$s (function name: "
863
- "%1$s)"
 
864
  msgstr ""
865
 
866
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:365
867
- msgid "Initiating migration..."
868
  msgstr ""
869
 
870
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:421
871
- msgid "Exporting tables"
 
 
 
 
872
  msgstr ""
873
 
874
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:424
875
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:970
876
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:978
877
- msgid "Running find & replace"
878
  msgstr ""
879
 
880
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:427
881
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:965
882
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:973
883
- msgid "Performing backup"
884
  msgstr ""
885
 
886
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:506
887
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:509
888
- msgid "No tables selected for migration."
 
 
889
  msgstr ""
890
 
891
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:613
892
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:616
893
- msgid "Cleaning up..."
894
  msgstr ""
895
 
896
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:707
897
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:710
898
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:713
899
- msgid "Unable to move exported file."
900
  msgstr ""
901
 
902
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:777
903
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:780
904
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:783
905
- msgid "Parameter errors: "
906
  msgstr ""
907
 
908
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:779
909
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:782
910
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:785
911
- #, php-format
912
- msgid "unknown %s parameter"
913
  msgstr ""
914
 
915
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:788
916
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:791
917
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:794
918
- msgid "--"
919
  msgstr ""
920
 
921
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:793
922
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:796
923
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:799
924
- msgid "Missing action parameter"
 
925
  msgstr ""
926
 
927
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:812
928
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:815
929
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:818
930
- msgid "Please make sure Regular Expression find & replace pattern is valid"
931
  msgstr ""
932
 
933
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:816
934
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:826
935
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:819
936
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:829
937
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:822
938
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:832
939
- msgid "Missing Regex find and replace values."
940
  msgstr ""
941
 
942
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:834
943
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:850
944
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:837
945
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:853
946
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:840
947
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:856
948
- msgid "Missing case sensitive find and replace values."
949
  msgstr ""
950
 
951
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:860
952
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:863
953
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:866
954
- msgid "Missing find and replace values."
 
 
 
 
 
 
 
 
 
 
955
  msgstr ""
956
 
957
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:863
958
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:866
959
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:869
960
- msgid "Find value is required."
961
  msgstr ""
962
 
963
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:870
964
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:873
965
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:876
966
- msgid "Replace value is required."
967
  msgstr ""
968
 
969
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:875
970
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:878
971
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:881
972
- #, php-format
973
- msgid "%1$s and %2$s must contain the same number of values"
974
  msgstr ""
975
 
976
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:921
977
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:924
978
- #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:927
979
  #, php-format
980
  msgid ""
981
- "Cannot write to file \"%1$s\". Please ensure that the specified directory "
982
- "exists and is writable."
 
 
 
983
  msgstr ""
984
 
985
- #: src/wp-migrate-db-pro/class/Common/Cli/Command.php:81
986
- msgid "You must provide a destination filename."
 
 
987
  msgstr ""
988
 
989
- #: src/wp-migrate-db-pro/class/Common/Cli/Command.php:205
990
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:694
991
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:651
992
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:685
993
- msgid "WP Migrate CLI class not available."
994
  msgstr ""
995
 
996
- #: src/wp-migrate-db-pro/class/Common/Cli/Command.php:213
997
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:704
998
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:661
999
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:695
1000
- #, php-format
1001
- msgid "Export saved to: %s"
1002
  msgstr ""
1003
 
1004
- #: src/wp-migrate-db-pro/class/Common/Cli/Command.php:216
1005
- msgid "Find & Replace complete"
1006
  msgstr ""
1007
 
1008
- #: src/wp-migrate-db-pro/class/Common/Compatibility/CompatibilityManager.php:197
1009
- #, php-format
1010
- msgid ""
1011
- "The compatibility plugin could not be activated because your mu-plugin "
1012
- "directory is currently not writable. Please update the permissions of the "
1013
- "mu-plugins folder: %s"
 
1014
  msgstr ""
1015
 
1016
- #: src/wp-migrate-db-pro/class/Common/Compatibility/CompatibilityManager.php:230
1017
- #, php-format
1018
- msgid ""
1019
- "The compatibility plugin could not be deactivated because your mu-plugin "
1020
- "directory is currently not writable. Please update the permissions of the "
1021
- "mu-plugins folder: %s"
1022
  msgstr ""
1023
 
1024
- #: src/wp-migrate-db-pro/class/Common/Filesystem/Filesystem.php:801
1025
- #, php-format
1026
- msgid "<h3>Output prevented download. </h3> %s"
1027
  msgstr ""
1028
 
1029
- #: src/wp-migrate-db-pro/class/Common/Filesystem/Filesystem.php:804
1030
- msgid "Could not find the file to download:"
 
1031
  msgstr ""
1032
 
1033
- #: src/wp-migrate-db-pro/class/Common/Http/Helper.php:106
1034
- msgid "Invalid Request. Did you pass the correct nonce?"
 
 
1035
  msgstr ""
1036
 
1037
- #: src/wp-migrate-db-pro/class/Common/Http/Http.php:90
1038
  #, php-format
1039
- msgid "An error occurred - JSON response: %s"
1040
  msgstr ""
1041
 
1042
- #: src/wp-migrate-db-pro/class/Common/Http/Http.php:132
1043
- #, php-format
1044
- msgid "Invalid nonce for: %s"
1045
  msgstr ""
1046
 
1047
- #: src/wp-migrate-db-pro/class/Common/Http/Http.php:139
1048
  #, php-format
1049
- msgid "Access denied for: %s"
 
 
1050
  msgstr ""
1051
 
1052
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:272
1053
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:282
1054
  #, php-format
1055
- msgid ""
1056
- "We've detected that <code>WP_HTTP_BLOCK_EXTERNAL</code> is enabled and the "
1057
- "host <strong>%1$s</strong> has not been added to <code>WP_ACCESSIBLE_HOSTS</"
1058
- "code>. Please disable <code>WP_HTTP_BLOCK_EXTERNAL</code> or add <strong>"
1059
- "%1$s</strong> to <code>WP_ACCESSIBLE_HOSTS</code> to continue. <a href=\"%2$s"
1060
- "\" target=\"_blank\">More information</a>. (#147 - scope: %3$s)"
1061
  msgstr ""
1062
 
1063
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:283
1064
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:293
1065
  #, php-format
1066
- msgid ""
1067
- "The connection failed, an unexpected error occurred, please contact support. "
1068
- "(#121 - scope: %s)"
1069
  msgstr ""
1070
 
1071
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:288
1072
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:298
1073
  #, php-format
1074
- msgid ""
1075
- "The connection to the remote server has timed out, no changes have been "
1076
- "committed. (#134 - scope: %s)"
1077
  msgstr ""
1078
 
1079
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:296
1080
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:306
1081
- #, php-format
1082
  msgid ""
1083
- "Couldn't connect over HTTPS. You might want to try regular HTTP instead. "
1084
- "(#121 - scope: %s)"
1085
  msgstr ""
1086
 
1087
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:302
1088
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:312
1089
  #, php-format
1090
- msgid ""
1091
- "<strong>HTTPS Connection Error:</strong> (#121 - scope: %s) This typically "
1092
- "means that the version of OpenSSL that your local site is using to connect "
1093
- "to the remote is incompatible or, more likely, being rejected by the remote "
1094
- "server because it's insecure. <a href=\"%s\" target=\"_blank\">See our "
1095
- "documentation</a> for possible solutions."
1096
  msgstr ""
1097
 
1098
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:310
1099
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:320
1100
- msgid ""
1101
- "The remote site is protected with Basic Authentication. Please enter the "
1102
- "username and password above to continue. (401 Unauthorized)"
1103
  msgstr ""
1104
 
1105
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:315
1106
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:325
1107
- #, php-format
1108
- msgid ""
1109
- "Unable to connect to the remote server, the remote server responded with: %s "
1110
- "%s (scope: %s)"
1111
  msgstr ""
1112
 
1113
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:320
1114
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:330
1115
  #, php-format
1116
  msgid ""
1117
- "Unable to connect to the remote server, please check the connection details "
1118
- "- %1$s %2$s (#129 - scope: %3$s)"
 
 
 
1119
  msgstr ""
1120
 
1121
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:325
1122
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:335
1123
  #, php-format
1124
  msgid ""
1125
- "WP Migrate does not seem to be installed or active on the remote site. (#131 "
1126
- "- scope: %s)"
 
1127
  msgstr ""
1128
 
1129
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:330
1130
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:340
1131
  #, php-format
1132
- msgid ""
1133
- "A response was expected from the remote, instead we got nothing. (#146 - "
1134
- "scope: %1$s) Please review %2$s for possible solutions."
1135
  msgstr ""
1136
 
1137
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:330
1138
- #: src/wp-migrate-db-pro/class/Common/Sql/TableHelper.php:140
1139
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:340
1140
- msgid "our documentation"
1141
  msgstr ""
1142
 
1143
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:494
1144
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:504
1145
  #, php-format
1146
- msgid "We could not find: %s. Are you sure this is the correct URL?"
1147
  msgstr ""
1148
 
1149
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:501
1150
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:511
1151
- msgid ""
1152
- "It appears that you might be trying to pull from a local environment. This "
1153
- "will not work if <u>this</u> website happens to be located on a remote "
1154
- "server, it would be impossible for this server to contact your local "
1155
- "environment."
1156
  msgstr ""
1157
 
1158
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:503
1159
- #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:513
1160
- msgid ""
1161
- "It appears that you might be trying to push to a local environment. This "
1162
- "will not work if <u>this</u> website happens to be located on a remote "
1163
- "server, it would be impossible for this server to contact your local "
1164
- "environment."
1165
  msgstr ""
1166
 
1167
- #: src/wp-migrate-db-pro/class/Common/Http/WPMDBRestAPIServer.php:26
1168
- msgid "Only authenticated users can access endpoint."
 
 
 
 
1169
  msgstr ""
1170
 
1171
- #: src/wp-migrate-db-pro/class/Common/Migration/FinalizeMigration.php:108
1172
- msgid "Unable to finalize the migration, migration state empty."
 
1173
  msgstr ""
1174
 
1175
- #: src/wp-migrate-db-pro/class/Common/Migration/InitiateMigration.php:316
1176
- #, php-format
1177
- msgid ""
1178
- "<p><strong>Export Failed</strong> — We can't save your export to the "
1179
- "following folder:<br><strong>%s</strong></p><p>Please adjust the permissions "
1180
- "on this folder. <a href=\"%s\" target=\"_blank\">See our documentation for "
1181
- "more information »</a></p>"
1182
  msgstr ""
1183
 
1184
- #: src/wp-migrate-db-pro/class/Common/MigrationState/MigrationStateManager.php:90
1185
- msgid "Failed to save migration state. Please contact support."
 
1186
  msgstr ""
1187
 
1188
- #: src/wp-migrate-db-pro/class/Common/MigrationState/MigrationStateManager.php:124
1189
- msgid "Failed to retrieve migration state. Please contact support."
1190
  msgstr ""
1191
 
1192
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:147
1193
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:164
1194
- msgid "single site"
 
1195
  msgstr ""
1196
 
1197
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:148
1198
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:163
1199
- msgid "multisite"
 
1200
  msgstr ""
1201
 
1202
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:155
1203
- msgid "Multisite tools addon"
 
 
1204
  msgstr ""
1205
 
1206
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:157
1207
  #, php-format
1208
  msgid ""
1209
- "It looks like the file you are trying to import is from a multisite install "
1210
- "and this install is a single site. To run this type of import you'll need to "
1211
- "use the %s to export a subsite as a single site. <a href=\"%s\" target="
1212
- "\"_blank\">Learn more »</a>"
1213
  msgstr ""
1214
 
1215
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:165
1216
  #, php-format
1217
- msgid ""
1218
- "It looks like the file you are trying to import is from a single site "
1219
- "install and this install is a multisite. This type of migration isn't "
1220
- "currently supported. <a href=\"%s\" target=\"_blank\">Learn more »</a>"
1221
  msgstr ""
1222
 
1223
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:173
1224
- msgid "Activate"
 
1225
  msgstr ""
1226
 
1227
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:175
1228
- #, php-format
1229
- msgid ""
1230
- "It looks like the remote site is a %s install and this install is a %s. To "
1231
- "run this type of migration you'll need the %s activated on the "
1232
- "<strong>remote</strong> site."
1233
  msgstr ""
1234
 
1235
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:189
1236
- msgid "Install"
1237
  msgstr ""
1238
 
1239
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:192
1240
- msgid "Upgrade your license"
 
1241
  msgstr ""
1242
 
1243
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:198
1244
  #, php-format
1245
- msgid ""
1246
- "It looks like the remote site is a %s install and this install is a %s. To "
1247
- "run this type of migration you'll need the %s. %s"
1248
  msgstr ""
1249
 
1250
- #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:209
1251
- msgid "Multisite Tools Addon Needed"
 
1252
  msgstr ""
1253
 
1254
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:71
1255
- msgid ""
1256
- "The connection information appears to be missing, please enter it to "
1257
- "continue."
1258
  msgstr ""
1259
 
1260
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:72
1261
- msgid ""
1262
- "The URL on the first line appears to be invalid, please check it and try "
1263
- "again."
1264
  msgstr ""
1265
 
1266
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:73
 
1267
  msgid ""
1268
- "The secret key on the second line appears to be invalid. It should be a 40 "
1269
- "character string that consists of letters, numbers and special characters "
1270
- "only."
1271
  msgstr ""
1272
 
1273
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:74
1274
- msgid ""
1275
- "It appears you've entered the URL for this website, you need to provide the "
1276
- "URL of the remote website instead."
1277
  msgstr ""
1278
 
1279
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:75
 
1280
  msgid ""
1281
- "Looks like your remote secret key is the same as the secret key for this "
1282
- "site. To fix this, go to the <a href=\"#settings\">Settings tab</a> and "
1283
- "click \"Reset Secret Key\""
1284
  msgstr ""
1285
 
1286
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:76
1287
- msgctxt "The migration has been cancelled"
1288
- msgid "Migration cancelled"
 
1289
  msgstr ""
1290
 
1291
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:77
1292
- msgid ""
1293
- "The migration has been stopped and all temporary files and data have been "
1294
- "cleaned up."
1295
  msgstr ""
1296
 
1297
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:78
1298
- msgid "Welcome to WP Migrate! &#127881;"
1299
  msgstr ""
1300
 
1301
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:79
 
1302
  #, php-format
1303
- msgid ""
1304
- "Hey, this is the first time activating your license, nice! Your migrations "
1305
- "are about to get awesome! If you haven’t already, you should check out our "
1306
- "<a href=\"%1$s\" target=\"_blank\">Quick Start Guide</a> and <a href=\"%2$s"
1307
- "\" target=\"_blank\">Videos</a>. If you run into any trouble at all, use the "
1308
- "<strong>Help tab</strong> above to submit a support request."
1309
  msgstr ""
1310
 
1311
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:80
1312
- msgid ""
1313
- "The selected file does not have a recognized file type. Please upload a "
1314
- "valid SQL file to continue."
1315
  msgstr ""
1316
 
1317
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:81
1318
- msgid "Please select an SQL export file above to continue."
1319
  msgstr ""
1320
 
1321
- #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:82
1322
- #, php-format
1323
- msgid "Importing data from %s"
 
1324
  msgstr ""
1325
 
1326
- #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:176
1327
- #, php-format
1328
- msgid ""
1329
- "<strong>Uploads directory not writable</strong> &mdash; the following "
1330
- "directory is not writable: <code>%s</code>. Update the file permissions for "
1331
- "this folder to enable backups and export migrations. <a href=\"https://"
1332
- "deliciousbrains.com/wp-migrate-db-pro/doc/uploads-folder-permissions/\" "
1333
- "target=\"_blank\">More information</a>.<br><br>"
1334
  msgstr ""
1335
 
1336
- #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:264
1337
- msgid ""
1338
- "WP Migrate Lite and WP Migrate cannot both be active. We've automatically "
1339
- "deactivated WP Migrate Lite."
1340
  msgstr ""
1341
 
1342
- #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:266
1343
  msgid ""
1344
- "WP Migrate Lite and WP Migrate cannot both be active. We've automatically "
1345
- "deactivated WP Migrate."
1346
  msgstr ""
1347
 
1348
- #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:355
1349
- msgid "AJAX request failed"
1350
  msgstr ""
1351
 
1352
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:354
1353
- msgid "No recent migrations"
1354
  msgstr ""
1355
 
1356
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:380
1357
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:413
1358
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:447
1359
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:654
1360
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:680
1361
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:692
1362
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:260
1363
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:658
1364
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:670
1365
- msgid "Profile not found."
1366
  msgstr ""
1367
 
1368
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:393
1369
- msgid "Profile removed"
1370
  msgstr ""
1371
 
1372
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:427
1373
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:468
1374
- msgid "Profile saved"
1375
  msgstr ""
1376
 
1377
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:510
1378
  #, php-format
1379
- msgid "Failed to %s profile, state data is empty."
1380
  msgstr ""
1381
 
1382
- #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:661
1383
- msgid "Profile saved as invalid JSON."
 
1384
  msgstr ""
1385
 
1386
- #: src/wp-migrate-db-pro/class/Common/Properties/Properties.php:70
 
1387
  msgid ""
1388
- "Invalid content verification signature, please verify the connection "
1389
- "information on the remote site and try again."
1390
  msgstr ""
1391
 
1392
- #: src/wp-migrate-db-pro/class/Common/Properties/Properties.php:70
1393
  #, php-format
1394
- msgid " Remote URL: %s "
 
 
1395
  msgstr ""
1396
 
1397
- #: src/wp-migrate-db-pro/class/Common/Settings/Settings.php:46
1398
- msgid "Setting does not exist"
 
1399
  msgstr ""
1400
 
1401
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:730
1402
  #, php-format
1403
  msgid ""
1404
- "Failed to retrieve table structure for table '%s', please ensure your "
1405
- "database is online. (#125)"
 
1406
  msgstr ""
1407
 
1408
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:803
1409
- #, php-format
1410
- msgid "Error creating temporary table. Table \"%s\" does not exist."
1411
  msgstr ""
1412
 
1413
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:854
1414
- #, php-format
1415
- msgid "Delete any existing table %s"
1416
  msgstr ""
1417
 
1418
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:865
1419
- #, php-format
1420
- msgid "Table structure of table %s"
1421
  msgstr ""
1422
 
1423
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:873
1424
- msgid ""
1425
- "Failed to generate the create table query, please ensure your database is "
1426
- "online. (#126)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1427
  msgstr ""
1428
 
1429
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:931
1430
- #, php-format
1431
- msgid "Data contents of table %s"
1432
  msgstr ""
1433
 
1434
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1057
1435
- msgid "Failed to write the gzipped SQL data to the file. (#127)"
 
1436
  msgstr ""
1437
 
1438
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1064
1439
- msgid "Failed to write the SQL data to the file. (#128)"
 
1440
  msgstr ""
1441
 
1442
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1136
1443
- #, php-format
1444
- msgid ""
1445
- "The imported table `%1s` contains characters which are invalid in the target "
1446
- "schema.<br><br>If this is a WP Migrate export file, ensure that the "
1447
- "`Compatible with older versions of MySQL` setting under `Advanced Options` "
1448
- "is unchecked and try exporting again.<br><br> See&nbsp;<a href=\"%2s\">our "
1449
- "documentation</a> for more information."
1450
  msgstr ""
1451
 
1452
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1139
1453
- #, php-format
1454
- msgid ""
1455
- "The table `%1s` contains characters which are invalid in the target "
1456
- "database. See&nbsp;<a href=\"%2s\" target=\"_blank\">our documentation</a> "
1457
- "for more information."
1458
  msgstr ""
1459
 
1460
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1777
1461
- #, php-format
1462
- msgid "End of data contents of table %s"
1463
  msgstr ""
1464
 
1465
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1902
1466
- msgid "WordPress MySQL database migration"
 
1467
  msgstr ""
1468
 
1469
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1904
1470
  #, php-format
1471
- msgid "Generated: %s"
1472
  msgstr ""
1473
 
1474
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1905
1475
  #, php-format
1476
- msgid "Hostname: %s"
1477
  msgstr ""
1478
 
1479
- #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1906
1480
  #, php-format
1481
- msgid "Database: %s"
 
 
1482
  msgstr ""
1483
 
1484
- #: src/wp-migrate-db-pro/class/Common/Sql/TableHelper.php:140
1485
  #, php-format
1486
  msgid ""
1487
- "The source site supports utf8mb4 data but the target does not, aborting "
1488
- "migration to avoid possible data corruption. Please see %1$s for more "
1489
- "information. (#148)"
1490
  msgstr ""
1491
 
1492
- #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:80
1493
- msgctxt "Configure a migration or export"
1494
- msgid "Migrate"
1495
  msgstr ""
1496
 
1497
- #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:88
1498
- msgctxt "Plugin extensions"
1499
- msgid "Addons"
1500
  msgstr ""
1501
 
1502
- #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:92
1503
- msgctxt "Get help or contact support"
1504
- msgid "Help"
1505
  msgstr ""
1506
 
1507
- #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:237
1508
- msgid "Warning: Mixed Case Table Names"
 
 
 
 
1509
  msgstr ""
1510
 
1511
- #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:240
1512
- msgid ""
1513
- "Whoa! We've detected that your <b>local</b> site has the MySQL setting "
1514
- "<code>lower_case_table_names</code> set to <code>1</code>."
1515
  msgstr ""
1516
 
1517
- #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:242
1518
- msgid ""
1519
- "Whoa! We've detected that your <b>remote</b> site has the MySQL setting "
1520
- "<code>lower_case_table_names</code> set to <code>1</code>."
1521
  msgstr ""
1522
 
1523
- #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:245
 
1524
  msgid ""
1525
- "As a result, uppercase characters in table names will be converted to "
1526
- "lowercase during the migration."
 
 
1527
  msgstr ""
1528
 
1529
- #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:247
1530
  #, php-format
1531
  msgid ""
1532
- "You can read more about this in <a href=\"%s\">our documentation</a>, "
1533
- "proceed with caution."
1534
  msgstr ""
1535
 
1536
- #: src/wp-migrate-db-pro/class/Common/Util/Util.php:240
1537
  #, php-format
1538
- msgid "Scope: %s()."
1539
  msgstr ""
1540
 
1541
- #: src/wp-migrate-db-pro/class/Common/Util/Util.php:241
1542
  #, php-format
1543
- msgid "WPMDB Error: Data cannot be unserialized. %s"
1544
  msgstr ""
1545
 
1546
- #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:148
1547
- msgid "--media must be set to an acceptable value, see: wp help migratedb "
 
1548
  msgstr ""
1549
 
1550
- #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:159
 
1551
  msgid ""
1552
- "--media-date required when using --media=since-date, see: wp help migratedb "
 
1553
  msgstr ""
1554
 
1555
- #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:173
 
1556
  msgid ""
1557
- "--media-date parameter received an invalid date format, see wp help "
1558
- "migratedb "
1559
  msgstr ""
1560
 
1561
- #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:239
1562
- msgid "Initiating media migration..."
 
 
 
1563
  msgstr ""
1564
 
1565
- #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:310
1566
- msgid ""
1567
- "WP Migrate Media Files does not seem to be installed/active on the remote "
1568
- "website."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1569
  msgstr ""
1570
 
1571
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:227
@@ -1634,9 +1523,6 @@ msgid ""
1634
  msgstr ""
1635
 
1636
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:828
1637
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:202
1638
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:211
1639
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:240
1640
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:209
1641
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:218
1642
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:247
@@ -1657,112 +1543,83 @@ msgid ""
1657
  "make use of the subsite option"
1658
  msgstr ""
1659
 
1660
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:887
1661
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:895
1662
  msgid ""
1663
  "The profile is set to migrate theme or plugin files, however migrating theme "
1664
  "and plugin files is not supported with the current license."
1665
  msgstr ""
1666
 
1667
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:910
1668
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:918
1669
  msgctxt "The caches and rewrite rules for the target are being flushed"
1670
  msgid "Flushing caches and rewrite rules..."
1671
  msgstr ""
1672
 
1673
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:967
1674
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:975
1675
  msgid "Migrating tables"
1676
  msgstr ""
1677
 
1678
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:1043
1679
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:1051
1680
  msgid "Importing file"
1681
  msgstr ""
1682
 
1683
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:175
1684
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:173
1685
  msgid "You must provide an import file."
1686
  msgstr ""
1687
 
1688
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:567
1689
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:565
1690
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:599
1691
  msgid "There are no saved profiles for this site."
1692
  msgstr ""
1693
 
1694
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:583
1695
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:581
1696
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:615
1697
  msgctxt "Export data to remote database"
1698
  msgid "push"
1699
  msgstr ""
1700
 
1701
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:584
1702
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:582
1703
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:616
1704
  msgctxt "Import data from remote database"
1705
  msgid "pull"
1706
  msgstr ""
1707
 
1708
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:585
1709
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:583
1710
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:617
1711
  msgctxt "Export file from local database"
1712
  msgid "export"
1713
  msgstr ""
1714
 
1715
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:586
1716
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:584
1717
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:618
1718
  msgctxt "Run a find & replace on local database"
1719
  msgid "find & replace"
1720
  msgstr ""
1721
 
1722
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:587
1723
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:585
1724
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:619
1725
  msgctxt "Import data from SQL file"
1726
  msgid "import"
1727
  msgstr ""
1728
 
1729
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:588
1730
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:586
1731
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:620
1732
  msgctxt "Backup the local database"
1733
  msgid "backup"
1734
  msgstr ""
1735
 
1736
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:606
1737
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:604
1738
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:638
1739
  msgctxt "Profile list column heading"
1740
  msgid "ID"
1741
  msgstr ""
1742
 
1743
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:607
1744
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:605
1745
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:639
1746
  msgctxt "Profile list column heading"
1747
  msgid "NAME"
1748
  msgstr ""
1749
 
1750
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:608
1751
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:606
1752
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:640
1753
  msgctxt "Profile list column heading"
1754
  msgid "ACTION"
1755
  msgstr ""
1756
 
1757
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:609
1758
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:607
1759
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:641
1760
  msgctxt "Profile list column heading"
1761
  msgid "REMOTE"
1762
  msgstr ""
1763
 
1764
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:702
1765
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:659
1766
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:693
1767
  msgid "Migration successful."
1768
  msgstr ""
@@ -1808,73 +1665,86 @@ msgstr ""
1808
  msgid "No setting `%s` currently saved in the database."
1809
  msgstr ""
1810
 
1811
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:193
1812
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:195
1813
  msgid "License updated."
1814
  msgstr ""
1815
 
1816
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:229
1817
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:231
1818
  msgid "License requires specifying a user via --user=<id|login|email>"
1819
  msgstr ""
1820
 
1821
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:232
1822
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:234
1823
  msgid "User must be an Admin"
1824
  msgstr ""
1825
 
1826
- #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:278
1827
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:280
1828
  msgid "Checking license key..."
1829
  msgstr ""
1830
 
1831
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:199
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1832
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:206
1833
  msgid ""
1834
  "The installation must be a Multisite network to make use of the export "
1835
  "subsite option"
1836
  msgstr ""
1837
 
1838
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:206
1839
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:213
1840
  msgid ""
1841
  "For subsite to subsite migrations subsite-source and subsite-destination are "
1842
  "both required"
1843
  msgstr ""
1844
 
1845
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:223
1846
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:230
1847
  msgid ""
1848
  "subsite-source must also be used to make use of the subsite to subsite option"
1849
  msgstr ""
1850
 
1851
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:227
1852
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:234
1853
  msgid ""
1854
  "subsite-destination must also be used to make use of the subsite to subsite "
1855
  "option"
1856
  msgstr ""
1857
 
1858
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:231
1859
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:238
1860
  msgid ""
1861
  "A valid Blog ID or Subsite URL must be supplied for both networks to make "
1862
  "use of the subsite to subsite option"
1863
  msgstr ""
1864
 
1865
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:235
1866
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:242
1867
  msgid ""
1868
  "Both source and destination must be networks to make use of the subsite to "
1869
  "subsite option"
1870
  msgstr ""
1871
 
1872
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:253
1873
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:260
1874
  msgid "A new table name prefix may only be specified for subsite exports."
1875
  msgstr ""
1876
 
1877
- #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:256
1878
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:263
1879
  msgid "A valid prefix must be supplied to make use of the prefix option"
1880
  msgstr ""
@@ -1885,6 +1755,7 @@ msgid ""
1885
  msgstr ""
1886
 
1887
  #: src/wp-migrate-db-pro/class/Pro/Migration/Connection/Local.php:149
 
1888
  msgid ""
1889
  "Failed attempting to unserialize the response from the remote server. Please "
1890
  "contact support."
@@ -1934,7 +1805,6 @@ msgid ""
1934
  "(#122)"
1935
  msgstr ""
1936
 
1937
- #: src/wp-migrate-db-pro/class/Pro/Migration/Connection/Remote.php:380
1938
  #: src/wp-migrate-db-pro/class/Pro/Migration/Connection/Remote.php:384
1939
  msgid ""
1940
  "The connection succeeded but the remote site is configured to reject pull "
@@ -1942,7 +1812,6 @@ msgid ""
1942
  "(#110)"
1943
  msgstr ""
1944
 
1945
- #: src/wp-migrate-db-pro/class/Pro/Migration/Connection/Remote.php:382
1946
  #: src/wp-migrate-db-pro/class/Pro/Migration/Connection/Remote.php:386
1947
  msgid ""
1948
  "The connection succeeded but the remote site is configured to reject push "
@@ -1972,26 +1841,50 @@ msgid ""
1972
  "(#139)"
1973
  msgstr ""
1974
 
1975
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:291
1976
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:347
 
1977
  #, php-format
1978
  msgid "Theme not found on source server: %s"
1979
  msgstr ""
1980
 
1981
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:370
1982
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:426
 
1983
  #, php-format
1984
  msgid "Plugin not found on source server: %s"
1985
  msgstr ""
1986
 
1987
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:426
 
 
 
 
 
 
 
 
 
 
 
1988
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:628
 
1989
  msgid "Initiating themes migration..."
1990
  msgstr ""
1991
 
1992
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:433
 
 
 
 
 
 
 
 
 
 
 
1993
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:656
1994
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:658
 
1995
  msgid "Initiating plugins migration..."
1996
  msgstr ""
1997
 
@@ -2005,59 +1898,75 @@ msgstr ""
2005
  msgid "File does not exist - %s"
2006
  msgstr ""
2007
 
2008
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:328
2009
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:322
 
 
 
 
2010
  #, php-format
2011
  msgid ""
2012
  "File size of source and destination do not match: <br>%s<br>Destination "
2013
  "size: %s, Local size: %s"
2014
  msgstr ""
2015
 
2016
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:335
2017
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:329
 
 
 
 
2018
  #, php-format
2019
  msgid ""
2020
  "File MD5's do not match for file: %s \n"
2021
  "Local MD5: %s Remote MD5: %s"
2022
  msgstr ""
2023
 
2024
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:355
2025
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:349
 
 
 
 
2026
  #, php-format
2027
  msgid "Could not write line to file. File name: %s"
2028
  msgstr ""
2029
 
2030
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:401
2031
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:395
2032
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:391
 
2033
  msgid "Failed to unpack payload."
2034
  msgstr ""
2035
 
2036
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:407
2037
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:401
2038
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:397
 
2039
  msgid "Failed to create stream from payload."
2040
  msgstr ""
2041
 
2042
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:428
2043
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:422
2044
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:418
 
 
 
 
 
2045
  #, php-format
2046
  msgid "Could not create directory: %s"
2047
  msgstr ""
2048
 
2049
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:445
2050
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:439
2051
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:435
 
 
 
 
 
2052
  #, php-format
2053
  msgid ""
2054
  "The `%s` file is not writable, please check the file permissions of the "
2055
  "parent folder and ensure the web server can read from and write to this file."
2056
  msgstr ""
2057
 
2058
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:490
2059
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:484
2060
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:480
 
 
 
 
 
2061
  #, php-format
2062
  msgid "Unable to rename part file %s"
2063
  msgstr ""
@@ -2066,49 +1975,33 @@ msgstr ""
2066
  msgid "Could not validate $_POST data."
2067
  msgstr ""
2068
 
2069
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php:242
2070
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php:250
2071
  msgid "Saving queue status to remote failed."
2072
  msgstr ""
2073
 
2074
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php:337
2075
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php:349
 
 
2076
  msgid "Failed to respond to payload post."
2077
  msgstr ""
2078
 
2079
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:134
2080
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:132
2081
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:129
2082
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:136
2083
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:137
2084
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:141
2085
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:144
2086
  #, php-format
2087
  msgid "Payload transfer failed with code %s: %s"
2088
  msgstr ""
2089
 
2090
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:263
2091
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:268
2092
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:267
2093
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:272
2094
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:277
2095
  #, php-format
2096
  msgid "The following files failed to transfer: <br> %s"
2097
  msgstr ""
2098
 
2099
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:303
2100
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:308
2101
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:307
2102
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:312
2103
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:317
2104
  #, php-format
2105
  msgid "Unable to create folder for file transfers: %s"
2106
  msgstr ""
2107
 
2108
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:310
2109
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:315
2110
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:314
2111
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:319
2112
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:324
2113
  #, php-format
2114
  msgid ""
@@ -2116,63 +2009,25 @@ msgid ""
2116
  "to this file/folder: `%s`"
2117
  msgstr ""
2118
 
2119
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:602
2120
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:607
2121
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:606
2122
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:611
2123
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:613
2124
  msgid "Failed to load manifest file."
2125
  msgstr ""
2126
 
2127
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:608
2128
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:613
2129
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:612
2130
- #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:617
2131
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:619
2132
  msgid "Failed to parse manifest file."
2133
  msgstr ""
2134
 
2135
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:175
2136
- msgid "Themes & Plugins"
2137
- msgstr ""
2138
-
2139
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:182
2140
- msgid "Themes & Plugins Transfer Error"
2141
- msgstr ""
2142
-
2143
- #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:212
2144
  #, php-format
2145
- msgid "Temporary file not found when finalizing %s Files migration: %s "
2146
- msgstr ""
2147
-
2148
- #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:59
2149
- msgid "A problem occurred starting the Themes & Plugins migration."
2150
- msgstr ""
2151
-
2152
- #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:74
2153
- msgid ""
2154
- "Unfortunately it looks like we can't migrate your themes or plugins. "
2155
- "However, running a migration without themes and plugins should work. Please "
2156
- "uncheck the Themes checkbox, uncheck the Plugins checkbox, and try your "
2157
- "migration again."
2158
  msgstr ""
2159
 
2160
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:485
2161
- #, php-format
2162
- msgid "Must-Use Plugin not found on source server: %s"
2163
  msgstr ""
2164
 
2165
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:545
 
2166
  #, php-format
2167
- msgid "Other file not found on source server: %s"
2168
- msgstr ""
2169
-
2170
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:636
2171
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:638
2172
- msgid "Initiating other files migration..."
2173
- msgstr ""
2174
-
2175
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:646
2176
- #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:648
2177
- msgid "Initiating must-use files migration..."
2178
  msgstr ""
8
  msgstr ""
9
  "Project-Id-Version: wp-migrate-db-pro\n"
10
  "Report-Msgid-Bugs-To: nom@deliciousbrains.com\n"
11
+ "POT-Creation-Date: 2022-10-12 17:09+0200\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
50
  msgid "Your current PHP run time limit is set to %s seconds."
51
  msgstr ""
52
 
53
+ #: src/wp-migrate-db-pro/class/Common/BackupExport.php:87
54
+ msgid "MySQL export file not found."
55
+ msgstr ""
56
+
57
+ #: src/wp-migrate-db-pro/class/Common/BackupExport.php:91
58
+ msgid "Could not delete the MySQL export file."
59
+ msgstr ""
60
+
61
+ #: src/wp-migrate-db-pro/class/Common/Replace.php:656
62
+ #: src/wp-migrate-db-pro/class/Common/Replace.php:661
63
+ #, php-format
64
+ msgid ""
65
+ "WP Migrate - Failed to instantiate object for replacement. If the serialized "
66
+ "object's class is defined by a plugin, you should enable that plugin for "
67
+ "migration requests. \n"
68
+ "Class Name: %s"
69
+ msgstr ""
70
+
71
+ #: src/wp-migrate-db-pro/class/Common/Replace.php:714
72
+ #: src/wp-migrate-db-pro/class/Common/Replace.php:719
73
+ msgid ""
74
+ "Failed attempting to do the recursive unserialize replace. Please contact "
75
+ "support."
76
+ msgstr ""
77
+
78
+ #: src/wp-migrate-db-pro/class/Common/Sanitize.php:49
79
+ #, php-format
80
+ msgid ""
81
+ "Sanitization Error: `%1$s` method was expecting %2$s for the `%3$s` field, "
82
+ "but got something else: \"%4$s\""
83
+ msgstr ""
84
+
85
+ #: src/wp-migrate-db-pro/class/Common/Sanitize.php:72
86
+ #, php-format
87
+ msgid "%1$s was not expecting data to be an array."
88
+ msgstr ""
89
+
90
+ #: src/wp-migrate-db-pro/class/Common/Sanitize.php:181
91
+ #, php-format
92
+ msgid "Unknown sanitization rule \"%1$s\" supplied by %2$s"
93
+ msgstr ""
94
+
95
  #: src/wp-migrate-db-pro/class/Pro/Api.php:136
96
  #: src/wp-migrate-db-pro/class/Pro/License.php:479
97
  #, php-format
171
  msgstr ""
172
 
173
  #: src/wp-migrate-db-pro/class/Pro/Import.php:515
174
+ #: src/wp-migrate-db-pro/class/Pro/Import.php:541
175
  #, php-format
176
  msgid "Failed to import the SQL query: %s"
177
  msgstr ""
335
  msgstr ""
336
 
337
  #: src/wp-migrate-db-pro/class/Pro/License.php:646
338
+ #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:84
339
+ #: src/wp-migrate-db-pro/class/Free/Plugin/PluginManager.php:81
340
  #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:239
341
  #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:543
 
 
342
  msgctxt "Plugin configuration and preferences"
343
  msgid "Settings"
344
  msgstr ""
395
  msgid "Remove"
396
  msgstr ""
397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
398
  #: src/wp-migrate-db-pro/template/common/muplugin-failed-update-warning.php:3
399
  msgid "<strong>Compatibility Plugin Update Failed</strong> &mdash; "
400
  msgstr ""
445
  "a> and reset your secret key."
446
  msgstr ""
447
 
448
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:174
449
+ msgid "Profile not found or unable to be generated from params."
 
450
  msgstr ""
451
 
452
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:201
453
+ msgid "Missing path to import file. Use --import-file=/path/to/import.sql.gz"
454
+ msgstr ""
455
+
456
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:238
457
  #, php-format
458
+ msgid "The following table(s) do not exist in the %1$s database: %2$s"
459
  msgstr ""
460
 
461
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:306
462
+ #, php-format
463
+ msgid ""
464
+ "We were expecting a JSON response, instead we received: %2$s (function name: "
465
+ "%1$s)"
466
  msgstr ""
467
 
468
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:365
469
+ msgid "Initiating migration..."
470
  msgstr ""
471
 
472
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:421
473
+ msgid "Exporting tables"
474
  msgstr ""
475
 
476
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:424
477
+ #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:978
478
+ msgid "Running find & replace"
 
 
479
  msgstr ""
480
 
481
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:427
482
+ #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:973
483
+ msgid "Performing backup"
484
  msgstr ""
485
 
486
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:509
487
+ msgid "No tables selected for migration."
 
 
 
 
488
  msgstr ""
489
 
490
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:616
491
+ msgid "Cleaning up..."
 
 
 
492
  msgstr ""
493
 
494
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:713
495
+ msgid "Unable to move exported file."
496
  msgstr ""
497
 
498
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:783
499
+ msgid "Parameter errors: "
500
  msgstr ""
501
 
502
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:785
 
503
  #, php-format
504
+ msgid "unknown %s parameter"
505
  msgstr ""
506
 
507
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:794
508
+ msgid "--"
 
509
  msgstr ""
510
 
511
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:799
512
+ msgid "Missing action parameter"
513
  msgstr ""
514
 
515
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:818
516
+ msgid "Please make sure Regular Expression find & replace pattern is valid"
 
 
 
517
  msgstr ""
518
 
519
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:822
520
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:832
521
+ msgid "Missing Regex find and replace values."
 
 
522
  msgstr ""
523
 
524
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:840
525
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:856
526
+ msgid "Missing case sensitive find and replace values."
527
  msgstr ""
528
 
529
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:866
530
+ msgid "Missing find and replace values."
 
 
531
  msgstr ""
532
 
533
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:869
534
+ msgid "Find value is required."
 
 
535
  msgstr ""
536
 
537
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:876
538
+ msgid "Replace value is required."
 
 
539
  msgstr ""
540
 
541
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:881
542
  #, php-format
543
+ msgid "%1$s and %2$s must contain the same number of values"
544
  msgstr ""
545
 
546
+ #: src/wp-migrate-db-pro/class/Common/Cli/Cli.php:927
547
+ #, php-format
548
+ msgid ""
549
+ "Cannot write to file \"%1$s\". Please ensure that the specified directory "
550
+ "exists and is writable."
551
  msgstr ""
552
 
553
+ #: src/wp-migrate-db-pro/class/Common/Cli/Command.php:81
554
+ msgid "You must provide a destination filename."
 
 
555
  msgstr ""
556
 
557
+ #: src/wp-migrate-db-pro/class/Common/Cli/Command.php:205
558
+ #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:685
559
+ msgid "WP Migrate CLI class not available."
560
  msgstr ""
561
 
562
+ #: src/wp-migrate-db-pro/class/Common/Cli/Command.php:213
563
+ #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:695
564
  #, php-format
565
+ msgid "Export saved to: %s"
566
  msgstr ""
567
 
568
+ #: src/wp-migrate-db-pro/class/Common/Cli/Command.php:216
569
+ msgid "Find & Replace complete"
 
 
 
570
  msgstr ""
571
 
572
+ #: src/wp-migrate-db-pro/class/Common/Compatibility/CompatibilityManager.php:197
573
  #, php-format
574
  msgid ""
575
+ "The compatibility plugin could not be activated because your mu-plugin "
576
+ "directory is currently not writable. Please update the permissions of the "
577
+ "mu-plugins folder: %s"
 
 
 
 
578
  msgstr ""
579
 
580
+ #: src/wp-migrate-db-pro/class/Common/Compatibility/CompatibilityManager.php:230
581
  #, php-format
582
  msgid ""
583
+ "The compatibility plugin could not be deactivated because your mu-plugin "
584
+ "directory is currently not writable. Please update the permissions of the "
585
+ "mu-plugins folder: %s"
586
  msgstr ""
587
 
588
+ #: src/wp-migrate-db-pro/class/Common/Filesystem/Filesystem.php:801
589
+ #, php-format
590
+ msgid "<h3>Output prevented download. </h3> %s"
591
  msgstr ""
592
 
593
+ #: src/wp-migrate-db-pro/class/Common/Filesystem/Filesystem.php:804
594
+ msgid "Could not find the file to download:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
  msgstr ""
596
 
597
+ #: src/wp-migrate-db-pro/class/Common/Http/Helper.php:106
598
+ msgid "Invalid Request. Did you pass the correct nonce?"
 
599
  msgstr ""
600
 
601
+ #: src/wp-migrate-db-pro/class/Common/Http/Http.php:90
602
+ #, php-format
603
+ msgid "An error occurred - JSON response: %s"
 
604
  msgstr ""
605
 
606
+ #: src/wp-migrate-db-pro/class/Common/Http/Http.php:132
607
+ #, php-format
608
+ msgid "Invalid nonce for: %s"
 
609
  msgstr ""
610
 
611
+ #: src/wp-migrate-db-pro/class/Common/Http/Http.php:139
 
612
  #, php-format
613
+ msgid "Access denied for: %s"
614
  msgstr ""
615
 
616
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:282
617
  #, php-format
618
  msgid ""
619
+ "We've detected that <code>WP_HTTP_BLOCK_EXTERNAL</code> is enabled and the "
620
+ "host <strong>%1$s</strong> has not been added to <code>WP_ACCESSIBLE_HOSTS</"
621
+ "code>. Please disable <code>WP_HTTP_BLOCK_EXTERNAL</code> or add <strong>"
622
+ "%1$s</strong> to <code>WP_ACCESSIBLE_HOSTS</code> to continue. <a href=\"%2$s"
623
+ "\" target=\"_blank\">More information</a>. (#147 - scope: %3$s)"
624
  msgstr ""
625
 
626
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:293
 
627
  #, php-format
628
  msgid ""
629
+ "The connection failed, an unexpected error occurred, please contact support. "
630
+ "(#121 - scope: %s)"
631
  msgstr ""
632
 
633
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:298
 
634
  #, php-format
635
  msgid ""
636
+ "The connection to the remote server has timed out, no changes have been "
637
+ "committed. (#134 - scope: %s)"
638
  msgstr ""
639
 
640
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:306
 
641
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
642
  msgid ""
643
+ "Couldn't connect over HTTPS. You might want to try regular HTTP instead. "
644
+ "(#121 - scope: %s)"
 
 
645
  msgstr ""
646
 
647
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:312
648
+ #, php-format
649
+ msgid ""
650
+ "<strong>HTTPS Connection Error:</strong> (#121 - scope: %s) This typically "
651
+ "means that the version of OpenSSL that your local site is using to connect "
652
+ "to the remote is incompatible or, more likely, being rejected by the remote "
653
+ "server because it's insecure. <a href=\"%s\" target=\"_blank\">See our "
654
+ "documentation</a> for possible solutions."
655
  msgstr ""
656
 
657
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:320
658
+ msgid ""
659
+ "The remote site is protected with Basic Authentication. Please enter the "
660
+ "username and password above to continue. (401 Unauthorized)"
661
  msgstr ""
662
 
663
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:325
 
664
  #, php-format
665
+ msgid ""
666
+ "Unable to connect to the remote server, the remote server responded with: %s "
667
+ "%s (scope: %s)"
668
  msgstr ""
669
 
670
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:330
 
671
  #, php-format
672
+ msgid ""
673
+ "Unable to connect to the remote server, please check the connection details "
674
+ "- %1$s %2$s (#129 - scope: %3$s)"
675
  msgstr ""
676
 
677
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:335
 
 
678
  #, php-format
679
+ msgid ""
680
+ "WP Migrate does not seem to be installed or active on the remote site. (#131 "
681
+ "- scope: %s)"
682
  msgstr ""
683
 
684
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:340
 
 
685
  #, php-format
686
  msgid ""
687
+ "A response was expected from the remote, instead we got nothing. (#146 - "
688
+ "scope: %1$s) Please review %2$s for possible solutions."
689
  msgstr ""
690
 
691
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:340
692
+ #: src/wp-migrate-db-pro/class/Common/Sql/TableHelper.php:140
693
+ msgid "our documentation"
 
 
 
 
694
  msgstr ""
695
 
696
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:504
 
 
697
  #, php-format
698
+ msgid "We could not find: %s. Are you sure this is the correct URL?"
 
 
699
  msgstr ""
700
 
701
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:511
702
+ msgid ""
703
+ "It appears that you might be trying to pull from a local environment. This "
704
+ "will not work if <u>this</u> website happens to be located on a remote "
705
+ "server, it would be impossible for this server to contact your local "
706
+ "environment."
707
  msgstr ""
708
 
709
+ #: src/wp-migrate-db-pro/class/Common/Http/RemotePost.php:513
710
+ msgid ""
711
+ "It appears that you might be trying to push to a local environment. This "
712
+ "will not work if <u>this</u> website happens to be located on a remote "
713
+ "server, it would be impossible for this server to contact your local "
714
+ "environment."
715
  msgstr ""
716
 
717
+ #: src/wp-migrate-db-pro/class/Common/Http/WPMDBRestAPIServer.php:26
718
+ msgid "Only authenticated users can access endpoint."
719
  msgstr ""
720
 
721
+ #: src/wp-migrate-db-pro/class/Common/Migration/FinalizeMigration.php:108
722
+ msgid "Unable to finalize the migration, migration state empty."
 
723
  msgstr ""
724
 
725
+ #: src/wp-migrate-db-pro/class/Common/Migration/InitiateMigration.php:316
726
  #, php-format
727
  msgid ""
728
+ "<p><strong>Export Failed</strong> We can't save your export to the "
729
+ "following folder:<br><strong>%s</strong></p><p>Please adjust the permissions "
730
+ "on this folder. <a href=\"%s\" target=\"_blank\">See our documentation for "
731
+ "more information »</a></p>"
732
  msgstr ""
733
 
734
+ #: src/wp-migrate-db-pro/class/Common/MigrationState/MigrationStateManager.php:90
735
+ msgid "Failed to save migration state. Please contact support."
 
 
 
736
  msgstr ""
737
 
738
+ #: src/wp-migrate-db-pro/class/Common/MigrationState/MigrationStateManager.php:124
739
+ msgid "Failed to retrieve migration state. Please contact support."
740
  msgstr ""
741
 
742
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:147
743
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:164
744
+ msgid "single site"
745
  msgstr ""
746
 
747
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:148
748
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:163
749
+ msgid "multisite"
750
  msgstr ""
751
 
752
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:155
753
+ msgid "Multisite tools addon"
754
+ msgstr ""
755
+
756
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:157
757
  #, php-format
758
+ msgid ""
759
+ "It looks like the file you are trying to import is from a multisite install "
760
+ "and this install is a single site. To run this type of import you'll need to "
761
+ "use the %s to export a subsite as a single site. <a href=\"%s\" target="
762
+ "\"_blank\">Learn more »</a>"
763
  msgstr ""
764
 
765
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:165
766
  #, php-format
767
  msgid ""
768
+ "It looks like the file you are trying to import is from a single site "
769
+ "install and this install is a multisite. This type of migration isn't "
770
+ "currently supported. <a href=\"%s\" target=\"_blank\">Learn more »</a>"
771
  msgstr ""
772
 
773
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:173
774
+ msgid "Activate"
775
  msgstr ""
776
 
777
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:175
778
+ #, php-format
779
+ msgid ""
780
+ "It looks like the remote site is a %s install and this install is a %s. To "
781
+ "run this type of migration you'll need the %s activated on the "
782
+ "<strong>remote</strong> site."
783
  msgstr ""
784
 
785
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:189
786
+ msgid "Install"
 
 
787
  msgstr ""
788
 
789
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:192
790
+ msgid "Upgrade your license"
 
 
791
  msgstr ""
792
 
793
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:198
794
+ #, php-format
795
+ msgid ""
796
+ "It looks like the remote site is a %s install and this install is a %s. To "
797
+ "run this type of migration you'll need the %s. %s"
798
  msgstr ""
799
 
800
+ #: src/wp-migrate-db-pro/class/Common/Multisite/Multisite.php:209
801
+ msgid "Multisite Tools Addon Needed"
 
802
  msgstr ""
803
 
804
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:71
805
+ msgid ""
806
+ "The connection information appears to be missing, please enter it to "
807
+ "continue."
808
  msgstr ""
809
 
810
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:72
811
+ msgid ""
812
+ "The URL on the first line appears to be invalid, please check it and try "
813
+ "again."
814
  msgstr ""
815
 
816
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:73
817
+ msgid ""
818
+ "The secret key on the second line appears to be invalid. It should be a 40 "
819
+ "character string that consists of letters, numbers and special characters "
820
+ "only."
821
  msgstr ""
822
 
823
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:74
824
+ msgid ""
825
+ "It appears you've entered the URL for this website, you need to provide the "
826
+ "URL of the remote website instead."
827
  msgstr ""
828
 
829
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:75
830
+ msgid ""
831
+ "Looks like your remote secret key is the same as the secret key for this "
832
+ "site. To fix this, go to the <a href=\"#settings\">Settings tab</a> and "
833
+ "click \"Reset Secret Key\""
834
  msgstr ""
835
 
836
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:76
837
+ msgctxt "The migration has been cancelled"
838
+ msgid "Migration cancelled"
 
839
  msgstr ""
840
 
841
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:77
842
+ msgid ""
843
+ "The migration has been stopped and all temporary files and data have been "
844
+ "cleaned up."
 
 
 
845
  msgstr ""
846
 
847
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:78
848
+ msgid "Welcome to WP Migrate! &#127881;"
 
 
 
 
 
849
  msgstr ""
850
 
851
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:79
852
+ #, php-format
853
+ msgid ""
854
+ "Hey, this is the first time activating your license, nice! Your migrations "
855
+ "are about to get awesome! If you haven’t already, you should check out our "
856
+ "<a href=\"%1$s\" target=\"_blank\">Quick Start Guide</a> and <a href=\"%2$s"
857
+ "\" target=\"_blank\">Videos</a>. If you run into any trouble at all, use the "
858
+ "<strong>Help tab</strong> above to submit a support request."
859
+ msgstr ""
860
+
861
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:80
862
+ msgid ""
863
+ "The selected file does not have a recognized file type. Please upload a "
864
+ "valid SQL file to continue."
865
  msgstr ""
866
 
867
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:81
868
+ msgid "Please select an SQL export file above to continue."
 
 
869
  msgstr ""
870
 
871
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Assets.php:82
872
+ #, php-format
873
+ msgid "Importing data from %s"
 
874
  msgstr ""
875
 
876
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Menu.php:95
877
+ #: src/wp-migrate-db-pro/class/Common/Plugin/Menu.php:134
878
+ #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:374
879
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:621
880
+ msgid "WP Migrate"
881
  msgstr ""
882
 
883
+ #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:176
 
 
884
  #, php-format
885
  msgid ""
886
+ "<strong>Uploads directory not writable</strong> &mdash; the following "
887
+ "directory is not writable: <code>%s</code>. Update the file permissions for "
888
+ "this folder to enable backups and export migrations. <a href=\"https://"
889
+ "deliciousbrains.com/wp-migrate-db-pro/doc/uploads-folder-permissions/\" "
890
+ "target=\"_blank\">More information</a>.<br><br>"
891
  msgstr ""
892
 
893
+ #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:264
894
+ msgid ""
895
+ "WP Migrate Lite and WP Migrate cannot both be active. We've automatically "
896
+ "deactivated WP Migrate Lite."
897
  msgstr ""
898
 
899
+ #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:266
900
+ msgid ""
901
+ "WP Migrate Lite and WP Migrate cannot both be active. We've automatically "
902
+ "deactivated WP Migrate."
 
903
  msgstr ""
904
 
905
+ #: src/wp-migrate-db-pro/class/Common/Plugin/PluginManagerBase.php:355
906
+ msgid "AJAX request failed"
 
 
 
 
907
  msgstr ""
908
 
909
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:354
910
+ msgid "No recent migrations"
911
  msgstr ""
912
 
913
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:380
914
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:413
915
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:447
916
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:658
917
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:670
918
+ #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:260
919
+ msgid "Profile not found."
920
  msgstr ""
921
 
922
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:393
923
+ msgid "Profile removed"
 
 
 
 
924
  msgstr ""
925
 
926
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:427
927
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:468
928
+ msgid "Profile saved"
929
  msgstr ""
930
 
931
+ #: src/wp-migrate-db-pro/class/Common/Profile/ProfileManager.php:510
932
+ #, php-format
933
+ msgid "Failed to %s profile, state data is empty."
934
  msgstr ""
935
 
936
+ #: src/wp-migrate-db-pro/class/Common/Properties/Properties.php:70
937
+ msgid ""
938
+ "Invalid content verification signature, please verify the connection "
939
+ "information on the remote site and try again."
940
  msgstr ""
941
 
942
+ #: src/wp-migrate-db-pro/class/Common/Properties/Properties.php:70
943
  #, php-format
944
+ msgid " Remote URL: %s "
945
  msgstr ""
946
 
947
+ #: src/wp-migrate-db-pro/class/Common/Settings/Settings.php:46
948
+ msgid "Setting does not exist"
 
949
  msgstr ""
950
 
951
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:730
952
  #, php-format
953
+ msgid ""
954
+ "Failed to retrieve table structure for table '%s', please ensure your "
955
+ "database is online. (#125)"
956
  msgstr ""
957
 
958
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:803
 
959
  #, php-format
960
+ msgid "Error creating temporary table. Table \"%s\" does not exist."
 
 
 
 
 
961
  msgstr ""
962
 
963
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:854
 
964
  #, php-format
965
+ msgid "Delete any existing table %s"
 
 
966
  msgstr ""
967
 
968
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:865
 
969
  #, php-format
970
+ msgid "Table structure of table %s"
 
 
971
  msgstr ""
972
 
973
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:873
 
 
974
  msgid ""
975
+ "Failed to generate the create table query, please ensure your database is "
976
+ "online. (#126)"
977
  msgstr ""
978
 
979
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:931
 
980
  #, php-format
981
+ msgid "Data contents of table %s"
 
 
 
 
 
982
  msgstr ""
983
 
984
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1057
985
+ msgid "Failed to write the gzipped SQL data to the file. (#127)"
 
 
 
986
  msgstr ""
987
 
988
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1064
989
+ msgid "Failed to write the SQL data to the file. (#128)"
 
 
 
 
990
  msgstr ""
991
 
992
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1136
 
993
  #, php-format
994
  msgid ""
995
+ "The imported table `%1s` contains characters which are invalid in the target "
996
+ "schema.<br><br>If this is a WP Migrate export file, ensure that the "
997
+ "`Compatible with older versions of MySQL` setting under `Advanced Options` "
998
+ "is unchecked and try exporting again.<br><br> See&nbsp;<a href=\"%2s\">our "
999
+ "documentation</a> for more information."
1000
  msgstr ""
1001
 
1002
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1139
 
1003
  #, php-format
1004
  msgid ""
1005
+ "The table `%1s` contains characters which are invalid in the target "
1006
+ "database. See&nbsp;<a href=\"%2s\" target=\"_blank\">our documentation</a> "
1007
+ "for more information."
1008
  msgstr ""
1009
 
1010
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1777
 
1011
  #, php-format
1012
+ msgid "End of data contents of table %s"
 
 
1013
  msgstr ""
1014
 
1015
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1902
1016
+ msgid "WordPress MySQL database migration"
 
 
1017
  msgstr ""
1018
 
1019
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1904
 
1020
  #, php-format
1021
+ msgid "Generated: %s"
1022
  msgstr ""
1023
 
1024
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1905
1025
+ #, php-format
1026
+ msgid "Hostname: %s"
 
 
 
 
1027
  msgstr ""
1028
 
1029
+ #: src/wp-migrate-db-pro/class/Common/Sql/Table.php:1906
1030
+ #, php-format
1031
+ msgid "Database: %s"
 
 
 
 
1032
  msgstr ""
1033
 
1034
+ #: src/wp-migrate-db-pro/class/Common/Sql/TableHelper.php:140
1035
+ #, php-format
1036
+ msgid ""
1037
+ "The source site supports utf8mb4 data but the target does not, aborting "
1038
+ "migration to avoid possible data corruption. Please see %1$s for more "
1039
+ "information. (#148)"
1040
  msgstr ""
1041
 
1042
+ #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:80
1043
+ msgctxt "Configure a migration or export"
1044
+ msgid "Migrate"
1045
  msgstr ""
1046
 
1047
+ #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:88
1048
+ msgctxt "Plugin extensions"
1049
+ msgid "Addons"
 
 
 
 
1050
  msgstr ""
1051
 
1052
+ #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:92
1053
+ msgctxt "Get help or contact support"
1054
+ msgid "Help"
1055
  msgstr ""
1056
 
1057
+ #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:237
1058
+ msgid "Warning: Mixed Case Table Names"
1059
  msgstr ""
1060
 
1061
+ #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:240
1062
+ msgid ""
1063
+ "Whoa! We've detected that your <b>local</b> site has the MySQL setting "
1064
+ "<code>lower_case_table_names</code> set to <code>1</code>."
1065
  msgstr ""
1066
 
1067
+ #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:242
1068
+ msgid ""
1069
+ "Whoa! We've detected that your <b>remote</b> site has the MySQL setting "
1070
+ "<code>lower_case_table_names</code> set to <code>1</code>."
1071
  msgstr ""
1072
 
1073
+ #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:245
1074
+ msgid ""
1075
+ "As a result, uppercase characters in table names will be converted to "
1076
+ "lowercase during the migration."
1077
  msgstr ""
1078
 
1079
+ #: src/wp-migrate-db-pro/class/Common/UI/TemplateBase.php:247
1080
  #, php-format
1081
  msgid ""
1082
+ "You can read more about this in <a href=\"%s\">our documentation</a>, "
1083
+ "proceed with caution."
 
 
1084
  msgstr ""
1085
 
1086
+ #: src/wp-migrate-db-pro/class/Common/Util/Util.php:240
1087
  #, php-format
1088
+ msgid "Scope: %s()."
 
 
 
1089
  msgstr ""
1090
 
1091
+ #: src/wp-migrate-db-pro/class/Common/Util/Util.php:241
1092
+ #, php-format
1093
+ msgid "WPMDB Error: Data cannot be unserialized. %s"
1094
  msgstr ""
1095
 
1096
+ #: src/wp-migrate-db-pro/class/Free/Plugin/PluginManager.php:80
1097
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:542
1098
+ msgid "Migrate"
 
 
 
1099
  msgstr ""
1100
 
1101
+ #: src/wp-migrate-db-pro/class/Free/Plugin/PluginManager.php:84
1102
+ msgid "Upgrade"
1103
  msgstr ""
1104
 
1105
+ #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:140
1106
+ msgctxt "A new version of the plugin is available"
1107
+ msgid "Update Available"
1108
  msgstr ""
1109
 
1110
+ #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:141
1111
  #, php-format
1112
+ msgid "A new version of %1$s is now available. %2$s"
 
 
1113
  msgstr ""
1114
 
1115
+ #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:141
1116
+ msgctxt "Download and install a new version of the plugin"
1117
+ msgid "Update Now"
1118
  msgstr ""
1119
 
1120
+ #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:150
1121
+ msgid "Beta Update Available"
 
 
1122
  msgstr ""
1123
 
1124
+ #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:151
1125
+ msgid "Update Available"
 
 
1126
  msgstr ""
1127
 
1128
+ #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:153
1129
+ #, php-format
1130
  msgid ""
1131
+ "%1$s %2$s is now available. You currently have %3$s installed. <a href=\"%4$s"
1132
+ "\">%5$s</a>"
 
1133
  msgstr ""
1134
 
1135
+ #: src/wp-migrate-db-pro/class/Pro/Addon/Addon.php:153
1136
+ msgid "Update Now"
 
 
1137
  msgstr ""
1138
 
1139
+ #: src/wp-migrate-db-pro/class/Pro/Addon/AddonAbstract.php:117
1140
+ #, php-format
1141
  msgid ""
1142
+ "The version of %1$s you have installed requires version %2$s of WP Migrate. "
1143
+ "You currently have %3$s installed. <strong><a href=\"%4$s\">Update Now</a></"
1144
+ "strong>"
1145
  msgstr ""
1146
 
1147
+ #: src/wp-migrate-db-pro/class/Pro/Addon/AddonsFacade.php:114
1148
+ msgid ""
1149
+ "Legacy addons cannot be activated alongside WP Migrate version 2.3.0 or "
1150
+ "above. These features have been moved to WP Migrate."
1151
  msgstr ""
1152
 
1153
+ #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:81
1154
+ msgid "Backup not found."
 
 
1155
  msgstr ""
1156
 
1157
+ #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:95
1158
+ msgid "Could not find backup file to download:"
1159
  msgstr ""
1160
 
1161
+ #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:123
1162
+ #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:147
1163
  #, php-format
1164
+ msgid "File does not exist — %s"
 
 
 
 
 
1165
  msgstr ""
1166
 
1167
+ #: src/wp-migrate-db-pro/class/Pro/Backups/BackupsManager.php:154
1168
+ #, php-format
1169
+ msgid "Unable to delete file %s"
 
1170
  msgstr ""
1171
 
1172
+ #: src/wp-migrate-db-pro/class/Pro/Beta/BetaManager.php:116
1173
+ msgid "Would you like to rollback WP Migrate to the latest stable release now?"
1174
  msgstr ""
1175
 
1176
+ #: src/wp-migrate-db-pro/class/Pro/MF/MediaFilesAddon.php:102
1177
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:186
1178
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:184
1179
+ msgid "Downloading files"
1180
  msgstr ""
1181
 
1182
+ #: src/wp-migrate-db-pro/class/Pro/MF/MediaFilesAddon.php:103
1183
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:185
1184
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:183
1185
+ msgid "Uploading files"
 
 
 
 
1186
  msgstr ""
1187
 
1188
+ #: src/wp-migrate-db-pro/class/Pro/MF/MediaFilesLocal.php:190
1189
+ msgid "Invalid folder path supplied."
 
 
1190
  msgstr ""
1191
 
1192
+ #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:424
1193
  msgid ""
1194
+ "Please only enter letters, numbers or underscores for the new table prefix."
 
1195
  msgstr ""
1196
 
1197
+ #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:892
1198
+ msgid "Expected local subsite \"short_basedir\" missing from `state_data`."
1199
  msgstr ""
1200
 
1201
+ #: src/wp-migrate-db-pro/class/Pro/MST/MultisiteToolsAddon.php:898
1202
+ msgid "Expected remote subsite \"short_basedir\" missing from `state_data`."
1203
  msgstr ""
1204
 
1205
+ #: src/wp-migrate-db-pro/class/Pro/Queue/Cron.php:86
1206
+ #, php-format
1207
+ msgid "Every %d Minutes"
 
 
 
 
 
 
 
1208
  msgstr ""
1209
 
1210
+ #: src/wp-migrate-db-pro/class/Pro/Queue/QueueHelper.php:61
1211
+ msgid "File list empty or incomplete. Please contact support."
1212
  msgstr ""
1213
 
1214
+ #: src/wp-migrate-db-pro/class/Pro/Queue/QueueHelper.php:182
1215
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesLocal.php:178
1216
+ msgid "Error: empty folder list supplied."
1217
  msgstr ""
1218
 
1219
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:229
1220
  #, php-format
1221
+ msgid "There is a new version of %s available."
1222
  msgstr ""
1223
 
1224
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:231
1225
+ #, php-format
1226
+ msgid "View version %s details"
1227
  msgstr ""
1228
 
1229
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:241
1230
+ #, php-format
1231
  msgid ""
1232
+ "To update, go to %1$s and enter your license key. If you don't have a "
1233
+ "license key, you may <a href=\"%2$s\">purchase one</a>."
1234
  msgstr ""
1235
 
1236
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:243
1237
  #, php-format
1238
+ msgid ""
1239
+ "To finish activating %1$s, please go to %2$s and enter your license key. If "
1240
+ "you don't have a license key, you may <a href=\"%3$s\">purchase one</a>."
1241
  msgstr ""
1242
 
1243
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:246
1244
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:584
1245
+ msgid "Check my license again"
1246
  msgstr ""
1247
 
1248
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:310
1249
  #, php-format
1250
  msgid ""
1251
+ "<strong>Addon No Longer Required</strong> - As of WP Migrate version 2.3.0, "
1252
+ "this addon is <a href=\"%s\" target=\"_blank\">no longer required</a> and "
1253
+ "can be safely deleted."
1254
  msgstr ""
1255
 
1256
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:344
1257
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:355
1258
+ msgid "Could not retrieve version details. Please try again."
1259
  msgstr ""
1260
 
1261
+ #: src/wp-migrate-db-pro/class/Pro/Plugin/ProPluginManager.php:584
1262
+ msgid "A problem occurred when trying to check the license, please try again."
 
1263
  msgstr ""
1264
 
1265
+ #: src/wp-migrate-db-pro/class/Pro/RemoteUpdates/RemoteUpdatesManager.php:114
1266
+ msgid "Please activate your license before updating."
 
1267
  msgstr ""
1268
 
1269
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:173
1270
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:171
1271
+ msgid "Themes"
1272
+ msgstr ""
1273
+
1274
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:174
1275
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:172
1276
+ msgid "Plugins"
1277
+ msgstr ""
1278
+
1279
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:175
1280
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:173
1281
+ msgid "Themes & Plugins"
1282
+ msgstr ""
1283
+
1284
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:176
1285
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:174
1286
+ msgid "(active)"
1287
+ msgstr ""
1288
+
1289
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:177
1290
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:175
1291
+ msgid "Please select themes for migration."
1292
  msgstr ""
1293
 
1294
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:178
1295
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:176
1296
+ msgid "Please select plugins for migration."
1297
  msgstr ""
1298
 
1299
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:179
1300
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:177
1301
+ msgid "remote"
1302
  msgstr ""
1303
 
1304
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:180
1305
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:178
1306
+ msgid "local"
1307
  msgstr ""
1308
 
1309
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:181
1310
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:179
1311
+ msgid "Failed to transfer file."
 
 
 
 
 
1312
  msgstr ""
1313
 
1314
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:182
1315
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:180
1316
+ msgid "Themes & Plugins Transfer Error"
 
 
 
1317
  msgstr ""
1318
 
1319
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:183
1320
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:181
1321
+ msgid "Loading transfer queue"
1322
  msgstr ""
1323
 
1324
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:184
1325
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesAddon.php:182
1326
+ msgid "Transferring: "
1327
  msgstr ""
1328
 
1329
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:142
1330
  #, php-format
1331
+ msgid "Unable to determine folder name for theme %s"
1332
  msgstr ""
1333
 
1334
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:212
1335
  #, php-format
1336
+ msgid "Temporary file not found when finalizing %s Files migration: %s "
1337
  msgstr ""
1338
 
1339
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:220
1340
  #, php-format
1341
+ msgid ""
1342
+ "Unable to overwrite destination file when finalizing Theme & Plugin Files "
1343
+ "migration: %s"
1344
  msgstr ""
1345
 
1346
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:236
1347
  #, php-format
1348
  msgid ""
1349
+ "Unable to move file into place when finalizing Theme & Plugin Files "
1350
+ "migration. Source: %s | Destination: %s"
 
1351
  msgstr ""
1352
 
1353
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesFinalize.php:323
1354
+ #, php-format
1355
+ msgid "Unable to verify file migration, %s does not exist."
1356
  msgstr ""
1357
 
1358
+ #: src/wp-migrate-db-pro/class/Pro/TPF/ThemePluginFilesLocal.php:194
1359
+ msgid "Invalid folder list supplied (invalid array)"
 
1360
  msgstr ""
1361
 
1362
+ #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:59
1363
+ msgid "A problem occurred starting the Themes & Plugins migration."
 
1364
  msgstr ""
1365
 
1366
+ #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:74
1367
+ msgid ""
1368
+ "Unfortunately it looks like we can't migrate your themes or plugins. "
1369
+ "However, running a migration without themes and plugins should work. Please "
1370
+ "uncheck the Themes checkbox, uncheck the Plugins checkbox, and try your "
1371
+ "migration again."
1372
  msgstr ""
1373
 
1374
+ #: src/wp-migrate-db-pro/class/Pro/TPF/TransferCheck.php:76
1375
+ msgid "More Details »"
 
 
1376
  msgstr ""
1377
 
1378
+ #: src/wp-migrate-db-pro/class/Pro/UI/Template.php:78
1379
+ msgctxt "Get backups"
1380
+ msgid "Backups"
 
1381
  msgstr ""
1382
 
1383
+ #: src/wp-migrate-db-pro/class/Pro/UI/Template.php:129
1384
+ #, php-format
1385
  msgid ""
1386
+ "The version of the %1$s addon you have installed%2$s is out-of-date and will "
1387
+ "not work with this beta version WP Migrate. There may be a <a href=\"%3$s"
1388
+ "\">beta update available</a>, otherwise please <a href=\"%4$s\">deactivate "
1389
+ "this addon</a>."
1390
  msgstr ""
1391
 
1392
+ #: src/wp-migrate-db-pro/class/Pro/UI/Template.php:132
1393
  #, php-format
1394
  msgid ""
1395
+ "The version of the %1$s addon you have installed%2$s is out-of-date and will "
1396
+ "not work with this version WP Migrate. <a href=\"%3$s\">Update Now</a>"
1397
  msgstr ""
1398
 
1399
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:104
1400
  #, php-format
1401
+ msgid "Remote server responded with %s and body of %s"
1402
  msgstr ""
1403
 
1404
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:151
1405
  #, php-format
1406
+ msgid "File transfer error - Unable to create a temporary folder. (%s)"
1407
  msgstr ""
1408
 
1409
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:165
1410
+ #, php-format
1411
+ msgid "File transfer error - Unable to create a PHP file on the server. (%s)"
1412
  msgstr ""
1413
 
1414
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:175
1415
+ #, php-format
1416
  msgid ""
1417
+ "File transfer error - Unable to update file contents using using PHP's "
1418
+ "file_put_contents() function. (%s)"
1419
  msgstr ""
1420
 
1421
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:185
1422
+ #, php-format
1423
  msgid ""
1424
+ "File transfer error - Unable to move file to the correct location using "
1425
+ "PHP's rename() function. (%s)"
1426
  msgstr ""
1427
 
1428
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:196
1429
+ #, php-format
1430
+ msgid ""
1431
+ "File transfer error - Unable to delete file using PHP's unlink() function. "
1432
+ "(%s)"
1433
  msgstr ""
1434
 
1435
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:248
1436
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Receiver.php:244
1437
+ msgid "Unable to process payload."
1438
+ msgstr ""
1439
+
1440
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:56
1441
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:81
1442
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:77
1443
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:84
1444
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:87
1445
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:75
1446
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:85
1447
+ msgid "$_POST['batch'] is empty."
1448
+ msgstr ""
1449
+
1450
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:63
1451
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:88
1452
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:84
1453
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:91
1454
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:94
1455
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:82
1456
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Sender.php:92
1457
+ msgid "Request for batch of files failed."
1458
  msgstr ""
1459
 
1460
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:227
1523
  msgstr ""
1524
 
1525
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:828
 
 
 
1526
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:209
1527
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:218
1528
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:247
1543
  "make use of the subsite option"
1544
  msgstr ""
1545
 
 
1546
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:895
1547
  msgid ""
1548
  "The profile is set to migrate theme or plugin files, however migrating theme "
1549
  "and plugin files is not supported with the current license."
1550
  msgstr ""
1551
 
 
1552
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:918
1553
  msgctxt "The caches and rewrite rules for the target are being flushed"
1554
  msgid "Flushing caches and rewrite rules..."
1555
  msgstr ""
1556
 
 
1557
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:975
1558
  msgid "Migrating tables"
1559
  msgstr ""
1560
 
 
1561
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Cli.php:1051
1562
  msgid "Importing file"
1563
  msgstr ""
1564
 
 
1565
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:173
1566
  msgid "You must provide an import file."
1567
  msgstr ""
1568
 
 
 
1569
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:599
1570
  msgid "There are no saved profiles for this site."
1571
  msgstr ""
1572
 
 
 
1573
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:615
1574
  msgctxt "Export data to remote database"
1575
  msgid "push"
1576
  msgstr ""
1577
 
 
 
1578
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:616
1579
  msgctxt "Import data from remote database"
1580
  msgid "pull"
1581
  msgstr ""
1582
 
 
 
1583
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:617
1584
  msgctxt "Export file from local database"
1585
  msgid "export"
1586
  msgstr ""
1587
 
 
 
1588
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:618
1589
  msgctxt "Run a find & replace on local database"
1590
  msgid "find & replace"
1591
  msgstr ""
1592
 
 
 
1593
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:619
1594
  msgctxt "Import data from SQL file"
1595
  msgid "import"
1596
  msgstr ""
1597
 
 
 
1598
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:620
1599
  msgctxt "Backup the local database"
1600
  msgid "backup"
1601
  msgstr ""
1602
 
 
 
1603
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:638
1604
  msgctxt "Profile list column heading"
1605
  msgid "ID"
1606
  msgstr ""
1607
 
 
 
1608
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:639
1609
  msgctxt "Profile list column heading"
1610
  msgid "NAME"
1611
  msgstr ""
1612
 
 
 
1613
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:640
1614
  msgctxt "Profile list column heading"
1615
  msgid "ACTION"
1616
  msgstr ""
1617
 
 
 
1618
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:641
1619
  msgctxt "Profile list column heading"
1620
  msgid "REMOTE"
1621
  msgstr ""
1622
 
 
 
1623
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Command.php:693
1624
  msgid "Migration successful."
1625
  msgstr ""
1665
  msgid "No setting `%s` currently saved in the database."
1666
  msgstr ""
1667
 
 
1668
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:195
1669
  msgid "License updated."
1670
  msgstr ""
1671
 
 
1672
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:231
1673
  msgid "License requires specifying a user via --user=<id|login|email>"
1674
  msgstr ""
1675
 
 
1676
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:234
1677
  msgid "User must be an Admin"
1678
  msgstr ""
1679
 
 
1680
  #: src/wp-migrate-db-pro/class/Pro/Cli/Extra/Setting.php:280
1681
  msgid "Checking license key..."
1682
  msgstr ""
1683
 
1684
+ #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:148
1685
+ msgid "--media must be set to an acceptable value, see: wp help migratedb "
1686
+ msgstr ""
1687
+
1688
+ #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:159
1689
+ msgid ""
1690
+ "--media-date required when using --media=since-date, see: wp help migratedb "
1691
+ msgstr ""
1692
+
1693
+ #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:173
1694
+ msgid ""
1695
+ "--media-date parameter received an invalid date format, see wp help "
1696
+ "migratedb "
1697
+ msgstr ""
1698
+
1699
+ #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:239
1700
+ msgid "Initiating media migration..."
1701
+ msgstr ""
1702
+
1703
+ #: src/wp-migrate-db-pro/class/Pro/MF/CliCommand/MediaFilesCli.php:310
1704
+ msgid ""
1705
+ "WP Migrate Media Files does not seem to be installed/active on the remote "
1706
+ "website."
1707
+ msgstr ""
1708
+
1709
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:206
1710
  msgid ""
1711
  "The installation must be a Multisite network to make use of the export "
1712
  "subsite option"
1713
  msgstr ""
1714
 
 
1715
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:213
1716
  msgid ""
1717
  "For subsite to subsite migrations subsite-source and subsite-destination are "
1718
  "both required"
1719
  msgstr ""
1720
 
 
1721
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:230
1722
  msgid ""
1723
  "subsite-source must also be used to make use of the subsite to subsite option"
1724
  msgstr ""
1725
 
 
1726
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:234
1727
  msgid ""
1728
  "subsite-destination must also be used to make use of the subsite to subsite "
1729
  "option"
1730
  msgstr ""
1731
 
 
1732
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:238
1733
  msgid ""
1734
  "A valid Blog ID or Subsite URL must be supplied for both networks to make "
1735
  "use of the subsite to subsite option"
1736
  msgstr ""
1737
 
 
1738
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:242
1739
  msgid ""
1740
  "Both source and destination must be networks to make use of the subsite to "
1741
  "subsite option"
1742
  msgstr ""
1743
 
 
1744
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:260
1745
  msgid "A new table name prefix may only be specified for subsite exports."
1746
  msgstr ""
1747
 
 
1748
  #: src/wp-migrate-db-pro/class/Pro/MST/CliCommand/MultisiteToolsAddonCli.php:263
1749
  msgid "A valid prefix must be supplied to make use of the prefix option"
1750
  msgstr ""
1755
  msgstr ""
1756
 
1757
  #: src/wp-migrate-db-pro/class/Pro/Migration/Connection/Local.php:149
1758
+ #: src/wp-migrate-db-pro/class/Pro/Migration/Connection/Local.php:151
1759
  msgid ""
1760
  "Failed attempting to unserialize the response from the remote server. Please "
1761
  "contact support."
1805
  "(#122)"
1806
  msgstr ""
1807
 
 
1808
  #: src/wp-migrate-db-pro/class/Pro/Migration/Connection/Remote.php:384
1809
  msgid ""
1810
  "The connection succeeded but the remote site is configured to reject pull "
1812
  "(#110)"
1813
  msgstr ""
1814
 
 
1815
  #: src/wp-migrate-db-pro/class/Pro/Migration/Connection/Remote.php:386
1816
  msgid ""
1817
  "The connection succeeded but the remote site is configured to reject push "
1841
  "(#139)"
1842
  msgstr ""
1843
 
 
1844
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:347
1845
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:353
1846
  #, php-format
1847
  msgid "Theme not found on source server: %s"
1848
  msgstr ""
1849
 
 
1850
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:426
1851
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:438
1852
  #, php-format
1853
  msgid "Plugin not found on source server: %s"
1854
  msgstr ""
1855
 
1856
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:485
1857
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:497
1858
+ #, php-format
1859
+ msgid "Must-Use Plugin not found on source server: %s"
1860
+ msgstr ""
1861
+
1862
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:545
1863
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:557
1864
+ #, php-format
1865
+ msgid "Other file not found on source server: %s"
1866
+ msgstr ""
1867
+
1868
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:628
1869
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:640
1870
  msgid "Initiating themes migration..."
1871
  msgstr ""
1872
 
1873
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:636
1874
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:638
1875
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:650
1876
+ msgid "Initiating other files migration..."
1877
+ msgstr ""
1878
+
1879
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:646
1880
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:648
1881
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:660
1882
+ msgid "Initiating must-use files migration..."
1883
+ msgstr ""
1884
+
1885
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:656
1886
  #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:658
1887
+ #: src/wp-migrate-db-pro/class/Pro/TPF/Cli/ThemePluginFilesCli.php:670
1888
  msgid "Initiating plugins migration..."
1889
  msgstr ""
1890
 
1898
  msgid "File does not exist - %s"
1899
  msgstr ""
1900
 
 
1901
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:322
1902
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:336
1903
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:344
1904
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:347
1905
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:348
1906
  #, php-format
1907
  msgid ""
1908
  "File size of source and destination do not match: <br>%s<br>Destination "
1909
  "size: %s, Local size: %s"
1910
  msgstr ""
1911
 
 
1912
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:329
1913
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:343
1914
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:351
1915
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:354
1916
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:355
1917
  #, php-format
1918
  msgid ""
1919
  "File MD5's do not match for file: %s \n"
1920
  "Local MD5: %s Remote MD5: %s"
1921
  msgstr ""
1922
 
 
1923
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:349
1924
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:363
1925
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:371
1926
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:374
1927
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:375
1928
  #, php-format
1929
  msgid "Could not write line to file. File name: %s"
1930
  msgstr ""
1931
 
 
 
1932
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:391
1933
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:405
1934
  msgid "Failed to unpack payload."
1935
  msgstr ""
1936
 
 
 
1937
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:397
1938
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:411
1939
  msgid "Failed to create stream from payload."
1940
  msgstr ""
1941
 
 
 
1942
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:418
1943
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:432
1944
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:412
1945
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:420
1946
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:423
1947
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:424
1948
  #, php-format
1949
  msgid "Could not create directory: %s"
1950
  msgstr ""
1951
 
 
 
1952
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:435
1953
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:449
1954
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:429
1955
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:437
1956
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:440
1957
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:441
1958
  #, php-format
1959
  msgid ""
1960
  "The `%s` file is not writable, please check the file permissions of the "
1961
  "parent folder and ensure the web server can read from and write to this file."
1962
  msgstr ""
1963
 
 
 
1964
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:480
1965
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:494
1966
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:474
1967
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:482
1968
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:485
1969
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:486
1970
  #, php-format
1971
  msgid "Unable to rename part file %s"
1972
  msgstr ""
1975
  msgid "Could not validate $_POST data."
1976
  msgstr ""
1977
 
 
1978
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php:250
1979
  msgid "Saving queue status to remote failed."
1980
  msgstr ""
1981
 
 
1982
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php:349
1983
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php:351
1984
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php:355
1985
  msgid "Failed to respond to payload post."
1986
  msgstr ""
1987
 
 
 
 
1988
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:136
1989
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:137
 
1990
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/TransferManager.php:144
1991
  #, php-format
1992
  msgid "Payload transfer failed with code %s: %s"
1993
  msgstr ""
1994
 
 
 
 
 
1995
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:277
1996
  #, php-format
1997
  msgid "The following files failed to transfer: <br> %s"
1998
  msgstr ""
1999
 
 
 
 
 
2000
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:317
2001
  #, php-format
2002
  msgid "Unable to create folder for file transfers: %s"
2003
  msgstr ""
2004
 
 
 
 
 
2005
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:324
2006
  #, php-format
2007
  msgid ""
2009
  "to this file/folder: `%s`"
2010
  msgstr ""
2011
 
 
 
 
 
2012
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:613
2013
  msgid "Failed to load manifest file."
2014
  msgstr ""
2015
 
 
 
 
 
2016
  #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Util.php:619
2017
  msgid "Failed to parse manifest file."
2018
  msgstr ""
2019
 
2020
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:259
 
 
 
 
 
 
 
 
2021
  #, php-format
2022
+ msgid "Could not copy stream data to file. File name: %s"
 
 
 
 
 
 
 
 
 
 
 
 
2023
  msgstr ""
2024
 
2025
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/PluginHelper.php:334
2026
+ msgid "Failed to respond to payload post, empty state data."
 
2027
  msgstr ""
2028
 
2029
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:266
2030
+ #: src/wp-migrate-db-pro/class/Pro/Transfers/Files/Payload.php:267
2031
  #, php-format
2032
+ msgid "Could not determine payload filesize. File name: %s"
 
 
 
 
 
 
 
 
 
 
2033
  msgstr ""
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Export WordPress, Migrate WordPress, WordPress database plugin, WordPress
5
  Requires at least: 5.2
6
  Tested up to: 6.0.2
7
  Requires PHP: 5.6
8
- Stable tag: 2.4.0
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -185,6 +185,9 @@ Find out all relevant [pricing information over on our official site](https://de
185
  3. Saving the exported database
186
 
187
  == Changelog ==
 
 
 
188
  = WP Migrate 2.4.0 - 2022-09-22 =
189
  * Improvement: Temporary tables and directories are now cleaned up after migration failure
190
  * Improvement: Re-rendering of the user interface is now optimized
5
  Requires at least: 5.2
6
  Tested up to: 6.0.2
7
  Requires PHP: 5.6
8
+ Stable tag: 2.4.1
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
185
  3. Saving the exported database
186
 
187
  == Changelog ==
188
+ = WP Migrate 2.4.1 - 2022-10-12 =
189
+ * Bug Fix: Find and replace via CLI is now more compatible with PHP 8 and above
190
+
191
  = WP Migrate 2.4.0 - 2022-09-22 =
192
  * Improvement: Temporary tables and directories are now cleaned up after migration failure
193
  * Improvement: Re-rendering of the user interface is now optimized
vendor/autoload.php CHANGED
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
- return ComposerAutoloaderInit9b574bf55ac4d39e4d6abf103df21eba::getLoader();
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
+ return ComposerAutoloaderInit1aa7014d9d85f6779fbd380cfa008f5f::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit9b574bf55ac4d39e4d6abf103df21eba
6
  {
7
  private static $loader;
8
 
@@ -22,18 +22,18 @@ class ComposerAutoloaderInit9b574bf55ac4d39e4d6abf103df21eba
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInit9b574bf55ac4d39e4d6abf103df21eba', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
27
- spl_autoload_unregister(array('ComposerAutoloaderInit9b574bf55ac4d39e4d6abf103df21eba', 'loadClassLoader'));
28
 
29
  require __DIR__ . '/autoload_static.php';
30
- call_user_func(\Composer\Autoload\ComposerStaticInit9b574bf55ac4d39e4d6abf103df21eba::getInitializer($loader));
31
 
32
  $loader->register(true);
33
 
34
- $includeFiles = \Composer\Autoload\ComposerStaticInit9b574bf55ac4d39e4d6abf103df21eba::$files;
35
  foreach ($includeFiles as $fileIdentifier => $file) {
36
- composerRequire9b574bf55ac4d39e4d6abf103df21eba($fileIdentifier, $file);
37
  }
38
 
39
  return $loader;
@@ -45,7 +45,7 @@ class ComposerAutoloaderInit9b574bf55ac4d39e4d6abf103df21eba
45
  * @param string $file
46
  * @return void
47
  */
48
- function composerRequire9b574bf55ac4d39e4d6abf103df21eba($fileIdentifier, $file)
49
  {
50
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
51
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit1aa7014d9d85f6779fbd380cfa008f5f
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInit1aa7014d9d85f6779fbd380cfa008f5f', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
27
+ spl_autoload_unregister(array('ComposerAutoloaderInit1aa7014d9d85f6779fbd380cfa008f5f', 'loadClassLoader'));
28
 
29
  require __DIR__ . '/autoload_static.php';
30
+ call_user_func(\Composer\Autoload\ComposerStaticInit1aa7014d9d85f6779fbd380cfa008f5f::getInitializer($loader));
31
 
32
  $loader->register(true);
33
 
34
+ $includeFiles = \Composer\Autoload\ComposerStaticInit1aa7014d9d85f6779fbd380cfa008f5f::$files;
35
  foreach ($includeFiles as $fileIdentifier => $file) {
36
+ composerRequire1aa7014d9d85f6779fbd380cfa008f5f($fileIdentifier, $file);
37
  }
38
 
39
  return $loader;
45
  * @param string $file
46
  * @return void
47
  */
48
+ function composerRequire1aa7014d9d85f6779fbd380cfa008f5f($fileIdentifier, $file)
49
  {
50
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
51
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit9b574bf55ac4d39e4d6abf103df21eba
8
  {
9
  public static $files = array (
10
  'dbi_mdb_320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
@@ -72,9 +72,9 @@ class ComposerStaticInit9b574bf55ac4d39e4d6abf103df21eba
72
  public static function getInitializer(ClassLoader $loader)
73
  {
74
  return \Closure::bind(function () use ($loader) {
75
- $loader->prefixLengthsPsr4 = ComposerStaticInit9b574bf55ac4d39e4d6abf103df21eba::$prefixLengthsPsr4;
76
- $loader->prefixDirsPsr4 = ComposerStaticInit9b574bf55ac4d39e4d6abf103df21eba::$prefixDirsPsr4;
77
- $loader->classMap = ComposerStaticInit9b574bf55ac4d39e4d6abf103df21eba::$classMap;
78
 
79
  }, null, ClassLoader::class);
80
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit1aa7014d9d85f6779fbd380cfa008f5f
8
  {
9
  public static $files = array (
10
  'dbi_mdb_320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
72
  public static function getInitializer(ClassLoader $loader)
73
  {
74
  return \Closure::bind(function () use ($loader) {
75
+ $loader->prefixLengthsPsr4 = ComposerStaticInit1aa7014d9d85f6779fbd380cfa008f5f::$prefixLengthsPsr4;
76
+ $loader->prefixDirsPsr4 = ComposerStaticInit1aa7014d9d85f6779fbd380cfa008f5f::$prefixDirsPsr4;
77
+ $loader->classMap = ComposerStaticInit1aa7014d9d85f6779fbd380cfa008f5f::$classMap;
78
 
79
  }, null, ClassLoader::class);
80
  }
vendor/composer/installed.php CHANGED
@@ -2,4 +2,4 @@
2
 
3
  namespace DeliciousBrains\WPMDB\Container;
4
 
5
- return array('root' => array('name' => 'deliciousbrains/composer-tmp', 'pretty_version' => 'dev-develop', 'version' => 'dev-develop', 'reference' => '582c44127903cfa090a9d930613736ca6ea47097', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('container-interop/container-interop' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'reference' => '79cbf1341c22ec75643d841642dd5d6acd83bdb8', 'type' => 'library', 'install_path' => __DIR__ . '/../container-interop/container-interop', 'aliases' => array(), 'dev_requirement' => \false), 'container-interop/container-interop-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'deliciousbrains/composer-tmp' => array('pretty_version' => 'dev-develop', 'version' => 'dev-develop', 'reference' => '582c44127903cfa090a9d930613736ca6ea47097', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/cache' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'reference' => '2346085d2b027b233ae1d5de59b07440b9f288c8', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/cache', 'aliases' => array(), 'dev_requirement' => \false), 'mnapoli/php-di' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'php-di/invoker' => array('pretty_version' => '1.3.3', 'version' => '1.3.3.0', 'reference' => '1f4ca63b9abc66109e53b255e465d0ddb5c2e3f7', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '5.4.0', 'version' => '5.4.0.0', 'reference' => 'e348393488fa909e4bc0707ba5c9c44cd602a1cb', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.1.1', 'version' => '2.1.1.0', 'reference' => '15678f7451c020226807f520efb867ad26fbbfcf', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'dev_requirement' => \false), 'phpoption/phpoption' => array('pretty_version' => '1.7.5', 'version' => '1.7.5.0', 'reference' => '994ecccd8f3283ecf5ac33254543eb0ac946d525', 'type' => 'library', 'install_path' => __DIR__ . '/../phpoption/phpoption', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.19.0', 'version' => '1.19.0.0', 'reference' => 'aed596913b70fae57be53d86faa2e9ef85a2297b', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), 'dev_requirement' => \false), 'vlucas/phpdotenv' => array('pretty_version' => 'v4.2.0', 'version' => '4.2.0.0', 'reference' => 'da64796370fc4eb03cc277088f6fede9fde88482', 'type' => 'library', 'install_path' => __DIR__ . '/../vlucas/phpdotenv', 'aliases' => array(), 'dev_requirement' => \false)));
2
 
3
  namespace DeliciousBrains\WPMDB\Container;
4
 
5
+ return array('root' => array('name' => 'deliciousbrains/composer-tmp', 'pretty_version' => 'dev-develop', 'version' => 'dev-develop', 'reference' => '708d3c722ecc41548c5817ad884567ad12190327', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \true), 'versions' => array('container-interop/container-interop' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'reference' => '79cbf1341c22ec75643d841642dd5d6acd83bdb8', 'type' => 'library', 'install_path' => __DIR__ . '/../container-interop/container-interop', 'aliases' => array(), 'dev_requirement' => \false), 'container-interop/container-interop-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'deliciousbrains/composer-tmp' => array('pretty_version' => 'dev-develop', 'version' => 'dev-develop', 'reference' => '708d3c722ecc41548c5817ad884567ad12190327', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'doctrine/cache' => array('pretty_version' => 'v1.4.0', 'version' => '1.4.0.0', 'reference' => '2346085d2b027b233ae1d5de59b07440b9f288c8', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/cache', 'aliases' => array(), 'dev_requirement' => \false), 'mnapoli/php-di' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'php-di/invoker' => array('pretty_version' => '1.3.3', 'version' => '1.3.3.0', 'reference' => '1f4ca63b9abc66109e53b255e465d0ddb5c2e3f7', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '5.4.0', 'version' => '5.4.0.0', 'reference' => 'e348393488fa909e4bc0707ba5c9c44cd602a1cb', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.1.1', 'version' => '2.1.1.0', 'reference' => '15678f7451c020226807f520efb867ad26fbbfcf', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'dev_requirement' => \false), 'phpoption/phpoption' => array('pretty_version' => '1.7.5', 'version' => '1.7.5.0', 'reference' => '994ecccd8f3283ecf5ac33254543eb0ac946d525', 'type' => 'library', 'install_path' => __DIR__ . '/../phpoption/phpoption', 'aliases' => array(), 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.19.0', 'version' => '1.19.0.0', 'reference' => 'aed596913b70fae57be53d86faa2e9ef85a2297b', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), 'dev_requirement' => \false), 'vlucas/phpdotenv' => array('pretty_version' => 'v4.2.0', 'version' => '4.2.0.0', 'reference' => 'da64796370fc4eb03cc277088f6fede9fde88482', 'type' => 'library', 'install_path' => __DIR__ . '/../vlucas/phpdotenv', 'aliases' => array(), 'dev_requirement' => \false)));
vendor/scoper-autoload.php CHANGED
@@ -6,9 +6,9 @@ $loader = require_once __DIR__.'/autoload.php';
6
 
7
  // Exposed functions. For more information see:
8
  // https://github.com/humbug/php-scoper/blob/master/docs/configuration.md#exposing-functions
9
- if (!function_exists('composerRequire9b574bf55ac4d39e4d6abf103df21eba')) {
10
- function composerRequire9b574bf55ac4d39e4d6abf103df21eba() {
11
- return \DeliciousBrains\WPMDB\Container\composerRequire9b574bf55ac4d39e4d6abf103df21eba(...func_get_args());
12
  }
13
  }
14
 
6
 
7
  // Exposed functions. For more information see:
8
  // https://github.com/humbug/php-scoper/blob/master/docs/configuration.md#exposing-functions
9
+ if (!function_exists('composerRequire1aa7014d9d85f6779fbd380cfa008f5f')) {
10
+ function composerRequire1aa7014d9d85f6779fbd380cfa008f5f() {
11
+ return \DeliciousBrains\WPMDB\Container\composerRequire1aa7014d9d85f6779fbd380cfa008f5f(...func_get_args());
12
  }
13
  }
14
 
version-lite.php CHANGED
@@ -1,2 +1,2 @@
1
  <?php
2
- $GLOBALS['wpmdb_meta']['wp-migrate-db']['version'] = '2.4.0';
1
  <?php
2
+ $GLOBALS['wpmdb_meta']['wp-migrate-db']['version'] = '2.4.1';
wp-migrate-db.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Migrate Lite
4
  Plugin URI: https://wordpress.org/plugins/wp-migrate-db/
5
  Description: Exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, then allows you to save it to your computer.
6
  Author: Delicious Brains
7
- Version: 2.4.0
8
  Author URI: https://deliciousbrains.com/?utm_campaign=WP%2BMigrate%2BDB%2BPro%2BUpgrade&utm_source=wordpress.org&utm_medium=free%2Bplugin%2Blisting
9
  Network: True
10
  Text Domain: wp-migrate-db
4
  Plugin URI: https://wordpress.org/plugins/wp-migrate-db/
5
  Description: Exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, then allows you to save it to your computer.
6
  Author: Delicious Brains
7
+ Version: 2.4.1
8
  Author URI: https://deliciousbrains.com/?utm_campaign=WP%2BMigrate%2BDB%2BPro%2BUpgrade&utm_source=wordpress.org&utm_medium=free%2Bplugin%2Blisting
9
  Network: True
10
  Text Domain: wp-migrate-db