UpdraftPlus WordPress Backup Plugin - Version 1.16.28

Version Description

  • 02/Sep/2020 =

  • FEATURE: Support backing up and restoring MySQL/MariaDB routines (stored procedures and functions)

  • FEATURE: Added the ability to search and replace the database via WP-CLI

  • FIX: Bit fields in a table don't necessarily get backed up correctly due to the difference in the output of mysql_query() and mysqli_query() for the bit-field type

  • FIX: Allow single multisite sub-sites to be restored when there is a http/https mismatch between the site and database backup

  • TWEAK: Update plugin updates checker dependency (in paid versions) to the 4.10 series, improving compatibility with WP 5.5+'s updates management

  • TWEAK: Suppress message about how to upgrade an already-installed plugin when on WP 5.5+ (where it is no longer relevant)

  • TWEAK: Internal refactoring to allow more flexibility when creating database backups

  • TWEAK: Force the turning off of ANSI_QUOTES in the active SQL mode when creating a backup, for better compatibility

  • TWEAK: Add the ability to configure the 'max_allowed_packet' option in the binary mysqldump command via the 'UPDRAFTPLUS_MYSQLDUMP_MAX_ALLOWED_PACKET' constant

  • TWEAK: The Google Drive options exist condition to prevent a false positive saved settings error

  • TWEAK: Improve the UpdraftPlus get_outgoing_ip_address method in finding user webserver's IPv6 address

  • TWEAK: Removed MetaSlider notice in the notices collection

Download this release

Release Info

Developer DavidAnderson
Plugin Icon 128x128 UpdraftPlus WordPress Backup Plugin
Version 1.16.28
Comparing to
See all releases

Code changes from version 1.16.26 to 1.16.28

Files changed (31) hide show
  1. admin.php +1 -0
  2. backup.php +134 -27
  3. central/modules/posts.php +2 -2
  4. class-updraftplus.php +49 -12
  5. css/{updraftplus-admin-1-16-26.min.css → updraftplus-admin-1-16-28.min.css} +1 -1
  6. css/{updraftplus-admin-1-16-26.min.css.map → updraftplus-admin-1-16-28.min.css.map} +1 -1
  7. css/{updraftplus-notices-1-16-26.min.css → updraftplus-notices-1-16-28.min.css} +1 -1
  8. css/{updraftplus-notices-1-16-26.min.css.map → updraftplus-notices-1-16-28.min.css.map} +1 -1
  9. css/{updraftplus-tour-1-16-26.min.css → updraftplus-tour-1-16-28.min.css} +1 -1
  10. css/{updraftplus-tour-1-16-26.min.css.map → updraftplus-tour-1-16-28.min.css.map} +1 -1
  11. includes/checkout-embed/assets/{udp-checkout-embed-1-16-26.min.css → udp-checkout-embed-1-16-28.min.css} +1 -1
  12. includes/checkout-embed/assets/{udp-checkout-embed-1-16-26.min.css.map → udp-checkout-embed-1-16-28.min.css.map} +1 -1
  13. includes/checkout-embed/assets/{udp-checkout-embed-1-16-26.min.js → udp-checkout-embed-1-16-28.min.js} +0 -0
  14. includes/class-database-utility.php +16 -10
  15. includes/{jquery-ui.custom-1-16-26.min.css → jquery-ui.custom-1-16-28.min.css} +1 -1
  16. includes/{jquery-ui.custom-1-16-26.min.css.map → jquery-ui.custom-1-16-28.min.css.map} +1 -1
  17. includes/{jquery.blockUI-1-16-26.min.js → jquery.blockUI-1-16-28.min.js} +0 -0
  18. includes/labelauty/{jquery-labelauty-1-16-26.min.css → jquery-labelauty-1-16-28.min.css} +1 -1
  19. includes/labelauty/{jquery-labelauty-1-16-26.min.css.map → jquery-labelauty-1-16-28.min.css.map} +1 -1
  20. includes/labelauty/{jquery-labelauty-1-16-26.min.js → jquery-labelauty-1-16-28.min.js} +0 -0
  21. includes/{updraft-admin-common-1-16-26.min.js → updraft-admin-common-1-16-28.min.js} +0 -0
  22. includes/updraftclone/temporary-clone-dash-notice.php +24 -1
  23. includes/updraftplus-notices.php +0 -40
  24. js/{tour-1-16-26.min.js → tour-1-16-28.min.js} +0 -0
  25. js/updraft-admin-restore-1-16-26.min.js +0 -1
  26. js/updraft-admin-restore-1-16-28.min.js +1 -0
  27. js/updraft-admin-restore.js +2 -0
  28. languages/updraftplus-bg_BG.mo +0 -0
  29. languages/updraftplus-bg_BG.po +1950 -1950
  30. languages/updraftplus-ja.mo +0 -0
  31. languages/updraftplus-ja.po +186 -187
admin.php CHANGED
@@ -984,6 +984,7 @@ class UpdraftPlus_Admin {
984
  'no_recent_activity' => __('no recent activity; will offer resumption after: %d seconds', 'updraftplus'),
985
  'restore_files_progress' => __('Restoring %s1 files out of %s2', 'updraftplus'),
986
  'restore_db_table_progress' => __('Restoring table: %s', 'updraftplus'),
 
987
  'finished' => __('Finished', 'updraftplus'),
988
  'begun' => __('Begun', 'updraftplus'),
989
  'maybe_downloading_entities' => __('Downloading backup files if needed', 'updraftplus'),
984
  'no_recent_activity' => __('no recent activity; will offer resumption after: %d seconds', 'updraftplus'),
985
  'restore_files_progress' => __('Restoring %s1 files out of %s2', 'updraftplus'),
986
  'restore_db_table_progress' => __('Restoring table: %s', 'updraftplus'),
987
+ 'restore_db_stored_routine_progress' => __('Restoring stored routine: %s', 'updraftplus'),
988
  'finished' => __('Finished', 'updraftplus'),
989
  'begun' => __('Begun', 'updraftplus'),
990
  'maybe_downloading_entities' => __('Downloading backup files if needed', 'updraftplus'),
backup.php CHANGED
@@ -1478,6 +1478,8 @@ class UpdraftPlus_Backup {
1478
  $this->table_prefix = $dbinfo['prefix'];
1479
  $this->table_prefix_raw = $dbinfo['prefix'];
1480
  }
 
 
1481
 
1482
  $this->dbinfo = $dbinfo;
1483
 
@@ -1597,23 +1599,7 @@ class UpdraftPlus_Backup {
1597
  continue;
1598
  }
1599
 
1600
- // Don't include the job data for any backups - so that when the database is restored, it doesn't continue an apparently incomplete backup
1601
- if ('wp' == $this->whichdb && (!empty($this->table_prefix) && strtolower($this->table_prefix.'sitemeta') == strtolower($table))) {
1602
- $where = 'meta_key NOT LIKE "updraft_jobdata_%"';
1603
- } elseif ('wp' == $this->whichdb && (!empty($this->table_prefix) && strtolower($this->table_prefix.'options') == strtolower($table))) {
1604
- // These might look similar, but the quotes are different
1605
- if ('win' == strtolower(substr(PHP_OS, 0, 3))) {
1606
- $updraft_jobdata = "'updraft_jobdata_%'";
1607
- $site_transient_update = "'_site_transient_update_%'";
1608
- } else {
1609
- $updraft_jobdata = '"updraft_jobdata_%"';
1610
- $site_transient_update = '"_site_transient_update_%"';
1611
- }
1612
-
1613
- $where = 'option_name NOT LIKE '.$updraft_jobdata.' AND option_name NOT LIKE '.$site_transient_update.'';
1614
- } else {
1615
- $where = '';
1616
- }
1617
 
1618
  $updraftplus->jobdata_set('dbcreating_substatus', array('t' => $table, 'i' => $total_tables, 'a' => $how_many_tables));
1619
 
@@ -1646,7 +1632,7 @@ class UpdraftPlus_Backup {
1646
  // New Jul 2014: This attempt to use bindump instead at a lower threshold is quite conservative - only if the last successful run was exactly two resumptions ago - may be useful to expand
1647
  $bindump_threshold = (!$updraftplus->something_useful_happened && !empty($updraftplus->current_resumption) && (2 == $updraftplus->current_resumption - $updraftplus->last_successful_resumption)) ? 1000 : 8000;
1648
 
1649
- $bindump = (isset($table_status->Rows) && ($table_status->Rows>$bindump_threshold || (defined('UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP') && UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP)) && is_string($binsqldump)) ? $this->backup_table_bindump($binsqldump, $table, $where) : false;
1650
 
1651
  if (true !== $bindump) {
1652
  while (is_integer($current_page)) {
@@ -1655,7 +1641,7 @@ class UpdraftPlus_Backup {
1655
  // This value is not used; it is only significant that it is an integer. The actual value stored in the file may be different, so be careful if you start using it.
1656
  $next_page = $current_page + 100;
1657
  } else {
1658
- $next_page = $this->backup_table($table, $where, $table_type, $current_page, 100);
1659
  if (is_integer($next_page)) {
1660
  $this->backup_db_close();
1661
  rename($db_temp_file, $this->updraft_dir.'/'.$table_file_prefix.'.tmp'.$current_page.'.gz');
@@ -1846,7 +1832,35 @@ class UpdraftPlus_Backup {
1846
 
1847
  }
1848
 
1849
- private function backup_table_bindump($potsql, $table_name, $where) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1850
 
1851
  $microtime = microtime(true);
1852
 
@@ -1859,6 +1873,19 @@ class UpdraftPlus_Backup {
1859
  $pfile = md5(time().rand()).'.tmp';
1860
  file_put_contents($this->updraft_dir.'/'.$pfile, "[mysqldump]\npassword=".$this->dbinfo['pass']."\n");
1861
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1862
  // Note: escapeshellarg() adds quotes around the string
1863
  if ($where) $where = "--where=".escapeshellarg($where);
1864
 
@@ -1868,7 +1895,10 @@ class UpdraftPlus_Backup {
1868
  $exec = "cd ".escapeshellarg($this->updraft_dir)."; ";
1869
  }
1870
 
1871
- $exec .= "$potsql --defaults-file=$pfile $where --max_allowed_packet=1M --quote-names --add-drop-table --skip-comments --skip-set-charset --allow-keywords --dump-date --extended-insert --user=".escapeshellarg($this->dbinfo['user'])." --host=".escapeshellarg($this->dbinfo['host'])." ".$this->dbinfo['name']." ".escapeshellarg($table_name);
 
 
 
1872
 
1873
  $ret = false;
1874
  $any_output = false;
@@ -1957,14 +1987,13 @@ class UpdraftPlus_Backup {
1957
  * Modified by Scott Merrill (http://www.skippy.net/)
1958
  *
1959
  * @param String $table - Full name of database table to backup
1960
- * @param String $where - If there is a where clause to use
1961
  * @param String $table_type - Table type - 'VIEW' is supported; otherwise it is treated as an ordinary table
1962
  * @param Integer $start_page - Specify the starting page (begins at 0). Page size is fixed at 1000 (though internally we might actually query in smaller batches).
1963
  * @param Integer $process_pages - A maximum number of pages to process before returning; -1 for no limit
1964
  *
1965
  * @return Integer|Boolean - true to indicate that it is finished; false to indicate a failure; an integer to indicate the next page the case that there are more to do
1966
  */
1967
- private function backup_table($table, $where = '', $table_type = 'BASE TABLE', $start_page = 0, $process_pages = -1) {
1968
 
1969
  global $updraftplus;
1970
 
@@ -1994,11 +2023,15 @@ class UpdraftPlus_Backup {
1994
  return true;
1995
  }
1996
  }
1997
-
 
1998
  if ('VIEW' != $table_type) {
 
1999
  $defs = array();
2000
  $integer_fields = array();
2001
  $binary_fields = array();
 
 
2002
  // $table_structure was from "DESCRIBE $table"
2003
  foreach ($table_structure as $struct) {
2004
  if ((0 === strpos($struct->Type, 'tinyint')) || (0 === strpos(strtolower($struct->Type), 'smallint'))
@@ -2007,15 +2040,35 @@ class UpdraftPlus_Backup {
2007
  $defs[strtolower($struct->Field)] = (null === $struct->Default ) ? 'NULL' : $struct->Default;
2008
  $integer_fields[strtolower($struct->Field)] = true;
2009
  }
2010
- if ((0 === strpos($struct->Type, 'binary')) || (0 === strpos(strtolower($struct->Type), 'varbinary')) || (0 === strpos(strtolower($struct->Type), 'tinyblob')) || (0 === strpos(strtolower($struct->Type), 'mediumblob')) || (0 === strpos(strtolower($struct->Type), 'blob')) || (0 === strpos(strtolower($struct->Type), 'longblob'))) {
2011
  $binary_fields[strtolower($struct->Field)] = true;
2012
  }
 
 
 
 
 
 
 
 
 
2013
  }
2014
 
2015
  $search = array("\x00", "\x0a", "\x0d", "\x1a");
2016
  $replace = array('\0', '\n', '\r', '\Z');
 
 
 
2017
 
2018
- if ($where) $where = "WHERE $where";
 
 
 
 
 
 
 
 
2019
 
2020
  // Experimentation here shows that on large tables (we tested with 180,000 rows) on MyISAM, 1000 makes the table dump out 3x faster than the previous value of 100. After that, the benefit diminishes (increasing to 4000 only saved another 12%)
2021
 
@@ -2039,7 +2092,16 @@ class UpdraftPlus_Backup {
2039
 
2040
  for ($i = 1; $i <= $inner_loop_runs; $i++) {
2041
 
2042
- $table_data = $this->wpdb_obj->get_results($this->wpdb_obj->prepare("SELECT * FROM ".UpdraftPlus_Manipulation_Functions::backquote($table)." $where LIMIT %d, %d", $row_start, $row_increment / $inner_loop_runs), ARRAY_A);
 
 
 
 
 
 
 
 
 
2043
  $entries = 'INSERT INTO '.UpdraftPlus_Manipulation_Functions::backquote($dump_as_table).' VALUES ';
2044
  // \x08\\x09, not required
2045
  if ($table_data) {
@@ -2061,6 +2123,15 @@ class UpdraftPlus_Backup {
2061
  } else {
2062
  $values[] = "0x" . bin2hex(str_repeat("0", floor(strspn($value, "0") / 4)).$value);
2063
  }
 
 
 
 
 
 
 
 
 
2064
  } else {
2065
  $values[] = (null === $value) ? 'NULL' : "'" . str_replace($search, $replace, str_replace('\'', '\\\'', str_replace('\\', '\\\\', $value))) . "'";
2066
  }
@@ -2097,6 +2168,42 @@ class UpdraftPlus_Backup {
2097
 
2098
  }
2099
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2100
  /**
2101
  * Encrypts the file if the option is set; returns the basename of the file (according to whether it was encrypted or nto)
2102
  *
1478
  $this->table_prefix = $dbinfo['prefix'];
1479
  $this->table_prefix_raw = $dbinfo['prefix'];
1480
  }
1481
+
1482
+ UpdraftPlus_Database_Utility::set_sql_mode(array(), array('ANSI_QUOTES'), $this->wpdb_obj);
1483
 
1484
  $this->dbinfo = $dbinfo;
1485
 
1599
  continue;
1600
  }
1601
 
1602
+ add_filter('updraftplus_backup_table_sql_where', array($this, 'backup_exclude_jobdata'), 3, 10);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1603
 
1604
  $updraftplus->jobdata_set('dbcreating_substatus', array('t' => $table, 'i' => $total_tables, 'a' => $how_many_tables));
1605
 
1632
  // New Jul 2014: This attempt to use bindump instead at a lower threshold is quite conservative - only if the last successful run was exactly two resumptions ago - may be useful to expand
1633
  $bindump_threshold = (!$updraftplus->something_useful_happened && !empty($updraftplus->current_resumption) && (2 == $updraftplus->current_resumption - $updraftplus->last_successful_resumption)) ? 1000 : 8000;
1634
 
1635
+ $bindump = (isset($table_status->Rows) && ($table_status->Rows>$bindump_threshold || (defined('UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP') && UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP)) && is_string($binsqldump)) ? $this->backup_table_bindump($binsqldump, $table) : false;
1636
 
1637
  if (true !== $bindump) {
1638
  while (is_integer($current_page)) {
1641
  // This value is not used; it is only significant that it is an integer. The actual value stored in the file may be different, so be careful if you start using it.
1642
  $next_page = $current_page + 100;
1643
  } else {
1644
+ $next_page = $this->backup_table($table, $table_type, $current_page, 100);
1645
  if (is_integer($next_page)) {
1646
  $this->backup_db_close();
1647
  rename($db_temp_file, $this->updraft_dir.'/'.$table_file_prefix.'.tmp'.$current_page.'.gz');
1832
 
1833
  }
1834
 
1835
+ /**
1836
+ * This function will return a SQL WHERE clause to exclude updraft jobdata
1837
+ *
1838
+ * @param array $where - an array of where clauses to add to
1839
+ * @param string $table - the table we want to add a where clause for
1840
+ *
1841
+ * @return array - returns an array of where clauses for the table
1842
+ */
1843
+ public function backup_exclude_jobdata($where, $table) {
1844
+ // Don't include the job data for any backups - so that when the database is restored, it doesn't continue an apparently incomplete backup
1845
+ if ('wp' == $this->whichdb && (!empty($this->table_prefix) && strtolower($this->table_prefix.'sitemeta') == strtolower($table))) {
1846
+ $where[] = 'meta_key NOT LIKE "updraft_jobdata_%"';
1847
+ } elseif ('wp' == $this->whichdb && (!empty($this->table_prefix) && strtolower($this->table_prefix.'options') == strtolower($table))) {
1848
+ // These might look similar, but the quotes are different
1849
+ if ('win' == strtolower(substr(PHP_OS, 0, 3))) {
1850
+ $updraft_jobdata = "'updraft_jobdata_%'";
1851
+ $site_transient_update = "'_site_transient_update_%'";
1852
+ } else {
1853
+ $updraft_jobdata = '"updraft_jobdata_%"';
1854
+ $site_transient_update = '"_site_transient_update_%"';
1855
+ }
1856
+
1857
+ $where[] = 'option_name NOT LIKE '.$updraft_jobdata.' AND option_name NOT LIKE '.$site_transient_update.'';
1858
+ }
1859
+
1860
+ return $where;
1861
+ }
1862
+
1863
+ private function backup_table_bindump($potsql, $table_name) {
1864
 
1865
  $microtime = microtime(true);
1866
 
1873
  $pfile = md5(time().rand()).'.tmp';
1874
  file_put_contents($this->updraft_dir.'/'.$pfile, "[mysqldump]\npassword=".$this->dbinfo['pass']."\n");
1875
 
1876
+ $where_array = apply_filters('updraftplus_backup_table_sql_where', array(), $table_name, $this);
1877
+ $where = '';
1878
+
1879
+ if (!empty($where_array) && is_array($where_array)) {
1880
+ $where = "WHERE ";
1881
+ $first_loop = true;
1882
+ foreach ($where_array as $condition) {
1883
+ if (!$first_loop) $where .= " AND ";
1884
+ $where .= $condition;
1885
+ $first_loop = false;
1886
+ }
1887
+ }
1888
+
1889
  // Note: escapeshellarg() adds quotes around the string
1890
  if ($where) $where = "--where=".escapeshellarg($where);
1891
 
1895
  $exec = "cd ".escapeshellarg($this->updraft_dir)."; ";
1896
  }
1897
 
1898
+ // Allow --max_allowed_packet to be configured via constant. Experience has shown some customers with complex CMS or pagebuilder setups can have extrememly large postmeta entries.
1899
+ $msqld_max_allowed_packet = (defined('UPDRAFTPLUS_MYSQLDUMP_MAX_ALLOWED_PACKET') && (is_int(UPDRAFTPLUS_MYSQLDUMP_MAX_ALLOWED_PACKET) || is_string(UPDRAFTPLUS_MYSQLDUMP_MAX_ALLOWED_PACKET))) ? UPDRAFTPLUS_MYSQLDUMP_MAX_ALLOWED_PACKET : '1M';
1900
+
1901
+ $exec .= "$potsql --defaults-file=$pfile $where --max_allowed_packet=$msqld_max_allowed_packet --quote-names --add-drop-table --skip-comments --skip-set-charset --allow-keywords --dump-date --extended-insert --user=".escapeshellarg($this->dbinfo['user'])." --host=".escapeshellarg($this->dbinfo['host'])." ".$this->dbinfo['name']." ".escapeshellarg($table_name);
1902
 
1903
  $ret = false;
1904
  $any_output = false;
1987
  * Modified by Scott Merrill (http://www.skippy.net/)
1988
  *
1989
  * @param String $table - Full name of database table to backup
 
1990
  * @param String $table_type - Table type - 'VIEW' is supported; otherwise it is treated as an ordinary table
1991
  * @param Integer $start_page - Specify the starting page (begins at 0). Page size is fixed at 1000 (though internally we might actually query in smaller batches).
1992
  * @param Integer $process_pages - A maximum number of pages to process before returning; -1 for no limit
1993
  *
1994
  * @return Integer|Boolean - true to indicate that it is finished; false to indicate a failure; an integer to indicate the next page the case that there are more to do
1995
  */
1996
+ private function backup_table($table, $table_type = 'BASE TABLE', $start_page = 0, $process_pages = -1) {
1997
 
1998
  global $updraftplus;
1999
 
2023
  return true;
2024
  }
2025
  }
2026
+
2027
+ $table_data = array();
2028
  if ('VIEW' != $table_type) {
2029
+ $fields = array();
2030
  $defs = array();
2031
  $integer_fields = array();
2032
  $binary_fields = array();
2033
+ $bit_fields = array();
2034
+ $bit_field_exists = false;
2035
  // $table_structure was from "DESCRIBE $table"
2036
  foreach ($table_structure as $struct) {
2037
  if ((0 === strpos($struct->Type, 'tinyint')) || (0 === strpos(strtolower($struct->Type), 'smallint'))
2040
  $defs[strtolower($struct->Field)] = (null === $struct->Default ) ? 'NULL' : $struct->Default;
2041
  $integer_fields[strtolower($struct->Field)] = true;
2042
  }
2043
+ if ((0 === strpos(strtolower($struct->Type), 'binary')) || (0 === strpos(strtolower($struct->Type), 'varbinary')) || (0 === strpos(strtolower($struct->Type), 'tinyblob')) || (0 === strpos(strtolower($struct->Type), 'mediumblob')) || (0 === strpos(strtolower($struct->Type), 'blob')) || (0 === strpos(strtolower($struct->Type), 'longblob'))) {
2044
  $binary_fields[strtolower($struct->Field)] = true;
2045
  }
2046
+ if (preg_match('/^bit(?:\(([0-9]+)\))?$/i', trim($struct->Type), $matches)) {
2047
+ if (!$bit_field_exists) $bit_field_exists = true;
2048
+ $bit_fields[strtolower($struct->Field)] = !empty($matches[1]) ? max(1, (int) $matches[1]) : 1;
2049
+ // the reason why if bit fields are found then the fields need to be cast into binary type is that if mysqli_query function is being used, mysql will convert the bit field value to a decimal number and represent it in a string format whereas, if mysql_query function is being used, mysql will not convert it to a decimal number but instead will keep it retained as it is
2050
+ $struct->Field = "CAST(".UpdraftPlus_Manipulation_Functions::backquote(str_replace('`', '``', $struct->Field))." AS BINARY) AS ".UpdraftPlus_Manipulation_Functions::backquote(str_replace('`', '``', $struct->Field));
2051
+ $fields[] = $struct->Field;
2052
+ } else {
2053
+ $fields[] = UpdraftPlus_Manipulation_Functions::backquote(str_replace('`', '``', $struct->Field));
2054
+ }
2055
  }
2056
 
2057
  $search = array("\x00", "\x0a", "\x0d", "\x1a");
2058
  $replace = array('\0', '\n', '\r', '\Z');
2059
+
2060
+ $where_array = apply_filters('updraftplus_backup_table_sql_where', array(), $table, $this);
2061
+ $where = '';
2062
 
2063
+ if (!empty($where_array) && is_array($where_array)) {
2064
+ $where = "WHERE ";
2065
+ $first_loop = true;
2066
+ foreach ($where_array as $condition) {
2067
+ if (!$first_loop) $where .= " AND ";
2068
+ $where .= $condition;
2069
+ $first_loop = false;
2070
+ }
2071
+ }
2072
 
2073
  // Experimentation here shows that on large tables (we tested with 180,000 rows) on MyISAM, 1000 makes the table dump out 3x faster than the previous value of 100. After that, the benefit diminishes (increasing to 4000 only saved another 12%)
2074
 
2092
 
2093
  for ($i = 1; $i <= $inner_loop_runs; $i++) {
2094
 
2095
+ $select = '';
2096
+ if ($bit_field_exists) {
2097
+ foreach ($fields as $field) {
2098
+ $select .= !empty($select) ? ", $field" : $field;
2099
+ }
2100
+ } else {
2101
+ $select = '*';
2102
+ }
2103
+
2104
+ $table_data = $this->wpdb_obj->get_results($this->wpdb_obj->prepare("SELECT ".$select." FROM ".UpdraftPlus_Manipulation_Functions::backquote($table)." $where LIMIT %d, %d", $row_start, $row_increment / $inner_loop_runs), ARRAY_A);
2105
  $entries = 'INSERT INTO '.UpdraftPlus_Manipulation_Functions::backquote($dump_as_table).' VALUES ';
2106
  // \x08\\x09, not required
2107
  if ($table_data) {
2123
  } else {
2124
  $values[] = "0x" . bin2hex(str_repeat("0", floor(strspn($value, "0") / 4)).$value);
2125
  }
2126
+ } elseif (isset($bit_fields[$key])) {
2127
+ mbstring_binary_safe_encoding();
2128
+ $val_len = strlen($value);
2129
+ reset_mbstring_encoding();
2130
+ $hex = '';
2131
+ for ($i=0; $i<$val_len; $i++) {
2132
+ $hex .= sprintf('%02X', ord($value[$i]));
2133
+ }
2134
+ $values[] = "b'".str_pad($this->hex2bin($hex), $bit_fields[$key], '0', STR_PAD_LEFT)."'";
2135
  } else {
2136
  $values[] = (null === $value) ? 'NULL' : "'" . str_replace($search, $replace, str_replace('\'', '\\\'', str_replace('\\', '\\\\', $value))) . "'";
2137
  }
2168
 
2169
  }
2170
 
2171
+ /**
2172
+ * Convert hexadecimal (base16) number into binary (base2) and no need to worry about the platform-dependent of 32bit/64bit size limitation
2173
+ *
2174
+ * @param String $hex Hexadecimal number
2175
+ * @return String a base2 format of the given hexadecimal number
2176
+ */
2177
+ public function hex2bin($hex) {
2178
+ $table = array(
2179
+ '0' => '0000',
2180
+ '1' => '0001',
2181
+ '2' => '0010',
2182
+ '3' => '0011',
2183
+ '4' => '0100',
2184
+ '5' => '0101',
2185
+ '6' => '0110',
2186
+ '7' => '0111',
2187
+ '8' => '1000',
2188
+ '9' => '1001',
2189
+ 'a' => '1010',
2190
+ 'b' => '1011',
2191
+ 'c' => '1100',
2192
+ 'd' => '1101',
2193
+ 'e' => '1110',
2194
+ 'f' => '1111'
2195
+ );
2196
+ $bin = '';
2197
+
2198
+ if (!preg_match('/^[0-9a-f]+$/i', $hex)) return '';
2199
+
2200
+ for ($i = 0; $i < strlen($hex); $i++) {
2201
+ $bin .= $table[strtolower(substr($hex, $i, 1))];
2202
+ }
2203
+
2204
+ return $bin;
2205
+ }
2206
+
2207
  /**
2208
  * Encrypts the file if the option is set; returns the basename of the file (according to whether it was encrypted or nto)
2209
  *
central/modules/posts.php CHANGED
@@ -170,7 +170,7 @@ class UpdraftCentral_Posts_Commands extends UpdraftCentral_Commands {
170
  require_once(ABSPATH.'wp-admin/includes/theme.php');
171
  }
172
 
173
- $templates = get_page_templates();
174
  if (!empty($templates)) {
175
  $templates = array_flip($templates);
176
  if (!isset($templates['default'])) {
@@ -1161,7 +1161,7 @@ class UpdraftCentral_Posts_Commands extends UpdraftCentral_Commands {
1161
  require_once(ABSPATH.'wp-admin/includes/theme.php');
1162
  }
1163
 
1164
- $templates = get_page_templates();
1165
  $template_options = array();
1166
  foreach ($templates as $template => $filename) {
1167
  $item = array(
170
  require_once(ABSPATH.'wp-admin/includes/theme.php');
171
  }
172
 
173
+ $templates = get_page_templates(null, 'post');
174
  if (!empty($templates)) {
175
  $templates = array_flip($templates);
176
  if (!isset($templates['default'])) {
1161
  require_once(ABSPATH.'wp-admin/includes/theme.php');
1162
  }
1163
 
1164
+ $templates = get_page_templates(null, 'post');
1165
  $template_options = array();
1166
  foreach ($templates as $template => $filename) {
1167
  $item = array(
class-updraftplus.php CHANGED
@@ -135,8 +135,11 @@ class UpdraftPlus {
135
 
136
  add_action('updraft_report_remotestorage_extrainfo', array($this, 'report_remotestorage_extrainfo'), 10, 3);
137
 
138
- // Prevent people upgrading from being baffled by WP's obscure error message. See: https://core.trac.wordpress.org/ticket/27196
139
- add_filter('upgrader_source_selection', array($this, 'upgrader_source_selection'), 10, 4);
 
 
 
140
 
141
  // register_deactivation_hook(__FILE__, array($this, 'deactivation'));
142
  if (!empty($_POST) && !empty($_GET['udm_action']) && 'vault_disconnect' == $_GET['udm_action'] && !empty($_POST['udrpc_message']) && !empty($_POST['reset_hash'])) {
@@ -338,6 +341,11 @@ class UpdraftPlus {
338
  }
339
  }
340
 
 
 
 
 
 
341
  public function close_browser_connection($txt = '') {
342
  // Close browser connection so that it can resume AJAX polling
343
  header('Content-Length: '.(empty($txt) ? '0' : 4+strlen($txt)));
@@ -390,6 +398,11 @@ class UpdraftPlus {
390
  return $matches;
391
  }
392
 
 
 
 
 
 
393
  public function last_modified_log() {
394
  $updraft_dir = $this->backups_dir_location();
395
 
@@ -630,6 +643,13 @@ class UpdraftPlus {
630
  wp_die('<h1>'.__('Under Maintenance', 'updraftplus') .'</h1><p>'.__('Briefly unavailable for scheduled maintenance. Check back in a minute.', 'updraftplus').'</p>');
631
  }
632
 
 
 
 
 
 
 
 
633
  public function get_table_prefix($allow_override = false) {
634
  global $wpdb;
635
  if (is_multisite() && !defined('MULTISITE')) {
@@ -638,7 +658,7 @@ class UpdraftPlus {
638
  } else {
639
  $prefix = $wpdb->get_blog_prefix(0);
640
  }
641
- return ($allow_override) ? apply_filters('updraftplus_get_table_prefix', $prefix) : $prefix;
642
  }
643
 
644
  public function siteid() {
@@ -742,7 +762,6 @@ class UpdraftPlus {
742
  public function updraftcentral_listener_post_udrpc_action() {
743
  $this->register_wp_http_option_hooks(false);
744
  }
745
-
746
 
747
  /**
748
  * Register our class. WP filter updraftplus_remotecontrol_command_classes.
@@ -1593,7 +1612,10 @@ class UpdraftPlus {
1593
  if (false !== strpos($potsql, ' ')) $potsql = "'$potsql'";
1594
  }
1595
 
1596
- $exec .= "$potsql --defaults-file=$pfile --max_allowed_packet=1M --quote-names --add-drop-table --skip-comments --skip-set-charset --allow-keywords --dump-date --extended-insert --where=option_name=$siteurl --user=".escapeshellarg(DB_USER)." --host=".escapeshellarg(DB_HOST)." ".DB_NAME." ".escapeshellarg($table_name)."";
 
 
 
1597
 
1598
  $handle = popen($exec, "r");
1599
  if ($handle) {
@@ -4631,6 +4653,7 @@ class UpdraftPlus {
4631
  if (UpdraftPlus_Manipulation_Functions::normalise_url($old_siteurl) == UpdraftPlus_Manipulation_Functions::normalise_url(site_url())) {
4632
  // Same site migration with only http/https difference
4633
  $info['same_url'] = false;
 
4634
  $old_siteurl_parsed = parse_url($old_siteurl);
4635
  $actual_siteurl_parsed = parse_url(site_url());
4636
  if ((stripos($old_siteurl_parsed['host'], 'www.') === 0 && stripos($actual_siteurl_parsed['host'], 'www.') !== 0) || (stripos($old_siteurl_parsed['host'], 'www.') !== 0 && stripos($actual_siteurl_parsed['host'], 'www.') === 0)) {
@@ -4652,6 +4675,7 @@ class UpdraftPlus {
4652
  } else {
4653
  // For completely different site migration
4654
  $info['same_url'] = false;
 
4655
  $warn[] = apply_filters('updraftplus_dbscan_urlchange', '<a href="https://updraftplus.com/shop/migrator/" target="_blank">'.sprintf(__('This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work.', 'updraftplus'), htmlspecialchars($old_siteurl.' / '.untrailingslashit(site_url()))).'</a>', $old_siteurl, $res);
4656
  }
4657
  if (!class_exists('UpdraftPlus_Addons_Migrator')) {
@@ -4666,6 +4690,7 @@ class UpdraftPlus {
4666
  } else {
4667
  // For exactly same URL site restoration
4668
  $info['same_url'] = true;
 
4669
  }
4670
  } elseif ('' == $old_home && preg_match('/^\# Home URL: (http(.*))$/', $buffer, $matches)) {
4671
  $old_home = untrailingslashit($matches[1]);
@@ -4996,15 +5021,27 @@ class UpdraftPlus {
4996
  /**
4997
  * Get the current outgoing IP address. Use this wisely; of course, it's not guaranteed to always be the same.
4998
  *
 
4999
  * @return String|Boolean - returns false upon failure
5000
  */
5001
- public function get_outgoing_ip_address() {
5002
- $ip_lookup = wp_remote_get('https://ipvigilante.com/json', array('timeout' => 6));
5003
- if (200 == wp_remote_retrieve_response_code($ip_lookup)) {
5004
- $info = json_decode(wp_remote_retrieve_body($ip_lookup), true);
5005
- if (!empty($info['status']) && !empty($info['data']) && 'success' === $info['status']);
5006
- if (!empty($info['data']['ipv4'])) return $info['data']['ipv4'];
5007
- if (!empty($info['data']['ipv6'])) return $info['data']['ipv6'];
 
 
 
 
 
 
 
 
 
 
 
5008
  }
5009
  return false;
5010
  }
135
 
136
  add_action('updraft_report_remotestorage_extrainfo', array($this, 'report_remotestorage_extrainfo'), 10, 3);
137
 
138
+ // Prevent people using WP < 5.5 upgrading from being baffled by WP's obscure error message. See: https://core.trac.wordpress.org/ticket/27196
139
+
140
+ if (version_compare($this->get_wordpress_version(), '5.4.99999999', '<')) {
141
+ add_filter('upgrader_source_selection', array($this, 'upgrader_source_selection'), 10, 4);
142
+ }
143
 
144
  // register_deactivation_hook(__FILE__, array($this, 'deactivation'));
145
  if (!empty($_POST) && !empty($_GET['udm_action']) && 'vault_disconnect' == $_GET['udm_action'] && !empty($_POST['udrpc_message']) && !empty($_POST['reset_hash'])) {
341
  }
342
  }
343
 
344
+ /**
345
+ * Attempt to close the connection to the browser, optionally with some output sent first, whilst continuing execution
346
+ *
347
+ * @param String $txt - output to send
348
+ */
349
  public function close_browser_connection($txt = '') {
350
  // Close browser connection so that it can resume AJAX polling
351
  header('Content-Length: '.(empty($txt) ? '0' : 4+strlen($txt)));
398
  return $matches;
399
  }
400
 
401
+ /**
402
+ * Fetch information about the most recently modified log file
403
+ *
404
+ * @return Array - lists the modification time, the full path to the log file, and the log's nonce (ID)
405
+ */
406
  public function last_modified_log() {
407
  $updraft_dir = $this->backups_dir_location();
408
 
643
  wp_die('<h1>'.__('Under Maintenance', 'updraftplus') .'</h1><p>'.__('Briefly unavailable for scheduled maintenance. Check back in a minute.', 'updraftplus').'</p>');
644
  }
645
 
646
+ /**
647
+ * Get the installation's base table prefix, optionally allowing the result to be filtered
648
+ *
649
+ * @param Boolean $allow_override - allow the result to be filtered
650
+ *
651
+ * @return String
652
+ */
653
  public function get_table_prefix($allow_override = false) {
654
  global $wpdb;
655
  if (is_multisite() && !defined('MULTISITE')) {
658
  } else {
659
  $prefix = $wpdb->get_blog_prefix(0);
660
  }
661
+ return $allow_override ? apply_filters('updraftplus_get_table_prefix', $prefix) : $prefix;
662
  }
663
 
664
  public function siteid() {
762
  public function updraftcentral_listener_post_udrpc_action() {
763
  $this->register_wp_http_option_hooks(false);
764
  }
 
765
 
766
  /**
767
  * Register our class. WP filter updraftplus_remotecontrol_command_classes.
1612
  if (false !== strpos($potsql, ' ')) $potsql = "'$potsql'";
1613
  }
1614
 
1615
+ // Allow --max_allowed_packet to be configured via constant. Experience has shown some customers with complex CMS or pagebuilder setups can have extrememly large postmeta entries.
1616
+ $msqld_max_allowed_packet = (defined('UPDRAFTPLUS_MYSQLDUMP_MAX_ALLOWED_PACKET') && (is_int(UPDRAFTPLUS_MYSQLDUMP_MAX_ALLOWED_PACKET) || is_string(UPDRAFTPLUS_MYSQLDUMP_MAX_ALLOWED_PACKET))) ? UPDRAFTPLUS_MYSQLDUMP_MAX_ALLOWED_PACKET : '1M';
1617
+
1618
+ $exec .= "$potsql --defaults-file=$pfile --max_allowed_packet=$msqld_max_allowed_packet --quote-names --add-drop-table --skip-comments --skip-set-charset --allow-keywords --dump-date --extended-insert --where=option_name=$siteurl --user=".escapeshellarg(DB_USER)." --host=".escapeshellarg(DB_HOST)." ".DB_NAME." ".escapeshellarg($table_name)."";
1619
 
1620
  $handle = popen($exec, "r");
1621
  if ($handle) {
4653
  if (UpdraftPlus_Manipulation_Functions::normalise_url($old_siteurl) == UpdraftPlus_Manipulation_Functions::normalise_url(site_url())) {
4654
  // Same site migration with only http/https difference
4655
  $info['same_url'] = false;
4656
+ $info['url_scheme_change'] = true;
4657
  $old_siteurl_parsed = parse_url($old_siteurl);
4658
  $actual_siteurl_parsed = parse_url(site_url());
4659
  if ((stripos($old_siteurl_parsed['host'], 'www.') === 0 && stripos($actual_siteurl_parsed['host'], 'www.') !== 0) || (stripos($old_siteurl_parsed['host'], 'www.') !== 0 && stripos($actual_siteurl_parsed['host'], 'www.') === 0)) {
4675
  } else {
4676
  // For completely different site migration
4677
  $info['same_url'] = false;
4678
+ $info['url_scheme_change'] = false;
4679
  $warn[] = apply_filters('updraftplus_dbscan_urlchange', '<a href="https://updraftplus.com/shop/migrator/" target="_blank">'.sprintf(__('This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work.', 'updraftplus'), htmlspecialchars($old_siteurl.' / '.untrailingslashit(site_url()))).'</a>', $old_siteurl, $res);
4680
  }
4681
  if (!class_exists('UpdraftPlus_Addons_Migrator')) {
4690
  } else {
4691
  // For exactly same URL site restoration
4692
  $info['same_url'] = true;
4693
+ $info['url_scheme_change'] = false;
4694
  }
4695
  } elseif ('' == $old_home && preg_match('/^\# Home URL: (http(.*))$/', $buffer, $matches)) {
4696
  $old_home = untrailingslashit($matches[1]);
5021
  /**
5022
  * Get the current outgoing IP address. Use this wisely; of course, it's not guaranteed to always be the same.
5023
  *
5024
+ * @param Boolean $use_ipv6_service True to check the IP address using the IPv6 service with IPv4 fallback, false to use the IPv4 service only
5025
  * @return String|Boolean - returns false upon failure
5026
  */
5027
+ public function get_outgoing_ip_address($use_ipv6_service = false) {
5028
+ $urls = array('https://ipvigilante.com/json');
5029
+ if ($use_ipv6_service) array_unshift($urls, 'http://ip6.me/api');
5030
+ $urls = apply_filters('updraftplus_get_outgoing_ip_address', $urls);
5031
+ foreach ($urls as $url) {
5032
+ $ip_lookup = wp_remote_get($url, array('timeout' => 6));
5033
+ if (200 === wp_remote_retrieve_response_code($ip_lookup)) {
5034
+ $body = wp_remote_retrieve_body($ip_lookup);
5035
+ $info = json_decode($body, true);
5036
+ if (is_array($info)) {
5037
+ if (!empty($info['status']) && !empty($info['data']) && 'success' === $info['status']);
5038
+ if (!empty($info['data']['ipv4'])) return $info['data']['ipv4'];
5039
+ if (!empty($info['data']['ipv6'])) return $info['data']['ipv6'];
5040
+ } elseif (preg_match_all('/([^"\',]+|"(?:[^"]|")*?"|\'(?:[^\']|\')*?\')?(?:,|$)/is', $body, $matches)) { // https://regex101.com/r/Q8XjT4/1/
5041
+ $matches[1][0] = strtolower(trim($matches[1][0], ',\'" '));
5042
+ if (('ipv4' === $matches[1][0] || 'ipv6' === $matches[1][0]) && !empty($matches[1][1])) return trim($matches[1][1], ',\'" ');
5043
+ }
5044
+ }
5045
  }
5046
  return false;
5047
  }
css/{updraftplus-admin-1-16-26.min.css → updraftplus-admin-1-16-28.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  @keyframes udp_blink{from{opacity:1;transform:scale(1)}to{opacity:.4;transform:scale(0.85)}}@keyframes udp_rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.max-width-600{max-width:600px}.max-width-700{max-width:700px}.width-900{max-width:900px}.width-80{width:80%}.updraft--flex{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft--flex>*{-ms-flex:1;flex:1;box-sizing:border-box}.updraft--flex>.updraft--one-half{width:50%;-ms-flex:auto;flex:auto}.updraft--flex>.updraft--two-halves{width:100%;-ms-flex:auto;flex:auto}.updraft-color--very-light-grey{background:#f8f8f8}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}.udpdraft__lifted{box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#updraft-wrap a .dashicons{text-decoration:none}.updraft-field-description,table.form-table td p.updraft-field-description{font-size:90%;line-height:1.2;font-style:italic;margin-bottom:5px}label.updraft_checkbox{display:block;margin-bottom:4px;margin-left:26px}label.updraft_checkbox>input[type=checkbox]{margin-left:-25px}div[id*="updraft_include_"]{margin-bottom:9px}.settings_page_updraftplus input[type="file"]{border:0}.settings_page_updraftplus .wipe_settings{padding-bottom:10px}.settings_page_updraftplus input[type="text"]{font-size:14px}.settings_page_updraftplus select{border-radius:4px;max-width:100%}input.updraft_input--wide,textarea.updraft_input--wide{max-width:442px;width:100%}#updraft-wrap .button-large{font-size:1.3em}.main-dashboard-buttons{border-width:4px;border-radius:12px;letter-spacing:0;font-size:17px;font-weight:bold;padding-left:.7em;padding-right:2em;padding:.3em 1em;line-height:1.7em;background:transparent;position:relative;border:2px solid;transition:all .2s;vertical-align:baseline;box-sizing:border-box;text-align:center;line-height:1.3em;margin-left:.3em;text-transform:none;line-height:1;text-decoration:none}.button-restore{border-color:#629ec0;color:#629ec0}.dashboard-main-sizing{border-width:4px;width:190px;line-height:1.7em}p.updraftplus-option{margin-top:0;margin-bottom:5px}p.updraftplus-option-inline{display:inline-block;padding-right:20px}span.updraftplus-option-label{display:block}#updraft-navtab-migrate-content .postbox{padding:18px}.updraftclone-main-row{display:-ms-flexbox;display:flex}.updraftclone-tokens{background:#f5f5f5;padding:20px;border-radius:10px;margin-right:20px;max-width:300px}.updraftclone-tokens p{margin:0}.updraftclone_action_box{background:#f5f5f5;padding:20px;border-radius:10px;-ms-flex:1;flex:1}.updraftclone_action_box p:first-child{margin-top:0}.updraftclone_action_box p:last-child{margin-bottom:0}.updraftclone_action_box #ud_downloadstatus3{margin-top:10px}span.tokens-number{font-size:46px;display:block}.button.updraft_migrate_widget_temporary_clone_show_stage0{display:none;position:absolute;right:0;top:0;height:100%;border-left:1px solid #CCC;padding-left:10px;padding-right:10px}.updraft_migrate_widget_temporary_clone_stage0_container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.updraft_migrate_widget_temporary_clone_stage0_box{margin-right:20px;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.updraft_migrate_widget_temporary_clone_stage0_box iframe,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:none}@media(min-width:1024px){.updraft_migrate_widget_temporary_clone_stage0_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_migrate_widget_temporary_clone_stage0_box{-ms-flex-preferred-size:45%;flex-basis:45%}.updraft_migrate_widget_temporary_clone_stage0_box iframe,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:right}}.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons{text-decoration:none;font-size:20px}.opened .button.updraft_migrate_widget_temporary_clone_show_stage0{display:inline-block}.opened .updraft_migrate_widget_temporary_clone_stage0{background:#f5f5f5;padding:20px;border-radius:8px;margin-bottom:21px}.clone-list{clear:both;width:100%;margin-top:40px}.clone-list table{width:100%;text-align:left}.clone-list table tr th{background:#e4e4e4}.clone-list table tr td{background:#f5f5f5;word-break:break-word}.clone-list table tr:nth-child(odd) td{background:#fafafa}.clone-list table td,.clone-list table th{padding:6px}.updraftplus-clone .updraft_row{padding-left:0;padding-right:0}button#updraft_migrate_createclone+.updraftplus_spinner{margin-top:13px}.button.button-hero.updraftclone_show_step_1{white-space:normal;height:auto;line-height:14px;padding-top:10px;padding-bottom:10px}.button.button-hero.updraftclone_show_step_1 span.dashicons{height:auto}.updraftplus_clone_status{color:red}a.updraft_migrate_add_site--trigger span.dashicons{text-decoration:none}.button-restore:hover,.button-migrate:hover,.button-backup:hover,.button-view-log:hover,.button-mass-selectors:hover,.button-delete:hover,.button-entity-backup:hover,.udp-button-primary:hover{border-color:#df6926;color:#df6926}.button-migrate{color:#eea920;border-color:#eea920}#updraft_migrate_tab_main{padding:8px}.updraft_migrate_widget_module_content{background:#FFF;border-radius:0;position:relative}body.js #updraft_migrate .updraft_migrate_widget_module_content{display:none}.updraft_migrate_widget_module_content>h3,div[class*="updraft_migrate_widget_temporary_clone_stage"]>h3{margin-top:0}.updraft_migrate_widget_module_content header{position:relative;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-grid-column-align:center;justify-items:center;margin-top:-18px;margin-left:-18px;margin-right:-18px;margin-bottom:15px;border-bottom:1px solid #CCC}.updraft_migrate_widget_module_content header h3,.updraft_migrate_widget_module_content header button.button.close{padding:10px;line-height:20px;height:auto;margin:0}.updraft_migrate_widget_module_content button.button.close{text-decoration:none;padding-left:5px;border-right:1px solid #CCC}.updraft_migrate_widget_module_content button.button.close .dashicons{margin-top:1px}.updraft_migrate_widget_module_content header h3{margin:0}.updraft_migrate_intro button.button.button-primary.button-hero{max-width:235px;word-wrap:normal;white-space:normal;line-height:1;height:auto;padding-top:13px;padding-bottom:13px;text-align:left;position:relative;margin-right:10px;margin-bottom:10px}.updraft_migrate_intro button.button.button-primary.button-hero .dashicons{position:absolute;left:10px;top:calc(50% - 8px)}#updraft_migrate .ui-widget-content a{color:#1c94c4}#updraft-wrap .ui-accordion .ui-accordion-header{background:#f6f6f6;margin:0;border-radius:0;padding-left:.5em;padding-right:.7em}#updraft-wrap .ui-widget{font-family:inherit}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w{background-position:-96px 0}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s{background-position:-64px 0}#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon{left:auto;right:5px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px rgba(91,157,217,0.22),0 0 2px 1px rgba(30,140,190,0.3);background:#FFF}#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons{color:#0572aa;opacity:1}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active{background:#f6f6f6;border-bottom:2px solid #0572aa;box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3)}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus{box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child){border-top:0}#updraft-wrap .ui-accordion .ui-accordion-header .dashicons{opacity:.4;margin-right:10px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:1}button.ui-dialog-titlebar-close:before{content:none !important}.updraft_next_scheduled_backups_wrapper{display:-ms-flexbox;display:flex;background:#FFF;-ms-grid-column-align:center;justify-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_next_scheduled_backups_wrapper>div{width:50%;background:#FFF;height:auto;padding:33px;box-sizing:border-box}.updraft_backup_btn_wrapper{text-align:center;border-left:1px solid #f1f1f1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.incremental-backups-only{display:none}.incremental-free-only{display:none}.incremental-free-only p{padding:5px;background:rgba(255,0,0,0.06);border:1px solid #bfbfbf}#updraft-delete-waitwarning span.spinner{visibility:visible;float:none;margin:0;margin-right:10px}button#updraft-backupnow-button .spinner,button#updraft-backupnow-button .dashicons-yes{display:none}button#updraft-backupnow-button.loading .spinner{display:inline-block;visibility:visible;margin-top:13px;margin-right:0}button#updraft-backupnow-button.loading{background-color:#efefef;border-color:#CCC;text-shadow:0 -1px 1px #bbc3c7,1px 0 1px #bbc3c7,0 1px 1px #bbc3c7,-1px 0 1px #bbc3c7;box-shadow:none}button#updraft-backupnow-button.finished .dashicons-yes{display:inline-block;visibility:visible;font-size:42px;margin-right:0;margin-top:2px}.updraft_next_scheduled_entity{width:50%;display:inline-block;float:left}.updraft_next_scheduled_entity .dashicons{color:#CCC;font-size:20px}.updraft_next_scheduled_entity strong{font-size:20px}.updraft_next_scheduled_heading{margin-bottom:10px}.updraft_next_scheduled_date_time{color:#46a84b}.updraft_time_now_wrapper{margin-top:68px;width:100%}.updraft_time_now_label,.updraft_time_now{display:inline-block;padding:7px}.updraft_time_now_label{background:#b7b7b7;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#FFF;margin-right:0;text-shadow:0 1px 2px rgba(0,0,0,0.4)}.updraft_time_now{background:#f1f1f1;border-top-right-radius:4px;border-bottom-right-radius:4px;margin-left:-3px}#updraft_lastlogmessagerow{margin:6px 0}#updraft_lastlogmessagerow{clear:both;padding:.25px 0}#updraft_lastlogmessagerow .updraft-log-link{float:right;margin-top:-2.5em;margin-right:2px}#updraft_lastlogmessagerow>div{clear:both;background:#FFF;padding:18px}#updraft_activejobs_table{overflow:hidden;width:100%;background:#fafafa;padding:0}.updraft_requeststart{padding:15px 33px;text-align:center}.updraft_requeststart .spinner{visibility:visible;float:none;vertical-align:middle;margin-top:-2px}a.updraft_jobinfo_delete.disabled{opacity:.4;color:inherit;text-decoration:none}.updraft_row{clear:both;transition:.3s all;padding:15px 33px}.updraft_row.deleting{opacity:.4}.updraft_existing_backups_count{padding:2px 8px;font-size:12px;background:#ca4a1e;color:#FFF;font-weight:bold;border-radius:10px}.form-table .existing-backups-table input[type="checkbox"]{border-radius:0}.form-table .existing-backups-table .check-column{width:40px;padding:0;padding-top:8px}.existing-backups-buttons{font-size:11px;line-height:1.4em;border-width:3px}.existing-backups-restore-buttons{font-size:11px;line-height:1.4em;border-width:3px}.button-delete{color:#e23900;border-color:#e23900;font-size:14px;line-height:1.4em;border-width:2px;margin-right:10px}.button-view-log,.button-mass-selectors{color:darkgrey;border-color:darkgrey;font-size:14px;line-height:1.4em;border-width:2px;margin-top:-1px}.button-view-log{width:120px}.button-existing-restore{font-size:14px;line-height:1.4em;border-width:2px;width:110px}.main-restore{margin-right:3%;margin-left:3%}.button-entity-backup{color:#555;border-color:#555;font-size:11px;line-height:1.4em;border-width:2px;margin-right:5px}.button-select-all{width:122px}.button-deselect{width:92px}#ud_massactions>.display-flex>.mass-selectors-margins,#updraft-delete-waitwarning>.display-flex>.mass-selectors-margins{margin-right:-4px}.udp-button-primary{border-width:4px;color:#0073aa;border-color:#0073aa;font-size:14px;height:40px}#ud_massactions .button-delete{margin-right:0}.stored_local{border-radius:5px;background-color:#007fe7;padding:3px 5px 5px 5px;color:#FFF;font-size:75%}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label>*{vertical-align:middle}.backup_date_label .dashicons{font-size:18px}.backup_date_label .clear-right{clear:right}.existing-backups-table .backup_date_label>div,.existing-backups-table .backup_date_label span>div{font-weight:bold}.udp-logo-70{width:70px;height:70px;float:left;padding-right:25px}h3 .thank-you{margin-top:0}.ws_advert{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.dismiss-dash-notice{float:right;position:relative;top:-20px}.updraft_exclude_container,.updraft_include_container{margin-left:24px;margin-top:5px;margin-bottom:10px;padding:15px;border:1px solid #DDD}label.updraft-exclude-label{font-weight:500;margin-bottom:5px;display:block}.updraft_add_exclude_item,#updraft_include_more_paths_another{display:inline-block;margin-top:10px}input.updraft_exclude_entity_field,.form-table td input.updraft_exclude_entity_field,.updraftplus-morefiles-row input[type=text]{width:calc(100% - 70px);max-width:400px}@media screen and (max-width:782px){.form-table td input.updraft_exclude_entity_field,.form-table td .updraftplus-morefiles-row input[type=text]{display:inline-block}}.updraft_exclude_entity_delete.dashicons,.updraft_exclude_entity_edit.dashicons,.updraft_exclude_entity_update.dashicons,.updraftplus-morefiles-row a.dashicons{margin-top:2px;font-size:20px;box-shadow:none;line-height:1;padding:3px;margin-right:4px}.updraft_exclude_entity_delete,.updraft_exclude_entity_delete:hover,.updraftplus-morefiles-row-delete{color:#ff6347}.updraft_exclude_entity_update.dashicons,.updraft_exclude_entity_update.dashicons:hover{color:#008000;font-weight:bold;font-size:22px;margin-left:4px}.updraft_exclude_entity_edit{margin-left:4px}.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete{display:none}.updraft-exclude-panel-heading{margin-bottom:8px}.updraft-exclude-panel-heading h3{margin:.5em 0 .5em 0}.updraft-exclude-submit.button-primary{margin-top:5px}.updraft_exclude_actions_list{font-weight:bold}.updraft-exclude-link{cursor:pointer}#updraft_include_more_options{padding-left:25px}#updraft_report_cell .updraft_reportbox,.updraft_small_box{padding:12px;margin:8px 0;border:1px solid #CCC;position:relative}#updraft_report_cell button.updraft_reportbox_delete,.updraft_box_delete_button,.updraft_small_box .updraft_box_delete_button{padding:4px;padding-top:6px;border:0;background:transparent;position:absolute;top:4px;right:4px;cursor:pointer}#updraft_report_cell button.updraft_reportbox_delete:hover{color:#de3c3c}a.updraft_report_another .dashicons{text-decoration:none;margin-top:2px}.updraft_report_dbbackup.updraft_report_disabled{color:#CCC}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_email{display:block;width:calc(100% - 50px);margin-bottom:9px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-settings-content table.form-table .notice p{max-width:none}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td{background-color:#efefef}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td{background-color:#e8e8e8}.updraft_settings_sectionheading{display:none}.updraft-backupentitybutton-disabled{background-color:transparent;border:0;color:#0074a2;text-decoration:underline;cursor:pointer;clear:none;float:left}.updraft-backupentitybutton{margin-left:8px}.updraft-bigbutton{padding:2px 0 !important;margin-right:14px !important;font-size:22px !important;min-height:32px;min-width:180px}tr[class*="_updraft_remote_storage_border"]{border-top:1px solid #CCC}.updraft_multi_storage_options{float:right;clear:right;margin-bottom:5px !important}.updraft_toggle_instance_label{vertical-align:top !important}.updraft_debugrow th{float:right;text-align:right;font-weight:bold;padding-right:8px;min-width:140px}.updraft_debugrow td{min-width:300px;vertical-align:bottom}#updraft_webdav_host_error,.onedrive_folder_error{color:red}label[for=updraft_servicecheckbox_updraftvault]{position:relative}#updraft-wrap .udp-info{position:absolute;right:10px;top:calc(50% - 10px)}#updraft-wrap span.info-trigger{display:inline-block;width:20px;height:20px;background:#FFF;color:#72777c;border-radius:30px;text-align:center;line-height:20px;box-shadow:0 1px 3px rgba(0,0,0,0.15)}#updraft-wrap .info-content-wrapper{display:none;position:absolute;bottom:20px;transform:translatex(calc(-50% + 10px));width:330px;padding-bottom:10px}#updraft-wrap .info-content-wrapper::before{content:'';position:absolute;bottom:-10px;border:10px solid transparent;border-top-color:#FFF;left:calc(50% - 10px)}#updraft-wrap .info-content{padding:20px;background:#FFF;border-radius:4px;box-shadow:0 3px 10px rgba(0,0,0,0.1);color:#72777c}#updraft-wrap .info-content h3{margin-top:0}#updraft-wrap .info-content p{margin-top:10px}#updraft-wrap .udp-info:hover .info-content-wrapper{display:block}.updraft_jstree .jstree-container-ul>.jstree-node,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-node{background:transparent}.updraft_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}.updraft_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}.updraft_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}.updraft_jstree_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}.updraft_jstree_info_container p{margin:1px;padding-left:10px;font-size:14px}#updraft_zip_download_item{display:none;color:#0073aa;padding-left:10px}#updraft_zip_download_notice{padding-left:10px}#updraft_exclude_files_folders_jstree{max-height:200px;overflow-y:scroll}.updraft_jstree{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}div[id^="updraft_more_files_container_"]{position:relative;display:none;width:100%;border:1px solid #CCC;background:#fafafa;margin-bottom:5px;margin-top:4px;box-shadow:0 5px 8px rgba(0,0,0,0.1)}div[id^="updraft_more_files_container_"]::before{content:' ';width:11px;height:11px;display:block;background:#fafafa;position:absolute;top:0;left:20px;border-top:1px solid #CCC;border-left:1px solid #CCC;transform:translatey(-7px) rotate(45deg)}input.updraft_more_path_editing{border-color:#0285ba}input.updraft_more_path_editing ~ a.dashicons{display:none}div[id^="updraft_jstree_buttons_"]{padding:10px;background:#e6e6e6}div[id^="updraft_jstree_container_"]{height:300px;width:100%;overflow:auto}div[id^="updraft_more_files_container_"] button{line-height:20px}button[id^="updraft_parent_directory_"]{margin:10px 10px 4px 10px;padding-left:3px}button[id^="updraft_jstree_confirm_"],button[id^="updraft_jstree_cancel_"]{display:none}input[id^="updraft_include_more_path_restore_"]{text-align:right}.updraftplus-morefiles-row-delete,.updraftplus-morefiles-row-edit{cursor:pointer}#updraft-wrap .form-table th{width:230px}#updraft-wrap .form-table .existing-backups-table th{width:auto}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{display:inline-block}.updraft-viewlogdiv input,.updraft-viewlogdiv a{border:0;background-color:transparent;color:#000;margin:0;padding:3px 4px;font-size:16px;line-height:26px}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.button.button-remove{color:white;background-color:#de3c3c;border-color:#c00000;box-shadow:0 1px 0 #c10100}.button.button-remove:hover,.button.button-remove:focus{border-color:#C00;color:#FFF;background:#C00}body.admin-color-midnight .button.button-remove{color:#de3c3c;background-color:#f7f7f7;border-color:#CCC;box-shadow:0 1px 0 #CCC}body.admin-color-midnight .button.button-remove:hover,body.admin-color-midnight .button.button-remove:focus{border-color:#ba281f}body.admin-color-midnight .button.button-remove:focus{box-shadow:inherit;box-shadow:0 0 3px rgba(0,115,170,0.8)}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file,#ud_downloadstatus3 .file{padding:1px;background:#ececec;border:solid 1px #CCC;margin:4px 0}.updraft_premium section{margin-bottom:20px}.updraft_premium_cta{background:#FFF;margin-top:30px;padding:0;border-left:4px solid #db6a03}.updraft_premium_cta a{font-weight:normal}.updraft_premium_cta__action{position:relative;text-align:center}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase;margin-bottom:7px}.updraft_premium_cta a.button.button-primary.button-hero+small{display:block;max-width:100%;text-align:center;color:#afafaf}.updraft_premium_cta a.button.button-primary.button-hero+small .dashicons{width:12px;height:12px}.updraft_premium_cta__top{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:18px 30px}.updraft_premium_cta__bottom{background:#f9f9f9;padding:5px 30px}.updraft_premium_cta__summary{margin-right:60px}.updraft_premium_cta h2{font-size:28px;font-weight:200;line-height:1;margin:0;margin-bottom:5px;letter-spacing:.05rem;color:#db6a03}.updraft_premium_cta ul li::after{color:#CCC}@media only screen and (max-width:768px){.updraft_premium_cta__top{-ms-flex-direction:column;flex-direction:column;text-align:center;-ms-flex-align:center;align-items:center}.updraft_premium_cta__summary{margin-right:0;margin-bottom:30px}}.udp-box{background:#FFF;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,0.1);text-align:center}.udp-box h3{margin:0}.udp-box__heading{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;background:0;box-shadow:none}.updraft-more-plugins{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;flex-wrap:wrap}.updraft-more-plugins img{max-width:200px;width:100%;display:inline-block}.updraft-more-plugins .udp-box{box-sizing:border-box;width:24%}.updraft-more-plugins .udp-box p:last-child{margin-bottom:0;padding-bottom:0}.updraft_premium_description_list{text-align:left;margin:0;font-size:12px}ul.updraft_premium_description_list,ul#updraft_restore_warnings{list-style:disc inside}ul.updraft_premium_description_list li{display:inline}ul.updraft_premium_description_list li::after{content:" | "}ul.updraft_premium_description_list li:last-child::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraftplus_com_login_status,.updraftplus_com_key_status{display:none;background:#FFF;border-left:4px solid #FFF;border-left-color:#dc3232;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraftplus_com_login_status.success{border-left-color:green}#updraft-wrap strong.success{color:green}.updraft_feat_table{border:0;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_th,.updraft_feat_table td{border:1px solid #f1f1f1;border-collapse:collapse;font-size:120%;background-color:white;text-align:center;padding:15px}.updraft_feat_table td{border-bottom-width:4px}.updraft_feat_table td:first-child{border-left:0}.updraft_feat_table td:last-child{border-right:0}.updraft_feat_table tr:last-child td{border-bottom:0}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){background-color:rgba(241,241,241,0.38);width:190px}.updraft_feat_table__header td img{display:block;margin:0 auto}.updraft_feat_table__header td{text-align:center}.updraft_feat_table .installed{font-size:14px}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.updraft_feat_table h4{margin:5px 0}.updraft_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.updraft_feat_table .dashicons-yes,.updraft_feat_table .updraft-yes{color:green}.updraft_feat_table .dashicons-no-alt,.updraft_feat_table .updraft-no{color:red}.updraft_tick_cell{text-align:center}.updraft_tick_cell img{margin:4px 0;height:24px}.ud_downloadstatus__close{border:0;background:transparent;width:auto;font-size:20px;padding:0;cursor:pointer}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress,#ud_downloadstatus3 .dlfileprogress{width:0;background:#0572aa;height:8px;transition:width .3s}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw,#ud_downloadstatus3 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file,#ud_downloadstatus3 .file{margin-top:8px}div[class^="updraftplus_downloader_container_"]{padding:10px}tr.updraftplusmethod h3{margin:0}tr.updraftplusmethod img{max-width:100%}#updraft_retain_db_rules .updraft_retain_rules_delete,#updraft_retain_files_rules .updraft_retain_rules_delete{cursor:pointer;color:red;font-size:120%;font-weight:bold;border:0;border-radius:3px;padding:2px;margin:0 6px;text-decoration:none;display:inline-block}#updraft_retain_db_rules .updraft_retain_rules_delete:hover,#updraft_retain_files_rules .updraft_retain_rules_delete:hover{cursor:pointer;color:white;background:red}#updraft_backup_started{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.blockUI.blockOverlay.ui-widget-overlay{background:#000}.updraft_success_popup{text-align:center;padding-bottom:30px}.updraft_success_popup>.dashicons{font-size:100px;width:100px;height:100px;line-height:100px;padding:0;border-radius:50%;margin-top:30px;display:block;margin-left:auto;margin-right:auto;background:#e2e6e5}.updraft_success_popup>.dashicons.dashicons-yes{text-indent:-5px}.updraft_success_popup.success>.dashicons{color:green}.updraft_success_popup.warning>.dashicons{color:#888}.updraft_success_popup--message{padding:20px}.button.updraft-close-overlay .dashicons{text-decoration:none;font-size:20px;margin-left:-5px;padding:0;transform:translatey(3px)}.updraft_saving_popup img{animation-name:udp_blink;animation-duration:610ms;animation-iteration-count:infinite;animation-direction:alternate;animation-timing-function:ease-out}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.updated.backup-restored{padding-top:15px;padding-bottom:15px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.updraft_all-files{color:blue}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}section.premium-upgrade-purchase-success{padding:2em;background:#fafafa;text-align:center;box-shadow:0 14px 40px rgba(0,0,0,0.1)}section.premium-upgrade-purchase-success h3{font-size:2em;color:green}section.premium-upgrade-purchase-success h3 .dashicons{display:block;margin:0 auto;font-size:60px;width:60px;height:60px;border-radius:50%;background:green;color:#FFF;margin-bottom:20px}section.premium-upgrade-purchase-success h3 .dashicons::before{display:inline-block;margin-left:-4px;margin-top:2px}section.premium-upgrade-purchase-success p{font-size:120%}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions,#backupnow_includecloud_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_activejobsrow th{max-width:112px;margin:0;padding:13px 0 0 0}#updraft_lastlogmessagerow .last-message{padding-top:20px;display:block}.updraft_simplepie{vertical-align:top}.download-backups{margin-top:8px}.download-backups .updraft_download_button{margin-right:6px}.download-backups .ud-whitespace-warning,.download-backups .ud-bom-warning{background-color:pink;padding:8px;margin:4px;border:1px dotted}.download-backups .ul{list-style:none inside;max-width:800px;margin-top:6px;margin-bottom:12px}#updraft-plupload-modal{margin:16px 0}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:100%}.ud_downloadstatus{padding:10px 0}#ud_massactions,#updraft-delete-waitwarning{padding:14px;background:#f1f1f1;position:absolute;left:0;top:100%}#ud_massactions>*,#updraft-delete-waitwarning>*{vertical-align:middle}#ud_massactions .updraftplus-remove{display:inline-block;margin-right:0}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative}small.ud_massactions-tip{display:inline-block;opacity:.5;font-style:italic;margin-left:20px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:35px;position:relative}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}.notice.updraft-restore-option{padding:12px;margin:8px 0 4px 0;border-left-color:#CCC}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraftplus_restore_tables_options_container{max-height:250px;overflow:auto}.updraft_debugrow th{vertical-align:top;padding-top:6px;max-width:140px}.expertmode p{font-size:125%}.expertmode .call-wp-action{width:300px;height:22px}.updraftplus-lock-advert{clear:left;max-width:600px}.uncompressed-data{clear:left;max-width:600px}.delete-old-directories{padding:8px;padding-bottom:12px}.active-jobs{width:100%;text-align:center;padding:33px}.job-id{margin-top:0;margin-bottom:8px}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#1d8ec2;transition:width .3s}.curstage{z-index:1;border-radius:2px;margin-top:8px;width:100%;height:26px;line-height:26px;position:relative;text-align:center;font-style:italic;color:#FFF;background-color:#b7b7b7;text-shadow:0 1px 2px rgba(0,0,0,0.3)}.curstage-info{display:inline-block;z-index:2}.retain-files{width:48px}.backup-interval-description tr td div{max-width:670px}#updraft-manualdecrypt-modal{width:85%;margin:6px;margin-left:100px}.directory-permissions{font-size:110%;font-weight:bold}.double-warning{border:1px solid;padding:6px}.raw-backup-info{font-style:italic;font-weight:bold;font-size:120%}.updraft_existingbackup_date{width:22%;max-width:140px}.updraft_existing_backups_wrapper{margin-top:20px;border-top:1px solid #DDD}.updraft-no-backups-msg{text-align:center}.tr-bottom-4{margin-bottom:4px}.existing-backups-table th{padding:8px 10px}.form-table .backup-date{width:172px}.form-table .backup-data{width:426px}.form-table .updraft_backup_actions{width:272px}.existing-date{box-sizing:border-box;max-width:140px;width:25%}.line-break-tr{height:2px;padding:1px;margin:0}.line-break-td{margin:0;padding:0}.td-line-color{height:2px;background-color:#888}.raw-backup{max-width:140px}.existing-backups-actions{padding:1px;margin:0}.existing-backups-border{height:2px;padding:1px;margin:0}.existing-backups-border>td{margin:0;padding:0}.existing-backups-border>div{height:2px;background-color:#AAA}.updraft_existing_backup_date{max-width:140px}.updraftplus-upload{margin-right:6px;float:left;clear:none}.before-restore-button{padding:1px;margin:0}.before-restore-button div{float:none;display:inline-block}.table-separator-tr{height:2px;padding:1px;margin:0}.table-separator-td{margin:0;padding:0}.end-of-table-div{height:2px;background-color:#AAA}.last-backup-job{padding-top:3% !important}.line-height-03{line-height:.3 !important}.line-height-13{line-height:1.3 !important}.line-height-23{line-height:2.3 !important}#updraft_diskspaceused{color:#df6926}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}#updraft-wrap .dashicons.dashicons-adapt-size{line-height:inherit;font-size:inherit}#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size){vertical-align:middle;margin-top:-3px}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option-container{text-align:center}.updraftplusmethod.updraftvault .vault-purchase-option{width:40%;text-align:center;padding-top:20px;display:inline-block}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3:first-child{margin-top:5px !important}.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools{display:none}.expertmode .advanced_settings_container .advanced_settings_content .site_info{display:block}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:inline-block;cursor:pointer;padding:5px;color:#000}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text{font-size:16px}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover{background-color:#eaeaea}.expertmode .advanced_settings_container .advanced_settings_menu .active{background-color:#3498db;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_menu .active:hover{background-color:#72c5fd;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_content input#import_settings{height:auto !important}div#updraft-wrap a{cursor:pointer !important}.updraftcentral_wizard_option{width:45%;float:left;text-align:center}.updraftcentral_wizard_option label{margin-bottom:8px}#updraftcentral_keys_table{display:none}.create_key_container{border:1px solid;border-radius:4px;padding:0 0 6px 6px;margin-bottom:8px}.updraftcentral_cloud_connect{border-radius:4px;border:1px solid #000;padding:0 20px;margin-top:30px;background-color:#FFF}.updraftcentral_cloud_error{border:1px solid #000;padding:3px 10px;border-left:3px solid #F00;background-color:#FFF;margin-bottom:10px}.updraftcentral_cloud_info{border:1px solid #000;padding:3px 10px;border-left:3px solid #ef8f31;background-color:#FFF;margin-bottom:10px}.updraftplus_spinner.spinner{padding-left:25px;float:none}.updraftplus_spinner.spinner.visible{visibility:visible;width:auto}.updraftcentral_cloud_notices .updraftplus_spinner{margin-top:-5px}.updraftcentral-subheading{font-size:14px;margin-top:-10px;margin-bottom:20px}#updraftcentral_cloud_form input#email,#updraftcentral_cloud_form input#password{min-width:250px}.updraftcentral-data-consent{font-size:13px;margin-bottom:10px}.updraftcentral_cloud_wizard_image{float:left;min-width:100px;margin-right:25px}.updraftcentral_cloud_wizard{float:left}.updraftcentral_cloud_clear{clear:both}.updraftplus-settings-footer{margin-top:30px}.updraftplus-top-menu{padding:.5em}#updraft_inpage_backup #updraft_activejobs_table{background:transparent}#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link{float:none}#updraft_inpage_backup #updraft_activejobsrow .updraft_row{-ms-flex-direction:column;flex-direction:column;padding-left:20px;padding-right:20px}#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container{width:100%}#updraft_inpage_backup #updraft_activejobs_table{overflow:inherit}#updraft_inpage_backup span#updraft_lastlogcontainer{padding:18px;background:#fafafa;display:block;font-size:90%;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup div#updraft_activejobsrow{background:#fafafa;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup #updraft_lastlogmessagerow>div{background:transparent;padding:0}#updraft_inpage_backup .last-message>strong{display:block;margin-top:13px}.updraft_restore_container{display:block;position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999;padding-top:30px;background:#f1f1f1;overflow:auto}.updraft-modal-is-opened .select2-container{z-index:99999}body.updraft-modal-is-opened{overflow:hidden}.updraft_restore_container h2{margin:0}.updraft_restore_container .updraftmessage{box-sizing:border-box;max-width:860px;margin-left:auto;margin-right:auto}.updraft_restore_main{max-width:860px;margin:0 auto;margin-top:20px;background:#FFF;box-shadow:0 3px 3px rgba(0,0,0,0.1);position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;box-sizing:border-box}.updraft_restore_main--header{font-size:20px;font-weight:bold;text-align:center;padding-top:16px;line-height:20px;width:100%;max-width:100%;padding-right:30px;padding-left:30px;box-sizing:border-box}.updraft_restore_main--activity{position:relative;width:calc(100% - 350px);box-sizing:border-box}.updraft_restore_main--activity-title{padding:20px;margin:0}.show-credentials-form.updraft_restore_main .updraft_restore_main--activity-title{display:none}.updraft_restore_main--components{width:350px;padding:20px;box-sizing:border-box;background:#f8f8f8;min-height:350px}.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output{background:#23282d;color:#e3e3e3;font-family:monospace;padding:19px;overflow:auto;position:absolute;top:60px;bottom:0;right:0;left:0}#updraftplus_ajax_restore_output form{white-space:normal;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif}#updraftplus_ajax_restore_output .updraft_restore_errors{border:1px solid #dc3232;padding:10px 20px;white-space:normal}.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output h2{color:#00a0d2;padding-top:10px;padding-bottom:5px}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output{padding:20px;border-left:1px solid #EEE}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output #message{margin-left:0;margin-right:0}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table td,.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table th{padding-bottom:0}.updraft_restore_main.show-credentials-form .updraft_restore_main--components{opacity:.2}.updraft_restore_main.show-credentials-form div.error .restore-credential-errors--list p{margin:0;list-style-type:disc;display:list-item;list-style-position:inside}.restore-credential-errors>:first-child{margin-top:0}.restore-credential-errors>:last-child{margin-bottom:0}ul.updraft_restore_components_list li{color:#bababa;font-size:1.2em;margin-bottom:1em}ul.updraft_restore_components_list li::before{content:'\f469';font-family:dashicons;font-size:20px;vertical-align:middle;display:inline-block;margin-right:7px}ul.updraft_restore_components_list li span{vertical-align:middle}ul.updraft_restore_components_list li.done{color:green}ul.updraft_restore_components_list li.done::before{content:"\f147"}ul.updraft_restore_components_list li.active{color:inherit}ul.updraft_restore_components_list li.active::before{content:"\f463";animation:udp_rotate 1s linear infinite}ul.updraft_restore_components_list li.error{color:#dc3232}ul.updraft_restore_components_list li.error::before{content:"\f335"}.updraft_restore_result{padding:10px 0;font-size:1.3em;margin-bottom:1em;vertical-align:middle;display:none}.updraft_restore_result.restore-error{color:#dc3232}.updraft_restore_result.restore-success{color:green}.updraft_restore_result .dashicons{font-size:35px;height:35px;line-height:33px;width:35px}.updraft_restore_result span{vertical-align:middle}#updraft-restore-modal{width:100%}div#updraft-restore-modal .notice{background:#f8f8f8}.updraft-restore-modal--stage .updraft--two-halves,.updraft-restore-modal--stage .updraft--one-half{padding:20px 30px}.updraft-restore-modal--header{padding:20px;padding-bottom:0;text-align:center;border-bottom:1px solid #EEE}.updraft-restore-modal--header h3{margin:0;padding:0}.updraft-restore-item{padding-bottom:4px}.updraft-restore-buttons{padding-top:10px}ul.updraft-restore--stages{display:inline-block;margin:0;height:28px}ul.updraft-restore--stages li{display:inline-block;position:relative;width:12px;height:12px;background:#d2d2d2;border-radius:20px;line-height:1;margin:0 4px;vertical-align:middle}ul.updraft-restore--stages li.active{background:#444}.updraft-restore--footer{border-top:1px solid #EEE;padding:20px;text-align:center;position:-webkit-sticky;position:sticky;bottom:0;background:#FFF;width:100%;box-sizing:border-box}.updraft-restore--footer .updraft-restore--cancel{position:absolute;left:20px;top:auto}.updraft-restore--footer .updraft-restore--next-step{position:absolute;right:20px;top:auto}ul.updraft-restore--stages li span{position:absolute;width:120px;bottom:calc(100% + 14px);left:-55px;background:rgba(0,0,0,0.85882);padding:5px;box-sizing:border-box;border-radius:4px;color:#FFF;text-align:center;display:none}ul.updraft-restore--stages li:hover span{display:inline-block}.updraft-restore-item input[type=checkbox]{margin-bottom:-5px}.updraft-restore-item input[type=checkbox]:checked+label{font-weight:bold}div#updraft-restore-modal .ud_downloadstatus__close{display:none}#ud_downloadstatus2:not(:empty){margin-top:15px}.dashicons.rotate{animation:udp_rotate 1s linear infinite}span#updraftplus_ajax_restore_last_activity{font-size:.8rem;font-weight:normal;float:right}.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice{margin:-20px -20px 20px;padding:19px}.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice button{margin-right:5px}#updraft_migrate_receivingsites .updraftplus-remote-sites-selector .button-primary,.updraft_migrate_add_site .input-field input,.updraft_migrate_add_site button{vertical-align:middle}#updraft_migrate_receivingsites .text-link-menu a:not(:last-child){padding-right:10px}#updraft_migrate_receivingsites a.updraft_migrate_clear_sites span.dashicons-trash:before{font-size:17px}#updraft_migrate_receivingsites .updraft_migrate_add_site{clear:both}@media only screen and (min-width:1024px){#updraft_activejobsrow .updraft_row{display:-ms-flexbox;display:flex;-ms-flex-align:baseline;align-items:baseline}#updraft_activejobsrow .updraft_row .updraft_col{-ms-flex:auto;flex:auto}#updraft_activejobsrow .updraft_progress_container{width:calc(100% - 230px)}}@media only screen and (min-width:782px){.settings_page_updraftplus input[type=text],.settings_page_updraftplus input[type=password],.settings_page_updraftplus input[type=number]{line-height:1.42;height:27px;padding:2px 6px;color:#555}.settings_page_updraftplus input[type="number"]{height:31px}#ud_massactions.active,#updraft-delete-waitwarning.active{position:fixed;bottom:0;left:160px;right:0;top:auto;background:#FFF;z-index:3;box-shadow:0 0 10px rgba(0,0,0,0.2)}body.folded #ud_massactions.active,body.folded #updraft-delete-waitwarning.active{left:36px}.updraft-after-form-table{margin-left:250px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.range-selection:not(.backuprowselected) .updraft_existingbackup_date .backup_date_label{color:#FFF}}@media only screen and (min-width:782px) and (max-width:960px){body.auto-fold #ud_massactions.active,body.auto-fold #updraft-delete-waitwarning.active{left:36px}}@media only screen and (max-width:782px){#updraft-wrap{margin-right:0}#updraft-wrap .form-table td{padding-right:0}label.updraft_checkbox{margin-bottom:8px;margin-top:8px;margin-left:36px}.updraft_retain_rules{position:relative;margin-right:0;border:1px solid #CCC;padding:5px;margin-bottom:-1px}.updraft_retain_rules_delete{position:absolute;right:0;top:5px}a[id*=updraft_retain_]{display:block;padding:15px 15px 15px 0}label.updraft_checkbox>input[type=checkbox]{margin-left:-33px}#updraft-backupnow-button{margin:0;display:block;width:100%}.updraft_next_scheduled_backups_wrapper>.updraft_backup_btn_wrapper{padding-top:0}#ud_massactions,#updraft-delete-waitwarning{width:100%;box-sizing:border-box;text-align:center}#ud_massactions.active{position:fixed;top:auto;bottom:0;width:100%;box-sizing:border-box;text-align:center;box-shadow:0 -3px 15px rgba(0,0,0,0.08);background:#FFF;z-index:3}#ud_massactions strong{display:block;margin-bottom:5px}small.ud_massactions-tip{display:block}.existing-backups-table .backup_date_label>div,.existing-backups-table .backup_date_label span>div{font-weight:normal}.existing-backups-table .backup_date_label .clear-right{display:inline-block}table.widefat.existing-backups-table{border:0;box-shadow:none;background:transparent}.existing-backups-table thead{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;padding:0;margin:0}.existing-backups-table tr{display:block;margin-bottom:.625em;padding-bottom:16.625px;width:100%;padding:0;margin:0;margin-bottom:10px;background:#FFF;box-shadow:0 2px 3px rgba(0,0,0,0.1)}.existing-backups-table td{border-bottom:1px solid #DDD;display:block;font-size:.9em;text-align:left;width:100%;padding:10px;margin:0}.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before{content:attr(data-label);font-weight:bold;display:block;position:relative;left:auto;padding-bottom:10px;width:auto;text-align:left}.existing-backups-table td:last-child{border-bottom:0}.form-table td.updraft_existingbackup_date{width:inherit;max-width:100%}.existing-backups-table td.before-restore-button{min-height:36px}.updraft_next_scheduled_backups_wrapper{-ms-flex-direction:column;flex-direction:column}.updraft_next_scheduled_backups_wrapper>div{width:100%}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row{position:relative}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#FFF;border-left:4px solid #0572aa}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select){margin-left:50px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select{width:50px !important;position:absolute;left:0;top:0;box-sizing:border-box;height:100%;z-index:1;border:0;border-right:1px solid rgba(0,0,0,0.05)}#updraft-navtab-backups-content .updraft_existing_backups input[type="checkbox"]{height:25px}.updraft_migrate_intro button.button.button-primary.button-hero{display:block;margin-right:0;width:100%;max-width:100%}.updraftclone-main-row{-ms-flex-direction:column;flex-direction:column}.updraftclone-main-row>div{width:auto;max-width:none;margin-right:0;margin-bottom:10px}.form-table th{padding-bottom:10px}.updraft--flex{-ms-flex-direction:column;flex-direction:column}.updraft_restore_main{-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.updraft_restore_main--components{width:100%;min-height:0}.updraft_restore_main--activity{width:100%}div#updraftplus_ajax_restore_output,.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output{position:relative;top:0;bottom:auto}.updraft--flex>.updraft--two-halves,.updraft--flex>.updraft--one-half{width:100%}.updraft-restore-item{padding-bottom:10px;padding-top:10px}}@media screen and (max-width:600px){.updraft_next_scheduled_entity{float:none;width:100%;margin-bottom:2em}.updraft_time_now_wrapper{margin-top:0}#updraft_lastlogmessagerow h3{margin-bottom:5px}#updraft_lastlogmessagerow .updraft-log-link{display:block;float:none;margin:0;margin-bottom:10px}}@media only screen and (min-width:768px){.addon-activation-notice{left:20em}.existing-backups-table tbody tr.range-selection:hover,.existing-backups-table tbody tr.range-selection{background:#0572aa}.existing-backups-table tbody tr:hover{background:#f1f1f1}.existing-backups-table tbody tr td.before-restore-button{position:relative}.form-table .existing-backups-table thead th.check-column{padding-left:6px}.existing-backups-table tr td:first-child{border-left:4px solid transparent}.existing-backups-table tr.backuprowselected td:first-child{border-left-color:#0572aa}}@media screen and (min-width:670px){.expertmode .advanced_settings_container .advanced_settings_menu{float:left;width:215px;border-right:1px solid #ccc;border-bottom:0}.expertmode .advanced_settings_container .advanced_settings_content{padding-left:10px;padding-top:0}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:block}}@media only screen and (max-width:1068px){.updraft-more-plugins .udp-box{width:calc(50% - 10px);margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:100px}}@media only screen and (max-width:600px){.updraft-more-plugins .udp-box{width:100%;margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:auto}table.updraft_feat_table{display:block}table.updraft_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.updraft_feat_table td{display:block}table.updraft_feat_table td:first-child{width:100%;border-bottom:0}table.updraft_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.updraft_feat_table td:first-child:empty{display:none}td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}
2
- /*# sourceMappingURL=updraftplus-admin-1-16-26.min.css.map */
1
  @keyframes udp_blink{from{opacity:1;transform:scale(1)}to{opacity:.4;transform:scale(0.85)}}@keyframes udp_rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.max-width-600{max-width:600px}.max-width-700{max-width:700px}.width-900{max-width:900px}.width-80{width:80%}.updraft--flex{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft--flex>*{-ms-flex:1;flex:1;box-sizing:border-box}.updraft--flex>.updraft--one-half{width:50%;-ms-flex:auto;flex:auto}.updraft--flex>.updraft--two-halves{width:100%;-ms-flex:auto;flex:auto}.updraft-color--very-light-grey{background:#f8f8f8}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}.udpdraft__lifted{box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#updraft-wrap a .dashicons{text-decoration:none}.updraft-field-description,table.form-table td p.updraft-field-description{font-size:90%;line-height:1.2;font-style:italic;margin-bottom:5px}label.updraft_checkbox{display:block;margin-bottom:4px;margin-left:26px}label.updraft_checkbox>input[type=checkbox]{margin-left:-25px}div[id*="updraft_include_"]{margin-bottom:9px}.settings_page_updraftplus input[type="file"]{border:0}.settings_page_updraftplus .wipe_settings{padding-bottom:10px}.settings_page_updraftplus input[type="text"]{font-size:14px}.settings_page_updraftplus select{border-radius:4px;max-width:100%}input.updraft_input--wide,textarea.updraft_input--wide{max-width:442px;width:100%}#updraft-wrap .button-large{font-size:1.3em}.main-dashboard-buttons{border-width:4px;border-radius:12px;letter-spacing:0;font-size:17px;font-weight:bold;padding-left:.7em;padding-right:2em;padding:.3em 1em;line-height:1.7em;background:transparent;position:relative;border:2px solid;transition:all .2s;vertical-align:baseline;box-sizing:border-box;text-align:center;line-height:1.3em;margin-left:.3em;text-transform:none;line-height:1;text-decoration:none}.button-restore{border-color:#629ec0;color:#629ec0}.dashboard-main-sizing{border-width:4px;width:190px;line-height:1.7em}p.updraftplus-option{margin-top:0;margin-bottom:5px}p.updraftplus-option-inline{display:inline-block;padding-right:20px}span.updraftplus-option-label{display:block}#updraft-navtab-migrate-content .postbox{padding:18px}.updraftclone-main-row{display:-ms-flexbox;display:flex}.updraftclone-tokens{background:#f5f5f5;padding:20px;border-radius:10px;margin-right:20px;max-width:300px}.updraftclone-tokens p{margin:0}.updraftclone_action_box{background:#f5f5f5;padding:20px;border-radius:10px;-ms-flex:1;flex:1}.updraftclone_action_box p:first-child{margin-top:0}.updraftclone_action_box p:last-child{margin-bottom:0}.updraftclone_action_box #ud_downloadstatus3{margin-top:10px}span.tokens-number{font-size:46px;display:block}.button.updraft_migrate_widget_temporary_clone_show_stage0{display:none;position:absolute;right:0;top:0;height:100%;border-left:1px solid #CCC;padding-left:10px;padding-right:10px}.updraft_migrate_widget_temporary_clone_stage0_container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.updraft_migrate_widget_temporary_clone_stage0_box{margin-right:20px;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.updraft_migrate_widget_temporary_clone_stage0_box iframe,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:none}@media(min-width:1024px){.updraft_migrate_widget_temporary_clone_stage0_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_migrate_widget_temporary_clone_stage0_box{-ms-flex-preferred-size:45%;flex-basis:45%}.updraft_migrate_widget_temporary_clone_stage0_box iframe,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:right}}.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons{text-decoration:none;font-size:20px}.opened .button.updraft_migrate_widget_temporary_clone_show_stage0{display:inline-block}.opened .updraft_migrate_widget_temporary_clone_stage0{background:#f5f5f5;padding:20px;border-radius:8px;margin-bottom:21px}.clone-list{clear:both;width:100%;margin-top:40px}.clone-list table{width:100%;text-align:left}.clone-list table tr th{background:#e4e4e4}.clone-list table tr td{background:#f5f5f5;word-break:break-word}.clone-list table tr:nth-child(odd) td{background:#fafafa}.clone-list table td,.clone-list table th{padding:6px}.updraftplus-clone .updraft_row{padding-left:0;padding-right:0}button#updraft_migrate_createclone+.updraftplus_spinner{margin-top:13px}.button.button-hero.updraftclone_show_step_1{white-space:normal;height:auto;line-height:14px;padding-top:10px;padding-bottom:10px}.button.button-hero.updraftclone_show_step_1 span.dashicons{height:auto}.updraftplus_clone_status{color:red}a.updraft_migrate_add_site--trigger span.dashicons{text-decoration:none}.button-restore:hover,.button-migrate:hover,.button-backup:hover,.button-view-log:hover,.button-mass-selectors:hover,.button-delete:hover,.button-entity-backup:hover,.udp-button-primary:hover{border-color:#df6926;color:#df6926}.button-migrate{color:#eea920;border-color:#eea920}#updraft_migrate_tab_main{padding:8px}.updraft_migrate_widget_module_content{background:#FFF;border-radius:0;position:relative}body.js #updraft_migrate .updraft_migrate_widget_module_content{display:none}.updraft_migrate_widget_module_content>h3,div[class*="updraft_migrate_widget_temporary_clone_stage"]>h3{margin-top:0}.updraft_migrate_widget_module_content header{position:relative;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-grid-column-align:center;justify-items:center;margin-top:-18px;margin-left:-18px;margin-right:-18px;margin-bottom:15px;border-bottom:1px solid #CCC}.updraft_migrate_widget_module_content header h3,.updraft_migrate_widget_module_content header button.button.close{padding:10px;line-height:20px;height:auto;margin:0}.updraft_migrate_widget_module_content button.button.close{text-decoration:none;padding-left:5px;border-right:1px solid #CCC}.updraft_migrate_widget_module_content button.button.close .dashicons{margin-top:1px}.updraft_migrate_widget_module_content header h3{margin:0}.updraft_migrate_intro button.button.button-primary.button-hero{max-width:235px;word-wrap:normal;white-space:normal;line-height:1;height:auto;padding-top:13px;padding-bottom:13px;text-align:left;position:relative;margin-right:10px;margin-bottom:10px}.updraft_migrate_intro button.button.button-primary.button-hero .dashicons{position:absolute;left:10px;top:calc(50% - 8px)}#updraft_migrate .ui-widget-content a{color:#1c94c4}#updraft-wrap .ui-accordion .ui-accordion-header{background:#f6f6f6;margin:0;border-radius:0;padding-left:.5em;padding-right:.7em}#updraft-wrap .ui-widget{font-family:inherit}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w{background-position:-96px 0}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s{background-position:-64px 0}#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon{left:auto;right:5px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px rgba(91,157,217,0.22),0 0 2px 1px rgba(30,140,190,0.3);background:#FFF}#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons{color:#0572aa;opacity:1}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active{background:#f6f6f6;border-bottom:2px solid #0572aa;box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3)}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus{box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child){border-top:0}#updraft-wrap .ui-accordion .ui-accordion-header .dashicons{opacity:.4;margin-right:10px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:1}button.ui-dialog-titlebar-close:before{content:none !important}.updraft_next_scheduled_backups_wrapper{display:-ms-flexbox;display:flex;background:#FFF;-ms-grid-column-align:center;justify-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_next_scheduled_backups_wrapper>div{width:50%;background:#FFF;height:auto;padding:33px;box-sizing:border-box}.updraft_backup_btn_wrapper{text-align:center;border-left:1px solid #f1f1f1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.incremental-backups-only{display:none}.incremental-free-only{display:none}.incremental-free-only p{padding:5px;background:rgba(255,0,0,0.06);border:1px solid #bfbfbf}#updraft-delete-waitwarning span.spinner{visibility:visible;float:none;margin:0;margin-right:10px}button#updraft-backupnow-button .spinner,button#updraft-backupnow-button .dashicons-yes{display:none}button#updraft-backupnow-button.loading .spinner{display:inline-block;visibility:visible;margin-top:13px;margin-right:0}button#updraft-backupnow-button.loading{background-color:#efefef;border-color:#CCC;text-shadow:0 -1px 1px #bbc3c7,1px 0 1px #bbc3c7,0 1px 1px #bbc3c7,-1px 0 1px #bbc3c7;box-shadow:none}button#updraft-backupnow-button.finished .dashicons-yes{display:inline-block;visibility:visible;font-size:42px;margin-right:0;margin-top:2px}.updraft_next_scheduled_entity{width:50%;display:inline-block;float:left}.updraft_next_scheduled_entity .dashicons{color:#CCC;font-size:20px}.updraft_next_scheduled_entity strong{font-size:20px}.updraft_next_scheduled_heading{margin-bottom:10px}.updraft_next_scheduled_date_time{color:#46a84b}.updraft_time_now_wrapper{margin-top:68px;width:100%}.updraft_time_now_label,.updraft_time_now{display:inline-block;padding:7px}.updraft_time_now_label{background:#b7b7b7;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#FFF;margin-right:0;text-shadow:0 1px 2px rgba(0,0,0,0.4)}.updraft_time_now{background:#f1f1f1;border-top-right-radius:4px;border-bottom-right-radius:4px;margin-left:-3px}#updraft_lastlogmessagerow{margin:6px 0}#updraft_lastlogmessagerow{clear:both;padding:.25px 0}#updraft_lastlogmessagerow .updraft-log-link{float:right;margin-top:-2.5em;margin-right:2px}#updraft_lastlogmessagerow>div{clear:both;background:#FFF;padding:18px}#updraft_activejobs_table{overflow:hidden;width:100%;background:#fafafa;padding:0}.updraft_requeststart{padding:15px 33px;text-align:center}.updraft_requeststart .spinner{visibility:visible;float:none;vertical-align:middle;margin-top:-2px}a.updraft_jobinfo_delete.disabled{opacity:.4;color:inherit;text-decoration:none}.updraft_row{clear:both;transition:.3s all;padding:15px 33px}.updraft_row.deleting{opacity:.4}.updraft_existing_backups_count{padding:2px 8px;font-size:12px;background:#ca4a1e;color:#FFF;font-weight:bold;border-radius:10px}.form-table .existing-backups-table input[type="checkbox"]{border-radius:0}.form-table .existing-backups-table .check-column{width:40px;padding:0;padding-top:8px}.existing-backups-buttons{font-size:11px;line-height:1.4em;border-width:3px}.existing-backups-restore-buttons{font-size:11px;line-height:1.4em;border-width:3px}.button-delete{color:#e23900;border-color:#e23900;font-size:14px;line-height:1.4em;border-width:2px;margin-right:10px}.button-view-log,.button-mass-selectors{color:darkgrey;border-color:darkgrey;font-size:14px;line-height:1.4em;border-width:2px;margin-top:-1px}.button-view-log{width:120px}.button-existing-restore{font-size:14px;line-height:1.4em;border-width:2px;width:110px}.main-restore{margin-right:3%;margin-left:3%}.button-entity-backup{color:#555;border-color:#555;font-size:11px;line-height:1.4em;border-width:2px;margin-right:5px}.button-select-all{width:122px}.button-deselect{width:92px}#ud_massactions>.display-flex>.mass-selectors-margins,#updraft-delete-waitwarning>.display-flex>.mass-selectors-margins{margin-right:-4px}.udp-button-primary{border-width:4px;color:#0073aa;border-color:#0073aa;font-size:14px;height:40px}#ud_massactions .button-delete{margin-right:0}.stored_local{border-radius:5px;background-color:#007fe7;padding:3px 5px 5px 5px;color:#FFF;font-size:75%}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label>*{vertical-align:middle}.backup_date_label .dashicons{font-size:18px}.backup_date_label .clear-right{clear:right}.existing-backups-table .backup_date_label>div,.existing-backups-table .backup_date_label span>div{font-weight:bold}.udp-logo-70{width:70px;height:70px;float:left;padding-right:25px}h3 .thank-you{margin-top:0}.ws_advert{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.dismiss-dash-notice{float:right;position:relative;top:-20px}.updraft_exclude_container,.updraft_include_container{margin-left:24px;margin-top:5px;margin-bottom:10px;padding:15px;border:1px solid #DDD}label.updraft-exclude-label{font-weight:500;margin-bottom:5px;display:block}.updraft_add_exclude_item,#updraft_include_more_paths_another{display:inline-block;margin-top:10px}input.updraft_exclude_entity_field,.form-table td input.updraft_exclude_entity_field,.updraftplus-morefiles-row input[type=text]{width:calc(100% - 70px);max-width:400px}@media screen and (max-width:782px){.form-table td input.updraft_exclude_entity_field,.form-table td .updraftplus-morefiles-row input[type=text]{display:inline-block}}.updraft_exclude_entity_delete.dashicons,.updraft_exclude_entity_edit.dashicons,.updraft_exclude_entity_update.dashicons,.updraftplus-morefiles-row a.dashicons{margin-top:2px;font-size:20px;box-shadow:none;line-height:1;padding:3px;margin-right:4px}.updraft_exclude_entity_delete,.updraft_exclude_entity_delete:hover,.updraftplus-morefiles-row-delete{color:#ff6347}.updraft_exclude_entity_update.dashicons,.updraft_exclude_entity_update.dashicons:hover{color:#008000;font-weight:bold;font-size:22px;margin-left:4px}.updraft_exclude_entity_edit{margin-left:4px}.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete{display:none}.updraft-exclude-panel-heading{margin-bottom:8px}.updraft-exclude-panel-heading h3{margin:.5em 0 .5em 0}.updraft-exclude-submit.button-primary{margin-top:5px}.updraft_exclude_actions_list{font-weight:bold}.updraft-exclude-link{cursor:pointer}#updraft_include_more_options{padding-left:25px}#updraft_report_cell .updraft_reportbox,.updraft_small_box{padding:12px;margin:8px 0;border:1px solid #CCC;position:relative}#updraft_report_cell button.updraft_reportbox_delete,.updraft_box_delete_button,.updraft_small_box .updraft_box_delete_button{padding:4px;padding-top:6px;border:0;background:transparent;position:absolute;top:4px;right:4px;cursor:pointer}#updraft_report_cell button.updraft_reportbox_delete:hover{color:#de3c3c}a.updraft_report_another .dashicons{text-decoration:none;margin-top:2px}.updraft_report_dbbackup.updraft_report_disabled{color:#CCC}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_email{display:block;width:calc(100% - 50px);margin-bottom:9px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-settings-content table.form-table .notice p{max-width:none}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td{background-color:#efefef}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td{background-color:#e8e8e8}.updraft_settings_sectionheading{display:none}.updraft-backupentitybutton-disabled{background-color:transparent;border:0;color:#0074a2;text-decoration:underline;cursor:pointer;clear:none;float:left}.updraft-backupentitybutton{margin-left:8px}.updraft-bigbutton{padding:2px 0 !important;margin-right:14px !important;font-size:22px !important;min-height:32px;min-width:180px}tr[class*="_updraft_remote_storage_border"]{border-top:1px solid #CCC}.updraft_multi_storage_options{float:right;clear:right;margin-bottom:5px !important}.updraft_toggle_instance_label{vertical-align:top !important}.updraft_debugrow th{float:right;text-align:right;font-weight:bold;padding-right:8px;min-width:140px}.updraft_debugrow td{min-width:300px;vertical-align:bottom}#updraft_webdav_host_error,.onedrive_folder_error{color:red}label[for=updraft_servicecheckbox_updraftvault]{position:relative}#updraft-wrap .udp-info{position:absolute;right:10px;top:calc(50% - 10px)}#updraft-wrap span.info-trigger{display:inline-block;width:20px;height:20px;background:#FFF;color:#72777c;border-radius:30px;text-align:center;line-height:20px;box-shadow:0 1px 3px rgba(0,0,0,0.15)}#updraft-wrap .info-content-wrapper{display:none;position:absolute;bottom:20px;transform:translatex(calc(-50% + 10px));width:330px;padding-bottom:10px}#updraft-wrap .info-content-wrapper::before{content:'';position:absolute;bottom:-10px;border:10px solid transparent;border-top-color:#FFF;left:calc(50% - 10px)}#updraft-wrap .info-content{padding:20px;background:#FFF;border-radius:4px;box-shadow:0 3px 10px rgba(0,0,0,0.1);color:#72777c}#updraft-wrap .info-content h3{margin-top:0}#updraft-wrap .info-content p{margin-top:10px}#updraft-wrap .udp-info:hover .info-content-wrapper{display:block}.updraft_jstree .jstree-container-ul>.jstree-node,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-node{background:transparent}.updraft_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}.updraft_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}.updraft_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,div[id^="updraft_more_files_jstree_"] .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}.updraft_jstree_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}.updraft_jstree_info_container p{margin:1px;padding-left:10px;font-size:14px}#updraft_zip_download_item{display:none;color:#0073aa;padding-left:10px}#updraft_zip_download_notice{padding-left:10px}#updraft_exclude_files_folders_jstree{max-height:200px;overflow-y:scroll}.updraft_jstree{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}div[id^="updraft_more_files_container_"]{position:relative;display:none;width:100%;border:1px solid #CCC;background:#fafafa;margin-bottom:5px;margin-top:4px;box-shadow:0 5px 8px rgba(0,0,0,0.1)}div[id^="updraft_more_files_container_"]::before{content:' ';width:11px;height:11px;display:block;background:#fafafa;position:absolute;top:0;left:20px;border-top:1px solid #CCC;border-left:1px solid #CCC;transform:translatey(-7px) rotate(45deg)}input.updraft_more_path_editing{border-color:#0285ba}input.updraft_more_path_editing ~ a.dashicons{display:none}div[id^="updraft_jstree_buttons_"]{padding:10px;background:#e6e6e6}div[id^="updraft_jstree_container_"]{height:300px;width:100%;overflow:auto}div[id^="updraft_more_files_container_"] button{line-height:20px}button[id^="updraft_parent_directory_"]{margin:10px 10px 4px 10px;padding-left:3px}button[id^="updraft_jstree_confirm_"],button[id^="updraft_jstree_cancel_"]{display:none}input[id^="updraft_include_more_path_restore_"]{text-align:right}.updraftplus-morefiles-row-delete,.updraftplus-morefiles-row-edit{cursor:pointer}#updraft-wrap .form-table th{width:230px}#updraft-wrap .form-table .existing-backups-table th{width:auto}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{display:inline-block}.updraft-viewlogdiv input,.updraft-viewlogdiv a{border:0;background-color:transparent;color:#000;margin:0;padding:3px 4px;font-size:16px;line-height:26px}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.button.button-remove{color:white;background-color:#de3c3c;border-color:#c00000;box-shadow:0 1px 0 #c10100}.button.button-remove:hover,.button.button-remove:focus{border-color:#C00;color:#FFF;background:#C00}body.admin-color-midnight .button.button-remove{color:#de3c3c;background-color:#f7f7f7;border-color:#CCC;box-shadow:0 1px 0 #CCC}body.admin-color-midnight .button.button-remove:hover,body.admin-color-midnight .button.button-remove:focus{border-color:#ba281f}body.admin-color-midnight .button.button-remove:focus{box-shadow:inherit;box-shadow:0 0 3px rgba(0,115,170,0.8)}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file,#ud_downloadstatus3 .file{padding:1px;background:#ececec;border:solid 1px #CCC;margin:4px 0}.updraft_premium section{margin-bottom:20px}.updraft_premium_cta{background:#FFF;margin-top:30px;padding:0;border-left:4px solid #db6a03}.updraft_premium_cta a{font-weight:normal}.updraft_premium_cta__action{position:relative;text-align:center}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase;margin-bottom:7px}.updraft_premium_cta a.button.button-primary.button-hero+small{display:block;max-width:100%;text-align:center;color:#afafaf}.updraft_premium_cta a.button.button-primary.button-hero+small .dashicons{width:12px;height:12px}.updraft_premium_cta__top{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:18px 30px}.updraft_premium_cta__bottom{background:#f9f9f9;padding:5px 30px}.updraft_premium_cta__summary{margin-right:60px}.updraft_premium_cta h2{font-size:28px;font-weight:200;line-height:1;margin:0;margin-bottom:5px;letter-spacing:.05rem;color:#db6a03}.updraft_premium_cta ul li::after{color:#CCC}@media only screen and (max-width:768px){.updraft_premium_cta__top{-ms-flex-direction:column;flex-direction:column;text-align:center;-ms-flex-align:center;align-items:center}.updraft_premium_cta__summary{margin-right:0;margin-bottom:30px}}.udp-box{background:#FFF;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,0.1);text-align:center}.udp-box h3{margin:0}.udp-box__heading{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;background:0;box-shadow:none}.updraft-more-plugins{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;flex-wrap:wrap}.updraft-more-plugins img{max-width:200px;width:100%;display:inline-block}.updraft-more-plugins .udp-box{box-sizing:border-box;width:24%}.updraft-more-plugins .udp-box p:last-child{margin-bottom:0;padding-bottom:0}.updraft_premium_description_list{text-align:left;margin:0;font-size:12px}ul.updraft_premium_description_list,ul#updraft_restore_warnings{list-style:disc inside}ul.updraft_premium_description_list li{display:inline}ul.updraft_premium_description_list li::after{content:" | "}ul.updraft_premium_description_list li:last-child::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraftplus_com_login_status,.updraftplus_com_key_status{display:none;background:#FFF;border-left:4px solid #FFF;border-left-color:#dc3232;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraftplus_com_login_status.success{border-left-color:green}#updraft-wrap strong.success{color:green}.updraft_feat_table{border:0;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_th,.updraft_feat_table td{border:1px solid #f1f1f1;border-collapse:collapse;font-size:120%;background-color:white;text-align:center;padding:15px}.updraft_feat_table td{border-bottom-width:4px}.updraft_feat_table td:first-child{border-left:0}.updraft_feat_table td:last-child{border-right:0}.updraft_feat_table tr:last-child td{border-bottom:0}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){background-color:rgba(241,241,241,0.38);width:190px}.updraft_feat_table__header td img{display:block;margin:0 auto}.updraft_feat_table__header td{text-align:center}.updraft_feat_table .installed{font-size:14px}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.updraft_feat_table h4{margin:5px 0}.updraft_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.updraft_feat_table .dashicons-yes,.updraft_feat_table .updraft-yes{color:green}.updraft_feat_table .dashicons-no-alt,.updraft_feat_table .updraft-no{color:red}.updraft_tick_cell{text-align:center}.updraft_tick_cell img{margin:4px 0;height:24px}.ud_downloadstatus__close{border:0;background:transparent;width:auto;font-size:20px;padding:0;cursor:pointer}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress,#ud_downloadstatus3 .dlfileprogress{width:0;background:#0572aa;height:8px;transition:width .3s}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw,#ud_downloadstatus3 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file,#ud_downloadstatus3 .file{margin-top:8px}div[class^="updraftplus_downloader_container_"]{padding:10px}tr.updraftplusmethod h3{margin:0}tr.updraftplusmethod img{max-width:100%}#updraft_retain_db_rules .updraft_retain_rules_delete,#updraft_retain_files_rules .updraft_retain_rules_delete{cursor:pointer;color:red;font-size:120%;font-weight:bold;border:0;border-radius:3px;padding:2px;margin:0 6px;text-decoration:none;display:inline-block}#updraft_retain_db_rules .updraft_retain_rules_delete:hover,#updraft_retain_files_rules .updraft_retain_rules_delete:hover{cursor:pointer;color:white;background:red}#updraft_backup_started{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.blockUI.blockOverlay.ui-widget-overlay{background:#000}.updraft_success_popup{text-align:center;padding-bottom:30px}.updraft_success_popup>.dashicons{font-size:100px;width:100px;height:100px;line-height:100px;padding:0;border-radius:50%;margin-top:30px;display:block;margin-left:auto;margin-right:auto;background:#e2e6e5}.updraft_success_popup>.dashicons.dashicons-yes{text-indent:-5px}.updraft_success_popup.success>.dashicons{color:green}.updraft_success_popup.warning>.dashicons{color:#888}.updraft_success_popup--message{padding:20px}.button.updraft-close-overlay .dashicons{text-decoration:none;font-size:20px;margin-left:-5px;padding:0;transform:translatey(3px)}.updraft_saving_popup img{animation-name:udp_blink;animation-duration:610ms;animation-iteration-count:infinite;animation-direction:alternate;animation-timing-function:ease-out}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.updated.backup-restored{padding-top:15px;padding-bottom:15px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.updraft_all-files{color:blue}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}section.premium-upgrade-purchase-success{padding:2em;background:#fafafa;text-align:center;box-shadow:0 14px 40px rgba(0,0,0,0.1)}section.premium-upgrade-purchase-success h3{font-size:2em;color:green}section.premium-upgrade-purchase-success h3 .dashicons{display:block;margin:0 auto;font-size:60px;width:60px;height:60px;border-radius:50%;background:green;color:#FFF;margin-bottom:20px}section.premium-upgrade-purchase-success h3 .dashicons::before{display:inline-block;margin-left:-4px;margin-top:2px}section.premium-upgrade-purchase-success p{font-size:120%}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions,#backupnow_includecloud_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_activejobsrow th{max-width:112px;margin:0;padding:13px 0 0 0}#updraft_lastlogmessagerow .last-message{padding-top:20px;display:block}.updraft_simplepie{vertical-align:top}.download-backups{margin-top:8px}.download-backups .updraft_download_button{margin-right:6px}.download-backups .ud-whitespace-warning,.download-backups .ud-bom-warning{background-color:pink;padding:8px;margin:4px;border:1px dotted}.download-backups .ul{list-style:none inside;max-width:800px;margin-top:6px;margin-bottom:12px}#updraft-plupload-modal{margin:16px 0}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:100%}.ud_downloadstatus{padding:10px 0}#ud_massactions,#updraft-delete-waitwarning{padding:14px;background:#f1f1f1;position:absolute;left:0;top:100%}#ud_massactions>*,#updraft-delete-waitwarning>*{vertical-align:middle}#ud_massactions .updraftplus-remove{display:inline-block;margin-right:0}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative}small.ud_massactions-tip{display:inline-block;opacity:.5;font-style:italic;margin-left:20px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:35px;position:relative}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}.notice.updraft-restore-option{padding:12px;margin:8px 0 4px 0;border-left-color:#CCC}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraftplus_restore_tables_options_container{max-height:250px;overflow:auto}.updraft_debugrow th{vertical-align:top;padding-top:6px;max-width:140px}.expertmode p{font-size:125%}.expertmode .call-wp-action{width:300px;height:22px}.updraftplus-lock-advert{clear:left;max-width:600px}.uncompressed-data{clear:left;max-width:600px}.delete-old-directories{padding:8px;padding-bottom:12px}.active-jobs{width:100%;text-align:center;padding:33px}.job-id{margin-top:0;margin-bottom:8px}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#1d8ec2;transition:width .3s}.curstage{z-index:1;border-radius:2px;margin-top:8px;width:100%;height:26px;line-height:26px;position:relative;text-align:center;font-style:italic;color:#FFF;background-color:#b7b7b7;text-shadow:0 1px 2px rgba(0,0,0,0.3)}.curstage-info{display:inline-block;z-index:2}.retain-files{width:48px}.backup-interval-description tr td div{max-width:670px}#updraft-manualdecrypt-modal{width:85%;margin:6px;margin-left:100px}.directory-permissions{font-size:110%;font-weight:bold}.double-warning{border:1px solid;padding:6px}.raw-backup-info{font-style:italic;font-weight:bold;font-size:120%}.updraft_existingbackup_date{width:22%;max-width:140px}.updraft_existing_backups_wrapper{margin-top:20px;border-top:1px solid #DDD}.updraft-no-backups-msg{text-align:center}.tr-bottom-4{margin-bottom:4px}.existing-backups-table th{padding:8px 10px}.form-table .backup-date{width:172px}.form-table .backup-data{width:426px}.form-table .updraft_backup_actions{width:272px}.existing-date{box-sizing:border-box;max-width:140px;width:25%}.line-break-tr{height:2px;padding:1px;margin:0}.line-break-td{margin:0;padding:0}.td-line-color{height:2px;background-color:#888}.raw-backup{max-width:140px}.existing-backups-actions{padding:1px;margin:0}.existing-backups-border{height:2px;padding:1px;margin:0}.existing-backups-border>td{margin:0;padding:0}.existing-backups-border>div{height:2px;background-color:#AAA}.updraft_existing_backup_date{max-width:140px}.updraftplus-upload{margin-right:6px;float:left;clear:none}.before-restore-button{padding:1px;margin:0}.before-restore-button div{float:none;display:inline-block}.table-separator-tr{height:2px;padding:1px;margin:0}.table-separator-td{margin:0;padding:0}.end-of-table-div{height:2px;background-color:#AAA}.last-backup-job{padding-top:3% !important}.line-height-03{line-height:.3 !important}.line-height-13{line-height:1.3 !important}.line-height-23{line-height:2.3 !important}#updraft_diskspaceused{color:#df6926}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}#updraft-wrap .dashicons.dashicons-adapt-size{line-height:inherit;font-size:inherit}#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size){vertical-align:middle;margin-top:-3px}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option-container{text-align:center}.updraftplusmethod.updraftvault .vault-purchase-option{width:40%;text-align:center;padding-top:20px;display:inline-block}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3:first-child{margin-top:5px !important}.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools{display:none}.expertmode .advanced_settings_container .advanced_settings_content .site_info{display:block}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:inline-block;cursor:pointer;padding:5px;color:#000}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text{font-size:16px}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover{background-color:#eaeaea}.expertmode .advanced_settings_container .advanced_settings_menu .active{background-color:#3498db;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_menu .active:hover{background-color:#72c5fd;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_content input#import_settings{height:auto !important}div#updraft-wrap a{cursor:pointer !important}.updraftcentral_wizard_option{width:45%;float:left;text-align:center}.updraftcentral_wizard_option label{margin-bottom:8px}#updraftcentral_keys_table{display:none}.create_key_container{border:1px solid;border-radius:4px;padding:0 0 6px 6px;margin-bottom:8px}.updraftcentral_cloud_connect{border-radius:4px;border:1px solid #000;padding:0 20px;margin-top:30px;background-color:#FFF}.updraftcentral_cloud_error{border:1px solid #000;padding:3px 10px;border-left:3px solid #F00;background-color:#FFF;margin-bottom:10px}.updraftcentral_cloud_info{border:1px solid #000;padding:3px 10px;border-left:3px solid #ef8f31;background-color:#FFF;margin-bottom:10px}.updraftplus_spinner.spinner{padding-left:25px;float:none}.updraftplus_spinner.spinner.visible{visibility:visible;width:auto}.updraftcentral_cloud_notices .updraftplus_spinner{margin-top:-5px}.updraftcentral-subheading{font-size:14px;margin-top:-10px;margin-bottom:20px}#updraftcentral_cloud_form input#email,#updraftcentral_cloud_form input#password{min-width:250px}.updraftcentral-data-consent{font-size:13px;margin-bottom:10px}.updraftcentral_cloud_wizard_image{float:left;min-width:100px;margin-right:25px}.updraftcentral_cloud_wizard{float:left}.updraftcentral_cloud_clear{clear:both}.updraftplus-settings-footer{margin-top:30px}.updraftplus-top-menu{padding:.5em}#updraft_inpage_backup #updraft_activejobs_table{background:transparent}#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link{float:none}#updraft_inpage_backup #updraft_activejobsrow .updraft_row{-ms-flex-direction:column;flex-direction:column;padding-left:20px;padding-right:20px}#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container{width:100%}#updraft_inpage_backup #updraft_activejobs_table{overflow:inherit}#updraft_inpage_backup span#updraft_lastlogcontainer{padding:18px;background:#fafafa;display:block;font-size:90%;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup div#updraft_activejobsrow{background:#fafafa;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup #updraft_lastlogmessagerow>div{background:transparent;padding:0}#updraft_inpage_backup .last-message>strong{display:block;margin-top:13px}.updraft_restore_container{display:block;position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999;padding-top:30px;background:#f1f1f1;overflow:auto}.updraft-modal-is-opened .select2-container{z-index:99999}body.updraft-modal-is-opened{overflow:hidden}.updraft_restore_container h2{margin:0}.updraft_restore_container .updraftmessage{box-sizing:border-box;max-width:860px;margin-left:auto;margin-right:auto}.updraft_restore_main{max-width:860px;margin:0 auto;margin-top:20px;background:#FFF;box-shadow:0 3px 3px rgba(0,0,0,0.1);position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;box-sizing:border-box}.updraft_restore_main--header{font-size:20px;font-weight:bold;text-align:center;padding-top:16px;line-height:20px;width:100%;max-width:100%;padding-right:30px;padding-left:30px;box-sizing:border-box}.updraft_restore_main--activity{position:relative;width:calc(100% - 350px);box-sizing:border-box}.updraft_restore_main--activity-title{padding:20px;margin:0}.show-credentials-form.updraft_restore_main .updraft_restore_main--activity-title{display:none}.updraft_restore_main--components{width:350px;padding:20px;box-sizing:border-box;background:#f8f8f8;min-height:350px}.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output{background:#23282d;color:#e3e3e3;font-family:monospace;padding:19px;overflow:auto;position:absolute;top:60px;bottom:0;right:0;left:0}#updraftplus_ajax_restore_output form{white-space:normal;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif}#updraftplus_ajax_restore_output .updraft_restore_errors{border:1px solid #dc3232;padding:10px 20px;white-space:normal}.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output h2{color:#00a0d2;padding-top:10px;padding-bottom:5px}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output{padding:20px;border-left:1px solid #EEE}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output #message{margin-left:0;margin-right:0}.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table td,.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table th{padding-bottom:0}.updraft_restore_main.show-credentials-form .updraft_restore_main--components{opacity:.2}.updraft_restore_main.show-credentials-form div.error .restore-credential-errors--list p{margin:0;list-style-type:disc;display:list-item;list-style-position:inside}.restore-credential-errors>:first-child{margin-top:0}.restore-credential-errors>:last-child{margin-bottom:0}ul.updraft_restore_components_list li{color:#bababa;font-size:1.2em;margin-bottom:1em}ul.updraft_restore_components_list li::before{content:'\f469';font-family:dashicons;font-size:20px;vertical-align:middle;display:inline-block;margin-right:7px}ul.updraft_restore_components_list li span{vertical-align:middle}ul.updraft_restore_components_list li.done{color:green}ul.updraft_restore_components_list li.done::before{content:"\f147"}ul.updraft_restore_components_list li.active{color:inherit}ul.updraft_restore_components_list li.active::before{content:"\f463";animation:udp_rotate 1s linear infinite}ul.updraft_restore_components_list li.error{color:#dc3232}ul.updraft_restore_components_list li.error::before{content:"\f335"}.updraft_restore_result{padding:10px 0;font-size:1.3em;margin-bottom:1em;vertical-align:middle;display:none}.updraft_restore_result.restore-error{color:#dc3232}.updraft_restore_result.restore-success{color:green}.updraft_restore_result .dashicons{font-size:35px;height:35px;line-height:33px;width:35px}.updraft_restore_result span{vertical-align:middle}#updraft-restore-modal{width:100%}div#updraft-restore-modal .notice{background:#f8f8f8}.updraft-restore-modal--stage .updraft--two-halves,.updraft-restore-modal--stage .updraft--one-half{padding:20px 30px}.updraft-restore-modal--header{padding:20px;padding-bottom:0;text-align:center;border-bottom:1px solid #EEE}.updraft-restore-modal--header h3{margin:0;padding:0}.updraft-restore-item{padding-bottom:4px}.updraft-restore-buttons{padding-top:10px}ul.updraft-restore--stages{display:inline-block;margin:0;height:28px}ul.updraft-restore--stages li{display:inline-block;position:relative;width:12px;height:12px;background:#d2d2d2;border-radius:20px;line-height:1;margin:0 4px;vertical-align:middle}ul.updraft-restore--stages li.active{background:#444}.updraft-restore--footer{border-top:1px solid #EEE;padding:20px;text-align:center;position:-webkit-sticky;position:sticky;bottom:0;background:#FFF;width:100%;box-sizing:border-box}.updraft-restore--footer .updraft-restore--cancel{position:absolute;left:20px;top:auto}.updraft-restore--footer .updraft-restore--next-step{position:absolute;right:20px;top:auto}ul.updraft-restore--stages li span{position:absolute;width:120px;bottom:calc(100% + 14px);left:-55px;background:rgba(0,0,0,0.85882);padding:5px;box-sizing:border-box;border-radius:4px;color:#FFF;text-align:center;display:none}ul.updraft-restore--stages li:hover span{display:inline-block}.updraft-restore-item input[type=checkbox]{margin-bottom:-5px}.updraft-restore-item input[type=checkbox]:checked+label{font-weight:bold}div#updraft-restore-modal .ud_downloadstatus__close{display:none}#ud_downloadstatus2:not(:empty){margin-top:15px}.dashicons.rotate{animation:udp_rotate 1s linear infinite}span#updraftplus_ajax_restore_last_activity{font-size:.8rem;font-weight:normal;float:right}.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice{margin:-20px -20px 20px;padding:19px}.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice button{margin-right:5px}#updraft_migrate_receivingsites .updraftplus-remote-sites-selector .button-primary,.updraft_migrate_add_site .input-field input,.updraft_migrate_add_site button{vertical-align:middle}#updraft_migrate_receivingsites .text-link-menu a:not(:last-child){padding-right:10px}#updraft_migrate_receivingsites a.updraft_migrate_clear_sites span.dashicons-trash:before{font-size:17px}#updraft_migrate_receivingsites .updraft_migrate_add_site{clear:both}@media only screen and (min-width:1024px){#updraft_activejobsrow .updraft_row{display:-ms-flexbox;display:flex;-ms-flex-align:baseline;align-items:baseline}#updraft_activejobsrow .updraft_row .updraft_col{-ms-flex:auto;flex:auto}#updraft_activejobsrow .updraft_progress_container{width:calc(100% - 230px)}}@media only screen and (min-width:782px){.settings_page_updraftplus input[type=text],.settings_page_updraftplus input[type=password],.settings_page_updraftplus input[type=number]{line-height:1.42;height:27px;padding:2px 6px;color:#555}.settings_page_updraftplus input[type="number"]{height:31px}#ud_massactions.active,#updraft-delete-waitwarning.active{position:fixed;bottom:0;left:160px;right:0;top:auto;background:#FFF;z-index:3;box-shadow:0 0 10px rgba(0,0,0,0.2)}body.folded #ud_massactions.active,body.folded #updraft-delete-waitwarning.active{left:36px}.updraft-after-form-table{margin-left:250px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.range-selection:not(.backuprowselected) .updraft_existingbackup_date .backup_date_label{color:#FFF}}@media only screen and (min-width:782px) and (max-width:960px){body.auto-fold #ud_massactions.active,body.auto-fold #updraft-delete-waitwarning.active{left:36px}}@media only screen and (max-width:782px){#updraft-wrap{margin-right:0}#updraft-wrap .form-table td{padding-right:0}label.updraft_checkbox{margin-bottom:8px;margin-top:8px;margin-left:36px}.updraft_retain_rules{position:relative;margin-right:0;border:1px solid #CCC;padding:5px;margin-bottom:-1px}.updraft_retain_rules_delete{position:absolute;right:0;top:5px}a[id*=updraft_retain_]{display:block;padding:15px 15px 15px 0}label.updraft_checkbox>input[type=checkbox]{margin-left:-33px}#updraft-backupnow-button{margin:0;display:block;width:100%}.updraft_next_scheduled_backups_wrapper>.updraft_backup_btn_wrapper{padding-top:0}#ud_massactions,#updraft-delete-waitwarning{width:100%;box-sizing:border-box;text-align:center}#ud_massactions.active{position:fixed;top:auto;bottom:0;width:100%;box-sizing:border-box;text-align:center;box-shadow:0 -3px 15px rgba(0,0,0,0.08);background:#FFF;z-index:3}#ud_massactions strong{display:block;margin-bottom:5px}small.ud_massactions-tip{display:block}.existing-backups-table .backup_date_label>div,.existing-backups-table .backup_date_label span>div{font-weight:normal}.existing-backups-table .backup_date_label .clear-right{display:inline-block}table.widefat.existing-backups-table{border:0;box-shadow:none;background:transparent}.existing-backups-table thead{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;padding:0;margin:0}.existing-backups-table tr{display:block;margin-bottom:.625em;padding-bottom:16.625px;width:100%;padding:0;margin:0;margin-bottom:10px;background:#FFF;box-shadow:0 2px 3px rgba(0,0,0,0.1)}.existing-backups-table td{border-bottom:1px solid #DDD;display:block;font-size:.9em;text-align:left;width:100%;padding:10px;margin:0}.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before{content:attr(data-label);font-weight:bold;display:block;position:relative;left:auto;padding-bottom:10px;width:auto;text-align:left}.existing-backups-table td:last-child{border-bottom:0}.form-table td.updraft_existingbackup_date{width:inherit;max-width:100%}.existing-backups-table td.before-restore-button{min-height:36px}.updraft_next_scheduled_backups_wrapper{-ms-flex-direction:column;flex-direction:column}.updraft_next_scheduled_backups_wrapper>div{width:100%}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row{position:relative}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#FFF;border-left:4px solid #0572aa}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select){margin-left:50px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select{width:50px !important;position:absolute;left:0;top:0;box-sizing:border-box;height:100%;z-index:1;border:0;border-right:1px solid rgba(0,0,0,0.05)}#updraft-navtab-backups-content .updraft_existing_backups input[type="checkbox"]{height:25px}.updraft_migrate_intro button.button.button-primary.button-hero{display:block;margin-right:0;width:100%;max-width:100%}.updraftclone-main-row{-ms-flex-direction:column;flex-direction:column}.updraftclone-main-row>div{width:auto;max-width:none;margin-right:0;margin-bottom:10px}.form-table th{padding-bottom:10px}.updraft--flex{-ms-flex-direction:column;flex-direction:column}.updraft_restore_main{-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.updraft_restore_main--components{width:100%;min-height:0}.updraft_restore_main--activity{width:100%}div#updraftplus_ajax_restore_output,.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output{position:relative;top:0;bottom:auto}.updraft--flex>.updraft--two-halves,.updraft--flex>.updraft--one-half{width:100%}.updraft-restore-item{padding-bottom:10px;padding-top:10px}}@media screen and (max-width:600px){.updraft_next_scheduled_entity{float:none;width:100%;margin-bottom:2em}.updraft_time_now_wrapper{margin-top:0}#updraft_lastlogmessagerow h3{margin-bottom:5px}#updraft_lastlogmessagerow .updraft-log-link{display:block;float:none;margin:0;margin-bottom:10px}}@media only screen and (min-width:768px){.addon-activation-notice{left:20em}.existing-backups-table tbody tr.range-selection:hover,.existing-backups-table tbody tr.range-selection{background:#0572aa}.existing-backups-table tbody tr:hover{background:#f1f1f1}.existing-backups-table tbody tr td.before-restore-button{position:relative}.form-table .existing-backups-table thead th.check-column{padding-left:6px}.existing-backups-table tr td:first-child{border-left:4px solid transparent}.existing-backups-table tr.backuprowselected td:first-child{border-left-color:#0572aa}}@media screen and (min-width:670px){.expertmode .advanced_settings_container .advanced_settings_menu{float:left;width:215px;border-right:1px solid #ccc;border-bottom:0}.expertmode .advanced_settings_container .advanced_settings_content{padding-left:10px;padding-top:0}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:block}}@media only screen and (max-width:1068px){.updraft-more-plugins .udp-box{width:calc(50% - 10px);margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:100px}}@media only screen and (max-width:600px){.updraft-more-plugins .udp-box{width:100%;margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:auto}table.updraft_feat_table{display:block}table.updraft_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.updraft_feat_table td{display:block}table.updraft_feat_table td:first-child{width:100%;border-bottom:0}table.updraft_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.updraft_feat_table td:first-child:empty{display:none}td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}
2
+ /*# sourceMappingURL=updraftplus-admin-1-16-28.min.css.map */
css/{updraftplus-admin-1-16-26.min.css.map → updraftplus-admin-1-16-28.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/updraftplus-admin.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,WAAW;EACX,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb,uBAAuB;EACvB;;CAED;;AAED;;CAEC;EACC,qBAAqB;EACrB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,oBAAgB;KAAhB,gBAAgB;CAChB;;AAED;CACC,YAAQ;KAAR,QAAQ;CACR,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,eAAW;KAAX,WAAW;CACX;;AAED;CACC,YAAY;CACZ,eAAW;KAAX,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,uCAAuC;CACvC;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,eAAe;CACf,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,aAAa;CACb;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;;CAEC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED,qBAAqB;;AAErB,kBAAkB;AAClB;CACC,kBAAkB;CAClB,oBAAoB;CACpB,oBAAoB;CACpB,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,wBAAwB;CACxB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,yBAAyB;CACzB,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,gCAAgC;CAChC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;;EAEE;;AAEF;CACC,cAAc;CACd;;AAED,gBAAgB;;AAEhB;CACC,qBAAc;CAAd,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,YAAQ;KAAR,QAAQ;CACR;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED,yBAAyB;AACzB;CACC,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT,OAAO;CACP,aAAa;CACb,4BAA4B;CAC5B,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,2BAAuB;KAAvB,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,8BAAiB;KAAjB,iBAAiB;CACjB;;AAED;;CAEC,YAAY;CACZ;;AAED;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EACpB,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,6BAAgB;MAAhB,gBAAgB;EAChB;;CAED;;EAEC,aAAa;EACb;;CAED;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,sBAAsB;AACtB;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,uBAAuB;CACvB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,aAAa;CACb;;AAED,oBAAoB;AACpB;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,qCAAqC;AACrC;CACC,oBAAoB;CACpB,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,aAAa;;AAEb;CACC,sBAAsB;CACtB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,6BAA6B;AAC7B;CACC,mBAAmB;CACnB,qBAAc;CAAd,cAAc;CACd,2BAAsB;KAAtB,sBAAsB;CACtB,8BAAsB;KAAtB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,oBAAoB;CACpB,8BAA8B;CAC9B;;AAED;;CAEC,cAAc;CACd,kBAAkB;CAClB,aAAa;CACb,UAAU;CACV;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,oBAAoB;CACpB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB,qBAAqB;CACrB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB;;AAED;;EAEE;AACF;CACC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB,UAAU;CACV,iBAAiB;CACjB,oBAAoB;CACpB,qBAAqB;CACrB;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,cAAc;CACd,oFAAoF;CACpF,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB,iCAAiC;CACjC,iDAAiD;CACjD;;AAED;CACC,wGAAwG;CACxG;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,kEAAkE;CAClE,WAAW;CACX;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,iBAAiB;CACjB,8BAAsB;KAAtB,sBAAsB;CACtB,oBAAgB;KAAhB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB,aAAa;CACb,yBAAyB;CACzB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,+BAA+B;CAC/B,sBAAwB;KAAxB,wBAAwB;CACxB,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,kCAAkC;CAClC,0BAA0B;CAC1B;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,UAAU;CACV,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,0FAA0F;CAC1F,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,gBAAgB;CAChB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,sBAAsB;CACtB,YAAY;CACZ;;GAEE;CACF;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,4BAA4B;CAC5B,+BAA+B;CAC/B,YAAY;CACZ,gBAAgB;CAChB,0CAA0C;CAC1C;;AAED;CACC,oBAAoB;CACpB,6BAA6B;CAC7B,gCAAgC;CAChC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,oBAAoB;CACpB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB,YAAY;CACZ,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;;AAEtB,4BAA4B;;AAE5B;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX;;AAED;;CAEC,kBAAkB;CAClB,gBAAgB;CAChB,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB,iBAAiB;CACjB;;AAED;;;CAGC,yBAAyB;CACzB,iBAAiB;CACjB;;AAED;;CAEC;;EAEC,sBAAsB;EACtB;;CAED;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB;;AAED;;;CAGC,eAAe;CACf;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;;;CAGC,aAAa;CACb,iBAAiB;CACjB,aAAa;CACb,wBAAwB;CACxB,mBAAmB;CACnB,SAAS;CACT,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;;CAEC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb,aAAa;CACb,8BAA8B;CAC9B;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ,aAAa;CACb,iBAAiB;CACjB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB,kBAAkB;CAClB,0CAA0C;CAC1C;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,aAAa;CACb,yCAAyC;CACzC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd,+BAA+B;CAC/B,uBAAuB;CACvB,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd,iBAAiB;CACjB,mBAAmB;CACnB,0CAA0C;CAC1C,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,YAAY;CACZ,uBAAuB;CACvB,oBAAoB;CACpB,mBAAmB;CACnB,gBAAgB;CAChB,yCAAyC;CACzC;;AAED;CACC,aAAa;CACb,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,2BAA2B;CAC3B,4BAA4B;CAC5B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,YAAY;CACZ,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,sBAAsB;CACtB,4BAA4B;CAC5B;;AAED;;CAEC,mBAAmB;CACnB,YAAY;CACZ,iBAAiB;CACjB;;AAED,mDAAmD;AACnD;CACC,eAAe;CACf,0BAA0B;CAC1B,mBAAmB;CACnB,yBAAyB;CACzB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,iBAAiB;CACjB,WAAW;CACX,+BAA+B;CAC/B;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,0BAA0B;CAC1B,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,uBAA+B;KAA/B,+BAA+B;CAC/B,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,UAAU;CACV,mBAAmB;CACnB,wBAAwB;CACxB,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,2BAAuB;MAAvB,uBAAuB;EACvB,mBAAmB;EACnB,uBAAoB;MAApB,oBAAoB;EACpB;;CAED;EACC,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,cAAc;CACd,yCAAyC;CACzC,mBAAmB;CACnB;;AAED;CACC,UAAU;CACV;;AAED;CACC,4BAAmB;KAAnB,2BAAmB;KAAnB,mBAAmB;CACnB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;EAEE;AACF;CACC,qBAAc;CAAd,cAAc;CACd,wBAAoB;KAApB,oBAAoB;CACpB,oBAAgB;KAAhB,gBAAgB;CAChB,uBAA+B;KAA/B,+BAA+B;CAC/B,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,uBAAuB;CACvB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,UAAU;CACV,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,iBAAiB;CACjB,4BAA4B;CAC5B,2BAA2B;CAC3B,uCAAuC;CACvC,qBAAqB;CACrB,kBAAkB;CAClB;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,4CAA4C;CAC5C,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,aAAa;CACb;;AAED;CACC,aAAa;CACb,wBAAwB;CACxB,YAAY;CACZ,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd,sBAAsB;CACtB,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED,qBAAqB;AACrB;CACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,WAAW;CACX,2BAA2B;CAC3B;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,oCAAoC;CACpC,+BAA+B;CAC/B,oCAAoC;CACpC;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,mBAAmB;CACnB,6CAA6C;CAC7C;;AAED;CACC,eAAe;CACf,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,iBAAiB;CACjB,UAAU;CACV,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,+BAA+B;CAC/B,mBAAmB;CACnB,QAAQ;CACR,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,0BAA0B;CAC1B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CAGC,uBAAuB;CACvB,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED,uCAAuC;AACvC,6CAA6C;AAC7C;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,4CAA4C;CAC5C;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,uBAAuB;CACvB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,4BAA4B;CAC5B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,+BAA+B;CAC/B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAAuB;KAAvB,uBAAuB;CACvB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,eAAe;CACf,eAAe;CACf,2CAA2C;CAC3C;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,WAAW;CACX;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED,sBAAsB;;AAEtB;CACC,eAAe;CACf,gBAAgB;CAChB,OAAO;CACP,QAAQ;CACR,SAAS;CACT,UAAU;CACV,eAAe;CACf,kBAAkB;CAClB,oBAAoB;CACpB,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB,iBAAiB;CACjB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,eAAe;CACf,iBAAiB;CACjB,iBAAiB;CACjB,yCAAyC;CACzC,mBAAmB;CACnB,qBAAc;CAAd,cAAc;CACd,oBAAgB;KAAhB,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,YAAY;CACZ,gBAAgB;CAChB,oBAAoB;CACpB,mBAAmB;CACnB,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,oBAAoB;CACpB,eAAe;CACf,uBAAuB;CACvB,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,UAAU;CACV,SAAS;CACT,QAAQ;CACR;;AAED;CACC,oBAAoB;CACpB,iIAAiI;CACjI;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;;CAEC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,sBAAsB;CACtB,mBAAmB;CACnB,4BAA4B;CAC5B;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB,gBAAgB;CAChB,uBAAuB;CACvB,sBAAsB;CACtB,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,yCAAyC;CACzC;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ;;AAED;CACC,uBAAuB;CACvB;;AAED,mBAAmB;;AAEnB;CACC,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB,8BAA8B;CAC9B;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,oBAAoB;CACpB,eAAe;CACf,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B,cAAc;CACd,mBAAmB;CACnB,yBAAiB;CAAjB,iBAAiB;CACjB,UAAU;CACV,iBAAiB;CACjB,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,UAAU;CACV;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,UAAU;CACV;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,0BAA0B;CAC1B,YAAY;CACZ,mCAAsB;CACtB,aAAa;CACb,uBAAuB;CACvB,mBAAmB;CACnB,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED,0CAA0C;AAC1C;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,yCAAyC;CACzC;;AAED,sBAAsB;;AAEtB;CACC,iBAAiB;CACjB,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,yBAAyB;CACzB,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,qBAAc;EAAd,cAAc;EACd,yBAAsB;MAAtB,sBAAsB;EACtB;;CAED;EACC,eAAW;MAAX,WAAW;EACX;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;;;EAGC,yBAAyB;EACzB,kBAAkB;EAClB,6BAA6B;EAC7B,aAAa;EACb,iBAAiB;EACjB,YAAY;EACZ;;CAED;EACC,aAAa;EACb;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,YAAY;EACZ,SAAS;EACT,UAAU;EACV,iBAAiB;EACjB,WAAW;EACX,wCAAwC;EACxC;;CAED;EACC,WAAW;EACX;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,YAAY;EACZ;;CAED;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,kBAAkB;EAClB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,uBAAuB;EACvB,aAAa;EACb,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,SAAS;EACT,SAAS;EACT;;CAED;EACC,eAAe;EACf,0BAA0B;EAC1B;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,UAAU;EACV,eAAe;EACf,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,UAAU;EACV,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB,4CAA4C;EAC5C,iBAAiB;EACjB,WAAW;EACX;;CAED;EACC,eAAe;EACf,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf;;AAEF;;;;;;;;;IASI;;CAEH;EACC,oBAAoB;EACpB;;CAED;EACC,sBAAsB;EACtB;;CAED;EACC,UAAU;EACV,iBAAiB;EACjB,wBAAwB;EACxB;;CAED;EACC,aAAa;EACb,oBAAoB;EACpB,YAAY;EACZ,aAAa;EACb,iBAAiB;EACjB,WAAW;EACX,mBAAmB;EACnB,WAAW;EACX,WAAW;EACX,UAAU;EACV;;CAED;EACC,eAAe;EACf,sBAAsB;EACtB,yBAAyB;EACzB,YAAY;EACZ,WAAW;EACX,UAAU;EACV,oBAAoB;EACpB,iBAAiB;EACjB,yCAAyC;EACzC;;CAED;EACC,8BAA8B;EAC9B,eAAe;EACf,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,cAAc;EACd,UAAU;EACV;;CAED;EACC;;;IAGE;EACF,0BAA0B;EAC1B,kBAAkB;EAClB,eAAe;EACf,mBAAmB;EACnB,WAAW;EACX,qBAAqB;EACrB,YAAY;EACZ,iBAAiB;EACjB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,uBAAuB;EACvB,+BAA+B;EAC/B;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,uBAAuB;EACvB,mBAAmB;EACnB,QAAQ;EACR,OAAO;EACP,uBAAuB;EACvB,aAAa;EACb,WAAW;EACX,aAAa;EACb,4CAA4C;EAC5C;;CAED;EACC,aAAa;EACb;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB,YAAY;EACZ,gBAAgB;EAChB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ,gBAAgB;EAChB,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;EACC,qBAAqB;EACrB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,oBAAgB;MAAhB,gBAAgB;EAChB,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ,cAAc;EACd;;CAED;EACC,YAAY;EACZ;;CAED;;EAEC,mBAAmB;EACnB,OAAO;EACP,aAAa;EACb;;CAED;;EAEC,YAAY;EACZ;;CAED;EACC,qBAAqB;EACrB,kBAAkB;EAClB;;CAED;;AAED;;CAEC;EACC;;CAED;EACC,YAAY;EACZ,YAAY;EACZ,mBAAmB;EACnB;;CAED;EACC,cAAc;EACd;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf,YAAY;EACZ,UAAU;EACV,oBAAoB;EACpB;;CAED;;AAED;CACC;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,oBAAoB,CAAC,aAAa;EAClC;;CAED;EACC,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,mCAAmC;EACnC;;CAED;EACC,2BAA2B;EAC3B;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED;;AAED;;CAEC;EACC,wBAAwB;EACxB,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,qBAAc;EAAd,cAAc;EACd,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,WAAW;EACX,uBAAuB;EACvB;;CAED;EACC,cAAc;EACd;;CAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAED","file":"updraftplus-admin-1-16-26.min.css","sourcesContent":["@keyframes udp_blink {\n\n\tfrom {\n\t\topacity: 1;\n\t\ttransform: scale(1);\n\t}\n\n\tto {\n\t\topacity: 0.4;\n\t\ttransform: scale(0.85);\n\t}\n\n}\n\n@keyframes udp_rotate {\n\n\tfrom {\n\t\ttransform: rotate(0);\n\t}\n\n\tto {\n\t\ttransform: rotate(360deg);\n\t}\n\n}\n\n/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.max-width-700 {\n\tmax-width: 700px;\n}\n\n.width-900 {\n\tmax-width: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n.updraft--flex {\n\tdisplay: flex;\n\tflex-wrap: wrap;\n}\n\n.updraft--flex > * {\n\tflex: 1;\n\tbox-sizing: border-box;\n}\n\n.updraft--flex > .updraft--one-half {\n\twidth: 50%;\n\tflex: auto;\n}\n\n.updraft--flex > .updraft--two-halves {\n\twidth: 100%;\n\tflex: auto;\n}\n\n.updraft-color--very-light-grey {\n\tbackground: #F8F8F8;\n}\n\n/* End widths and sizing */\n\n/* Font styling */\n.no-decoration {\n\ttext-decoration: none;\n}\n\n.bold {\n\tfont-weight: bold;\n}\n\n/* End font styling */\n/* Alignment */\n.center-align-td {\n\ttext-align: center;\n}\n\n/* End of Alignment */\n/* Padding */\n.remove-padding {\n\tpadding: 0 !important;\n}\n\n/* End of padding */\n\n.updraft-text-center {\n\ttext-align: center;\n}\n\n.autobackup {\n\tpadding: 6px;\n\tmargin: 8px 0px;\n}\n\nul .disc {\n\tlist-style: disc inside;\n}\n\n.dashicons-log-fix {\n\tdisplay: inherit;\n}\n\n.udpdraft__lifted {\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n}\n\n#updraft-wrap a .dashicons {\n\ttext-decoration: none;\n}\n\n.updraft-field-description,\ntable.form-table td p.updraft-field-description {\n\tfont-size: 90%;\n\tline-height: 1.2;\n\tfont-style: italic;\n\tmargin-bottom: 5px;\n}\n\n/* Input boxes */\nlabel.updraft_checkbox {\n\tdisplay: block;\n\tmargin-bottom: 4px;\n\tmargin-left: 26px;\n}\n\nlabel.updraft_checkbox > input[type=checkbox] {\n\tmargin-left: -25px;\n}\n\ndiv[id*=\"updraft_include_\"] {\n\tmargin-bottom: 9px;\n}\n\n/* Input boxes */\n.settings_page_updraftplus input[type=\"file\"] {\n\tborder: none;\n}\n\n.settings_page_updraftplus .wipe_settings {\n\tpadding-bottom: 10px;\n}\n\n.settings_page_updraftplus input[type=\"text\"] {\n\tfont-size: 14px;\n}\n\n.settings_page_updraftplus select {\n\tborder-radius: 4px;\n\tmax-width: 100%;\n}\n\ninput.updraft_input--wide,\ntextarea.updraft_input--wide {\n\tmax-width: 442px;\n\twidth: 100%;\n}\n\n#updraft-wrap .button-large {\n\tfont-size: 1.3em;\n}\n\n/* End input boxes */\n\n/* Main Buttons */\n.main-dashboard-buttons {\n\tborder-width: 4px;\n\tborder-radius: 12px;\n\tletter-spacing: 0px;\n\tfont-size: 17px;\n\tfont-weight: bold;\n\tpadding-left: 0.7em;\n\tpadding-right: 2em;\n\tpadding: 0.3em 1em;\n\tline-height: 1.7em;\n\tbackground: transparent;\n\tposition: relative;\n\tborder: 2px solid;\n\ttransition: all 0.2s;\n\tvertical-align: baseline;\n\tbox-sizing: border-box;\n\ttext-align: center;\n\tline-height: 1.3em;\n\tmargin-left: .3em;\n\ttext-transform: none;\n\tline-height: 1;\n\ttext-decoration: none;\n}\n\n.button-restore {\n\tborder-color: rgb(98, 158, 192);\n\tcolor: rgb(98, 158, 192);\n}\n\n.dashboard-main-sizing {\n\tborder-width: 4px;\n\twidth: 190px;\n\tline-height: 1.7em;\n}\n\np.updraftplus-option {\n\tmargin-top: 0;\n\tmargin-bottom: 5px;\n}\n\np.updraftplus-option-inline {\n\tdisplay: inline-block;\n\tpadding-right: 20px;\n}\n\nspan.updraftplus-option-label {\n\tdisplay: block;\n}\n\n/*\n* MIGRATE - CLONE\n*/\n\n#updraft-navtab-migrate-content .postbox {\n\tpadding: 18px;\n}\n\n/* Clone Rows */\n\n.updraftclone-main-row {\n\tdisplay: flex;\n}\n\n.updraftclone-tokens {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tmargin-right: 20px;\n\tmax-width: 300px;\n}\n\n.updraftclone-tokens p {\n\tmargin: 0;\n}\n\n.updraftclone_action_box {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tflex: 1;\n}\n\n.updraftclone_action_box p:first-child {\n\tmargin-top: 0;\n}\n\n.updraftclone_action_box p:last-child {\n\tmargin-bottom: 0;\n}\n\n.updraftclone_action_box #ud_downloadstatus3 {\n\tmargin-top: 10px;\n}\n\nspan.tokens-number {\n\tfont-size: 46px;\n\tdisplay: block;\n}\n\n/* Clone header button */\n.button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: none;\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\theight: 100%;\n\tborder-left: 1px solid #CCC;\n\tpadding-left: 10px;\n\tpadding-right: 10px;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_container {\n\tdisplay: flex;\n\tflex-direction: column;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box {\n\tmargin-right: 20px;\n\twidth: 100%;\n\tflex-basis: 100%;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box iframe,\n.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\n\tfloat: none;\n}\n\n@media (min-width: 1024px) {\n\n\t.updraft_migrate_widget_temporary_clone_stage0_container {\n\t\tflex-direction: row;\n\t\tflex-wrap: wrap;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box {\n\t\tflex-basis: 45%;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box iframe,\n\t.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\n\t\tfloat: right;\n\t}\n\n}\n\n.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n}\n\n.opened .button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: inline-block;\n}\n\n.opened .updraft_migrate_widget_temporary_clone_stage0 {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 8px;\n\tmargin-bottom: 21px;\n}\n\n/* Clone list table */\n.clone-list {\n\tclear: both;\n\twidth: 100%;\n\tmargin-top: 40px;\n}\n\n.clone-list table {\n\twidth: 100%;\n\ttext-align: left;\n}\n\n.clone-list table tr th {\n\tbackground: #E4E4E4;\n}\n\n.clone-list table tr td {\n\tbackground: #F5F5F5;\n\tword-break: break-word;\n}\n\n.clone-list table tr:nth-child(odd) td {\n\tbackground: #FAFAFA;\n}\n\n.clone-list table td,\n.clone-list table th {\n\tpadding: 6px;\n}\n\n/* Clone Progress */\n.updraftplus-clone .updraft_row {\n\tpadding-left: 0;\n\tpadding-right: 0;\n}\n\nbutton#updraft_migrate_createclone + .updraftplus_spinner {\n\tmargin-top: 13px;\n}\n\n/* Clone - Show step 1 info button */\n.button.button-hero.updraftclone_show_step_1 {\n\twhite-space: normal;\n\theight: auto;\n\tline-height: 14px;\n\tpadding-top: 10px;\n\tpadding-bottom: 10px;\n}\n\n.button.button-hero.updraftclone_show_step_1 span.dashicons {\n\theight: auto;\n}\n\n.updraftplus_clone_status {\n\tcolor: red;\n}\n\n/* MIGRATE */\n\na.updraft_migrate_add_site--trigger span.dashicons {\n\ttext-decoration: none;\n}\n\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\n.button-view-log:hover, .button-mass-selectors:hover,\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\n\tborder-color: #DF6926;\n\tcolor: #DF6926;\n}\n\n.button-migrate {\n\tcolor: rgb(238, 169, 32);\n\tborder-color: rgb(238, 169, 32);\n}\n\n#updraft_migrate_tab_main {\n\tpadding: 8px;\n}\n\n.updraft_migrate_widget_module_content {\n\tbackground: #FFF;\n\tborder-radius: 0;\n\tposition: relative;\n}\n\nbody.js #updraft_migrate .updraft_migrate_widget_module_content {\n\tdisplay: none;\n}\n\n.updraft_migrate_widget_module_content > h3,\ndiv[class*=\"updraft_migrate_widget_temporary_clone_stage\"] > h3 {\n\tmargin-top: 0;\n}\n\n/* Migrate / Clone headers */\n.updraft_migrate_widget_module_content header {\n\tposition: relative;\n\tdisplay: flex;\n\talign-content: center;\n\tjustify-items: center;\n\tmargin-top: -18px;\n\tmargin-left: -18px;\n\tmargin-right: -18px;\n\tmargin-bottom: 15px;\n\tborder-bottom: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content header h3,\n.updraft_migrate_widget_module_content header button.button.close {\n\tpadding: 10px;\n\tline-height: 20px;\n\theight: auto;\n\tmargin: 0;\n}\n\n.updraft_migrate_widget_module_content button.button.close {\n\ttext-decoration: none;\n\tpadding-left: 5px;\n\tborder-right: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content button.button.close .dashicons {\n\tmargin-top: 1px;\n}\n\n.updraft_migrate_widget_module_content header h3 {\n\tmargin: 0;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero {\n\tmax-width: 235px;\n\tword-wrap: normal;\n\twhite-space: normal;\n\tline-height: 1;\n\theight: auto;\n\tpadding-top: 13px;\n\tpadding-bottom: 13px;\n\ttext-align: left;\n\tposition: relative;\n\tmargin-right: 10px;\n\tmargin-bottom: 10px;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero .dashicons {\n\tposition: absolute;\n\tleft: 10px;\n\ttop: calc(50% - 8px);\n}\n\n/*\njquery UI Accordion module\n*/\n#updraft_migrate .ui-widget-content a {\n\tcolor: #1C94C4;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header {\n\tbackground: #F6F6F6;\n\tmargin: 0;\n\tborder-radius: 0;\n\tpadding-left: 0.5em;\n\tpadding-right: 0.7em;\n}\n\n#updraft-wrap .ui-widget {\n\tfont-family: inherit;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w {\n\tbackground-position: -96px 0px;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s {\n\tbackground-position: -64px 0;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tleft: auto;\n\tright: 5px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px rgba(91, 157, 217, 0.22), 0 0 2px 1px rgba(30, 140, 190, 0.3);\n\tbackground: #FFF;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons {\n\tcolor: #0572AA;\n\topacity: 1;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active {\n\tbackground: #F6F6F6;\n\tborder-bottom: 2px solid #0572AA;\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus {\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3), 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child) {\n\tborder-top: none;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .dashicons {\n\topacity: 0.4;\n\tmargin-right: 10px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n\tz-index: 1;\n}\n\nbutton.ui-dialog-titlebar-close:before {\n\tcontent: none!important;\n}\n\n.updraft_next_scheduled_backups_wrapper {\n\tdisplay: flex;\n\tbackground: #FFF;\n\tjustify-items: center;\n\tflex-wrap: wrap;\n}\n\n.updraft_next_scheduled_backups_wrapper > div {\n\twidth: 50%;\n\tbackground: #FFF;\n\theight: auto;\n\t/* padding: 18px 33px; */\n\tpadding: 33px;\n\tbox-sizing: border-box;\n}\n\n.updraft_backup_btn_wrapper {\n\ttext-align: center;\n\tborder-left: 1px solid #F1F1F1;\n\tjustify-content: center;\n\talign-items: center;\n}\n\n.incremental-backups-only {\n\tdisplay: none;\n}\n\n.incremental-free-only {\n\tdisplay: none;\n}\n\n.incremental-free-only p {\n\tpadding: 5px;\n\tbackground: rgba(255, 0, 0, 0.06);\n\tborder: 1px solid #BFBFBF;\n}\n\n#updraft-delete-waitwarning span.spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tmargin: 0;\n\tmargin-right: 10px;\n}\n\nbutton#updraft-backupnow-button .spinner,\nbutton#updraft-backupnow-button .dashicons-yes {\n\tdisplay: none;\n}\n\nbutton#updraft-backupnow-button.loading .spinner {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tmargin-top: 13px;\n\tmargin-right: 0;\n}\n\nbutton#updraft-backupnow-button.loading {\n\tbackground-color: #EFEFEF;\n\tborder-color: #CCC;\n\ttext-shadow: 0 -1px 1px #BBC3C7, 1px 0 1px #BBC3C7, 0 1px 1px #BBC3C7, -1px 0 1px #BBC3C7;\n\tbox-shadow: none;\n}\n\nbutton#updraft-backupnow-button.finished .dashicons-yes {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tfont-size: 42px;\n\tmargin-right: 0;\n\tmargin-top: 2px;\n}\n\n.updraft_next_scheduled_entity {\n\twidth: 50%;\n\tdisplay: inline-block;\n\tfloat: left;\n\t/*\n\tpadding: 20px 20px 10px 20px;\n\t*/\n}\n\n.updraft_next_scheduled_entity .dashicons {\n\tcolor: #CCC;\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_entity strong {\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_heading {\n\tmargin-bottom: 10px;\n}\n\n.updraft_next_scheduled_date_time {\n\tcolor: #46A84B;\n}\n\n.updraft_time_now_wrapper {\n\tmargin-top: 68px;\n\twidth: 100%;\n}\n\n.updraft_time_now_label, .updraft_time_now {\n\tdisplay: inline-block;\n\tpadding: 7px;\n}\n\n.updraft_time_now_label {\n\tbackground: #B7B7B7;\n\tborder-top-left-radius: 4px;\n\tborder-bottom-left-radius: 4px;\n\tcolor: #FFF;\n\tmargin-right: 0;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);\n}\n\n.updraft_time_now {\n\tbackground: #F1F1F1;\n\tborder-top-right-radius: 4px;\n\tborder-bottom-right-radius: 4px;\n\tmargin-left: -3px;\n}\n\n#updraft_lastlogmessagerow {\n\tmargin: 6px 0;\n}\n\n#updraft_lastlogmessagerow {\n\tclear: both;\n\tpadding: 0.25px 0;\n}\n\n#updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: right;\n\tmargin-top: -2.5em;\n\tmargin-right: 2px;\n}\n\n#updraft_lastlogmessagerow > div {\n\tclear: both;\n\tbackground: #FFF;\n\tpadding: 18px;\n}\n\n#updraft_activejobs_table {\n\toverflow: hidden;\n\twidth: 100%;\n\tbackground: #FAFAFA;\n\tpadding: 0;\n}\n\n.updraft_requeststart {\n\tpadding: 15px 33px;\n\ttext-align: center;\n}\n\n.updraft_requeststart .spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tvertical-align: middle;\n\tmargin-top: -2px;\n}\n\na.updraft_jobinfo_delete.disabled {\n\topacity: 0.4;\n\tcolor: inherit;\n\ttext-decoration: none;\n}\n\n.updraft_row {\n\tclear: both;\n\ttransition: 0.3s all;\n\tpadding: 15px 33px;\n}\n\n.updraft_row.deleting {\n\topacity: 0.4;\n}\n\n.updraft_progress_container {\n\t/* width: 83%; */\n}\n\n.updraft_existing_backups_count {\n\tpadding: 2px 8px;\n\tfont-size: 12px;\n\tbackground: #CA4A1E;\n\tcolor: #FFF;\n\tfont-weight: bold;\n\tborder-radius: 10px;\n}\n\n.form-table .existing-backups-table input[type=\"checkbox\"] {\n\tborder-radius: 0;\n}\n\n.form-table .existing-backups-table .check-column {\n\twidth: 40px;\n\tpadding: 0;\n\tpadding-top: 8px;\n}\n\n.existing-backups-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.existing-backups-restore-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.button-delete {\n\tcolor: #E23900;\n\tborder-color: #E23900;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 10px;\n}\n\n.button-view-log, .button-mass-selectors {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-top: -1px;\n}\n\n.button-view-log {\n\twidth: 120px;\n}\n\n.button-existing-restore {\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\twidth: 110px;\n}\n\n.main-restore {\n\tmargin-right: 3%;\n\tmargin-left: 3%;\n}\n\n.button-entity-backup {\n\tcolor: #555;\n\tborder-color: #555;\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 5px;\n}\n\n.button-select-all {\n\twidth: 122px;\n}\n\n.button-deselect {\n\twidth: 92px;\n}\n\n#ud_massactions > .display-flex > .mass-selectors-margins, #updraft-delete-waitwarning > .display-flex > .mass-selectors-margins {\n\tmargin-right: -4px;\n}\n\n.udp-button-primary {\n\tborder-width: 4px;\n\tcolor: #0073AA;\n\tborder-color: #0073AA;\n\tfont-size: 14px;\n\theight: 40px;\n}\n\n#ud_massactions .button-delete {\n\tmargin-right: 0px;\n}\n\n.stored_local {\n\tborder-radius: 5px;\n\tbackground-color: #007FE7;\n\tpadding: 3px 5px 5px 5px;\n\tcolor: #FFF;\n\tfont-size: 75%;\n}\n\nspan#updraft_lastlogcontainer {\n\tword-break: break-all;\n}\n\n.stored_icon {\n\theight: 1.3em;\n\tposition: relative;\n\ttop: 0.2em;\n}\n\n.backup_date_label > * {\n\tvertical-align: middle;\n}\n\n.backup_date_label .dashicons {\n\tfont-size: 18px;\n}\n\n.backup_date_label .clear-right {\n\tclear: right;\n}\n\n.existing-backups-table .backup_date_label > div, .existing-backups-table .backup_date_label span > div {\n\tfont-weight: bold;\n}\n\n/* End Main Buttons */\n\n/* End of common elements */\n\n.udp-logo-70 {\n\twidth: 70px;\n\theight: 70px;\n\tfloat: left;\n\tpadding-right: 25px;\n}\n\nh3 .thank-you {\n\tmargin-top: 0px;\n}\n\n.ws_advert {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n.dismiss-dash-notice {\n\tfloat: right;\n\tposition: relative;\n\ttop: -20px;\n}\n\n.updraft_exclude_container,\n.updraft_include_container {\n\tmargin-left: 24px;\n\tmargin-top: 5px;\n\tmargin-bottom: 10px;\n\tpadding: 15px;\n\tborder: 1px solid #DDD;\n}\n\nlabel.updraft-exclude-label {\n\tfont-weight: 500;\n\tmargin-bottom: 5px;\n\tdisplay: block;\n}\n\n.updraft_add_exclude_item,\n#updraft_include_more_paths_another {\n\tdisplay: inline-block;\n\tmargin-top: 10px;\n}\n\ninput.updraft_exclude_entity_field,\n.form-table td input.updraft_exclude_entity_field,\n.updraftplus-morefiles-row input[type=text] {\n\twidth: calc(100% - 70px);\n\tmax-width: 400px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.form-table td input.updraft_exclude_entity_field,\n\t.form-table td .updraftplus-morefiles-row input[type=text] {\n\t\tdisplay: inline-block;\n\t}\n\n}\n\n.updraft_exclude_entity_delete.dashicons, .updraft_exclude_entity_edit.dashicons, .updraft_exclude_entity_update.dashicons, .updraftplus-morefiles-row a.dashicons {\n\tmargin-top: 2px;\n\tfont-size: 20px;\n\tbox-shadow: none;\n\tline-height: 1;\n\tpadding: 3px;\n\tmargin-right: 4px;\n}\n\n.updraft_exclude_entity_delete,\n.updraft_exclude_entity_delete:hover,\n.updraftplus-morefiles-row-delete {\n\tcolor: #FF6347;\n}\n\n.updraft_exclude_entity_update.dashicons, .updraft_exclude_entity_update.dashicons:hover {\n\tcolor: #008000;\n\tfont-weight: bold;\n\tfont-size: 22px;\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_edit {\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete {\n\tdisplay: none;\n}\n\n.updraft-exclude-panel-heading {\n\tmargin-bottom: 8px;\n}\n\n.updraft-exclude-panel-heading h3 {\n\tmargin: 0.5em 0 0.5em 0;\n}\n\n.updraft-exclude-submit.button-primary {\n\tmargin-top: 5px;\n}\n\n.updraft_exclude_actions_list {\n\tfont-weight: bold;\n}\n\n.updraft-exclude-link {\n\tcursor: pointer;\n}\n\n#updraft_include_more_options {\n\tpadding-left: 25px;\n}\n\n#updraft_report_cell .updraft_reportbox,\n.updraft_small_box {\n\tpadding: 12px;\n\tmargin: 8px 0;\n\tborder: 1px solid #CCC;\n\tposition: relative;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete,\n.updraft_box_delete_button,\n.updraft_small_box .updraft_box_delete_button {\n\tpadding: 4px;\n\tpadding-top: 6px;\n\tborder: none;\n\tbackground: transparent;\n\tposition: absolute;\n\ttop: 4px;\n\tright: 4px;\n\tcursor: pointer;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete:hover {\n\tcolor: #DE3C3C;\n}\n\na.updraft_report_another .dashicons {\n\ttext-decoration: none;\n\tmargin-top: 2px;\n}\n\n.updraft_report_dbbackup.updraft_report_disabled {\n\tcolor: #CCC;\n}\n\n#updraft-navtab-settings-content .updraft-test-button {\n\tfont-size: 18px !important;\n}\n\n#updraft_report_cell .updraft_report_email {\n\tdisplay: block;\n\twidth: calc(100% - 50px);\n\tmargin-bottom: 9px;\n}\n\n#updraft_report_cell .updraft_report_another_p {\n\tclear: left;\n}\n\n/* Taken straight from admin.php */\n\n#updraft-navtab-settings-content table.form-table p {\n\tmax-width: 700px;\n}\n\n#updraft-navtab-settings-content table.form-table .notice p {\n\tmax-width: none;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td {\n\tbackground-color: #EFEFEF;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td {\n\tbackground-color: #E8E8E8;\n}\n\n.updraft_settings_sectionheading {\n\tdisplay: none;\n}\n\n.updraft-backupentitybutton-disabled {\n\tbackground-color: transparent;\n\tborder: none;\n\tcolor: #0074A2;\n\ttext-decoration: underline;\n\tcursor: pointer;\n\tclear: none;\n\tfloat: left;\n}\n\n.updraft-backupentitybutton {\n\tmargin-left: 8px;\n}\n\n.updraft-bigbutton {\n\tpadding: 2px 0px !important;\n\tmargin-right: 14px !important;\n\tfont-size: 22px !important;\n\tmin-height: 32px;\n\tmin-width: 180px;\n}\n\ntr[class*=\"_updraft_remote_storage_border\"] {\n\tborder-top: 1px solid #CCC;\n}\n\n.updraft_multi_storage_options {\n\tfloat: right;\n\tclear: right;\n\tmargin-bottom: 5px !important;\n}\n\n.updraft_toggle_instance_label {\n\tvertical-align: top !important;\n}\n\n.updraft_debugrow th {\n\tfloat: right;\n\ttext-align: right;\n\tfont-weight: bold;\n\tpadding-right: 8px;\n\tmin-width: 140px;\n}\n\n.updraft_debugrow td {\n\tmin-width: 300px;\n\tvertical-align: bottom;\n}\n\n#updraft_webdav_host_error, .onedrive_folder_error {\n\tcolor: red;\n}\n\nlabel[for=updraft_servicecheckbox_updraftvault] {\n\tposition: relative;\n}\n\n#updraft-wrap .udp-info {\n\tposition: absolute;\n\tright: 10px;\n\ttop: calc(50% - 10px);\n}\n\n#updraft-wrap span.info-trigger {\n\tdisplay: inline-block;\n\twidth: 20px;\n\theight: 20px;\n\tbackground: #FFF;\n\tcolor: #72777C;\n\tborder-radius: 30px;\n\ttext-align: center;\n\tline-height: 20px;\n\tbox-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n}\n\n#updraft-wrap .info-content-wrapper {\n\tdisplay: none;\n\tposition: absolute;\n\tbottom: 20px;\n\ttransform: translatex(calc(-50% + 10px));\n\twidth: 330px;\n\tpadding-bottom: 10px;\n}\n\n#updraft-wrap .info-content-wrapper::before {\n\tcontent: '';\n\tposition: absolute;\n\tbottom: -10px;\n\tborder: 10px solid transparent;\n\tborder-top-color: #FFF;\n\tleft: calc(50% - 10px);\n}\n\n#updraft-wrap .info-content {\n\tpadding: 20px;\n\tbackground: #FFF;\n\tborder-radius: 4px;\n\tbox-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);\n\tcolor: #72777C;\n}\n\n#updraft-wrap .info-content h3 {\n\tmargin-top: 0;\n}\n\n#updraft-wrap .info-content p {\n\tmargin-top: 10px;\n}\n\n#updraft-wrap .udp-info:hover .info-content-wrapper {\n\tdisplay: block;\n}\n\n/* jstree styles */\n\n/* these styles hide the dots from the parent but keep the arrows */\n.updraft_jstree .jstree-container-ul > .jstree-node,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-open > .jstree-ocl {\n\tbackground-position: -36px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-closed> .jstree-ocl {\n\tbackground-position: -4px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-leaf> .jstree-ocl {\n\tbackground: transparent;\n}\n\n/* zip browser jstree styles */\n#updraft_zip_files_container {\n\tposition: relative;\n\theight: 450px;\n\toverflow: none;\n}\n\n.updraft_jstree_info_container {\n\tposition: relative;\n\theight: auto;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n.updraft_jstree_info_container p {\n\tmargin: 1px;\n\tpadding-left: 10px;\n\tfont-size: 14px;\n}\n\n#updraft_zip_download_item {\n\tdisplay: none;\n\tcolor: #0073AA;\n\tpadding-left: 10px;\n}\n\n#updraft_zip_download_notice {\n\tpadding-left: 10px;\n}\n\n#updraft_exclude_files_folders_jstree {\n\tmax-height: 200px;\n\toverflow-y: scroll;\n}\n\n.updraft_jstree {\n\tposition: relative;\n\tborder: 1px dotted;\n\theight: 80%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n/* More files jstree styles */\ndiv[id^=\"updraft_more_files_container_\"] {\n\tposition: relative;\n\tdisplay: none;\n\twidth: 100%;\n\tborder: 1px solid #CCC;\n\tbackground: #FAFAFA;\n\tmargin-bottom: 5px;\n\tmargin-top: 4px;\n\tbox-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);\n}\n\ndiv[id^=\"updraft_more_files_container_\"]::before {\n\tcontent: ' ';\n\twidth: 11px;\n\theight: 11px;\n\tdisplay: block;\n\tbackground: #FAFAFA;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 20px;\n\tborder-top: 1px solid #CCC;\n\tborder-left: 1px solid #CCC;\n\ttransform: translatey(-7px) rotate(45deg);\n}\n\ninput.updraft_more_path_editing {\n\tborder-color: #0285BA;\n}\n\ninput.updraft_more_path_editing ~ a.dashicons {\n\tdisplay: none;\n}\n\ndiv[id^=\"updraft_jstree_buttons_\"] {\n\tpadding: 10px;\n\tbackground: #E6E6E6;\n}\n\ndiv[id^=\"updraft_jstree_container_\"] {\n\theight: 300px;\n\twidth: 100%;\n\toverflow: auto;\n}\n\ndiv[id^=\"updraft_more_files_container_\"] button {\n\tline-height: 20px;\n}\n\nbutton[id^=\"updraft_parent_directory_\"] {\n\tmargin: 10px 10px 4px 10px;\n\tpadding-left: 3px;\n}\n\nbutton[id^=\"updraft_jstree_confirm_\"], button[id^=\"updraft_jstree_cancel_\"] {\n\tdisplay: none;\n}\n\ninput[id^=\"updraft_include_more_path_restore_\"] {\n\ttext-align: right;\n}\n\n.updraftplus-morefiles-row-delete,\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n}\n\n#updraft-wrap .form-table th {\n\twidth: 230px;\n}\n\n#updraft-wrap .form-table .existing-backups-table th {\n\twidth: auto;\n}\n\n.updraft-viewlogdiv form {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-viewlogdiv {\n\tdisplay: inline-block;\n}\n\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\n\tborder: none;\n\tbackground-color: transparent;\n\tcolor: #000;\n\tmargin: 0px;\n\tpadding: 3px 4px;\n\tfont-size: 16px;\n\tline-height: 26px;\n}\n\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\n\tcolor: #FFF;\n\tcursor: pointer;\n}\n\n.button.button-remove {\n\tcolor: white;\n\tbackground-color: #DE3C3C;\n\tborder-color: #C00000;\n\tbox-shadow: 0 1px 0 #C10100;\n}\n\n.button.button-remove:hover,\n.button.button-remove:focus {\n\tborder-color: #C00;\n\tcolor: #FFF;\n\tbackground: #C00;\n}\n\n/* button-remove colors for midnight admin theme */\nbody.admin-color-midnight .button.button-remove {\n\tcolor: #DE3C3C;\n\tbackground-color: #F7F7F7;\n\tborder-color: #CCC;\n\tbox-shadow: 0 1px 0 #CCC;\n}\n\nbody.admin-color-midnight .button.button-remove:hover, body.admin-color-midnight .button.button-remove:focus {\n\tborder-color: #BA281F;\n}\n\nbody.admin-color-midnight .button.button-remove:focus {\n\tbox-shadow: inherit;\n\tbox-shadow: 0 0 3px rgba(0, 115, 170, 0.8);\n}\n\n.drag-drop #drag-drop-area2 {\n\tborder: 4px dashed #DDD;\n\theight: 200px;\n}\n\n#drag-drop-area2 .drag-drop-inside {\n\tmargin: 36px auto 0;\n\twidth: 350px;\n}\n\n#filelist, #filelist2 {\n\twidth: 100%;\n}\n\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file, #ud_downloadstatus3 .file {\n\tpadding: 1px;\n\tbackground: #ECECEC;\n\tborder: solid 1px #CCC;\n\tmargin: 4px 0;\n}\n\n.updraft_premium section {\n\tmargin-bottom: 20px;\n}\n\n/*\n\tCall to action Premium\n*/\n.updraft_premium_cta {\n\tbackground: #FFF;\n\tmargin-top: 30px;\n\tpadding: 0;\n\tborder-left: 4px solid #DB6A03;\n}\n\n.updraft_premium_cta a {\n\tfont-weight: normal;\n}\n\n.updraft_premium_cta__action {\n\tposition: relative;\n\ttext-align: center;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero {\n\tfont-size: 1.3em;\n\tletter-spacing: 0.03rem;\n\ttext-transform: uppercase;\n\tmargin-bottom: 7px;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small {\n\tdisplay: block;\n\tmax-width: 100%;\n\ttext-align: center;\n\tcolor: #AFAFAF;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small .dashicons {\n\twidth: 12px;\n\theight: 12px;\n}\n\n.updraft_premium_cta__top {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tpadding: 18px 30px;\n}\n\n.updraft_premium_cta__bottom {\n\tbackground: #F9F9F9;\n\tpadding: 5px 30px;\n}\n\n.updraft_premium_cta__summary {\n\tmargin-right: 60px;\n}\n\n.updraft_premium_cta h2 {\n\tfont-size: 28px;\n\tfont-weight: 200;\n\tline-height: 1;\n\tmargin: 0;\n\tmargin-bottom: 5px;\n\tletter-spacing: 0.05rem;\n\tcolor: #DB6A03;\n}\n\n.updraft_premium_cta ul li::after {\n\tcolor: #CCC;\n}\n\n@media only screen and (max-width: 768px) {\n\n\t.updraft_premium_cta__top {\n\t\tflex-direction: column;\n\t\ttext-align: center;\n\t\talign-items: center;\n\t}\n\n\t.updraft_premium_cta__summary {\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 30px;\n\t}\n\n}\n\n/*\n\tBox\n*/\n.udp-box {\n\tbackground: #FFF;\n\tpadding: 20px;\n\tbox-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);\n\ttext-align: center;\n}\n\n.udp-box h3 {\n\tmargin: 0;\n}\n\n.udp-box__heading {\n\talign-self: center;\n\tbackground: none;\n\tbox-shadow: none;\n}\n\n/*\n\tOther Plugins\n*/\n.updraft-more-plugins {\n\tdisplay: flex;\n\tflex-direction: row;\n\tflex-wrap: wrap;\n\tjustify-content: space-between;\n\tflex-wrap: wrap;\n}\n\n.updraft-more-plugins img {\n\tmax-width: 200px;\n\twidth: 100%;\n\tdisplay: inline-block;\n}\n\n.updraft-more-plugins .udp-box {\n\tbox-sizing: border-box;\n\twidth: 24%;\n}\n\n.updraft-more-plugins .udp-box p:last-child {\n\tmargin-bottom: 0;\n\tpadding-bottom: 0;\n}\n\n/*\n\tlinks list\n*/\n.updraft_premium_description_list {\n\ttext-align: left;\n\tmargin: 0;\n\tfont-size: 12px;\n}\n\nul.updraft_premium_description_list, ul#updraft_restore_warnings {\n\tlist-style: disc inside;\n}\n\nul.updraft_premium_description_list li {\n\tdisplay: inline;\n}\n\nul.updraft_premium_description_list li::after {\n\tcontent: \" | \";\n}\n\nul.updraft_premium_description_list li:last-child::after {\n\tcontent: \"\";\n}\n\n.updraft_feature_cell {\n\tbackground-color: #F7D9C9 !important;\n\tpadding: 5px 10px;\n}\n\n.updraftplus_com_login_status, .updraftplus_com_key_status {\n\tdisplay: none;\n\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tborder-left-color: #DC3232;\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n\tmargin: 5px 0 15px 0;\n\tpadding: 5px 12px;\n}\n\n.updraftplus_com_login_status.success {\n\tborder-left-color: green;\n}\n\n#updraft-wrap strong.success {\n\tcolor: green;\n}\n\n.updraft_feat_table {\n\tborder: none;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n}\n\n.updraft_feat_th, .updraft_feat_table td {\n\tborder: 1px solid #F1F1F1;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n\tpadding: 15px;\n}\n\n.updraft_feat_table td {\n\tborder-bottom-width: 4px;\n}\n\n.updraft_feat_table td:first-child {\n\tborder-left: none;\n}\n\n.updraft_feat_table td:last-child {\n\tborder-right: none;\n}\n\n.updraft_feat_table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.updraft_feat_table td:nth-child(2),\n.updraft_feat_table td:nth-child(3) {\n\tbackground-color: rgba(241, 241, 241, 0.38);\n\twidth: 190px;\n}\n\n.updraft_feat_table__header td img {\n\tdisplay: block;\n\tmargin: 0 auto;\n}\n\n.updraft_feat_table__header td {\n\ttext-align: center;\n}\n\n.updraft_feat_table .installed {\n\tfont-size: 14px;\n}\n\n.updraft_feat_table p {\n\tpadding: 0px 10px;\n\tmargin: 5px 0px;\n\tfont-size: 13px;\n}\n\n.updraft_feat_table h4 {\n\tmargin: 5px 0px;\n}\n\n.updraft_feat_table .dashicons {\n\twidth: 25px;\n\theight: 25px;\n\tfont-size: 25px;\n\tline-height: 1;\n}\n\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\n\tcolor: green;\n}\n\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\n\tcolor: red;\n}\n\n.updraft_tick_cell {\n\ttext-align: center;\n}\n\n.updraft_tick_cell img {\n\tmargin: 4px 0;\n\theight: 24px;\n}\n\n.ud_downloadstatus__close {\n\tborder: none;\n\tbackground: transparent;\n\twidth: auto;\n\tfont-size: 20px;\n\tpadding: 0;\n\tcursor: pointer;\n}\n\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress, #ud_downloadstatus3 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #0572AA;\n\theight: 8px;\n\ttransition: width .3s;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw, #ud_downloadstatus3 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file, #ud_downloadstatus3 .file {\n\tmargin-top: 8px;\n}\n\ndiv[class^=\"updraftplus_downloader_container_\"] {\n\tpadding: 10px;\n}\n\ntr.updraftplusmethod h3 {\n\tmargin: 0px;\n}\n\ntr.updraftplusmethod img {\n\tmax-width: 100%;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\n\tcursor: pointer;\n\tcolor: red;\n\tfont-size: 120%;\n\tfont-weight: bold;\n\tborder: 0px;\n\tborder-radius: 3px;\n\tpadding: 2px;\n\tmargin: 0 6px;\n\ttext-decoration: none;\n\tdisplay: inline-block;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\n\tcursor: pointer;\n\tcolor: white;\n\tbackground: red;\n}\n\n#updraft_backup_started {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n/* backup finished */\n.blockUI.blockOverlay.ui-widget-overlay {\n\tbackground: #000;\n}\n\n.updraft_success_popup {\n\ttext-align: center;\n\tpadding-bottom: 30px;\n}\n\n.updraft_success_popup > .dashicons {\n\tfont-size: 100px;\n\twidth: 100px;\n\theight: 100px;\n\tline-height: 100px;\n\tpadding: 0px;\n\tborder-radius: 50%;\n\tmargin-top: 30px;\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tbackground: #E2E6E5;\n}\n\n.updraft_success_popup > .dashicons.dashicons-yes {\n\ttext-indent: -5px;\n}\n\n.updraft_success_popup.success > .dashicons {\n\tcolor: green;\n}\n\n.updraft_success_popup.warning > .dashicons {\n\tcolor: #888;\n}\n\n.updraft_success_popup--message {\n\tpadding: 20px;\n}\n\n.button.updraft-close-overlay .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tmargin-left: -5px;\n\tpadding: 0;\n\ttransform: translatey(3px);\n}\n\n.updraft_saving_popup img {\n\tanimation-name: udp_blink;\n\tanimation-duration: 610ms;\n\tanimation-iteration-count: infinite;\n\tanimation-direction: alternate;\n\tanimation-timing-function: ease-out;\n}\n\n.udp-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t.udp-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding-right: 5px;\n\t}\n\n}\n\n/* End stuff already in admin.php */\n#plupload-upload-ui2 {\n\twidth: 80%;\n}\n\n.backup-restored {\n\tpadding: 8px;\n}\n\n.updated.backup-restored {\n\tpadding-top: 15px;\n\tpadding-bottom: 15px;\n}\n\n.backup-restored span {\n\tfont-size: 120%;\n}\n\n.memory-limit {\n\tpadding: 8px;\n}\n\n.updraft_list_errors {\n\tpadding: 8px;\n}\n\n/*.nav-tab {\n\tborder-radius: 20px 20px 0 0;\n\tborder-color: grey;\n\tborder-width: 2px;\n\tmargin-top: 34px;\n}\n\n.nav-tab:hover {\n\tborder-bottom: 0;\n}\n\n.nav-tab-active, .nav-tab-active:active {\n\tcolor: #df6926;\n\tborder-color: #D3D3D3;\n\tborder-width: 1px;\n\tborder-bottom: 0;\n}\n\n.nav-tab-active:focus {\n\tcolor: #df6926;\n}*/\n\n.nav-tab-wrapper {\n\tmargin: 14px 0px;\n}\n\n#updraft-poplog-content {\n\twhite-space: pre-wrap;\n}\n\n.next-backup {\n\tborder: 0px;\n\tpadding: 0px;\n\tmargin: 0 10px 0 0;\n}\n\n.not-scheduled {\n\tvertical-align: top !important;\n\tmargin: 0px !important;\n\tpadding: 0px !important;\n}\n\n.next-backup .updraft_scheduled {\n\t/* width: 124px;*/\n\tmargin: 0px;\n\tpadding: 2px 4px 2px 0px;\n}\n\n#next-backup-table-inner td {\n\tvertical-align: top;\n}\n\n.updraft_all-files {\n\tcolor: blue;\n}\n\n.multisite-advert-width {\n\twidth: 800px;\n}\n\n.updraft_settings_sectionheading {\n\tmargin-top: 6px;\n}\n\n.premium-upgrade-prompt {\n\t/* font-size: 115%; */\n}\n\nsection.premium-upgrade-purchase-success {\n\tpadding: 2em;\n\tbackground: #FAFAFA;\n\ttext-align: center;\n\tbox-shadow: 0px 14px 40px rgba(0, 0, 0, 0.1);\n}\n\nsection.premium-upgrade-purchase-success h3 {\n\tfont-size: 2em;\n\tcolor: green;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons {\n\tdisplay: block;\n\tmargin: 0 auto;\n\tfont-size: 60px;\n\twidth: 60px;\n\theight: 60px;\n\tborder-radius: 50%;\n\tbackground: green;\n\tcolor: #FFF;\n\tmargin-bottom: 20px;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons::before {\n\tdisplay: inline-block;\n\tmargin-left: -4px;\n\tmargin-top: 2px;\n}\n\nsection.premium-upgrade-purchase-success p {\n\tfont-size: 120%;\n}\n\n.show_admin_restore_in_progress_notice {\n\tpadding: 8px;\n}\n\n.show_admin_restore_in_progress_notice .unfinished-restoration {\n\tfont-size: 120%;\n}\n\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions, #backupnow_includecloud_moreoptions {\n\tmargin: 4px 16px 6px 16px;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n}\n\n#backupnow_database_moreoptions {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.form-table #updraft_activejobsrow .minimum-height {\n\tmin-height: 100px;\n}\n\n#updraft_activejobsrow th {\n\tmax-width: 112px;\n\tmargin: 0;\n\tpadding: 13px 0 0 0;\n}\n\n#updraft_lastlogmessagerow .last-message {\n\tpadding-top: 20px;\n\tdisplay: block;\n}\n\n.updraft_simplepie {\n\tvertical-align: top;\n}\n\n.download-backups {\n\tmargin-top: 8px;\n}\n\n.download-backups .updraft_download_button {\n\tmargin-right: 6px;\n}\n\n.download-backups .ud-whitespace-warning, .download-backups .ud-bom-warning {\n\tbackground-color: pink;\n\tpadding: 8px;\n\tmargin: 4px;\n\tborder: 1px dotted;\n}\n\n.download-backups .ul {\n\tlist-style: none inside;\n\tmax-width: 800px;\n\tmargin-top: 6px;\n\tmargin-bottom: 12px;\n}\n\n#updraft-plupload-modal {\n\tmargin: 16px 0;\n}\n\n.download-backups .upload {\n\tmax-width: 610px;\n}\n\n.download-backups #plupload-upload-ui {\n\twidth: 100%;\n}\n\n.ud_downloadstatus {\n\tpadding: 10px 0;\n}\n\n#ud_massactions, #updraft-delete-waitwarning {\n\tpadding: 14px;\n\tbackground: rgb(241, 241, 241);\n\tposition: absolute;\n\tleft: 0;\n\ttop: 100%;\n}\n\n#ud_massactions > *, #updraft-delete-waitwarning > * {\n\tvertical-align: middle;\n}\n\n#ud_massactions .updraftplus-remove {\n\tdisplay: inline-block;\n\tmargin-right: 0;\n}\n\n#ud_massactions .updraftplus-remove a {\n\ttext-decoration: none;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n}\n\nsmall.ud_massactions-tip {\n\tdisplay: inline-block;\n\topacity: 0.5;\n\tfont-style: italic;\n\tmargin-left: 20px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups {\n\tmargin-bottom: 35px;\n\tposition: relative;\n}\n\n#updraft-message-modal-innards {\n\tpadding: 4px;\n}\n\n#updraft-authenticate-modal {\n\ttext-align: center;\n\tfont-size: 16px !important;\n}\n\n#updraft-authenticate-modal p {\n\tfont-size: 16px;\n}\n\n#updraft_delete_form p {\n\tmargin-top: 3px;\n\tpadding-top: 0;\n}\n\n#updraft_restore_form .cannot-restore {\n\tmargin: 8px 0;\n}\n\n.notice.updraft-restore-option {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder-left-color: #CCC;\n}\n\n/* updraft_restore_crypteddb */\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraftplus_restore_tables_options_container {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.updraft_debugrow th {\n\tvertical-align: top;\n\tpadding-top: 6px;\n\tmax-width: 140px;\n}\n\n.expertmode p {\n\tfont-size: 125%;\n}\n\n.expertmode .call-wp-action {\n\twidth: 300px;\n\theight: 22px;\n}\n\n.updraftplus-lock-advert {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.uncompressed-data {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.delete-old-directories {\n\tpadding: 8px;\n\tpadding-bottom: 12px;\n}\n\n.active-jobs {\n\twidth: 100%;\n\ttext-align: center;\n\tpadding: 33px;\n}\n\n.job-id {\n\tmargin-top: 0;\n\tmargin-bottom: 8px;\n}\n\n.next-resumption {\n\tfont-weight: bold;\n}\n\n.updraft_percentage {\n\tz-index: -1;\n\tposition: absolute;\n\tleft: 0px;\n\ttop: 0px;\n\ttext-align: center;\n\tbackground-color: #1D8EC2;\n\ttransition: width 0.3s;\n}\n\n.curstage {\n\tz-index: 1;\n\tborder-radius: 2px;\n\tmargin-top: 8px;\n\twidth: 100%;\n\theight: 26px;\n\tline-height: 26px;\n\tposition: relative;\n\ttext-align: center;\n\tfont-style: italic;\n\tcolor: #FFF;\n\tbackground-color: #B7B7B7;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n}\n\n.curstage-info {\n\tdisplay: inline-block;\n\tz-index: 2;\n}\n\n.retain-files {\n\twidth: 48px;\n}\n\n.backup-interval-description tr td div {\n\tmax-width: 670px;\n}\n\n#updraft-manualdecrypt-modal {\n\twidth: 85%;\n\tmargin: 6px;\n\tmargin-left: 100px;\n}\n\n.directory-permissions {\n\tfont-size: 110%;\n\tfont-weight: bold;\n}\n\n.double-warning {\n\tborder: 1px solid;\n\tpadding: 6px;\n}\n\n.raw-backup-info {\n\tfont-style: italic;\n\tfont-weight: bold;\n\tfont-size: 120%;\n}\n\n.updraft_existingbackup_date {\n\twidth: 22%;\n\tmax-width: 140px;\n}\n\n.updraft_existing_backups_wrapper {\n\tmargin-top: 20px;\n\tborder-top: 1px solid #DDD;\n}\n\n.updraft-no-backups-msg {\n\ttext-align: center;\n}\n\n.tr-bottom-4 {\n\tmargin-bottom: 4px;\n}\n\n.existing-backups-table th {\n\tpadding: 8px 10px;\n}\n\n.form-table .backup-date {\n\twidth: 172px;\n}\n\n.form-table .backup-data {\n\twidth: 426px;\n}\n\n.form-table .updraft_backup_actions {\n\twidth: 272px;\n}\n\n.existing-date {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n\tmax-width: 140px;\n\twidth: 25%;\n}\n\n.line-break-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.line-break-td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.td-line-color {\n\theight: 2px;\n\tbackground-color: #888;\n}\n\n.raw-backup {\n\tmax-width: 140px;\n}\n\n.existing-backups-actions {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border > td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.existing-backups-border > div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.updraft_existing_backup_date {\n\tmax-width: 140px;\n}\n\n.updraftplus-upload {\n\tmargin-right: 6px;\n\tfloat: left;\n\tclear: none;\n}\n\n.before-restore-button {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.before-restore-button div {\n\tfloat: none;\n\tdisplay: inline-block;\n}\n\n.table-separator-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.table-separator-td {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n.end-of-table-div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.last-backup-job {\n\tpadding-top: 3% !important;\n}\n\n.line-height-03 {\n\tline-height: 0.3 !important;\n}\n\n.line-height-13 {\n\tline-height: 1.3 !important;\n}\n\n.line-height-23 {\n\tline-height: 2.3 !important;\n}\n\n#updraft_diskspaceused {\n\tcolor: #DF6926;\n}\n\n#updraft_delete_old_dirs_pagediv {\n\tpadding-bottom: 10px;\n}\n\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\n\tpadding: 0;\n}*/\n\n/* Time + scheduling add-on*/\n.fix-time {\n\twidth: 70px;\n}\n\n.retain-files {\n\twidth: 70px;\n}\n\n.number-input {\n\tmin-width: 50px;\n\tmax-width: 70px;\n}\n\n.additional-rule-width {\n\tmin-width: 60px;\n\tmax-width: 70px;\n}\n\n/* Add-ons */\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\n\n#updraft-wrap .dashicons.dashicons-adapt-size {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size) {\n\tvertical-align: middle;\n\tmargin-top: -3px;\n}\n\n.addon-logo-150 {\n\tmargin-left: 30px;\n\tmargin-top: 33px;\n\theight: 125px;\n\twidth: 150px;\n}\n\n.margin-bottom-50 {\n\tmargin-bottom: 50px;\n}\n\n.premium-container {\n\twidth: 80%;\n}\n\n/* Main Header */\n\n.main-header {\n\tbackground-color: #DF6926;\n\theight: 200px;\n\twidth: 100%;\n}\n\n.button-add-to-cart {\n\tcolor: white;\n\tborder-color: white;\n\tfloat: none;\n\tmargin-right: 17px;\n}\n\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\n\tborder-color: #A0A5AA;\n\tcolor: #A0A5AA;\n}\n\n.addon-title {\n\tmargin-top: 25px;\n}\n\n.addon-text {\n\tmargin-top: 75px;\n}\n\n.image-main-div {\n\twidth: 25%;\n\tfloat: left;\n}\n\n.text-main-div {\n\twidth: 60%;\n\tfloat: left;\n\ttext-align: center;\n\tcolor: white;\n\tmargin-top: 16px;\n}\n\n.text-main-div-title {\n\tfont-weight: bold !important;\n\tcolor: white;\n\ttext-align: center;\n}\n\n.text-main-div-paragraph {\n\tcolor: white;\n}\n\n/* End main header */\n\n/* Vault icons */\n\n.updraftplus-vault-cta {\n\twidth: 100%;\n\ttext-align: center;\n\tmargin-bottom: 50px;\n}\n\n.updraftplus-vault-cta h1 {\n\tfont-weight: bold;\n}\n\n.updraftvault-buy {\n\twidth: 225px;\n\theight: 225px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 50px;\n\tposition: relative;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault {\n\twidth: 275px;\n\theight: 275px;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\n\tright: 21%;\n\tfont-size: 16px;\n\tborder-width: 4px !important;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\n\tfont-size: 16px;\n}\n\n.updraftvault-buy .button-purchase {\n\tright: 24%;\n\tmargin-left: 0;\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.right {\n\tmargin-right: 0px;\n}\n\n.updraftvault-buy .addon-logo-100 {\n\theight: 100px;\n\twidth: 125px;\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .addon-logo-large {\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .button-buy-vault {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 29%;\n\tbottom: 2%;\n}\n\n.premium-addon-div .button-purchase {\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy .button-buy-vault:hover {\n\tborder-color: darkgrey;\n\tcolor: darkgrey;\n}\n\n/* End Vault icons */\n\n/* Premium addons */\n\n.premium-addons {\n\tmargin-top: 80px;\n\twidth: 100%;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.addon-list {\n\t/* margin-left: 32px; */\n\tdisplay: table;\n\ttext-align: center;\n}\n\n.premium-addons h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-addons p {\n\ttext-align: center;\n}\n\n.premium-addons .premium-addon-div {\n\twidth: 200px;\n\theight: 250px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 25px;\n\tmargin-top: 25px;\n\ttext-align: center;\n\tposition: relative;\n}\n\n.premium-addons .premium-addon-div p {\n\tmargin-left: 2px;\n\tmargin-right: 2px;\n}\n\n.premium-addons .premium-addon-div img {\n\twidth: auto;\n\theight: 50px;\n\tmargin-top: 7px;\n}\n\n.premium-addons .premium-addon-div .hr-alignment {\n\tmargin-top: 44px;\n}\n\n.premium-addons .premium-addon-div .dropbox-logo {\n\theight: 39px;\n\twidth: 150px;\n}\n\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\n\twidth: 75%;\n\theight: 24px;\n}\n\n.button-purchase {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 25%;\n\tbottom: 2%;\n}\n\n.button-purchase:hover {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n}\n\n.premium-addons .premium-addon-div hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.premium-addon-div p {\n\tfont-style: italic;\n}\n\n.addon-list > .premium-addon-div > .onedrive-fix,\n.addon-list > .premium-addon-div > .azure-logo {\n\tmargin-top: 33px;\n}\n\n.addon-list > .premium-addon-div > .dropbox-fix {\n\tmargin-top: 18px;\n}\n\n/* End premium addons */\n\n\n/* Forgotton something (that is the name of the div rather than a mental note!) */\n\n.premium-forgotton-something {\n\tmargin-top: 5%;\n}\n\n.premium-forgotton-something h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-forgotton-something p {\n\ttext-align: center;\n\tfont-weight: normal;\n}\n\n.premium-forgotton-something .button-faq {\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.premium-forgotton-something .button-faq:hover {\n\tcolor: #777;\n\tborder-color: #777;\n}\n\n/* End of forgotton something */\n\n.updraftplusmethod.updraftvault #vaultlogo {\n\tpadding-left: 40px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option {\n\tfloat: left;\n\twidth: 50%;\n\ttext-align: center;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option div {\n\tclear: right;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .clear-left {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .padding-top-20px {\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .padding-top-14px {\n\tpadding-top: 14px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\n\tfont-size: 18px !important;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\n\tmargin-top: 8px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\n\tmargin-right: 10px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_email {\n\twidth: 280px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_pass {\n\twidth: 200px;\n}\n\n.updraftplusmethod.updraftvault #vault-is-connected {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-container {\n\ttext-align: center;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\twidth: 40%;\n\ttext-align: center;\n\tpadding-top: 20px;\n\tdisplay: inline-block;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\n\tfont-size: 200%;\n\tfont-weight: bold;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\n\tclear: both;\n\tfont-size: 150%;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\n\tclear: both;\n\tfont-size: 115%;\n\tfont-style: italic;\n}\n\n/* Automation Backup Advert by B */\n.autobackup-image {\n/* \tdisplay: inline-block; */\n/*\tmin-width: 10%;\n\tmax-width:25%;*/\n/*\tfloat: left;*/\n\tclear: left;\n\tfloat: left;\n\twidth: 110px;\n\theight: 110px;\n}\n\n.autobackup-description {\n\twidth: 100%;\n}\n\n.advert-description {\n\tfloat: left;\n\tclear: right;\n\tpadding: 4px 10px 8px 10px;\n\twidth: 70%;\n\tclear: right;\n\tvertical-align: top;\n}\n\n.advert-btn {\n\tdisplay: inline-block;\n\tmin-width: 10%;\n\tvertical-align: top;\n\tmargin-bottom: 8px;\n}\n\n.advert-btn:first-of-type {\n\tmargin-top: 25px;\n}\n\n.advert-btn a {\n\tdisplay: block;\n\tcursor: pointer;\n}\n\na.btn-get-started {\n\tbackground: #FFF;\n\tborder: 2px solid #DF6926;\n\tborder-radius: 4px;\n\tcolor: #DF6926;\n\tdisplay: inline-block;\n\tmargin-left: 10px !important;\n\tmargin-bottom: 7px !important;\n\tfont-size: 18px !important;\n\tline-height: 20px;\n\tmin-height: 28px;\n\tpadding: 11px 10px 5px 10px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n}\n\n.circle-dblarrow {\n\tborder: 1px solid #DF6926;\n\tborder-radius: 100%;\n\tdisplay: inline-block;\n\tfont-size: 17px;\n\tline-height: 17px;\n\tmargin-left: 5px;\n\twidth: 20px;\n\theight: 20px;\n\ttext-align: center;\n}\n\n/* End Automation Backup Advert by B */\n/* New Responsive Pretty Advanced Settings */\n.expertmode .advanced_settings_container {\n\theight: auto;\n\toverflow: hidden;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu {\n\tfloat: none;\n\tborder-bottom: 1px solid rgb(204, 204, 204);\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content {\n\tpadding-top: 5px;\n\tfloat: none;\n\twidth: auto;\n\toverflow: auto;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content h3:first-child {\n\tmargin-top: 5px !important;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\n\tdisplay: none;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\n\tdisplay: block;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tpadding: 5px;\n\tcolor: #000;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\n\tfont-size: 16px;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\n\tbackground-color: #EAEAEA;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\n\tbackground-color: #3498DB;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\n\tbackground-color: #72C5FD;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\n\theight: auto !important;\n}\n\ndiv#updraft-wrap a {\n\tcursor: pointer !important;\n}\n\n.updraftcentral_wizard_option {\n\twidth: 45%;\n\tfloat: left;\n\ttext-align: center;\n}\n\n.updraftcentral_wizard_option label {\n\tmargin-bottom: 8px;\n}\n\n#updraftcentral_keys_table {\n\tdisplay: none;\n}\n\n.create_key_container {\n\tborder: 1px solid;\n\tborder-radius: 4px;\n\tpadding: 0 0 6px 6px;\n\tmargin-bottom: 8px;\n}\n\n.updraftcentral_cloud_connect {\n\tborder-radius: 4px;\n\tborder: 1px solid #000;\n\tpadding: 0 20px;\n\tmargin-top: 30px;\n\tbackground-color: #FFF;\n}\n\n.updraftcentral_cloud_error {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #F00;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_info {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #EF8F31;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftplus_spinner.spinner {\n\tpadding-left: 25px;\n\tfloat: none;\n}\n\n.updraftplus_spinner.spinner.visible {\n\tvisibility: visible;\n\twidth: auto;\n}\n\n.updraftcentral_cloud_notices .updraftplus_spinner {\n\tmargin-top: -5px;\n}\n\n.updraftcentral-subheading {\n\tfont-size: 14px;\n\tmargin-top: -10px;\n\tmargin-bottom: 20px;\n}\n\n#updraftcentral_cloud_form input#email,\n#updraftcentral_cloud_form input#password {\n\tmin-width: 250px;\n}\n\n.updraftcentral-data-consent {\n\tfont-size: 13px;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_wizard_image {\n\tfloat: left;\n\tmin-width: 100px;\n\tmargin-right: 25px;\n}\n\n.updraftcentral_cloud_wizard {\n\tfloat: left;\n}\n\n.updraftcentral_cloud_clear {\n\tclear: both;\n}\n\n.updraftplus-settings-footer {\n\tmargin-top: 30px;\n}\n\n.updraftplus-top-menu {\n\tpadding: 0.5em;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\tbackground: transparent;\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: none;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_row {\n\tflex-direction: column;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container {\n\twidth: 100%;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\toverflow: inherit;\n}\n\n#updraft_inpage_backup span#updraft_lastlogcontainer {\n\tpadding: 18px;\n\tbackground: #FAFAFA;\n\tdisplay: block;\n\tfont-size: 90%;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup div#updraft_activejobsrow {\n\tbackground: #FAFAFA;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow > div {\n\tbackground: transparent;\n\tpadding: 0;\n}\n\n#updraft_inpage_backup .last-message > strong {\n\tdisplay: block;\n\tmargin-top: 13px;\n}\n\n/* Restoration page */\n\n.updraft_restore_container {\n\tdisplay: block;\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tz-index: 99999;\n\tpadding-top: 30px;\n\tbackground: #F1F1F1;\n\toverflow: auto;\n}\n\n.updraft-modal-is-opened .select2-container {\n\tz-index: 99999;\n}\n\nbody.updraft-modal-is-opened {\n\toverflow: hidden;\n}\n\n.updraft_restore_container h2 {\n\tmargin: 0;\n}\n\n.updraft_restore_container .updraftmessage {\n\tbox-sizing: border-box;\n\tmax-width: 860px;\n\tmargin-left: auto;\n\tmargin-right: auto;\n}\n\n.updraft_restore_main {\n\tmax-width: 860px;\n\tmargin: 0 auto;\n\tmargin-top: 20px;\n\tbackground: #FFF;\n\tbox-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);\n\tposition: relative;\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--header {\n\tfont-size: 20px;\n\tfont-weight: bold;\n\ttext-align: center;\n\tpadding-top: 16px;\n\tline-height: 20px;\n\twidth: 100%;\n\tmax-width: 100%;\n\tpadding-right: 30px;\n\tpadding-left: 30px;\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--activity {\n\tposition: relative;\n\twidth: calc(100% - 350px);\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--activity-title {\n\tpadding: 20px;\n\tmargin: 0;\n}\n\n.show-credentials-form.updraft_restore_main .updraft_restore_main--activity-title {\n\tdisplay: none;\n}\n\n.updraft_restore_main--components {\n\twidth: 350px;\n\tpadding: 20px;\n\tbox-sizing: border-box;\n\tbackground: #F8F8F8;\n\tmin-height: 350px;\n}\n\n.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output {\n\tbackground: #23282D;\n\tcolor: #E3E3E3;\n\tfont-family: monospace;\n\tpadding: 19px;\n\toverflow: auto;\n\tposition: absolute;\n\ttop: 60px;\n\tbottom: 0;\n\tright: 0;\n\tleft: 0;\n}\n\n#updraftplus_ajax_restore_output form {\n\twhite-space: normal;\n\tfont-family: -apple-system, blinkmacsystemfont, \"Segoe UI\", roboto, oxygen-sans, ubuntu, cantarell, \"Helvetica Neue\", sans-serif;\n}\n\n#updraftplus_ajax_restore_output .updraft_restore_errors {\n\tborder: 1px solid #DC3232;\n\tpadding: 10px 20px;\n\twhite-space: normal;\n}\n\n.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output h2 {\n\tcolor: #00A0D2;\n\tpadding-top: 10px;\n\tpadding-bottom: 5px;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output {\n\tpadding: 20px;\n\tborder-left: 1px solid #EEE;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output #message {\n\tmargin-left: 0;\n\tmargin-right: 0;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table td,\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table th {\n\tpadding-bottom: 0;\n}\n\n.updraft_restore_main.show-credentials-form .updraft_restore_main--components {\n\topacity: 0.2;\n}\n\n.updraft_restore_main.show-credentials-form div.error .restore-credential-errors--list p {\n\tmargin: 0;\n\tlist-style-type: disc;\n\tdisplay: list-item;\n\tlist-style-position: inside;\n}\n\n.restore-credential-errors > :first-child {\n\tmargin-top: 0;\n}\n\n.restore-credential-errors > :last-child {\n\tmargin-bottom: 0;\n}\n\nul.updraft_restore_components_list li {\n\tcolor: #BABABA;\n\tfont-size: 1.2em;\n\tmargin-bottom: 1em;\n}\n\nul.updraft_restore_components_list li::before {\n\tcontent: '\\f469';\n\tfont-family: dashicons;\n\tfont-size: 20px;\n\tvertical-align: middle;\n\tdisplay: inline-block;\n\tmargin-right: 7px;\n}\n\nul.updraft_restore_components_list li span {\n\tvertical-align: middle;\n}\n\nul.updraft_restore_components_list li.done {\n\tcolor: green;\n}\n\nul.updraft_restore_components_list li.done::before {\n\tcontent: \"\\f147\";\n}\n\nul.updraft_restore_components_list li.active {\n\tcolor: inherit;\n}\n\nul.updraft_restore_components_list li.active::before {\n\tcontent: \"\\f463\";\n\tanimation: udp_rotate 1s linear infinite;\n}\n\nul.updraft_restore_components_list li.error {\n\tcolor: #DC3232;\n}\n\nul.updraft_restore_components_list li.error::before {\n\tcontent: \"\\f335\";\n}\n\n.updraft_restore_result {\n\tpadding: 10px 0;\n\tfont-size: 1.3em;\n\tmargin-bottom: 1em;\n\tvertical-align: middle;\n\tdisplay: none;\n}\n\n.updraft_restore_result.restore-error {\n\tcolor: #DC3232;\n}\n\n.updraft_restore_result.restore-success {\n\tcolor: green;\n}\n\n.updraft_restore_result .dashicons {\n\tfont-size: 35px;\n\theight: 35px;\n\tline-height: 33px;\n\twidth: 35px;\n}\n\n.updraft_restore_result span {\n\tvertical-align: middle;\n}\n\n/* Restore modal */\n\n#updraft-restore-modal {\n\twidth: 100%;\n}\n\ndiv#updraft-restore-modal .notice {\n\tbackground: #F8F8F8;\n}\n\n.updraft-restore-modal--stage .updraft--two-halves,\n.updraft-restore-modal--stage .updraft--one-half {\n\tpadding: 20px 30px;\n}\n\n.updraft-restore-modal--header {\n\tpadding: 20px;\n\tpadding-bottom: 0px;\n\ttext-align: center;\n\tborder-bottom: 1px solid #EEE;\n}\n\n.updraft-restore-modal--header h3 {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-restore-item {\n\tpadding-bottom: 4px;\n}\n\n.updraft-restore-buttons {\n\tpadding-top: 10px;\n}\n\nul.updraft-restore--stages {\n\tdisplay: inline-block;\n\tmargin: 0;\n\theight: 28px;\n}\n\nul.updraft-restore--stages li {\n\tdisplay: inline-block;\n\tposition: relative;\n\twidth: 12px;\n\theight: 12px;\n\tbackground: #D2D2D2;\n\tborder-radius: 20px;\n\tline-height: 1;\n\tmargin: 0 4px;\n\tvertical-align: middle;\n}\n\nul.updraft-restore--stages li.active {\n\tbackground: #444;\n}\n\n.updraft-restore--footer {\n\tborder-top: 1px solid #EEE;\n\tpadding: 20px;\n\ttext-align: center;\n\tposition: sticky;\n\tbottom: 0;\n\tbackground: #FFF;\n\twidth: 100%;\n\tbox-sizing: border-box;\n}\n\n.updraft-restore--footer .updraft-restore--cancel {\n\tposition: absolute;\n\tleft: 20px;\n\ttop: auto;\n}\n\n.updraft-restore--footer .updraft-restore--next-step {\n\tposition: absolute;\n\tright: 20px;\n\ttop: auto;\n}\n\nul.updraft-restore--stages li span {\n\tposition: absolute;\n\twidth: 120px;\n\tbottom: calc(100% + 14px);\n\tleft: -55px;\n\tbackground: #000000DB;\n\tpadding: 5px;\n\tbox-sizing: border-box;\n\tborder-radius: 4px;\n\tcolor: #FFF;\n\ttext-align: center;\n\tdisplay: none;\n}\n\nul.updraft-restore--stages li:hover span {\n\tdisplay: inline-block;\n}\n\n.updraft-restore-item input[type=checkbox] {\n\tmargin-bottom: -5px;\n}\n\n.updraft-restore-item input[type=checkbox]:checked + label {\n\tfont-weight: bold;\n}\n\n/* Hide close button on download window */\ndiv#updraft-restore-modal .ud_downloadstatus__close {\n\tdisplay: none;\n}\n\n#ud_downloadstatus2:not(:empty) {\n\tmargin-top: 15px;\n}\n\n.dashicons.rotate {\n\tanimation: udp_rotate 1s linear infinite;\n}\n\n/* Activity stalled */\n\nspan#updraftplus_ajax_restore_last_activity {\n\tfont-size: .8rem;\n\tfont-weight: normal;\n\tfloat: right;\n}\n\n.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice {\n\tmargin: -20px -20px 20px;\n\tpadding: 19px;\n}\n\n.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice button {\n\tmargin-right: 5px;\n}\n\n#updraft_migrate_receivingsites .updraftplus-remote-sites-selector .button-primary, .updraft_migrate_add_site .input-field input, .updraft_migrate_add_site button {\n\tvertical-align: middle;\n}\n\n#updraft_migrate_receivingsites .text-link-menu a:not(:last-child) {\n\tpadding-right: 10px;\n}\n\n#updraft_migrate_receivingsites a.updraft_migrate_clear_sites span.dashicons-trash:before {\n\tfont-size: 17px;\n}\n\n#updraft_migrate_receivingsites .updraft_migrate_add_site {\n\tclear: both;\n}\n\n@media only screen and (min-width: 1024px) {\n\n\t#updraft_activejobsrow .updraft_row {\n\t\tdisplay: flex;\n\t\talign-items: baseline;\n\t}\n\n\t#updraft_activejobsrow .updraft_row .updraft_col {\n\t\tflex: auto;\n\t}\n\n\t#updraft_activejobsrow .updraft_progress_container {\n\t\twidth: calc(100% - 230px);\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\n\t.settings_page_updraftplus input[type=text],\n\t.settings_page_updraftplus input[type=password],\n\t.settings_page_updraftplus input[type=number] {\n\t\t/* border-radius: 4px; */\n\t\tline-height: 1.42;\n\t\t/* border: 1px solid #CCC; */\n\t\theight: 27px;\n\t\tpadding: 2px 6px;\n\t\tcolor: #555;\n\t}\n\n\t.settings_page_updraftplus input[type=\"number\"] {\n\t\theight: 31px;\n\t}\n\n\t#ud_massactions.active, #updraft-delete-waitwarning.active {\n\t\tposition: fixed;\n\t\tbottom: 0;\n\t\tleft: 160px;\n\t\tright: 0;\n\t\ttop: auto;\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n\t}\n\n\tbody.folded #ud_massactions.active, body.folded #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n\t.updraft-after-form-table {\n\t\tmargin-left: 250px;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.range-selection:not(.backuprowselected) .updraft_existingbackup_date .backup_date_label {\n\t\tcolor: #FFF;\n\t}\n\n}\n\n@media only screen and (min-width: 782px) and (max-width: 960px) {\n\n\tbody.auto-fold #ud_massactions.active, body.auto-fold #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n}\n\n@media only screen and (max-width: 782px) {\n\n\t#updraft-wrap {\n\t\tmargin-right: 0;\n\t}\n\n\t#updraft-wrap .form-table td {\n\t\tpadding-right: 0;\n\t}\n\n\tlabel.updraft_checkbox {\n\t\tmargin-bottom: 8px;\n\t\tmargin-top: 8px;\n\t\tmargin-left: 36px;\n\t}\n\n\t.updraft_retain_rules {\n\t\tposition: relative;\n\t\tmargin-right: 0;\n\t\tborder: 1px solid #CCC;\n\t\tpadding: 5px;\n\t\tmargin-bottom: -1px;\n\t}\n\n\t.updraft_retain_rules_delete {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttop: 5px;\n\t}\n\n\ta[id*=updraft_retain_] {\n\t\tdisplay: block;\n\t\tpadding: 15px 15px 15px 0;\n\t}\n\n\tlabel.updraft_checkbox > input[type=checkbox] {\n\t\tmargin-left: -33px;\n\t}\n\n\t#updraft-backupnow-button {\n\t\tmargin: 0;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > .updraft_backup_btn_wrapper {\n\t\tpadding-top: 0;\n\t}\n\n\t#ud_massactions, #updraft-delete-waitwarning {\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t}\n\n\t#ud_massactions.active {\n\t\tposition: fixed;\n\t\ttop: auto;\n\t\tbottom: 0;\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t\tbox-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t}\n\n\t#ud_massactions strong {\n\t\tdisplay: block;\n\t\tmargin-bottom: 5px;\n\t}\n\n\tsmall.ud_massactions-tip {\n\t\tdisplay: block;\n\t}\n\n/*\t.advert-description {\n\t\tmin-width: 75%;\n\t\tmargin-bottom: 5px;\n\t}\n\n\t.advert-btn {\n\t\tmargin-top: 15px;\n\t\tmargin-left:86px;\n\t\tmin-width: 100%;\n\t}*/\n\n\t.existing-backups-table .backup_date_label > div, .existing-backups-table .backup_date_label span > div {\n\t\tfont-weight: normal;\n\t}\n\n\t.existing-backups-table .backup_date_label .clear-right {\n\t\tdisplay: inline-block;\n\t}\n\n\ttable.widefat.existing-backups-table {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t\tbackground: transparent;\n\t}\n\n\t.existing-backups-table thead {\n\t\tborder: none;\n\t\tclip: rect(0 0 0 0);\n\t\theight: 1px;\n\t\tmargin: -1px;\n\t\toverflow: hidden;\n\t\tpadding: 0;\n\t\tposition: absolute;\n\t\twidth: 1px;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.existing-backups-table tr {\n\t\tdisplay: block;\n\t\tmargin-bottom: .625em;\n\t\tpadding-bottom: 16.625px;\n\t\twidth: 100%;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);\n\t}\n\n\t.existing-backups-table td {\n\t\tborder-bottom: 1px solid #DDD;\n\t\tdisplay: block;\n\t\tfont-size: .9em;\n\t\ttext-align: left;\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: 0;\n\t}\n\n\t.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {\n\t\t/*\n\t\t* aria-label has no advantage, it won't be read inside a table\n\t\tcontent: attr(aria-label);\n\t\t*/\n\t\tcontent: attr(data-label);\n\t\tfont-weight: bold;\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tleft: auto;\n\t\tpadding-bottom: 10px;\n\t\twidth: auto;\n\t\ttext-align: left;\n\t}\n\n\t.existing-backups-table td:last-child {\n\t\tborder-bottom: 0;\n\t}\n\n\t.form-table td.updraft_existingbackup_date {\n\t\twidth: inherit;\n\t\tmax-width: 100%;\n\t}\n\n\t.existing-backups-table td.before-restore-button {\n\t\tmin-height: 36px;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t\twidth: 100%;\n\t}\n\n\t.updraft_progress_container {\n\t\t/* width: 77%; */\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row {\n\t\tposition: relative;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\n\t\tbackground-color: #FFF;\n\t\tborder-left: 4px solid #0572AA;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select) {\n\t\tmargin-left: 50px;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select {\n\t\twidth: 50px !important;\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbox-sizing: border-box;\n\t\theight: 100%;\n\t\tz-index: 1;\n\t\tborder: none;\n\t\tborder-right: 1px solid rgba(0, 0, 0, 0.05);\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups input[type=\"checkbox\"] {\n\t\theight: 25px;\n\t}\n\n\t.updraft_migrate_intro button.button.button-primary.button-hero {\n\t\tdisplay: block;\n\t\tmargin-right: 0;\n\t\twidth: 100%;\n\t\tmax-width: 100%;\n\t}\n\n\t.updraftclone-main-row {\n\t\tflex-direction: column;\n\t}\n\n\t.updraftclone-main-row > div {\n\t\twidth: auto;\n\t\tmax-width: none;\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.form-table th {\n\t\tpadding-bottom: 10px;\n\t}\n\n\t.updraft--flex {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_restore_main {\n\t\tflex-wrap: wrap;\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_restore_main--components {\n\t\twidth: 100%;\n\t\tmin-height: 0;\n\t}\n\n\t.updraft_restore_main--activity {\n\t\twidth: 100%;\n\t}\n\n\tdiv#updraftplus_ajax_restore_output,\n\t.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output {\n\t\tposition: relative;\n\t\ttop: 0;\n\t\tbottom: auto;\n\t}\n\n\t.updraft--flex > .updraft--two-halves,\n\t.updraft--flex > .updraft--one-half {\n\t\twidth: 100%;\n\t}\n\n\t.updraft-restore-item {\n\t\tpadding-bottom: 10px;\n\t\tpadding-top: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 600px) {\n\t\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t}\n\n\t.updraft_next_scheduled_entity {\n\t\tfloat: none;\n\t\twidth: 100%;\n\t\tmargin-bottom: 2em;\n\t}\n\n\t.updraft_time_now_wrapper {\n\t\tmargin-top: 0;\n\t}\n\n\t#updraft_lastlogmessagerow h3 {\n\t\tmargin-bottom: 5px;\n\t}\n\n\t#updraft_lastlogmessagerow .updraft-log-link {\n\t\tdisplay: block;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 520px) {\n}\n\n@media only screen and (min-width: 768px) {\n\n\t.addon-activation-notice {\n\t\tleft: 20em;\n\t}\n\n\t.existing-backups-table tbody tr.range-selection:hover, .existing-backups-table tbody tr.range-selection {\n\t\tbackground: #0572AA; /* #2b7fd9 */\n\t}\n\n\t.existing-backups-table tbody tr:hover {\n\t\tbackground: #F1F1F1;\n\t}\n\n\t.existing-backups-table tbody tr td.before-restore-button {\n\t\tposition: relative;\n\t}\n\n\t.form-table .existing-backups-table thead th.check-column {\n\t\tpadding-left: 6px;\n\t}\n\n\t.existing-backups-table tr td:first-child {\n\t\tborder-left: 4px solid transparent;\n\t}\n\n\t.existing-backups-table tr.backuprowselected td:first-child {\n\t\tborder-left-color: #0572AA;\n\t}\n\n}\n\n@media screen and (min-width: 670px) {\n\t\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\n\t\tfloat: left;\n\t\twidth: 215px;\n\t\tborder-right: 1px solid rgb(204, 204, 204);\n\t\tborder-bottom: none;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_content {\n\t\tpadding-left: 10px;\n\t\tpadding-top: 0px;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\t\tdisplay: block;\n\t}\n\n}\n\n@media only screen and (max-width: 1068px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: calc(50% - 10px);\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: 100px;\n\t}\n\n}\n\n@media only screen and (max-width: 600px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: 100%;\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: auto;\n\t}\n\n\ttable.updraft_feat_table {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table tr {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t}\n\n\ttable.updraft_feat_table td {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table td:first-child {\n\t\twidth: 100%;\n\t\tborder-bottom: none;\n\t}\n\n\ttable.updraft_feat_table td:not(:first-child) {\n\t\twidth: 50%;\n\t\tbox-sizing: border-box;\n\t}\n\n\ttable.updraft_feat_table td:first-child:empty {\n\t\tdisplay: none;\n\t}\n\n\ttd[data-colname]::before {\n\t\tcontent: attr(data-colname);\n\t\tfont-size: 0.8rem;\n\t\tcolor: #CCC;\n\t\tline-height: 1;\n\t}\n\n}\n"]}
1
+ {"version":3,"sources":["css/updraftplus-admin.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,WAAW;EACX,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb,uBAAuB;EACvB;;CAED;;AAED;;CAEC;EACC,qBAAqB;EACrB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,oBAAgB;KAAhB,gBAAgB;CAChB;;AAED;CACC,YAAQ;KAAR,QAAQ;CACR,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,eAAW;KAAX,WAAW;CACX;;AAED;CACC,YAAY;CACZ,eAAW;KAAX,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,uCAAuC;CACvC;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,eAAe;CACf,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,aAAa;CACb;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;;CAEC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED,qBAAqB;;AAErB,kBAAkB;AAClB;CACC,kBAAkB;CAClB,oBAAoB;CACpB,oBAAoB;CACpB,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,wBAAwB;CACxB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,yBAAyB;CACzB,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,gCAAgC;CAChC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;;EAEE;;AAEF;CACC,cAAc;CACd;;AAED,gBAAgB;;AAEhB;CACC,qBAAc;CAAd,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,YAAQ;KAAR,QAAQ;CACR;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED,yBAAyB;AACzB;CACC,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT,OAAO;CACP,aAAa;CACb,4BAA4B;CAC5B,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,2BAAuB;KAAvB,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,8BAAiB;KAAjB,iBAAiB;CACjB;;AAED;;CAEC,YAAY;CACZ;;AAED;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EACpB,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,6BAAgB;MAAhB,gBAAgB;EAChB;;CAED;;EAEC,aAAa;EACb;;CAED;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,sBAAsB;AACtB;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,uBAAuB;CACvB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,aAAa;CACb;;AAED,oBAAoB;AACpB;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,qCAAqC;AACrC;CACC,oBAAoB;CACpB,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,aAAa;;AAEb;CACC,sBAAsB;CACtB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,6BAA6B;AAC7B;CACC,mBAAmB;CACnB,qBAAc;CAAd,cAAc;CACd,2BAAsB;KAAtB,sBAAsB;CACtB,8BAAsB;KAAtB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,oBAAoB;CACpB,8BAA8B;CAC9B;;AAED;;CAEC,cAAc;CACd,kBAAkB;CAClB,aAAa;CACb,UAAU;CACV;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,oBAAoB;CACpB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB,qBAAqB;CACrB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB;;AAED;;EAEE;AACF;CACC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB,UAAU;CACV,iBAAiB;CACjB,oBAAoB;CACpB,qBAAqB;CACrB;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,cAAc;CACd,oFAAoF;CACpF,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB,iCAAiC;CACjC,iDAAiD;CACjD;;AAED;CACC,wGAAwG;CACxG;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,kEAAkE;CAClE,WAAW;CACX;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,iBAAiB;CACjB,8BAAsB;KAAtB,sBAAsB;CACtB,oBAAgB;KAAhB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB,aAAa;CACb,yBAAyB;CACzB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,+BAA+B;CAC/B,sBAAwB;KAAxB,wBAAwB;CACxB,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,kCAAkC;CAClC,0BAA0B;CAC1B;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,UAAU;CACV,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,0FAA0F;CAC1F,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,gBAAgB;CAChB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,sBAAsB;CACtB,YAAY;CACZ;;GAEE;CACF;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,4BAA4B;CAC5B,+BAA+B;CAC/B,YAAY;CACZ,gBAAgB;CAChB,0CAA0C;CAC1C;;AAED;CACC,oBAAoB;CACpB,6BAA6B;CAC7B,gCAAgC;CAChC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,oBAAoB;CACpB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB,YAAY;CACZ,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;;AAEtB,4BAA4B;;AAE5B;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX;;AAED;;CAEC,kBAAkB;CAClB,gBAAgB;CAChB,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB,iBAAiB;CACjB;;AAED;;;CAGC,yBAAyB;CACzB,iBAAiB;CACjB;;AAED;;CAEC;;EAEC,sBAAsB;EACtB;;CAED;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB;;AAED;;;CAGC,eAAe;CACf;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;;;CAGC,aAAa;CACb,iBAAiB;CACjB,aAAa;CACb,wBAAwB;CACxB,mBAAmB;CACnB,SAAS;CACT,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;;CAEC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb,aAAa;CACb,8BAA8B;CAC9B;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ,aAAa;CACb,iBAAiB;CACjB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB,kBAAkB;CAClB,0CAA0C;CAC1C;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,aAAa;CACb,yCAAyC;CACzC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd,+BAA+B;CAC/B,uBAAuB;CACvB,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd,iBAAiB;CACjB,mBAAmB;CACnB,0CAA0C;CAC1C,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,YAAY;CACZ,uBAAuB;CACvB,oBAAoB;CACpB,mBAAmB;CACnB,gBAAgB;CAChB,yCAAyC;CACzC;;AAED;CACC,aAAa;CACb,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,2BAA2B;CAC3B,4BAA4B;CAC5B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,YAAY;CACZ,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,sBAAsB;CACtB,4BAA4B;CAC5B;;AAED;;CAEC,mBAAmB;CACnB,YAAY;CACZ,iBAAiB;CACjB;;AAED,mDAAmD;AACnD;CACC,eAAe;CACf,0BAA0B;CAC1B,mBAAmB;CACnB,yBAAyB;CACzB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,iBAAiB;CACjB,WAAW;CACX,+BAA+B;CAC/B;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,0BAA0B;CAC1B,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,uBAA+B;KAA/B,+BAA+B;CAC/B,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,UAAU;CACV,mBAAmB;CACnB,wBAAwB;CACxB,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,2BAAuB;MAAvB,uBAAuB;EACvB,mBAAmB;EACnB,uBAAoB;MAApB,oBAAoB;EACpB;;CAED;EACC,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,cAAc;CACd,yCAAyC;CACzC,mBAAmB;CACnB;;AAED;CACC,UAAU;CACV;;AAED;CACC,4BAAmB;KAAnB,2BAAmB;KAAnB,mBAAmB;CACnB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;EAEE;AACF;CACC,qBAAc;CAAd,cAAc;CACd,wBAAoB;KAApB,oBAAoB;CACpB,oBAAgB;KAAhB,gBAAgB;CAChB,uBAA+B;KAA/B,+BAA+B;CAC/B,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,uBAAuB;CACvB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,UAAU;CACV,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,iBAAiB;CACjB,4BAA4B;CAC5B,2BAA2B;CAC3B,uCAAuC;CACvC,qBAAqB;CACrB,kBAAkB;CAClB;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,4CAA4C;CAC5C,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,aAAa;CACb;;AAED;CACC,aAAa;CACb,wBAAwB;CACxB,YAAY;CACZ,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd,sBAAsB;CACtB,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED,qBAAqB;AACrB;CACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,WAAW;CACX,2BAA2B;CAC3B;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,oCAAoC;CACpC,+BAA+B;CAC/B,oCAAoC;CACpC;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,mBAAmB;CACnB,6CAA6C;CAC7C;;AAED;CACC,eAAe;CACf,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,iBAAiB;CACjB,UAAU;CACV,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,+BAA+B;CAC/B,mBAAmB;CACnB,QAAQ;CACR,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,0BAA0B;CAC1B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CAGC,uBAAuB;CACvB,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED,uCAAuC;AACvC,6CAA6C;AAC7C;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,4CAA4C;CAC5C;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,uBAAuB;CACvB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,4BAA4B;CAC5B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,+BAA+B;CAC/B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAAuB;KAAvB,uBAAuB;CACvB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,eAAe;CACf,eAAe;CACf,2CAA2C;CAC3C;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,WAAW;CACX;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED,sBAAsB;;AAEtB;CACC,eAAe;CACf,gBAAgB;CAChB,OAAO;CACP,QAAQ;CACR,SAAS;CACT,UAAU;CACV,eAAe;CACf,kBAAkB;CAClB,oBAAoB;CACpB,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB,iBAAiB;CACjB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,eAAe;CACf,iBAAiB;CACjB,iBAAiB;CACjB,yCAAyC;CACzC,mBAAmB;CACnB,qBAAc;CAAd,cAAc;CACd,oBAAgB;KAAhB,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,YAAY;CACZ,gBAAgB;CAChB,oBAAoB;CACpB,mBAAmB;CACnB,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,oBAAoB;CACpB,eAAe;CACf,uBAAuB;CACvB,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,UAAU;CACV,SAAS;CACT,QAAQ;CACR;;AAED;CACC,oBAAoB;CACpB,iIAAiI;CACjI;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;;CAEC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,sBAAsB;CACtB,mBAAmB;CACnB,4BAA4B;CAC5B;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB,gBAAgB;CAChB,uBAAuB;CACvB,sBAAsB;CACtB,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,yCAAyC;CACzC;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ;;AAED;CACC,uBAAuB;CACvB;;AAED,mBAAmB;;AAEnB;CACC,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB,8BAA8B;CAC9B;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,oBAAoB;CACpB,eAAe;CACf,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B,cAAc;CACd,mBAAmB;CACnB,yBAAiB;CAAjB,iBAAiB;CACjB,UAAU;CACV,iBAAiB;CACjB,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,UAAU;CACV;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,UAAU;CACV;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,0BAA0B;CAC1B,YAAY;CACZ,mCAAsB;CACtB,aAAa;CACb,uBAAuB;CACvB,mBAAmB;CACnB,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED,0CAA0C;AAC1C;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,yCAAyC;CACzC;;AAED,sBAAsB;;AAEtB;CACC,iBAAiB;CACjB,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,yBAAyB;CACzB,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,qBAAc;EAAd,cAAc;EACd,yBAAsB;MAAtB,sBAAsB;EACtB;;CAED;EACC,eAAW;MAAX,WAAW;EACX;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;;;EAGC,yBAAyB;EACzB,kBAAkB;EAClB,6BAA6B;EAC7B,aAAa;EACb,iBAAiB;EACjB,YAAY;EACZ;;CAED;EACC,aAAa;EACb;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,YAAY;EACZ,SAAS;EACT,UAAU;EACV,iBAAiB;EACjB,WAAW;EACX,wCAAwC;EACxC;;CAED;EACC,WAAW;EACX;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,YAAY;EACZ;;CAED;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,kBAAkB;EAClB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,uBAAuB;EACvB,aAAa;EACb,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,SAAS;EACT,SAAS;EACT;;CAED;EACC,eAAe;EACf,0BAA0B;EAC1B;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,UAAU;EACV,eAAe;EACf,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,UAAU;EACV,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB,4CAA4C;EAC5C,iBAAiB;EACjB,WAAW;EACX;;CAED;EACC,eAAe;EACf,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf;;AAEF;;;;;;;;;IASI;;CAEH;EACC,oBAAoB;EACpB;;CAED;EACC,sBAAsB;EACtB;;CAED;EACC,UAAU;EACV,iBAAiB;EACjB,wBAAwB;EACxB;;CAED;EACC,aAAa;EACb,oBAAoB;EACpB,YAAY;EACZ,aAAa;EACb,iBAAiB;EACjB,WAAW;EACX,mBAAmB;EACnB,WAAW;EACX,WAAW;EACX,UAAU;EACV;;CAED;EACC,eAAe;EACf,sBAAsB;EACtB,yBAAyB;EACzB,YAAY;EACZ,WAAW;EACX,UAAU;EACV,oBAAoB;EACpB,iBAAiB;EACjB,yCAAyC;EACzC;;CAED;EACC,8BAA8B;EAC9B,eAAe;EACf,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,cAAc;EACd,UAAU;EACV;;CAED;EACC;;;IAGE;EACF,0BAA0B;EAC1B,kBAAkB;EAClB,eAAe;EACf,mBAAmB;EACnB,WAAW;EACX,qBAAqB;EACrB,YAAY;EACZ,iBAAiB;EACjB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,uBAAuB;EACvB,+BAA+B;EAC/B;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,uBAAuB;EACvB,mBAAmB;EACnB,QAAQ;EACR,OAAO;EACP,uBAAuB;EACvB,aAAa;EACb,WAAW;EACX,aAAa;EACb,4CAA4C;EAC5C;;CAED;EACC,aAAa;EACb;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB,YAAY;EACZ,gBAAgB;EAChB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ,gBAAgB;EAChB,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;EACC,qBAAqB;EACrB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,oBAAgB;MAAhB,gBAAgB;EAChB,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ,cAAc;EACd;;CAED;EACC,YAAY;EACZ;;CAED;;EAEC,mBAAmB;EACnB,OAAO;EACP,aAAa;EACb;;CAED;;EAEC,YAAY;EACZ;;CAED;EACC,qBAAqB;EACrB,kBAAkB;EAClB;;CAED;;AAED;;CAEC;EACC;;CAED;EACC,YAAY;EACZ,YAAY;EACZ,mBAAmB;EACnB;;CAED;EACC,cAAc;EACd;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf,YAAY;EACZ,UAAU;EACV,oBAAoB;EACpB;;CAED;;AAED;CACC;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,oBAAoB,CAAC,aAAa;EAClC;;CAED;EACC,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,mCAAmC;EACnC;;CAED;EACC,2BAA2B;EAC3B;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED;;AAED;;CAEC;EACC,wBAAwB;EACxB,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,qBAAc;EAAd,cAAc;EACd,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,WAAW;EACX,uBAAuB;EACvB;;CAED;EACC,cAAc;EACd;;CAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAED","file":"updraftplus-admin-1-16-28.min.css","sourcesContent":["@keyframes udp_blink {\n\n\tfrom {\n\t\topacity: 1;\n\t\ttransform: scale(1);\n\t}\n\n\tto {\n\t\topacity: 0.4;\n\t\ttransform: scale(0.85);\n\t}\n\n}\n\n@keyframes udp_rotate {\n\n\tfrom {\n\t\ttransform: rotate(0);\n\t}\n\n\tto {\n\t\ttransform: rotate(360deg);\n\t}\n\n}\n\n/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.max-width-700 {\n\tmax-width: 700px;\n}\n\n.width-900 {\n\tmax-width: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n.updraft--flex {\n\tdisplay: flex;\n\tflex-wrap: wrap;\n}\n\n.updraft--flex > * {\n\tflex: 1;\n\tbox-sizing: border-box;\n}\n\n.updraft--flex > .updraft--one-half {\n\twidth: 50%;\n\tflex: auto;\n}\n\n.updraft--flex > .updraft--two-halves {\n\twidth: 100%;\n\tflex: auto;\n}\n\n.updraft-color--very-light-grey {\n\tbackground: #F8F8F8;\n}\n\n/* End widths and sizing */\n\n/* Font styling */\n.no-decoration {\n\ttext-decoration: none;\n}\n\n.bold {\n\tfont-weight: bold;\n}\n\n/* End font styling */\n/* Alignment */\n.center-align-td {\n\ttext-align: center;\n}\n\n/* End of Alignment */\n/* Padding */\n.remove-padding {\n\tpadding: 0 !important;\n}\n\n/* End of padding */\n\n.updraft-text-center {\n\ttext-align: center;\n}\n\n.autobackup {\n\tpadding: 6px;\n\tmargin: 8px 0px;\n}\n\nul .disc {\n\tlist-style: disc inside;\n}\n\n.dashicons-log-fix {\n\tdisplay: inherit;\n}\n\n.udpdraft__lifted {\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n}\n\n#updraft-wrap a .dashicons {\n\ttext-decoration: none;\n}\n\n.updraft-field-description,\ntable.form-table td p.updraft-field-description {\n\tfont-size: 90%;\n\tline-height: 1.2;\n\tfont-style: italic;\n\tmargin-bottom: 5px;\n}\n\n/* Input boxes */\nlabel.updraft_checkbox {\n\tdisplay: block;\n\tmargin-bottom: 4px;\n\tmargin-left: 26px;\n}\n\nlabel.updraft_checkbox > input[type=checkbox] {\n\tmargin-left: -25px;\n}\n\ndiv[id*=\"updraft_include_\"] {\n\tmargin-bottom: 9px;\n}\n\n/* Input boxes */\n.settings_page_updraftplus input[type=\"file\"] {\n\tborder: none;\n}\n\n.settings_page_updraftplus .wipe_settings {\n\tpadding-bottom: 10px;\n}\n\n.settings_page_updraftplus input[type=\"text\"] {\n\tfont-size: 14px;\n}\n\n.settings_page_updraftplus select {\n\tborder-radius: 4px;\n\tmax-width: 100%;\n}\n\ninput.updraft_input--wide,\ntextarea.updraft_input--wide {\n\tmax-width: 442px;\n\twidth: 100%;\n}\n\n#updraft-wrap .button-large {\n\tfont-size: 1.3em;\n}\n\n/* End input boxes */\n\n/* Main Buttons */\n.main-dashboard-buttons {\n\tborder-width: 4px;\n\tborder-radius: 12px;\n\tletter-spacing: 0px;\n\tfont-size: 17px;\n\tfont-weight: bold;\n\tpadding-left: 0.7em;\n\tpadding-right: 2em;\n\tpadding: 0.3em 1em;\n\tline-height: 1.7em;\n\tbackground: transparent;\n\tposition: relative;\n\tborder: 2px solid;\n\ttransition: all 0.2s;\n\tvertical-align: baseline;\n\tbox-sizing: border-box;\n\ttext-align: center;\n\tline-height: 1.3em;\n\tmargin-left: .3em;\n\ttext-transform: none;\n\tline-height: 1;\n\ttext-decoration: none;\n}\n\n.button-restore {\n\tborder-color: rgb(98, 158, 192);\n\tcolor: rgb(98, 158, 192);\n}\n\n.dashboard-main-sizing {\n\tborder-width: 4px;\n\twidth: 190px;\n\tline-height: 1.7em;\n}\n\np.updraftplus-option {\n\tmargin-top: 0;\n\tmargin-bottom: 5px;\n}\n\np.updraftplus-option-inline {\n\tdisplay: inline-block;\n\tpadding-right: 20px;\n}\n\nspan.updraftplus-option-label {\n\tdisplay: block;\n}\n\n/*\n* MIGRATE - CLONE\n*/\n\n#updraft-navtab-migrate-content .postbox {\n\tpadding: 18px;\n}\n\n/* Clone Rows */\n\n.updraftclone-main-row {\n\tdisplay: flex;\n}\n\n.updraftclone-tokens {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tmargin-right: 20px;\n\tmax-width: 300px;\n}\n\n.updraftclone-tokens p {\n\tmargin: 0;\n}\n\n.updraftclone_action_box {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tflex: 1;\n}\n\n.updraftclone_action_box p:first-child {\n\tmargin-top: 0;\n}\n\n.updraftclone_action_box p:last-child {\n\tmargin-bottom: 0;\n}\n\n.updraftclone_action_box #ud_downloadstatus3 {\n\tmargin-top: 10px;\n}\n\nspan.tokens-number {\n\tfont-size: 46px;\n\tdisplay: block;\n}\n\n/* Clone header button */\n.button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: none;\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\theight: 100%;\n\tborder-left: 1px solid #CCC;\n\tpadding-left: 10px;\n\tpadding-right: 10px;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_container {\n\tdisplay: flex;\n\tflex-direction: column;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box {\n\tmargin-right: 20px;\n\twidth: 100%;\n\tflex-basis: 100%;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box iframe,\n.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\n\tfloat: none;\n}\n\n@media (min-width: 1024px) {\n\n\t.updraft_migrate_widget_temporary_clone_stage0_container {\n\t\tflex-direction: row;\n\t\tflex-wrap: wrap;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box {\n\t\tflex-basis: 45%;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box iframe,\n\t.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\n\t\tfloat: right;\n\t}\n\n}\n\n.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n}\n\n.opened .button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: inline-block;\n}\n\n.opened .updraft_migrate_widget_temporary_clone_stage0 {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 8px;\n\tmargin-bottom: 21px;\n}\n\n/* Clone list table */\n.clone-list {\n\tclear: both;\n\twidth: 100%;\n\tmargin-top: 40px;\n}\n\n.clone-list table {\n\twidth: 100%;\n\ttext-align: left;\n}\n\n.clone-list table tr th {\n\tbackground: #E4E4E4;\n}\n\n.clone-list table tr td {\n\tbackground: #F5F5F5;\n\tword-break: break-word;\n}\n\n.clone-list table tr:nth-child(odd) td {\n\tbackground: #FAFAFA;\n}\n\n.clone-list table td,\n.clone-list table th {\n\tpadding: 6px;\n}\n\n/* Clone Progress */\n.updraftplus-clone .updraft_row {\n\tpadding-left: 0;\n\tpadding-right: 0;\n}\n\nbutton#updraft_migrate_createclone + .updraftplus_spinner {\n\tmargin-top: 13px;\n}\n\n/* Clone - Show step 1 info button */\n.button.button-hero.updraftclone_show_step_1 {\n\twhite-space: normal;\n\theight: auto;\n\tline-height: 14px;\n\tpadding-top: 10px;\n\tpadding-bottom: 10px;\n}\n\n.button.button-hero.updraftclone_show_step_1 span.dashicons {\n\theight: auto;\n}\n\n.updraftplus_clone_status {\n\tcolor: red;\n}\n\n/* MIGRATE */\n\na.updraft_migrate_add_site--trigger span.dashicons {\n\ttext-decoration: none;\n}\n\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\n.button-view-log:hover, .button-mass-selectors:hover,\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\n\tborder-color: #DF6926;\n\tcolor: #DF6926;\n}\n\n.button-migrate {\n\tcolor: rgb(238, 169, 32);\n\tborder-color: rgb(238, 169, 32);\n}\n\n#updraft_migrate_tab_main {\n\tpadding: 8px;\n}\n\n.updraft_migrate_widget_module_content {\n\tbackground: #FFF;\n\tborder-radius: 0;\n\tposition: relative;\n}\n\nbody.js #updraft_migrate .updraft_migrate_widget_module_content {\n\tdisplay: none;\n}\n\n.updraft_migrate_widget_module_content > h3,\ndiv[class*=\"updraft_migrate_widget_temporary_clone_stage\"] > h3 {\n\tmargin-top: 0;\n}\n\n/* Migrate / Clone headers */\n.updraft_migrate_widget_module_content header {\n\tposition: relative;\n\tdisplay: flex;\n\talign-content: center;\n\tjustify-items: center;\n\tmargin-top: -18px;\n\tmargin-left: -18px;\n\tmargin-right: -18px;\n\tmargin-bottom: 15px;\n\tborder-bottom: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content header h3,\n.updraft_migrate_widget_module_content header button.button.close {\n\tpadding: 10px;\n\tline-height: 20px;\n\theight: auto;\n\tmargin: 0;\n}\n\n.updraft_migrate_widget_module_content button.button.close {\n\ttext-decoration: none;\n\tpadding-left: 5px;\n\tborder-right: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content button.button.close .dashicons {\n\tmargin-top: 1px;\n}\n\n.updraft_migrate_widget_module_content header h3 {\n\tmargin: 0;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero {\n\tmax-width: 235px;\n\tword-wrap: normal;\n\twhite-space: normal;\n\tline-height: 1;\n\theight: auto;\n\tpadding-top: 13px;\n\tpadding-bottom: 13px;\n\ttext-align: left;\n\tposition: relative;\n\tmargin-right: 10px;\n\tmargin-bottom: 10px;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero .dashicons {\n\tposition: absolute;\n\tleft: 10px;\n\ttop: calc(50% - 8px);\n}\n\n/*\njquery UI Accordion module\n*/\n#updraft_migrate .ui-widget-content a {\n\tcolor: #1C94C4;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header {\n\tbackground: #F6F6F6;\n\tmargin: 0;\n\tborder-radius: 0;\n\tpadding-left: 0.5em;\n\tpadding-right: 0.7em;\n}\n\n#updraft-wrap .ui-widget {\n\tfont-family: inherit;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w {\n\tbackground-position: -96px 0px;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s {\n\tbackground-position: -64px 0;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tleft: auto;\n\tright: 5px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px rgba(91, 157, 217, 0.22), 0 0 2px 1px rgba(30, 140, 190, 0.3);\n\tbackground: #FFF;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons {\n\tcolor: #0572AA;\n\topacity: 1;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active {\n\tbackground: #F6F6F6;\n\tborder-bottom: 2px solid #0572AA;\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus {\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3), 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child) {\n\tborder-top: none;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .dashicons {\n\topacity: 0.4;\n\tmargin-right: 10px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n\tz-index: 1;\n}\n\nbutton.ui-dialog-titlebar-close:before {\n\tcontent: none!important;\n}\n\n.updraft_next_scheduled_backups_wrapper {\n\tdisplay: flex;\n\tbackground: #FFF;\n\tjustify-items: center;\n\tflex-wrap: wrap;\n}\n\n.updraft_next_scheduled_backups_wrapper > div {\n\twidth: 50%;\n\tbackground: #FFF;\n\theight: auto;\n\t/* padding: 18px 33px; */\n\tpadding: 33px;\n\tbox-sizing: border-box;\n}\n\n.updraft_backup_btn_wrapper {\n\ttext-align: center;\n\tborder-left: 1px solid #F1F1F1;\n\tjustify-content: center;\n\talign-items: center;\n}\n\n.incremental-backups-only {\n\tdisplay: none;\n}\n\n.incremental-free-only {\n\tdisplay: none;\n}\n\n.incremental-free-only p {\n\tpadding: 5px;\n\tbackground: rgba(255, 0, 0, 0.06);\n\tborder: 1px solid #BFBFBF;\n}\n\n#updraft-delete-waitwarning span.spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tmargin: 0;\n\tmargin-right: 10px;\n}\n\nbutton#updraft-backupnow-button .spinner,\nbutton#updraft-backupnow-button .dashicons-yes {\n\tdisplay: none;\n}\n\nbutton#updraft-backupnow-button.loading .spinner {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tmargin-top: 13px;\n\tmargin-right: 0;\n}\n\nbutton#updraft-backupnow-button.loading {\n\tbackground-color: #EFEFEF;\n\tborder-color: #CCC;\n\ttext-shadow: 0 -1px 1px #BBC3C7, 1px 0 1px #BBC3C7, 0 1px 1px #BBC3C7, -1px 0 1px #BBC3C7;\n\tbox-shadow: none;\n}\n\nbutton#updraft-backupnow-button.finished .dashicons-yes {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tfont-size: 42px;\n\tmargin-right: 0;\n\tmargin-top: 2px;\n}\n\n.updraft_next_scheduled_entity {\n\twidth: 50%;\n\tdisplay: inline-block;\n\tfloat: left;\n\t/*\n\tpadding: 20px 20px 10px 20px;\n\t*/\n}\n\n.updraft_next_scheduled_entity .dashicons {\n\tcolor: #CCC;\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_entity strong {\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_heading {\n\tmargin-bottom: 10px;\n}\n\n.updraft_next_scheduled_date_time {\n\tcolor: #46A84B;\n}\n\n.updraft_time_now_wrapper {\n\tmargin-top: 68px;\n\twidth: 100%;\n}\n\n.updraft_time_now_label, .updraft_time_now {\n\tdisplay: inline-block;\n\tpadding: 7px;\n}\n\n.updraft_time_now_label {\n\tbackground: #B7B7B7;\n\tborder-top-left-radius: 4px;\n\tborder-bottom-left-radius: 4px;\n\tcolor: #FFF;\n\tmargin-right: 0;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);\n}\n\n.updraft_time_now {\n\tbackground: #F1F1F1;\n\tborder-top-right-radius: 4px;\n\tborder-bottom-right-radius: 4px;\n\tmargin-left: -3px;\n}\n\n#updraft_lastlogmessagerow {\n\tmargin: 6px 0;\n}\n\n#updraft_lastlogmessagerow {\n\tclear: both;\n\tpadding: 0.25px 0;\n}\n\n#updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: right;\n\tmargin-top: -2.5em;\n\tmargin-right: 2px;\n}\n\n#updraft_lastlogmessagerow > div {\n\tclear: both;\n\tbackground: #FFF;\n\tpadding: 18px;\n}\n\n#updraft_activejobs_table {\n\toverflow: hidden;\n\twidth: 100%;\n\tbackground: #FAFAFA;\n\tpadding: 0;\n}\n\n.updraft_requeststart {\n\tpadding: 15px 33px;\n\ttext-align: center;\n}\n\n.updraft_requeststart .spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tvertical-align: middle;\n\tmargin-top: -2px;\n}\n\na.updraft_jobinfo_delete.disabled {\n\topacity: 0.4;\n\tcolor: inherit;\n\ttext-decoration: none;\n}\n\n.updraft_row {\n\tclear: both;\n\ttransition: 0.3s all;\n\tpadding: 15px 33px;\n}\n\n.updraft_row.deleting {\n\topacity: 0.4;\n}\n\n.updraft_progress_container {\n\t/* width: 83%; */\n}\n\n.updraft_existing_backups_count {\n\tpadding: 2px 8px;\n\tfont-size: 12px;\n\tbackground: #CA4A1E;\n\tcolor: #FFF;\n\tfont-weight: bold;\n\tborder-radius: 10px;\n}\n\n.form-table .existing-backups-table input[type=\"checkbox\"] {\n\tborder-radius: 0;\n}\n\n.form-table .existing-backups-table .check-column {\n\twidth: 40px;\n\tpadding: 0;\n\tpadding-top: 8px;\n}\n\n.existing-backups-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.existing-backups-restore-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.button-delete {\n\tcolor: #E23900;\n\tborder-color: #E23900;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 10px;\n}\n\n.button-view-log, .button-mass-selectors {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-top: -1px;\n}\n\n.button-view-log {\n\twidth: 120px;\n}\n\n.button-existing-restore {\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\twidth: 110px;\n}\n\n.main-restore {\n\tmargin-right: 3%;\n\tmargin-left: 3%;\n}\n\n.button-entity-backup {\n\tcolor: #555;\n\tborder-color: #555;\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 5px;\n}\n\n.button-select-all {\n\twidth: 122px;\n}\n\n.button-deselect {\n\twidth: 92px;\n}\n\n#ud_massactions > .display-flex > .mass-selectors-margins, #updraft-delete-waitwarning > .display-flex > .mass-selectors-margins {\n\tmargin-right: -4px;\n}\n\n.udp-button-primary {\n\tborder-width: 4px;\n\tcolor: #0073AA;\n\tborder-color: #0073AA;\n\tfont-size: 14px;\n\theight: 40px;\n}\n\n#ud_massactions .button-delete {\n\tmargin-right: 0px;\n}\n\n.stored_local {\n\tborder-radius: 5px;\n\tbackground-color: #007FE7;\n\tpadding: 3px 5px 5px 5px;\n\tcolor: #FFF;\n\tfont-size: 75%;\n}\n\nspan#updraft_lastlogcontainer {\n\tword-break: break-all;\n}\n\n.stored_icon {\n\theight: 1.3em;\n\tposition: relative;\n\ttop: 0.2em;\n}\n\n.backup_date_label > * {\n\tvertical-align: middle;\n}\n\n.backup_date_label .dashicons {\n\tfont-size: 18px;\n}\n\n.backup_date_label .clear-right {\n\tclear: right;\n}\n\n.existing-backups-table .backup_date_label > div, .existing-backups-table .backup_date_label span > div {\n\tfont-weight: bold;\n}\n\n/* End Main Buttons */\n\n/* End of common elements */\n\n.udp-logo-70 {\n\twidth: 70px;\n\theight: 70px;\n\tfloat: left;\n\tpadding-right: 25px;\n}\n\nh3 .thank-you {\n\tmargin-top: 0px;\n}\n\n.ws_advert {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n.dismiss-dash-notice {\n\tfloat: right;\n\tposition: relative;\n\ttop: -20px;\n}\n\n.updraft_exclude_container,\n.updraft_include_container {\n\tmargin-left: 24px;\n\tmargin-top: 5px;\n\tmargin-bottom: 10px;\n\tpadding: 15px;\n\tborder: 1px solid #DDD;\n}\n\nlabel.updraft-exclude-label {\n\tfont-weight: 500;\n\tmargin-bottom: 5px;\n\tdisplay: block;\n}\n\n.updraft_add_exclude_item,\n#updraft_include_more_paths_another {\n\tdisplay: inline-block;\n\tmargin-top: 10px;\n}\n\ninput.updraft_exclude_entity_field,\n.form-table td input.updraft_exclude_entity_field,\n.updraftplus-morefiles-row input[type=text] {\n\twidth: calc(100% - 70px);\n\tmax-width: 400px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.form-table td input.updraft_exclude_entity_field,\n\t.form-table td .updraftplus-morefiles-row input[type=text] {\n\t\tdisplay: inline-block;\n\t}\n\n}\n\n.updraft_exclude_entity_delete.dashicons, .updraft_exclude_entity_edit.dashicons, .updraft_exclude_entity_update.dashicons, .updraftplus-morefiles-row a.dashicons {\n\tmargin-top: 2px;\n\tfont-size: 20px;\n\tbox-shadow: none;\n\tline-height: 1;\n\tpadding: 3px;\n\tmargin-right: 4px;\n}\n\n.updraft_exclude_entity_delete,\n.updraft_exclude_entity_delete:hover,\n.updraftplus-morefiles-row-delete {\n\tcolor: #FF6347;\n}\n\n.updraft_exclude_entity_update.dashicons, .updraft_exclude_entity_update.dashicons:hover {\n\tcolor: #008000;\n\tfont-weight: bold;\n\tfont-size: 22px;\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_edit {\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete {\n\tdisplay: none;\n}\n\n.updraft-exclude-panel-heading {\n\tmargin-bottom: 8px;\n}\n\n.updraft-exclude-panel-heading h3 {\n\tmargin: 0.5em 0 0.5em 0;\n}\n\n.updraft-exclude-submit.button-primary {\n\tmargin-top: 5px;\n}\n\n.updraft_exclude_actions_list {\n\tfont-weight: bold;\n}\n\n.updraft-exclude-link {\n\tcursor: pointer;\n}\n\n#updraft_include_more_options {\n\tpadding-left: 25px;\n}\n\n#updraft_report_cell .updraft_reportbox,\n.updraft_small_box {\n\tpadding: 12px;\n\tmargin: 8px 0;\n\tborder: 1px solid #CCC;\n\tposition: relative;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete,\n.updraft_box_delete_button,\n.updraft_small_box .updraft_box_delete_button {\n\tpadding: 4px;\n\tpadding-top: 6px;\n\tborder: none;\n\tbackground: transparent;\n\tposition: absolute;\n\ttop: 4px;\n\tright: 4px;\n\tcursor: pointer;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete:hover {\n\tcolor: #DE3C3C;\n}\n\na.updraft_report_another .dashicons {\n\ttext-decoration: none;\n\tmargin-top: 2px;\n}\n\n.updraft_report_dbbackup.updraft_report_disabled {\n\tcolor: #CCC;\n}\n\n#updraft-navtab-settings-content .updraft-test-button {\n\tfont-size: 18px !important;\n}\n\n#updraft_report_cell .updraft_report_email {\n\tdisplay: block;\n\twidth: calc(100% - 50px);\n\tmargin-bottom: 9px;\n}\n\n#updraft_report_cell .updraft_report_another_p {\n\tclear: left;\n}\n\n/* Taken straight from admin.php */\n\n#updraft-navtab-settings-content table.form-table p {\n\tmax-width: 700px;\n}\n\n#updraft-navtab-settings-content table.form-table .notice p {\n\tmax-width: none;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td {\n\tbackground-color: #EFEFEF;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td {\n\tbackground-color: #E8E8E8;\n}\n\n.updraft_settings_sectionheading {\n\tdisplay: none;\n}\n\n.updraft-backupentitybutton-disabled {\n\tbackground-color: transparent;\n\tborder: none;\n\tcolor: #0074A2;\n\ttext-decoration: underline;\n\tcursor: pointer;\n\tclear: none;\n\tfloat: left;\n}\n\n.updraft-backupentitybutton {\n\tmargin-left: 8px;\n}\n\n.updraft-bigbutton {\n\tpadding: 2px 0px !important;\n\tmargin-right: 14px !important;\n\tfont-size: 22px !important;\n\tmin-height: 32px;\n\tmin-width: 180px;\n}\n\ntr[class*=\"_updraft_remote_storage_border\"] {\n\tborder-top: 1px solid #CCC;\n}\n\n.updraft_multi_storage_options {\n\tfloat: right;\n\tclear: right;\n\tmargin-bottom: 5px !important;\n}\n\n.updraft_toggle_instance_label {\n\tvertical-align: top !important;\n}\n\n.updraft_debugrow th {\n\tfloat: right;\n\ttext-align: right;\n\tfont-weight: bold;\n\tpadding-right: 8px;\n\tmin-width: 140px;\n}\n\n.updraft_debugrow td {\n\tmin-width: 300px;\n\tvertical-align: bottom;\n}\n\n#updraft_webdav_host_error, .onedrive_folder_error {\n\tcolor: red;\n}\n\nlabel[for=updraft_servicecheckbox_updraftvault] {\n\tposition: relative;\n}\n\n#updraft-wrap .udp-info {\n\tposition: absolute;\n\tright: 10px;\n\ttop: calc(50% - 10px);\n}\n\n#updraft-wrap span.info-trigger {\n\tdisplay: inline-block;\n\twidth: 20px;\n\theight: 20px;\n\tbackground: #FFF;\n\tcolor: #72777C;\n\tborder-radius: 30px;\n\ttext-align: center;\n\tline-height: 20px;\n\tbox-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n}\n\n#updraft-wrap .info-content-wrapper {\n\tdisplay: none;\n\tposition: absolute;\n\tbottom: 20px;\n\ttransform: translatex(calc(-50% + 10px));\n\twidth: 330px;\n\tpadding-bottom: 10px;\n}\n\n#updraft-wrap .info-content-wrapper::before {\n\tcontent: '';\n\tposition: absolute;\n\tbottom: -10px;\n\tborder: 10px solid transparent;\n\tborder-top-color: #FFF;\n\tleft: calc(50% - 10px);\n}\n\n#updraft-wrap .info-content {\n\tpadding: 20px;\n\tbackground: #FFF;\n\tborder-radius: 4px;\n\tbox-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);\n\tcolor: #72777C;\n}\n\n#updraft-wrap .info-content h3 {\n\tmargin-top: 0;\n}\n\n#updraft-wrap .info-content p {\n\tmargin-top: 10px;\n}\n\n#updraft-wrap .udp-info:hover .info-content-wrapper {\n\tdisplay: block;\n}\n\n/* jstree styles */\n\n/* these styles hide the dots from the parent but keep the arrows */\n.updraft_jstree .jstree-container-ul > .jstree-node,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-open > .jstree-ocl {\n\tbackground-position: -36px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-closed> .jstree-ocl {\n\tbackground-position: -4px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\ndiv[id^=\"updraft_more_files_jstree_\"] .jstree-container-ul > .jstree-leaf> .jstree-ocl {\n\tbackground: transparent;\n}\n\n/* zip browser jstree styles */\n#updraft_zip_files_container {\n\tposition: relative;\n\theight: 450px;\n\toverflow: none;\n}\n\n.updraft_jstree_info_container {\n\tposition: relative;\n\theight: auto;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n.updraft_jstree_info_container p {\n\tmargin: 1px;\n\tpadding-left: 10px;\n\tfont-size: 14px;\n}\n\n#updraft_zip_download_item {\n\tdisplay: none;\n\tcolor: #0073AA;\n\tpadding-left: 10px;\n}\n\n#updraft_zip_download_notice {\n\tpadding-left: 10px;\n}\n\n#updraft_exclude_files_folders_jstree {\n\tmax-height: 200px;\n\toverflow-y: scroll;\n}\n\n.updraft_jstree {\n\tposition: relative;\n\tborder: 1px dotted;\n\theight: 80%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n/* More files jstree styles */\ndiv[id^=\"updraft_more_files_container_\"] {\n\tposition: relative;\n\tdisplay: none;\n\twidth: 100%;\n\tborder: 1px solid #CCC;\n\tbackground: #FAFAFA;\n\tmargin-bottom: 5px;\n\tmargin-top: 4px;\n\tbox-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);\n}\n\ndiv[id^=\"updraft_more_files_container_\"]::before {\n\tcontent: ' ';\n\twidth: 11px;\n\theight: 11px;\n\tdisplay: block;\n\tbackground: #FAFAFA;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 20px;\n\tborder-top: 1px solid #CCC;\n\tborder-left: 1px solid #CCC;\n\ttransform: translatey(-7px) rotate(45deg);\n}\n\ninput.updraft_more_path_editing {\n\tborder-color: #0285BA;\n}\n\ninput.updraft_more_path_editing ~ a.dashicons {\n\tdisplay: none;\n}\n\ndiv[id^=\"updraft_jstree_buttons_\"] {\n\tpadding: 10px;\n\tbackground: #E6E6E6;\n}\n\ndiv[id^=\"updraft_jstree_container_\"] {\n\theight: 300px;\n\twidth: 100%;\n\toverflow: auto;\n}\n\ndiv[id^=\"updraft_more_files_container_\"] button {\n\tline-height: 20px;\n}\n\nbutton[id^=\"updraft_parent_directory_\"] {\n\tmargin: 10px 10px 4px 10px;\n\tpadding-left: 3px;\n}\n\nbutton[id^=\"updraft_jstree_confirm_\"], button[id^=\"updraft_jstree_cancel_\"] {\n\tdisplay: none;\n}\n\ninput[id^=\"updraft_include_more_path_restore_\"] {\n\ttext-align: right;\n}\n\n.updraftplus-morefiles-row-delete,\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n}\n\n#updraft-wrap .form-table th {\n\twidth: 230px;\n}\n\n#updraft-wrap .form-table .existing-backups-table th {\n\twidth: auto;\n}\n\n.updraft-viewlogdiv form {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-viewlogdiv {\n\tdisplay: inline-block;\n}\n\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\n\tborder: none;\n\tbackground-color: transparent;\n\tcolor: #000;\n\tmargin: 0px;\n\tpadding: 3px 4px;\n\tfont-size: 16px;\n\tline-height: 26px;\n}\n\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\n\tcolor: #FFF;\n\tcursor: pointer;\n}\n\n.button.button-remove {\n\tcolor: white;\n\tbackground-color: #DE3C3C;\n\tborder-color: #C00000;\n\tbox-shadow: 0 1px 0 #C10100;\n}\n\n.button.button-remove:hover,\n.button.button-remove:focus {\n\tborder-color: #C00;\n\tcolor: #FFF;\n\tbackground: #C00;\n}\n\n/* button-remove colors for midnight admin theme */\nbody.admin-color-midnight .button.button-remove {\n\tcolor: #DE3C3C;\n\tbackground-color: #F7F7F7;\n\tborder-color: #CCC;\n\tbox-shadow: 0 1px 0 #CCC;\n}\n\nbody.admin-color-midnight .button.button-remove:hover, body.admin-color-midnight .button.button-remove:focus {\n\tborder-color: #BA281F;\n}\n\nbody.admin-color-midnight .button.button-remove:focus {\n\tbox-shadow: inherit;\n\tbox-shadow: 0 0 3px rgba(0, 115, 170, 0.8);\n}\n\n.drag-drop #drag-drop-area2 {\n\tborder: 4px dashed #DDD;\n\theight: 200px;\n}\n\n#drag-drop-area2 .drag-drop-inside {\n\tmargin: 36px auto 0;\n\twidth: 350px;\n}\n\n#filelist, #filelist2 {\n\twidth: 100%;\n}\n\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file, #ud_downloadstatus3 .file {\n\tpadding: 1px;\n\tbackground: #ECECEC;\n\tborder: solid 1px #CCC;\n\tmargin: 4px 0;\n}\n\n.updraft_premium section {\n\tmargin-bottom: 20px;\n}\n\n/*\n\tCall to action Premium\n*/\n.updraft_premium_cta {\n\tbackground: #FFF;\n\tmargin-top: 30px;\n\tpadding: 0;\n\tborder-left: 4px solid #DB6A03;\n}\n\n.updraft_premium_cta a {\n\tfont-weight: normal;\n}\n\n.updraft_premium_cta__action {\n\tposition: relative;\n\ttext-align: center;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero {\n\tfont-size: 1.3em;\n\tletter-spacing: 0.03rem;\n\ttext-transform: uppercase;\n\tmargin-bottom: 7px;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small {\n\tdisplay: block;\n\tmax-width: 100%;\n\ttext-align: center;\n\tcolor: #AFAFAF;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small .dashicons {\n\twidth: 12px;\n\theight: 12px;\n}\n\n.updraft_premium_cta__top {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tpadding: 18px 30px;\n}\n\n.updraft_premium_cta__bottom {\n\tbackground: #F9F9F9;\n\tpadding: 5px 30px;\n}\n\n.updraft_premium_cta__summary {\n\tmargin-right: 60px;\n}\n\n.updraft_premium_cta h2 {\n\tfont-size: 28px;\n\tfont-weight: 200;\n\tline-height: 1;\n\tmargin: 0;\n\tmargin-bottom: 5px;\n\tletter-spacing: 0.05rem;\n\tcolor: #DB6A03;\n}\n\n.updraft_premium_cta ul li::after {\n\tcolor: #CCC;\n}\n\n@media only screen and (max-width: 768px) {\n\n\t.updraft_premium_cta__top {\n\t\tflex-direction: column;\n\t\ttext-align: center;\n\t\talign-items: center;\n\t}\n\n\t.updraft_premium_cta__summary {\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 30px;\n\t}\n\n}\n\n/*\n\tBox\n*/\n.udp-box {\n\tbackground: #FFF;\n\tpadding: 20px;\n\tbox-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);\n\ttext-align: center;\n}\n\n.udp-box h3 {\n\tmargin: 0;\n}\n\n.udp-box__heading {\n\talign-self: center;\n\tbackground: none;\n\tbox-shadow: none;\n}\n\n/*\n\tOther Plugins\n*/\n.updraft-more-plugins {\n\tdisplay: flex;\n\tflex-direction: row;\n\tflex-wrap: wrap;\n\tjustify-content: space-between;\n\tflex-wrap: wrap;\n}\n\n.updraft-more-plugins img {\n\tmax-width: 200px;\n\twidth: 100%;\n\tdisplay: inline-block;\n}\n\n.updraft-more-plugins .udp-box {\n\tbox-sizing: border-box;\n\twidth: 24%;\n}\n\n.updraft-more-plugins .udp-box p:last-child {\n\tmargin-bottom: 0;\n\tpadding-bottom: 0;\n}\n\n/*\n\tlinks list\n*/\n.updraft_premium_description_list {\n\ttext-align: left;\n\tmargin: 0;\n\tfont-size: 12px;\n}\n\nul.updraft_premium_description_list, ul#updraft_restore_warnings {\n\tlist-style: disc inside;\n}\n\nul.updraft_premium_description_list li {\n\tdisplay: inline;\n}\n\nul.updraft_premium_description_list li::after {\n\tcontent: \" | \";\n}\n\nul.updraft_premium_description_list li:last-child::after {\n\tcontent: \"\";\n}\n\n.updraft_feature_cell {\n\tbackground-color: #F7D9C9 !important;\n\tpadding: 5px 10px;\n}\n\n.updraftplus_com_login_status, .updraftplus_com_key_status {\n\tdisplay: none;\n\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tborder-left-color: #DC3232;\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n\tmargin: 5px 0 15px 0;\n\tpadding: 5px 12px;\n}\n\n.updraftplus_com_login_status.success {\n\tborder-left-color: green;\n}\n\n#updraft-wrap strong.success {\n\tcolor: green;\n}\n\n.updraft_feat_table {\n\tborder: none;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n}\n\n.updraft_feat_th, .updraft_feat_table td {\n\tborder: 1px solid #F1F1F1;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n\tpadding: 15px;\n}\n\n.updraft_feat_table td {\n\tborder-bottom-width: 4px;\n}\n\n.updraft_feat_table td:first-child {\n\tborder-left: none;\n}\n\n.updraft_feat_table td:last-child {\n\tborder-right: none;\n}\n\n.updraft_feat_table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.updraft_feat_table td:nth-child(2),\n.updraft_feat_table td:nth-child(3) {\n\tbackground-color: rgba(241, 241, 241, 0.38);\n\twidth: 190px;\n}\n\n.updraft_feat_table__header td img {\n\tdisplay: block;\n\tmargin: 0 auto;\n}\n\n.updraft_feat_table__header td {\n\ttext-align: center;\n}\n\n.updraft_feat_table .installed {\n\tfont-size: 14px;\n}\n\n.updraft_feat_table p {\n\tpadding: 0px 10px;\n\tmargin: 5px 0px;\n\tfont-size: 13px;\n}\n\n.updraft_feat_table h4 {\n\tmargin: 5px 0px;\n}\n\n.updraft_feat_table .dashicons {\n\twidth: 25px;\n\theight: 25px;\n\tfont-size: 25px;\n\tline-height: 1;\n}\n\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\n\tcolor: green;\n}\n\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\n\tcolor: red;\n}\n\n.updraft_tick_cell {\n\ttext-align: center;\n}\n\n.updraft_tick_cell img {\n\tmargin: 4px 0;\n\theight: 24px;\n}\n\n.ud_downloadstatus__close {\n\tborder: none;\n\tbackground: transparent;\n\twidth: auto;\n\tfont-size: 20px;\n\tpadding: 0;\n\tcursor: pointer;\n}\n\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress, #ud_downloadstatus3 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #0572AA;\n\theight: 8px;\n\ttransition: width .3s;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw, #ud_downloadstatus3 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file, #ud_downloadstatus3 .file {\n\tmargin-top: 8px;\n}\n\ndiv[class^=\"updraftplus_downloader_container_\"] {\n\tpadding: 10px;\n}\n\ntr.updraftplusmethod h3 {\n\tmargin: 0px;\n}\n\ntr.updraftplusmethod img {\n\tmax-width: 100%;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\n\tcursor: pointer;\n\tcolor: red;\n\tfont-size: 120%;\n\tfont-weight: bold;\n\tborder: 0px;\n\tborder-radius: 3px;\n\tpadding: 2px;\n\tmargin: 0 6px;\n\ttext-decoration: none;\n\tdisplay: inline-block;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\n\tcursor: pointer;\n\tcolor: white;\n\tbackground: red;\n}\n\n#updraft_backup_started {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n/* backup finished */\n.blockUI.blockOverlay.ui-widget-overlay {\n\tbackground: #000;\n}\n\n.updraft_success_popup {\n\ttext-align: center;\n\tpadding-bottom: 30px;\n}\n\n.updraft_success_popup > .dashicons {\n\tfont-size: 100px;\n\twidth: 100px;\n\theight: 100px;\n\tline-height: 100px;\n\tpadding: 0px;\n\tborder-radius: 50%;\n\tmargin-top: 30px;\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tbackground: #E2E6E5;\n}\n\n.updraft_success_popup > .dashicons.dashicons-yes {\n\ttext-indent: -5px;\n}\n\n.updraft_success_popup.success > .dashicons {\n\tcolor: green;\n}\n\n.updraft_success_popup.warning > .dashicons {\n\tcolor: #888;\n}\n\n.updraft_success_popup--message {\n\tpadding: 20px;\n}\n\n.button.updraft-close-overlay .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tmargin-left: -5px;\n\tpadding: 0;\n\ttransform: translatey(3px);\n}\n\n.updraft_saving_popup img {\n\tanimation-name: udp_blink;\n\tanimation-duration: 610ms;\n\tanimation-iteration-count: infinite;\n\tanimation-direction: alternate;\n\tanimation-timing-function: ease-out;\n}\n\n.udp-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t.udp-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding-right: 5px;\n\t}\n\n}\n\n/* End stuff already in admin.php */\n#plupload-upload-ui2 {\n\twidth: 80%;\n}\n\n.backup-restored {\n\tpadding: 8px;\n}\n\n.updated.backup-restored {\n\tpadding-top: 15px;\n\tpadding-bottom: 15px;\n}\n\n.backup-restored span {\n\tfont-size: 120%;\n}\n\n.memory-limit {\n\tpadding: 8px;\n}\n\n.updraft_list_errors {\n\tpadding: 8px;\n}\n\n/*.nav-tab {\n\tborder-radius: 20px 20px 0 0;\n\tborder-color: grey;\n\tborder-width: 2px;\n\tmargin-top: 34px;\n}\n\n.nav-tab:hover {\n\tborder-bottom: 0;\n}\n\n.nav-tab-active, .nav-tab-active:active {\n\tcolor: #df6926;\n\tborder-color: #D3D3D3;\n\tborder-width: 1px;\n\tborder-bottom: 0;\n}\n\n.nav-tab-active:focus {\n\tcolor: #df6926;\n}*/\n\n.nav-tab-wrapper {\n\tmargin: 14px 0px;\n}\n\n#updraft-poplog-content {\n\twhite-space: pre-wrap;\n}\n\n.next-backup {\n\tborder: 0px;\n\tpadding: 0px;\n\tmargin: 0 10px 0 0;\n}\n\n.not-scheduled {\n\tvertical-align: top !important;\n\tmargin: 0px !important;\n\tpadding: 0px !important;\n}\n\n.next-backup .updraft_scheduled {\n\t/* width: 124px;*/\n\tmargin: 0px;\n\tpadding: 2px 4px 2px 0px;\n}\n\n#next-backup-table-inner td {\n\tvertical-align: top;\n}\n\n.updraft_all-files {\n\tcolor: blue;\n}\n\n.multisite-advert-width {\n\twidth: 800px;\n}\n\n.updraft_settings_sectionheading {\n\tmargin-top: 6px;\n}\n\n.premium-upgrade-prompt {\n\t/* font-size: 115%; */\n}\n\nsection.premium-upgrade-purchase-success {\n\tpadding: 2em;\n\tbackground: #FAFAFA;\n\ttext-align: center;\n\tbox-shadow: 0px 14px 40px rgba(0, 0, 0, 0.1);\n}\n\nsection.premium-upgrade-purchase-success h3 {\n\tfont-size: 2em;\n\tcolor: green;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons {\n\tdisplay: block;\n\tmargin: 0 auto;\n\tfont-size: 60px;\n\twidth: 60px;\n\theight: 60px;\n\tborder-radius: 50%;\n\tbackground: green;\n\tcolor: #FFF;\n\tmargin-bottom: 20px;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons::before {\n\tdisplay: inline-block;\n\tmargin-left: -4px;\n\tmargin-top: 2px;\n}\n\nsection.premium-upgrade-purchase-success p {\n\tfont-size: 120%;\n}\n\n.show_admin_restore_in_progress_notice {\n\tpadding: 8px;\n}\n\n.show_admin_restore_in_progress_notice .unfinished-restoration {\n\tfont-size: 120%;\n}\n\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions, #backupnow_includecloud_moreoptions {\n\tmargin: 4px 16px 6px 16px;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n}\n\n#backupnow_database_moreoptions {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.form-table #updraft_activejobsrow .minimum-height {\n\tmin-height: 100px;\n}\n\n#updraft_activejobsrow th {\n\tmax-width: 112px;\n\tmargin: 0;\n\tpadding: 13px 0 0 0;\n}\n\n#updraft_lastlogmessagerow .last-message {\n\tpadding-top: 20px;\n\tdisplay: block;\n}\n\n.updraft_simplepie {\n\tvertical-align: top;\n}\n\n.download-backups {\n\tmargin-top: 8px;\n}\n\n.download-backups .updraft_download_button {\n\tmargin-right: 6px;\n}\n\n.download-backups .ud-whitespace-warning, .download-backups .ud-bom-warning {\n\tbackground-color: pink;\n\tpadding: 8px;\n\tmargin: 4px;\n\tborder: 1px dotted;\n}\n\n.download-backups .ul {\n\tlist-style: none inside;\n\tmax-width: 800px;\n\tmargin-top: 6px;\n\tmargin-bottom: 12px;\n}\n\n#updraft-plupload-modal {\n\tmargin: 16px 0;\n}\n\n.download-backups .upload {\n\tmax-width: 610px;\n}\n\n.download-backups #plupload-upload-ui {\n\twidth: 100%;\n}\n\n.ud_downloadstatus {\n\tpadding: 10px 0;\n}\n\n#ud_massactions, #updraft-delete-waitwarning {\n\tpadding: 14px;\n\tbackground: rgb(241, 241, 241);\n\tposition: absolute;\n\tleft: 0;\n\ttop: 100%;\n}\n\n#ud_massactions > *, #updraft-delete-waitwarning > * {\n\tvertical-align: middle;\n}\n\n#ud_massactions .updraftplus-remove {\n\tdisplay: inline-block;\n\tmargin-right: 0;\n}\n\n#ud_massactions .updraftplus-remove a {\n\ttext-decoration: none;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n}\n\nsmall.ud_massactions-tip {\n\tdisplay: inline-block;\n\topacity: 0.5;\n\tfont-style: italic;\n\tmargin-left: 20px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups {\n\tmargin-bottom: 35px;\n\tposition: relative;\n}\n\n#updraft-message-modal-innards {\n\tpadding: 4px;\n}\n\n#updraft-authenticate-modal {\n\ttext-align: center;\n\tfont-size: 16px !important;\n}\n\n#updraft-authenticate-modal p {\n\tfont-size: 16px;\n}\n\n#updraft_delete_form p {\n\tmargin-top: 3px;\n\tpadding-top: 0;\n}\n\n#updraft_restore_form .cannot-restore {\n\tmargin: 8px 0;\n}\n\n.notice.updraft-restore-option {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder-left-color: #CCC;\n}\n\n/* updraft_restore_crypteddb */\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraftplus_restore_tables_options_container {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.updraft_debugrow th {\n\tvertical-align: top;\n\tpadding-top: 6px;\n\tmax-width: 140px;\n}\n\n.expertmode p {\n\tfont-size: 125%;\n}\n\n.expertmode .call-wp-action {\n\twidth: 300px;\n\theight: 22px;\n}\n\n.updraftplus-lock-advert {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.uncompressed-data {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.delete-old-directories {\n\tpadding: 8px;\n\tpadding-bottom: 12px;\n}\n\n.active-jobs {\n\twidth: 100%;\n\ttext-align: center;\n\tpadding: 33px;\n}\n\n.job-id {\n\tmargin-top: 0;\n\tmargin-bottom: 8px;\n}\n\n.next-resumption {\n\tfont-weight: bold;\n}\n\n.updraft_percentage {\n\tz-index: -1;\n\tposition: absolute;\n\tleft: 0px;\n\ttop: 0px;\n\ttext-align: center;\n\tbackground-color: #1D8EC2;\n\ttransition: width 0.3s;\n}\n\n.curstage {\n\tz-index: 1;\n\tborder-radius: 2px;\n\tmargin-top: 8px;\n\twidth: 100%;\n\theight: 26px;\n\tline-height: 26px;\n\tposition: relative;\n\ttext-align: center;\n\tfont-style: italic;\n\tcolor: #FFF;\n\tbackground-color: #B7B7B7;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n}\n\n.curstage-info {\n\tdisplay: inline-block;\n\tz-index: 2;\n}\n\n.retain-files {\n\twidth: 48px;\n}\n\n.backup-interval-description tr td div {\n\tmax-width: 670px;\n}\n\n#updraft-manualdecrypt-modal {\n\twidth: 85%;\n\tmargin: 6px;\n\tmargin-left: 100px;\n}\n\n.directory-permissions {\n\tfont-size: 110%;\n\tfont-weight: bold;\n}\n\n.double-warning {\n\tborder: 1px solid;\n\tpadding: 6px;\n}\n\n.raw-backup-info {\n\tfont-style: italic;\n\tfont-weight: bold;\n\tfont-size: 120%;\n}\n\n.updraft_existingbackup_date {\n\twidth: 22%;\n\tmax-width: 140px;\n}\n\n.updraft_existing_backups_wrapper {\n\tmargin-top: 20px;\n\tborder-top: 1px solid #DDD;\n}\n\n.updraft-no-backups-msg {\n\ttext-align: center;\n}\n\n.tr-bottom-4 {\n\tmargin-bottom: 4px;\n}\n\n.existing-backups-table th {\n\tpadding: 8px 10px;\n}\n\n.form-table .backup-date {\n\twidth: 172px;\n}\n\n.form-table .backup-data {\n\twidth: 426px;\n}\n\n.form-table .updraft_backup_actions {\n\twidth: 272px;\n}\n\n.existing-date {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n\tmax-width: 140px;\n\twidth: 25%;\n}\n\n.line-break-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.line-break-td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.td-line-color {\n\theight: 2px;\n\tbackground-color: #888;\n}\n\n.raw-backup {\n\tmax-width: 140px;\n}\n\n.existing-backups-actions {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border > td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.existing-backups-border > div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.updraft_existing_backup_date {\n\tmax-width: 140px;\n}\n\n.updraftplus-upload {\n\tmargin-right: 6px;\n\tfloat: left;\n\tclear: none;\n}\n\n.before-restore-button {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.before-restore-button div {\n\tfloat: none;\n\tdisplay: inline-block;\n}\n\n.table-separator-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.table-separator-td {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n.end-of-table-div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.last-backup-job {\n\tpadding-top: 3% !important;\n}\n\n.line-height-03 {\n\tline-height: 0.3 !important;\n}\n\n.line-height-13 {\n\tline-height: 1.3 !important;\n}\n\n.line-height-23 {\n\tline-height: 2.3 !important;\n}\n\n#updraft_diskspaceused {\n\tcolor: #DF6926;\n}\n\n#updraft_delete_old_dirs_pagediv {\n\tpadding-bottom: 10px;\n}\n\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\n\tpadding: 0;\n}*/\n\n/* Time + scheduling add-on*/\n.fix-time {\n\twidth: 70px;\n}\n\n.retain-files {\n\twidth: 70px;\n}\n\n.number-input {\n\tmin-width: 50px;\n\tmax-width: 70px;\n}\n\n.additional-rule-width {\n\tmin-width: 60px;\n\tmax-width: 70px;\n}\n\n/* Add-ons */\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\n\n#updraft-wrap .dashicons.dashicons-adapt-size {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size) {\n\tvertical-align: middle;\n\tmargin-top: -3px;\n}\n\n.addon-logo-150 {\n\tmargin-left: 30px;\n\tmargin-top: 33px;\n\theight: 125px;\n\twidth: 150px;\n}\n\n.margin-bottom-50 {\n\tmargin-bottom: 50px;\n}\n\n.premium-container {\n\twidth: 80%;\n}\n\n/* Main Header */\n\n.main-header {\n\tbackground-color: #DF6926;\n\theight: 200px;\n\twidth: 100%;\n}\n\n.button-add-to-cart {\n\tcolor: white;\n\tborder-color: white;\n\tfloat: none;\n\tmargin-right: 17px;\n}\n\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\n\tborder-color: #A0A5AA;\n\tcolor: #A0A5AA;\n}\n\n.addon-title {\n\tmargin-top: 25px;\n}\n\n.addon-text {\n\tmargin-top: 75px;\n}\n\n.image-main-div {\n\twidth: 25%;\n\tfloat: left;\n}\n\n.text-main-div {\n\twidth: 60%;\n\tfloat: left;\n\ttext-align: center;\n\tcolor: white;\n\tmargin-top: 16px;\n}\n\n.text-main-div-title {\n\tfont-weight: bold !important;\n\tcolor: white;\n\ttext-align: center;\n}\n\n.text-main-div-paragraph {\n\tcolor: white;\n}\n\n/* End main header */\n\n/* Vault icons */\n\n.updraftplus-vault-cta {\n\twidth: 100%;\n\ttext-align: center;\n\tmargin-bottom: 50px;\n}\n\n.updraftplus-vault-cta h1 {\n\tfont-weight: bold;\n}\n\n.updraftvault-buy {\n\twidth: 225px;\n\theight: 225px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 50px;\n\tposition: relative;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault {\n\twidth: 275px;\n\theight: 275px;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\n\tright: 21%;\n\tfont-size: 16px;\n\tborder-width: 4px !important;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\n\tfont-size: 16px;\n}\n\n.updraftvault-buy .button-purchase {\n\tright: 24%;\n\tmargin-left: 0;\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.right {\n\tmargin-right: 0px;\n}\n\n.updraftvault-buy .addon-logo-100 {\n\theight: 100px;\n\twidth: 125px;\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .addon-logo-large {\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .button-buy-vault {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 29%;\n\tbottom: 2%;\n}\n\n.premium-addon-div .button-purchase {\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy .button-buy-vault:hover {\n\tborder-color: darkgrey;\n\tcolor: darkgrey;\n}\n\n/* End Vault icons */\n\n/* Premium addons */\n\n.premium-addons {\n\tmargin-top: 80px;\n\twidth: 100%;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.addon-list {\n\t/* margin-left: 32px; */\n\tdisplay: table;\n\ttext-align: center;\n}\n\n.premium-addons h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-addons p {\n\ttext-align: center;\n}\n\n.premium-addons .premium-addon-div {\n\twidth: 200px;\n\theight: 250px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 25px;\n\tmargin-top: 25px;\n\ttext-align: center;\n\tposition: relative;\n}\n\n.premium-addons .premium-addon-div p {\n\tmargin-left: 2px;\n\tmargin-right: 2px;\n}\n\n.premium-addons .premium-addon-div img {\n\twidth: auto;\n\theight: 50px;\n\tmargin-top: 7px;\n}\n\n.premium-addons .premium-addon-div .hr-alignment {\n\tmargin-top: 44px;\n}\n\n.premium-addons .premium-addon-div .dropbox-logo {\n\theight: 39px;\n\twidth: 150px;\n}\n\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\n\twidth: 75%;\n\theight: 24px;\n}\n\n.button-purchase {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 25%;\n\tbottom: 2%;\n}\n\n.button-purchase:hover {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n}\n\n.premium-addons .premium-addon-div hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.premium-addon-div p {\n\tfont-style: italic;\n}\n\n.addon-list > .premium-addon-div > .onedrive-fix,\n.addon-list > .premium-addon-div > .azure-logo {\n\tmargin-top: 33px;\n}\n\n.addon-list > .premium-addon-div > .dropbox-fix {\n\tmargin-top: 18px;\n}\n\n/* End premium addons */\n\n\n/* Forgotton something (that is the name of the div rather than a mental note!) */\n\n.premium-forgotton-something {\n\tmargin-top: 5%;\n}\n\n.premium-forgotton-something h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-forgotton-something p {\n\ttext-align: center;\n\tfont-weight: normal;\n}\n\n.premium-forgotton-something .button-faq {\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.premium-forgotton-something .button-faq:hover {\n\tcolor: #777;\n\tborder-color: #777;\n}\n\n/* End of forgotton something */\n\n.updraftplusmethod.updraftvault #vaultlogo {\n\tpadding-left: 40px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option {\n\tfloat: left;\n\twidth: 50%;\n\ttext-align: center;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option div {\n\tclear: right;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .clear-left {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .padding-top-20px {\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .padding-top-14px {\n\tpadding-top: 14px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\n\tfont-size: 18px !important;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\n\tmargin-top: 8px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\n\tmargin-right: 10px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_email {\n\twidth: 280px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_pass {\n\twidth: 200px;\n}\n\n.updraftplusmethod.updraftvault #vault-is-connected {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-container {\n\ttext-align: center;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\twidth: 40%;\n\ttext-align: center;\n\tpadding-top: 20px;\n\tdisplay: inline-block;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\n\tfont-size: 200%;\n\tfont-weight: bold;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\n\tclear: both;\n\tfont-size: 150%;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\n\tclear: both;\n\tfont-size: 115%;\n\tfont-style: italic;\n}\n\n/* Automation Backup Advert by B */\n.autobackup-image {\n/* \tdisplay: inline-block; */\n/*\tmin-width: 10%;\n\tmax-width:25%;*/\n/*\tfloat: left;*/\n\tclear: left;\n\tfloat: left;\n\twidth: 110px;\n\theight: 110px;\n}\n\n.autobackup-description {\n\twidth: 100%;\n}\n\n.advert-description {\n\tfloat: left;\n\tclear: right;\n\tpadding: 4px 10px 8px 10px;\n\twidth: 70%;\n\tclear: right;\n\tvertical-align: top;\n}\n\n.advert-btn {\n\tdisplay: inline-block;\n\tmin-width: 10%;\n\tvertical-align: top;\n\tmargin-bottom: 8px;\n}\n\n.advert-btn:first-of-type {\n\tmargin-top: 25px;\n}\n\n.advert-btn a {\n\tdisplay: block;\n\tcursor: pointer;\n}\n\na.btn-get-started {\n\tbackground: #FFF;\n\tborder: 2px solid #DF6926;\n\tborder-radius: 4px;\n\tcolor: #DF6926;\n\tdisplay: inline-block;\n\tmargin-left: 10px !important;\n\tmargin-bottom: 7px !important;\n\tfont-size: 18px !important;\n\tline-height: 20px;\n\tmin-height: 28px;\n\tpadding: 11px 10px 5px 10px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n}\n\n.circle-dblarrow {\n\tborder: 1px solid #DF6926;\n\tborder-radius: 100%;\n\tdisplay: inline-block;\n\tfont-size: 17px;\n\tline-height: 17px;\n\tmargin-left: 5px;\n\twidth: 20px;\n\theight: 20px;\n\ttext-align: center;\n}\n\n/* End Automation Backup Advert by B */\n/* New Responsive Pretty Advanced Settings */\n.expertmode .advanced_settings_container {\n\theight: auto;\n\toverflow: hidden;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu {\n\tfloat: none;\n\tborder-bottom: 1px solid rgb(204, 204, 204);\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content {\n\tpadding-top: 5px;\n\tfloat: none;\n\twidth: auto;\n\toverflow: auto;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content h3:first-child {\n\tmargin-top: 5px !important;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\n\tdisplay: none;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\n\tdisplay: block;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tpadding: 5px;\n\tcolor: #000;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\n\tfont-size: 16px;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\n\tbackground-color: #EAEAEA;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\n\tbackground-color: #3498DB;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\n\tbackground-color: #72C5FD;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\n\theight: auto !important;\n}\n\ndiv#updraft-wrap a {\n\tcursor: pointer !important;\n}\n\n.updraftcentral_wizard_option {\n\twidth: 45%;\n\tfloat: left;\n\ttext-align: center;\n}\n\n.updraftcentral_wizard_option label {\n\tmargin-bottom: 8px;\n}\n\n#updraftcentral_keys_table {\n\tdisplay: none;\n}\n\n.create_key_container {\n\tborder: 1px solid;\n\tborder-radius: 4px;\n\tpadding: 0 0 6px 6px;\n\tmargin-bottom: 8px;\n}\n\n.updraftcentral_cloud_connect {\n\tborder-radius: 4px;\n\tborder: 1px solid #000;\n\tpadding: 0 20px;\n\tmargin-top: 30px;\n\tbackground-color: #FFF;\n}\n\n.updraftcentral_cloud_error {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #F00;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_info {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #EF8F31;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftplus_spinner.spinner {\n\tpadding-left: 25px;\n\tfloat: none;\n}\n\n.updraftplus_spinner.spinner.visible {\n\tvisibility: visible;\n\twidth: auto;\n}\n\n.updraftcentral_cloud_notices .updraftplus_spinner {\n\tmargin-top: -5px;\n}\n\n.updraftcentral-subheading {\n\tfont-size: 14px;\n\tmargin-top: -10px;\n\tmargin-bottom: 20px;\n}\n\n#updraftcentral_cloud_form input#email,\n#updraftcentral_cloud_form input#password {\n\tmin-width: 250px;\n}\n\n.updraftcentral-data-consent {\n\tfont-size: 13px;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_wizard_image {\n\tfloat: left;\n\tmin-width: 100px;\n\tmargin-right: 25px;\n}\n\n.updraftcentral_cloud_wizard {\n\tfloat: left;\n}\n\n.updraftcentral_cloud_clear {\n\tclear: both;\n}\n\n.updraftplus-settings-footer {\n\tmargin-top: 30px;\n}\n\n.updraftplus-top-menu {\n\tpadding: 0.5em;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\tbackground: transparent;\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: none;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_row {\n\tflex-direction: column;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container {\n\twidth: 100%;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\toverflow: inherit;\n}\n\n#updraft_inpage_backup span#updraft_lastlogcontainer {\n\tpadding: 18px;\n\tbackground: #FAFAFA;\n\tdisplay: block;\n\tfont-size: 90%;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup div#updraft_activejobsrow {\n\tbackground: #FAFAFA;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow > div {\n\tbackground: transparent;\n\tpadding: 0;\n}\n\n#updraft_inpage_backup .last-message > strong {\n\tdisplay: block;\n\tmargin-top: 13px;\n}\n\n/* Restoration page */\n\n.updraft_restore_container {\n\tdisplay: block;\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tz-index: 99999;\n\tpadding-top: 30px;\n\tbackground: #F1F1F1;\n\toverflow: auto;\n}\n\n.updraft-modal-is-opened .select2-container {\n\tz-index: 99999;\n}\n\nbody.updraft-modal-is-opened {\n\toverflow: hidden;\n}\n\n.updraft_restore_container h2 {\n\tmargin: 0;\n}\n\n.updraft_restore_container .updraftmessage {\n\tbox-sizing: border-box;\n\tmax-width: 860px;\n\tmargin-left: auto;\n\tmargin-right: auto;\n}\n\n.updraft_restore_main {\n\tmax-width: 860px;\n\tmargin: 0 auto;\n\tmargin-top: 20px;\n\tbackground: #FFF;\n\tbox-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);\n\tposition: relative;\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--header {\n\tfont-size: 20px;\n\tfont-weight: bold;\n\ttext-align: center;\n\tpadding-top: 16px;\n\tline-height: 20px;\n\twidth: 100%;\n\tmax-width: 100%;\n\tpadding-right: 30px;\n\tpadding-left: 30px;\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--activity {\n\tposition: relative;\n\twidth: calc(100% - 350px);\n\tbox-sizing: border-box;\n}\n\n.updraft_restore_main--activity-title {\n\tpadding: 20px;\n\tmargin: 0;\n}\n\n.show-credentials-form.updraft_restore_main .updraft_restore_main--activity-title {\n\tdisplay: none;\n}\n\n.updraft_restore_main--components {\n\twidth: 350px;\n\tpadding: 20px;\n\tbox-sizing: border-box;\n\tbackground: #F8F8F8;\n\tmin-height: 350px;\n}\n\n.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output {\n\tbackground: #23282D;\n\tcolor: #E3E3E3;\n\tfont-family: monospace;\n\tpadding: 19px;\n\toverflow: auto;\n\tposition: absolute;\n\ttop: 60px;\n\tbottom: 0;\n\tright: 0;\n\tleft: 0;\n}\n\n#updraftplus_ajax_restore_output form {\n\twhite-space: normal;\n\tfont-family: -apple-system, blinkmacsystemfont, \"Segoe UI\", roboto, oxygen-sans, ubuntu, cantarell, \"Helvetica Neue\", sans-serif;\n}\n\n#updraftplus_ajax_restore_output .updraft_restore_errors {\n\tborder: 1px solid #DC3232;\n\tpadding: 10px 20px;\n\twhite-space: normal;\n}\n\n.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output h2 {\n\tcolor: #00A0D2;\n\tpadding-top: 10px;\n\tpadding-bottom: 5px;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output {\n\tpadding: 20px;\n\tborder-left: 1px solid #EEE;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output #message {\n\tmargin-left: 0;\n\tmargin-right: 0;\n}\n\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table td,\n.updraft_restore_main.show-credentials-form div#updraftplus_ajax_restore_output .form-table th {\n\tpadding-bottom: 0;\n}\n\n.updraft_restore_main.show-credentials-form .updraft_restore_main--components {\n\topacity: 0.2;\n}\n\n.updraft_restore_main.show-credentials-form div.error .restore-credential-errors--list p {\n\tmargin: 0;\n\tlist-style-type: disc;\n\tdisplay: list-item;\n\tlist-style-position: inside;\n}\n\n.restore-credential-errors > :first-child {\n\tmargin-top: 0;\n}\n\n.restore-credential-errors > :last-child {\n\tmargin-bottom: 0;\n}\n\nul.updraft_restore_components_list li {\n\tcolor: #BABABA;\n\tfont-size: 1.2em;\n\tmargin-bottom: 1em;\n}\n\nul.updraft_restore_components_list li::before {\n\tcontent: '\\f469';\n\tfont-family: dashicons;\n\tfont-size: 20px;\n\tvertical-align: middle;\n\tdisplay: inline-block;\n\tmargin-right: 7px;\n}\n\nul.updraft_restore_components_list li span {\n\tvertical-align: middle;\n}\n\nul.updraft_restore_components_list li.done {\n\tcolor: green;\n}\n\nul.updraft_restore_components_list li.done::before {\n\tcontent: \"\\f147\";\n}\n\nul.updraft_restore_components_list li.active {\n\tcolor: inherit;\n}\n\nul.updraft_restore_components_list li.active::before {\n\tcontent: \"\\f463\";\n\tanimation: udp_rotate 1s linear infinite;\n}\n\nul.updraft_restore_components_list li.error {\n\tcolor: #DC3232;\n}\n\nul.updraft_restore_components_list li.error::before {\n\tcontent: \"\\f335\";\n}\n\n.updraft_restore_result {\n\tpadding: 10px 0;\n\tfont-size: 1.3em;\n\tmargin-bottom: 1em;\n\tvertical-align: middle;\n\tdisplay: none;\n}\n\n.updraft_restore_result.restore-error {\n\tcolor: #DC3232;\n}\n\n.updraft_restore_result.restore-success {\n\tcolor: green;\n}\n\n.updraft_restore_result .dashicons {\n\tfont-size: 35px;\n\theight: 35px;\n\tline-height: 33px;\n\twidth: 35px;\n}\n\n.updraft_restore_result span {\n\tvertical-align: middle;\n}\n\n/* Restore modal */\n\n#updraft-restore-modal {\n\twidth: 100%;\n}\n\ndiv#updraft-restore-modal .notice {\n\tbackground: #F8F8F8;\n}\n\n.updraft-restore-modal--stage .updraft--two-halves,\n.updraft-restore-modal--stage .updraft--one-half {\n\tpadding: 20px 30px;\n}\n\n.updraft-restore-modal--header {\n\tpadding: 20px;\n\tpadding-bottom: 0px;\n\ttext-align: center;\n\tborder-bottom: 1px solid #EEE;\n}\n\n.updraft-restore-modal--header h3 {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-restore-item {\n\tpadding-bottom: 4px;\n}\n\n.updraft-restore-buttons {\n\tpadding-top: 10px;\n}\n\nul.updraft-restore--stages {\n\tdisplay: inline-block;\n\tmargin: 0;\n\theight: 28px;\n}\n\nul.updraft-restore--stages li {\n\tdisplay: inline-block;\n\tposition: relative;\n\twidth: 12px;\n\theight: 12px;\n\tbackground: #D2D2D2;\n\tborder-radius: 20px;\n\tline-height: 1;\n\tmargin: 0 4px;\n\tvertical-align: middle;\n}\n\nul.updraft-restore--stages li.active {\n\tbackground: #444;\n}\n\n.updraft-restore--footer {\n\tborder-top: 1px solid #EEE;\n\tpadding: 20px;\n\ttext-align: center;\n\tposition: sticky;\n\tbottom: 0;\n\tbackground: #FFF;\n\twidth: 100%;\n\tbox-sizing: border-box;\n}\n\n.updraft-restore--footer .updraft-restore--cancel {\n\tposition: absolute;\n\tleft: 20px;\n\ttop: auto;\n}\n\n.updraft-restore--footer .updraft-restore--next-step {\n\tposition: absolute;\n\tright: 20px;\n\ttop: auto;\n}\n\nul.updraft-restore--stages li span {\n\tposition: absolute;\n\twidth: 120px;\n\tbottom: calc(100% + 14px);\n\tleft: -55px;\n\tbackground: #000000DB;\n\tpadding: 5px;\n\tbox-sizing: border-box;\n\tborder-radius: 4px;\n\tcolor: #FFF;\n\ttext-align: center;\n\tdisplay: none;\n}\n\nul.updraft-restore--stages li:hover span {\n\tdisplay: inline-block;\n}\n\n.updraft-restore-item input[type=checkbox] {\n\tmargin-bottom: -5px;\n}\n\n.updraft-restore-item input[type=checkbox]:checked + label {\n\tfont-weight: bold;\n}\n\n/* Hide close button on download window */\ndiv#updraft-restore-modal .ud_downloadstatus__close {\n\tdisplay: none;\n}\n\n#ud_downloadstatus2:not(:empty) {\n\tmargin-top: 15px;\n}\n\n.dashicons.rotate {\n\tanimation: udp_rotate 1s linear infinite;\n}\n\n/* Activity stalled */\n\nspan#updraftplus_ajax_restore_last_activity {\n\tfont-size: .8rem;\n\tfont-weight: normal;\n\tfloat: right;\n}\n\n.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice {\n\tmargin: -20px -20px 20px;\n\tpadding: 19px;\n}\n\n.updraft_restore_main--components .updated.show_admin_restore_in_progress_notice button {\n\tmargin-right: 5px;\n}\n\n#updraft_migrate_receivingsites .updraftplus-remote-sites-selector .button-primary, .updraft_migrate_add_site .input-field input, .updraft_migrate_add_site button {\n\tvertical-align: middle;\n}\n\n#updraft_migrate_receivingsites .text-link-menu a:not(:last-child) {\n\tpadding-right: 10px;\n}\n\n#updraft_migrate_receivingsites a.updraft_migrate_clear_sites span.dashicons-trash:before {\n\tfont-size: 17px;\n}\n\n#updraft_migrate_receivingsites .updraft_migrate_add_site {\n\tclear: both;\n}\n\n@media only screen and (min-width: 1024px) {\n\n\t#updraft_activejobsrow .updraft_row {\n\t\tdisplay: flex;\n\t\talign-items: baseline;\n\t}\n\n\t#updraft_activejobsrow .updraft_row .updraft_col {\n\t\tflex: auto;\n\t}\n\n\t#updraft_activejobsrow .updraft_progress_container {\n\t\twidth: calc(100% - 230px);\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\n\t.settings_page_updraftplus input[type=text],\n\t.settings_page_updraftplus input[type=password],\n\t.settings_page_updraftplus input[type=number] {\n\t\t/* border-radius: 4px; */\n\t\tline-height: 1.42;\n\t\t/* border: 1px solid #CCC; */\n\t\theight: 27px;\n\t\tpadding: 2px 6px;\n\t\tcolor: #555;\n\t}\n\n\t.settings_page_updraftplus input[type=\"number\"] {\n\t\theight: 31px;\n\t}\n\n\t#ud_massactions.active, #updraft-delete-waitwarning.active {\n\t\tposition: fixed;\n\t\tbottom: 0;\n\t\tleft: 160px;\n\t\tright: 0;\n\t\ttop: auto;\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n\t}\n\n\tbody.folded #ud_massactions.active, body.folded #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n\t.updraft-after-form-table {\n\t\tmargin-left: 250px;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.range-selection:not(.backuprowselected) .updraft_existingbackup_date .backup_date_label {\n\t\tcolor: #FFF;\n\t}\n\n}\n\n@media only screen and (min-width: 782px) and (max-width: 960px) {\n\n\tbody.auto-fold #ud_massactions.active, body.auto-fold #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n}\n\n@media only screen and (max-width: 782px) {\n\n\t#updraft-wrap {\n\t\tmargin-right: 0;\n\t}\n\n\t#updraft-wrap .form-table td {\n\t\tpadding-right: 0;\n\t}\n\n\tlabel.updraft_checkbox {\n\t\tmargin-bottom: 8px;\n\t\tmargin-top: 8px;\n\t\tmargin-left: 36px;\n\t}\n\n\t.updraft_retain_rules {\n\t\tposition: relative;\n\t\tmargin-right: 0;\n\t\tborder: 1px solid #CCC;\n\t\tpadding: 5px;\n\t\tmargin-bottom: -1px;\n\t}\n\n\t.updraft_retain_rules_delete {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttop: 5px;\n\t}\n\n\ta[id*=updraft_retain_] {\n\t\tdisplay: block;\n\t\tpadding: 15px 15px 15px 0;\n\t}\n\n\tlabel.updraft_checkbox > input[type=checkbox] {\n\t\tmargin-left: -33px;\n\t}\n\n\t#updraft-backupnow-button {\n\t\tmargin: 0;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > .updraft_backup_btn_wrapper {\n\t\tpadding-top: 0;\n\t}\n\n\t#ud_massactions, #updraft-delete-waitwarning {\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t}\n\n\t#ud_massactions.active {\n\t\tposition: fixed;\n\t\ttop: auto;\n\t\tbottom: 0;\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t\tbox-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t}\n\n\t#ud_massactions strong {\n\t\tdisplay: block;\n\t\tmargin-bottom: 5px;\n\t}\n\n\tsmall.ud_massactions-tip {\n\t\tdisplay: block;\n\t}\n\n/*\t.advert-description {\n\t\tmin-width: 75%;\n\t\tmargin-bottom: 5px;\n\t}\n\n\t.advert-btn {\n\t\tmargin-top: 15px;\n\t\tmargin-left:86px;\n\t\tmin-width: 100%;\n\t}*/\n\n\t.existing-backups-table .backup_date_label > div, .existing-backups-table .backup_date_label span > div {\n\t\tfont-weight: normal;\n\t}\n\n\t.existing-backups-table .backup_date_label .clear-right {\n\t\tdisplay: inline-block;\n\t}\n\n\ttable.widefat.existing-backups-table {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t\tbackground: transparent;\n\t}\n\n\t.existing-backups-table thead {\n\t\tborder: none;\n\t\tclip: rect(0 0 0 0);\n\t\theight: 1px;\n\t\tmargin: -1px;\n\t\toverflow: hidden;\n\t\tpadding: 0;\n\t\tposition: absolute;\n\t\twidth: 1px;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.existing-backups-table tr {\n\t\tdisplay: block;\n\t\tmargin-bottom: .625em;\n\t\tpadding-bottom: 16.625px;\n\t\twidth: 100%;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);\n\t}\n\n\t.existing-backups-table td {\n\t\tborder-bottom: 1px solid #DDD;\n\t\tdisplay: block;\n\t\tfont-size: .9em;\n\t\ttext-align: left;\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: 0;\n\t}\n\n\t.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {\n\t\t/*\n\t\t* aria-label has no advantage, it won't be read inside a table\n\t\tcontent: attr(aria-label);\n\t\t*/\n\t\tcontent: attr(data-label);\n\t\tfont-weight: bold;\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tleft: auto;\n\t\tpadding-bottom: 10px;\n\t\twidth: auto;\n\t\ttext-align: left;\n\t}\n\n\t.existing-backups-table td:last-child {\n\t\tborder-bottom: 0;\n\t}\n\n\t.form-table td.updraft_existingbackup_date {\n\t\twidth: inherit;\n\t\tmax-width: 100%;\n\t}\n\n\t.existing-backups-table td.before-restore-button {\n\t\tmin-height: 36px;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t\twidth: 100%;\n\t}\n\n\t.updraft_progress_container {\n\t\t/* width: 77%; */\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row {\n\t\tposition: relative;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\n\t\tbackground-color: #FFF;\n\t\tborder-left: 4px solid #0572AA;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select) {\n\t\tmargin-left: 50px;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select {\n\t\twidth: 50px !important;\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbox-sizing: border-box;\n\t\theight: 100%;\n\t\tz-index: 1;\n\t\tborder: none;\n\t\tborder-right: 1px solid rgba(0, 0, 0, 0.05);\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups input[type=\"checkbox\"] {\n\t\theight: 25px;\n\t}\n\n\t.updraft_migrate_intro button.button.button-primary.button-hero {\n\t\tdisplay: block;\n\t\tmargin-right: 0;\n\t\twidth: 100%;\n\t\tmax-width: 100%;\n\t}\n\n\t.updraftclone-main-row {\n\t\tflex-direction: column;\n\t}\n\n\t.updraftclone-main-row > div {\n\t\twidth: auto;\n\t\tmax-width: none;\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.form-table th {\n\t\tpadding-bottom: 10px;\n\t}\n\n\t.updraft--flex {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_restore_main {\n\t\tflex-wrap: wrap;\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_restore_main--components {\n\t\twidth: 100%;\n\t\tmin-height: 0;\n\t}\n\n\t.updraft_restore_main--activity {\n\t\twidth: 100%;\n\t}\n\n\tdiv#updraftplus_ajax_restore_output,\n\t.updraft_restore_main:not(.show-credentials-form) div#updraftplus_ajax_restore_output {\n\t\tposition: relative;\n\t\ttop: 0;\n\t\tbottom: auto;\n\t}\n\n\t.updraft--flex > .updraft--two-halves,\n\t.updraft--flex > .updraft--one-half {\n\t\twidth: 100%;\n\t}\n\n\t.updraft-restore-item {\n\t\tpadding-bottom: 10px;\n\t\tpadding-top: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 600px) {\n\t\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t}\n\n\t.updraft_next_scheduled_entity {\n\t\tfloat: none;\n\t\twidth: 100%;\n\t\tmargin-bottom: 2em;\n\t}\n\n\t.updraft_time_now_wrapper {\n\t\tmargin-top: 0;\n\t}\n\n\t#updraft_lastlogmessagerow h3 {\n\t\tmargin-bottom: 5px;\n\t}\n\n\t#updraft_lastlogmessagerow .updraft-log-link {\n\t\tdisplay: block;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 520px) {\n}\n\n@media only screen and (min-width: 768px) {\n\n\t.addon-activation-notice {\n\t\tleft: 20em;\n\t}\n\n\t.existing-backups-table tbody tr.range-selection:hover, .existing-backups-table tbody tr.range-selection {\n\t\tbackground: #0572AA; /* #2b7fd9 */\n\t}\n\n\t.existing-backups-table tbody tr:hover {\n\t\tbackground: #F1F1F1;\n\t}\n\n\t.existing-backups-table tbody tr td.before-restore-button {\n\t\tposition: relative;\n\t}\n\n\t.form-table .existing-backups-table thead th.check-column {\n\t\tpadding-left: 6px;\n\t}\n\n\t.existing-backups-table tr td:first-child {\n\t\tborder-left: 4px solid transparent;\n\t}\n\n\t.existing-backups-table tr.backuprowselected td:first-child {\n\t\tborder-left-color: #0572AA;\n\t}\n\n}\n\n@media screen and (min-width: 670px) {\n\t\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\n\t\tfloat: left;\n\t\twidth: 215px;\n\t\tborder-right: 1px solid rgb(204, 204, 204);\n\t\tborder-bottom: none;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_content {\n\t\tpadding-left: 10px;\n\t\tpadding-top: 0px;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\t\tdisplay: block;\n\t}\n\n}\n\n@media only screen and (max-width: 1068px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: calc(50% - 10px);\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: 100px;\n\t}\n\n}\n\n@media only screen and (max-width: 600px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: 100%;\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: auto;\n\t}\n\n\ttable.updraft_feat_table {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table tr {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t}\n\n\ttable.updraft_feat_table td {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table td:first-child {\n\t\twidth: 100%;\n\t\tborder-bottom: none;\n\t}\n\n\ttable.updraft_feat_table td:not(:first-child) {\n\t\twidth: 50%;\n\t\tbox-sizing: border-box;\n\t}\n\n\ttable.updraft_feat_table td:first-child:empty {\n\t\tdisplay: none;\n\t}\n\n\ttd[data-colname]::before {\n\t\tcontent: attr(data-colname);\n\t\tfont-size: 0.8rem;\n\t\tcolor: #CCC;\n\t\tline-height: 1;\n\t}\n\n}\n"]}
css/{updraftplus-notices-1-16-26.min.css → updraftplus-notices-1-16-28.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  .updraft_notice_container{height:auto;overflow:hidden}.updraft_advert_content_left{float:none;width:65px}.updraft_advert_content_right{float:none;width:auto;overflow:hidden}.updraft_advert_bottom{margin:10px 0;padding:10px;font-size:140%;background-color:white;border-color:#e6db55;border:1px solid;border-radius:4px}.updraft-advert-dismiss{float:right;font-size:13px;font-weight:normal}h3.updraft_advert_heading{margin-top:5px !important;margin-bottom:5px !important}h4.updraft_advert_heading{margin-top:2px !important;margin-bottom:3px !important}.updraft_center_content{text-align:center;margin-bottom:5px}.updraft_notice_link{padding-left:5px}.updraft_text_center{text-align:center}@media screen and (min-width:560px){.updraft_advert_content_left{float:left}}
2
- /*# sourceMappingURL=updraftplus-notices-1-16-26.min.css.map */
1
  .updraft_notice_container{height:auto;overflow:hidden}.updraft_advert_content_left{float:none;width:65px}.updraft_advert_content_right{float:none;width:auto;overflow:hidden}.updraft_advert_bottom{margin:10px 0;padding:10px;font-size:140%;background-color:white;border-color:#e6db55;border:1px solid;border-radius:4px}.updraft-advert-dismiss{float:right;font-size:13px;font-weight:normal}h3.updraft_advert_heading{margin-top:5px !important;margin-bottom:5px !important}h4.updraft_advert_heading{margin-top:2px !important;margin-bottom:3px !important}.updraft_center_content{text-align:center;margin-bottom:5px}.updraft_notice_link{padding-left:5px}.updraft_text_center{text-align:center}@media screen and (min-width:560px){.updraft_advert_content_left{float:left}}
2
+ /*# sourceMappingURL=updraftplus-notices-1-16-28.min.css.map */
css/{updraftplus-notices-1-16-26.min.css.map → updraftplus-notices-1-16-28.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/updraftplus-notices.css"],"names":[],"mappings":"AAAA,qBAAqB;;AAErB;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,cAAc;CACd,gBAAgB;CAChB,wBAAwB;CACxB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC;EACC,YAAY;EACZ;;CAED","file":"updraftplus-notices-1-16-26.min.css","sourcesContent":["/* CSS for adverts */\n\n.updraft_notice_container {\n\theight: auto;\n\toverflow: hidden;\n}\n\n.updraft_advert_content_left {\n\tfloat: none;\n\twidth: 65px;\n}\n\n.updraft_advert_content_right {\n\tfloat: none;\n\twidth: auto;\n\toverflow: hidden;\n}\n\n.updraft_advert_bottom {\n\tmargin: 10px 0;\n\tpadding: 10px;\n\tfont-size: 140%;\n\tbackground-color: white;\n\tborder-color: #E6DB55;\n\tborder: 1px solid;\n\tborder-radius: 4px;\n}\n\n.updraft-advert-dismiss {\n\tfloat: right;\n\tfont-size: 13px;\n\tfont-weight: normal;\n}\n\nh3.updraft_advert_heading {\n\tmargin-top: 5px !important;\n\tmargin-bottom: 5px !important;\n}\n\nh4.updraft_advert_heading {\n\tmargin-top: 2px !important;\n\tmargin-bottom: 3px !important;\n}\n\n.updraft_center_content {\n\ttext-align: center;\n\tmargin-bottom: 5px;\n}\n\n.updraft_notice_link {\n\tpadding-left: 5px;\n}\n\n.updraft_text_center {\n\ttext-align: center;\n}\n\n@media screen and (min-width: 560px) {\n\n\t.updraft_advert_content_left {\n\t\tfloat: left;\n\t}\n\n}\n"]}
1
+ {"version":3,"sources":["css/updraftplus-notices.css"],"names":[],"mappings":"AAAA,qBAAqB;;AAErB;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,cAAc;CACd,gBAAgB;CAChB,wBAAwB;CACxB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC;EACC,YAAY;EACZ;;CAED","file":"updraftplus-notices-1-16-28.min.css","sourcesContent":["/* CSS for adverts */\n\n.updraft_notice_container {\n\theight: auto;\n\toverflow: hidden;\n}\n\n.updraft_advert_content_left {\n\tfloat: none;\n\twidth: 65px;\n}\n\n.updraft_advert_content_right {\n\tfloat: none;\n\twidth: auto;\n\toverflow: hidden;\n}\n\n.updraft_advert_bottom {\n\tmargin: 10px 0;\n\tpadding: 10px;\n\tfont-size: 140%;\n\tbackground-color: white;\n\tborder-color: #E6DB55;\n\tborder: 1px solid;\n\tborder-radius: 4px;\n}\n\n.updraft-advert-dismiss {\n\tfloat: right;\n\tfont-size: 13px;\n\tfont-weight: normal;\n}\n\nh3.updraft_advert_heading {\n\tmargin-top: 5px !important;\n\tmargin-bottom: 5px !important;\n}\n\nh4.updraft_advert_heading {\n\tmargin-top: 2px !important;\n\tmargin-bottom: 3px !important;\n}\n\n.updraft_center_content {\n\ttext-align: center;\n\tmargin-bottom: 5px;\n}\n\n.updraft_notice_link {\n\tpadding-left: 5px;\n}\n\n.updraft_text_center {\n\ttext-align: center;\n}\n\n@media screen and (min-width: 560px) {\n\n\t.updraft_advert_content_left {\n\t\tfloat: left;\n\t}\n\n}\n"]}
css/{updraftplus-tour-1-16-26.min.css → updraftplus-tour-1-16-28.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  .shepherd-theme-arrows-plain-buttons{z-index:99;max-width:390px !important}.shepherd-theme-arrows-plain-buttons.super-index{z-index:999999}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content{border-radius:3px;filter:none;box-shadow:0 1px 3px rgba(0,0,0,0.15),0 10px 40px rgba(0,0,0,0.15)}.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before{display:none}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before{border-bottom-color:#dd6823}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header{background-color:#dd6823;border-radius:3px 3px 0 0;padding-right:90px}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header h3{color:#FFF;font-size:1.2em;float:none}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link{opacity:.7;color:rgba(255,255,255,0);font-size:.8em;border:1px solid #FFF;border-radius:50%;width:22px;height:22px;line-height:20px;padding:0;text-align:center;float:none;position:absolute;right:11px;top:12px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::before{color:#FFF;content:attr(data-btntext);position:absolute;right:20px;padding-right:10px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::after{content:"\f335";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:dashicons;color:#FFF;position:absolute;left:2px;line-height:21px;font-size:16px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus{border:1px solid #a04e00;opacity:1}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover::before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus::before{color:#a04e00}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover::after,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus::after{color:#a04e00}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before{top:44px}.shepherd-content .ud-notice{background:#f0f0f0;padding:14px;border-radius:4px;font-size:90% !important;line-height:1.5}.shepherd-content .ud-notice h3{margin-top:0;padding-top:0;margin-bottom:.5em}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text p{margin-top:.5em;margin-bottom:1.3em}.ud-notice span.ud-special-offer{font-weight:bold;display:inline-block;padding:1px 6px;border-radius:3px;background:rgba(217,105,0,0.09)}label[for=updraft_servicecheckbox_updraftvault]{border:1px solid rgba(204,204,204,0.4);transition:border .5s}label[for=updraft_servicecheckbox_updraftvault].emphasize{border-color:#dd6823}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back,.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end{float:left;position:relative;padding-left:10px}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end{padding-left:0;color:#b7b7b7}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back::before{content:' ';width:6px;height:6px;display:block;border-left:1px solid;border-bottom:1px solid;position:absolute;left:0;top:8px;transform:rotate(45deg)}a.shepherd-button.udp-tour-end::before{display:inline-block;position:relative;content:"\f335";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:dashicons;font-size:20px;line-height:20px;vertical-align:middle;margin-top:-2px}.updraftplus-welcome-logo{display:block;width:70px;float:left;margin-top:-11px;margin-right:12px}.updraftplus-welcome-logo img{display:block;width:auto;max-width:100%}.highlight-udp .plugins #the-list tr:not([data-slug="updraftplus"]){opacity:.3}@media(max-width:790px){.shepherd-element.shepherd-theme-arrows-plain-buttons{display:none}}
2
- /*# sourceMappingURL=updraftplus-tour-1-16-26.min.css.map */
1
  .shepherd-theme-arrows-plain-buttons{z-index:99;max-width:390px !important}.shepherd-theme-arrows-plain-buttons.super-index{z-index:999999}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content{border-radius:3px;filter:none;box-shadow:0 1px 3px rgba(0,0,0,0.15),0 10px 40px rgba(0,0,0,0.15)}.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before{display:none}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before{border-bottom-color:#dd6823}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header{background-color:#dd6823;border-radius:3px 3px 0 0;padding-right:90px}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header h3{color:#FFF;font-size:1.2em;float:none}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link{opacity:.7;color:rgba(255,255,255,0);font-size:.8em;border:1px solid #FFF;border-radius:50%;width:22px;height:22px;line-height:20px;padding:0;text-align:center;float:none;position:absolute;right:11px;top:12px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::before{color:#FFF;content:attr(data-btntext);position:absolute;right:20px;padding-right:10px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::after{content:"\f335";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:dashicons;color:#FFF;position:absolute;left:2px;line-height:21px;font-size:16px}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus{border:1px solid #a04e00;opacity:1}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover::before,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus::before{color:#a04e00}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover::after,.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus::after{color:#a04e00}.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before{top:44px}.shepherd-content .ud-notice{background:#f0f0f0;padding:14px;border-radius:4px;font-size:90% !important;line-height:1.5}.shepherd-content .ud-notice h3{margin-top:0;padding-top:0;margin-bottom:.5em}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text p{margin-top:.5em;margin-bottom:1.3em}.ud-notice span.ud-special-offer{font-weight:bold;display:inline-block;padding:1px 6px;border-radius:3px;background:rgba(217,105,0,0.09)}label[for=updraft_servicecheckbox_updraftvault]{border:1px solid rgba(204,204,204,0.4);transition:border .5s}label[for=updraft_servicecheckbox_updraftvault].emphasize{border-color:#dd6823}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back,.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end{float:left;position:relative;padding-left:10px}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end{padding-left:0;color:#b7b7b7}.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back::before{content:' ';width:6px;height:6px;display:block;border-left:1px solid;border-bottom:1px solid;position:absolute;left:0;top:8px;transform:rotate(45deg)}a.shepherd-button.udp-tour-end::before{display:inline-block;position:relative;content:"\f335";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:dashicons;font-size:20px;line-height:20px;vertical-align:middle;margin-top:-2px}.updraftplus-welcome-logo{display:block;width:70px;float:left;margin-top:-11px;margin-right:12px}.updraftplus-welcome-logo img{display:block;width:auto;max-width:100%}.highlight-udp .plugins #the-list tr:not([data-slug="updraftplus"]){opacity:.3}@media(max-width:790px){.shepherd-element.shepherd-theme-arrows-plain-buttons{display:none}}
2
+ /*# sourceMappingURL=updraftplus-tour-1-16-28.min.css.map */
css/{updraftplus-tour-1-16-26.min.css.map → updraftplus-tour-1-16-28.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/updraftplus-tour.scss"],"names":[],"mappings":"AAEA;CACC,YAAY;CACZ,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,+EAA+E;CAC/E;;AAED;;;;CAIC,cAAc;CACd;;AAED;;;CAGC,6BAAkC;CAClC;;AAED;CACC,0BAA+B;CAC/B,2BAA2B;CAC3B,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,iBAAiB;CACjB,uBAAuB;CACvB,mBAAmB;CACnB,YAAY;CACZ,aAAa;CACb,kBAAkB;CAClB,WAAW;CACX,mBAAmB;CACnB,YAAY;CACZ,mBAAmB;CACnB,YAAY;CACZ,SAAU;CAoBV;;AAlBA;CACC,YAAY;CACZ,4BAA4B;CAC5B,mBAAmB;CACnB,YAAY;CACZ,oBAAoB;CACpB;;AACD;CACC,iBAAiB;CACjB,oCAAoC;CACpC,mCAAmC;CACnC,uBAAuB;CACvB,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,kBAAkB;CAClB,gBAAgB;CAChB;;AAGF;;CAEC,0BAA0B;CAC1B,UAAW;CAOX;;AANA;CACC,eAAe;CACf;;AACD;CACC,eAAe;CACf;;AAGF;CACC,UAAU;CACV;;AAED;;CAEC,oBAAoB;CACpB,cAAc;CACd,mBAAmB;CACnB,0BAA0B;CAC1B,iBAAiB;;CAOjB;;AANA;EACC,cAAc;EACd,eAAe;EACf,oBAAoB;EACpB;;AAIF;CACC,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,kBAAkB;CAClB,sBAAsB;CACtB,iBAAiB;CACjB,mBAAmB;CACnB,oCAAoC;CACpC;;AAED;;CAEC,2CAA2C;CAC3C,sBAAuB;;CAKvB;;AAJA;CACC,sBAA2B;CAC3B;;AAIF;;CAEC,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb,WAAW;CACX,YAAY;CACZ,eAAe;CACf,uBAAuB;CACvB,yBAAyB;CACzB,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,yBAAyB;CACzB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,iBAAiB;CACjB,oCAAoC;CACpC,mCAAmC;CACnC,uBAAuB;CACvB,gBAAgB;CAChB,kBAAkB;CAClB,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,YAAY;CACZ,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;;CAEC;EACC,cAAc;EACd;;CAED","file":"updraftplus-tour-1-16-26.min.css","sourcesContent":["$udp_primary: #DD6823;\n$wp_blue: #0073AA;\n.shepherd-theme-arrows-plain-buttons {\n\tz-index: 99;\n\tmax-width: 390px!important;\n}\n\n.shepherd-theme-arrows-plain-buttons.super-index {\n\tz-index: 999999;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content {\n\tborder-radius: 3px;\n\tfilter: none;\n\tbox-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15), 0px 10px 40px rgba(0, 0, 0, 0.15);\n}\n\n.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,\n.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,\n.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,\n.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {\n\tdisplay: none;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before,\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before,\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {\n\tborder-bottom-color: $udp_primary;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header {\n\tbackground-color: $udp_primary;\n\tborder-radius: 3px 3px 0 0;\n\tpadding-right: 90px;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header h3 {\n\tcolor: #FFF;\n\tfont-size: 1.2em;\n\tfloat: none;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {\n\topacity: 0.7;\n\tcolor: rgba(255, 255, 255, 0);\n\tfont-size: 0.8em;\n\tborder: 1px solid #FFF;\n\tborder-radius: 50%;\n\twidth: 22px;\n\theight: 22px;\n\tline-height: 20px;\n\tpadding: 0;\n\ttext-align: center;\n\tfloat: none;\n\tposition: absolute;\n\tright: 11px;\n\ttop: 12px;\n\n\t&::before {\n\t\tcolor: #FFF;\n\t\tcontent: attr(data-btntext);\n\t\tposition: absolute;\n\t\tright: 20px;\n\t\tpadding-right: 10px;\n\t}\n\t&::after {\n\t\tcontent: \"\\f335\";\n\t\t-webkit-font-smoothing: antialiased;\n\t\t-moz-osx-font-smoothing: grayscale;\n\t\tfont-family: dashicons;\n\t\tcolor: #FFF;\n\t\tposition: absolute;\n\t\tleft: 2px;\n\t\tline-height: 21px;\n\t\tfont-size: 16px;\n\t}\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover,\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus {\n\tborder: 1px solid #A04E00;\n\topacity: 1;\n\t&::before {\n\t\tcolor: #A04E00;\n\t}\n\t&::after {\n\t\tcolor: #A04E00;\n\t}\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {\n\ttop: 44px;\n}\n\n.shepherd-content .ud-notice {\n\n\tbackground: #F0F0F0;\n\tpadding: 14px;\n\tborder-radius: 4px;\n\tfont-size: 90% !important;\n\tline-height: 1.5;\n\th3 {\n\t\tmargin-top: 0;\n\t\tpadding-top: 0;\n\t\tmargin-bottom: .5em;\n\t}\n\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text p {\n\tmargin-top: 0.5em;\n\tmargin-bottom: 1.3em;\n}\n\n.ud-notice span.ud-special-offer {\n\tfont-weight: bold;\n\tdisplay: inline-block;\n\tpadding: 1px 6px;\n\tborder-radius: 3px;\n\tbackground: rgba(217, 105, 0, 0.09);\n}\n\nlabel[for=updraft_servicecheckbox_updraftvault] {\n\n\tborder: 1px solid rgba(204, 204, 204, 0.4);\n\ttransition: border .5s;\n\t&.emphasize {\n\t\tborder-color: $udp_primary;\n\t}\n\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back,\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end {\n\tfloat: left;\n\tposition: relative;\n\tpadding-left: 10px;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end {\n\tpadding-left: 0;\n\tcolor: #B7B7B7;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back::before {\n\tcontent: ' ';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tborder-left: 1px solid;\n\tborder-bottom: 1px solid;\n\tposition: absolute;\n\tleft: 0px;\n\ttop: 8px;\n\ttransform: rotate(45deg);\n}\n\na.shepherd-button.udp-tour-end::before {\n\tdisplay: inline-block;\n\tposition: relative;\n\tcontent: \"\\f335\";\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n\tfont-family: dashicons;\n\tfont-size: 20px;\n\tline-height: 20px;\n\tvertical-align: middle;\n\tmargin-top: -2px;\n}\n\n.updraftplus-welcome-logo {\n\tdisplay: block;\n\twidth: 70px;\n\tfloat: left;\n\tmargin-top: -11px;\n\tmargin-right: 12px;\n}\n\n.updraftplus-welcome-logo img {\n\tdisplay: block;\n\twidth: auto;\n\tmax-width: 100%;\n}\n\n.highlight-udp .plugins #the-list tr:not([data-slug=\"updraftplus\"]) {\n\topacity: 0.3;\n}\n\n@media(max-width: 790px) {\n\n\t.shepherd-element.shepherd-theme-arrows-plain-buttons {\n\t\tdisplay: none;\n\t}\n\n}\n"]}
1
+ {"version":3,"sources":["css/updraftplus-tour.scss"],"names":[],"mappings":"AAEA;CACC,YAAY;CACZ,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,+EAA+E;CAC/E;;AAED;;;;CAIC,cAAc;CACd;;AAED;;;CAGC,6BAAkC;CAClC;;AAED;CACC,0BAA+B;CAC/B,2BAA2B;CAC3B,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,iBAAiB;CACjB,uBAAuB;CACvB,mBAAmB;CACnB,YAAY;CACZ,aAAa;CACb,kBAAkB;CAClB,WAAW;CACX,mBAAmB;CACnB,YAAY;CACZ,mBAAmB;CACnB,YAAY;CACZ,SAAU;CAoBV;;AAlBA;CACC,YAAY;CACZ,4BAA4B;CAC5B,mBAAmB;CACnB,YAAY;CACZ,oBAAoB;CACpB;;AACD;CACC,iBAAiB;CACjB,oCAAoC;CACpC,mCAAmC;CACnC,uBAAuB;CACvB,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,kBAAkB;CAClB,gBAAgB;CAChB;;AAGF;;CAEC,0BAA0B;CAC1B,UAAW;CAOX;;AANA;CACC,eAAe;CACf;;AACD;CACC,eAAe;CACf;;AAGF;CACC,UAAU;CACV;;AAED;;CAEC,oBAAoB;CACpB,cAAc;CACd,mBAAmB;CACnB,0BAA0B;CAC1B,iBAAiB;;CAOjB;;AANA;EACC,cAAc;EACd,eAAe;EACf,oBAAoB;EACpB;;AAIF;CACC,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,kBAAkB;CAClB,sBAAsB;CACtB,iBAAiB;CACjB,mBAAmB;CACnB,oCAAoC;CACpC;;AAED;;CAEC,2CAA2C;CAC3C,sBAAuB;;CAKvB;;AAJA;CACC,sBAA2B;CAC3B;;AAIF;;CAEC,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb,WAAW;CACX,YAAY;CACZ,eAAe;CACf,uBAAuB;CACvB,yBAAyB;CACzB,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,yBAAyB;CACzB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,iBAAiB;CACjB,oCAAoC;CACpC,mCAAmC;CACnC,uBAAuB;CACvB,gBAAgB;CAChB,kBAAkB;CAClB,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,YAAY;CACZ,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;;CAEC;EACC,cAAc;EACd;;CAED","file":"updraftplus-tour-1-16-28.min.css","sourcesContent":["$udp_primary: #DD6823;\n$wp_blue: #0073AA;\n.shepherd-theme-arrows-plain-buttons {\n\tz-index: 99;\n\tmax-width: 390px!important;\n}\n\n.shepherd-theme-arrows-plain-buttons.super-index {\n\tz-index: 999999;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content {\n\tborder-radius: 3px;\n\tfilter: none;\n\tbox-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15), 0px 10px 40px rgba(0, 0, 0, 0.15);\n}\n\n.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,\n.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,\n.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,\n.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {\n\tdisplay: none;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before,\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before,\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {\n\tborder-bottom-color: $udp_primary;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header {\n\tbackground-color: $udp_primary;\n\tborder-radius: 3px 3px 0 0;\n\tpadding-right: 90px;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header h3 {\n\tcolor: #FFF;\n\tfont-size: 1.2em;\n\tfloat: none;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {\n\topacity: 0.7;\n\tcolor: rgba(255, 255, 255, 0);\n\tfont-size: 0.8em;\n\tborder: 1px solid #FFF;\n\tborder-radius: 50%;\n\twidth: 22px;\n\theight: 22px;\n\tline-height: 20px;\n\tpadding: 0;\n\ttext-align: center;\n\tfloat: none;\n\tposition: absolute;\n\tright: 11px;\n\ttop: 12px;\n\n\t&::before {\n\t\tcolor: #FFF;\n\t\tcontent: attr(data-btntext);\n\t\tposition: absolute;\n\t\tright: 20px;\n\t\tpadding-right: 10px;\n\t}\n\t&::after {\n\t\tcontent: \"\\f335\";\n\t\t-webkit-font-smoothing: antialiased;\n\t\t-moz-osx-font-smoothing: grayscale;\n\t\tfont-family: dashicons;\n\t\tcolor: #FFF;\n\t\tposition: absolute;\n\t\tleft: 2px;\n\t\tline-height: 21px;\n\t\tfont-size: 16px;\n\t}\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:hover,\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:focus {\n\tborder: 1px solid #A04E00;\n\topacity: 1;\n\t&::before {\n\t\tcolor: #A04E00;\n\t}\n\t&::after {\n\t\tcolor: #A04E00;\n\t}\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {\n\ttop: 44px;\n}\n\n.shepherd-content .ud-notice {\n\n\tbackground: #F0F0F0;\n\tpadding: 14px;\n\tborder-radius: 4px;\n\tfont-size: 90% !important;\n\tline-height: 1.5;\n\th3 {\n\t\tmargin-top: 0;\n\t\tpadding-top: 0;\n\t\tmargin-bottom: .5em;\n\t}\n\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text p {\n\tmargin-top: 0.5em;\n\tmargin-bottom: 1.3em;\n}\n\n.ud-notice span.ud-special-offer {\n\tfont-weight: bold;\n\tdisplay: inline-block;\n\tpadding: 1px 6px;\n\tborder-radius: 3px;\n\tbackground: rgba(217, 105, 0, 0.09);\n}\n\nlabel[for=updraft_servicecheckbox_updraftvault] {\n\n\tborder: 1px solid rgba(204, 204, 204, 0.4);\n\ttransition: border .5s;\n\t&.emphasize {\n\t\tborder-color: $udp_primary;\n\t}\n\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back,\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end {\n\tfloat: left;\n\tposition: relative;\n\tpadding-left: 10px;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-end {\n\tpadding-left: 0;\n\tcolor: #B7B7B7;\n}\n\n.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button.udp-tour-back::before {\n\tcontent: ' ';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tborder-left: 1px solid;\n\tborder-bottom: 1px solid;\n\tposition: absolute;\n\tleft: 0px;\n\ttop: 8px;\n\ttransform: rotate(45deg);\n}\n\na.shepherd-button.udp-tour-end::before {\n\tdisplay: inline-block;\n\tposition: relative;\n\tcontent: \"\\f335\";\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n\tfont-family: dashicons;\n\tfont-size: 20px;\n\tline-height: 20px;\n\tvertical-align: middle;\n\tmargin-top: -2px;\n}\n\n.updraftplus-welcome-logo {\n\tdisplay: block;\n\twidth: 70px;\n\tfloat: left;\n\tmargin-top: -11px;\n\tmargin-right: 12px;\n}\n\n.updraftplus-welcome-logo img {\n\tdisplay: block;\n\twidth: auto;\n\tmax-width: 100%;\n}\n\n.highlight-udp .plugins #the-list tr:not([data-slug=\"updraftplus\"]) {\n\topacity: 0.3;\n}\n\n@media(max-width: 790px) {\n\n\t.shepherd-element.shepherd-theme-arrows-plain-buttons {\n\t\tdisplay: none;\n\t}\n\n}\n"]}
includes/checkout-embed/assets/{udp-checkout-embed-1-16-26.min.css → udp-checkout-embed-1-16-28.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  @keyframes spin{100%{transform:rotate(360deg)}}body.udp-modal-is-opened{overflow:hidden}.udp-modal{position:fixed;top:0;left:0;bottom:0;right:0;z-index:20000}.udp-modal__overlay{width:100%;height:100%;position:absolute;background:#000;opacity:.8;z-index:1}.udp-modal__modal{position:absolute;z-index:2;left:0;top:32px;bottom:0;right:0;background:#FFF;box-shadow:0 4px 10px rgba(0,0,0,0.45882);overflow:auto}.udp-modal__content{position:relative;overflow:auto}.udp-modal__content .img{padding:0 20px;box-sizing:border-box;text-align:center}.udp-modal__content .img img{max-width:100%}.udp-modal__content .text{padding:40px}.udp-modal.loading{background-image:url()}.udp-modal.loading::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-0.5em;margin-top:-0.5em;content:'';animation:spin 1s linear infinite;background:url('loader.svg') center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:#000;z-index:3;opacity:.5}.udp-modal.loading .udp-modal__content,.udp-modal.loading .udp-modal__sidebar,.iframe-is-opened .udp-modal__content,.iframe-is-opened .udp-modal__sidebar{display:none}.udp-modal__iframe{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;background:#FFF}.udp-modal__iframe iframe{position:absolute;width:100%;height:100%}@media(min-width:1200px){.udp-modal__modal{left:20px;top:calc(20px + 32px);bottom:20px;right:20px}}@media(max-width:782px){.udp-modal__modal{top:46px}}
2
- /*# sourceMappingURL=udp-checkout-embed-1-16-26.min.css.map */
1
  @keyframes spin{100%{transform:rotate(360deg)}}body.udp-modal-is-opened{overflow:hidden}.udp-modal{position:fixed;top:0;left:0;bottom:0;right:0;z-index:20000}.udp-modal__overlay{width:100%;height:100%;position:absolute;background:#000;opacity:.8;z-index:1}.udp-modal__modal{position:absolute;z-index:2;left:0;top:32px;bottom:0;right:0;background:#FFF;box-shadow:0 4px 10px rgba(0,0,0,0.45882);overflow:auto}.udp-modal__content{position:relative;overflow:auto}.udp-modal__content .img{padding:0 20px;box-sizing:border-box;text-align:center}.udp-modal__content .img img{max-width:100%}.udp-modal__content .text{padding:40px}.udp-modal.loading{background-image:url()}.udp-modal.loading::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-0.5em;margin-top:-0.5em;content:'';animation:spin 1s linear infinite;background:url('loader.svg') center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:#000;z-index:3;opacity:.5}.udp-modal.loading .udp-modal__content,.udp-modal.loading .udp-modal__sidebar,.iframe-is-opened .udp-modal__content,.iframe-is-opened .udp-modal__sidebar{display:none}.udp-modal__iframe{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;background:#FFF}.udp-modal__iframe iframe{position:absolute;width:100%;height:100%}@media(min-width:1200px){.udp-modal__modal{left:20px;top:calc(20px + 32px);bottom:20px;right:20px}}@media(max-width:782px){.udp-modal__modal{top:46px}}
2
+ /*# sourceMappingURL=udp-checkout-embed-1-16-28.min.css.map */
includes/checkout-embed/assets/{udp-checkout-embed-1-16-26.min.css.map → udp-checkout-embed-1-16-28.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["includes/checkout-embed/assets/udp-checkout-embed.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,4BAA4B;EAC5B;;CAED;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,OAAO;CACP,QAAQ;CACR,UAAU;CACV,SAAS;CACT,eAAe;CACf;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,iBAAiB;CACjB,aAAa;CACb,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,QAAQ;CACR,UAAU;CACV,UAAU;CACV,SAAS;CACT,iBAAiB;CACjB,gDAAmC;CACnC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV,oBAAoB;CACpB,mBAAmB;CACnB,YAAY;CAEZ,mCAAmC;CACnC,4CAA4C;CAC5C,uBAAuB;CACvB,eAAe;CACf,mBAAmB;CACnB,eAAe;CACf,YAAY;CACZ,WAAW;CACX,aAAa;CACb;;AAED;;;;CAIC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,SAAS;CACT,UAAU;CACV,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,aAAa;CACb;;AAED;;CAEC;EACC,WAAW;EACX,uBAAuB;EACvB,aAAa;EACb,YAAY;EACZ;;CAED;;AAED;;CAEC;EACC,UAAU;EACV;;CAED","file":"udp-checkout-embed-1-16-26.min.css","sourcesContent":["@keyframes spin {\n\n\t100% {\n\t\ttransform: rotate( 360deg );\n\t}\n\n}\n\nbody.udp-modal-is-opened {\n\toverflow: hidden;\n}\n\n.udp-modal {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tbottom: 0;\n\tright: 0;\n\tz-index: 20000;\n}\n\n.udp-modal__overlay {\n\twidth: 100%;\n\theight: 100%;\n\tposition: absolute;\n\tbackground: #000;\n\topacity: 0.8;\n\tz-index: 1;\n}\n\n.udp-modal__modal {\n\tposition: absolute;\n\tz-index: 2;\n\tleft: 0;\n\ttop: 32px;\n\tbottom: 0;\n\tright: 0;\n\tbackground: #FFF;\n\tbox-shadow: 0px 4px 10px #00000075;\n\toverflow: auto;\n}\n\n.udp-modal__content {\n\tposition: relative;\n\toverflow: auto;\n}\n\n.udp-modal__content .img {\n\tpadding: 0 20px;\n\tbox-sizing: border-box;\n\ttext-align: center;\n}\n\n.udp-modal__content .img img {\n\tmax-width: 100%;\n}\n\n.udp-modal__content .text {\n\tpadding: 40px;\n}\n\n.udp-modal.loading {\n\tbackground-image: url();\n}\n\n.udp-modal.loading::before {\n\theight: 1em;\n\twidth: 1em;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\tmargin-left: -0.5em;\n\tmargin-top: -0.5em;\n\tcontent: '';\n\t-webkit-animation: spin 1s linear infinite;\n\tanimation: spin 1s linear infinite;\n\tbackground: url('loader.svg') center center;\n\tbackground-size: cover;\n\tline-height: 1;\n\ttext-align: center;\n\tfont-size: 2em;\n\tcolor: #000;\n\tz-index: 3;\n\topacity: 0.5;\n}\n\n.udp-modal.loading .udp-modal__content,\n.udp-modal.loading .udp-modal__sidebar,\n.iframe-is-opened .udp-modal__content,\n.iframe-is-opened .udp-modal__sidebar {\n\tdisplay: none;\n}\n\n.udp-modal__iframe {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tz-index: 3;\n\tbackground: #FFF;\n}\n\n.udp-modal__iframe iframe {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n}\n\n@media(min-width: 1200px) {\n\n\t.udp-modal__modal {\n\t\tleft: 20px;\n\t\ttop: calc(20px + 32px);\n\t\tbottom: 20px;\n\t\tright: 20px;\n\t}\n\n}\n\n@media(max-width: 782px) {\n\n\t.udp-modal__modal {\n\t\ttop: 46px;\n\t}\n\n}"]}
1
+ {"version":3,"sources":["includes/checkout-embed/assets/udp-checkout-embed.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,4BAA4B;EAC5B;;CAED;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,OAAO;CACP,QAAQ;CACR,UAAU;CACV,SAAS;CACT,eAAe;CACf;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,iBAAiB;CACjB,aAAa;CACb,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,QAAQ;CACR,UAAU;CACV,UAAU;CACV,SAAS;CACT,iBAAiB;CACjB,gDAAmC;CACnC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV,oBAAoB;CACpB,mBAAmB;CACnB,YAAY;CAEZ,mCAAmC;CACnC,4CAA4C;CAC5C,uBAAuB;CACvB,eAAe;CACf,mBAAmB;CACnB,eAAe;CACf,YAAY;CACZ,WAAW;CACX,aAAa;CACb;;AAED;;;;CAIC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,SAAS;CACT,UAAU;CACV,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,aAAa;CACb;;AAED;;CAEC;EACC,WAAW;EACX,uBAAuB;EACvB,aAAa;EACb,YAAY;EACZ;;CAED;;AAED;;CAEC;EACC,UAAU;EACV;;CAED","file":"udp-checkout-embed-1-16-28.min.css","sourcesContent":["@keyframes spin {\n\n\t100% {\n\t\ttransform: rotate( 360deg );\n\t}\n\n}\n\nbody.udp-modal-is-opened {\n\toverflow: hidden;\n}\n\n.udp-modal {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tbottom: 0;\n\tright: 0;\n\tz-index: 20000;\n}\n\n.udp-modal__overlay {\n\twidth: 100%;\n\theight: 100%;\n\tposition: absolute;\n\tbackground: #000;\n\topacity: 0.8;\n\tz-index: 1;\n}\n\n.udp-modal__modal {\n\tposition: absolute;\n\tz-index: 2;\n\tleft: 0;\n\ttop: 32px;\n\tbottom: 0;\n\tright: 0;\n\tbackground: #FFF;\n\tbox-shadow: 0px 4px 10px #00000075;\n\toverflow: auto;\n}\n\n.udp-modal__content {\n\tposition: relative;\n\toverflow: auto;\n}\n\n.udp-modal__content .img {\n\tpadding: 0 20px;\n\tbox-sizing: border-box;\n\ttext-align: center;\n}\n\n.udp-modal__content .img img {\n\tmax-width: 100%;\n}\n\n.udp-modal__content .text {\n\tpadding: 40px;\n}\n\n.udp-modal.loading {\n\tbackground-image: url();\n}\n\n.udp-modal.loading::before {\n\theight: 1em;\n\twidth: 1em;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 50%;\n\tleft: 50%;\n\tmargin-left: -0.5em;\n\tmargin-top: -0.5em;\n\tcontent: '';\n\t-webkit-animation: spin 1s linear infinite;\n\tanimation: spin 1s linear infinite;\n\tbackground: url('loader.svg') center center;\n\tbackground-size: cover;\n\tline-height: 1;\n\ttext-align: center;\n\tfont-size: 2em;\n\tcolor: #000;\n\tz-index: 3;\n\topacity: 0.5;\n}\n\n.udp-modal.loading .udp-modal__content,\n.udp-modal.loading .udp-modal__sidebar,\n.iframe-is-opened .udp-modal__content,\n.iframe-is-opened .udp-modal__sidebar {\n\tdisplay: none;\n}\n\n.udp-modal__iframe {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tz-index: 3;\n\tbackground: #FFF;\n}\n\n.udp-modal__iframe iframe {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n}\n\n@media(min-width: 1200px) {\n\n\t.udp-modal__modal {\n\t\tleft: 20px;\n\t\ttop: calc(20px + 32px);\n\t\tbottom: 20px;\n\t\tright: 20px;\n\t}\n\n}\n\n@media(max-width: 782px) {\n\n\t.udp-modal__modal {\n\t\ttop: 46px;\n\t}\n\n}"]}
includes/checkout-embed/assets/{udp-checkout-embed-1-16-26.min.js → udp-checkout-embed-1-16-28.min.js} RENAMED
File without changes
includes/class-database-utility.php CHANGED
@@ -152,13 +152,17 @@ class UpdraftPlus_Database_Utility {
152
  * @see https://mariadb.com/kb/en/library/sql-mode/#strict-mode
153
  * @see https://mariadb.com/kb/en/library/sql-mode/#setting-sql_mode
154
  *
155
- * @param Array $modes Optional. A list of SQL modes to set.
156
- * @param Resource|Object|NULL $db_handle Optional. If specified, it should either the valid database link identifier(resource) given by mysql(i) or null to instead use the global WPDB object.
 
157
  */
158
- public static function set_sql_mode($modes = array(), $db_handle = null) {
159
 
160
  global $updraftplus, $wpdb;
161
-
 
 
 
162
  $strict_modes = array(
163
  // according to mariadb and mysql docs, strict mode can be one of these or both
164
  'STRICT_TRANS_TABLES',
@@ -173,30 +177,32 @@ class UpdraftPlus_Database_Utility {
173
 
174
  $class = get_class();
175
 
176
- if (is_null($db_handle)) {
177
- $initial_modes_str = $wpdb->get_var('SELECT @@SESSION.sql_mode');
178
  } else {
179
  $initial_modes_str = call_user_func_array(array($class, 'get_system_variable'), array('sql_mode', $db_handle));
180
  }
181
  if (is_scalar($initial_modes_str) && !is_bool($initial_modes_str)) {
182
  $modes = array_unique(array_merge($modes, array_change_key_case(explode(',', $initial_modes_str), CASE_UPPER)));
183
  } else {
 
184
  unset($initial_modes_str);
185
- $updraftplus->log("Couldn't get the sql_mode value");
186
  }
187
 
188
  $modes = array_change_key_case($modes, CASE_UPPER);
189
 
 
 
190
  foreach ($modes as $i => $mode) {
191
- if (in_array($mode, $incompatible_modes)) {
192
  unset($modes[$i]);
193
  }
194
  }
195
 
196
  $modes_str = implode(',', $modes);
197
 
198
- if (is_null($db_handle)) {
199
- $res = $wpdb->query($wpdb->prepare("SET SESSION sql_mode = %s", $modes_str));
200
  } else {
201
  $res = call_user_func_array(array($class, 'set_system_variable'), array('sql_mode', $modes_str, $db_handle));
202
  }
152
  * @see https://mariadb.com/kb/en/library/sql-mode/#strict-mode
153
  * @see https://mariadb.com/kb/en/library/sql-mode/#setting-sql_mode
154
  *
155
+ * @param Array $modes - Optional. A list of SQL modes to set.
156
+ * @param Array $remove_modes - modes to remove if they are currently active
157
+ * @param Resource|Object|NULL $db_handle - Optional. If specified, it should either the valid database link identifier(resource) given by mysql(i) or null to instead use the global WPDB object, or a WPDB-compatible object.
158
  */
159
+ public static function set_sql_mode($modes = array(), $remove_modes = array(), $db_handle = null) {
160
 
161
  global $updraftplus, $wpdb;
162
+
163
+ $wpdb_handle_if_used = (null !== $db_handle && is_a($db_handle, 'WPDB')) ? $db_handle : $wpdb;
164
+
165
+ // If any of these are set, they will be unset
166
  $strict_modes = array(
167
  // according to mariadb and mysql docs, strict mode can be one of these or both
168
  'STRICT_TRANS_TABLES',
177
 
178
  $class = get_class();
179
 
180
+ if (is_null($db_handle) || is_a($db_handle, 'WPDB')) {
181
+ $initial_modes_str = $wpdb_handle_if_used->get_var('SELECT @@SESSION.sql_mode');
182
  } else {
183
  $initial_modes_str = call_user_func_array(array($class, 'get_system_variable'), array('sql_mode', $db_handle));
184
  }
185
  if (is_scalar($initial_modes_str) && !is_bool($initial_modes_str)) {
186
  $modes = array_unique(array_merge($modes, array_change_key_case(explode(',', $initial_modes_str), CASE_UPPER)));
187
  } else {
188
+ $updraftplus->log("Couldn't get the sql_mode value (".serialize($initial_modes_str).")");
189
  unset($initial_modes_str);
 
190
  }
191
 
192
  $modes = array_change_key_case($modes, CASE_UPPER);
193
 
194
+ $unwanted_modes = array_merge($incompatible_modes, $remove_modes);
195
+
196
  foreach ($modes as $i => $mode) {
197
+ if (in_array($mode, $unwanted_modes)) {
198
  unset($modes[$i]);
199
  }
200
  }
201
 
202
  $modes_str = implode(',', $modes);
203
 
204
+ if (is_null($db_handle) || is_a($db_handle, 'WPDB')) {
205
+ $res = $wpdb_handle_if_used->query($wpdb_handle_if_used->prepare("SET SESSION sql_mode = %s", $modes_str));
206
  } else {
207
  $res = call_user_func_array(array($class, 'set_system_variable'), array('sql_mode', $modes_str, $db_handle));
208
  }
includes/{jquery-ui.custom-1-16-26.min.css → jquery-ui.custom-1-16-28.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  /* jQuery UI - v1.11.4 - 2015-12-05* http://jqueryui.com* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px* Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:alpha(opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default !important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:.4em 2.1em .4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:0;border-bottom:0;border-right:0}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;box-shadow:0 0 5px #AAA}body .ui-tooltip{border-width:2px}.ui-widget{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #DDD;background:#EEE url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;color:#FFF;font-weight:bold}.ui-widget-header a{color:#FFF}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #CCC;background:#f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#2b2b2b}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;color:#FFF}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#FFF}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#FFF}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:alpha(opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:alpha(opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:alpha(opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_ffd27a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;opacity:.5;filter:alpha(opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000;opacity:.2;filter:alpha(opacity=20);border-radius:5px}
2
- /*# sourceMappingURL=jquery-ui.custom-1-16-26.min.css.map */
1
  /* jQuery UI - v1.11.4 - 2015-12-05* http://jqueryui.com* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px* Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:alpha(opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default !important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:.4em 2.1em .4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:0;border-bottom:0;border-right:0}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;box-shadow:0 0 5px #AAA}body .ui-tooltip{border-width:2px}.ui-widget{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:trebuchet ms,tahoma,verdana,arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #DDD;background:#EEE url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;color:#FFF;font-weight:bold}.ui-widget-header a{color:#FFF}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #CCC;background:#f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#2b2b2b}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;color:#FFF}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#FFF}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#FFF}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:alpha(opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:alpha(opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:alpha(opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_ffd27a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;opacity:.5;filter:alpha(opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000;opacity:.2;filter:alpha(opacity=20);border-radius:5px}
2
+ /*# sourceMappingURL=jquery-ui.custom-1-16-28.min.css.map */
includes/{jquery-ui.custom-1-16-26.min.css.map → jquery-ui.custom-1-16-28.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["includes/jquery-ui.custom.css"],"names":[],"mappings":"AAAA;;;;qEAIqE;;AAErE;oCACoC;AACpC;CACC,cAAc;CACd;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ,aAAa;CACb,iBAAiB;CACjB,WAAW;CACX,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,UAAU;CACV,WAAW;CACX,UAAU;CACV,WAAW;CACX,iBAAiB;CACjB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;;CAEC,YAAY;CACZ,eAAe;CACf,0BAA0B;CAC1B;;AAED;CACC,YAAY;CACZ;;AAED;CACC,cAAc,CAAC,kBAAkB;CACjC;;AAED;CACC,YAAY;CACZ,aAAa;CACb,OAAO;CACP,QAAQ;CACR,mBAAmB;CACnB,WAAW;CACX,yBAAyB,CAAC,kBAAkB;CAC5C;;AAED;CACC,aAAa;CACb;;AAED;oCACoC;AACpC;CACC,2BAA2B;CAC3B;;AAED;oCACoC;;AAEpC,uBAAuB;AACvB;CACC,eAAe;CACf,sBAAsB;CACtB,iBAAiB;CACjB,6BAA6B;CAC7B;;AAED;oCACoC;;AAEpC,cAAc;AACd;CACC,gBAAgB;CAChB,OAAO;CACP,QAAQ;CACR,YAAY;CACZ,aAAa;CACb;;AAED;CACC,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,iBAAiB;CACjB,eAAe;CACf,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,UAAU;CACV,QAAQ;CACR;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,QAAQ;CACR;;AAED;CACC,iBAAiB;CACjB,WAAW;CACX,YAAY;CACZ,OAAO;CACP,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,WAAW;CACX,WAAW;CACX,OAAO;CACP,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,aAAa;CACb,WAAW;CACX,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB,WAAW;CACX,YAAY;CACZ,WAAW;CACX,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB,WAAW;CACX,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB,WAAW;CACX,YAAY;CACZ,YAAY;CACZ,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,yBAAyB;CACzB;;AAED;CACC,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,6BAA6B;CAC7B,cAAc,CAAC,kBAAkB;CACjC,gBAAgB;CAChB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,SAAS;CACT,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,WAAW;CACX,oBAAoB;CACpB,mBAAmB;CACnB,gBAAgB;CAChB,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB,CAAC,+BAA+B;CAClD;;AAED;;;;;CAKC,sBAAsB;CACtB;;AAED,6DAA6D;AAC7D;CACC,aAAa;CACb;;AAED,sDAAsD;AACtD;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED,yBAAyB;AACzB;CACC,eAAe;CACf,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;;CAEC,cAAc;CACd,wBAAwB;CACxB;;AAED;;CAEC,6BAA6B;CAC7B;;AAED;;CAEC,6BAA6B;CAC7B;;AAED;CACC,oBAAoB;CACpB,qBAAqB;CACrB;;AAED,oEAAoE;AACpE;CACC,kBAAkB;CAClB;;AAED,4BAA4B;AAC5B;;;;;CAKC,mBAAmB;CACnB,SAAS;CACT,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV,kBAAkB;CAClB;;AAED;;;CAGC,WAAW;CACX;;AAED;;;CAGC,YAAY;CACZ;;AAED,iBAAiB;AACjB;CACC,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,oBAAoB;CACpB;;AAED,iBAAiB;AACjB,oDAAoD;AACpD;;CAEC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,qBAAqB;CACrB,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;;CAEC,mBAAmB;CACnB,SAAS;CACT,aAAa;CACb,cAAc;CACd;;AAED;;CAEC,SAAS;CACT;;AAED;CACC,UAAU;CACV;;AAED;CACC,WAAW;CACX;;AAED;CACC,UAAU;CACV;;AAED;CACC,WAAW;CACX;;AAED;;CAEC,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,kBAAkB;CAClB,SAAS;CACT,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,cAAc;CACd;;AAED;;CAEC,WAAW;CACX;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,0BAA0B;CAC1B,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,UAAU;CACV;;AAED;CACC,UAAU;CACV,aAAa;CACb;;AAED;;CAEC,eAAe;CACf,cAAc;CACd,kBAAkB;CAClB,sBAAsB;CACtB;;AAED;CACC,uBAAuB;CACvB,mBAAmB;CACnB,gBAAgB;CAChB,eAAe;CACf,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,uBAAuB;CACvB,gBAAgB;CAChB,6BAA6B;CAC7B,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;;CAEC,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,aAAa;CACb;;AAED,iBAAiB;AACjB;CACC,eAAe;CACf;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,UAAU;CACV,YAAY;CACZ;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,UAAU;CACV,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC,aAAa;CACb;;AAED;;CAEC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,cAAc;CACd,WAAW;CACX;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,oBAAoB;CACpB,WAAW;CACX,iBAAiB;CACjB,wBAAwB;CACxB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,SAAS;CACT,YAAY;CACZ,oBAAoB;CACpB,aAAa;CACb,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,UAAU;CACV,kBAAkB;CAClB,iBAAiB;CACjB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,uBAAuB;CACvB,iBAAiB;CACjB,4BAA4B;CAC5B;;AAED;CACC,aAAa;CACb;;AAED;CACC,yBAAyB;CACzB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,aAAa;CACb,+BAA+B;CAC/B;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,WAAW;CACX,UAAU;CACV,eAAe;CACf,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,UAAU;CACV,0BAA0B;CAC1B,gBAAgB;CAChB,cAAc,CAAC,kBAAkB;CACjC,8BAA8B;CAC9B,wGAAwG;CACxG;;AAED;CACC,cAAc;CACd,UAAU;CACV,aAAa;CACb,eAAe;CACf,wBAAwB;CACxB;;AAED;;CAEC,aAAa;CACb;;AAED,kBAAkB;AAClB;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,kBAAkB;AAClB;CACC,mBAAmB;CACnB,OAAO;CACP,UAAU;CACV,WAAW;CACX,eAAe;CACf;;AAED,mBAAmB;AACnB;CACC,WAAW;CACX,SAAS;CACT;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,0zEAA0zE;CAC1zE,aAAa;CACb,0BAA0B,CAAC,kBAAkB;CAC7C,cAAc;CACd;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,UAAU;CACV,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,cAAc;CACd;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,iBAAiB;CACjB,mBAAmB;CACnB,oBAAoB;CACpB,aAAa;CACb,UAAU;CACV;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,iBAAiB;CACjB,mBAAmB;CACnB,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,WAAW;CACX,iBAAiB;CACjB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,iBAAiB;CACjB,+BAA+B;CAC/B,eAAe;CACf,iBAAiB;CACjB,iBAAiB;CACjB,wBAAwB;CACxB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,aAAa;CACb,cAAc;CACd,gBAAgB;CAChB,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,gBAAgB;CAChB,eAAe;CACf,UAAU;CACV,yBAAyB;CACzB;;AAED,8BAA8B;AAC9B;;CAEC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,OAAO;CACP,aAAa;CACb;;AAED;CACC,QAAQ;CACR;;AAED;CACC,SAAS;CACT;;AAED;CACC,YAAY;CACZ,cAAc;CACd;;AAED;CACC,YAAY;CACZ,eAAe;CACf,qBAAqB;CACrB;;AAED;CACC,QAAQ;CACR,YAAY;CACZ;;AAED;CACC,UAAU;CACV;;AAED;CACC,OAAO;CACP;;AAED;CACC,mBAAmB;CACnB,sBAAsB;CACtB,iBAAiB;CACjB,WAAW;CACX,uBAAuB;CACvB;;AAED;CACC,aAAa;CACb,iBAAiB;CACjB,eAAe;CACf,WAAW;CACX,eAAe;CACf,uBAAuB;CACvB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,gBAAgB;CAChB,WAAW;CACX,UAAU;CACV,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB,eAAe;CACf,iBAAiB;CACjB,SAAS;CACT;;AAED,gEAAgE;AAChE;CACC,iBAAiB;CACjB,oBAAoB;CACpB,mBAAmB;CACnB;;AAED,4BAA4B;AAC5B;CACC,mBAAmB;CACnB,iBAAiB;CACjB,SAAS;CACT,QAAQ;CACR;;AAED;CACC,OAAO;CACP;;AAED;CACC,UAAU;CACV;;AAED,kBAAkB;AAClB;CACC,8BAA8B;CAC9B,iCAAiC;CACjC;;AAED;CACC,mBAAmB,wIAAwI;CAC3J,cAAc;CACd;;AAED;CACC,UAAU;CACV,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,mBAAmB;CACnB,OAAO;CACP,qBAAqB;CACrB,uBAAuB;CACvB,WAAW;CACX,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,oBAAoB;CACpB;;AAED;;;CAGC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,iBAAiB;CAEjB,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB;;AAED;oCACoC;AACpC;CACC,0DAA0D;CAC1D,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;;;;CAIC,0DAA0D;CAC1D,eAAe;CACf;;AAED;CACC,uBAAuB;CACvB,0FAA0F;CAC1F,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,0FAA0F;CAC1F,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;oCACoC;AACpC;;;CAGC,uBAAuB;CACvB,oFAAoF;CACpF,oBAAoB;CACpB,eAAe;CACf;;AAED;;;CAGC,eAAe;CACf,sBAAsB;CACtB;;AAED;;;;;;CAMC,0BAA0B;CAC1B,oBAAoB;CACpB,oBAAoB;CACpB,eAAe;CACf;;AAED;;;;;;;;CAQC,eAAe;CACf,sBAAsB;CACtB;;AAED;;;CAGC,0BAA0B;CAC1B,oBAAoB;CACpB,oBAAoB;CACpB,eAAe;CACf;;AAED;;;CAGC,eAAe;CACf,sBAAsB;CACtB;;AAED;oCACoC;AACpC;;;CAGC,0BAA0B;CAC1B,4FAA4F;CAC5F,eAAe;CACf;;AAED;;;CAGC,eAAe;CACf;;AAED;;;CAGC,0BAA0B;CAC1B,2FAA2F;CAC3F,YAAY;CACZ;;AAED;;;CAGC,YAAY;CACZ;;AAED;;;CAGC,YAAY;CACZ;;AAED;;;CAGC,kBAAkB;CAClB;;AAED;;;CAGC,aAAa;CACb,0BAA0B,CAAC,kBAAkB;CAC7C,oBAAoB;CACpB;;AAED;;;CAGC,cAAc;CACd,0BAA0B,CAAC,kBAAkB;CAC7C,uBAAuB;CACvB;;AAED;CACC,0BAA0B,CAAC,8BAA8B;CACzD;;AAED;oCACoC;;AAEpC,uBAAuB;AACvB;CACC,YAAY;CACZ,aAAa;CACb;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;CACC,4DAA4D;CAC5D;;AAED;CACC,4DAA4D;CAC5D;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;CACC,4DAA4D;CAC5D;;AAED;CACC,4DAA4D;CAC5D;;AAED;;CAEC,4DAA4D;CAC5D;;AAED,iBAAiB;AACjB;CACC,+BAA+B;CAC/B;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED,sEAAsE;AACtE;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;oCACoC;;AAEpC,mBAAmB;AACnB;;;;CAIC,4BAA4B;CAC5B;;AAED;;;;CAIC,6BAA6B;CAC7B;;AAED;;;;CAIC,+BAA+B;CAC/B;;AAED;;;;CAIC,gCAAgC;CAChC;;AAED,cAAc;AACd;CACC,wFAAwF;CACxF,aAAa;CACb,0BAA0B,CAAC,kBAAkB;CAC7C;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,iBAAiB;CACjB,aAAa;CACb,0BAA0B,CAAC,kBAAkB;CAC7C,mBAAmB;CACnB","file":"jquery-ui.custom-1-16-26.min.css","sourcesContent":["/*! jQuery UI - v1.11.4 - 2015-12-05\n* http://jqueryui.com\n* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css\n* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n\n.ui-helper-clearfix {\n\tmin-height: 0; /* support: IE7 */\n}\n\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter: alpha(opacity=0); /* support: IE8 */\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n\n.ui-draggable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable {\n\tposition: relative;\n}\n\n.ui-resizable-handle {\n\tposition: absolute;\n\tfont-size: 0.1px;\n\tdisplay: block;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable-disabled .ui-resizable-handle,\n.ui-resizable-autohide .ui-resizable-handle {\n\tdisplay: none;\n}\n\n.ui-resizable-n {\n\tcursor: n-resize;\n\theight: 7px;\n\twidth: 100%;\n\ttop: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-s {\n\tcursor: s-resize;\n\theight: 7px;\n\twidth: 100%;\n\tbottom: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-e {\n\tcursor: e-resize;\n\twidth: 7px;\n\tright: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-w {\n\tcursor: w-resize;\n\twidth: 7px;\n\tleft: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-se {\n\tcursor: se-resize;\n\twidth: 12px;\n\theight: 12px;\n\tright: 1px;\n\tbottom: 1px;\n}\n\n.ui-resizable-sw {\n\tcursor: sw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\tbottom: -5px;\n}\n\n.ui-resizable-nw {\n\tcursor: nw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\ttop: -5px;\n}\n\n.ui-resizable-ne {\n\tcursor: ne-resize;\n\twidth: 9px;\n\theight: 9px;\n\tright: -5px;\n\ttop: -5px;\n}\n\n.ui-selectable {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-selectable-helper {\n\tposition: absolute;\n\tz-index: 100;\n\tborder: 1px dotted black;\n}\n\n.ui-sortable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-accordion .ui-accordion-header {\n\tdisplay: block;\n\tcursor: pointer;\n\tposition: relative;\n\tmargin: 2px 0 0 0;\n\tpadding: .5em .5em .5em .7em;\n\tmin-height: 0; /* support: IE7 */\n\tfont-size: 100%;\n}\n\n.ui-accordion .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n\n.ui-accordion .ui-accordion-icons .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n\n.ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tposition: absolute;\n\tleft: .5em;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-accordion .ui-accordion-content {\n\tpadding: 1em 2.2em;\n\tborder-top: 0;\n\toverflow: auto;\n}\n\n.ui-autocomplete {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tcursor: default;\n}\n\n.ui-button {\n\tdisplay: inline-block;\n\tposition: relative;\n\tpadding: 0;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\toverflow: visible; /* removes extra width in IE */\n}\n\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2.2em;\n}\n\n/* button elements seem to need a little more width */\nbutton.ui-button-icon-only {\n\twidth: 2.4em;\n}\n\n.ui-button-icons-only {\n\twidth: 3.4em;\n}\n\nbutton.ui-button-icons-only {\n\twidth: 3.7em;\n}\n\n/* button text element */\n.ui-button .ui-button-text {\n\tdisplay: block;\n\tline-height: normal;\n}\n\n.ui-button-text-only .ui-button-text {\n\tpadding: .4em 1em;\n}\n\n.ui-button-icon-only .ui-button-text,\n.ui-button-icons-only .ui-button-text {\n\tpadding: .4em;\n\ttext-indent: -9999999px;\n}\n\n.ui-button-text-icon-primary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 1em .4em 2.1em;\n}\n\n.ui-button-text-icon-secondary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 2.1em .4em 1em;\n}\n\n.ui-button-text-icons .ui-button-text {\n\tpadding-left: 2.1em;\n\tpadding-right: 2.1em;\n}\n\n/* no icon support for input elements, provide padding by default */\ninput.ui-button {\n\tpadding: .4em 1em;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon,\n.ui-button-text-icon-primary .ui-icon,\n.ui-button-text-icon-secondary .ui-icon,\n.ui-button-text-icons .ui-icon,\n.ui-button-icons-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-button-icon-only .ui-icon {\n\tleft: 50%;\n\tmargin-left: -8px;\n}\n\n.ui-button-text-icon-primary .ui-button-icon-primary,\n.ui-button-text-icons .ui-button-icon-primary,\n.ui-button-icons-only .ui-button-icon-primary {\n\tleft: .5em;\n}\n\n.ui-button-text-icon-secondary .ui-button-icon-secondary,\n.ui-button-text-icons .ui-button-icon-secondary,\n.ui-button-icons-only .ui-button-icon-secondary {\n\tright: .5em;\n}\n\n/* button sets */\n.ui-buttonset {\n\tmargin-right: 7px;\n}\n\n.ui-buttonset .ui-button {\n\tmargin-left: 0;\n\tmargin-right: -.3em;\n}\n\n/* workarounds */\n/* reset extra padding in Firefox, see h5bp.com/l */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n\n.ui-datepicker {\n\twidth: 17em;\n\tpadding: .2em .2em 0;\n\tdisplay: none;\n}\n\n.ui-datepicker .ui-datepicker-header {\n\tposition: relative;\n\tpadding: .2em 0;\n}\n\n.ui-datepicker .ui-datepicker-prev,\n.ui-datepicker .ui-datepicker-next {\n\tposition: absolute;\n\ttop: 2px;\n\twidth: 1.8em;\n\theight: 1.8em;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover,\n.ui-datepicker .ui-datepicker-next-hover {\n\ttop: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev {\n\tleft: 2px;\n}\n\n.ui-datepicker .ui-datepicker-next {\n\tright: 2px;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover {\n\tleft: 1px;\n}\n\n.ui-datepicker .ui-datepicker-next-hover {\n\tright: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev span,\n.ui-datepicker .ui-datepicker-next span {\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 50%;\n\tmargin-left: -8px;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-datepicker .ui-datepicker-title {\n\tmargin: 0 2.3em;\n\tline-height: 1.8em;\n\ttext-align: center;\n}\n\n.ui-datepicker .ui-datepicker-title select {\n\tfont-size: 1em;\n\tmargin: 1px 0;\n}\n\n.ui-datepicker select.ui-datepicker-month,\n.ui-datepicker select.ui-datepicker-year {\n\twidth: 45%;\n}\n\n.ui-datepicker table {\n\twidth: 100%;\n\tfont-size: .9em;\n\tborder-collapse: collapse;\n\tmargin: 0 0 .4em;\n}\n\n.ui-datepicker th {\n\tpadding: .7em .3em;\n\ttext-align: center;\n\tfont-weight: bold;\n\tborder: 0;\n}\n\n.ui-datepicker td {\n\tborder: 0;\n\tpadding: 1px;\n}\n\n.ui-datepicker td span,\n.ui-datepicker td a {\n\tdisplay: block;\n\tpadding: .2em;\n\ttext-align: right;\n\ttext-decoration: none;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane {\n\tbackground-image: none;\n\tmargin: .7em 0 0 0;\n\tpadding: 0 .2em;\n\tborder-left: 0;\n\tborder-right: 0;\n\tborder-bottom: 0;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button {\n\tfloat: right;\n\tmargin: .5em .2em .4em;\n\tcursor: pointer;\n\tpadding: .2em .6em .3em .6em;\n\twidth: auto;\n\toverflow: visible;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {\n\tfloat: left;\n}\n\n/* with multiple calendars */\n.ui-datepicker.ui-datepicker-multi {\n\twidth: auto;\n}\n\n.ui-datepicker-multi .ui-datepicker-group {\n\tfloat: left;\n}\n\n.ui-datepicker-multi .ui-datepicker-group table {\n\twidth: 95%;\n\tmargin: 0 auto .4em;\n}\n\n.ui-datepicker-multi-2 .ui-datepicker-group {\n\twidth: 50%;\n}\n\n.ui-datepicker-multi-3 .ui-datepicker-group {\n\twidth: 33.3%;\n}\n\n.ui-datepicker-multi-4 .ui-datepicker-group {\n\twidth: 25%;\n}\n\n.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-left-width: 0;\n}\n\n.ui-datepicker-multi .ui-datepicker-buttonpane {\n\tclear: left;\n}\n\n.ui-datepicker-row-break {\n\tclear: both;\n\twidth: 100%;\n\tfont-size: 0;\n}\n\n/* RTL support */\n.ui-datepicker-rtl {\n\tdirection: rtl;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev {\n\tright: 2px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next {\n\tleft: 2px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev:hover {\n\tright: 1px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next:hover {\n\tleft: 1px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane {\n\tclear: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button {\n\tfloat: left;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,\n.ui-datepicker-rtl .ui-datepicker-group {\n\tfloat: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-right-width: 0;\n\tborder-left-width: 1px;\n}\n\n.ui-dialog {\n\toverflow: hidden;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tpadding: .2em;\n\toutline: 0;\n}\n\n.ui-dialog .ui-dialog-titlebar {\n\tpadding: .4em 1em;\n\tposition: relative;\n}\n\n.ui-dialog .ui-dialog-title {\n\tfloat: left;\n\tmargin: .1em 0;\n\twhite-space: nowrap;\n\twidth: 90%;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n.ui-dialog .ui-dialog-titlebar-close {\n\tposition: absolute;\n\tright: .3em;\n\ttop: 50%;\n\twidth: 20px;\n\tmargin: -10px 0 0 0;\n\tpadding: 1px;\n\theight: 20px;\n}\n\n.ui-dialog .ui-dialog-content {\n\tposition: relative;\n\tborder: 0;\n\tpadding: .5em 1em;\n\tbackground: none;\n\toverflow: auto;\n}\n\n.ui-dialog .ui-dialog-buttonpane {\n\ttext-align: left;\n\tborder-width: 1px 0 0 0;\n\tbackground-image: none;\n\tmargin-top: .5em;\n\tpadding: .3em 1em .5em .4em;\n}\n\n.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {\n\tfloat: right;\n}\n\n.ui-dialog .ui-dialog-buttonpane button {\n\tmargin: .5em .4em .5em 0;\n\tcursor: pointer;\n}\n\n.ui-dialog .ui-resizable-se {\n\twidth: 12px;\n\theight: 12px;\n\tright: -5px;\n\tbottom: -5px;\n\tbackground-position: 16px 16px;\n}\n\n.ui-draggable .ui-dialog-titlebar {\n\tcursor: move;\n}\n\n.ui-menu {\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n\tdisplay: block;\n\toutline: none;\n}\n\n.ui-menu .ui-menu {\n\tposition: absolute;\n}\n\n.ui-menu .ui-menu-item {\n\tposition: relative;\n\tmargin: 0;\n\tpadding: 3px 1em 3px .4em;\n\tcursor: pointer;\n\tmin-height: 0; /* support: IE7 */\n\t/* support: IE10, see #8844 */\n\tlist-style-image: url(\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\");\n}\n\n.ui-menu .ui-menu-divider {\n\tmargin: 5px 0;\n\theight: 0;\n\tfont-size: 0;\n\tline-height: 0;\n\tborder-width: 1px 0 0 0;\n}\n\n.ui-menu .ui-state-focus,\n.ui-menu .ui-state-active {\n\tmargin: -1px;\n}\n\n/* icon support */\n.ui-menu-icons {\n\tposition: relative;\n}\n\n.ui-menu-icons .ui-menu-item {\n\tpadding-left: 2em;\n}\n\n/* left-aligned */\n.ui-menu .ui-icon {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: .2em;\n\tmargin: auto 0;\n}\n\n/* right-aligned */\n.ui-menu .ui-menu-icon {\n\tleft: auto;\n\tright: 0;\n}\n\n.ui-progressbar {\n\theight: 2em;\n\ttext-align: left;\n\toverflow: hidden;\n}\n\n.ui-progressbar .ui-progressbar-value {\n\tmargin: -1px;\n\theight: 100%;\n}\n\n.ui-progressbar .ui-progressbar-overlay {\n\tbackground: url(\"data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==\");\n\theight: 100%;\n\tfilter: alpha(opacity=25); /* support: IE8 */\n\topacity: 0.25;\n}\n\n.ui-progressbar-indeterminate .ui-progressbar-value {\n\tbackground-image: none;\n}\n\n.ui-selectmenu-menu {\n\tpadding: 0;\n\tmargin: 0;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tdisplay: none;\n}\n\n.ui-selectmenu-menu .ui-menu {\n\toverflow: auto;\n\t/* Support: IE7 */\n\toverflow-x: hidden;\n\tpadding-bottom: 1px;\n}\n\n.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {\n\tfont-size: 1em;\n\tfont-weight: bold;\n\tline-height: 1.5;\n\tpadding: 2px 0.4em;\n\tmargin: 0.5em 0 0 0;\n\theight: auto;\n\tborder: 0;\n}\n\n.ui-selectmenu-open {\n\tdisplay: block;\n}\n\n.ui-selectmenu-button {\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tposition: relative;\n\ttext-decoration: none;\n\tcursor: pointer;\n}\n\n.ui-selectmenu-button span.ui-icon {\n\tright: 0.5em;\n\tleft: auto;\n\tmargin-top: -8px;\n\tposition: absolute;\n\ttop: 50%;\n}\n\n.ui-selectmenu-button span.ui-selectmenu-text {\n\ttext-align: left;\n\tpadding: 0.4em 2.1em 0.4em 1em;\n\tdisplay: block;\n\tline-height: 1.4;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n}\n\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* support: IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n\n.ui-spinner {\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tpadding: 0;\n\tvertical-align: middle;\n}\n\n.ui-spinner-input {\n\tborder: none;\n\tbackground: none;\n\tcolor: inherit;\n\tpadding: 0;\n\tmargin: .2em 0;\n\tvertical-align: middle;\n\tmargin-left: .4em;\n\tmargin-right: 22px;\n}\n\n.ui-spinner-button {\n\twidth: 16px;\n\theight: 50%;\n\tfont-size: .5em;\n\tpadding: 0;\n\tmargin: 0;\n\ttext-align: center;\n\tposition: absolute;\n\tcursor: default;\n\tdisplay: block;\n\toverflow: hidden;\n\tright: 0;\n}\n\n/* more specificity required here to override default borders */\n.ui-spinner a.ui-spinner-button {\n\tborder-top: none;\n\tborder-bottom: none;\n\tborder-right: none;\n}\n\n/* vertically center icon */\n.ui-spinner .ui-icon {\n\tposition: absolute;\n\tmargin-top: -8px;\n\ttop: 50%;\n\tleft: 0;\n}\n\n.ui-spinner-up {\n\ttop: 0;\n}\n\n.ui-spinner-down {\n\tbottom: 0;\n}\n\n/* TR overrides */\n.ui-spinner .ui-icon-triangle-1-s {\n\t/* need to fix icons sprite */\n\tbackground-position: -65px -16px;\n}\n\n.ui-tabs {\n\tposition: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as \"fixed\") */\n\tpadding: .2em;\n}\n\n.ui-tabs .ui-tabs-nav {\n\tmargin: 0;\n\tpadding: .2em .2em 0;\n}\n\n.ui-tabs .ui-tabs-nav li {\n\tlist-style: none;\n\tfloat: left;\n\tposition: relative;\n\ttop: 0;\n\tmargin: 1px .2em 0 0;\n\tborder-bottom-width: 0;\n\tpadding: 0;\n\twhite-space: nowrap;\n}\n\n.ui-tabs .ui-tabs-nav .ui-tabs-anchor {\n\tfloat: left;\n\tpadding: .5em 1em;\n\ttext-decoration: none;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active {\n\tmargin-bottom: -1px;\n\tpadding-bottom: 1px;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {\n\tcursor: text;\n}\n\n.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {\n\tcursor: pointer;\n}\n\n.ui-tabs .ui-tabs-panel {\n\tdisplay: block;\n\tborder-width: 0;\n\tpadding: 1em 1.4em;\n\tbackground: none;\n}\n\n.ui-tooltip {\n\tpadding: 8px;\n\tposition: absolute;\n\tz-index: 9999;\n\tmax-width: 300px;\n\t-webkit-box-shadow: 0 0 5px #AAA;\n\tbox-shadow: 0 0 5px #AAA;\n}\n\nbody .ui-tooltip {\n\tborder-width: 2px;\n}\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1.1em;\n}\n\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1em;\n}\n\n.ui-widget-content {\n\tborder: 1px solid #DDD;\n\tbackground: #EEE url(\"images/ui-bg_highlight-soft_100_eeeeee_1x100.png\") 50% top repeat-x;\n\tcolor: #333;\n}\n\n.ui-widget-content a {\n\tcolor: #333;\n}\n\n.ui-widget-header {\n\tborder: 1px solid #E78F08;\n\tbackground: #F6A828 url(\"images/ui-bg_gloss-wave_35_f6a828_500x100.png\") 50% 50% repeat-x;\n\tcolor: #FFF;\n\tfont-weight: bold;\n}\n\n.ui-widget-header a {\n\tcolor: #FFF;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default {\n\tborder: 1px solid #CCC;\n\tbackground: #F6F6F6 url(\"images/ui-bg_glass_100_f6f6f6_1x400.png\") 50% 50% repeat-x;\n\tfont-weight: normal;\n\tcolor: #2B2B2B;\n}\n\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited {\n\tcolor: #1C94C4;\n\ttext-decoration: none;\n}\n\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited {\n\tcolor: #C77405;\n\ttext-decoration: none;\n}\n\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #EB8F00;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #FED22F;\n\tbackground: #FFE45C url(\"images/ui-bg_highlight-soft_75_ffe45c_1x100.png\") 50% top repeat-x;\n\tcolor: #363636;\n}\n\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #363636;\n}\n\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #CD0A0A;\n\tbackground: #B81900 url(\"images/ui-bg_diagonals-thick_18_b81900_40x40.png\") 50% 50% repeat;\n\tcolor: #FFF;\n}\n\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #FFF;\n}\n\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #FFF;\n}\n\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: 0.7;\n\tfilter: alpha(opacity=70); /* support: IE8 */\n\tfont-weight: normal;\n}\n\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: 0.35;\n\tfilter: alpha(opacity=35); /* support: IE8 */\n\tbackground-image: none;\n}\n\n.ui-state-disabled .ui-icon {\n\tfilter: alpha(opacity=35); /* support: IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-widget-header .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffffff_256x240.png\");\n}\n\n.ui-state-default .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-active .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-highlight .ui-icon {\n\tbackground-image: url(\"images/ui-icons_228ef1_256x240.png\");\n}\n\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffd27a_256x240.png\");\n}\n\n/* positioning */\n.ui-icon-blank {\n\tbackground-position: 16px 16px;\n}\n\n.ui-icon-carat-1-n {\n\tbackground-position: 0 0;\n}\n\n.ui-icon-carat-1-ne {\n\tbackground-position: -16px 0;\n}\n\n.ui-icon-carat-1-e {\n\tbackground-position: -32px 0;\n}\n\n.ui-icon-carat-1-se {\n\tbackground-position: -48px 0;\n}\n\n.ui-icon-carat-1-s {\n\tbackground-position: -64px 0;\n}\n\n.ui-icon-carat-1-sw {\n\tbackground-position: -80px 0;\n}\n\n.ui-icon-carat-1-w {\n\tbackground-position: -96px 0;\n}\n\n.ui-icon-carat-1-nw {\n\tbackground-position: -112px 0;\n}\n\n.ui-icon-carat-2-n-s {\n\tbackground-position: -128px 0;\n}\n\n.ui-icon-carat-2-e-w {\n\tbackground-position: -144px 0;\n}\n\n.ui-icon-triangle-1-n {\n\tbackground-position: 0 -16px;\n}\n\n.ui-icon-triangle-1-ne {\n\tbackground-position: -16px -16px;\n}\n\n.ui-icon-triangle-1-e {\n\tbackground-position: -32px -16px;\n}\n\n.ui-icon-triangle-1-se {\n\tbackground-position: -48px -16px;\n}\n\n.ui-icon-triangle-1-s {\n\tbackground-position: -64px -16px;\n}\n\n.ui-icon-triangle-1-sw {\n\tbackground-position: -80px -16px;\n}\n\n.ui-icon-triangle-1-w {\n\tbackground-position: -96px -16px;\n}\n\n.ui-icon-triangle-1-nw {\n\tbackground-position: -112px -16px;\n}\n\n.ui-icon-triangle-2-n-s {\n\tbackground-position: -128px -16px;\n}\n\n.ui-icon-triangle-2-e-w {\n\tbackground-position: -144px -16px;\n}\n\n.ui-icon-arrow-1-n {\n\tbackground-position: 0 -32px;\n}\n\n.ui-icon-arrow-1-ne {\n\tbackground-position: -16px -32px;\n}\n\n.ui-icon-arrow-1-e {\n\tbackground-position: -32px -32px;\n}\n\n.ui-icon-arrow-1-se {\n\tbackground-position: -48px -32px;\n}\n\n.ui-icon-arrow-1-s {\n\tbackground-position: -64px -32px;\n}\n\n.ui-icon-arrow-1-sw {\n\tbackground-position: -80px -32px;\n}\n\n.ui-icon-arrow-1-w {\n\tbackground-position: -96px -32px;\n}\n\n.ui-icon-arrow-1-nw {\n\tbackground-position: -112px -32px;\n}\n\n.ui-icon-arrow-2-n-s {\n\tbackground-position: -128px -32px;\n}\n\n.ui-icon-arrow-2-ne-sw {\n\tbackground-position: -144px -32px;\n}\n\n.ui-icon-arrow-2-e-w {\n\tbackground-position: -160px -32px;\n}\n\n.ui-icon-arrow-2-se-nw {\n\tbackground-position: -176px -32px;\n}\n\n.ui-icon-arrowstop-1-n {\n\tbackground-position: -192px -32px;\n}\n\n.ui-icon-arrowstop-1-e {\n\tbackground-position: -208px -32px;\n}\n\n.ui-icon-arrowstop-1-s {\n\tbackground-position: -224px -32px;\n}\n\n.ui-icon-arrowstop-1-w {\n\tbackground-position: -240px -32px;\n}\n\n.ui-icon-arrowthick-1-n {\n\tbackground-position: 0 -48px;\n}\n\n.ui-icon-arrowthick-1-ne {\n\tbackground-position: -16px -48px;\n}\n\n.ui-icon-arrowthick-1-e {\n\tbackground-position: -32px -48px;\n}\n\n.ui-icon-arrowthick-1-se {\n\tbackground-position: -48px -48px;\n}\n\n.ui-icon-arrowthick-1-s {\n\tbackground-position: -64px -48px;\n}\n\n.ui-icon-arrowthick-1-sw {\n\tbackground-position: -80px -48px;\n}\n\n.ui-icon-arrowthick-1-w {\n\tbackground-position: -96px -48px;\n}\n\n.ui-icon-arrowthick-1-nw {\n\tbackground-position: -112px -48px;\n}\n\n.ui-icon-arrowthick-2-n-s {\n\tbackground-position: -128px -48px;\n}\n\n.ui-icon-arrowthick-2-ne-sw {\n\tbackground-position: -144px -48px;\n}\n\n.ui-icon-arrowthick-2-e-w {\n\tbackground-position: -160px -48px;\n}\n\n.ui-icon-arrowthick-2-se-nw {\n\tbackground-position: -176px -48px;\n}\n\n.ui-icon-arrowthickstop-1-n {\n\tbackground-position: -192px -48px;\n}\n\n.ui-icon-arrowthickstop-1-e {\n\tbackground-position: -208px -48px;\n}\n\n.ui-icon-arrowthickstop-1-s {\n\tbackground-position: -224px -48px;\n}\n\n.ui-icon-arrowthickstop-1-w {\n\tbackground-position: -240px -48px;\n}\n\n.ui-icon-arrowreturnthick-1-w {\n\tbackground-position: 0 -64px;\n}\n\n.ui-icon-arrowreturnthick-1-n {\n\tbackground-position: -16px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-e {\n\tbackground-position: -32px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-s {\n\tbackground-position: -48px -64px;\n}\n\n.ui-icon-arrowreturn-1-w {\n\tbackground-position: -64px -64px;\n}\n\n.ui-icon-arrowreturn-1-n {\n\tbackground-position: -80px -64px;\n}\n\n.ui-icon-arrowreturn-1-e {\n\tbackground-position: -96px -64px;\n}\n\n.ui-icon-arrowreturn-1-s {\n\tbackground-position: -112px -64px;\n}\n\n.ui-icon-arrowrefresh-1-w {\n\tbackground-position: -128px -64px;\n}\n\n.ui-icon-arrowrefresh-1-n {\n\tbackground-position: -144px -64px;\n}\n\n.ui-icon-arrowrefresh-1-e {\n\tbackground-position: -160px -64px;\n}\n\n.ui-icon-arrowrefresh-1-s {\n\tbackground-position: -176px -64px;\n}\n\n.ui-icon-arrow-4 {\n\tbackground-position: 0 -80px;\n}\n\n.ui-icon-arrow-4-diag {\n\tbackground-position: -16px -80px;\n}\n\n.ui-icon-extlink {\n\tbackground-position: -32px -80px;\n}\n\n.ui-icon-newwin {\n\tbackground-position: -48px -80px;\n}\n\n.ui-icon-refresh {\n\tbackground-position: -64px -80px;\n}\n\n.ui-icon-shuffle {\n\tbackground-position: -80px -80px;\n}\n\n.ui-icon-transfer-e-w {\n\tbackground-position: -96px -80px;\n}\n\n.ui-icon-transferthick-e-w {\n\tbackground-position: -112px -80px;\n}\n\n.ui-icon-folder-collapsed {\n\tbackground-position: 0 -96px;\n}\n\n.ui-icon-folder-open {\n\tbackground-position: -16px -96px;\n}\n\n.ui-icon-document {\n\tbackground-position: -32px -96px;\n}\n\n.ui-icon-document-b {\n\tbackground-position: -48px -96px;\n}\n\n.ui-icon-note {\n\tbackground-position: -64px -96px;\n}\n\n.ui-icon-mail-closed {\n\tbackground-position: -80px -96px;\n}\n\n.ui-icon-mail-open {\n\tbackground-position: -96px -96px;\n}\n\n.ui-icon-suitcase {\n\tbackground-position: -112px -96px;\n}\n\n.ui-icon-comment {\n\tbackground-position: -128px -96px;\n}\n\n.ui-icon-person {\n\tbackground-position: -144px -96px;\n}\n\n.ui-icon-print {\n\tbackground-position: -160px -96px;\n}\n\n.ui-icon-trash {\n\tbackground-position: -176px -96px;\n}\n\n.ui-icon-locked {\n\tbackground-position: -192px -96px;\n}\n\n.ui-icon-unlocked {\n\tbackground-position: -208px -96px;\n}\n\n.ui-icon-bookmark {\n\tbackground-position: -224px -96px;\n}\n\n.ui-icon-tag {\n\tbackground-position: -240px -96px;\n}\n\n.ui-icon-home {\n\tbackground-position: 0 -112px;\n}\n\n.ui-icon-flag {\n\tbackground-position: -16px -112px;\n}\n\n.ui-icon-calendar {\n\tbackground-position: -32px -112px;\n}\n\n.ui-icon-cart {\n\tbackground-position: -48px -112px;\n}\n\n.ui-icon-pencil {\n\tbackground-position: -64px -112px;\n}\n\n.ui-icon-clock {\n\tbackground-position: -80px -112px;\n}\n\n.ui-icon-disk {\n\tbackground-position: -96px -112px;\n}\n\n.ui-icon-calculator {\n\tbackground-position: -112px -112px;\n}\n\n.ui-icon-zoomin {\n\tbackground-position: -128px -112px;\n}\n\n.ui-icon-zoomout {\n\tbackground-position: -144px -112px;\n}\n\n.ui-icon-search {\n\tbackground-position: -160px -112px;\n}\n\n.ui-icon-wrench {\n\tbackground-position: -176px -112px;\n}\n\n.ui-icon-gear {\n\tbackground-position: -192px -112px;\n}\n\n.ui-icon-heart {\n\tbackground-position: -208px -112px;\n}\n\n.ui-icon-star {\n\tbackground-position: -224px -112px;\n}\n\n.ui-icon-link {\n\tbackground-position: -240px -112px;\n}\n\n.ui-icon-cancel {\n\tbackground-position: 0 -128px;\n}\n\n.ui-icon-plus {\n\tbackground-position: -16px -128px;\n}\n\n.ui-icon-plusthick {\n\tbackground-position: -32px -128px;\n}\n\n.ui-icon-minus {\n\tbackground-position: -48px -128px;\n}\n\n.ui-icon-minusthick {\n\tbackground-position: -64px -128px;\n}\n\n.ui-icon-close {\n\tbackground-position: -80px -128px;\n}\n\n.ui-icon-closethick {\n\tbackground-position: -96px -128px;\n}\n\n.ui-icon-key {\n\tbackground-position: -112px -128px;\n}\n\n.ui-icon-lightbulb {\n\tbackground-position: -128px -128px;\n}\n\n.ui-icon-scissors {\n\tbackground-position: -144px -128px;\n}\n\n.ui-icon-clipboard {\n\tbackground-position: -160px -128px;\n}\n\n.ui-icon-copy {\n\tbackground-position: -176px -128px;\n}\n\n.ui-icon-contact {\n\tbackground-position: -192px -128px;\n}\n\n.ui-icon-image {\n\tbackground-position: -208px -128px;\n}\n\n.ui-icon-video {\n\tbackground-position: -224px -128px;\n}\n\n.ui-icon-script {\n\tbackground-position: -240px -128px;\n}\n\n.ui-icon-alert {\n\tbackground-position: 0 -144px;\n}\n\n.ui-icon-info {\n\tbackground-position: -16px -144px;\n}\n\n.ui-icon-notice {\n\tbackground-position: -32px -144px;\n}\n\n.ui-icon-help {\n\tbackground-position: -48px -144px;\n}\n\n.ui-icon-check {\n\tbackground-position: -64px -144px;\n}\n\n.ui-icon-bullet {\n\tbackground-position: -80px -144px;\n}\n\n.ui-icon-radio-on {\n\tbackground-position: -96px -144px;\n}\n\n.ui-icon-radio-off {\n\tbackground-position: -112px -144px;\n}\n\n.ui-icon-pin-w {\n\tbackground-position: -128px -144px;\n}\n\n.ui-icon-pin-s {\n\tbackground-position: -144px -144px;\n}\n\n.ui-icon-play {\n\tbackground-position: 0 -160px;\n}\n\n.ui-icon-pause {\n\tbackground-position: -16px -160px;\n}\n\n.ui-icon-seek-next {\n\tbackground-position: -32px -160px;\n}\n\n.ui-icon-seek-prev {\n\tbackground-position: -48px -160px;\n}\n\n.ui-icon-seek-end {\n\tbackground-position: -64px -160px;\n}\n\n.ui-icon-seek-start {\n\tbackground-position: -80px -160px;\n}\n\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first {\n\tbackground-position: -80px -160px;\n}\n\n.ui-icon-stop {\n\tbackground-position: -96px -160px;\n}\n\n.ui-icon-eject {\n\tbackground-position: -112px -160px;\n}\n\n.ui-icon-volume-off {\n\tbackground-position: -128px -160px;\n}\n\n.ui-icon-volume-on {\n\tbackground-position: -144px -160px;\n}\n\n.ui-icon-power {\n\tbackground-position: 0 -176px;\n}\n\n.ui-icon-signal-diag {\n\tbackground-position: -16px -176px;\n}\n\n.ui-icon-signal {\n\tbackground-position: -32px -176px;\n}\n\n.ui-icon-battery-0 {\n\tbackground-position: -48px -176px;\n}\n\n.ui-icon-battery-1 {\n\tbackground-position: -64px -176px;\n}\n\n.ui-icon-battery-2 {\n\tbackground-position: -80px -176px;\n}\n\n.ui-icon-battery-3 {\n\tbackground-position: -96px -176px;\n}\n\n.ui-icon-circle-plus {\n\tbackground-position: 0 -192px;\n}\n\n.ui-icon-circle-minus {\n\tbackground-position: -16px -192px;\n}\n\n.ui-icon-circle-close {\n\tbackground-position: -32px -192px;\n}\n\n.ui-icon-circle-triangle-e {\n\tbackground-position: -48px -192px;\n}\n\n.ui-icon-circle-triangle-s {\n\tbackground-position: -64px -192px;\n}\n\n.ui-icon-circle-triangle-w {\n\tbackground-position: -80px -192px;\n}\n\n.ui-icon-circle-triangle-n {\n\tbackground-position: -96px -192px;\n}\n\n.ui-icon-circle-arrow-e {\n\tbackground-position: -112px -192px;\n}\n\n.ui-icon-circle-arrow-s {\n\tbackground-position: -128px -192px;\n}\n\n.ui-icon-circle-arrow-w {\n\tbackground-position: -144px -192px;\n}\n\n.ui-icon-circle-arrow-n {\n\tbackground-position: -160px -192px;\n}\n\n.ui-icon-circle-zoomin {\n\tbackground-position: -176px -192px;\n}\n\n.ui-icon-circle-zoomout {\n\tbackground-position: -192px -192px;\n}\n\n.ui-icon-circle-check {\n\tbackground-position: -208px -192px;\n}\n\n.ui-icon-circlesmall-plus {\n\tbackground-position: 0 -208px;\n}\n\n.ui-icon-circlesmall-minus {\n\tbackground-position: -16px -208px;\n}\n\n.ui-icon-circlesmall-close {\n\tbackground-position: -32px -208px;\n}\n\n.ui-icon-squaresmall-plus {\n\tbackground-position: -48px -208px;\n}\n\n.ui-icon-squaresmall-minus {\n\tbackground-position: -64px -208px;\n}\n\n.ui-icon-squaresmall-close {\n\tbackground-position: -80px -208px;\n}\n\n.ui-icon-grip-dotted-vertical {\n\tbackground-position: 0 -224px;\n}\n\n.ui-icon-grip-dotted-horizontal {\n\tbackground-position: -16px -224px;\n}\n\n.ui-icon-grip-solid-vertical {\n\tbackground-position: -32px -224px;\n}\n\n.ui-icon-grip-solid-horizontal {\n\tbackground-position: -48px -224px;\n}\n\n.ui-icon-gripsmall-diagonal-se {\n\tbackground-position: -64px -224px;\n}\n\n.ui-icon-grip-diagonal-se {\n\tbackground-position: -80px -224px;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 4px;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #666 url(\"images/ui-bg_diagonals-thick_20_666666_40x40.png\") 50% 50% repeat;\n\topacity: 0.5;\n\tfilter: alpha(opacity=50); /* support: IE8 */\n}\n\n.ui-widget-shadow {\n\tmargin: -5px 0 0 -5px;\n\tpadding: 5px;\n\tbackground: #000;\n\topacity: 0.2;\n\tfilter: alpha(opacity=20); /* support: IE8 */\n\tborder-radius: 5px;\n}"]}
1
+ {"version":3,"sources":["includes/jquery-ui.custom.css"],"names":[],"mappings":"AAAA;;;;qEAIqE;;AAErE;oCACoC;AACpC;CACC,cAAc;CACd;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ,aAAa;CACb,iBAAiB;CACjB,WAAW;CACX,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,UAAU;CACV,WAAW;CACX,UAAU;CACV,WAAW;CACX,iBAAiB;CACjB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;;CAEC,YAAY;CACZ,eAAe;CACf,0BAA0B;CAC1B;;AAED;CACC,YAAY;CACZ;;AAED;CACC,cAAc,CAAC,kBAAkB;CACjC;;AAED;CACC,YAAY;CACZ,aAAa;CACb,OAAO;CACP,QAAQ;CACR,mBAAmB;CACnB,WAAW;CACX,yBAAyB,CAAC,kBAAkB;CAC5C;;AAED;CACC,aAAa;CACb;;AAED;oCACoC;AACpC;CACC,2BAA2B;CAC3B;;AAED;oCACoC;;AAEpC,uBAAuB;AACvB;CACC,eAAe;CACf,sBAAsB;CACtB,iBAAiB;CACjB,6BAA6B;CAC7B;;AAED;oCACoC;;AAEpC,cAAc;AACd;CACC,gBAAgB;CAChB,OAAO;CACP,QAAQ;CACR,YAAY;CACZ,aAAa;CACb;;AAED;CACC,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,iBAAiB;CACjB,eAAe;CACf,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,UAAU;CACV,QAAQ;CACR;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,QAAQ;CACR;;AAED;CACC,iBAAiB;CACjB,WAAW;CACX,YAAY;CACZ,OAAO;CACP,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,WAAW;CACX,WAAW;CACX,OAAO;CACP,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,aAAa;CACb,WAAW;CACX,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB,WAAW;CACX,YAAY;CACZ,WAAW;CACX,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB,WAAW;CACX,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB,WAAW;CACX,YAAY;CACZ,YAAY;CACZ,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,yBAAyB;CACzB;;AAED;CACC,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,6BAA6B;CAC7B,cAAc,CAAC,kBAAkB;CACjC,gBAAgB;CAChB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,SAAS;CACT,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,WAAW;CACX,oBAAoB;CACpB,mBAAmB;CACnB,gBAAgB;CAChB,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB,CAAC,+BAA+B;CAClD;;AAED;;;;;CAKC,sBAAsB;CACtB;;AAED,6DAA6D;AAC7D;CACC,aAAa;CACb;;AAED,sDAAsD;AACtD;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED,yBAAyB;AACzB;CACC,eAAe;CACf,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;;CAEC,cAAc;CACd,wBAAwB;CACxB;;AAED;;CAEC,6BAA6B;CAC7B;;AAED;;CAEC,6BAA6B;CAC7B;;AAED;CACC,oBAAoB;CACpB,qBAAqB;CACrB;;AAED,oEAAoE;AACpE;CACC,kBAAkB;CAClB;;AAED,4BAA4B;AAC5B;;;;;CAKC,mBAAmB;CACnB,SAAS;CACT,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV,kBAAkB;CAClB;;AAED;;;CAGC,WAAW;CACX;;AAED;;;CAGC,YAAY;CACZ;;AAED,iBAAiB;AACjB;CACC,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,oBAAoB;CACpB;;AAED,iBAAiB;AACjB,oDAAoD;AACpD;;CAEC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,qBAAqB;CACrB,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;;CAEC,mBAAmB;CACnB,SAAS;CACT,aAAa;CACb,cAAc;CACd;;AAED;;CAEC,SAAS;CACT;;AAED;CACC,UAAU;CACV;;AAED;CACC,WAAW;CACX;;AAED;CACC,UAAU;CACV;;AAED;CACC,WAAW;CACX;;AAED;;CAEC,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,kBAAkB;CAClB,SAAS;CACT,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,cAAc;CACd;;AAED;;CAEC,WAAW;CACX;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,0BAA0B;CAC1B,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,UAAU;CACV;;AAED;CACC,UAAU;CACV,aAAa;CACb;;AAED;;CAEC,eAAe;CACf,cAAc;CACd,kBAAkB;CAClB,sBAAsB;CACtB;;AAED;CACC,uBAAuB;CACvB,mBAAmB;CACnB,gBAAgB;CAChB,eAAe;CACf,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,uBAAuB;CACvB,gBAAgB;CAChB,6BAA6B;CAC7B,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;;CAEC,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,aAAa;CACb;;AAED,iBAAiB;AACjB;CACC,eAAe;CACf;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,UAAU;CACV,YAAY;CACZ;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,UAAU;CACV,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC,aAAa;CACb;;AAED;;CAEC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,cAAc;CACd,WAAW;CACX;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,oBAAoB;CACpB,WAAW;CACX,iBAAiB;CACjB,wBAAwB;CACxB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,SAAS;CACT,YAAY;CACZ,oBAAoB;CACpB,aAAa;CACb,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,UAAU;CACV,kBAAkB;CAClB,iBAAiB;CACjB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,uBAAuB;CACvB,iBAAiB;CACjB,4BAA4B;CAC5B;;AAED;CACC,aAAa;CACb;;AAED;CACC,yBAAyB;CACzB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,aAAa;CACb,+BAA+B;CAC/B;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,WAAW;CACX,UAAU;CACV,eAAe;CACf,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,UAAU;CACV,0BAA0B;CAC1B,gBAAgB;CAChB,cAAc,CAAC,kBAAkB;CACjC,8BAA8B;CAC9B,wGAAwG;CACxG;;AAED;CACC,cAAc;CACd,UAAU;CACV,aAAa;CACb,eAAe;CACf,wBAAwB;CACxB;;AAED;;CAEC,aAAa;CACb;;AAED,kBAAkB;AAClB;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,kBAAkB;AAClB;CACC,mBAAmB;CACnB,OAAO;CACP,UAAU;CACV,WAAW;CACX,eAAe;CACf;;AAED,mBAAmB;AACnB;CACC,WAAW;CACX,SAAS;CACT;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,0zEAA0zE;CAC1zE,aAAa;CACb,0BAA0B,CAAC,kBAAkB;CAC7C,cAAc;CACd;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,UAAU;CACV,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,cAAc;CACd;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,iBAAiB;CACjB,mBAAmB;CACnB,oBAAoB;CACpB,aAAa;CACb,UAAU;CACV;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,iBAAiB;CACjB,mBAAmB;CACnB,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,WAAW;CACX,iBAAiB;CACjB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,iBAAiB;CACjB,+BAA+B;CAC/B,eAAe;CACf,iBAAiB;CACjB,iBAAiB;CACjB,wBAAwB;CACxB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,aAAa;CACb,cAAc;CACd,gBAAgB;CAChB,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,gBAAgB;CAChB,eAAe;CACf,UAAU;CACV,yBAAyB;CACzB;;AAED,8BAA8B;AAC9B;;CAEC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,OAAO;CACP,aAAa;CACb;;AAED;CACC,QAAQ;CACR;;AAED;CACC,SAAS;CACT;;AAED;CACC,YAAY;CACZ,cAAc;CACd;;AAED;CACC,YAAY;CACZ,eAAe;CACf,qBAAqB;CACrB;;AAED;CACC,QAAQ;CACR,YAAY;CACZ;;AAED;CACC,UAAU;CACV;;AAED;CACC,OAAO;CACP;;AAED;CACC,mBAAmB;CACnB,sBAAsB;CACtB,iBAAiB;CACjB,WAAW;CACX,uBAAuB;CACvB;;AAED;CACC,aAAa;CACb,iBAAiB;CACjB,eAAe;CACf,WAAW;CACX,eAAe;CACf,uBAAuB;CACvB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,gBAAgB;CAChB,WAAW;CACX,UAAU;CACV,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB,eAAe;CACf,iBAAiB;CACjB,SAAS;CACT;;AAED,gEAAgE;AAChE;CACC,iBAAiB;CACjB,oBAAoB;CACpB,mBAAmB;CACnB;;AAED,4BAA4B;AAC5B;CACC,mBAAmB;CACnB,iBAAiB;CACjB,SAAS;CACT,QAAQ;CACR;;AAED;CACC,OAAO;CACP;;AAED;CACC,UAAU;CACV;;AAED,kBAAkB;AAClB;CACC,8BAA8B;CAC9B,iCAAiC;CACjC;;AAED;CACC,mBAAmB,wIAAwI;CAC3J,cAAc;CACd;;AAED;CACC,UAAU;CACV,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,mBAAmB;CACnB,OAAO;CACP,qBAAqB;CACrB,uBAAuB;CACvB,WAAW;CACX,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,oBAAoB;CACpB;;AAED;;;CAGC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,iBAAiB;CAEjB,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB;;AAED;oCACoC;AACpC;CACC,0DAA0D;CAC1D,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;;;;CAIC,0DAA0D;CAC1D,eAAe;CACf;;AAED;CACC,uBAAuB;CACvB,0FAA0F;CAC1F,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,0FAA0F;CAC1F,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;oCACoC;AACpC;;;CAGC,uBAAuB;CACvB,oFAAoF;CACpF,oBAAoB;CACpB,eAAe;CACf;;AAED;;;CAGC,eAAe;CACf,sBAAsB;CACtB;;AAED;;;;;;CAMC,0BAA0B;CAC1B,oBAAoB;CACpB,oBAAoB;CACpB,eAAe;CACf;;AAED;;;;;;;;CAQC,eAAe;CACf,sBAAsB;CACtB;;AAED;;;CAGC,0BAA0B;CAC1B,oBAAoB;CACpB,oBAAoB;CACpB,eAAe;CACf;;AAED;;;CAGC,eAAe;CACf,sBAAsB;CACtB;;AAED;oCACoC;AACpC;;;CAGC,0BAA0B;CAC1B,4FAA4F;CAC5F,eAAe;CACf;;AAED;;;CAGC,eAAe;CACf;;AAED;;;CAGC,0BAA0B;CAC1B,2FAA2F;CAC3F,YAAY;CACZ;;AAED;;;CAGC,YAAY;CACZ;;AAED;;;CAGC,YAAY;CACZ;;AAED;;;CAGC,kBAAkB;CAClB;;AAED;;;CAGC,aAAa;CACb,0BAA0B,CAAC,kBAAkB;CAC7C,oBAAoB;CACpB;;AAED;;;CAGC,cAAc;CACd,0BAA0B,CAAC,kBAAkB;CAC7C,uBAAuB;CACvB;;AAED;CACC,0BAA0B,CAAC,8BAA8B;CACzD;;AAED;oCACoC;;AAEpC,uBAAuB;AACvB;CACC,YAAY;CACZ,aAAa;CACb;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;CACC,4DAA4D;CAC5D;;AAED;CACC,4DAA4D;CAC5D;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;CACC,4DAA4D;CAC5D;;AAED;CACC,4DAA4D;CAC5D;;AAED;;CAEC,4DAA4D;CAC5D;;AAED,iBAAiB;AACjB;CACC,+BAA+B;CAC/B;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED,sEAAsE;AACtE;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,mCAAmC;CACnC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,8BAA8B;CAC9B;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;CACC,kCAAkC;CAClC;;AAED;oCACoC;;AAEpC,mBAAmB;AACnB;;;;CAIC,4BAA4B;CAC5B;;AAED;;;;CAIC,6BAA6B;CAC7B;;AAED;;;;CAIC,+BAA+B;CAC/B;;AAED;;;;CAIC,gCAAgC;CAChC;;AAED,cAAc;AACd;CACC,wFAAwF;CACxF,aAAa;CACb,0BAA0B,CAAC,kBAAkB;CAC7C;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,iBAAiB;CACjB,aAAa;CACb,0BAA0B,CAAC,kBAAkB;CAC7C,mBAAmB;CACnB","file":"jquery-ui.custom-1-16-28.min.css","sourcesContent":["/*! jQuery UI - v1.11.4 - 2015-12-05\n* http://jqueryui.com\n* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css\n* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n\n.ui-helper-clearfix {\n\tmin-height: 0; /* support: IE7 */\n}\n\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter: alpha(opacity=0); /* support: IE8 */\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n\n.ui-draggable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable {\n\tposition: relative;\n}\n\n.ui-resizable-handle {\n\tposition: absolute;\n\tfont-size: 0.1px;\n\tdisplay: block;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-resizable-disabled .ui-resizable-handle,\n.ui-resizable-autohide .ui-resizable-handle {\n\tdisplay: none;\n}\n\n.ui-resizable-n {\n\tcursor: n-resize;\n\theight: 7px;\n\twidth: 100%;\n\ttop: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-s {\n\tcursor: s-resize;\n\theight: 7px;\n\twidth: 100%;\n\tbottom: -5px;\n\tleft: 0;\n}\n\n.ui-resizable-e {\n\tcursor: e-resize;\n\twidth: 7px;\n\tright: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-w {\n\tcursor: w-resize;\n\twidth: 7px;\n\tleft: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-resizable-se {\n\tcursor: se-resize;\n\twidth: 12px;\n\theight: 12px;\n\tright: 1px;\n\tbottom: 1px;\n}\n\n.ui-resizable-sw {\n\tcursor: sw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\tbottom: -5px;\n}\n\n.ui-resizable-nw {\n\tcursor: nw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\ttop: -5px;\n}\n\n.ui-resizable-ne {\n\tcursor: ne-resize;\n\twidth: 9px;\n\theight: 9px;\n\tright: -5px;\n\ttop: -5px;\n}\n\n.ui-selectable {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-selectable-helper {\n\tposition: absolute;\n\tz-index: 100;\n\tborder: 1px dotted black;\n}\n\n.ui-sortable-handle {\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-accordion .ui-accordion-header {\n\tdisplay: block;\n\tcursor: pointer;\n\tposition: relative;\n\tmargin: 2px 0 0 0;\n\tpadding: .5em .5em .5em .7em;\n\tmin-height: 0; /* support: IE7 */\n\tfont-size: 100%;\n}\n\n.ui-accordion .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n\n.ui-accordion .ui-accordion-icons .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n\n.ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tposition: absolute;\n\tleft: .5em;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-accordion .ui-accordion-content {\n\tpadding: 1em 2.2em;\n\tborder-top: 0;\n\toverflow: auto;\n}\n\n.ui-autocomplete {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tcursor: default;\n}\n\n.ui-button {\n\tdisplay: inline-block;\n\tposition: relative;\n\tpadding: 0;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\toverflow: visible; /* removes extra width in IE */\n}\n\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2.2em;\n}\n\n/* button elements seem to need a little more width */\nbutton.ui-button-icon-only {\n\twidth: 2.4em;\n}\n\n.ui-button-icons-only {\n\twidth: 3.4em;\n}\n\nbutton.ui-button-icons-only {\n\twidth: 3.7em;\n}\n\n/* button text element */\n.ui-button .ui-button-text {\n\tdisplay: block;\n\tline-height: normal;\n}\n\n.ui-button-text-only .ui-button-text {\n\tpadding: .4em 1em;\n}\n\n.ui-button-icon-only .ui-button-text,\n.ui-button-icons-only .ui-button-text {\n\tpadding: .4em;\n\ttext-indent: -9999999px;\n}\n\n.ui-button-text-icon-primary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 1em .4em 2.1em;\n}\n\n.ui-button-text-icon-secondary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 2.1em .4em 1em;\n}\n\n.ui-button-text-icons .ui-button-text {\n\tpadding-left: 2.1em;\n\tpadding-right: 2.1em;\n}\n\n/* no icon support for input elements, provide padding by default */\ninput.ui-button {\n\tpadding: .4em 1em;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon,\n.ui-button-text-icon-primary .ui-icon,\n.ui-button-text-icon-secondary .ui-icon,\n.ui-button-text-icons .ui-icon,\n.ui-button-icons-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-button-icon-only .ui-icon {\n\tleft: 50%;\n\tmargin-left: -8px;\n}\n\n.ui-button-text-icon-primary .ui-button-icon-primary,\n.ui-button-text-icons .ui-button-icon-primary,\n.ui-button-icons-only .ui-button-icon-primary {\n\tleft: .5em;\n}\n\n.ui-button-text-icon-secondary .ui-button-icon-secondary,\n.ui-button-text-icons .ui-button-icon-secondary,\n.ui-button-icons-only .ui-button-icon-secondary {\n\tright: .5em;\n}\n\n/* button sets */\n.ui-buttonset {\n\tmargin-right: 7px;\n}\n\n.ui-buttonset .ui-button {\n\tmargin-left: 0;\n\tmargin-right: -.3em;\n}\n\n/* workarounds */\n/* reset extra padding in Firefox, see h5bp.com/l */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n\n.ui-datepicker {\n\twidth: 17em;\n\tpadding: .2em .2em 0;\n\tdisplay: none;\n}\n\n.ui-datepicker .ui-datepicker-header {\n\tposition: relative;\n\tpadding: .2em 0;\n}\n\n.ui-datepicker .ui-datepicker-prev,\n.ui-datepicker .ui-datepicker-next {\n\tposition: absolute;\n\ttop: 2px;\n\twidth: 1.8em;\n\theight: 1.8em;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover,\n.ui-datepicker .ui-datepicker-next-hover {\n\ttop: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev {\n\tleft: 2px;\n}\n\n.ui-datepicker .ui-datepicker-next {\n\tright: 2px;\n}\n\n.ui-datepicker .ui-datepicker-prev-hover {\n\tleft: 1px;\n}\n\n.ui-datepicker .ui-datepicker-next-hover {\n\tright: 1px;\n}\n\n.ui-datepicker .ui-datepicker-prev span,\n.ui-datepicker .ui-datepicker-next span {\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 50%;\n\tmargin-left: -8px;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n\n.ui-datepicker .ui-datepicker-title {\n\tmargin: 0 2.3em;\n\tline-height: 1.8em;\n\ttext-align: center;\n}\n\n.ui-datepicker .ui-datepicker-title select {\n\tfont-size: 1em;\n\tmargin: 1px 0;\n}\n\n.ui-datepicker select.ui-datepicker-month,\n.ui-datepicker select.ui-datepicker-year {\n\twidth: 45%;\n}\n\n.ui-datepicker table {\n\twidth: 100%;\n\tfont-size: .9em;\n\tborder-collapse: collapse;\n\tmargin: 0 0 .4em;\n}\n\n.ui-datepicker th {\n\tpadding: .7em .3em;\n\ttext-align: center;\n\tfont-weight: bold;\n\tborder: 0;\n}\n\n.ui-datepicker td {\n\tborder: 0;\n\tpadding: 1px;\n}\n\n.ui-datepicker td span,\n.ui-datepicker td a {\n\tdisplay: block;\n\tpadding: .2em;\n\ttext-align: right;\n\ttext-decoration: none;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane {\n\tbackground-image: none;\n\tmargin: .7em 0 0 0;\n\tpadding: 0 .2em;\n\tborder-left: 0;\n\tborder-right: 0;\n\tborder-bottom: 0;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button {\n\tfloat: right;\n\tmargin: .5em .2em .4em;\n\tcursor: pointer;\n\tpadding: .2em .6em .3em .6em;\n\twidth: auto;\n\toverflow: visible;\n}\n\n.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {\n\tfloat: left;\n}\n\n/* with multiple calendars */\n.ui-datepicker.ui-datepicker-multi {\n\twidth: auto;\n}\n\n.ui-datepicker-multi .ui-datepicker-group {\n\tfloat: left;\n}\n\n.ui-datepicker-multi .ui-datepicker-group table {\n\twidth: 95%;\n\tmargin: 0 auto .4em;\n}\n\n.ui-datepicker-multi-2 .ui-datepicker-group {\n\twidth: 50%;\n}\n\n.ui-datepicker-multi-3 .ui-datepicker-group {\n\twidth: 33.3%;\n}\n\n.ui-datepicker-multi-4 .ui-datepicker-group {\n\twidth: 25%;\n}\n\n.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-left-width: 0;\n}\n\n.ui-datepicker-multi .ui-datepicker-buttonpane {\n\tclear: left;\n}\n\n.ui-datepicker-row-break {\n\tclear: both;\n\twidth: 100%;\n\tfont-size: 0;\n}\n\n/* RTL support */\n.ui-datepicker-rtl {\n\tdirection: rtl;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev {\n\tright: 2px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next {\n\tleft: 2px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-prev:hover {\n\tright: 1px;\n\tleft: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-next:hover {\n\tleft: 1px;\n\tright: auto;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane {\n\tclear: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button {\n\tfloat: left;\n}\n\n.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,\n.ui-datepicker-rtl .ui-datepicker-group {\n\tfloat: right;\n}\n\n.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-right-width: 0;\n\tborder-left-width: 1px;\n}\n\n.ui-dialog {\n\toverflow: hidden;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tpadding: .2em;\n\toutline: 0;\n}\n\n.ui-dialog .ui-dialog-titlebar {\n\tpadding: .4em 1em;\n\tposition: relative;\n}\n\n.ui-dialog .ui-dialog-title {\n\tfloat: left;\n\tmargin: .1em 0;\n\twhite-space: nowrap;\n\twidth: 90%;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n.ui-dialog .ui-dialog-titlebar-close {\n\tposition: absolute;\n\tright: .3em;\n\ttop: 50%;\n\twidth: 20px;\n\tmargin: -10px 0 0 0;\n\tpadding: 1px;\n\theight: 20px;\n}\n\n.ui-dialog .ui-dialog-content {\n\tposition: relative;\n\tborder: 0;\n\tpadding: .5em 1em;\n\tbackground: none;\n\toverflow: auto;\n}\n\n.ui-dialog .ui-dialog-buttonpane {\n\ttext-align: left;\n\tborder-width: 1px 0 0 0;\n\tbackground-image: none;\n\tmargin-top: .5em;\n\tpadding: .3em 1em .5em .4em;\n}\n\n.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {\n\tfloat: right;\n}\n\n.ui-dialog .ui-dialog-buttonpane button {\n\tmargin: .5em .4em .5em 0;\n\tcursor: pointer;\n}\n\n.ui-dialog .ui-resizable-se {\n\twidth: 12px;\n\theight: 12px;\n\tright: -5px;\n\tbottom: -5px;\n\tbackground-position: 16px 16px;\n}\n\n.ui-draggable .ui-dialog-titlebar {\n\tcursor: move;\n}\n\n.ui-menu {\n\tlist-style: none;\n\tpadding: 0;\n\tmargin: 0;\n\tdisplay: block;\n\toutline: none;\n}\n\n.ui-menu .ui-menu {\n\tposition: absolute;\n}\n\n.ui-menu .ui-menu-item {\n\tposition: relative;\n\tmargin: 0;\n\tpadding: 3px 1em 3px .4em;\n\tcursor: pointer;\n\tmin-height: 0; /* support: IE7 */\n\t/* support: IE10, see #8844 */\n\tlist-style-image: url(\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\");\n}\n\n.ui-menu .ui-menu-divider {\n\tmargin: 5px 0;\n\theight: 0;\n\tfont-size: 0;\n\tline-height: 0;\n\tborder-width: 1px 0 0 0;\n}\n\n.ui-menu .ui-state-focus,\n.ui-menu .ui-state-active {\n\tmargin: -1px;\n}\n\n/* icon support */\n.ui-menu-icons {\n\tposition: relative;\n}\n\n.ui-menu-icons .ui-menu-item {\n\tpadding-left: 2em;\n}\n\n/* left-aligned */\n.ui-menu .ui-icon {\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: .2em;\n\tmargin: auto 0;\n}\n\n/* right-aligned */\n.ui-menu .ui-menu-icon {\n\tleft: auto;\n\tright: 0;\n}\n\n.ui-progressbar {\n\theight: 2em;\n\ttext-align: left;\n\toverflow: hidden;\n}\n\n.ui-progressbar .ui-progressbar-value {\n\tmargin: -1px;\n\theight: 100%;\n}\n\n.ui-progressbar .ui-progressbar-overlay {\n\tbackground: url(\"data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==\");\n\theight: 100%;\n\tfilter: alpha(opacity=25); /* support: IE8 */\n\topacity: 0.25;\n}\n\n.ui-progressbar-indeterminate .ui-progressbar-value {\n\tbackground-image: none;\n}\n\n.ui-selectmenu-menu {\n\tpadding: 0;\n\tmargin: 0;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tdisplay: none;\n}\n\n.ui-selectmenu-menu .ui-menu {\n\toverflow: auto;\n\t/* Support: IE7 */\n\toverflow-x: hidden;\n\tpadding-bottom: 1px;\n}\n\n.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {\n\tfont-size: 1em;\n\tfont-weight: bold;\n\tline-height: 1.5;\n\tpadding: 2px 0.4em;\n\tmargin: 0.5em 0 0 0;\n\theight: auto;\n\tborder: 0;\n}\n\n.ui-selectmenu-open {\n\tdisplay: block;\n}\n\n.ui-selectmenu-button {\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tposition: relative;\n\ttext-decoration: none;\n\tcursor: pointer;\n}\n\n.ui-selectmenu-button span.ui-icon {\n\tright: 0.5em;\n\tleft: auto;\n\tmargin-top: -8px;\n\tposition: absolute;\n\ttop: 50%;\n}\n\n.ui-selectmenu-button span.ui-selectmenu-text {\n\ttext-align: left;\n\tpadding: 0.4em 2.1em 0.4em 1em;\n\tdisplay: block;\n\tline-height: 1.4;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\twhite-space: nowrap;\n}\n\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* support: IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n\n.ui-spinner {\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tpadding: 0;\n\tvertical-align: middle;\n}\n\n.ui-spinner-input {\n\tborder: none;\n\tbackground: none;\n\tcolor: inherit;\n\tpadding: 0;\n\tmargin: .2em 0;\n\tvertical-align: middle;\n\tmargin-left: .4em;\n\tmargin-right: 22px;\n}\n\n.ui-spinner-button {\n\twidth: 16px;\n\theight: 50%;\n\tfont-size: .5em;\n\tpadding: 0;\n\tmargin: 0;\n\ttext-align: center;\n\tposition: absolute;\n\tcursor: default;\n\tdisplay: block;\n\toverflow: hidden;\n\tright: 0;\n}\n\n/* more specificity required here to override default borders */\n.ui-spinner a.ui-spinner-button {\n\tborder-top: none;\n\tborder-bottom: none;\n\tborder-right: none;\n}\n\n/* vertically center icon */\n.ui-spinner .ui-icon {\n\tposition: absolute;\n\tmargin-top: -8px;\n\ttop: 50%;\n\tleft: 0;\n}\n\n.ui-spinner-up {\n\ttop: 0;\n}\n\n.ui-spinner-down {\n\tbottom: 0;\n}\n\n/* TR overrides */\n.ui-spinner .ui-icon-triangle-1-s {\n\t/* need to fix icons sprite */\n\tbackground-position: -65px -16px;\n}\n\n.ui-tabs {\n\tposition: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as \"fixed\") */\n\tpadding: .2em;\n}\n\n.ui-tabs .ui-tabs-nav {\n\tmargin: 0;\n\tpadding: .2em .2em 0;\n}\n\n.ui-tabs .ui-tabs-nav li {\n\tlist-style: none;\n\tfloat: left;\n\tposition: relative;\n\ttop: 0;\n\tmargin: 1px .2em 0 0;\n\tborder-bottom-width: 0;\n\tpadding: 0;\n\twhite-space: nowrap;\n}\n\n.ui-tabs .ui-tabs-nav .ui-tabs-anchor {\n\tfloat: left;\n\tpadding: .5em 1em;\n\ttext-decoration: none;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active {\n\tmargin-bottom: -1px;\n\tpadding-bottom: 1px;\n}\n\n.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {\n\tcursor: text;\n}\n\n.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {\n\tcursor: pointer;\n}\n\n.ui-tabs .ui-tabs-panel {\n\tdisplay: block;\n\tborder-width: 0;\n\tpadding: 1em 1.4em;\n\tbackground: none;\n}\n\n.ui-tooltip {\n\tpadding: 8px;\n\tposition: absolute;\n\tz-index: 9999;\n\tmax-width: 300px;\n\t-webkit-box-shadow: 0 0 5px #AAA;\n\tbox-shadow: 0 0 5px #AAA;\n}\n\nbody .ui-tooltip {\n\tborder-width: 2px;\n}\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1.1em;\n}\n\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: trebuchet ms,tahoma,verdana,arial,sans-serif;\n\tfont-size: 1em;\n}\n\n.ui-widget-content {\n\tborder: 1px solid #DDD;\n\tbackground: #EEE url(\"images/ui-bg_highlight-soft_100_eeeeee_1x100.png\") 50% top repeat-x;\n\tcolor: #333;\n}\n\n.ui-widget-content a {\n\tcolor: #333;\n}\n\n.ui-widget-header {\n\tborder: 1px solid #E78F08;\n\tbackground: #F6A828 url(\"images/ui-bg_gloss-wave_35_f6a828_500x100.png\") 50% 50% repeat-x;\n\tcolor: #FFF;\n\tfont-weight: bold;\n}\n\n.ui-widget-header a {\n\tcolor: #FFF;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default {\n\tborder: 1px solid #CCC;\n\tbackground: #F6F6F6 url(\"images/ui-bg_glass_100_f6f6f6_1x400.png\") 50% 50% repeat-x;\n\tfont-weight: normal;\n\tcolor: #2B2B2B;\n}\n\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited {\n\tcolor: #1C94C4;\n\ttext-decoration: none;\n}\n\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited {\n\tcolor: #C77405;\n\ttext-decoration: none;\n}\n\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active {\n\tborder: 1px solid #C5C5C5;\n\tbackground: #F6F6F6;\n\tfont-weight: normal;\n\tcolor: #454545;\n}\n\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #EB8F00;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #FED22F;\n\tbackground: #FFE45C url(\"images/ui-bg_highlight-soft_75_ffe45c_1x100.png\") 50% top repeat-x;\n\tcolor: #363636;\n}\n\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #363636;\n}\n\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #CD0A0A;\n\tbackground: #B81900 url(\"images/ui-bg_diagonals-thick_18_b81900_40x40.png\") 50% 50% repeat;\n\tcolor: #FFF;\n}\n\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #FFF;\n}\n\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #FFF;\n}\n\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: 0.7;\n\tfilter: alpha(opacity=70); /* support: IE8 */\n\tfont-weight: normal;\n}\n\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: 0.35;\n\tfilter: alpha(opacity=35); /* support: IE8 */\n\tbackground-image: none;\n}\n\n.ui-state-disabled .ui-icon {\n\tfilter: alpha(opacity=35); /* support: IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-widget-header .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffffff_256x240.png\");\n}\n\n.ui-state-default .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-active .ui-icon {\n\tbackground-image: url(\"images/ui-icons_222222_256x240.png\");\n}\n\n.ui-state-highlight .ui-icon {\n\tbackground-image: url(\"images/ui-icons_228ef1_256x240.png\");\n}\n\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(\"images/ui-icons_ffd27a_256x240.png\");\n}\n\n/* positioning */\n.ui-icon-blank {\n\tbackground-position: 16px 16px;\n}\n\n.ui-icon-carat-1-n {\n\tbackground-position: 0 0;\n}\n\n.ui-icon-carat-1-ne {\n\tbackground-position: -16px 0;\n}\n\n.ui-icon-carat-1-e {\n\tbackground-position: -32px 0;\n}\n\n.ui-icon-carat-1-se {\n\tbackground-position: -48px 0;\n}\n\n.ui-icon-carat-1-s {\n\tbackground-position: -64px 0;\n}\n\n.ui-icon-carat-1-sw {\n\tbackground-position: -80px 0;\n}\n\n.ui-icon-carat-1-w {\n\tbackground-position: -96px 0;\n}\n\n.ui-icon-carat-1-nw {\n\tbackground-position: -112px 0;\n}\n\n.ui-icon-carat-2-n-s {\n\tbackground-position: -128px 0;\n}\n\n.ui-icon-carat-2-e-w {\n\tbackground-position: -144px 0;\n}\n\n.ui-icon-triangle-1-n {\n\tbackground-position: 0 -16px;\n}\n\n.ui-icon-triangle-1-ne {\n\tbackground-position: -16px -16px;\n}\n\n.ui-icon-triangle-1-e {\n\tbackground-position: -32px -16px;\n}\n\n.ui-icon-triangle-1-se {\n\tbackground-position: -48px -16px;\n}\n\n.ui-icon-triangle-1-s {\n\tbackground-position: -64px -16px;\n}\n\n.ui-icon-triangle-1-sw {\n\tbackground-position: -80px -16px;\n}\n\n.ui-icon-triangle-1-w {\n\tbackground-position: -96px -16px;\n}\n\n.ui-icon-triangle-1-nw {\n\tbackground-position: -112px -16px;\n}\n\n.ui-icon-triangle-2-n-s {\n\tbackground-position: -128px -16px;\n}\n\n.ui-icon-triangle-2-e-w {\n\tbackground-position: -144px -16px;\n}\n\n.ui-icon-arrow-1-n {\n\tbackground-position: 0 -32px;\n}\n\n.ui-icon-arrow-1-ne {\n\tbackground-position: -16px -32px;\n}\n\n.ui-icon-arrow-1-e {\n\tbackground-position: -32px -32px;\n}\n\n.ui-icon-arrow-1-se {\n\tbackground-position: -48px -32px;\n}\n\n.ui-icon-arrow-1-s {\n\tbackground-position: -64px -32px;\n}\n\n.ui-icon-arrow-1-sw {\n\tbackground-position: -80px -32px;\n}\n\n.ui-icon-arrow-1-w {\n\tbackground-position: -96px -32px;\n}\n\n.ui-icon-arrow-1-nw {\n\tbackground-position: -112px -32px;\n}\n\n.ui-icon-arrow-2-n-s {\n\tbackground-position: -128px -32px;\n}\n\n.ui-icon-arrow-2-ne-sw {\n\tbackground-position: -144px -32px;\n}\n\n.ui-icon-arrow-2-e-w {\n\tbackground-position: -160px -32px;\n}\n\n.ui-icon-arrow-2-se-nw {\n\tbackground-position: -176px -32px;\n}\n\n.ui-icon-arrowstop-1-n {\n\tbackground-position: -192px -32px;\n}\n\n.ui-icon-arrowstop-1-e {\n\tbackground-position: -208px -32px;\n}\n\n.ui-icon-arrowstop-1-s {\n\tbackground-position: -224px -32px;\n}\n\n.ui-icon-arrowstop-1-w {\n\tbackground-position: -240px -32px;\n}\n\n.ui-icon-arrowthick-1-n {\n\tbackground-position: 0 -48px;\n}\n\n.ui-icon-arrowthick-1-ne {\n\tbackground-position: -16px -48px;\n}\n\n.ui-icon-arrowthick-1-e {\n\tbackground-position: -32px -48px;\n}\n\n.ui-icon-arrowthick-1-se {\n\tbackground-position: -48px -48px;\n}\n\n.ui-icon-arrowthick-1-s {\n\tbackground-position: -64px -48px;\n}\n\n.ui-icon-arrowthick-1-sw {\n\tbackground-position: -80px -48px;\n}\n\n.ui-icon-arrowthick-1-w {\n\tbackground-position: -96px -48px;\n}\n\n.ui-icon-arrowthick-1-nw {\n\tbackground-position: -112px -48px;\n}\n\n.ui-icon-arrowthick-2-n-s {\n\tbackground-position: -128px -48px;\n}\n\n.ui-icon-arrowthick-2-ne-sw {\n\tbackground-position: -144px -48px;\n}\n\n.ui-icon-arrowthick-2-e-w {\n\tbackground-position: -160px -48px;\n}\n\n.ui-icon-arrowthick-2-se-nw {\n\tbackground-position: -176px -48px;\n}\n\n.ui-icon-arrowthickstop-1-n {\n\tbackground-position: -192px -48px;\n}\n\n.ui-icon-arrowthickstop-1-e {\n\tbackground-position: -208px -48px;\n}\n\n.ui-icon-arrowthickstop-1-s {\n\tbackground-position: -224px -48px;\n}\n\n.ui-icon-arrowthickstop-1-w {\n\tbackground-position: -240px -48px;\n}\n\n.ui-icon-arrowreturnthick-1-w {\n\tbackground-position: 0 -64px;\n}\n\n.ui-icon-arrowreturnthick-1-n {\n\tbackground-position: -16px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-e {\n\tbackground-position: -32px -64px;\n}\n\n.ui-icon-arrowreturnthick-1-s {\n\tbackground-position: -48px -64px;\n}\n\n.ui-icon-arrowreturn-1-w {\n\tbackground-position: -64px -64px;\n}\n\n.ui-icon-arrowreturn-1-n {\n\tbackground-position: -80px -64px;\n}\n\n.ui-icon-arrowreturn-1-e {\n\tbackground-position: -96px -64px;\n}\n\n.ui-icon-arrowreturn-1-s {\n\tbackground-position: -112px -64px;\n}\n\n.ui-icon-arrowrefresh-1-w {\n\tbackground-position: -128px -64px;\n}\n\n.ui-icon-arrowrefresh-1-n {\n\tbackground-position: -144px -64px;\n}\n\n.ui-icon-arrowrefresh-1-e {\n\tbackground-position: -160px -64px;\n}\n\n.ui-icon-arrowrefresh-1-s {\n\tbackground-position: -176px -64px;\n}\n\n.ui-icon-arrow-4 {\n\tbackground-position: 0 -80px;\n}\n\n.ui-icon-arrow-4-diag {\n\tbackground-position: -16px -80px;\n}\n\n.ui-icon-extlink {\n\tbackground-position: -32px -80px;\n}\n\n.ui-icon-newwin {\n\tbackground-position: -48px -80px;\n}\n\n.ui-icon-refresh {\n\tbackground-position: -64px -80px;\n}\n\n.ui-icon-shuffle {\n\tbackground-position: -80px -80px;\n}\n\n.ui-icon-transfer-e-w {\n\tbackground-position: -96px -80px;\n}\n\n.ui-icon-transferthick-e-w {\n\tbackground-position: -112px -80px;\n}\n\n.ui-icon-folder-collapsed {\n\tbackground-position: 0 -96px;\n}\n\n.ui-icon-folder-open {\n\tbackground-position: -16px -96px;\n}\n\n.ui-icon-document {\n\tbackground-position: -32px -96px;\n}\n\n.ui-icon-document-b {\n\tbackground-position: -48px -96px;\n}\n\n.ui-icon-note {\n\tbackground-position: -64px -96px;\n}\n\n.ui-icon-mail-closed {\n\tbackground-position: -80px -96px;\n}\n\n.ui-icon-mail-open {\n\tbackground-position: -96px -96px;\n}\n\n.ui-icon-suitcase {\n\tbackground-position: -112px -96px;\n}\n\n.ui-icon-comment {\n\tbackground-position: -128px -96px;\n}\n\n.ui-icon-person {\n\tbackground-position: -144px -96px;\n}\n\n.ui-icon-print {\n\tbackground-position: -160px -96px;\n}\n\n.ui-icon-trash {\n\tbackground-position: -176px -96px;\n}\n\n.ui-icon-locked {\n\tbackground-position: -192px -96px;\n}\n\n.ui-icon-unlocked {\n\tbackground-position: -208px -96px;\n}\n\n.ui-icon-bookmark {\n\tbackground-position: -224px -96px;\n}\n\n.ui-icon-tag {\n\tbackground-position: -240px -96px;\n}\n\n.ui-icon-home {\n\tbackground-position: 0 -112px;\n}\n\n.ui-icon-flag {\n\tbackground-position: -16px -112px;\n}\n\n.ui-icon-calendar {\n\tbackground-position: -32px -112px;\n}\n\n.ui-icon-cart {\n\tbackground-position: -48px -112px;\n}\n\n.ui-icon-pencil {\n\tbackground-position: -64px -112px;\n}\n\n.ui-icon-clock {\n\tbackground-position: -80px -112px;\n}\n\n.ui-icon-disk {\n\tbackground-position: -96px -112px;\n}\n\n.ui-icon-calculator {\n\tbackground-position: -112px -112px;\n}\n\n.ui-icon-zoomin {\n\tbackground-position: -128px -112px;\n}\n\n.ui-icon-zoomout {\n\tbackground-position: -144px -112px;\n}\n\n.ui-icon-search {\n\tbackground-position: -160px -112px;\n}\n\n.ui-icon-wrench {\n\tbackground-position: -176px -112px;\n}\n\n.ui-icon-gear {\n\tbackground-position: -192px -112px;\n}\n\n.ui-icon-heart {\n\tbackground-position: -208px -112px;\n}\n\n.ui-icon-star {\n\tbackground-position: -224px -112px;\n}\n\n.ui-icon-link {\n\tbackground-position: -240px -112px;\n}\n\n.ui-icon-cancel {\n\tbackground-position: 0 -128px;\n}\n\n.ui-icon-plus {\n\tbackground-position: -16px -128px;\n}\n\n.ui-icon-plusthick {\n\tbackground-position: -32px -128px;\n}\n\n.ui-icon-minus {\n\tbackground-position: -48px -128px;\n}\n\n.ui-icon-minusthick {\n\tbackground-position: -64px -128px;\n}\n\n.ui-icon-close {\n\tbackground-position: -80px -128px;\n}\n\n.ui-icon-closethick {\n\tbackground-position: -96px -128px;\n}\n\n.ui-icon-key {\n\tbackground-position: -112px -128px;\n}\n\n.ui-icon-lightbulb {\n\tbackground-position: -128px -128px;\n}\n\n.ui-icon-scissors {\n\tbackground-position: -144px -128px;\n}\n\n.ui-icon-clipboard {\n\tbackground-position: -160px -128px;\n}\n\n.ui-icon-copy {\n\tbackground-position: -176px -128px;\n}\n\n.ui-icon-contact {\n\tbackground-position: -192px -128px;\n}\n\n.ui-icon-image {\n\tbackground-position: -208px -128px;\n}\n\n.ui-icon-video {\n\tbackground-position: -224px -128px;\n}\n\n.ui-icon-script {\n\tbackground-position: -240px -128px;\n}\n\n.ui-icon-alert {\n\tbackground-position: 0 -144px;\n}\n\n.ui-icon-info {\n\tbackground-position: -16px -144px;\n}\n\n.ui-icon-notice {\n\tbackground-position: -32px -144px;\n}\n\n.ui-icon-help {\n\tbackground-position: -48px -144px;\n}\n\n.ui-icon-check {\n\tbackground-position: -64px -144px;\n}\n\n.ui-icon-bullet {\n\tbackground-position: -80px -144px;\n}\n\n.ui-icon-radio-on {\n\tbackground-position: -96px -144px;\n}\n\n.ui-icon-radio-off {\n\tbackground-position: -112px -144px;\n}\n\n.ui-icon-pin-w {\n\tbackground-position: -128px -144px;\n}\n\n.ui-icon-pin-s {\n\tbackground-position: -144px -144px;\n}\n\n.ui-icon-play {\n\tbackground-position: 0 -160px;\n}\n\n.ui-icon-pause {\n\tbackground-position: -16px -160px;\n}\n\n.ui-icon-seek-next {\n\tbackground-position: -32px -160px;\n}\n\n.ui-icon-seek-prev {\n\tbackground-position: -48px -160px;\n}\n\n.ui-icon-seek-end {\n\tbackground-position: -64px -160px;\n}\n\n.ui-icon-seek-start {\n\tbackground-position: -80px -160px;\n}\n\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first {\n\tbackground-position: -80px -160px;\n}\n\n.ui-icon-stop {\n\tbackground-position: -96px -160px;\n}\n\n.ui-icon-eject {\n\tbackground-position: -112px -160px;\n}\n\n.ui-icon-volume-off {\n\tbackground-position: -128px -160px;\n}\n\n.ui-icon-volume-on {\n\tbackground-position: -144px -160px;\n}\n\n.ui-icon-power {\n\tbackground-position: 0 -176px;\n}\n\n.ui-icon-signal-diag {\n\tbackground-position: -16px -176px;\n}\n\n.ui-icon-signal {\n\tbackground-position: -32px -176px;\n}\n\n.ui-icon-battery-0 {\n\tbackground-position: -48px -176px;\n}\n\n.ui-icon-battery-1 {\n\tbackground-position: -64px -176px;\n}\n\n.ui-icon-battery-2 {\n\tbackground-position: -80px -176px;\n}\n\n.ui-icon-battery-3 {\n\tbackground-position: -96px -176px;\n}\n\n.ui-icon-circle-plus {\n\tbackground-position: 0 -192px;\n}\n\n.ui-icon-circle-minus {\n\tbackground-position: -16px -192px;\n}\n\n.ui-icon-circle-close {\n\tbackground-position: -32px -192px;\n}\n\n.ui-icon-circle-triangle-e {\n\tbackground-position: -48px -192px;\n}\n\n.ui-icon-circle-triangle-s {\n\tbackground-position: -64px -192px;\n}\n\n.ui-icon-circle-triangle-w {\n\tbackground-position: -80px -192px;\n}\n\n.ui-icon-circle-triangle-n {\n\tbackground-position: -96px -192px;\n}\n\n.ui-icon-circle-arrow-e {\n\tbackground-position: -112px -192px;\n}\n\n.ui-icon-circle-arrow-s {\n\tbackground-position: -128px -192px;\n}\n\n.ui-icon-circle-arrow-w {\n\tbackground-position: -144px -192px;\n}\n\n.ui-icon-circle-arrow-n {\n\tbackground-position: -160px -192px;\n}\n\n.ui-icon-circle-zoomin {\n\tbackground-position: -176px -192px;\n}\n\n.ui-icon-circle-zoomout {\n\tbackground-position: -192px -192px;\n}\n\n.ui-icon-circle-check {\n\tbackground-position: -208px -192px;\n}\n\n.ui-icon-circlesmall-plus {\n\tbackground-position: 0 -208px;\n}\n\n.ui-icon-circlesmall-minus {\n\tbackground-position: -16px -208px;\n}\n\n.ui-icon-circlesmall-close {\n\tbackground-position: -32px -208px;\n}\n\n.ui-icon-squaresmall-plus {\n\tbackground-position: -48px -208px;\n}\n\n.ui-icon-squaresmall-minus {\n\tbackground-position: -64px -208px;\n}\n\n.ui-icon-squaresmall-close {\n\tbackground-position: -80px -208px;\n}\n\n.ui-icon-grip-dotted-vertical {\n\tbackground-position: 0 -224px;\n}\n\n.ui-icon-grip-dotted-horizontal {\n\tbackground-position: -16px -224px;\n}\n\n.ui-icon-grip-solid-vertical {\n\tbackground-position: -32px -224px;\n}\n\n.ui-icon-grip-solid-horizontal {\n\tbackground-position: -48px -224px;\n}\n\n.ui-icon-gripsmall-diagonal-se {\n\tbackground-position: -64px -224px;\n}\n\n.ui-icon-grip-diagonal-se {\n\tbackground-position: -80px -224px;\n}\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 4px;\n}\n\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 4px;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #666 url(\"images/ui-bg_diagonals-thick_20_666666_40x40.png\") 50% 50% repeat;\n\topacity: 0.5;\n\tfilter: alpha(opacity=50); /* support: IE8 */\n}\n\n.ui-widget-shadow {\n\tmargin: -5px 0 0 -5px;\n\tpadding: 5px;\n\tbackground: #000;\n\topacity: 0.2;\n\tfilter: alpha(opacity=20); /* support: IE8 */\n\tborder-radius: 5px;\n}"]}
includes/{jquery.blockUI-1-16-26.min.js → jquery.blockUI-1-16-28.min.js} RENAMED
File without changes
includes/labelauty/{jquery-labelauty-1-16-26.min.css → jquery-labelauty-1-16-28.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  /* * LABELAUTY jQuery Plugin Styles * * @file: jquery-labelauty.css * @author: Francisco Neves (@fntneves) * @site: www.francisconeves.com * @license: MIT License */input.labelauty+label ::selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty{display:none !important}input.labelauty+label{display:inline-block;font-size:13px;padding:10px;background-color:#efefef;color:black;cursor:pointer;margin-top:10px;margin-right:10px;width:96%;border-radius:3px 3px 3px 3px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;transition:background-color .25s;-moz-transition:background-color .25s;-webkit-transition:background-color .25s;-o-transition:background-color .25s;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}input.labelauty+label>span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked{display:inline-block;line-height:1.1;vertical-align:middle}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:inline-block;width:30px;height:30px;vertical-align:middle;background-repeat:no-repeat;background-position:left center;background-size:contain;transition:background-image .5s linear;-moz-transition:background-image .5s linear;-webkit-transition:background-image .5s linear;-o-transition:background-image .5s linear}input.labelauty+label>span.labelauty-unchecked-image+span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked-image+span.labelauty-checked{margin-left:7px}input.labelauty:not(:checked):not([disabled])+label:hover{background-color:#eaeaea;color:#a7a7a7}input.labelauty:not(:checked)+label>span.labelauty-checked-image{display:none}input.labelauty:not(:checked)+label>span.labelauty-checked{display:none}input.labelauty:checked+label{background-color:#3498db;color:#fff}input.labelauty:checked:not([disabled])+label:hover{background-color:#72c5fd}input.labelauty:checked+label>span.labelauty-unchecked-image{display:none}input.labelauty:checked+label>span.labelauty-unchecked{display:none}input.labelauty:checked+label>span.labelauty-checked{display:inline-block}input.labelauty.no-label:checked+label>span.labelauty-checked{display:block}input.labelauty[disabled]+label{opacity:.5}input.labelauty+label>span.labelauty-unchecked-image{background-image:url(images/icons/folder.png)}input.labelauty+label>span.labelauty-checked-image{background-image:url(images/icons/folder.png)}input.labelauty.email+label>span.labelauty-checked-image,input.labelauty.email+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/email.png)}input.labelauty.cloudfiles+label>span.labelauty-checked-image,input.labelauty.cloudfiles+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/cloudfiles.png)}input.labelauty.dreamobjects+label>span.labelauty-checked-image,input.labelauty.dreamobjects+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dreamobjects.png)}input.labelauty.dropbox+label>span.labelauty-checked-image,input.labelauty.dropbox+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dropbox.png)}input.labelauty.ftp+label>span.labelauty-checked-image,input.labelauty.ftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.sftp+label>span.labelauty-checked-image,input.labelauty.sftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.googledrive+label>span.labelauty-checked-image,input.labelauty.googledrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googledrive.png)}input.labelauty.s3generic+label>span.labelauty-checked-image,input.labelauty.s3generic+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.onedrive+label>span.labelauty-checked-image,input.labelauty.onedrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/onedrive.png)}input.labelauty.azure+label>span.labelauty-checked-image,input.labelauty.azure+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/azure.png)}input.labelauty.backblaze+label>span.labelauty-checked-image,input.labelauty.backblaze+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/backblaze.png)}input.labelauty.openstack+label>span.labelauty-checked-image,input.labelauty.openstack+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/openstack.png)}input.labelauty.s3+label>span.labelauty-checked-image,input.labelauty.s3+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/s3.png)}input.labelauty.updraftvault+label>span.labelauty-checked-image,input.labelauty.updraftvault+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/updraftvault.png)}input.labelauty.webdav+label>span.labelauty-checked-image,input.labelauty.webdav+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/webdav.png)}input.labelauty.googlecloud+label>span.labelauty-checked-image,input.labelauty.googlecloud+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googlecloud.png)}#remote-storage-container{height:auto;width:auto;column-count:2}@media only screen and (min-width:480px){#remote-storage-container{height:auto;width:auto}}@media only screen and (min-width:1000px){#remote-storage-container{column-count:3;height:auto;width:auto}}@media only screen and (max-width:480px){input.labelauty+label{text-align:center}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:block;margin:0 auto;margin-bottom:4px}}
2
- /*# sourceMappingURL=jquery-labelauty-1-16-26.min.css.map */
1
  /* * LABELAUTY jQuery Plugin Styles * * @file: jquery-labelauty.css * @author: Francisco Neves (@fntneves) * @site: www.francisconeves.com * @license: MIT License */input.labelauty+label ::selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty{display:none !important}input.labelauty+label{display:inline-block;font-size:13px;padding:10px;background-color:#efefef;color:black;cursor:pointer;margin-top:10px;margin-right:10px;width:96%;border-radius:3px 3px 3px 3px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;transition:background-color .25s;-moz-transition:background-color .25s;-webkit-transition:background-color .25s;-o-transition:background-color .25s;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}input.labelauty+label>span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked{display:inline-block;line-height:1.1;vertical-align:middle}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:inline-block;width:30px;height:30px;vertical-align:middle;background-repeat:no-repeat;background-position:left center;background-size:contain;transition:background-image .5s linear;-moz-transition:background-image .5s linear;-webkit-transition:background-image .5s linear;-o-transition:background-image .5s linear}input.labelauty+label>span.labelauty-unchecked-image+span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked-image+span.labelauty-checked{margin-left:7px}input.labelauty:not(:checked):not([disabled])+label:hover{background-color:#eaeaea;color:#a7a7a7}input.labelauty:not(:checked)+label>span.labelauty-checked-image{display:none}input.labelauty:not(:checked)+label>span.labelauty-checked{display:none}input.labelauty:checked+label{background-color:#3498db;color:#fff}input.labelauty:checked:not([disabled])+label:hover{background-color:#72c5fd}input.labelauty:checked+label>span.labelauty-unchecked-image{display:none}input.labelauty:checked+label>span.labelauty-unchecked{display:none}input.labelauty:checked+label>span.labelauty-checked{display:inline-block}input.labelauty.no-label:checked+label>span.labelauty-checked{display:block}input.labelauty[disabled]+label{opacity:.5}input.labelauty+label>span.labelauty-unchecked-image{background-image:url(images/icons/folder.png)}input.labelauty+label>span.labelauty-checked-image{background-image:url(images/icons/folder.png)}input.labelauty.email+label>span.labelauty-checked-image,input.labelauty.email+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/email.png)}input.labelauty.cloudfiles+label>span.labelauty-checked-image,input.labelauty.cloudfiles+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/cloudfiles.png)}input.labelauty.dreamobjects+label>span.labelauty-checked-image,input.labelauty.dreamobjects+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dreamobjects.png)}input.labelauty.dropbox+label>span.labelauty-checked-image,input.labelauty.dropbox+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dropbox.png)}input.labelauty.ftp+label>span.labelauty-checked-image,input.labelauty.ftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.sftp+label>span.labelauty-checked-image,input.labelauty.sftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.googledrive+label>span.labelauty-checked-image,input.labelauty.googledrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googledrive.png)}input.labelauty.s3generic+label>span.labelauty-checked-image,input.labelauty.s3generic+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.onedrive+label>span.labelauty-checked-image,input.labelauty.onedrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/onedrive.png)}input.labelauty.azure+label>span.labelauty-checked-image,input.labelauty.azure+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/azure.png)}input.labelauty.backblaze+label>span.labelauty-checked-image,input.labelauty.backblaze+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/backblaze.png)}input.labelauty.openstack+label>span.labelauty-checked-image,input.labelauty.openstack+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/openstack.png)}input.labelauty.s3+label>span.labelauty-checked-image,input.labelauty.s3+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/s3.png)}input.labelauty.updraftvault+label>span.labelauty-checked-image,input.labelauty.updraftvault+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/updraftvault.png)}input.labelauty.webdav+label>span.labelauty-checked-image,input.labelauty.webdav+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/webdav.png)}input.labelauty.googlecloud+label>span.labelauty-checked-image,input.labelauty.googlecloud+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googlecloud.png)}#remote-storage-container{height:auto;width:auto;column-count:2}@media only screen and (min-width:480px){#remote-storage-container{height:auto;width:auto}}@media only screen and (min-width:1000px){#remote-storage-container{column-count:3;height:auto;width:auto}}@media only screen and (max-width:480px){input.labelauty+label{text-align:center}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:block;margin:0 auto;margin-bottom:4px}}
2
+ /*# sourceMappingURL=jquery-labelauty-1-16-28.min.css.map */
includes/labelauty/{jquery-labelauty-1-16-26.min.css.map → jquery-labelauty-1-16-28.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["includes/labelauty/jquery-labelauty.css"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAEH,uCAAuC;AACvC,sCAAsC,yCAAyC,EAAE;AACjF,2CAA2C,yCAAyC,EAAE;;AAEtF,8CAA8C;AAC9C,kBAAkB,yBAAyB,EAAE;;AAE7C;;;GAGG;AACH;;CAEC,sBAAsB;CACtB,gBAAgB;CAChB,cAAc;CACd,0BAA0B;CAC1B,aAAa;CACb,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB,WAAW;;CAEX,+BAA+B;CAC/B,oCAAoC;CACpC,uCAAuC;;;CAGvC,mCAAmC;CACnC,wCAAwC;CACxC,2CAA2C;CAC3C,sCAAsC;;CAEtC,uBAAuB;CACvB,yBAAyB;CACzB,0BAA0B;CAC1B,qBAAqB;CACrB;;AAED,+BAA+B;;AAE/B;;;CAGC,sBAAsB;CACtB,iBAAiB;CACjB,uBAAuB;CACvB;;AAED,gCAAgC;;AAEhC;;;CAGC,sBAAsB;CACtB,YAAY;CACZ,aAAa;CACb,uBAAuB;CACvB,6BAA6B;CAC7B,iCAAiC;CACjC,yBAAyB;;CAEzB,yCAAyC;CACzC,8CAA8C;CAC9C,iDAAiD;CACjD,4CAA4C;CAC5C;;AAED,2DAA2D;AAC3D;;;CAGC,iBAAiB;CACjB;;AAED,sBAAsB;AACtB;;CAEC,0BAA0B;CAC1B,eAAe;CACf;AACD;;CAEC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,kBAAkB;AAClB;;CAEC,0BAA0B;CAC1B,eAAe;CACf;;AAED;;CAEC,0BAA0B;CAC1B;AACD;;CAEC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED;;CAEC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED,mBAAmB;AACnB;;CAEC,aAAa;CACb;;AAED,4CAA4C;AAC5C;;CAEC,iDAAiD;CACjD;;AAED;;CAEC,iDAAiD;CACjD;;AAED;;CAEC,sDAAsD;CACtD;;AAED;;CAEC,2DAA2D;CAC3D;;AAED;;CAEC,6DAA6D;CAC7D;;AAED;;CAEC,wDAAwD;CACxD;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,yDAAyD;CACzD;;AAED;;CAEC,sDAAsD;CACtD;;AAED;;CAEC,0DAA0D;CAC1D;;AAED;;CAEC,0DAA0D;CAC1D;;AAED;;CAEC,mDAAmD;CACnD;;AAED;;CAEC,6DAA6D;CAC7D;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;IACI,aAAa;IACb,YAAY;CAGf,gBAAgB;CAChB;;AAED;;CAEC;EACC,aAAa;EACb,YAAY;EACZ;;CAED;;AAED;;CAEC;EAGC,gBAAgB;EAChB,aAAa;EACb,YAAY;EACZ;;CAED;;AAED;;CAEC;EACC,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf,eAAe;EACf,mBAAmB;EACnB;;CAED","file":"jquery-labelauty-1-16-26.min.css","sourcesContent":["/*!\n * LABELAUTY jQuery Plugin Styles\n *\n * @file: jquery-labelauty.css\n * @author: Francisco Neves (@fntneves)\n * @site: www.francisconeves.com\n * @license: MIT License\n */\n\n/* Prevent text and blocks selection */\ninput.labelauty + label ::selection { background-color: rgba(255, 255, 255, 0); }\ninput.labelauty + label ::-moz-selection { background-color: rgba(255, 255, 255, 0); }\n\n/* Hide original checkboxes. They are ugly! */\ninput.labelauty { display: none !important; }\n\n/*\n * Let's style the input\n * Feel free to work with it as you wish!\n */\ninput.labelauty + label\n{\n\tdisplay: inline-block;\n\tfont-size: 13px;\n\tpadding: 10px;\n\tbackground-color: #efefef;\n\tcolor: black;\n\tcursor: pointer;\n\tmargin-top: 10px;\n\tmargin-right: 10px;\n\twidth: 96%;\n\n\tborder-radius: 3px 3px 3px 3px;\n\t-moz-border-radius: 3px 3px 3px 3px;\n\t-webkit-border-radius: 3px 3px 3px 3px;\n\n\n\ttransition: background-color 0.25s;\n\t-moz-transition: background-color 0.25s;\n\t-webkit-transition: background-color 0.25s;\n\t-o-transition: background-color 0.25s;\n\n\t-moz-user-select: none;\n\t-khtml-user-select: none;\n\t-webkit-user-select: none;\n\t-o-user-select: none;\n}\n\n/* Stylish text inside label */\n\ninput.labelauty + label > span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n\tline-height: 1.1;\n\tvertical-align: middle;\n}\n\n/* Stylish icons inside label */\n\ninput.labelauty + label > span.labelauty-unchecked-image,\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tdisplay: inline-block;\n\twidth: 30px;\n\theight: 30px;\n\tvertical-align: middle;\n\tbackground-repeat: no-repeat;\n\tbackground-position: left center;\n\tbackground-size: contain;\n\n\ttransition: background-image 0.5s linear;\n\t-moz-transition: background-image 0.5s linear;\n\t-webkit-transition: background-image 0.5s linear;\n\t-o-transition: background-image 0.5s linear;\n}\n\n/* When there's a label, add a little margin to the left */\ninput.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked-image + span.labelauty-checked\n{\n\tmargin-left: 7px;\n}\n\n/* When not Checked */\ninput.labelauty:not(:checked):not([disabled]) + label:hover\n{\n\tbackground-color: #eaeaea;\n\tcolor: #a7a7a7;\n}\ninput.labelauty:not(:checked) + label > span.labelauty-checked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:not(:checked) + label > span.labelauty-checked\n{\n\tdisplay: none;\n}\n\n/* When Checked */\ninput.labelauty:checked + label\n{\n\tbackground-color: #3498db;\n\tcolor: #ffffff;\n}\n\ninput.labelauty:checked:not([disabled]) + label:hover\n{\n\tbackground-color: #72c5fd;\n}\ninput.labelauty:checked + label > span.labelauty-unchecked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-unchecked\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n}\n\ninput.labelauty.no-label:checked + label > span.labelauty-checked\n{\n\tdisplay: block;\n}\n\n/* When Disabled */\ninput.labelauty[disabled] + label\n{\n\topacity: 0.5;\n}\n\n/* Add a background to (un)checked images */\ninput.labelauty + label > span.labelauty-unchecked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty.email + label > span.labelauty-checked-image,\ninput.labelauty.email + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/email.png );\n}\n\ninput.labelauty.cloudfiles + label > span.labelauty-checked-image,\ninput.labelauty.cloudfiles + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/cloudfiles.png );\n}\n\ninput.labelauty.dreamobjects + label > span.labelauty-checked-image,\ninput.labelauty.dreamobjects + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dreamobjects.png );\n}\n\ninput.labelauty.dropbox + label > span.labelauty-checked-image,\ninput.labelauty.dropbox + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dropbox.png );\n}\n\ninput.labelauty.ftp + label > span.labelauty-checked-image,\ninput.labelauty.ftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.sftp + label > span.labelauty-checked-image,\ninput.labelauty.sftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.googledrive + label > span.labelauty-checked-image,\ninput.labelauty.googledrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googledrive.png );\n}\n\ninput.labelauty.s3generic + label > span.labelauty-checked-image,\ninput.labelauty.s3generic + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.onedrive + label > span.labelauty-checked-image,\ninput.labelauty.onedrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/onedrive.png );\n}\n\ninput.labelauty.azure + label > span.labelauty-checked-image,\ninput.labelauty.azure + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/azure.png );\n}\n\ninput.labelauty.backblaze + label > span.labelauty-checked-image,\ninput.labelauty.backblaze + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/backblaze.png );\n}\n\ninput.labelauty.openstack + label > span.labelauty-checked-image,\ninput.labelauty.openstack + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/openstack.png );\n}\n\ninput.labelauty.s3 + label > span.labelauty-checked-image,\ninput.labelauty.s3 + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/s3.png );\n}\n\ninput.labelauty.updraftvault + label > span.labelauty-checked-image,\ninput.labelauty.updraftvault + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/updraftvault.png );\n}\n\ninput.labelauty.webdav + label > span.labelauty-checked-image,\ninput.labelauty.webdav + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/webdav.png );\n}\n\ninput.labelauty.googlecloud + label > span.labelauty-checked-image,\ninput.labelauty.googlecloud + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googlecloud.png );\n}\n\n#remote-storage-container {\n height: auto;\n width: auto;\n\t-moz-column-count: 2;\n\t-webkit-column-count: 2;\n\tcolumn-count: 2;\n}\n\n@media only screen and (min-width: 480px) {\n\n\t#remote-storage-container {\n\t\theight: auto;\n\t\twidth: auto;\n\t}\n\n}\n\n@media only screen and (min-width: 1000px) {\n\n\t#remote-storage-container {\n\t\t-moz-column-count: 3;\n\t\t-webkit-column-count: 3;\n\t\tcolumn-count: 3;\n\t\theight: auto;\n\t\twidth: auto;\n\t}\n\n}\n\n@media only screen and (max-width: 480px) {\n\n\tinput.labelauty + label {\n\t\ttext-align: center;\n\t}\n\n\tinput.labelauty + label > span.labelauty-unchecked-image, input.labelauty + label > span.labelauty-checked-image {\n\t\tdisplay: block;\n\t\tmargin: 0 auto;\n\t\tmargin-bottom: 4px;\n\t}\n\n}"]}
1
+ {"version":3,"sources":["includes/labelauty/jquery-labelauty.css"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAEH,uCAAuC;AACvC,sCAAsC,yCAAyC,EAAE;AACjF,2CAA2C,yCAAyC,EAAE;;AAEtF,8CAA8C;AAC9C,kBAAkB,yBAAyB,EAAE;;AAE7C;;;GAGG;AACH;;CAEC,sBAAsB;CACtB,gBAAgB;CAChB,cAAc;CACd,0BAA0B;CAC1B,aAAa;CACb,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB,WAAW;;CAEX,+BAA+B;CAC/B,oCAAoC;CACpC,uCAAuC;;;CAGvC,mCAAmC;CACnC,wCAAwC;CACxC,2CAA2C;CAC3C,sCAAsC;;CAEtC,uBAAuB;CACvB,yBAAyB;CACzB,0BAA0B;CAC1B,qBAAqB;CACrB;;AAED,+BAA+B;;AAE/B;;;CAGC,sBAAsB;CACtB,iBAAiB;CACjB,uBAAuB;CACvB;;AAED,gCAAgC;;AAEhC;;;CAGC,sBAAsB;CACtB,YAAY;CACZ,aAAa;CACb,uBAAuB;CACvB,6BAA6B;CAC7B,iCAAiC;CACjC,yBAAyB;;CAEzB,yCAAyC;CACzC,8CAA8C;CAC9C,iDAAiD;CACjD,4CAA4C;CAC5C;;AAED,2DAA2D;AAC3D;;;CAGC,iBAAiB;CACjB;;AAED,sBAAsB;AACtB;;CAEC,0BAA0B;CAC1B,eAAe;CACf;AACD;;CAEC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,kBAAkB;AAClB;;CAEC,0BAA0B;CAC1B,eAAe;CACf;;AAED;;CAEC,0BAA0B;CAC1B;AACD;;CAEC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED;;CAEC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED,mBAAmB;AACnB;;CAEC,aAAa;CACb;;AAED,4CAA4C;AAC5C;;CAEC,iDAAiD;CACjD;;AAED;;CAEC,iDAAiD;CACjD;;AAED;;CAEC,sDAAsD;CACtD;;AAED;;CAEC,2DAA2D;CAC3D;;AAED;;CAEC,6DAA6D;CAC7D;;AAED;;CAEC,wDAAwD;CACxD;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,yDAAyD;CACzD;;AAED;;CAEC,sDAAsD;CACtD;;AAED;;CAEC,0DAA0D;CAC1D;;AAED;;CAEC,0DAA0D;CAC1D;;AAED;;CAEC,mDAAmD;CACnD;;AAED;;CAEC,6DAA6D;CAC7D;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;IACI,aAAa;IACb,YAAY;CAGf,gBAAgB;CAChB;;AAED;;CAEC;EACC,aAAa;EACb,YAAY;EACZ;;CAED;;AAED;;CAEC;EAGC,gBAAgB;EAChB,aAAa;EACb,YAAY;EACZ;;CAED;;AAED;;CAEC;EACC,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf,eAAe;EACf,mBAAmB;EACnB;;CAED","file":"jquery-labelauty-1-16-28.min.css","sourcesContent":["/*!\n * LABELAUTY jQuery Plugin Styles\n *\n * @file: jquery-labelauty.css\n * @author: Francisco Neves (@fntneves)\n * @site: www.francisconeves.com\n * @license: MIT License\n */\n\n/* Prevent text and blocks selection */\ninput.labelauty + label ::selection { background-color: rgba(255, 255, 255, 0); }\ninput.labelauty + label ::-moz-selection { background-color: rgba(255, 255, 255, 0); }\n\n/* Hide original checkboxes. They are ugly! */\ninput.labelauty { display: none !important; }\n\n/*\n * Let's style the input\n * Feel free to work with it as you wish!\n */\ninput.labelauty + label\n{\n\tdisplay: inline-block;\n\tfont-size: 13px;\n\tpadding: 10px;\n\tbackground-color: #efefef;\n\tcolor: black;\n\tcursor: pointer;\n\tmargin-top: 10px;\n\tmargin-right: 10px;\n\twidth: 96%;\n\n\tborder-radius: 3px 3px 3px 3px;\n\t-moz-border-radius: 3px 3px 3px 3px;\n\t-webkit-border-radius: 3px 3px 3px 3px;\n\n\n\ttransition: background-color 0.25s;\n\t-moz-transition: background-color 0.25s;\n\t-webkit-transition: background-color 0.25s;\n\t-o-transition: background-color 0.25s;\n\n\t-moz-user-select: none;\n\t-khtml-user-select: none;\n\t-webkit-user-select: none;\n\t-o-user-select: none;\n}\n\n/* Stylish text inside label */\n\ninput.labelauty + label > span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n\tline-height: 1.1;\n\tvertical-align: middle;\n}\n\n/* Stylish icons inside label */\n\ninput.labelauty + label > span.labelauty-unchecked-image,\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tdisplay: inline-block;\n\twidth: 30px;\n\theight: 30px;\n\tvertical-align: middle;\n\tbackground-repeat: no-repeat;\n\tbackground-position: left center;\n\tbackground-size: contain;\n\n\ttransition: background-image 0.5s linear;\n\t-moz-transition: background-image 0.5s linear;\n\t-webkit-transition: background-image 0.5s linear;\n\t-o-transition: background-image 0.5s linear;\n}\n\n/* When there's a label, add a little margin to the left */\ninput.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked-image + span.labelauty-checked\n{\n\tmargin-left: 7px;\n}\n\n/* When not Checked */\ninput.labelauty:not(:checked):not([disabled]) + label:hover\n{\n\tbackground-color: #eaeaea;\n\tcolor: #a7a7a7;\n}\ninput.labelauty:not(:checked) + label > span.labelauty-checked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:not(:checked) + label > span.labelauty-checked\n{\n\tdisplay: none;\n}\n\n/* When Checked */\ninput.labelauty:checked + label\n{\n\tbackground-color: #3498db;\n\tcolor: #ffffff;\n}\n\ninput.labelauty:checked:not([disabled]) + label:hover\n{\n\tbackground-color: #72c5fd;\n}\ninput.labelauty:checked + label > span.labelauty-unchecked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-unchecked\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n}\n\ninput.labelauty.no-label:checked + label > span.labelauty-checked\n{\n\tdisplay: block;\n}\n\n/* When Disabled */\ninput.labelauty[disabled] + label\n{\n\topacity: 0.5;\n}\n\n/* Add a background to (un)checked images */\ninput.labelauty + label > span.labelauty-unchecked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty.email + label > span.labelauty-checked-image,\ninput.labelauty.email + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/email.png );\n}\n\ninput.labelauty.cloudfiles + label > span.labelauty-checked-image,\ninput.labelauty.cloudfiles + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/cloudfiles.png );\n}\n\ninput.labelauty.dreamobjects + label > span.labelauty-checked-image,\ninput.labelauty.dreamobjects + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dreamobjects.png );\n}\n\ninput.labelauty.dropbox + label > span.labelauty-checked-image,\ninput.labelauty.dropbox + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dropbox.png );\n}\n\ninput.labelauty.ftp + label > span.labelauty-checked-image,\ninput.labelauty.ftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.sftp + label > span.labelauty-checked-image,\ninput.labelauty.sftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.googledrive + label > span.labelauty-checked-image,\ninput.labelauty.googledrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googledrive.png );\n}\n\ninput.labelauty.s3generic + label > span.labelauty-checked-image,\ninput.labelauty.s3generic + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.onedrive + label > span.labelauty-checked-image,\ninput.labelauty.onedrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/onedrive.png );\n}\n\ninput.labelauty.azure + label > span.labelauty-checked-image,\ninput.labelauty.azure + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/azure.png );\n}\n\ninput.labelauty.backblaze + label > span.labelauty-checked-image,\ninput.labelauty.backblaze + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/backblaze.png );\n}\n\ninput.labelauty.openstack + label > span.labelauty-checked-image,\ninput.labelauty.openstack + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/openstack.png );\n}\n\ninput.labelauty.s3 + label > span.labelauty-checked-image,\ninput.labelauty.s3 + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/s3.png );\n}\n\ninput.labelauty.updraftvault + label > span.labelauty-checked-image,\ninput.labelauty.updraftvault + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/updraftvault.png );\n}\n\ninput.labelauty.webdav + label > span.labelauty-checked-image,\ninput.labelauty.webdav + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/webdav.png );\n}\n\ninput.labelauty.googlecloud + label > span.labelauty-checked-image,\ninput.labelauty.googlecloud + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googlecloud.png );\n}\n\n#remote-storage-container {\n height: auto;\n width: auto;\n\t-moz-column-count: 2;\n\t-webkit-column-count: 2;\n\tcolumn-count: 2;\n}\n\n@media only screen and (min-width: 480px) {\n\n\t#remote-storage-container {\n\t\theight: auto;\n\t\twidth: auto;\n\t}\n\n}\n\n@media only screen and (min-width: 1000px) {\n\n\t#remote-storage-container {\n\t\t-moz-column-count: 3;\n\t\t-webkit-column-count: 3;\n\t\tcolumn-count: 3;\n\t\theight: auto;\n\t\twidth: auto;\n\t}\n\n}\n\n@media only screen and (max-width: 480px) {\n\n\tinput.labelauty + label {\n\t\ttext-align: center;\n\t}\n\n\tinput.labelauty + label > span.labelauty-unchecked-image, input.labelauty + label > span.labelauty-checked-image {\n\t\tdisplay: block;\n\t\tmargin: 0 auto;\n\t\tmargin-bottom: 4px;\n\t}\n\n}"]}
includes/labelauty/{jquery-labelauty-1-16-26.min.js → jquery-labelauty-1-16-28.min.js} RENAMED
File without changes
includes/{updraft-admin-common-1-16-26.min.js → updraft-admin-common-1-16-28.min.js} RENAMED
File without changes
includes/updraftclone/temporary-clone-dash-notice.php CHANGED
@@ -44,7 +44,13 @@ class UpdraftPlus_Temporary_Clone_Dash_Notice {
44
  <h1><?php _e('Welcome to your UpdraftClone (temporary clone)', 'updraftplus'); ?></h1>
45
  <p>
46
  <?php echo __('Your clone will renew on:', 'updraftplus') . ' ' . $pretty_date . ' ' . get_option('timezone_string') . ' (' . $date_diff . ')'; ?>.
47
- <?php echo sprintf(__('Each time your clone renews (weekly) it costs %s. You can shut this clone down at the following link:', 'updraftplus'), sprintf(_n('%d token', '%d tokens', $package_cost, 'updraftplus'), $package_cost)); ?> <a target="_blank" href="https://updraftplus.com/my-account/clones/"><?php _e('Manage your clones', 'updraftplus'); ?></p></a>
 
 
 
 
 
 
48
  </div>
49
  <?php
50
  }
@@ -133,6 +139,23 @@ class UpdraftPlus_Temporary_Clone_Dash_Notice {
133
  update_site_option('updraftplus_clone_scheduled_removal', $vps_info['scheduled_removal']);
134
  update_site_option('updraftplus_clone_package_cost', $vps_info['package_cost']);
135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  $vps_data = array(
137
  'scheduled_removal' => $vps_info['scheduled_removal'],
138
  'package_cost' => $vps_info['package_cost']
44
  <h1><?php _e('Welcome to your UpdraftClone (temporary clone)', 'updraftplus'); ?></h1>
45
  <p>
46
  <?php echo __('Your clone will renew on:', 'updraftplus') . ' ' . $pretty_date . ' ' . get_option('timezone_string') . ' (' . $date_diff . ')'; ?>.
47
+ <?php echo sprintf(__('Each time your clone renews (weekly) it costs %s. You can shut this clone down at the following link:', 'updraftplus'), sprintf(_n('%d token', '%d tokens', $package_cost, 'updraftplus'), $package_cost)); ?> <a target="_blank" href="https://updraftplus.com/my-account/clones/"><?php _e('Manage your clones', 'updraftplus'); ?></a>
48
+ </p>
49
+ <?php
50
+ $show_removal_warning = get_site_option('updraftplus_clone_removal_warning', false);
51
+
52
+ if ($show_removal_warning) echo '<p>'.__('Warning: You have no clone tokens remaining and either no subscriptions or no subscription that will renew before the clone expiry date.', 'updraftplus').'</p>'
53
+ ?>
54
  </div>
55
  <?php
56
  }
139
  update_site_option('updraftplus_clone_scheduled_removal', $vps_info['scheduled_removal']);
140
  update_site_option('updraftplus_clone_package_cost', $vps_info['package_cost']);
141
 
142
+ $clone_removal_warning = false;
143
+
144
+ if (isset($vps_info['tokens']) && 0 == $vps_info['tokens']) {
145
+ if (empty($vps_info['subscription_renewals'])) {
146
+ $clone_removal_warning = true;
147
+ } else {
148
+ $subscription_before_expire = false;
149
+ foreach ($vps_info['subscription_renewals'] as $renewal) {
150
+ if ($renewal < $vps_info['scheduled_removal']) $subscription_before_expire = true;
151
+ }
152
+
153
+ if (!$subscription_before_expire) $clone_removal_warning = true;
154
+ }
155
+ }
156
+
157
+ update_site_option('updraftplus_clone_removal_warning', $clone_removal_warning);
158
+
159
  $vps_data = array(
160
  'scheduled_removal' => $vps_info['scheduled_removal'],
161
  'package_cost' => $vps_info['package_cost']
includes/updraftplus-notices.php CHANGED
@@ -197,15 +197,6 @@ class UpdraftPlus_Notices extends Updraft_Notices {
197
  'supported_positions' => $this->anywhere,
198
  'validity_function' => 'wp_optimize_installed',
199
  ),
200
- 'metaslider' => array(
201
- 'prefix' => '',
202
- 'title' => "MetaSlider: The world's #1 slider plugin from the makers of UpdraftPlus",
203
- 'text' => __("With Metaslider, you can easily add style and flare with beautifully-designed sliders.", "updraftplus") . ' ' . $this->url_start(true, 'metaslider.com'),
204
- 'image' => 'notices/metaslider_logo.png',
205
- 'dismiss_time' => 'dismiss_notice',
206
- 'supported_positions' => $this->anywhere,
207
- 'validity_function' => 'metaslider_installed',
208
- ),
209
 
210
  // The sale adverts content starts here
211
  'blackfriday' => array(
@@ -327,37 +318,6 @@ class UpdraftPlus_Notices extends Updraft_Notices {
327
  }
328
  return true;
329
  }
330
-
331
- protected function metaslider_installed($plugin_base_dir = null, $product_name = null) {// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.Found -- Filter use
332
- if (!function_exists('get_plugins')) include_once(ABSPATH.'wp-admin/includes/plugin.php');
333
- $plugins = get_plugins();
334
-
335
- foreach ($plugins as $key => $value) {
336
- if ('ml-slider' == $value['TextDomain']) {
337
- return false;
338
- }
339
- }
340
- return true;
341
- }
342
-
343
- protected function clef_2fa_installed($plugin_base_dir = null, $product_name = null) {// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.Found -- Filter use
344
-
345
- if (!function_exists('get_plugins')) include_once(ABSPATH.'wp-admin/includes/plugin.php');
346
-
347
- $plugins = get_plugins();
348
- $clef_found = false;
349
-
350
- foreach ($plugins as $key => $value) {
351
- if ('wpclef' == $value['TextDomain']) {
352
- $clef_found = true;
353
- } elseif ('two-factor-authentication' == $value['TextDomain'] || 'two-factor-authentication-premium' == $value['TextDomain']) {
354
- return false;
355
- }
356
- }
357
-
358
- return $clef_found;
359
-
360
- }
361
 
362
  protected function url_start($html_allowed = false, $url, $https = false, $website_home = 'updraftplus.com') {
363
  return parent::url_start($html_allowed, $url, $https, $website_home);
197
  'supported_positions' => $this->anywhere,
198
  'validity_function' => 'wp_optimize_installed',
199
  ),
 
 
 
 
 
 
 
 
 
200
 
201
  // The sale adverts content starts here
202
  'blackfriday' => array(
318
  }
319
  return true;
320
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
 
322
  protected function url_start($html_allowed = false, $url, $https = false, $website_home = 'updraftplus.com') {
323
  return parent::url_start($html_allowed, $url, $https, $website_home);
js/{tour-1-16-26.min.js → tour-1-16-28.min.js} RENAMED
File without changes
js/updraft-admin-restore-1-16-26.min.js DELETED
@@ -1 +0,0 @@
1
- var updraft_restore_screen=!0;jQuery(document).ready(function(e){function t(t,a){var o=new XMLHttpRequest,n="action="+a+"&updraftplus_ajax_restore=do_ajax_restore&job_id="+t,d=0,l=!0,u=e("#updraftplus_ajax_restore_debug").length;o.open("POST",ajaxurl,!0),o.onprogress=function(e){if(e.currentTarget.status>=200&&e.currentTarget.status<300){if(-1!==e.currentTarget.responseText.indexOf("<html"))return l&&(l=!1,alert("UpdraftPlus "+updraftlion.ajax_restore_error+" "+updraftlion.ajax_restore_invalid_response)),_.append("UpdraftPlus "+updraftlion.ajax_restore_error+" "+updraftlion.ajax_restore_invalid_response),console.log("UpdraftPlus restore error: HTML detected in response could be a copy of the WordPress front page caused by mod_security"),void console.log(e.currentTarget.responseText);if(d==e.currentTarget.responseText.length)return;c=Math.round(Date.now()/1e3);var t=e.currentTarget.responseText.substr(d);d=e.currentTarget.responseText.length;for(var a=0,o=0;a<t.length;){var n=t.substr(a,7);if("RINFO:{"==n){_.append(t.substring(o,a).trim()).scrollTop(_[0].scrollHeight);var p=ud_parse_json(t.substr(a),!0);1==u&&console.log(p),r(p.parsed),o=a+p.json_last_pos-p.json_start_pos+6,a=o}else a++}_.append(t.substr(o).trim()).scrollTop(_[0].scrollHeight),_.find("input[name=connection_type]").length&&_.find("#upgrade").length&&s()}else 0==e.currentTarget.status?_.append("UpdraftPlus "+updraftlion.ajax_restore_error+" "+updraftlion.ajax_restore_contact_failed):_.append("UpdraftPlus "+updraftlion.ajax_restore_error+" "+e.currentTarget.status+" "+e.currentTarget.statusText),console.log("UpdraftPlus restore error: "+e.currentTarget.status+" "+e.currentTarget.statusText),console.log(e.currentTarget)},o.onload=function(){var t=_.find(".updraft_restore_successful, .updraft_restore_error");if(t.length){var r=e(".updraft_restore_result");r.slideDown(),f.slideUp(),f.siblings("h2").slideUp(),t.is(".updraft_restore_successful")?(r.find(".dashicons").addClass("dashicons-yes"),r.find(".updraft_restore_result--text").text(t.text()),r.addClass("restore-success")):t.is(".updraft_restore_error")&&(r.find(".dashicons").addClass("dashicons-no-alt"),r.find(".updraft_restore_result--text").text(t.text()),r.addClass("restore-error")),setTimeout(function(){_.scrollTop(_[0].scrollHeight)},500)}},o.setRequestHeader("Content-type","application/x-www-form-urlencoded"),o.send(n)}function r(t){if("started"==t.stage&&(d=setInterval(function(){a()},5e3)),"finished"==t.stage&&d&&(clearInterval(d),e("#updraftplus_ajax_restore_last_activity").html("")),t&&("state"==t.type||"state_change"==t.type)){console.log(t.stage,t.data),u="files"==t.stage?t.data.entity:t.stage;var r=f.find("[data-component="+u+"]");if("files"==t.stage&&r.find(".updraft_component--progress").html(" — "+updraftlion.restore_files_progress.replace("%s1","<strong>"+t.data.fileindex+"</strong>").replace("%s2","<strong>"+t.data.total_files+"</strong>")),"db"==t.stage&&t.data.hasOwnProperty("stage")&&("table"==t.data.stage?r.find(".updraft_component--progress").html(" — "+updraftlion.restore_db_table_progress.replace("%s","<strong>"+t.data.table+"</strong>")):"finished"==t.data.stage?r.find(".updraft_component--progress").html(" — "+updraftlion.finished):"begun"==t.data.stage&&r.find(".updraft_component--progress").html(" — "+updraftlion.begun+"...")),l!==u){if(l){var s=f.find("[data-component="+l+"]");s.find(".updraft_component--progress").html(""),s.removeClass("active").addClass("done")}if("finished"==u){if(r.addClass("done"),f.find("[data-component]").each(function(t,r){$el=e(r),$el.is(".done")||$el.addClass("error")}),t.data.hasOwnProperty("actions")&&"object"==typeof t.data.actions){var o=n(t.data.urls);e.isEmptyObject(o)||(e(".updraft_restore_result").before(updraftlion.ajax_restore_404_detected),e.each(o,function(t,r){e(".updraft_missing_pages").append("<li>"+r+"</li>")})),e.each(t.data.actions,function(e,t){f.after('<a href="'+t+'" class="button button-primary">'+e+"</a>")})}}else r.addClass("active")}l=u}}function a(){var t=Math.round(Date.now()/1e3),r=t-c;if(60>r)e("#updraftplus_ajax_restore_last_activity").html(updraftlion.last_activity.replace("%d",r));else{var a=120-r;0<a?e("#updraftplus_ajax_restore_last_activity").html(updraftlion.no_recent_activity.replace("%d",a)):(e("#updraftplus_ajax_restore_last_activity").html(""),o())}}function s(){e(".updraft_restore_main").addClass("show-credentials-form"),e("#message").length&&(e(".restore-credential-errors .restore-credential-errors--list").appendTo(e("#message")),e(".restore-credential-errors .restore-credential-errors--link").appendTo(e("#message")))}function o(){updraft_send_command("get_restore_resume_notice",{job_id:p},function(r){r.hasOwnProperty("status")&&"success"==r.status&&r.hasOwnProperty("html")?(d&&clearInterval(d),"plugins"!=u&&"db"!=u&&5>h?(h++,t(p,"updraft_ajaxrestore_continue")):e(".updraft_restore_main--components").prepend(r.html)):r.hasOwnProperty("error_code")&&r.hasOwnProperty("error_message")&&(d&&clearInterval(d),alert(r.error_code+": "+r.error_message),console.log(r.error_code+": "+r.error_message))},{error_callback:function(e,a,s,o){if(500==e.status&&3>m)m++,t(p,"updraft_ajaxrestore_continue");else{r({stage:"finished",type:"state_change"});var n="updraft_send_command: error: "+a+" ("+s+")";alert(n),console.log(n),console.log(e)}}})}function n(t){var r=[];return e.each(t,function(e,t){var a=new XMLHttpRequest;a.open("GET",t,!1),a.send(null),404==a.status&&r.push(t)}),r}var d,l,u,p=e("#updraftplus_ajax_restore_job_id").val(),i=e("#updraftplus_ajax_restore_action").val(),c=0,_=e("#updraftplus_ajax_restore_output"),f=e(".updraft_restore_components_list"),g=!1,h=0,m=0;t(p,i),e("#updraftplus_ajax_restore_progress").on("click","#updraft_restore_resume",function(r){r.preventDefault(),e("#updraftplus_ajax_restore_progress").slideUp(1e3,function(){e(this).remove()}),t(p,"updraft_ajaxrestore_continue")}),e(document).on("heartbeat-tick",function(e,t){if(t.hasOwnProperty("wp-auth-check")){if(!t["wp-auth-check"])return void(g=!0);if(g&&t["wp-auth-check"]&&(c=Math.round(Date.now()/1e3),g=!1),t.hasOwnProperty("updraftplus")){var r=t.updraftplus;r.hasOwnProperty("updraft_credentialtest_nonce")&&(updraft_credentialtest_nonce=r.updraft_credentialtest_nonce,c=Math.round(Date.now()/1e3))}}})});
 
js/updraft-admin-restore-1-16-28.min.js ADDED
@@ -0,0 +1 @@
 
1
+ var updraft_restore_screen=!0;jQuery(document).ready(function(e){function t(t,a){var o=new XMLHttpRequest,n="action="+a+"&updraftplus_ajax_restore=do_ajax_restore&job_id="+t,d=0,u=!0,l=e("#updraftplus_ajax_restore_debug").length;o.open("POST",ajaxurl,!0),o.onprogress=function(e){if(e.currentTarget.status>=200&&e.currentTarget.status<300){if(-1!==e.currentTarget.responseText.indexOf("<html"))return u&&(u=!1,alert("UpdraftPlus "+updraftlion.ajax_restore_error+" "+updraftlion.ajax_restore_invalid_response)),_.append("UpdraftPlus "+updraftlion.ajax_restore_error+" "+updraftlion.ajax_restore_invalid_response),console.log("UpdraftPlus restore error: HTML detected in response could be a copy of the WordPress front page caused by mod_security"),void console.log(e.currentTarget.responseText);if(d==e.currentTarget.responseText.length)return;c=Math.round(Date.now()/1e3);var t=e.currentTarget.responseText.substr(d);d=e.currentTarget.responseText.length;for(var a=0,o=0;a<t.length;){var n=t.substr(a,7);if("RINFO:{"==n){_.append(t.substring(o,a).trim()).scrollTop(_[0].scrollHeight);var p=ud_parse_json(t.substr(a),!0);1==l&&console.log(p),r(p.parsed),o=a+p.json_last_pos-p.json_start_pos+6,a=o}else a++}_.append(t.substr(o).trim()).scrollTop(_[0].scrollHeight),_.find("input[name=connection_type]").length&&_.find("#upgrade").length&&s()}else 0==e.currentTarget.status?_.append("UpdraftPlus "+updraftlion.ajax_restore_error+" "+updraftlion.ajax_restore_contact_failed):_.append("UpdraftPlus "+updraftlion.ajax_restore_error+" "+e.currentTarget.status+" "+e.currentTarget.statusText),console.log("UpdraftPlus restore error: "+e.currentTarget.status+" "+e.currentTarget.statusText),console.log(e.currentTarget)},o.onload=function(){var t=_.find(".updraft_restore_successful, .updraft_restore_error");if(t.length){var r=e(".updraft_restore_result");r.slideDown(),f.slideUp(),f.siblings("h2").slideUp(),t.is(".updraft_restore_successful")?(r.find(".dashicons").addClass("dashicons-yes"),r.find(".updraft_restore_result--text").text(t.text()),r.addClass("restore-success")):t.is(".updraft_restore_error")&&(r.find(".dashicons").addClass("dashicons-no-alt"),r.find(".updraft_restore_result--text").text(t.text()),r.addClass("restore-error")),setTimeout(function(){_.scrollTop(_[0].scrollHeight)},500)}},o.setRequestHeader("Content-type","application/x-www-form-urlencoded"),o.send(n)}function r(t){if("started"==t.stage&&(d=setInterval(function(){a()},5e3)),"finished"==t.stage&&d&&(clearInterval(d),e("#updraftplus_ajax_restore_last_activity").html("")),t&&("state"==t.type||"state_change"==t.type)){console.log(t.stage,t.data),l="files"==t.stage?t.data.entity:t.stage;var r=f.find("[data-component="+l+"]");if("files"==t.stage&&r.find(".updraft_component--progress").html(" — "+updraftlion.restore_files_progress.replace("%s1","<strong>"+t.data.fileindex+"</strong>").replace("%s2","<strong>"+t.data.total_files+"</strong>")),"db"==t.stage&&t.data.hasOwnProperty("stage")&&("table"==t.data.stage?r.find(".updraft_component--progress").html(" — "+updraftlion.restore_db_table_progress.replace("%s","<strong>"+t.data.table+"</strong>")):"stored_routine"==t.data.stage?r.find(".updraft_component--progress").html(" — "+updraftlion.restore_db_stored_routine_progress.replace("%s","<strong>"+t.data.routine_name+"</strong>")):"finished"==t.data.stage?r.find(".updraft_component--progress").html(" — "+updraftlion.finished):"begun"==t.data.stage&&r.find(".updraft_component--progress").html(" — "+updraftlion.begun+"...")),u!==l){if(u){var s=f.find("[data-component="+u+"]");s.find(".updraft_component--progress").html(""),s.removeClass("active").addClass("done")}if("finished"==l){if(r.addClass("done"),f.find("[data-component]").each(function(t,r){$el=e(r),$el.is(".done")||$el.addClass("error")}),t.data.hasOwnProperty("actions")&&"object"==typeof t.data.actions){var o=n(t.data.urls);e.isEmptyObject(o)||(e(".updraft_restore_result").before(updraftlion.ajax_restore_404_detected),e.each(o,function(t,r){e(".updraft_missing_pages").append("<li>"+r+"</li>")})),e.each(t.data.actions,function(e,t){f.after('<a href="'+t+'" class="button button-primary">'+e+"</a>")})}}else r.addClass("active")}u=l}}function a(){var t=Math.round(Date.now()/1e3),r=t-c;if(60>r)e("#updraftplus_ajax_restore_last_activity").html(updraftlion.last_activity.replace("%d",r));else{var a=120-r;0<a?e("#updraftplus_ajax_restore_last_activity").html(updraftlion.no_recent_activity.replace("%d",a)):(e("#updraftplus_ajax_restore_last_activity").html(""),o())}}function s(){e(".updraft_restore_main").addClass("show-credentials-form"),e("#message").length&&(e(".restore-credential-errors .restore-credential-errors--list").appendTo(e("#message")),e(".restore-credential-errors .restore-credential-errors--link").appendTo(e("#message")))}function o(){updraft_send_command("get_restore_resume_notice",{job_id:p},function(r){r.hasOwnProperty("status")&&"success"==r.status&&r.hasOwnProperty("html")?(d&&clearInterval(d),"plugins"!=l&&"db"!=l&&5>h?(h++,t(p,"updraft_ajaxrestore_continue")):e(".updraft_restore_main--components").prepend(r.html)):r.hasOwnProperty("error_code")&&r.hasOwnProperty("error_message")&&(d&&clearInterval(d),alert(r.error_code+": "+r.error_message),console.log(r.error_code+": "+r.error_message))},{error_callback:function(e,a,s,o){if(500==e.status&&3>m)m++,t(p,"updraft_ajaxrestore_continue");else{r({stage:"finished",type:"state_change"});var n="updraft_send_command: error: "+a+" ("+s+")";alert(n),console.log(n),console.log(e)}}})}function n(t){var r=[];return e.each(t,function(e,t){var a=new XMLHttpRequest;a.open("GET",t,!1),a.send(null),404==a.status&&r.push(t)}),r}var d,u,l,p=e("#updraftplus_ajax_restore_job_id").val(),i=e("#updraftplus_ajax_restore_action").val(),c=0,_=e("#updraftplus_ajax_restore_output"),f=e(".updraft_restore_components_list"),g=!1,h=0,m=0;t(p,i),e("#updraftplus_ajax_restore_progress").on("click","#updraft_restore_resume",function(r){r.preventDefault(),e("#updraftplus_ajax_restore_progress").slideUp(1e3,function(){e(this).remove()}),t(p,"updraft_ajaxrestore_continue")}),e(document).on("heartbeat-tick",function(e,t){if(t.hasOwnProperty("wp-auth-check")){if(!t["wp-auth-check"])return void(g=!0);if(g&&t["wp-auth-check"]&&(c=Math.round(Date.now()/1e3),g=!1),t.hasOwnProperty("updraftplus")){var r=t.updraftplus;r.hasOwnProperty("updraft_credentialtest_nonce")&&(updraft_credentialtest_nonce=r.updraft_credentialtest_nonce,c=Math.round(Date.now()/1e3))}}})});
js/updraft-admin-restore.js CHANGED
@@ -161,6 +161,8 @@ jQuery(document).ready(function($) {
161
  if (restore_data.data.hasOwnProperty('stage')) {
162
  if ('table' == restore_data.data.stage) {
163
  $current.find('.updraft_component--progress').html(' — '+updraftlion.restore_db_table_progress.replace('%s', '<strong>'+(restore_data.data.table)+'</strong>'));
 
 
164
  } else if ('finished' == restore_data.data.stage) {
165
  $current.find('.updraft_component--progress').html(' — '+updraftlion.finished);
166
  } else if ('begun' == restore_data.data.stage) {
161
  if (restore_data.data.hasOwnProperty('stage')) {
162
  if ('table' == restore_data.data.stage) {
163
  $current.find('.updraft_component--progress').html(' — '+updraftlion.restore_db_table_progress.replace('%s', '<strong>'+(restore_data.data.table)+'</strong>'));
164
+ } else if ('stored_routine' == restore_data.data.stage) {
165
+ $current.find('.updraft_component--progress').html(' — '+updraftlion.restore_db_stored_routine_progress.replace('%s', '<strong>'+(restore_data.data.routine_name)+'</strong>'));
166
  } else if ('finished' == restore_data.data.stage) {
167
  $current.find('.updraft_component--progress').html(' — '+updraftlion.finished);
168
  } else if ('begun' == restore_data.data.stage) {
languages/updraftplus-bg_BG.mo CHANGED
Binary file
languages/updraftplus-bg_BG.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2020-06-28 10:28:45+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -77,2051 +77,2051 @@ msgstr "Следвайте тази връзка към инструкциите
77
 
78
  #: src/templates/wp-admin/settings/tab-addons.php:56
79
  msgid "You successfully purchased UpdraftPremium."
80
- msgstr ""
81
 
82
  #: src/templates/wp-admin/settings/tab-addons.php:39
83
  msgid "Goes to updraftplus.com checkout page"
84
- msgstr ""
85
 
86
  #: src/templates/wp-admin/settings/tab-addons.php:38
87
  msgid "Goes to the updraftplus.com checkout page"
88
- msgstr ""
89
 
90
  #: src/templates/wp-admin/settings/tab-addons.php:38
91
  msgid "Get %s here"
92
- msgstr ""
93
 
94
  #: src/templates/wp-admin/settings/form-contents.php:310
95
  msgid "The higher the value, the more server resources are required to create the archive."
96
- msgstr ""
97
 
98
  #: src/templates/wp-admin/settings/form-contents.php:88
99
  msgid "to take incremental backups"
100
- msgstr ""
101
 
102
  #: src/templates/wp-admin/settings/form-contents.php:76
103
  msgid "Retain this many scheduled database backups"
104
- msgstr ""
105
 
106
  #: src/templates/wp-admin/settings/form-contents.php:42
107
  msgid "Retain this many scheduled file backups"
108
- msgstr ""
109
 
110
  #: src/templates/wp-admin/settings/file-backup-exclude.php:18
111
  msgid "Add an exclusion rule for %s"
112
- msgstr ""
113
 
114
  #: src/templates/wp-admin/settings/existing-backups-table.php:171
115
  msgid "Use ctrl / cmd + press to select several items, or ctrl / cmd + shift + press to select all in between"
116
- msgstr ""
117
 
118
  #: src/templates/wp-admin/settings/existing-backups-table.php:170
119
  msgid "Deselect all backups"
120
- msgstr ""
121
 
122
  #: src/templates/wp-admin/settings/existing-backups-table.php:169
123
  msgid "Select all backups"
124
- msgstr ""
125
 
126
  #: src/templates/wp-admin/settings/existing-backups-table.php:168
127
  msgid "Delete selected backups"
128
- msgstr ""
129
 
130
  #: src/templates/wp-admin/settings/existing-backups-table.php:159
131
  msgid "Show all backups..."
132
- msgstr ""
133
 
134
  #: src/templates/wp-admin/settings/existing-backups-table.php:159
135
  msgid "Show more backups..."
136
- msgstr ""
137
 
138
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:63
139
  msgid "Choose the components to restore:"
140
- msgstr ""
141
 
142
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
143
  msgid "Restore files from"
144
- msgstr ""
145
 
146
  #: src/templates/wp-admin/settings/backupnow-modal.php:20,
147
  #: src/templates/wp-admin/settings/backupnow-modal.php:67
148
  msgid "Find out more about incremental backups here."
149
- msgstr ""
150
 
151
  #: src/templates/wp-admin/settings/backupnow-modal.php:17
152
  msgid "Incremental backups are a feature of %s (upgrade by following this link)."
153
- msgstr ""
154
 
155
  #: src/templates/wp-admin/settings/backupnow-modal.php:13
156
  msgid "Take an incremental backup"
157
- msgstr ""
158
 
159
  #: src/templates/wp-admin/settings/backupnow-modal.php:12
160
  msgid "Take a new backup"
161
- msgstr ""
162
 
163
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
164
  msgid "Makes your site fast and efficient. It cleans the database, compresses images and caches pages for ultimate speed."
165
- msgstr ""
166
 
167
  #: src/restorer.php:3178
168
  msgid "The Database connection has been closed and cannot be reopened."
169
- msgstr ""
170
 
171
  #: src/restorer.php:2913
172
  msgid "Skipping table %s: already restored on a prior run; next table to restore: %s"
173
- msgstr ""
174
 
175
  #: src/restorer.php:2910
176
  msgid "Skipping table %s: user has chosen not to restore this table"
177
- msgstr ""
178
 
179
  #: src/restorer.php:2254
180
  msgid "Found and replaced existing table foreign key constraints as the table prefix has changed."
181
- msgstr ""
182
 
183
  #: src/restorer.php:2141
184
  msgid "An error occurred while attempting to set a new value to the MySQL global log_bin_trust_function_creators variable %s"
185
- msgstr ""
186
 
187
  #: src/restorer.php:2134
188
  msgid "An error occurred while attempting to retrieve the MySQL global log_bin_trust_function_creators variable %s"
189
- msgstr ""
190
 
191
  #: src/restorer.php:1127
192
  msgid "The directory does not exist, and the attempt to create it failed"
193
- msgstr ""
194
 
195
  #: src/restorer.php:728
196
  msgid "Could not delete old path."
197
- msgstr ""
198
 
199
  #: src/methods/updraftvault.php:392
200
  msgid "Follow this link for help"
201
- msgstr ""
202
 
203
  #: src/methods/updraftvault.php:388
204
  msgid "Please enter your %s password"
205
- msgstr ""
206
 
207
  #: src/methods/updraftvault.php:387
208
  msgid "Please enter your %s email address"
209
- msgstr ""
210
 
211
  #: src/methods/updraftvault.php:357, src/methods/updraftvault.php:364,
212
  #: src/methods/updraftvault.php:371
213
  msgid "Start Subscription"
214
- msgstr ""
215
 
216
  #: src/methods/updraftvault.php:357, src/methods/updraftvault.php:364,
217
  #: src/methods/updraftvault.php:371
218
  msgid "Start %s Subscription"
219
- msgstr ""
220
 
221
  #: src/methods/updraftvault.php:350
222
  msgid "Start Trial"
223
- msgstr ""
224
 
225
  #: src/methods/updraftvault.php:350
226
  msgid "Start %s Trial"
227
- msgstr ""
228
 
229
  #: src/methods/updraftvault.php:350, src/methods/updraftvault.php:357,
230
  #: src/methods/updraftvault.php:364, src/methods/updraftvault.php:371
231
  msgid "Start a %s UpdraftVault Subscription"
232
- msgstr ""
233
 
234
  #: src/methods/updraftvault.php:349
235
  msgid "%s month %s trial"
236
- msgstr ""
237
 
238
  #: src/methods/updraftvault.php:348
239
  msgid "with the option of"
240
- msgstr ""
241
 
242
  #: src/methods/updraftvault.php:337, src/methods/updraftvault.php:378
243
  msgid "Read more about %s here."
244
- msgstr ""
245
 
246
  #: src/methods/updraftvault.php:334
247
  msgid "Connect to your %s account"
248
- msgstr ""
249
 
250
  #: src/methods/updraftvault.php:333
251
  msgid "Already got space?"
252
- msgstr ""
253
 
254
  #: src/methods/updraftvault.php:329, src/methods/updraftvault.php:330
255
  msgid "Need to get space?"
256
- msgstr ""
257
 
258
  #: src/methods/s3.php:185, src/methods/s3.php:186, src/methods/s3.php:198,
259
  #: src/methods/s3.php:199
260
  msgid "Error: Failed to initialise"
261
- msgstr ""
262
 
263
  #: src/methods/ftp.php:148
264
  msgid "upload failed"
265
- msgstr ""
266
 
267
  #: src/methods/ftp.php:121, src/methods/ftp.php:289
268
  msgid "login failure"
269
- msgstr ""
270
 
271
  #: src/methods/cloudfiles.php:216, src/methods/cloudfiles.php:217
272
  msgid "error - failed to upload file"
273
- msgstr ""
274
 
275
  #: src/methods/cloudfiles.php:209
276
  msgid "error - failed to re-assemble chunks"
277
- msgstr ""
278
 
279
  #: src/methods/cloudfiles.php:101, src/methods/cloudfiles.php:346,
280
  #: src/methods/cloudfiles.php:358
281
  msgid "error - failed to create and access the container"
282
- msgstr ""
283
 
284
  #: src/methods/cloudfiles.php:93, src/methods/cloudfiles.php:97,
285
  #: src/methods/cloudfiles.php:290, src/methods/cloudfiles.php:338,
286
  #: src/methods/cloudfiles.php:342
287
  msgid "authentication failed"
288
- msgstr ""
289
 
290
  #: src/includes/updraftplus-tour.php:188
291
  msgid "Otherwise, you can try UpdraftVault for 1 month for only $1!"
292
- msgstr ""
293
 
294
  #: src/includes/updraftplus-tour.php:187
295
  msgid "If you have a valid Premium license, you get 1GB of storage included."
296
- msgstr ""
297
 
298
  #: src/includes/updraftplus-tour.php:134
299
  msgid "Try UpdraftVault for 1 month for only $1!"
300
- msgstr ""
301
 
302
  #: src/includes/updraftplus-notices.php:181
303
  msgid "manages all your WordPress sites at once from one place"
304
- msgstr ""
305
 
306
  #: src/includes/updraftplus-notices.php:181
307
  msgid "Many sites?"
308
- msgstr ""
309
 
310
  #: src/includes/updraftplus-notices.php:180
311
  msgid "handles updates automatically as you want them"
312
- msgstr ""
313
 
314
  #: src/includes/updraftplus-notices.php:180
315
  msgid "Save time"
316
- msgstr ""
317
 
318
  #: src/includes/updraftplus-notices.php:179
319
  msgid "backs up automatically when you update plugins, themes or core"
320
- msgstr ""
321
 
322
  #: src/includes/updraftplus-notices.php:179
323
  msgid "Be safe"
324
- msgstr ""
325
 
326
  #: src/includes/updraftplus-notices.php:178
327
  msgid "Make updates easy with UpdraftPlus"
328
- msgstr ""
329
 
330
  #: src/includes/updraftplus-clone.php:107
331
  msgid "Clone of %s"
332
- msgstr ""
333
 
334
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:47
335
  msgid "%d token"
336
  msgid_plural "%d tokens"
337
- msgstr[0] ""
338
- msgstr[1] ""
339
 
340
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:47
341
  msgid "Each time your clone renews (weekly) it costs %s. You can shut this clone down at the following link:"
342
- msgstr ""
343
 
344
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:36
345
  msgid "%s from now"
346
- msgstr ""
347
 
348
  #: src/includes/class-wpadmin-commands.php:236
349
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then press Restore to proceed. Otherwise, cancel and correct any problems first."
350
- msgstr ""
351
 
352
  #: src/includes/class-wpadmin-commands.php:234
353
  msgid "The backup archive files have been successfully processed. Now press Restore to proceed."
354
- msgstr ""
355
 
356
  #: src/includes/class-wpadmin-commands.php:216
357
  msgid "This backup set contains incremental backups of your files; please select the time you wish to restore your files to"
358
- msgstr ""
359
 
360
  #: src/includes/class-remote-send.php:527
361
  msgid "The setting %s is turned on in your PHP settings. It is deprecated, causes encryption to malfunction, and should be turned off."
362
- msgstr ""
363
 
364
  #: src/includes/class-filesystem-functions.php:534
365
  msgid "Unzip progress: %d out of %d files"
366
- msgstr ""
367
 
368
  #: src/includes/class-database-utility.php:646
369
  msgid "An error occurred while attempting to retrieve the routine SQL/DDL statement (%s %s)"
370
- msgstr ""
371
 
372
  #: src/includes/class-database-utility.php:634
373
  msgid "An error occurred while attempting to retrieve routine status (%s %s)"
374
- msgstr ""
375
 
376
  #: src/includes/class-database-utility.php:566
377
  msgid "An error occurred while attempting to check the support of stored routines creation (%s %s)"
378
- msgstr ""
379
 
380
  #: src/includes/class-commands.php:960, src/includes/class-commands.php:962
381
  msgid "N.B. You will be charged one token once the clone is ready. If the clone fails to boot, then no token will be taken."
382
- msgstr ""
383
 
384
  #: src/includes/class-commands.php:960
385
  msgid "No backup will be started. The creation of your clone should now begin, and your WordPress username and password will be displayed below when ready."
386
- msgstr ""
387
 
388
  #: src/class-updraftplus.php:4911
389
  msgid "If you do not want to restore all your tables, then choose some to exclude here."
390
- msgstr ""
391
 
392
  #: src/class-updraftplus.php:4645
393
  msgid "You should only proceed if you have checked and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the new %s version."
394
- msgstr ""
395
 
396
  #: src/class-updraftplus.php:4645
397
  msgid "This is older than the server which you are now restoring onto (version %s)."
398
- msgstr ""
399
 
400
  #: src/class-updraftplus.php:3389
401
  msgid "Incomplete"
402
- msgstr ""
403
 
404
  #: src/class-updraftplus.php:2247
405
  msgid "The backup is being aborted for a repeated failure to progress."
406
- msgstr ""
407
 
408
  #: src/class-updraftplus.php:630
409
  msgid "Briefly unavailable for scheduled maintenance. Check back in a minute."
410
- msgstr ""
411
 
412
  #: src/class-updraftplus.php:630
413
  msgid "Under Maintenance"
414
- msgstr ""
415
 
416
  #: src/central/modules/posts.php:1048
417
  msgid "Expected parameter(s) missing."
418
- msgstr ""
419
 
420
  #: src/central/modules/posts.php:745, src/central/modules/posts.php:810
421
  msgid "$result->get_error_message"
422
- msgstr ""
423
 
424
  #: src/central/modules/posts.php:177
425
  msgid "Default template"
426
- msgstr ""
427
 
428
  #: src/central/modules/media.php:454
429
  msgid "Unattached"
430
- msgstr ""
431
 
432
  #: src/central/modules/media.php:392
433
  msgid "Selected media has been deleted successfully."
434
- msgstr ""
435
 
436
  #: src/central/modules/media.php:389
437
  msgid "Failed to delete selected media."
438
- msgstr ""
439
 
440
  #: src/central/modules/media.php:376
441
  msgid "Media has been detached from post."
442
- msgstr ""
443
 
444
  #: src/central/modules/media.php:374
445
  msgid "Failed to detach media."
446
- msgstr ""
447
 
448
  #: src/central/modules/media.php:366
449
  msgid "Media has been attached to post."
450
- msgstr ""
451
 
452
  #: src/central/modules/media.php:364
453
  msgid "Failed to attach media."
454
- msgstr ""
455
 
456
  #: src/central/commands.php:345
457
  msgid "Unable to install %s. Make sure that the zip file is a valid %s file and a previous version of this %s does not exist. If you wish to overwrite an existing %s then you will have to manually delete it from the %s folder on the remote website and try uploading the file again."
458
- msgstr ""
459
 
460
  #: src/central/commands.php:316
461
  msgid "Unable to activate %s successfully. Make sure that this %s is compatible with your remote WordPress version. WordPress version currently installed in your remote website is %s."
462
- msgstr ""
463
 
464
  #: src/central/commands.php:274
465
  msgid "Unable to connect to the filesystem"
466
- msgstr ""
467
 
468
  #: src/admin.php:5849, src/admin.php:5851
469
  msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
470
- msgstr ""
471
 
472
  #: src/admin.php:5719
473
  msgid "Clone package:"
474
- msgstr ""
475
 
476
  #: src/admin.php:5706
477
  msgid "An empty WordPress install"
478
- msgstr ""
479
 
480
  #: src/admin.php:5705
481
  msgid "This current site"
482
- msgstr ""
483
 
484
  #: src/admin.php:5703
485
  msgid "Clone:"
486
- msgstr ""
487
 
488
  #: src/admin.php:4782,
489
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:98
490
  msgid "3. Restoration"
491
- msgstr ""
492
 
493
  #: src/admin.php:4781,
494
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:97
495
  msgid "2. Verifications"
496
- msgstr ""
497
 
498
  #: src/admin.php:4780,
499
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:96
500
  msgid "1. Component selection"
501
- msgstr ""
502
 
503
  #: src/admin.php:4774
504
  msgid "Activity log"
505
- msgstr ""
506
 
507
  #: src/admin.php:4767
508
  msgid "Cleaning"
509
- msgstr ""
510
 
511
  #: src/admin.php:4761
512
  msgid "Verifying"
513
- msgstr ""
514
 
515
  #: src/admin.php:4758
516
  msgid "Restoration progress:"
517
- msgstr ""
518
 
519
  #: src/admin.php:4757
520
  msgid "The restore operation has begun (%s). Do not close this page until it reports itself as having finished."
521
- msgstr ""
522
 
523
  #: src/admin.php:4748,
524
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
525
  msgid "UpdraftPlus Restoration"
526
- msgstr ""
527
 
528
  #: src/admin.php:4265
529
  msgid "(%d archive(s) in set, total %s)."
530
- msgstr ""
531
 
532
  #: src/admin.php:3114
533
  msgid "Learn more about UpdraftCentral"
534
- msgstr ""
535
 
536
  #: src/admin.php:3114
537
  msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
538
- msgstr ""
539
 
540
  #: src/admin.php:2674, src/admin.php:3578, src/admin.php:4696,
541
  #: src/admin.php:4708, src/admin.php:4719, src/admin.php:4948,
542
  #: src/admin.php:5851
543
  msgid "Return to UpdraftPlus configuration"
544
- msgstr ""
545
 
546
  #: src/admin.php:2197
547
  msgid "No suitable backup set (that already contains a full backup of all the requested file component types) was found, to add increments to. Aborting this backup."
548
- msgstr ""
549
 
550
  #: src/admin.php:1978
551
  msgid "An error occurred while attempting to delete from '%s'."
552
- msgstr ""
553
 
554
  #: src/admin.php:1975
555
  msgid "The file may no longer exist or you may not have permission to delete."
556
- msgstr ""
557
 
558
  #: src/admin.php:1975
559
  msgid "We were unable to delete a file on '%s'."
560
- msgstr ""
561
 
562
  #: src/admin.php:1972
563
  msgid "We were unable to access a file on '%s'."
564
- msgstr ""
565
 
566
  #: src/admin.php:1969, src/admin.php:1972
567
  msgid "Please check your permissions."
568
- msgstr ""
569
 
570
  #: src/admin.php:1969
571
  msgid "We were unable to access the folder/container for '%s'."
572
- msgstr ""
573
 
574
  #: src/admin.php:1966
575
  msgid "Service unavailable."
576
- msgstr ""
577
 
578
  #: src/admin.php:1966
579
  msgid "We were unable to access '%s'."
580
- msgstr ""
581
 
582
  #: src/admin.php:1963
583
  msgid "Please check your credentials."
584
- msgstr ""
585
 
586
  #: src/admin.php:1963
587
  msgid "The authentication failed for '%s'."
588
- msgstr ""
589
 
590
  #: src/admin.php:1265
591
  msgid "Connection to your %1$s account was successful. However, we were not able to register this site with %2$s, as there are no available %2$s licences on the account."
592
- msgstr ""
593
 
594
  #: src/admin.php:988
595
  msgid "Please check the error log for more details"
596
- msgstr ""
597
 
598
  #: src/admin.php:987
599
  msgid "Missing pages:"
600
- msgstr ""
601
 
602
  #: src/admin.php:987
603
  msgid "Attempts by the browser to access some pages have returned a \"not found (404)\" error. This could mean that your .htaccess file has incorrect contents, is missing, or that your webserver is missing an equivalent mechanism."
604
- msgstr ""
605
 
606
  #: src/admin.php:986
607
  msgid "Restore error:"
608
- msgstr ""
609
 
610
  #: src/admin.php:985
611
  msgid "Attempts by the browser to contact the website failed."
612
- msgstr ""
613
 
614
  #: src/admin.php:984
615
  msgid "Preparing backup files"
616
- msgstr ""
617
 
618
  #: src/admin.php:983
619
  msgid "Downloading backup files if needed"
620
- msgstr ""
621
 
622
  #: src/admin.php:982
623
  msgid "Begun"
624
- msgstr ""
625
 
626
  #: src/admin.php:981, src/admin.php:4768
627
  msgid "Finished"
628
- msgstr ""
629
 
630
  #: src/admin.php:979
631
  msgid "Restoring %s1 files out of %s2"
632
- msgstr ""
633
 
634
  #: src/admin.php:978
635
  msgid "no recent activity; will offer resumption after: %d seconds"
636
- msgstr ""
637
 
638
  #: src/admin.php:977
639
  msgid "last activity: %d seconds ago"
640
- msgstr ""
641
 
642
  #: src/admin.php:974
643
  msgid "credentials"
644
- msgstr ""
645
 
646
  #: src/admin.php:972
647
  msgid "Try it - 1 month for $1!"
648
- msgstr ""
649
 
650
  #: src/admin.php:968
651
  msgid "Try UpdraftVault!"
652
- msgstr ""
653
 
654
  #: src/admin.php:967
655
  msgid "You have not selected a restore path for your chosen backups"
656
- msgstr ""
657
 
658
  #: src/admin.php:966
659
  msgid "HTML was detected in the response. You may have a security module on your webserver blocking the restoration operation."
660
- msgstr ""
661
 
662
  #: src/admin.php:965
663
  msgid "File backup options"
664
- msgstr ""
665
 
666
  #: src/admin.php:944
667
  msgid "Verifying one-time password..."
668
- msgstr ""
669
 
670
  #: src/admin.php:939
671
  msgid "Login successful; reloading information."
672
- msgstr ""
673
 
674
  #: src/admin.php:937
675
  msgid "Key created. Adding site to UpdraftCentral Cloud."
676
- msgstr ""
677
 
678
  #: src/admin.php:936
679
  msgid "Connected. Requesting UpdraftCentral Key."
680
- msgstr ""
681
 
682
  #: src/admin.php:825, src/admin.php:2046
683
  msgid "Existing backups"
684
- msgstr ""
685
 
686
  #: src/admin.php:587
687
  msgid "Dismiss notice"
688
- msgstr ""
689
 
690
  #: src/admin.php:587
691
  msgid "You can test running your site on a different PHP (or WordPress) version using UpdraftClone credits."
692
- msgstr ""
693
 
694
  #: src/admin.php:575
695
  msgid "dismiss notice"
696
- msgstr ""
697
 
698
  #: src/admin.php:575
699
  msgid "go here to learn more"
700
- msgstr ""
701
 
702
  #: src/admin.php:575
703
  msgid "You can test upgrading your site on an instant copy using UpdraftClone credits"
704
- msgstr ""
705
 
706
  #: src/addons/wp-cli.php:889
707
  msgid "There are no incremental backup restore points available."
708
- msgstr ""
709
 
710
  #: src/addons/wp-cli.php:884
711
  msgid "Timestamp"
712
- msgstr ""
713
 
714
  #: src/addons/wp-cli.php:617
715
  msgid "No valid components found, please select different components or a backup set with components that can be restored."
716
- msgstr ""
717
 
718
  #: src/addons/sftp.php:148, src/methods/cloudfiles.php:145,
719
  #: src/methods/cloudfiles.php:187, src/methods/openstack-base.php:81
720
  msgid "Error: Failed to upload"
721
- msgstr ""
722
 
723
  #: src/addons/s3-enhanced.php:372
724
  msgid "Middle East (Bahrain)"
725
- msgstr ""
726
 
727
  #: src/addons/s3-enhanced.php:371
728
  msgid "Europe (Stockholm)"
729
- msgstr ""
730
 
731
  #: src/addons/s3-enhanced.php:69
732
  msgid "Read more about server-side encryption"
733
- msgstr ""
734
 
735
  #: src/addons/s3-enhanced.php:64
736
  msgid "Intelligent Tiering"
737
- msgstr ""
738
 
739
  #: src/addons/morefiles.php:852
740
  msgid "Restore location found for:"
741
- msgstr ""
742
 
743
  #: src/addons/morefiles.php:850
744
  msgid "Restore location does not exist on the filesystem for:"
745
- msgstr ""
746
 
747
  #: src/addons/morefiles.php:807
748
  msgid "Please select the more files backups that you wish to restore:"
749
- msgstr ""
750
 
751
  #: src/addons/morefiles.php:805
752
  msgid "The original filesystem location for some of the following items was not found. Please select where you want these backups to be restored to."
753
- msgstr ""
754
 
755
  #: src/addons/moredatabase.php:243
756
  msgid "If you enter a table prefix, then only tables that begin with this prefix will be backed up."
757
- msgstr ""
758
 
759
  #: src/addons/moredatabase.php:243, src/addons/moredatabase.php:243
760
  msgid "Enter table prefix"
761
- msgstr ""
762
 
763
  #: src/addons/moredatabase.php:242
764
  msgid "Enter database"
765
- msgstr ""
766
 
767
  #: src/addons/moredatabase.php:242
768
  msgid "Enter database."
769
- msgstr ""
770
 
771
  #: src/addons/moredatabase.php:241
772
  msgid "Enter password"
773
- msgstr ""
774
 
775
  #: src/addons/moredatabase.php:241
776
  msgid "Enter password."
777
- msgstr ""
778
 
779
  #: src/addons/moredatabase.php:240
780
  msgid "Enter username"
781
- msgstr ""
782
 
783
  #: src/addons/moredatabase.php:240
784
  msgid "Enter username."
785
- msgstr ""
786
 
787
  #: src/addons/moredatabase.php:239
788
  msgid "Enter host"
789
- msgstr ""
790
 
791
  #: src/addons/moredatabase.php:239
792
  msgid "Enter host."
793
- msgstr ""
794
 
795
  #: src/addons/incremental.php:294
796
  msgid "No incremental backup of your files is possible, as no suitable existing backup was found to add increments to."
797
- msgstr ""
798
 
799
  #: src/addons/incremental.php:292
800
  msgid "N.B. No backup of your database will be taken in an incremental backup; if you want a database backup as well, then take that separately."
801
- msgstr ""
802
 
803
  #: src/addons/incremental.php:292
804
  msgid "Files changed since the last backup will be added as a new increment in that backup set."
805
- msgstr ""
806
 
807
  #: src/addons/googlecloud.php:1056
808
  msgid "Read more about bucket locations"
809
- msgstr ""
810
 
811
  #: src/addons/googlecloud.php:1043, src/addons/s3-enhanced.php:59
812
  msgid "Read more about storage classes"
813
- msgstr ""
814
 
815
  #: src/addons/googlecloud.php:397
816
  msgid "Authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
817
- msgstr ""
818
 
819
  #: src/addons/googlecloud.php:301, src/methods/googledrive.php:1291
820
  msgid "download: failed: file not found"
821
- msgstr ""
822
 
823
  #: src/addons/googlecloud.php:208, src/addons/googlecloud.php:213,
824
  #: src/methods/cloudfiles.php:128, src/methods/googledrive.php:1166,
825
  #: src/methods/googledrive.php:1171
826
  msgid "Error: Failed to open local file"
827
- msgstr ""
828
 
829
  #: src/addons/fixtime.php:570
830
  msgid "Start time"
831
- msgstr ""
832
 
833
  #: src/addons/fixtime.php:552
834
  msgid "Day to run backups"
835
- msgstr ""
836
 
837
  #: src/addons/fixtime.php:310
838
  msgid "Add an additional file retention rule"
839
- msgstr ""
840
 
841
  #: src/addons/fixtime.php:305
842
  msgid "Add an additional database retention rule"
843
- msgstr ""
844
 
845
  #: src/addons/backblaze.php:683, src/addons/backblaze.php:684
846
  msgid "This is needed if, and only if, your application key was a bucket-specific application key (not a master key)"
847
- msgstr ""
848
 
849
  #: src/addons/backblaze.php:682
850
  msgid "Bucket application key ID"
851
- msgstr ""
852
 
853
  #: src/addons/backblaze.php:670
854
  msgid "Master Application Key ID"
855
- msgstr ""
856
 
857
  #: src/addons/backblaze.php:649
858
  msgid "For help configuring %s, including screenshots, follow this link."
859
- msgstr ""
860
 
861
  #: src/addons/azure.php:643
862
  msgid "Azure China"
863
- msgstr ""
864
 
865
  #: src/admin.php:5689
866
  msgid "Clone region:"
867
- msgstr ""
868
 
869
  #: src/udaddons/updraftplus-addons.php:310,
870
  #: src/udaddons/updraftplus-addons.php:322
871
  msgid "go here"
872
- msgstr ""
873
 
874
  #: src/udaddons/updraftplus-addons.php:310,
875
  #: src/udaddons/updraftplus-addons.php:322
876
  msgid "If you have already renewed, then you need to allocate a licence to this site - %s"
877
- msgstr ""
878
 
879
  #: src/addons/onedrive.php:875
880
  msgid "Authentication"
881
- msgstr ""
882
 
883
  #: src/admin.php:932
884
  msgid "You must select at least one remote storage destination to upload this backup set to."
885
- msgstr ""
886
 
887
  #: src/templates/wp-admin/settings/form-contents.php:351
888
  msgid "Read more about Easy Updates Manager"
889
- msgstr ""
890
 
891
  #: src/templates/wp-admin/settings/temporary-clone.php:68
892
  msgid "You can find out more about clone keys here."
893
- msgstr ""
894
 
895
  #: src/templates/wp-admin/settings/temporary-clone.php:57
896
  msgid "Or, use an UpdraftClone key"
897
- msgstr ""
898
 
899
  #: src/restorer.php:2796
900
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
901
- msgstr ""
902
 
903
  #: src/admin.php:963
904
  msgid "UpdraftClone key is required."
905
- msgstr ""
906
 
907
  #: src/admin.php:954
908
  msgid "The preparation of the clone data has been aborted."
909
- msgstr ""
910
 
911
  #: src/addons/azure.php:642
912
  msgid "Azure Government"
913
- msgstr ""
914
 
915
  #: src/templates/wp-admin/settings/form-contents.php:351
916
  msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
917
- msgstr ""
918
 
919
  #: src/templates/wp-admin/settings/form-contents.php:350
920
  msgid "Automatic updates"
921
- msgstr ""
922
 
923
  #: src/restorer.php:2485, src/restorer.php:2527
924
  msgid "Your database user does not have permission to drop tables"
925
- msgstr ""
926
 
927
  #: src/admin.php:3103
928
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
929
- msgstr ""
930
 
931
  #: src/addons/googlecloud.php:998
932
  msgid "You must add the following as the authorized redirect URI (under \"More Options\") when asked"
933
- msgstr ""
934
 
935
  #: src/addons/googlecloud.php:992
936
  msgid "%s does not allow authorization of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
937
- msgstr ""
938
 
939
  #: src/addons/googlecloud.php:57
940
  msgid "Frankfurt"
941
- msgstr ""
942
 
943
  #: src/addons/googlecloud.php:56
944
  msgid "London"
945
- msgstr ""
946
 
947
  #: src/addons/googlecloud.php:55
948
  msgid "Belgium"
949
- msgstr ""
950
 
951
  #: src/addons/googlecloud.php:54
952
  msgid "Sydney"
953
- msgstr ""
954
 
955
  #: src/addons/googlecloud.php:53
956
  msgid "Singapore"
957
- msgstr ""
958
 
959
  #: src/addons/googlecloud.php:52
960
  msgid "Tokyo"
961
- msgstr ""
962
 
963
  #: src/addons/googlecloud.php:51
964
  msgid "Taiwan"
965
- msgstr ""
966
 
967
  #: src/addons/googlecloud.php:50
968
  msgid "Oregon"
969
- msgstr ""
970
 
971
  #: src/addons/googlecloud.php:49
972
  msgid "North Virginia"
973
- msgstr ""
974
 
975
  #: src/addons/googlecloud.php:48
976
  msgid "South Carolina"
977
- msgstr ""
978
 
979
  #: src/addons/googlecloud.php:47
980
  msgid "Iowa"
981
- msgstr ""
982
 
983
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
984
  msgid "Confirm change"
985
- msgstr ""
986
 
987
  #: src/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php:3,
988
  #: src/templates/wp-admin/settings/file-backup-exclude.php:18
989
  msgid "Add an exclusion rule"
990
- msgstr ""
991
 
992
  #: src/templates/wp-admin/settings/exclude-modal.php:59
993
  msgid "Type a file prefix"
994
- msgstr ""
995
 
996
  #: src/templates/wp-admin/settings/exclude-modal.php:56,
997
  #: src/templates/wp-admin/settings/exclude-modal.php:58
998
  msgid "All files beginning with these characters"
999
- msgstr ""
1000
 
1001
  #: src/templates/wp-admin/settings/exclude-modal.php:47
1002
  msgid "Type an extension like zip"
1003
- msgstr ""
1004
 
1005
  #: src/templates/wp-admin/settings/exclude-modal.php:28
1006
  msgid "Select a file/folder which you would like to exclude"
1007
- msgstr ""
1008
 
1009
  #: src/templates/wp-admin/settings/exclude-modal.php:15
1010
  msgid "All files beginning with given characters"
1011
- msgstr ""
1012
 
1013
  #: src/templates/wp-admin/settings/exclude-modal.php:12,
1014
  #: src/templates/wp-admin/settings/exclude-modal.php:44,
1015
  #: src/templates/wp-admin/settings/exclude-modal.php:46
1016
  msgid "All files with this extension"
1017
- msgstr ""
1018
 
1019
  #: src/templates/wp-admin/settings/exclude-modal.php:9,
1020
  #: src/templates/wp-admin/settings/exclude-modal.php:22
1021
  msgid "File/directory"
1022
- msgstr ""
1023
 
1024
  #: src/templates/wp-admin/settings/exclude-modal.php:6
1025
  msgid "Select a way to exclude files or directories from the backup"
1026
- msgstr ""
1027
 
1028
  #: src/templates/wp-admin/settings/exclude-modal.php:2
1029
  msgid "Exclude files/directories"
1030
- msgstr ""
1031
 
1032
  #: src/includes/updraftclone/temporary-clone-status.php:420
1033
  msgid "To read FAQs/documentation about UpdraftClone, go here."
1034
- msgstr ""
1035
 
1036
  #: src/includes/updraftclone/temporary-clone-status.php:419
1037
  msgid "your UpdraftPlus.com account"
1038
- msgstr ""
1039
 
1040
  #: src/includes/updraftclone/temporary-clone-status.php:419
1041
  msgid "You can check the progress here or in %s"
1042
- msgstr ""
1043
 
1044
  #: src/includes/updraftclone/temporary-clone-status.php:419
1045
  msgid "Your UpdraftClone is still setting up."
1046
- msgstr ""
1047
 
1048
  #: src/includes/updraftclone/temporary-clone-status.php:376
1049
  msgid "%s archives remain"
1050
- msgstr ""
1051
 
1052
  #: src/includes/updraftclone/temporary-clone-status.php:376
1053
  msgid "The site data has all been received, and its import has begun."
1054
- msgstr ""
1055
 
1056
  #: src/includes/updraftclone/temporary-clone-status.php:371
1057
  msgid "The sending of the site data has begun. So far %s data archives totalling %s have been received"
1058
- msgstr ""
1059
 
1060
  #: src/includes/updraftclone/temporary-clone-status.php:367
1061
  msgid "WordPress installed; now awaiting the site data to be sent."
1062
- msgstr ""
1063
 
1064
  #: src/includes/updraftclone/temporary-clone-status.php:94
1065
  msgid "Clone ready"
1066
- msgstr ""
1067
 
1068
  #: src/includes/updraftclone/temporary-clone-status.php:86
1069
  msgid "Site data has been deployed"
1070
- msgstr ""
1071
 
1072
  #: src/includes/updraftclone/temporary-clone-status.php:84,
1073
  #: src/includes/updraftclone/temporary-clone-status.php:347
1074
  msgid "Deploying site data"
1075
- msgstr ""
1076
 
1077
  #: src/includes/updraftclone/temporary-clone-status.php:75
1078
  msgid "Site data received"
1079
- msgstr ""
1080
 
1081
  #: src/includes/updraftclone/temporary-clone-status.php:73,
1082
  #: src/includes/updraftclone/temporary-clone-status.php:344
1083
  msgid "Receiving site data"
1084
- msgstr ""
1085
 
1086
  #: src/includes/updraftclone/temporary-clone-status.php:66,
1087
  #: src/includes/updraftclone/temporary-clone-status.php:341
1088
  msgid "WordPress installed"
1089
- msgstr ""
1090
 
1091
  #: src/admin.php:5791
1092
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
1093
- msgstr ""
1094
 
1095
  #: src/admin.php:3984
1096
  msgid "Exclude these from"
1097
- msgstr ""
1098
 
1099
  #: src/admin.php:962
1100
  msgid "The exclusion rule which you are trying to add already exists"
1101
- msgstr ""
1102
 
1103
  #: src/admin.php:961
1104
  msgid "Please enter a valid file name prefix"
1105
- msgstr ""
1106
 
1107
  #: src/admin.php:960
1108
  msgid "Please enter characters that begin the filename which you would like to exclude"
1109
- msgstr ""
1110
 
1111
  #: src/admin.php:959
1112
  msgid "Please enter a valid file extension"
1113
- msgstr ""
1114
 
1115
  #: src/admin.php:958
1116
  msgid "Please enter a file extension, like zip"
1117
- msgstr ""
1118
 
1119
  #: src/admin.php:957
1120
  msgid "Please select a file/folder which you would like to exclude"
1121
- msgstr ""
1122
 
1123
  #: src/admin.php:956
1124
  msgid "Are you sure you want to remove this exclusion rule?"
1125
- msgstr ""
1126
 
1127
  #: src/templates/wp-admin/advanced/site-info.php:104
1128
  msgid "log results to console"
1129
- msgstr ""
1130
 
1131
  #: src/templates/wp-admin/settings/temporary-clone.php:41
1132
  msgid "To create a temporary clone you need credit in your account."
1133
- msgstr ""
1134
 
1135
  #: src/templates/wp-admin/settings/temporary-clone.php:22
1136
  msgid "Read FAQs here."
1137
- msgstr ""
1138
 
1139
  #: src/methods/dropbox.php:303, src/methods/dropbox.php:318
1140
  msgid "failed to upload file to %s (see log file for more)"
1141
- msgstr ""
1142
 
1143
  #: src/admin.php:5787
1144
  msgid "Dashboard:"
1145
- msgstr ""
1146
 
1147
  #: src/admin.php:5786
1148
  msgid "Front page:"
1149
- msgstr ""
1150
 
1151
  #: src/admin.php:5785
1152
  msgid "Your clone has started and will be available at the following URLs once it is ready."
1153
- msgstr ""
1154
 
1155
  #: src/includes/class-commands.php:917
1156
  msgid "manage"
1157
- msgstr ""
1158
 
1159
  #: src/includes/class-commands.php:917
1160
  msgid "Current clones"
1161
- msgstr ""
1162
 
1163
  #: src/class-updraftplus.php:3307
1164
  msgid "Your clone will now deploy this data to re-create your site."
1165
- msgstr ""
1166
 
1167
  #: src/admin.php:953
1168
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
1169
- msgstr ""
1170
 
1171
  #: src/addons/migrator.php:1775
1172
  msgid "Site key"
1173
- msgstr ""
1174
 
1175
  #: src/addons/migrator.php:1766
1176
  msgid "Add a site"
1177
- msgstr ""
1178
 
1179
  #: src/addons/migrator.php:229, src/addons/migrator.php:1761,
1180
  #: src/addons/migrator.php:1782
1181
  msgid "back"
1182
- msgstr ""
1183
 
1184
  #: src/addons/migrator.php:195
1185
  msgid "Read this article to see step-by-step how it's done."
1186
- msgstr ""
1187
 
1188
  #: src/addons/migrator.php:189,
1189
  #: src/templates/wp-admin/settings/migrator-no-migrator.php:6
1190
  msgid "Migrate (create a copy of a site on hosting you control)"
1191
- msgstr ""
1192
 
1193
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:47
1194
  msgid "Manage your clones"
1195
- msgstr ""
1196
 
1197
  #: src/methods/dreamobjects.php:20
1198
  msgid "Closing 1st October 2018"
1199
- msgstr ""
1200
 
1201
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:46
1202
  msgid "Your clone will renew on:"
1203
- msgstr ""
1204
 
1205
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:32
1206
  msgid "Unable to get renew date"
1207
- msgstr ""
1208
 
1209
  #: src/admin.php:912
1210
  msgid "The backup was aborted"
1211
- msgstr ""
1212
 
1213
  #: src/addons/onedrive.php:1205
1214
  msgid "OneDrive Germany"
1215
- msgstr ""
1216
 
1217
  #: src/addons/onedrive.php:1204
1218
  msgid "OneDrive International"
1219
- msgstr ""
1220
 
1221
  #: src/addons/onedrive.php:1201
1222
  msgid "Account type"
1223
- msgstr ""
1224
 
1225
  #: src/templates/wp-admin/settings/temporary-clone.php:56,
1226
  #: src/templates/wp-admin/settings/temporary-clone.php:76
1227
  msgid "I accept the UpdraftClone terms and conditions"
1228
- msgstr ""
1229
 
1230
  #: src/templates/wp-admin/settings/temporary-clone.php:56
1231
  msgid "Not got an account? Get one by buying some tokens here."
1232
- msgstr ""
1233
 
1234
  #: src/templates/wp-admin/settings/temporary-clone.php:22,
1235
  #: src/templates/wp-admin/settings/temporary-clone.php:41,
1236
  #: src/templates/wp-admin/settings/temporary-clone.php:54
1237
  msgid "You can buy UpdraftClone tokens from our shop, here."
1238
- msgstr ""
1239
 
1240
  #: src/templates/wp-admin/settings/temporary-clone.php:54
1241
  msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
1242
- msgstr ""
1243
 
1244
  #: src/templates/wp-admin/settings/temporary-clone.php:32
1245
  msgid "If you want, test upgrading to a different PHP or WP version."
1246
- msgstr ""
1247
 
1248
  #: src/templates/wp-admin/settings/temporary-clone.php:32
1249
  msgid "Flexible"
1250
- msgstr ""
1251
 
1252
  #: src/templates/wp-admin/settings/temporary-clone.php:31
1253
  msgid "Takes just the time needed to create a backup and send it."
1254
- msgstr ""
1255
 
1256
  #: src/templates/wp-admin/settings/temporary-clone.php:31
1257
  msgid "Fast"
1258
- msgstr ""
1259
 
1260
  #: src/templates/wp-admin/settings/temporary-clone.php:30
1261
  msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
1262
- msgstr ""
1263
 
1264
  #: src/templates/wp-admin/settings/temporary-clone.php:30
1265
  msgid "Secure"
1266
- msgstr ""
1267
 
1268
  #: src/templates/wp-admin/settings/temporary-clone.php:29
1269
  msgid "Runs on capacity from a leading cloud computing provider."
1270
- msgstr ""
1271
 
1272
  #: src/templates/wp-admin/settings/temporary-clone.php:29
1273
  msgid "Reliable"
1274
- msgstr ""
1275
 
1276
  #: src/templates/wp-admin/settings/temporary-clone.php:28
1277
  msgid "Press the buttons... UpdraftClone does the work."
1278
- msgstr ""
1279
 
1280
  #: src/templates/wp-admin/settings/temporary-clone.php:28
1281
  msgid "Easy"
1282
- msgstr ""
1283
 
1284
  #: src/templates/wp-admin/settings/temporary-clone.php:22
1285
  msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test things on your live site, you can UpdraftClone it, and then throw away your clone when done."
1286
- msgstr ""
1287
 
1288
  #: src/templates/wp-admin/settings/temporary-clone.php:10,
1289
  #: src/templates/wp-admin/settings/temporary-clone.php:39
1290
  msgid "Create a temporary clone on our servers (UpdraftClone)"
1291
- msgstr ""
1292
 
1293
  #: src/templates/wp-admin/settings/tab-addons.php:30
1294
  msgid "WooCommerce plugins"
1295
- msgstr ""
1296
 
1297
  #: src/templates/wp-admin/advanced/wipe-settings.php:14
1298
  msgid "Reset tour"
1299
- msgstr ""
1300
 
1301
  #: src/templates/wp-admin/advanced/wipe-settings.php:13
1302
  msgid "Press this button to take a tour of the plugin."
1303
- msgstr ""
1304
 
1305
  #: src/includes/updraftplus-tour.php:255
1306
  msgid "Take Tour"
1307
- msgstr ""
1308
 
1309
  #: src/includes/updraftplus-tour.php:205
1310
  msgid "Log in here to enable all the features you have access to."
1311
- msgstr ""
1312
 
1313
  #: src/includes/updraftplus-tour.php:204
1314
  msgid "Connect to updraftplus.com"
1315
- msgstr ""
1316
 
1317
  #: src/includes/updraftplus-tour.php:195
1318
  msgid "Thank you for taking the tour. You are now all set to use UpdraftPlus!"
1319
- msgstr ""
1320
 
1321
  #: src/includes/updraftplus-tour.php:168
1322
  msgctxt "Translators: UpdraftVault is a product name and should not be translated."
1323
  msgid "To get started with UpdraftVault, select one of the options below:"
1324
- msgstr ""
1325
 
1326
  #: src/includes/updraftplus-tour.php:164,
1327
  #: src/includes/updraftplus-tour.php:197, src/includes/updraftplus-tour.php:208
1328
  msgid "Finish"
1329
- msgstr ""
1330
 
1331
  #: src/includes/updraftplus-tour.php:161
1332
  msgid "UpdraftPlus Premium has many more exciting features!"
1333
- msgstr ""
1334
 
1335
  #: src/includes/updraftplus-tour.php:160
1336
  msgid "UpdraftPlus Premium and addons"
1337
- msgstr ""
1338
 
1339
  #: src/includes/updraftplus-tour.php:158, src/includes/updraftplus-tour.php:202
1340
  msgid "Thank you for taking the tour."
1341
- msgstr ""
1342
 
1343
  #: src/includes/updraftplus-tour.php:153
1344
  msgid "Do you have a few more WordPress sites you want to backup? If yes you can save hours by controlling all your backups in one place from UpdraftCentral."
1345
- msgstr ""
1346
 
1347
  #: src/includes/updraftplus-tour.php:152
1348
  msgid "Control all your backups in one place"
1349
- msgstr ""
1350
 
1351
  #: src/includes/updraftplus-tour.php:147
1352
  msgid "Congratulations, your settings have successfully been saved."
1353
- msgstr ""
1354
 
1355
  #: src/includes/updraftplus-tour.php:143
1356
  msgid "Press here to save your settings."
1357
- msgstr ""
1358
 
1359
  #: src/includes/updraftplus-tour.php:142, src/includes/updraftplus-tour.php:146
1360
  msgid "Save"
1361
- msgstr ""
1362
 
1363
  #: src/includes/updraftplus-tour.php:139
1364
  msgid "Look through the other settings here, making any changes you’d like."
1365
- msgstr ""
1366
 
1367
  #: src/includes/updraftplus-tour.php:138
1368
  msgid "More settings"
1369
- msgstr ""
1370
 
1371
  #: src/admin.php:970, src/includes/updraftplus-tour.php:133,
1372
  #: src/includes/updraftplus-tour.php:161,
1373
  #: src/includes/updraftplus-tour.php:185,
1374
  #: src/templates/wp-admin/settings/temporary-clone.php:22
1375
  msgid "Find out more here."
1376
- msgstr ""
1377
 
1378
  #: src/admin.php:969, src/includes/updraftplus-tour.php:132,
1379
  #: src/includes/updraftplus-tour.php:184
1380
  msgid "UpdraftVault is our remote storage which works seamlessly with UpdraftPlus."
1381
- msgstr ""
1382
 
1383
  #: src/includes/updraftplus-tour.php:129, src/includes/updraftplus-tour.php:181
1384
  msgid "Now select a remote storage destination to protect against server-wide threats. If not, your backups remain on the same server as your site."
1385
- msgstr ""
1386
 
1387
  #: src/includes/updraftplus-tour.php:125
1388
  msgid "Choose the schedule that you want your backups to run on."
1389
- msgstr ""
1390
 
1391
  #: src/includes/updraftplus-tour.php:124
1392
  msgid "Choose your backup schedule"
1393
- msgstr ""
1394
 
1395
  #: src/includes/updraftplus-tour.php:120
1396
  msgid "Congratulations! Your first backup is running."
1397
- msgstr ""
1398
 
1399
  #: src/includes/updraftplus-tour.php:116, src/includes/updraftplus-tour.php:121
1400
  msgid "Go to settings"
1401
- msgstr ""
1402
 
1403
  #: src/includes/updraftplus-tour.php:115, src/includes/updraftplus-tour.php:120
1404
  msgctxt "Translators: %s is a bold tag."
1405
  msgid "But to avoid server-wide threats backup regularly to remote cloud storage in %s settings %s"
1406
- msgstr ""
1407
 
1408
  #: src/includes/updraftplus-tour.php:115
1409
  msgid "Press here to run a manual backup."
1410
- msgstr ""
1411
 
1412
  #: src/includes/updraftplus-tour.php:114, src/includes/updraftplus-tour.php:119
1413
  msgid "Creating your first backup"
1414
- msgstr ""
1415
 
1416
  #: src/includes/updraftplus-tour.php:111
1417
  msgid "Select what you want to backup"
1418
- msgstr ""
1419
 
1420
  #: src/includes/updraftplus-tour.php:110
1421
  msgid "Manual backup options"
1422
- msgstr ""
1423
 
1424
  #: src/includes/updraftplus-tour.php:107
1425
  msgctxt "updraftplus"
1426
  msgid "To make a simple backup to your server, press this button. Or to setup regular backups and remote storage, go to %s settings %s"
1427
- msgstr ""
1428
 
1429
  #: src/includes/updraftplus-tour.php:106
1430
  msgid "Your first backup"
1431
- msgstr ""
1432
 
1433
  #: src/includes/updraftplus-tour.php:102
1434
  msgid "Press here to start!"
1435
- msgstr ""
1436
 
1437
  #: src/includes/updraftplus-tour.php:99
1438
  msgid "the world’s most trusted backup plugin!"
1439
- msgstr ""
1440
 
1441
  #: src/includes/updraftplus-tour.php:99
1442
  msgid "Welcome to UpdraftPlus"
1443
- msgstr ""
1444
 
1445
  #: src/includes/updraftplus-tour.php:98
1446
  msgid "UpdraftPlus settings"
1447
- msgstr ""
1448
 
1449
  #: src/includes/updraftplus-tour.php:95
1450
  msgid "End tour"
1451
- msgstr ""
1452
 
1453
  #: src/includes/updraftplus-tour.php:94
1454
  msgid "Skip this step"
1455
- msgstr ""
1456
 
1457
  #: src/includes/updraftplus-tour.php:93
1458
  msgid "Back"
1459
- msgstr ""
1460
 
1461
  #: src/includes/class-commands.php:899
1462
  msgid "You can buy more temporary clone tokens here."
1463
- msgstr ""
1464
 
1465
  #: src/admin.php:5741
1466
  msgid "Forbid non-administrators to login to WordPress on your clone"
1467
- msgstr ""
1468
 
1469
  #: src/templates/wp-admin/settings/temporary-clone.php:35
1470
  msgid "Temporary clones of WordPress subdomain multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
1471
- msgstr ""
1472
 
1473
  #: src/templates/wp-admin/settings/tab-addons.php:286
1474
  msgid "Premium / Find out more"
1475
- msgstr ""
1476
 
1477
  #: src/templates/wp-admin/settings/tab-addons.php:29
1478
  msgid "Other great plugins"
1479
- msgstr ""
1480
 
1481
  #: src/includes/class-commands.php:962
1482
  msgid "The creation of your data for creating the clone should now begin."
1483
- msgstr ""
1484
 
1485
  #: src/admin.php:5789, src/admin.php:5792
1486
  msgid "You can find your temporary clone information in your updraftplus.com account here."
1487
- msgstr ""
1488
 
1489
  #: src/class-updraftplus.php:4845
1490
  msgid "Choose a default for each table"
1491
- msgstr ""
1492
 
1493
  #: src/admin.php:3418
1494
  msgid "Sending files to remote site"
1495
- msgstr ""
1496
 
1497
  #: src/admin.php:3413
1498
  msgid "Clone server being provisioned and booted (can take several minutes)"
1499
- msgstr ""
1500
 
1501
  #: src/admin.php:952
1502
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
1503
- msgstr ""
1504
 
1505
  #: src/addons/migrator.php:233
1506
  msgid "To import a backup set, go to the \"Existing backups\" section in the \"Backup/Restore\" tab"
1507
- msgstr ""
1508
 
1509
  #: src/admin.php:2893
1510
  msgid "Backup / Restore"
1511
- msgstr ""
1512
 
1513
  #: src/admin.php:662, src/admin.php:4748
1514
  msgid "Backup"
1515
- msgstr ""
1516
 
1517
  #: src/addons/wp-cli.php:407
1518
  msgid "Latest full backup found; identifier:"
1519
- msgstr ""
1520
 
1521
  #: src/addons/wp-cli.php:406
1522
  msgid "No previous full backup found."
1523
- msgstr ""
1524
 
1525
  #: src/templates/wp-admin/settings/existing-backups-table.php:93
1526
  msgid "Remote storage: %s"
1527
- msgstr ""
1528
 
1529
  #: src/addons/wp-cli.php:101
1530
  msgid "No previous backup found to add an increment to."
1531
- msgstr ""
1532
 
1533
  #: src/restorer.php:2802
1534
  msgid "Requested character set (%s) is not present - changing to %s."
1535
- msgstr ""
1536
 
1537
  #: src/includes/updraftclone/temporary-clone-user-notice.php:32
1538
  msgid "Allow only administrators to log in"
1539
- msgstr ""
1540
 
1541
  #: src/includes/updraftclone/temporary-clone-user-notice.php:31
1542
  msgid "You can forbid non-admins logins to this cloned site by checking the checkbox below"
1543
- msgstr ""
1544
 
1545
  #: src/includes/updraftclone/temporary-clone-user-notice.php:30
1546
  msgid "UpdraftPlus temporary clone user login settings:"
1547
- msgstr ""
1548
 
1549
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:44
1550
  msgid "Welcome to your UpdraftClone (temporary clone)"
1551
- msgstr ""
1552
 
1553
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:43
1554
  msgid "Refresh connection"
1555
- msgstr ""
1556
 
1557
  #: src/addons/reporting.php:509
1558
  msgid "Log all messages to syslog"
1559
- msgstr ""
1560
 
1561
  #: src/addons/sftp.php:597, src/addons/sftp.php:599
1562
  msgid "The server's RSA key %s fingerprint: %s."
1563
- msgstr ""
1564
 
1565
  #: src/addons/sftp.php:593
1566
  msgid "Failed: We are unable to match the fingerprint. However, we were able to log in and move to the indicated directory and successfully create a file in that location."
1567
- msgstr ""
1568
 
1569
  #: src/addons/sftp.php:473, src/addons/sftp.php:474
1570
  msgid "MD5 (128-bit) fingerprint, in hex format - should have the same length and general appearance as this (colons optional): 73:51:43:b1:b5:fc:8b:b7:0a:3a:a9:b1:0f:69:73:a8. Using a fingerprint is not essential, but you are not secure against %s if you do not use one"
1571
- msgstr ""
1572
 
1573
  #: src/addons/sftp.php:471
1574
  msgid "RSA fingerprint"
1575
- msgstr ""
1576
 
1577
  #: src/addons/sftp.php:87
1578
  msgid "Fingerprints don't match."
1579
- msgstr ""
1580
 
1581
  #: src/templates/wp-admin/settings/migrator-no-migrator.php:17
1582
  msgid "More information here."
1583
- msgstr ""
1584
 
1585
  #: src/admin.php:670, src/admin.php:2894
1586
  msgid "Migrate / Clone"
1587
- msgstr ""
1588
 
1589
  #: src/admin.php:4115, src/templates/wp-admin/settings/backupnow-modal.php:60,
1590
  #: src/templates/wp-admin/settings/existing-backups-table.php:77,
1591
  #: src/templates/wp-admin/settings/existing-backups-table.php:80
1592
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
1593
- msgstr ""
1594
 
1595
  #: src/addons/wp-cli.php:767
1596
  msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
1597
- msgstr ""
1598
 
1599
  #: src/restorer.php:253
1600
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
1601
- msgstr ""
1602
 
1603
  #: src/addons/wp-cli.php:716, src/addons/wp-cli.php:720
1604
  msgid "This is not an incremental backup"
1605
- msgstr ""
1606
 
1607
  #: src/addons/wp-cli.php:637
1608
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
1609
- msgstr ""
1610
 
1611
  #: src/class-updraftplus.php:205
1612
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
1613
- msgstr ""
1614
 
1615
  #: src/admin.php:5724, src/admin.php:5765
1616
  msgid "(current version)"
1617
- msgstr ""
1618
 
1619
  #: src/admin.php:3893
1620
  msgid "press here"
1621
- msgstr ""
1622
 
1623
  #: src/addons/onedrive.php:1166, src/methods/dropbox.php:585,
1624
  #: src/methods/googledrive.php:1343
1625
  msgid "this privacy policy"
1626
- msgstr ""
1627
 
1628
  #: src/addons/onedrive.php:1166, src/methods/dropbox.php:585,
1629
  #: src/methods/googledrive.php:1343
1630
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
1631
- msgstr ""
1632
 
1633
  #: src/addons/incremental.php:363
1634
  msgid "Tell me more"
1635
- msgstr ""
1636
 
1637
  #: src/addons/incremental.php:351
1638
  msgid "And then add an incremental backup"
1639
- msgstr ""
1640
 
1641
  #: src/addons/incremental.php:329, src/admin.php:3867, src/updraftplus.php:99
1642
  msgid "Every hour"
1643
- msgstr ""
1644
 
1645
  #: src/includes/class-commands.php:910
1646
  msgid "Create clone"
1647
- msgstr ""
1648
 
1649
  #: src/includes/class-commands.php:898, src/includes/class-commands.php:948
1650
  msgid "Available temporary clone tokens:"
1651
- msgstr ""
1652
 
1653
  #: src/admin.php:3027, src/includes/class-commands.php:911,
1654
  #: src/includes/class-commands.php:960, src/includes/class-commands.php:962,
1655
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
1656
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
1657
  msgid "Processing"
1658
- msgstr ""
1659
 
1660
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:70
1661
  msgid "Connect to UpdraftCentral Cloud"
1662
- msgstr ""
1663
 
1664
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
1665
  msgid "UpdraftPlus.Com account terms and policies"
1666
- msgstr ""
1667
 
1668
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
1669
  msgid "I consent to %s"
1670
- msgstr ""
1671
 
1672
  #: src/admin.php:3140,
1673
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
1674
  msgid "One Time Password (check your OTP app to get this password)"
1675
- msgstr ""
1676
 
1677
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:46
1678
  msgid "Login or register with this email address"
1679
- msgstr ""
1680
 
1681
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:34
1682
  msgid "If not, then choose your details and a new account will be registered."
1683
- msgstr ""
1684
 
1685
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:33
1686
  msgid "If you already have an updraftplus.com account, then enter the details below."
1687
- msgstr ""
1688
 
1689
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:31
1690
  msgid "Add this website to your UpdraftCentral Cloud dashboard at updraftplus.com."
1691
- msgstr ""
1692
 
1693
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:29
1694
  msgid "Login or register for UpdraftCentral Cloud"
1695
- msgstr ""
1696
 
1697
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:20
1698
  msgid "Go here to connect it."
1699
- msgstr ""
1700
 
1701
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:20
1702
  msgid "Or if you prefer to self-host, then you can get the self-hosted version here."
1703
- msgstr ""
1704
 
1705
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:17
1706
  msgid "Connect this site to UpdraftCentral Cloud"
1707
- msgstr ""
1708
 
1709
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:14
1710
  msgid "If you have a few sites, it'll save hours. It's free to use or try up to 5 sites."
1711
- msgstr ""
1712
 
1713
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:12
1714
  msgid "Backup, update and manage all your WordPress sites from one dashboard"
1715
- msgstr ""
1716
 
1717
  #: src/includes/updraftcentral.php:21, src/includes/updraftplus-clone.php:21
1718
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
1719
- msgstr ""
1720
 
1721
  #: src/admin.php:5652
1722
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
1723
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
1724
- msgstr[0] ""
1725
- msgstr[1] ""
1726
 
1727
  #: src/admin.php:950
1728
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
1729
- msgstr ""
1730
 
1731
  #: src/admin.php:949
1732
  msgid "You can also close this wizard."
1733
- msgstr ""
1734
 
1735
  #: src/admin.php:948
1736
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
1737
- msgstr ""
1738
 
1739
  #: src/admin.php:947
1740
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
1741
- msgstr ""
1742
 
1743
  #: src/admin.php:946
1744
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
1745
- msgstr ""
1746
 
1747
  #: src/admin.php:945
1748
  msgid "Perhaps you would want to login instead."
1749
- msgstr ""
1750
 
1751
  #: src/admin.php:943
1752
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
1753
- msgstr ""
1754
 
1755
  #: src/admin.php:942
1756
  msgid "An email is required and needs to be in a valid format."
1757
- msgstr ""
1758
 
1759
  #: src/admin.php:941
1760
  msgid "Both email and password fields are required."
1761
- msgstr ""
1762
 
1763
  #: src/admin.php:940
1764
  msgid "Registration successful."
1765
- msgstr ""
1766
 
1767
  #: src/admin.php:938, src/admin.php:940
1768
  msgid "Please follow this link to open %s in a new window."
1769
- msgstr ""
1770
 
1771
  #: src/admin.php:938
1772
  msgid "Login successful."
1773
- msgstr ""
1774
 
1775
  #: src/admin.php:935,
1776
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
1777
  msgid "UpdraftCentral Cloud"
1778
- msgstr ""
1779
 
1780
  #: src/admin.php:504
1781
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
1782
- msgstr ""
1783
 
1784
  #: src/admin.php:503
1785
  msgid "Dismiss all UpdraftPlus news"
1786
- msgstr ""
1787
 
1788
  #: src/admin.php:502
1789
  msgid "UpdraftPlus News"
1790
- msgstr ""
1791
 
1792
  #: src/addons/wp-cli.php:532
1793
  msgid "Migration key created:"
1794
- msgstr ""
1795
 
1796
  #: src/addons/wp-cli.php:522
1797
  msgid "Missing parameters"
1798
- msgstr ""
1799
 
1800
  #: src/addons/azure.php:641
1801
  msgid "Azure Germany"
1802
- msgstr ""
1803
 
1804
  #: src/addons/azure.php:640
1805
  msgid "Azure Global"
1806
- msgstr ""
1807
 
1808
  #: src/addons/azure.php:637
1809
  msgid "Azure Account"
1810
- msgstr ""
1811
 
1812
  #: src/admin.php:934
1813
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
1814
- msgstr ""
1815
 
1816
  #: src/templates/wp-admin/settings/upload-backups-modal.php:4
1817
  msgid "Select the remote storage destinations you want to upload this backup set to"
1818
- msgstr ""
1819
 
1820
  #: src/templates/wp-admin/settings/upload-backups-modal.php:3
1821
  msgid "Upload backup"
1822
- msgstr ""
1823
 
1824
  #: src/admin.php:4392
1825
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
1826
- msgstr ""
1827
 
1828
  #: src/admin.php:933
1829
  msgid "(already uploaded)"
1830
- msgstr ""
1831
 
1832
  #: src/admin.php:931
1833
  msgid "Local backup upload has started; please check the log file to see the upload progress"
1834
- msgstr ""
1835
 
1836
  #: src/admin.php:852, src/admin.php:4392
1837
  msgid "Upload"
1838
- msgstr ""
1839
 
1840
  #: src/addons/reporting.php:543, src/admin.php:802
1841
  msgid "Only email the database backup"
1842
- msgstr ""
1843
 
1844
  #: src/addons/reporting.php:543
1845
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
1846
- msgstr ""
1847
 
1848
  #: src/addons/reporting.php:543
1849
  msgid "Use this option to only send database backups when sending to email, and skip other components."
1850
- msgstr ""
1851
 
1852
  #: src/addons/migrator.php:275
1853
  msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
1854
- msgstr ""
1855
 
1856
  #: src/addons/incremental.php:92
1857
  msgid "Increments exist at: %s"
1858
- msgstr ""
1859
 
1860
  #: src/addons/incremental.php:90, src/addons/incremental.php:92
1861
  msgid "(latest increment: %s)"
1862
- msgstr ""
1863
 
1864
  #: src/addons/s3-enhanced.php:369
1865
  msgid "Europe (Paris)"
1866
- msgstr ""
1867
 
1868
  #: src/templates/wp-admin/settings/tab-addons.php:193
1869
  msgid "WP-CLI commands to take, list and delete backups."
1870
- msgstr ""
1871
 
1872
  #: src/templates/wp-admin/settings/tab-addons.php:192
1873
  msgid "WP-CLI support"
1874
- msgstr ""
1875
 
1876
  #: src/templates/wp-admin/settings/tab-addons.php:191
1877
  msgid "WP CLI"
1878
- msgstr ""
1879
 
1880
  #: src/addons/wp-cli.php:266
1881
  msgid "Invalid Job Id"
1882
- msgstr ""
1883
 
1884
  #: src/addons/wp-cli.php:205
1885
  msgid "Backup has been started successfully. You can see the last log message by running the following command: \"%s\""
1886
- msgstr ""
1887
 
1888
  #: src/addons/wp-cli.php:195
1889
  msgid "Recently started backup job id: %s"
1890
- msgstr ""
1891
 
1892
  #: src/addons/wp-cli.php:91, src/addons/wp-cli.php:488,
1893
  #: src/addons/wp-cli.php:612, src/addons/wp-cli.php:696,
1894
  #: src/addons/wp-cli.php:719
1895
  msgid "The given value for the '%s' option is not valid"
1896
- msgstr ""
1897
 
1898
  #: src/addons/migrator.php:1785
1899
  msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
1900
- msgstr ""
1901
 
1902
  #: src/addons/migrator.php:1771
1903
  msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
1904
- msgstr ""
1905
 
1906
  #: src/addons/migrator.php:1771
1907
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1908
- msgstr ""
1909
 
1910
  #: src/includes/class-remote-send.php:517
1911
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1912
- msgstr ""
1913
 
1914
  #: src/templates/wp-admin/advanced/lock-admin.php:14
1915
  msgid "This functionality has been disabled by the site administrator."
1916
- msgstr ""
1917
 
1918
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
1919
  msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
1920
- msgstr ""
1921
 
1922
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
1923
  msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
1924
- msgstr ""
1925
 
1926
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
1927
  msgid "Super-charge and secure your WordPress site with our other top plugins:"
1928
- msgstr ""
1929
 
1930
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
1931
  msgid "Thank you for installing UpdraftPlus!"
1932
- msgstr ""
1933
 
1934
  #: src/includes/class-remote-send.php:634
1935
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1936
- msgstr ""
1937
 
1938
  #: src/restorer.php:736
1939
  msgid "Failed to read from the working directory."
1940
- msgstr ""
1941
 
1942
  #: src/restorer.php:735
1943
  msgid "Failed to find a manifest file in the backup."
1944
- msgstr ""
1945
 
1946
  #: src/restorer.php:734
1947
  msgid "Failed to read the manifest file from backup."
1948
- msgstr ""
1949
 
1950
  #: src/addons/morefiles.php:81
1951
  msgid "(None configured)"
1952
- msgstr ""
1953
 
1954
  #: src/methods/backup-module.php:541
1955
  msgid "Ensure you are logged into the correct account before continuing."
1956
- msgstr ""
1957
 
1958
  #: src/admin.php:5297
1959
  msgid "Remote storage method and instance id are required for authentication."
1960
- msgstr ""
1961
 
1962
  #: src/admin.php:5293
1963
  msgid "authentication error"
1964
- msgstr ""
1965
 
1966
  #: src/addons/multisite.php:44, src/options.php:38
1967
  msgid "(Nothing has been logged yet)"
1968
- msgstr ""
1969
 
1970
  #: src/addons/migrator.php:439
1971
  msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
1972
- msgstr ""
1973
 
1974
  #: src/addons/migrator.php:428
1975
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use below search and replace so that the non-https links are automatically replaced."
1976
- msgstr ""
1977
 
1978
  #: src/addons/migrator.php:417
1979
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use below search and replace to search/replace the site address so that the site can be visited without https."
1980
- msgstr ""
1981
 
1982
  #: src/addons/morestorage.php:104
1983
  msgid "Add another %s account..."
1984
- msgstr ""
1985
 
1986
  #: src/addons/morestorage.php:83
1987
  msgid "Delete these settings"
1988
- msgstr ""
1989
 
1990
  #: src/addons/morestorage.php:81, src/admin.php:930
1991
  msgid "Currently disabled"
1992
- msgstr ""
1993
 
1994
  #: src/addons/morestorage.php:81, src/admin.php:929
1995
  msgid "Currently enabled"
1996
- msgstr ""
1997
 
1998
  #: src/templates/wp-admin/settings/tab-addons.php:48
1999
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
2000
- msgstr ""
2001
 
2002
  #: src/templates/wp-admin/settings/tab-addons.php:48
2003
  msgid "You are currently using the free version of UpdraftPlus."
2004
- msgstr ""
2005
 
2006
  #: src/templates/wp-admin/settings/tab-addons.php:38
2007
  msgid "Get it here"
2008
- msgstr ""
2009
 
2010
  #: src/methods/stream-base.php:330
2011
  msgid "Download chunk size successfully changed to %d"
2012
- msgstr ""
2013
 
2014
  #: src/methods/stream-base.php:327
2015
  msgid "Download chunk size failed to change to %d"
2016
- msgstr ""
2017
 
2018
  #: src/includes/updraftplus-notices.php:203
2019
  msgid "With Metaslider, you can easily add style and flare with beautifully-designed sliders."
2020
- msgstr ""
2021
 
2022
  #: src/templates/wp-admin/settings/existing-backups-table.php:91
2023
  msgid "remote site"
2024
- msgstr ""
2025
 
2026
  #: src/addons/backblaze.php:495
2027
  msgid "Invalid bucket name"
2028
- msgstr ""
2029
 
2030
  #: src/restorer.php:2297
2031
  msgid "Requested table collation (%1$s) is not present - changing to %2$s."
2032
  msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
2033
- msgstr[0] ""
2034
- msgstr[1] ""
2035
 
2036
  #: src/class-updraftplus.php:4822
2037
  msgid "Your chosen replacement collation"
2038
- msgstr ""
2039
 
2040
  #: src/class-updraftplus.php:4799
2041
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
2042
- msgstr ""
2043
 
2044
  #: src/class-updraftplus.php:4799
2045
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
2046
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
2047
- msgstr[0] ""
2048
- msgstr[1] ""
2049
 
2050
  #: src/addons/migrator.php:561
2051
  msgid "Database restoration options:"
2052
- msgstr ""
2053
 
2054
  #: src/addons/migrator.php:406
2055
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
2056
- msgstr ""
2057
 
2058
  #: src/addons/azure.php:633
2059
  msgid "%s Prefix"
2060
- msgstr ""
2061
 
2062
  #: src/addons/azure.php:628
2063
  msgid "%s Container"
2064
- msgstr ""
2065
 
2066
  #: src/addons/azure.php:623
2067
  msgid "%s Key"
2068
- msgstr ""
2069
 
2070
  #: src/addons/azure.php:619
2071
  msgid "%s Account Name"
2072
- msgstr ""
2073
 
2074
  #: src/addons/googlecloud.php:695
2075
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
2076
- msgstr ""
2077
 
2078
  #: src/addons/googlecloud.php:693
2079
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
2080
- msgstr ""
2081
 
2082
  #: src/central/bootstrap.php:541
2083
  msgid "URL for the site of your UpdraftCentral dashboard"
2084
- msgstr ""
2085
 
2086
  #: src/central/bootstrap.php:539
2087
  msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
2088
- msgstr ""
2089
 
2090
  #: src/central/bootstrap.php:536
2091
  msgid "A website where you have installed %s"
2092
- msgstr ""
2093
 
2094
  #: src/central/bootstrap.php:534
2095
  msgid "Self-hosted dashboard"
2096
- msgstr ""
2097
 
2098
  #: src/central/bootstrap.php:263
2099
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
2100
- msgstr ""
2101
 
2102
  #: src/addons/migrator.php:957
2103
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
2104
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
2105
- msgstr[0] ""
2106
- msgstr[1] ""
2107
 
2108
  #: src/restorer.php:2238
2109
  msgid "Requested table character set (%s) is not present - changing to %s."
2110
- msgstr ""
2111
 
2112
  #: src/class-updraftplus.php:4775
2113
  msgid "Your chosen character set to use instead:"
2114
- msgstr ""
2115
 
2116
  #: src/class-updraftplus.php:4765
2117
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
2118
- msgstr ""
2119
 
2120
  #: src/class-updraftplus.php:4765
2121
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
2122
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
2123
- msgstr[0] ""
2124
- msgstr[1] ""
2125
 
2126
  #: src/central/bootstrap.php:625
2127
  msgid "Create another key"
@@ -2129,7 +2129,7 @@ msgstr "Създай друг ключ"
2129
 
2130
  #: src/central/bootstrap.php:548
2131
  msgid "UpdraftCentral dashboard connection details"
2132
- msgstr ""
2133
 
2134
  #: src/central/bootstrap.php:542, src/includes/updraftplus-tour.php:92,
2135
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:100
@@ -2138,35 +2138,35 @@ msgstr "Следващ"
2138
 
2139
  #: src/central/bootstrap.php:528
2140
  msgid "an account"
2141
- msgstr ""
2142
 
2143
  #: src/central/bootstrap.php:528
2144
  msgid "i.e. if you have %s there"
2145
- msgstr ""
2146
 
2147
  #: src/central/bootstrap.php:517
2148
  msgid "Connect this site to an UpdraftCentral dashboard found at..."
2149
- msgstr ""
2150
 
2151
  #: src/central/bootstrap.php:486
2152
  msgid "Manage existing keys (%d)..."
2153
- msgstr ""
2154
 
2155
  #: src/central/bootstrap.php:436
2156
  msgid "There are no UpdraftCentral dashboards that can currently control this site."
2157
- msgstr ""
2158
 
2159
  #: src/central/bootstrap.php:265
2160
  msgid "You can now control this site via your UpdraftCentral dashboard at %s."
2161
- msgstr ""
2162
 
2163
  #: src/central/bootstrap.php:263
2164
  msgid "Detailed instructions for this can be found at %s"
2165
- msgstr ""
2166
 
2167
  #: src/central/bootstrap.php:263
2168
  msgid "You now need to copy the key below and enter it at your %s."
2169
- msgstr ""
2170
 
2171
  #: src/admin.php:924
2172
  msgid "Please enter a valid URL e.g http://example.com"
@@ -2174,31 +2174,31 @@ msgstr "Моля въведете валиден адрес - пример http:
2174
 
2175
  #: src/addons/backblaze.php:691
2176
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
2177
- msgstr ""
2178
 
2179
  #: src/addons/backblaze.php:690
2180
  msgid "some/path"
2181
- msgstr ""
2182
 
2183
  #: src/addons/backblaze.php:690
2184
  msgid "Bucket name"
2185
- msgstr ""
2186
 
2187
  #: src/addons/backblaze.php:689
2188
  msgid "Backup path"
2189
- msgstr ""
2190
 
2191
  #: src/addons/backblaze.php:677
2192
  msgid "Application key"
2193
- msgstr ""
2194
 
2195
  #: src/addons/backblaze.php:672, src/addons/backblaze.php:672
2196
  msgid "here"
2197
- msgstr ""
2198
 
2199
  #: src/addons/backblaze.php:672
2200
  msgid "Get these settings from %s, or sign up %s."
2201
- msgstr ""
2202
 
2203
  #: src/addons/backblaze.php:473
2204
  msgid "Account Key"
@@ -2210,226 +2210,226 @@ msgstr "Акаунт ID"
2210
 
2211
  #: src/class-updraftplus.php:4597
2212
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
2213
- msgstr ""
2214
 
2215
  #: src/class-updraftplus.php:4595, src/class-updraftplus.php:4597
2216
  msgid "the migrator add-on"
2217
- msgstr ""
2218
 
2219
  #: src/class-updraftplus.php:4595
2220
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
2221
- msgstr ""
2222
 
2223
  #: src/class-updraftplus.php:4593
2224
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
2225
- msgstr ""
2226
 
2227
  #: src/class-updraftplus.php:4588
2228
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
2229
- msgstr ""
2230
 
2231
  #: src/methods/googledrive.php:1412
2232
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
2233
- msgstr ""
2234
 
2235
  #: src/methods/backup-module.php:595
2236
  msgid "Follow this link to remove these settings for %s."
2237
- msgstr ""
2238
 
2239
  #: src/admin.php:903
2240
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
2241
- msgstr ""
2242
 
2243
  #: src/addons/migrator.php:1545, src/backup.php:478, src/backup.php:2052,
2244
  #: src/class-updraftplus.php:2310, src/class-updraftplus.php:2375,
2245
  #: src/includes/class-storage-methods-interface.php:375, src/restorer.php:589
2246
  msgid "A PHP fatal error (%s) has occurred: %s"
2247
- msgstr ""
2248
 
2249
  #: src/addons/migrator.php:1538, src/backup.php:472, src/backup.php:2043,
2250
  #: src/class-updraftplus.php:2301, src/class-updraftplus.php:2368,
2251
  #: src/includes/class-storage-methods-interface.php:366, src/restorer.php:575
2252
  msgid "A PHP exception (%s) has occurred: %s"
2253
- msgstr ""
2254
 
2255
  #: src/addons/googlecloud.php:54
2256
  msgid "South-east Australia"
2257
- msgstr ""
2258
 
2259
  #: src/addons/googlecloud.php:53
2260
  msgid "South-east Asia"
2261
- msgstr ""
2262
 
2263
  #: src/addons/googlecloud.php:52
2264
  msgid "North-east Asia"
2265
- msgstr ""
2266
 
2267
  #: src/udaddons/options.php:118
2268
  msgid "Your web server's version of PHP is too old (%s) - UpdraftPlus expects at least %s. You can try it, but don't be surprised if it does not work. To fix this problem, contact your web hosting company"
2269
- msgstr ""
2270
 
2271
  #: src/templates/wp-admin/settings/take-backup.php:83
2272
  msgid "Remote storage authentication"
2273
- msgstr ""
2274
 
2275
  #: src/templates/wp-admin/settings/tab-addons.php:165
2276
  msgid "Network and multisite"
2277
- msgstr ""
2278
 
2279
  #: src/templates/wp-admin/settings/tab-addons.php:100
2280
  msgid "Migrator"
2281
- msgstr ""
2282
 
2283
  #: src/templates/wp-admin/settings/tab-addons.php:217
2284
  msgid "Additional storage"
2285
- msgstr ""
2286
 
2287
  #: src/includes/updraftplus-tour.php:128,
2288
  #: src/includes/updraftplus-tour.php:180,
2289
  #: src/templates/wp-admin/settings/tab-addons.php:87
2290
  msgid "Remote storage"
2291
- msgstr ""
2292
 
2293
  #: src/templates/wp-admin/settings/form-contents.php:192
2294
  msgid "Select Files"
2295
- msgstr ""
2296
 
2297
  #: src/methods/cloudfiles.php:479
2298
  msgid "Rackspace Storage Region"
2299
- msgstr ""
2300
 
2301
  #: src/admin.php:5499
2302
  msgid "Value"
2303
- msgstr ""
2304
 
2305
  #: src/addons/sftp.php:800
2306
  msgid "Encrypted login failed; trying non-encrypted"
2307
- msgstr ""
2308
 
2309
  #: src/addons/azure.php:591
2310
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
2311
- msgstr ""
2312
 
2313
  #: src/methods/cloudfiles.php:498
2314
  msgid "Cloud Files"
2315
- msgstr ""
2316
 
2317
  #: src/admin.php:5245
2318
  msgid "Your settings failed to save. Please refresh the settings page and try again"
2319
- msgstr ""
2320
 
2321
  #: src/admin.php:5204
2322
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
2323
- msgstr ""
2324
 
2325
  #: src/methods/updraftvault.php:71,
2326
  #: src/templates/wp-admin/settings/tab-addons.php:282
2327
  msgid "UpdraftVault"
2328
- msgstr ""
2329
 
2330
  #: src/includes/class-wpadmin-commands.php:604
2331
  msgid "archive"
2332
- msgstr ""
2333
 
2334
  #: src/includes/class-wpadmin-commands.php:595
2335
  msgid "Extra database"
2336
- msgstr ""
2337
 
2338
  #: src/admin.php:4258
2339
  msgid "Press here to download or browse"
2340
- msgstr ""
2341
 
2342
  #: src/admin.php:1384, src/admin.php:1394
2343
  msgid "Error: invalid path"
2344
- msgstr ""
2345
 
2346
  #: src/admin.php:1175
2347
  msgid "An error occurred when fetching storage module options: "
2348
- msgstr ""
2349
 
2350
  #: src/admin.php:921
2351
  msgid "Loading log file"
2352
- msgstr ""
2353
 
2354
  #: src/admin.php:920
2355
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
2356
- msgstr ""
2357
 
2358
  #: src/admin.php:919
2359
  msgid "Search"
2360
- msgstr ""
2361
 
2362
  #: src/admin.php:918
2363
  msgid "Select a file to view information about it"
2364
- msgstr ""
2365
 
2366
  #: src/admin.php:917
2367
  msgid "Browsing zip file"
2368
- msgstr ""
2369
 
2370
  #: src/admin.php:884
2371
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
2372
- msgstr ""
2373
 
2374
  #: src/admin.php:830
2375
  msgid "Browse contents"
2376
- msgstr ""
2377
 
2378
  #: src/restorer.php:2614
2379
  msgid "Skipped tables:"
2380
- msgstr ""
2381
 
2382
  #: src/class-updraftplus.php:4901
2383
  msgid "This database backup has the following WordPress tables excluded: %s"
2384
- msgstr ""
2385
 
2386
  #: src/templates/wp-admin/settings/backupnow-modal.php:8
2387
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
2388
- msgstr ""
2389
 
2390
  #: src/templates/wp-admin/settings/backupnow-modal.php:8
2391
  msgid "All WordPress tables will be backed up."
2392
- msgstr ""
2393
 
2394
  #: src/admin.php:916
2395
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
2396
- msgstr ""
2397
 
2398
  #: src/admin.php:916
2399
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
2400
- msgstr ""
2401
 
2402
  #: src/admin.php:916
2403
  msgid "The available memory on the server."
2404
- msgstr ""
2405
 
2406
  #: src/admin.php:916
2407
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
2408
- msgstr ""
2409
 
2410
  #: src/admin.php:916
2411
  msgid "The file failed to upload. Please check the following:"
2412
- msgstr ""
2413
 
2414
  #: src/admin.php:915
2415
  msgid "HTTP code:"
2416
- msgstr ""
2417
 
2418
  #: src/addons/wp-cli.php:110, src/admin.php:807
2419
  msgid "You have chosen to backup a database, but no tables have been selected"
2420
- msgstr ""
2421
 
2422
  #: src/addons/moredatabase.php:413
2423
  msgid "tables"
2424
- msgstr ""
2425
 
2426
  #: src/addons/moredatabase.php:412
2427
  msgid "WordPress database"
2428
- msgstr ""
2429
 
2430
  #: src/addons/moredatabase.php:405
2431
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
2432
- msgstr ""
2433
 
2434
  #: src/templates/wp-admin/settings/tab-addons.php:316,
2435
  #: src/templates/wp-admin/settings/tab-addons.php:316,
@@ -2438,248 +2438,248 @@ msgstr ""
2438
  #: src/templates/wp-admin/settings/tab-addons.php:326,
2439
  #: src/templates/wp-admin/settings/tab-addons.php:326
2440
  msgid "Find out more"
2441
- msgstr ""
2442
 
2443
  #: src/templates/wp-admin/settings/tab-addons.php:285
2444
  msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
2445
- msgstr ""
2446
 
2447
  #: src/templates/wp-admin/advanced/wipe-settings.php:12
2448
  msgid "UpdraftPlus Tour"
2449
- msgstr ""
2450
 
2451
  #: src/templates/wp-admin/settings/tab-addons.php:271
2452
  msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
2453
- msgstr ""
2454
 
2455
  #: src/templates/wp-admin/settings/tab-addons.php:258
2456
  msgid "Some backup plugins can't restore a backup, so Premium allows you to restore backups from other plugins."
2457
- msgstr ""
2458
 
2459
  #: src/templates/wp-admin/settings/tab-addons.php:256,
2460
  #: src/templates/wp-admin/settings/tab-addons.php:257
2461
  msgid "Importer"
2462
- msgstr ""
2463
 
2464
  #: src/templates/wp-admin/settings/tab-addons.php:245
2465
  msgid "Tidy things up for clients and remove all adverts for our other products."
2466
- msgstr ""
2467
 
2468
  #: src/templates/wp-admin/settings/tab-addons.php:243,
2469
  #: src/templates/wp-admin/settings/tab-addons.php:244
2470
  msgid "No ads"
2471
- msgstr ""
2472
 
2473
  #: src/templates/wp-admin/settings/tab-addons.php:232
2474
  msgid "Sophisticated reporting and emailing capabilities."
2475
- msgstr ""
2476
 
2477
  #: src/templates/wp-admin/settings/tab-addons.php:206
2478
  msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
2479
- msgstr ""
2480
 
2481
  #: src/templates/wp-admin/settings/tab-addons.php:204,
2482
  #: src/templates/wp-admin/settings/tab-addons.php:205
2483
  msgid "More database options"
2484
- msgstr ""
2485
 
2486
  #: src/templates/wp-admin/settings/tab-addons.php:180
2487
  msgid "Set exact times to create or delete backups."
2488
- msgstr ""
2489
 
2490
  #: src/templates/wp-admin/settings/tab-addons.php:178,
2491
  #: src/templates/wp-admin/settings/tab-addons.php:179
2492
  msgid "Backup time and scheduling"
2493
- msgstr ""
2494
 
2495
  #: src/templates/wp-admin/settings/tab-addons.php:167
2496
  msgid "Backup WordPress multisites (i.e, networks), securely."
2497
- msgstr ""
2498
 
2499
  #: src/templates/wp-admin/settings/tab-addons.php:166
2500
  msgid "Network / multisite"
2501
- msgstr ""
2502
 
2503
  #: src/templates/wp-admin/settings/tab-addons.php:154
2504
  msgid "Backup WordPress core and non-WP files and databases."
2505
- msgstr ""
2506
 
2507
  #: src/templates/wp-admin/settings/tab-addons.php:141
2508
  msgid "Automatically backs up your website before any updates to plugins, themes and WordPress core."
2509
- msgstr ""
2510
 
2511
  #: src/templates/wp-admin/settings/tab-addons.php:139,
2512
  #: src/templates/wp-admin/settings/tab-addons.php:140
2513
  msgid "Pre-update backups"
2514
- msgstr ""
2515
 
2516
  #: src/templates/wp-admin/settings/tab-addons.php:128
2517
  msgid "Provides expert help and support from the developers whenever you need it."
2518
- msgstr ""
2519
 
2520
  #: src/templates/wp-admin/settings/tab-addons.php:127
2521
  msgid "Fast, personal support"
2522
- msgstr ""
2523
 
2524
  #: src/templates/wp-admin/settings/tab-addons.php:102
2525
  msgid "UpdraftPlus Migrator clones your WordPress site and moves it to a new domain directly and simply."
2526
- msgstr ""
2527
 
2528
  #: src/templates/wp-admin/settings/tab-addons.php:101
2529
  msgid "Cloning and migration"
2530
- msgstr ""
2531
 
2532
  #: src/templates/wp-admin/settings/tab-addons.php:219
2533
  msgid "Get enhanced versions of the free remote storage options (Dropbox, Google Drive & S3) and even more remote storage options like OneDrive, SFTP, Azure, WebDAV and more with UpdraftPlus Premium."
2534
- msgstr ""
2535
 
2536
  #: src/templates/wp-admin/settings/tab-addons.php:218
2537
  msgid "Additional and enhanced remote storage locations"
2538
- msgstr ""
2539
 
2540
  #: src/templates/wp-admin/settings/tab-addons.php:89
2541
  msgid "To avoid server-wide risks, always backup to remote cloud storage. UpdraftPlus free includes Dropbox, Google Drive, Amazon S3, Rackspace and more."
2542
- msgstr ""
2543
 
2544
  #: src/templates/wp-admin/settings/tab-addons.php:88
2545
  msgid "Backup to remote storage locations"
2546
- msgstr ""
2547
 
2548
  #: src/templates/wp-admin/settings/tab-addons.php:82,
2549
  #: src/templates/wp-admin/settings/tab-addons.php:303
2550
  msgid "Upgrade now"
2551
- msgstr ""
2552
 
2553
  #: src/templates/wp-admin/settings/tab-addons.php:79,
2554
  #: src/templates/wp-admin/settings/tab-addons.php:300
2555
  msgid "Installed"
2556
- msgstr ""
2557
 
2558
  #: src/templates/wp-admin/settings/tab-addons.php:69
2559
  msgid "Free"
2560
- msgstr ""
2561
 
2562
  #: src/admin.php:501
2563
  msgid "UpdraftPlus"
2564
- msgstr ""
2565
 
2566
  #: src/templates/wp-admin/settings/form-contents.php:216
2567
  msgid "Recommended: optimize your database with WP-Optimize."
2568
- msgstr ""
2569
 
2570
  #: src/templates/wp-admin/notices/bottom-notice.php:31,
2571
  #: src/templates/wp-admin/notices/horizontal-notice.php:42,
2572
  #: src/templates/wp-admin/notices/report-plain.php:33,
2573
  #: src/templates/wp-admin/notices/report.php:30
2574
  msgid "Read more"
2575
- msgstr ""
2576
 
2577
  #: src/includes/updraftplus-notices.php:192
2578
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
2579
- msgstr ""
2580
 
2581
  #: src/addons/morefiles.php:899
2582
  msgid "Please choose a file or directory"
2583
- msgstr ""
2584
 
2585
  #: src/addons/morefiles.php:877
2586
  msgid "Confirm"
2587
- msgstr ""
2588
 
2589
  #: src/addons/morefiles.php:872, src/addons/morefiles.php:872
2590
  msgid "Go up a directory"
2591
- msgstr ""
2592
 
2593
  #: src/addons/morefiles.php:869
2594
  msgid "Add directory..."
2595
- msgstr ""
2596
 
2597
  #: src/addons/morefiles.php:310, src/addons/morefiles.php:855,
2598
  #: src/addons/morefiles.php:897,
2599
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
2600
  msgid "Edit"
2601
- msgstr ""
2602
 
2603
  #: src/addons/morefiles.php:295
2604
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
2605
- msgstr ""
2606
 
2607
  #: src/addons/s3-enhanced.php:370
2608
  msgid "Europe (Frankfurt)"
2609
- msgstr ""
2610
 
2611
  #: src/addons/s3-enhanced.php:368
2612
  msgid "Europe (London)"
2613
- msgstr ""
2614
 
2615
  #: src/addons/s3-enhanced.php:367
2616
  msgid "Europe (Ireland)"
2617
- msgstr ""
2618
 
2619
  #: src/includes/updraftplus-tour.php:150,
2620
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
2621
  msgid "UpdraftCentral"
2622
- msgstr ""
2623
 
2624
  #: src/templates/wp-admin/notices/autobackup-notice.php:6,
2625
  #: src/templates/wp-admin/notices/horizontal-notice.php:6
2626
  msgid "notice image"
2627
- msgstr ""
2628
 
2629
  #: src/templates/wp-admin/notices/bottom-notice.php:29,
2630
  #: src/templates/wp-admin/notices/horizontal-notice.php:40,
2631
  #: src/templates/wp-admin/notices/report-plain.php:31,
2632
  #: src/templates/wp-admin/notices/report.php:28
2633
  msgid "Go there"
2634
- msgstr ""
2635
 
2636
  #: src/templates/wp-admin/notices/bottom-notice.php:27,
2637
  #: src/templates/wp-admin/notices/horizontal-notice.php:38,
2638
  #: src/templates/wp-admin/notices/report-plain.php:29,
2639
  #: src/templates/wp-admin/notices/report.php:26
2640
  msgid "Sign up"
2641
- msgstr ""
2642
 
2643
  #: src/templates/wp-admin/notices/bottom-notice.php:25,
2644
  #: src/templates/wp-admin/notices/horizontal-notice.php:36,
2645
  #: src/templates/wp-admin/notices/report-plain.php:27,
2646
  #: src/templates/wp-admin/notices/report.php:24
2647
  msgid "Get Premium"
2648
- msgstr ""
2649
 
2650
  #: src/templates/wp-admin/notices/bottom-notice.php:23,
2651
  #: src/templates/wp-admin/notices/horizontal-notice.php:34,
2652
  #: src/templates/wp-admin/notices/report-plain.php:25,
2653
  #: src/templates/wp-admin/notices/report.php:22
2654
  msgid "Review UpdraftPlus"
2655
- msgstr ""
2656
 
2657
  #: src/templates/wp-admin/notices/bottom-notice.php:21,
2658
  #: src/templates/wp-admin/notices/horizontal-notice.php:32,
2659
  #: src/templates/wp-admin/notices/report-plain.php:23,
2660
  #: src/templates/wp-admin/notices/report.php:20
2661
  msgid "Get UpdraftCentral"
2662
- msgstr ""
2663
 
2664
  #: src/templates/wp-admin/advanced/site-info.php:91
2665
  msgid "Apache modules"
2666
- msgstr ""
2667
 
2668
  #: src/includes/updraftplus-notices.php:269
2669
  msgid "Summer sale - 20% off UpdraftPlus Premium until July 31st"
2670
- msgstr ""
2671
 
2672
  #: src/includes/updraftplus-notices.php:255
2673
  msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
2674
- msgstr ""
2675
 
2676
  #: src/includes/updraftplus-notices.php:241
2677
  msgid "Happy New Year - 20% off UpdraftPlus Premium until January 14th"
2678
- msgstr ""
2679
 
2680
  #: src/includes/updraftplus-notices.php:227
2681
  msgid "Christmas sale - 20% off UpdraftPlus Premium until December 25th"
2682
- msgstr ""
2683
 
2684
  #: src/includes/updraftplus-notices.php:214,
2685
  #: src/includes/updraftplus-notices.php:228,
@@ -2687,81 +2687,81 @@ msgstr ""
2687
  #: src/includes/updraftplus-notices.php:256,
2688
  #: src/includes/updraftplus-notices.php:270
2689
  msgid "To benefit, use this discount code:"
2690
- msgstr ""
2691
 
2692
  #: src/includes/updraftplus-notices.php:213
2693
  msgid "Black Friday - 20% off UpdraftPlus Premium until November 30th"
2694
- msgstr ""
2695
 
2696
  #: src/includes/updraftplus-notices.php:158,
2697
  #: src/includes/updraftplus-notices.php:168
2698
  msgid "UpdraftPlus Blog - get up-to-date news and offers"
2699
- msgstr ""
2700
 
2701
  #: src/includes/updraftplus-notices.php:147
2702
  msgid "UpdraftPlus Newsletter"
2703
- msgstr ""
2704
 
2705
  #: src/includes/updraftplus-notices.php:108
2706
  msgid "Control all your WordPress installations from one place using UpdraftCentral remote site management!"
2707
- msgstr ""
2708
 
2709
  #: src/includes/updraftplus-notices.php:107
2710
  msgid "Do you use UpdraftPlus on multiple sites?"
2711
- msgstr ""
2712
 
2713
  #: src/includes/updraftplus-notices.php:98
2714
  msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
2715
- msgstr ""
2716
 
2717
  #: src/includes/updraftplus-notices.php:97
2718
  msgid "Introducing UpdraftCentral"
2719
- msgstr ""
2720
 
2721
  #: src/includes/updraftplus-notices.php:87
2722
  msgid "Copy your site to another domain directly. Includes find-and-replace tool for database references."
2723
- msgstr ""
2724
 
2725
  #: src/includes/updraftplus-notices.php:86
2726
  msgid "easily migrate or clone your site in minutes"
2727
- msgstr ""
2728
 
2729
  #: src/includes/updraftplus-notices.php:76
2730
  msgid "Add SFTP to send your data securely, lock settings and encrypt your database backups for extra security."
2731
- msgstr ""
2732
 
2733
  #: src/includes/updraftplus-notices.php:75
2734
  msgid "secure your backups"
2735
- msgstr ""
2736
 
2737
  #: src/includes/updraftplus-notices.php:65
2738
  msgid "Secure multisite installation, advanced reporting and much more."
2739
- msgstr ""
2740
 
2741
  #: src/includes/updraftplus-notices.php:64
2742
  msgid "advanced options"
2743
- msgstr ""
2744
 
2745
  #: src/includes/updraftplus-notices.php:54
2746
  msgid "Enhanced storage options for Dropbox, Google Drive and S3. Plus many more options."
2747
- msgstr ""
2748
 
2749
  #: src/includes/updraftplus-notices.php:53
2750
  msgid "enhanced remote storage options"
2751
- msgstr ""
2752
 
2753
  #: src/includes/updraftplus-notices.php:43
2754
  msgid "The ultimately secure and convenient place to store your backups."
2755
- msgstr ""
2756
 
2757
  #: src/includes/updraftplus-notices.php:42,
2758
  #: src/templates/wp-admin/settings/tab-addons.php:283
2759
  msgid "UpdraftVault storage"
2760
- msgstr ""
2761
 
2762
  #: src/includes/updraftplus-notices.php:32
2763
  msgid "Enjoy professional, fast, and friendly help whenever you need it with Premium."
2764
- msgstr ""
2765
 
2766
  #: src/includes/updraftplus-notices.php:30,
2767
  #: src/includes/updraftplus-notices.php:41,
@@ -2770,240 +2770,240 @@ msgstr ""
2770
  #: src/includes/updraftplus-notices.php:74,
2771
  #: src/includes/updraftplus-notices.php:85
2772
  msgid "UpdraftPlus Premium:"
2773
- msgstr ""
2774
 
2775
  #: src/templates/wp-admin/settings/migrator-no-migrator.php:13
2776
  msgid "Then, try out our \"Migrator\" add-on which can perform a direct site-to-site migration. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
2777
- msgstr ""
2778
 
2779
  #: src/addons/s3-enhanced.php:366
2780
  msgid "Canada Central"
2781
- msgstr ""
2782
 
2783
  #: src/templates/wp-admin/advanced/tools-menu.php:22
2784
  msgid "Site size"
2785
- msgstr ""
2786
 
2787
  #: src/templates/wp-admin/advanced/tools-menu.php:10,
2788
  #: src/templates/wp-admin/settings/tab-addons.php:269,
2789
  #: src/templates/wp-admin/settings/tab-addons.php:270
2790
  msgid "Lock settings"
2791
- msgstr ""
2792
 
2793
  #: src/templates/wp-admin/advanced/site-info.php:5,
2794
  #: src/templates/wp-admin/advanced/tools-menu.php:6
2795
  msgid "Site information"
2796
- msgstr ""
2797
 
2798
  #: src/templates/wp-admin/advanced/search-replace.php:9
2799
  msgid "For the ability to migrate websites, upgrade to UpdraftPlus Premium."
2800
- msgstr ""
2801
 
2802
  #: src/templates/wp-admin/advanced/export-settings.php:15
2803
  msgid "Import settings"
2804
- msgstr ""
2805
 
2806
  #: src/templates/wp-admin/advanced/export-settings.php:12
2807
  msgid "You can also import previously-exported settings. This tool will replace all your saved settings."
2808
- msgstr ""
2809
 
2810
  #: src/templates/wp-admin/advanced/export-settings.php:9
2811
  msgid "Export settings"
2812
- msgstr ""
2813
 
2814
  #: src/templates/wp-admin/advanced/export-settings.php:7
2815
  msgid "including any passwords"
2816
- msgstr ""
2817
 
2818
  #: src/templates/wp-admin/advanced/export-settings.php:7
2819
  msgid "Here, you can export your UpdraftPlus settings (%s), either for using on another site, or to keep as a backup. This tool will export what is currently in the settings tab."
2820
- msgstr ""
2821
 
2822
  #: src/templates/wp-admin/advanced/export-settings.php:5,
2823
  #: src/templates/wp-admin/advanced/tools-menu.php:26
2824
  msgid "Export / import settings"
2825
- msgstr ""
2826
 
2827
  #: src/restorer.php:2299
2828
  msgid "Processing table (%s)"
2829
- msgstr ""
2830
 
2831
  #: src/restorer.php:2581
2832
  msgid "Backup of: %s"
2833
- msgstr ""
2834
 
2835
  #: src/methods/googledrive.php:357
2836
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2837
- msgstr ""
2838
 
2839
  #: src/methods/dropbox.php:786
2840
  msgid "%s de-authentication"
2841
- msgstr ""
2842
 
2843
  #: src/methods/dropbox.php:635
2844
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
2845
- msgstr ""
2846
 
2847
  #: src/central/bootstrap.php:620
2848
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
2849
- msgstr ""
2850
 
2851
  #: src/backup.php:1583
2852
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
2853
- msgstr ""
2854
 
2855
  #: src/templates/wp-admin/settings/take-backup.php:84
2856
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2857
- msgstr ""
2858
 
2859
  #: src/admin.php:1990
2860
  msgid "Remote files deleted:"
2861
- msgstr ""
2862
 
2863
  #: src/admin.php:1989
2864
  msgid "Local files deleted:"
2865
- msgstr ""
2866
 
2867
  #: src/methods/backup-module.php:549
2868
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2869
- msgstr ""
2870
 
2871
  #: src/admin.php:914
2872
  msgid "remote files deleted"
2873
- msgstr ""
2874
 
2875
  #: src/admin.php:910
2876
  msgid "Complete"
2877
- msgstr ""
2878
 
2879
  #: src/admin.php:909
2880
  msgid "Do you want to carry out the import?"
2881
- msgstr ""
2882
 
2883
  #: src/admin.php:908
2884
  msgid "Which was exported on:"
2885
- msgstr ""
2886
 
2887
  #: src/admin.php:907
2888
  msgid "This will import data from:"
2889
- msgstr ""
2890
 
2891
  #: src/admin.php:906
2892
  msgid "Importing..."
2893
- msgstr ""
2894
 
2895
  #: src/admin.php:902
2896
  msgid "You have not yet selected a file to import."
2897
- msgstr ""
2898
 
2899
  #: src/admin.php:886
2900
  msgid "Your export file will be of your displayed settings, not your saved ones."
2901
- msgstr ""
2902
 
2903
  #: src/admin.php:89
2904
  msgid "template not found"
2905
- msgstr ""
2906
 
2907
  #: src/addons/s3-enhanced.php:362
2908
  msgid "US East (Ohio)"
2909
- msgstr ""
2910
 
2911
  #: src/addons/onedrive.php:1134
2912
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
2913
- msgstr ""
2914
 
2915
  #: src/addons/onedrive.php:744
2916
  msgid "Account is not authorized (%s)."
2917
- msgstr ""
2918
 
2919
  #: src/addons/onedrive.php:708, src/udaddons/updraftplus-addons.php:1013
2920
  msgid "Your IP address:"
2921
- msgstr ""
2922
 
2923
  #: src/addons/onedrive.php:708, src/udaddons/updraftplus-addons.php:1013,
2924
  #: src/udaddons/updraftplus-addons.php:1026
2925
  msgid "To remove any block, please go here."
2926
- msgstr ""
2927
 
2928
  #: src/addons/onedrive.php:695, src/udaddons/updraftplus-addons.php:1000
2929
  msgid "An error response was received; HTTP code:"
2930
- msgstr ""
2931
 
2932
  #: src/includes/class-commands.php:408
2933
  msgid "%s add-on not found"
2934
- msgstr ""
2935
 
2936
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:60
2937
  msgid "or to restore manually"
2938
- msgstr ""
2939
 
2940
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:60
2941
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
2942
- msgstr ""
2943
 
2944
  #: src/admin.php:2704
2945
  msgid "To fix this problem go here."
2946
- msgstr ""
2947
 
2948
  #: src/admin.php:2704
2949
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2950
- msgstr ""
2951
 
2952
  #: src/admin.php:870
2953
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
2954
- msgstr ""
2955
 
2956
  #: src/addons/webdav.php:214
2957
  msgid "Path"
2958
- msgstr ""
2959
 
2960
  #: src/addons/webdav.php:207, src/addons/webdav.php:209
2961
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
2962
- msgstr ""
2963
 
2964
  #: src/addons/webdav.php:201
2965
  msgid "Enter any path in the field below."
2966
- msgstr ""
2967
 
2968
  #: src/addons/webdav.php:201
2969
  msgid "A host name cannot contain a slash."
2970
- msgstr ""
2971
 
2972
  #: src/addons/webdav.php:176
2973
  msgid "Protocol (SSL or not)"
2974
- msgstr ""
2975
 
2976
  #: src/addons/webdav.php:169, src/addons/webdav.php:171
2977
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
2978
- msgstr ""
2979
 
2980
  #: src/udaddons/updraftplus-addons.php:1029
2981
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
2982
- msgstr ""
2983
 
2984
  #: src/methods/s3.php:1210
2985
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
2986
- msgstr ""
2987
 
2988
  #: src/methods/s3.php:130
2989
  msgid "No settings were found - please go to the Settings tab and check your settings"
2990
- msgstr ""
2991
 
2992
  #: src/templates/wp-admin/settings/form-contents.php:115
2993
  msgid "Backup using %s?"
2994
- msgstr ""
2995
 
2996
  #: src/addons/s3-enhanced.php:376
2997
  msgid "Asia Pacific (Mumbai)"
2998
- msgstr ""
2999
 
3000
  #: src/addons/s3-enhanced.php:63
3001
  msgid "Standard (infrequent access)"
3002
- msgstr ""
3003
 
3004
  #: src/templates/wp-admin/settings/header.php:25
3005
  msgid "FAQs"
3006
- msgstr ""
3007
 
3008
  #: src/central/bootstrap.php:569
3009
  msgid "More information..."
@@ -3011,31 +3011,31 @@ msgstr "Повече информация..."
3011
 
3012
  #: src/central/bootstrap.php:568
3013
  msgid "Use the alternative method for making a connection with the dashboard."
3014
- msgstr ""
3015
 
3016
  #: src/central/bootstrap.php:473
3017
  msgid "Key size: %d bits"
3018
- msgstr ""
3019
 
3020
  #: src/central/bootstrap.php:468
3021
  msgid "Public key was sent to:"
3022
- msgstr ""
3023
 
3024
  #: src/backup.php:2251
3025
  msgid "Failed to open directory (check the file permissions and ownership): %s"
3026
- msgstr ""
3027
 
3028
  #: src/backup.php:2229
3029
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
3030
- msgstr ""
3031
 
3032
  #: src/addons/migrator.php:1798
3033
  msgid "Create key"
3034
- msgstr ""
3035
 
3036
  #: src/addons/migrator.php:1795, src/central/bootstrap.php:562
3037
  msgid "slower, strongest"
3038
- msgstr ""
3039
 
3040
  #: src/addons/migrator.php:1794, src/central/bootstrap.php:561
3041
  msgid "recommended"
@@ -3043,116 +3043,116 @@ msgstr "препоръчва"
3043
 
3044
  #: src/addons/migrator.php:1794, src/central/bootstrap.php:561
3045
  msgid "%s bytes"
3046
- msgstr ""
3047
 
3048
  #: src/addons/migrator.php:1793, src/central/bootstrap.php:560
3049
  msgid "faster (possibility for slow PHP installs)"
3050
- msgstr ""
3051
 
3052
  #: src/addons/migrator.php:1792, src/central/bootstrap.php:559
3053
  msgid "easy to break, fastest"
3054
- msgstr ""
3055
 
3056
  #: src/addons/migrator.php:1792, src/addons/migrator.php:1793,
3057
  #: src/addons/migrator.php:1795, src/central/bootstrap.php:559,
3058
  #: src/central/bootstrap.php:560, src/central/bootstrap.php:562
3059
  msgid "%s bits"
3060
- msgstr ""
3061
 
3062
  #: src/addons/migrator.php:1790, src/central/bootstrap.php:557
3063
  msgid "Encryption key size:"
3064
- msgstr ""
3065
 
3066
  #: src/addons/migrator.php:1788
3067
  msgid "Enter your chosen name"
3068
- msgstr ""
3069
 
3070
  #: src/addons/migrator.php:1787
3071
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
3072
- msgstr ""
3073
 
3074
  #: src/methods/googledrive.php:650
3075
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
3076
- msgstr ""
3077
 
3078
  #: src/methods/ftp.php:453
3079
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
3080
- msgstr ""
3081
 
3082
  #: src/methods/ftp.php:425
3083
  msgid "login"
3084
- msgstr "Вход"
3085
 
3086
  #: src/addons/reporting.php:541, src/addons/reporting.php:541,
3087
  #: src/addons/reporting.php:543, src/methods/email.php:100
3088
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
3089
- msgstr ""
3090
 
3091
  #: src/methods/email.php:30
3092
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
3093
- msgstr ""
3094
 
3095
  #: src/class-updraftplus.php:1881
3096
  msgid "Size: %s MB"
3097
- msgstr ""
3098
 
3099
  #: src/templates/wp-admin/settings/form-contents.php:310
3100
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
3101
- msgstr ""
3102
 
3103
  #: src/class-updraftplus.php:4614, src/restorer.php:1687
3104
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
3105
- msgstr ""
3106
 
3107
  #: src/templates/wp-admin/settings/form-contents.php:104
3108
  msgid "(tap on an icon to select or unselect)"
3109
- msgstr ""
3110
 
3111
  #: src/methods/updraftvault.php:347, src/methods/updraftvault.php:356,
3112
  #: src/methods/updraftvault.php:363, src/methods/updraftvault.php:370
3113
  msgid "%s per year"
3114
- msgstr ""
3115
 
3116
  #: src/methods/updraftvault.php:355, src/methods/updraftvault.php:362,
3117
  #: src/methods/updraftvault.php:369
3118
  msgid "or (annual discount)"
3119
- msgstr ""
3120
 
3121
  #: src/methods/updraftvault.php:266
3122
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
3123
- msgstr ""
3124
 
3125
  #: src/class-updraftplus.php:595, src/class-updraftplus.php:665
3126
  msgid "The given file was not found, or could not be read."
3127
- msgstr ""
3128
 
3129
  #: src/central/bootstrap.php:618
3130
  msgid "UpdraftCentral (Remote Control)"
3131
- msgstr ""
3132
 
3133
  #: src/central/bootstrap.php:604
3134
  msgid "View recent UpdraftCentral log events"
3135
- msgstr ""
3136
 
3137
  #: src/central/bootstrap.php:551
3138
  msgid "Enter any description"
3139
- msgstr ""
3140
 
3141
  #: src/central/bootstrap.php:550
3142
  msgid "Description"
3143
- msgstr "описание на"
3144
 
3145
  #: src/central/bootstrap.php:478
3146
  msgid "Delete..."
3147
- msgstr ""
3148
 
3149
  #: src/central/bootstrap.php:471
3150
  msgid "Created:"
3151
- msgstr ""
3152
 
3153
  #: src/central/bootstrap.php:468
3154
  msgid "Access this site as user:"
3155
- msgstr ""
3156
 
3157
  #: src/central/bootstrap.php:492
3158
  msgid "Details"
@@ -3160,55 +3160,55 @@ msgstr "Детайли"
3160
 
3161
  #: src/central/bootstrap.php:491
3162
  msgid "Key description"
3163
- msgstr ""
3164
 
3165
  #: src/central/bootstrap.php:361, src/central/bootstrap.php:372
3166
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
3167
- msgstr ""
3168
 
3169
  #: src/central/bootstrap.php:226
3170
  msgid "An invalid URL was entered"
3171
- msgstr ""
3172
 
3173
  #: src/central/bootstrap.php:90
3174
  msgid "Close..."
3175
- msgstr ""
3176
 
3177
  #: src/central/bootstrap.php:82
3178
  msgid "This connection appears to already have been made."
3179
- msgstr ""
3180
 
3181
  #: src/central/bootstrap.php:79
3182
  msgid "You must visit this link in the same browser and login session as you created the key in."
3183
- msgstr ""
3184
 
3185
  #: src/central/bootstrap.php:75
3186
  msgid "You must visit this URL in the same browser and login session as you created the key in."
3187
- msgstr ""
3188
 
3189
  #: src/central/bootstrap.php:75
3190
  msgid "You are not logged into this WordPress site in your web browser."
3191
- msgstr ""
3192
 
3193
  #: src/central/bootstrap.php:72
3194
  msgid "The key referred to was unknown."
3195
- msgstr ""
3196
 
3197
  #: src/central/bootstrap.php:69
3198
  msgid "A new UpdraftCentral connection has not been made."
3199
- msgstr ""
3200
 
3201
  #: src/central/bootstrap.php:67
3202
  msgid "An UpdraftCentral connection has been made successfully."
3203
- msgstr ""
3204
 
3205
  #: src/central/bootstrap.php:64
3206
  msgid "UpdraftCentral Connection"
3207
- msgstr ""
3208
 
3209
  #: src/class-updraftplus.php:3288, src/class-updraftplus.php:3380
3210
  msgid "The backup was aborted by the user"
3211
- msgstr ""
3212
 
3213
  #: src/admin.php:5240
3214
  msgid "Your settings have been saved."
@@ -3216,7 +3216,7 @@ msgstr "Настройките ви са записани."
3216
 
3217
  #: src/admin.php:4163
3218
  msgid "Total backup size:"
3219
- msgstr ""
3220
 
3221
  #: src/admin.php:3561
3222
  msgid "stop"
@@ -3224,41 +3224,41 @@ msgstr "спиране"
3224
 
3225
  #: src/admin.php:911, src/admin.php:3350
3226
  msgid "The backup has finished running"
3227
- msgstr ""
3228
 
3229
  #: src/templates/wp-admin/advanced/tools-menu.php:30,
3230
  #: src/templates/wp-admin/advanced/wipe-settings.php:5,
3231
  #: src/templates/wp-admin/advanced/wipe-settings.php:10
3232
  msgid "Wipe settings"
3233
- msgstr ""
3234
 
3235
  #: src/templates/wp-admin/advanced/site-info.php:102
3236
  msgid "reset"
3237
- msgstr ""
3238
 
3239
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:14
3240
  msgid "these backup sets"
3241
- msgstr ""
3242
 
3243
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:11
3244
  msgid "this backup set"
3245
- msgstr ""
3246
 
3247
  #: src/includes/class-filesystem-functions.php:112
3248
  msgid "calculate"
3249
- msgstr ""
3250
 
3251
  #: src/admin.php:885
3252
  msgid "You should save your changes to ensure that they are used for making your backup."
3253
- msgstr ""
3254
 
3255
  #: src/admin.php:878
3256
  msgid "We requested to delete the file, but could not understand the server's response"
3257
- msgstr ""
3258
 
3259
  #: src/admin.php:877
3260
  msgid "Please enter a valid URL"
3261
- msgstr ""
3262
 
3263
  #: src/admin.php:860
3264
  msgid "Saving..."
@@ -3266,35 +3266,35 @@ msgstr "Запазване..."
3266
 
3267
  #: src/admin.php:821
3268
  msgid "Error: the server sent us a response which we did not understand."
3269
- msgstr ""
3270
 
3271
  #: src/admin.php:813
3272
  msgid "Fetching..."
3273
- msgstr ""
3274
 
3275
  #: src/addons/s3-enhanced.php:373
3276
  msgid "Asia Pacific (Seoul)"
3277
- msgstr ""
3278
 
3279
  #: src/restorer.php:2604
3280
  msgid "Uploads URL:"
3281
- msgstr ""
3282
 
3283
  #: src/addons/onedrive.php:63
3284
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
3285
- msgstr ""
3286
 
3287
  #: src/class-updraftplus.php:4668, src/restorer.php:2622
3288
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
3289
- msgstr ""
3290
 
3291
  #: src/class-updraftplus.php:4664
3292
  msgid "Please read this link for important information on this process."
3293
- msgstr ""
3294
 
3295
  #: src/class-updraftplus.php:4664
3296
  msgid "It will be imported as a new site."
3297
- msgstr ""
3298
 
3299
  #: src/admin.php:2980, src/templates/wp-admin/notices/autobackup-notice.php:16,
3300
  #: src/templates/wp-admin/notices/autobackup-notice.php:18,
@@ -3305,108 +3305,108 @@ msgstr "Отхвърли"
3305
 
3306
  #: src/admin.php:897
3307
  msgid "Please fill in the required information."
3308
- msgstr ""
3309
 
3310
  #: src/addons/multisite.php:659
3311
  msgid "Read more..."
3312
- msgstr ""
3313
 
3314
  #: src/addons/multisite.php:650
3315
  msgid "may include some site-wide data"
3316
- msgstr ""
3317
 
3318
  #: src/addons/multisite.php:645
3319
  msgid "All sites"
3320
- msgstr ""
3321
 
3322
  #: src/addons/multisite.php:641
3323
  msgid "Which site to restore"
3324
- msgstr ""
3325
 
3326
  #: src/addons/migrator.php:629, src/addons/migrator.php:630
3327
  msgid "Error when creating new site at your chosen address:"
3328
- msgstr ""
3329
 
3330
  #: src/addons/migrator.php:573
3331
  msgid "Required information for restoring this backup was not given (%s)"
3332
- msgstr ""
3333
 
3334
  #: src/addons/migrator.php:525
3335
  msgid "Attribute imported content to user"
3336
- msgstr ""
3337
 
3338
  #: src/addons/migrator.php:515, src/addons/migrator.php:517
3339
  msgid "You must use lower-case letters or numbers for the site path, only."
3340
- msgstr ""
3341
 
3342
  #: src/addons/migrator.php:503
3343
  msgid "This feature is not compatible with %s"
3344
- msgstr ""
3345
 
3346
  #: src/addons/migrator.php:501, src/addons/migrator.php:503
3347
  msgid "Importing a single site into a multisite install"
3348
- msgstr ""
3349
 
3350
  #: src/addons/migrator.php:493
3351
  msgid "other content from wp-content"
3352
- msgstr ""
3353
 
3354
  #: src/addons/migrator.php:490
3355
  msgid "WordPress core"
3356
- msgstr ""
3357
 
3358
  #: src/addons/migrator.php:490, src/addons/migrator.php:493,
3359
  #: src/addons/migrator.php:496
3360
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
3361
- msgstr ""
3362
 
3363
  #: src/templates/wp-admin/advanced/site-info.php:100
3364
  msgid "Call WordPress action:"
3365
- msgstr ""
3366
 
3367
  #: src/templates/wp-admin/settings/backupnow-modal.php:45
3368
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
3369
- msgstr ""
3370
 
3371
  #: src/restorer.php:395
3372
  msgid "Skipping: this archive was already restored."
3373
- msgstr ""
3374
 
3375
  #: src/templates/wp-admin/settings/form-contents.php:141
3376
  msgid "File Options"
3377
- msgstr ""
3378
 
3379
  #: src/templates/wp-admin/settings/form-contents.php:94
3380
  msgid "Sending Your Backup To Remote Storage"
3381
- msgstr ""
3382
 
3383
  #: src/templates/wp-admin/settings/form-contents.php:58
3384
  msgid "Database backup schedule"
3385
- msgstr ""
3386
 
3387
  #: src/templates/wp-admin/settings/form-contents.php:22
3388
  msgid "Files backup schedule"
3389
- msgstr ""
3390
 
3391
  #: src/templates/wp-admin/advanced/wipe-settings.php:6
3392
  msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
3393
- msgstr ""
3394
 
3395
  #: src/templates/wp-admin/advanced/wipe-settings.php:6
3396
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
3397
- msgstr ""
3398
 
3399
  #: src/admin.php:5114
3400
  msgid "Send this backup to remote storage"
3401
- msgstr ""
3402
 
3403
  #: src/admin.php:5112
3404
  msgid "Check out UpdraftPlus Vault."
3405
- msgstr ""
3406
 
3407
  #: src/admin.php:5112
3408
  msgid "Not got any remote storage?"
3409
- msgstr ""
3410
 
3411
  #: src/admin.php:5112
3412
  msgid "settings"
@@ -3414,52 +3414,52 @@ msgstr "настройки"
3414
 
3415
  #: src/admin.php:5112
3416
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
3417
- msgstr ""
3418
 
3419
  #: src/admin.php:964, src/templates/wp-admin/settings/backupnow-modal.php:40
3420
  msgid "Include your files in the backup"
3421
- msgstr ""
3422
 
3423
  #: src/templates/wp-admin/settings/backupnow-modal.php:26
3424
  msgid "Include your database in the backup"
3425
- msgstr ""
3426
 
3427
  #: src/admin.php:2976, src/admin.php:2978
3428
  msgid "Continue restoration"
3429
- msgstr ""
3430
 
3431
  #: src/admin.php:2968
3432
  msgid "You have an unfinished restoration operation, begun %s ago."
3433
- msgstr ""
3434
 
3435
  #: src/admin.php:2967
3436
  msgid "Unfinished restoration"
3437
- msgstr ""
3438
 
3439
  #: src/admin.php:2964
3440
  msgid "%s minutes, %s seconds"
3441
- msgstr ""
3442
 
3443
  #: src/admin.php:2794
3444
  msgid "Backup Contents And Schedule"
3445
- msgstr ""
3446
 
3447
  #: src/admin.php:2897
3448
  msgid "Premium / Extensions"
3449
- msgstr ""
3450
 
3451
  #: src/admin.php:4646, src/admin.php:4655
3452
  msgid "Sufficient information about the in-progress restoration operation could not be found."
3453
- msgstr ""
3454
 
3455
  #: src/addons/morefiles.php:85, src/admin.php:883
3456
  msgctxt "(verb)"
3457
  msgid "Download"
3458
- msgstr ""
3459
 
3460
  #: src/admin.php:806
3461
  msgid "You have chosen to backup files, but no file entities have been selected"
3462
- msgstr ""
3463
 
3464
  #: src/admin.php:694
3465
  msgid "Extensions"
@@ -3467,147 +3467,147 @@ msgstr "Добавки"
3467
 
3468
  #: src/admin.php:686, src/admin.php:2896
3469
  msgid "Advanced Tools"
3470
- msgstr ""
3471
 
3472
  #: src/addons/googlecloud.php:1056
3473
  msgid "Bucket location"
3474
- msgstr ""
3475
 
3476
  #: src/addons/googlecloud.php:1045, src/addons/googlecloud.php:1051
3477
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
3478
- msgstr ""
3479
 
3480
  #: src/addons/googlecloud.php:1045, src/addons/googlecloud.php:1051,
3481
  #: src/addons/googlecloud.php:1058, src/addons/googlecloud.php:1064
3482
  msgid "This setting applies only when a new bucket is being created."
3483
- msgstr ""
3484
 
3485
  #: src/addons/googlecloud.php:1040
3486
  msgid "You must use a bucket name that is unique, for all %s users."
3487
- msgstr ""
3488
 
3489
  #: src/addons/googlecloud.php:986
3490
  msgid "Do not confuse %s with %s - they are separate things."
3491
- msgstr ""
3492
 
3493
  #: src/addons/googlecloud.php:317
3494
  msgid "You do not have access to this bucket"
3495
- msgstr ""
3496
 
3497
  #: src/addons/googlecloud.php:55, src/addons/googlecloud.php:56,
3498
  #: src/addons/googlecloud.php:57
3499
  msgid "Western Europe"
3500
- msgstr ""
3501
 
3502
  #: src/addons/googlecloud.php:51
3503
  msgid "Eastern Asia-Pacific"
3504
- msgstr ""
3505
 
3506
  #: src/addons/googlecloud.php:50
3507
  msgid "Western United States"
3508
- msgstr ""
3509
 
3510
  #: src/addons/googlecloud.php:48, src/addons/googlecloud.php:49
3511
  msgid "Eastern United States"
3512
- msgstr ""
3513
 
3514
  #: src/addons/googlecloud.php:47
3515
  msgid "Central United States"
3516
- msgstr ""
3517
 
3518
  #: src/addons/googlecloud.php:46
3519
  msgid "European Union"
3520
- msgstr ""
3521
 
3522
  #: src/addons/googlecloud.php:45
3523
  msgid "Asia Pacific"
3524
- msgstr ""
3525
 
3526
  #: src/addons/googlecloud.php:44, src/addons/googlecloud.php:45,
3527
  #: src/addons/googlecloud.php:46
3528
  msgid "multi-region location"
3529
- msgstr ""
3530
 
3531
  #: src/addons/googlecloud.php:44
3532
  msgid "United States"
3533
- msgstr ""
3534
 
3535
  #: src/addons/googlecloud.php:40
3536
  msgid "Nearline"
3537
- msgstr ""
3538
 
3539
  #: src/addons/googlecloud.php:39
3540
  msgid "Durable reduced availability"
3541
- msgstr ""
3542
 
3543
  #: src/addons/googlecloud.php:38, src/addons/s3-enhanced.php:62
3544
  msgid "Standard"
3545
- msgstr ""
3546
 
3547
  #: src/addons/azure.php:634
3548
  msgid "container"
3549
- msgstr ""
3550
 
3551
  #: src/addons/azure.php:634
3552
  msgid "You can enter the path of any %s virtual folder you wish to use here."
3553
- msgstr ""
3554
 
3555
  #: src/addons/azure.php:633
3556
  msgid "optional"
3557
- msgstr ""
3558
 
3559
  #: src/addons/azure.php:629
3560
  msgid "See Microsoft's guidelines on container naming by following this link."
3561
- msgstr ""
3562
 
3563
  #: src/addons/azure.php:629
3564
  msgid "Enter the path of the %s you wish to use here."
3565
- msgstr ""
3566
 
3567
  #: src/addons/azure.php:620, src/addons/azure.php:620
3568
  msgid "This is not your Azure login - see the instructions if needing more guidance."
3569
- msgstr ""
3570
 
3571
  #: src/addons/azure.php:619, src/addons/azure.php:623,
3572
  #: src/addons/azure.php:628, src/addons/azure.php:633
3573
  msgid "Azure"
3574
- msgstr ""
3575
 
3576
  #: src/addons/azure.php:600
3577
  msgid "Create Azure credentials in your Azure developer console."
3578
- msgstr ""
3579
 
3580
  #: src/addons/azure.php:552
3581
  msgid "Could not create the container"
3582
- msgstr ""
3583
 
3584
  #: src/addons/azure.php:406
3585
  msgid "Could not access container"
3586
- msgstr ""
3587
 
3588
  #: src/class-updraftplus.php:3307
3589
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
3590
- msgstr ""
3591
 
3592
  #: src/backup.php:1640
3593
  msgid "the options table was not found"
3594
- msgstr ""
3595
 
3596
  #: src/backup.php:1638
3597
  msgid "no options or sitemeta table was found"
3598
- msgstr ""
3599
 
3600
  #: src/backup.php:1638, src/backup.php:1640
3601
  msgid "The database backup appears to have failed"
3602
- msgstr ""
3603
 
3604
  #: src/backup.php:1510
3605
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
3606
- msgstr ""
3607
 
3608
  #: src/templates/wp-admin/advanced/site-info.php:56
3609
  msgid "required for some remote storage providers"
3610
- msgstr ""
3611
 
3612
  #: src/templates/wp-admin/advanced/site-info.php:56
3613
  msgid "Not installed"
@@ -3615,56 +3615,56 @@ msgstr "Не е инсталиран"
3615
 
3616
  #: src/addons/googlecloud.php:1043, src/addons/s3-enhanced.php:59
3617
  msgid "Storage class"
3618
- msgstr ""
3619
 
3620
  #: src/addons/googlecloud.php:1040
3621
  msgid "See Google's guidelines on bucket naming by following this link."
3622
- msgstr ""
3623
 
3624
  #: src/addons/googlecloud.php:1040
3625
  msgid "Enter the name of the %s bucket you wish to use here."
3626
- msgstr ""
3627
 
3628
  #: src/addons/googlecloud.php:1039
3629
  msgid "Bucket"
3630
- msgstr ""
3631
 
3632
  #: src/addons/googlecloud.php:1035, src/addons/googlecloud.php:1035
3633
  msgid "Otherwise, you can leave it blank."
3634
- msgstr ""
3635
 
3636
  #: src/addons/googlecloud.php:1035, src/addons/googlecloud.php:1035
3637
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
3638
- msgstr ""
3639
 
3640
  #: src/addons/googlecloud.php:1035
3641
  msgid "Enter the ID of the %s project you wish to use here."
3642
- msgstr ""
3643
 
3644
  #: src/addons/googlecloud.php:998
3645
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
3646
- msgstr ""
3647
 
3648
  #: src/addons/googlecloud.php:911
3649
  msgid "You must enter a project ID in order to be able to create a new bucket."
3650
- msgstr ""
3651
 
3652
  #: src/addons/googlecloud.php:1033
3653
  msgid "Project ID"
3654
- msgstr ""
3655
 
3656
  #: src/addons/googlecloud.php:762
3657
  msgid "You must save and authenticate before you can test your settings."
3658
- msgstr ""
3659
 
3660
  #: src/addons/googlecloud.php:544
3661
  msgid "Have not yet obtained an access token from Google - you need to authorize or re-authorize your connection to Google Cloud."
3662
- msgstr ""
3663
 
3664
  #: src/addons/googlecloud.php:264, src/addons/googlecloud.php:335,
3665
  #: src/addons/googlecloud.php:900, src/addons/googlecloud.php:950
3666
  msgid "You do not have access to this bucket."
3667
- msgstr ""
3668
 
3669
  #: src/addons/googlecloud.php:264, src/addons/googlecloud.php:317,
3670
  #: src/addons/googlecloud.php:325, src/addons/googlecloud.php:335,
@@ -3673,1099 +3673,1099 @@ msgstr ""
3673
  #: src/addons/googlecloud.php:992, src/addons/googlecloud.php:1020,
3674
  #: src/addons/googlecloud.php:1028, src/addons/googlecloud.php:1040
3675
  msgid "Google Cloud"
3676
- msgstr ""
3677
 
3678
  #: src/addons/googlecloud.php:264, src/addons/googlecloud.php:317,
3679
  #: src/addons/googlecloud.php:335, src/addons/googlecloud.php:900,
3680
  #: src/addons/googlecloud.php:950
3681
  msgid "%s Service Exception."
3682
- msgstr ""
3683
 
3684
  #: src/updraftplus.php:157
3685
  msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
3686
- msgstr ""
3687
 
3688
  #: src/templates/wp-admin/settings/form-contents.php:88
3689
  msgid "or to configure more complex schedules"
3690
- msgstr ""
3691
 
3692
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:11,
3693
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:14
3694
  msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
3695
- msgstr ""
3696
 
3697
  #: src/templates/wp-admin/settings/existing-backups-table.php:170
3698
  msgid "Deselect"
3699
- msgstr ""
3700
 
3701
  #: src/templates/wp-admin/settings/existing-backups-table.php:169
3702
  msgid "Select all"
3703
- msgstr ""
3704
 
3705
  #: src/templates/wp-admin/settings/existing-backups-table.php:167
3706
  msgid "Actions upon selected backups"
3707
- msgstr ""
3708
 
3709
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:56,
3710
  #: src/templates/wp-admin/settings/tab-backups.php:60
3711
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
3712
- msgstr ""
3713
 
3714
  #: src/admin.php:1988
3715
  msgid "Backup sets removed:"
3716
- msgstr ""
3717
 
3718
  #: src/admin.php:896
3719
  msgid "Processing..."
3720
- msgstr ""
3721
 
3722
  #: src/admin.php:894
3723
  msgid "For backups older than"
3724
- msgstr ""
3725
 
3726
  #: src/admin.php:893
3727
  msgid "week(s)"
3728
- msgstr ""
3729
 
3730
  #: src/admin.php:892
3731
  msgid "hour(s)"
3732
- msgstr ""
3733
 
3734
  #: src/admin.php:891
3735
  msgid "day(s)"
3736
- msgstr ""
3737
 
3738
  #: src/admin.php:890
3739
  msgid "in the month"
3740
- msgstr ""
3741
 
3742
  #: src/admin.php:889
3743
  msgid "day"
3744
- msgstr ""
3745
 
3746
  #: src/addons/morestorage.php:30
3747
  msgid "(as many as you like)"
3748
- msgstr ""
3749
 
3750
  #: src/addons/fixtime.php:305, src/addons/fixtime.php:310
3751
  msgid "Add an additional retention rule..."
3752
- msgstr ""
3753
 
3754
  #: src/restorer.php:3205
3755
  msgid "This database needs to be deployed on MySQL version %s or later."
3756
- msgstr ""
3757
 
3758
  #: src/restorer.php:3205
3759
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
3760
- msgstr ""
3761
 
3762
  #: src/methods/updraftvault.php:744
3763
  msgid "You do not currently have any UpdraftPlus Vault quota"
3764
- msgstr ""
3765
 
3766
  #: src/class-updraftplus.php:4742
3767
  msgid "You must upgrade MySQL to be able to use this database."
3768
- msgstr ""
3769
 
3770
  #: src/class-updraftplus.php:4742
3771
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
3772
- msgstr ""
3773
 
3774
  #: src/admin.php:2689
3775
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
3776
- msgstr ""
3777
 
3778
  #: src/methods/updraftvault.php:392, src/methods/updraftvault.php:392
3779
  msgid "Don't know your email address, or forgotten your password?"
3780
- msgstr ""
3781
 
3782
  #: src/methods/updraftvault.php:385
3783
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
3784
- msgstr ""
3785
 
3786
  #: src/methods/updraftvault.php:337, src/methods/updraftvault.php:378
3787
  msgid "Read the %s FAQs here."
3788
- msgstr ""
3789
 
3790
  #: src/addons/s3-enhanced.php:70
3791
  msgid "Check this box to use Amazon's server-side encryption"
3792
- msgstr ""
3793
 
3794
  #: src/addons/s3-enhanced.php:69
3795
  msgid "Server-side encryption"
3796
- msgstr ""
3797
 
3798
  #: src/methods/updraftvault.php:752
3799
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
3800
- msgstr ""
3801
 
3802
  #: src/admin.php:1237
3803
  msgid "Go to the remote storage settings in order to connect."
3804
- msgstr ""
3805
 
3806
  #: src/admin.php:1237
3807
  msgid "%s has been chosen for remote storage, but you are not currently connected."
3808
- msgstr ""
3809
 
3810
  #: src/methods/updraftvault.php:375
3811
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
3812
- msgstr ""
3813
 
3814
  #: src/admin.php:866
3815
  msgid "Update quota count"
3816
- msgstr ""
3817
 
3818
  #: src/admin.php:865
3819
  msgid "Counting..."
3820
- msgstr ""
3821
 
3822
  #: src/admin.php:864
3823
  msgid "Disconnecting..."
3824
- msgstr ""
3825
 
3826
  #: src/admin.php:862
3827
  msgid "Connecting..."
3828
- msgstr ""
3829
 
3830
  #: src/methods/updraftvault.php:506, src/methods/updraftvault.php:579
3831
  msgid "Refresh current status"
3832
- msgstr ""
3833
 
3834
  #: src/methods/updraftvault.php:504, src/methods/updraftvault.php:520,
3835
  #: src/methods/updraftvault.php:522, src/methods/updraftvault.php:579
3836
  msgid "Get more quota"
3837
- msgstr ""
3838
 
3839
  #: src/methods/updraftvault.php:501, src/methods/updraftvault.php:517,
3840
  #: src/methods/updraftvault.php:560
3841
  msgid "Current use:"
3842
- msgstr ""
3843
 
3844
  #: src/methods/updraftvault.php:496
3845
  msgid "You can get more quota here"
3846
- msgstr ""
3847
 
3848
  #: src/methods/updraftvault.php:496
3849
  msgid "Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3850
- msgstr ""
3851
 
3852
  #: src/admin.php:863, src/methods/updraftvault.php:419,
3853
  #: src/methods/updraftvault.php:489
3854
  msgid "Disconnect"
3855
- msgstr ""
3856
 
3857
  #: src/methods/updraftvault.php:416, src/methods/updraftvault.php:481
3858
  msgid "Quota:"
3859
- msgstr ""
3860
 
3861
  #: src/methods/updraftvault.php:415, src/methods/updraftvault.php:479
3862
  msgid "Vault owner"
3863
- msgstr ""
3864
 
3865
  #: src/methods/updraftvault.php:415, src/methods/updraftvault.php:479
3866
  msgid "Well done - there's nothing more needed to set up."
3867
- msgstr ""
3868
 
3869
  #: src/methods/updraftvault.php:415, src/methods/updraftvault.php:479
3870
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
3871
- msgstr ""
3872
 
3873
  #: src/methods/updraftvault.php:421, src/methods/updraftvault.php:475
3874
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
3875
- msgstr ""
3876
 
3877
  #: src/methods/updraftvault.php:392
3878
  msgid "Go here for help"
3879
- msgstr ""
3880
 
3881
  #: src/central/bootstrap.php:585, src/methods/updraftvault.php:381,
3882
  #: src/methods/updraftvault.php:395,
3883
  #: src/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php:4
3884
  msgid "Back..."
3885
- msgstr ""
3886
 
3887
  #: src/methods/updraftvault.php:375
3888
  msgid "Subscriptions can be cancelled at any time."
3889
- msgstr ""
3890
 
3891
  #: src/methods/updraftvault.php:354, src/methods/updraftvault.php:361,
3892
  #: src/methods/updraftvault.php:368
3893
  msgid "%s per quarter"
3894
- msgstr ""
3895
 
3896
  #: src/central/bootstrap.php:620
3897
  msgid "Read more about it here."
3898
- msgstr ""
3899
 
3900
  #: src/methods/updraftvault.php:337, src/methods/updraftvault.php:378
3901
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
3902
- msgstr ""
3903
 
3904
  #: src/methods/updraftvault.php:330, src/methods/updraftvault.php:330
3905
  msgid "Show the options"
3906
- msgstr ""
3907
 
3908
  #: src/methods/updraftvault.php:326, src/methods/updraftvault.php:343
3909
  msgid "Press a button to get started."
3910
- msgstr ""
3911
 
3912
  #: src/methods/updraftvault.php:326, src/methods/updraftvault.php:343
3913
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
3914
- msgstr ""
3915
 
3916
  #: src/methods/updraftvault.php:261
3917
  msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
3918
- msgstr ""
3919
 
3920
  #: src/methods/updraftvault.php:258
3921
  msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
3922
- msgstr ""
3923
 
3924
  #: src/methods/updraftvault.php:255
3925
  msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
3926
- msgstr ""
3927
 
3928
  #: src/methods/updraftvault.php:104
3929
  msgid "Updraft Vault"
3930
- msgstr ""
3931
 
3932
  #: src/addons/azure.php:436, src/addons/backblaze.php:548,
3933
  #: src/addons/googlecloud.php:846, src/methods/s3.php:1238
3934
  msgid "Delete failed:"
3935
- msgstr ""
3936
 
3937
  #: src/backup.php:3346
3938
  msgid "The zip engine returned the message: %s."
3939
- msgstr ""
3940
 
3941
  #: src/addons/s3-enhanced.php:395, src/addons/s3-enhanced.php:397
3942
  msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
3943
- msgstr ""
3944
 
3945
  #: src/addons/s3-enhanced.php:395, src/addons/s3-enhanced.php:395
3946
  msgid "Allow deletion"
3947
- msgstr ""
3948
 
3949
  #: src/addons/s3-enhanced.php:391, src/addons/s3-enhanced.php:393
3950
  msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
3951
- msgstr ""
3952
 
3953
  #: src/addons/s3-enhanced.php:391, src/addons/s3-enhanced.php:391
3954
  msgid "Allow download"
3955
- msgstr ""
3956
 
3957
  #: src/includes/class-remote-send.php:395
3958
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
3959
- msgstr ""
3960
 
3961
  #: src/admin.php:872, src/includes/class-remote-send.php:377
3962
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
3963
- msgstr ""
3964
 
3965
  #: src/includes/class-remote-send.php:643
3966
  msgid "Existing keys"
3967
- msgstr ""
3968
 
3969
  #: src/addons/migrator.php:1803
3970
  msgid "Your new key:"
3971
- msgstr ""
3972
 
3973
  #: src/central/bootstrap.php:415
3974
  msgid "You must copy and paste this key now - it cannot be shown again."
3975
- msgstr ""
3976
 
3977
  #: src/central/bootstrap.php:415, src/includes/class-remote-send.php:517
3978
  msgid "Key created successfully."
3979
- msgstr ""
3980
 
3981
  #: src/includes/class-remote-send.php:500
3982
  msgid "A key with this name already exists; you must use a unique name."
3983
- msgstr ""
3984
 
3985
  #: src/includes/class-remote-send.php:425
3986
  msgid "Also send this backup to the active remote storage locations"
3987
- msgstr ""
3988
 
3989
  #: src/includes/class-remote-send.php:391
3990
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
3991
- msgstr ""
3992
 
3993
  #: src/includes/class-remote-send.php:325
3994
  msgid "site not found"
3995
- msgstr ""
3996
 
3997
  #: src/includes/class-remote-send.php:292
3998
  msgid "Backup data will be sent to:"
3999
- msgstr ""
4000
 
4001
  #: src/addons/migrator.php:230
4002
  msgid "Restore an existing backup set onto this site"
4003
- msgstr ""
4004
 
4005
  #: src/addons/migrator.php:236
4006
  msgid "This site has no backups to restore from yet."
4007
- msgstr ""
4008
 
4009
  #: src/addons/reporting.php:186
4010
  msgid "Backup made by %s"
4011
- msgstr ""
4012
 
4013
  #: src/methods/addon-base-v2.php:227
4014
  msgid "This storage method does not allow downloading"
4015
- msgstr ""
4016
 
4017
  #: src/admin.php:4325
4018
  msgid "(backup set imported from remote location)"
4019
- msgstr ""
4020
 
4021
  #: src/addons/wp-cli.php:373,
4022
  #: src/templates/wp-admin/settings/existing-backups-table.php:106
4023
  msgid "Site"
4024
- msgstr ""
4025
 
4026
  #: src/addons/wp-cli.php:371,
4027
  #: src/templates/wp-admin/settings/existing-backups-table.php:105
4028
  msgid "Backup sent to remote site - not available for download."
4029
- msgstr ""
4030
 
4031
  #: src/includes/class-wpadmin-commands.php:136
4032
  msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
4033
- msgstr ""
4034
 
4035
  #: src/includes/class-wpadmin-commands.php:136
4036
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
4037
- msgstr ""
4038
 
4039
  #: src/admin.php:879, src/includes/class-remote-send.php:407
4040
  msgid "Testing connection..."
4041
- msgstr ""
4042
 
4043
  #: src/admin.php:876,
4044
  #: src/templates/wp-admin/settings/existing-backups-table.php:174
4045
  msgid "Deleting..."
4046
- msgstr ""
4047
 
4048
  #: src/admin.php:875
4049
  msgid "key name"
4050
- msgstr ""
4051
 
4052
  #: src/admin.php:873
4053
  msgid "Please give this key a name (e.g. indicate the site it is for):"
4054
- msgstr ""
4055
 
4056
  #: src/admin.php:870
4057
  msgid "Creating..."
4058
- msgstr ""
4059
 
4060
  #: src/addons/migrator.php:1783
4061
  msgid "Receive a backup from a remote site"
4062
- msgstr ""
4063
 
4064
  #: src/addons/migrator.php:1775
4065
  msgid "Paste key here"
4066
- msgstr ""
4067
 
4068
  #: src/addons/migrator.php:1771
4069
  msgid "How do I get a site's key?"
4070
- msgstr ""
4071
 
4072
  #: src/addons/migrator.php:1771
4073
  msgid "To add a site as a destination for sending to, enter that site's key below."
4074
- msgstr ""
4075
 
4076
  #: src/addons/migrator.php:1762
4077
  msgid "Send a backup to another site"
4078
- msgstr ""
4079
 
4080
  #: src/admin.php:880, src/includes/class-remote-send.php:438,
4081
  #: src/includes/class-remote-send.php:622
4082
  msgid "Send"
4083
- msgstr ""
4084
 
4085
  #: src/admin.php:871, src/includes/class-remote-send.php:616
4086
  msgid "Send to site:"
4087
- msgstr ""
4088
 
4089
  #: src/includes/class-remote-send.php:614
4090
  msgid "No receiving sites have yet been added."
4091
- msgstr ""
4092
 
4093
  #: src/includes/class-remote-send.php:594
4094
  msgid "It is for sending backups to the following site: "
4095
- msgstr ""
4096
 
4097
  #: src/includes/class-remote-send.php:594
4098
  msgid "The key was successfully added."
4099
- msgstr ""
4100
 
4101
  #: src/includes/class-remote-send.php:570
4102
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
4103
- msgstr ""
4104
 
4105
  #: src/includes/class-remote-send.php:559,
4106
  #: src/includes/class-remote-send.php:561,
4107
  #: src/includes/class-remote-send.php:565
4108
  msgid "The entered key was corrupt - please try again."
4109
- msgstr ""
4110
 
4111
  #: src/includes/class-remote-send.php:557
4112
  msgid "The entered key was the wrong length - please try again."
4113
- msgstr ""
4114
 
4115
  #: src/includes/class-remote-send.php:542
4116
  msgid "key"
4117
- msgstr ""
4118
 
4119
  #: src/methods/ftp.php:392, src/methods/ftp.php:392
4120
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
4121
- msgstr ""
4122
 
4123
  #: src/methods/ftp.php:390
4124
  msgid "Passive mode"
4125
- msgstr ""
4126
 
4127
  #: src/methods/ftp.php:385
4128
  msgid "Remote path"
4129
- msgstr ""
4130
 
4131
  #: src/methods/ftp.php:380
4132
  msgid "FTP password"
4133
- msgstr ""
4134
 
4135
  #: src/methods/ftp.php:375
4136
  msgid "FTP login"
4137
- msgstr ""
4138
 
4139
  #: src/methods/ftp.php:370
4140
  msgid "FTP server"
4141
- msgstr ""
4142
 
4143
  #: src/addons/migrator.php:194
4144
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
4145
- msgstr ""
4146
 
4147
  #: src/addons/migrator.php:194
4148
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
4149
- msgstr ""
4150
 
4151
  #: src/admin.php:869
4152
  msgid "Resetting..."
4153
- msgstr ""
4154
 
4155
  #: src/addons/migrator.php:1775, src/admin.php:868
4156
  msgid "Add site"
4157
- msgstr ""
4158
 
4159
  #: src/admin.php:867
4160
  msgid "Adding..."
4161
- msgstr ""
4162
 
4163
  #: src/udaddons/options.php:302
4164
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
4165
- msgstr ""
4166
 
4167
  #: src/restorer.php:3207
4168
  msgid "To use this backup, your database server needs to support the %s character set."
4169
- msgstr ""
4170
 
4171
  #: src/udaddons/updraftplus-addons.php:1062
4172
  msgid "go here to change your password on updraftplus.com."
4173
- msgstr ""
4174
 
4175
  #: src/udaddons/updraftplus-addons.php:1062
4176
  msgid "If you have forgotten your password "
4177
- msgstr ""
4178
 
4179
  #: src/udaddons/updraftplus-addons.php:1061
4180
  msgid "Go here to re-enter your password."
4181
- msgstr ""
4182
 
4183
  #: src/addons/migrator.php:271
4184
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
4185
- msgstr ""
4186
 
4187
  #: src/admin.php:859, src/admin.php:885, src/admin.php:886
4188
  msgid "You have made changes to your settings, and not saved."
4189
- msgstr ""
4190
 
4191
  #: src/addons/onedrive.php:1196
4192
  msgid "N.B. %s is not case-sensitive."
4193
- msgstr ""
4194
 
4195
  #: src/addons/onedrive.php:1186
4196
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
4197
- msgstr ""
4198
 
4199
  #: src/addons/azure.php:601, src/addons/onedrive.php:1157,
4200
  #: src/includes/class-remote-send.php:395
4201
  msgid "For longer help, including screenshots, follow this link."
4202
- msgstr ""
4203
 
4204
  #: src/addons/onedrive.php:1150
4205
  msgid "Create OneDrive credentials in your OneDrive developer console."
4206
- msgstr ""
4207
 
4208
  #: src/addons/onedrive.php:1142
4209
  msgid "You must add the following as the authorized redirect URI in your OneDrive console (under \"API Settings\") when asked"
4210
- msgstr ""
4211
 
4212
  #: src/addons/azure.php:589
4213
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
4214
- msgstr ""
4215
 
4216
  #: src/addons/onedrive.php:1105, src/addons/onedrive.php:1107
4217
  msgid "authorization failed:"
4218
- msgstr ""
4219
 
4220
  #: src/addons/onedrive.php:950, src/addons/onedrive.php:1185,
4221
  #: src/addons/onedrive.php:1189
4222
  msgid "OneDrive"
4223
- msgstr ""
4224
 
4225
  #: src/addons/onedrive.php:735
4226
  msgid "Please re-authorize the connection to your %s account."
4227
- msgstr ""
4228
 
4229
  #: src/methods/email.php:96
4230
  msgid "configure it here"
4231
- msgstr ""
4232
 
4233
  #: src/addons/onedrive.php:728, src/includes/updraftplus-login.php:55,
4234
  #: src/methods/updraftvault.php:717
4235
  msgid "To remove the block, please go here."
4236
- msgstr ""
4237
 
4238
  #: src/addons/s3-enhanced.php:474
4239
  msgid "Do remember to save your settings."
4240
- msgstr ""
4241
 
4242
  #: src/addons/s3-enhanced.php:474
4243
  msgid "You are now using a IAM user account to access your bucket."
4244
- msgstr ""
4245
 
4246
  #: src/addons/s3-enhanced.php:389
4247
  msgid "S3 bucket"
4248
- msgstr ""
4249
 
4250
  #: src/addons/s3-enhanced.php:379
4251
  msgid "China (Beijing) (restricted)"
4252
- msgstr ""
4253
 
4254
  #: src/addons/s3-enhanced.php:378
4255
  msgid "South America (Sao Paulo)"
4256
- msgstr ""
4257
 
4258
  #: src/addons/s3-enhanced.php:377
4259
  msgid "Asia Pacific (Tokyo)"
4260
- msgstr ""
4261
 
4262
  #: src/addons/s3-enhanced.php:375
4263
  msgid "Asia Pacific (Sydney)"
4264
- msgstr ""
4265
 
4266
  #: src/addons/s3-enhanced.php:374
4267
  msgid "Asia Pacific (Singapore)"
4268
- msgstr ""
4269
 
4270
  #: src/addons/s3-enhanced.php:365
4271
  msgid "US Government West (restricted)"
4272
- msgstr ""
4273
 
4274
  #: src/addons/s3-enhanced.php:364
4275
  msgid "US West (N. California)"
4276
- msgstr ""
4277
 
4278
  #: src/addons/s3-enhanced.php:363
4279
  msgid "US West (Oregon)"
4280
- msgstr ""
4281
 
4282
  #: src/addons/s3-enhanced.php:361
4283
  msgid "US Standard (default)"
4284
- msgstr ""
4285
 
4286
  #: src/addons/s3-enhanced.php:357
4287
  msgid "S3 storage region"
4288
- msgstr ""
4289
 
4290
  #: src/addons/s3-enhanced.php:355
4291
  msgid "New IAM username"
4292
- msgstr ""
4293
 
4294
  #: src/addons/s3-enhanced.php:354
4295
  msgid "Admin secret key"
4296
- msgstr ""
4297
 
4298
  #: src/addons/s3-enhanced.php:353
4299
  msgid "Admin access key"
4300
- msgstr ""
4301
 
4302
  #: src/addons/s3-enhanced.php:346
4303
  msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
4304
- msgstr ""
4305
 
4306
  #: src/addons/s3-enhanced.php:346
4307
  msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
4308
- msgstr ""
4309
 
4310
  #: src/addons/s3-enhanced.php:346
4311
  msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
4312
- msgstr ""
4313
 
4314
  #: src/addons/s3-enhanced.php:426
4315
  msgid "Create new IAM user and S3 bucket"
4316
- msgstr ""
4317
 
4318
  #: src/addons/s3-enhanced.php:332
4319
  msgid "Secret Key: %s"
4320
- msgstr ""
4321
 
4322
  #: src/addons/s3-enhanced.php:332
4323
  msgid "Access Key: %s"
4324
- msgstr ""
4325
 
4326
  #: src/addons/s3-enhanced.php:320
4327
  msgid "Failed to apply User Policy"
4328
- msgstr ""
4329
 
4330
  #: src/addons/s3-enhanced.php:261, src/addons/s3-enhanced.php:265
4331
  msgid "Operation to create user Access Key failed"
4332
- msgstr ""
4333
 
4334
  #: src/addons/s3-enhanced.php:259
4335
  msgid "Failed to create user Access Key"
4336
- msgstr ""
4337
 
4338
  #: src/addons/s3-enhanced.php:241, src/addons/s3-enhanced.php:244,
4339
  #: src/addons/s3-enhanced.php:248
4340
  msgid "IAM operation failed (%s)"
4341
- msgstr ""
4342
 
4343
  #: src/addons/s3-enhanced.php:239
4344
  msgid "Conflict: that user already exists"
4345
- msgstr ""
4346
 
4347
  #: src/addons/s3-enhanced.php:211
4348
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another AWS user may already have taken your name)."
4349
- msgstr ""
4350
 
4351
  #: src/addons/s3-enhanced.php:165
4352
  msgid "AWS authentication failed"
4353
- msgstr ""
4354
 
4355
  #: src/addons/s3-enhanced.php:158
4356
  msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
4357
- msgstr ""
4358
 
4359
  #: src/addons/s3-enhanced.php:131
4360
  msgid "You need to enter a bucket"
4361
- msgstr ""
4362
 
4363
  #: src/addons/s3-enhanced.php:127
4364
  msgid "You need to enter a new IAM username"
4365
- msgstr ""
4366
 
4367
  #: src/addons/s3-enhanced.php:123
4368
  msgid "You need to enter an admin secret key"
4369
- msgstr ""
4370
 
4371
  #: src/addons/s3-enhanced.php:119
4372
  msgid "You need to enter an admin access key"
4373
- msgstr ""
4374
 
4375
  #: src/addons/s3-enhanced.php:92
4376
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
4377
- msgstr ""
4378
 
4379
  #: src/methods/s3.php:947
4380
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
4381
- msgstr ""
4382
 
4383
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
4384
  msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world's most popular backup plugin."
4385
- msgstr ""
4386
 
4387
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
4388
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
4389
- msgstr ""
4390
 
4391
  #: src/addons/onedrive.php:708, src/addons/onedrive.php:728,
4392
  #: src/includes/updraftplus-login.php:55, src/methods/updraftvault.php:717,
4393
  #: src/udaddons/updraftplus-addons.php:1013,
4394
  #: src/udaddons/updraftplus-addons.php:1026
4395
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
4396
- msgstr ""
4397
 
4398
  #: src/addons/onedrive.php:728, src/includes/updraftplus-login.php:55,
4399
  #: src/methods/updraftvault.php:717, src/udaddons/updraftplus-addons.php:1026
4400
  msgid "It appears that your web server's IP Address (%s) is blocked."
4401
- msgstr ""
4402
 
4403
  #: src/addons/onedrive.php:728, src/includes/updraftplus-login.php:55,
4404
  #: src/methods/updraftvault.php:717, src/udaddons/updraftplus-addons.php:1026
4405
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
4406
- msgstr ""
4407
 
4408
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:30
4409
  msgid "Premium WooCommerce plugins"
4410
- msgstr ""
4411
 
4412
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:30
4413
  msgid "Free two-factor security plugin"
4414
- msgstr ""
4415
 
4416
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
4417
  msgid "More quality plugins"
4418
- msgstr ""
4419
 
4420
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
4421
  msgid "Go to the shop."
4422
- msgstr ""
4423
 
4424
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
4425
  msgid "Compare with the free version"
4426
- msgstr ""
4427
 
4428
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
4429
  #: src/templates/wp-admin/settings/tab-addons.php:72
4430
  msgid "UpdraftPlus Premium"
4431
- msgstr ""
4432
 
4433
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
4434
  msgid "Free Newsletter"
4435
- msgstr ""
4436
 
4437
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
4438
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
4439
  msgid "Dismiss (for %s months)"
4440
- msgstr ""
4441
 
4442
  #: src/addons/fixtime.php:447
4443
  msgid "(at same time as files backup)"
4444
- msgstr ""
4445
 
4446
  #: src/admin.php:3850
4447
  msgid "No backup has been completed"
4448
- msgstr ""
4449
 
4450
  #: src/templates/wp-admin/settings/header.php:21
4451
  msgid "Newsletter sign-up"
4452
- msgstr ""
4453
 
4454
  #: src/includes/updraftplus-notices.php:148
4455
  msgid "Follow this link to sign up for the UpdraftPlus newsletter."
4456
- msgstr ""
4457
 
4458
  #: src/templates/wp-admin/settings/tab-addons.php:152,
4459
  #: src/templates/wp-admin/settings/tab-addons.php:153
4460
  msgid "Backup non-WordPress files and databases"
4461
- msgstr ""
4462
 
4463
  #: src/templates/wp-admin/settings/tab-addons.php:27
4464
  msgid "Ask a pre-sales question"
4465
- msgstr ""
4466
 
4467
  #: src/templates/wp-admin/settings/tab-addons.php:26
4468
  msgid "Pre-sales FAQs"
4469
- msgstr ""
4470
 
4471
  #: src/templates/wp-admin/settings/tab-addons.php:25
4472
  msgid "Full feature list"
4473
- msgstr ""
4474
 
4475
  #: src/addons/autobackup.php:1102
4476
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4477
- msgstr ""
4478
 
4479
  #: src/methods/s3.php:187, src/methods/s3.php:200
4480
  msgid "%s Error: Failed to initialise"
4481
- msgstr ""
4482
 
4483
  #: src/templates/wp-admin/settings/form-contents.php:191
4484
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
4485
  msgid "or"
4486
- msgstr ""
4487
 
4488
  #: src/admin.php:853
4489
  msgid "You did not select any components to restore. Please select at least one, and then try again."
4490
- msgstr ""
4491
 
4492
  #: src/addons/sftp.php:465, src/addons/sftp.php:466
4493
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
4494
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
4495
- msgstr ""
4496
 
4497
  #: src/addons/sftp.php:416
4498
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
4499
- msgstr ""
4500
 
4501
  #: src/methods/openstack2.php:190
4502
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
4503
  msgid "tenant"
4504
- msgstr ""
4505
 
4506
  #: src/methods/openstack2.php:137, src/methods/openstack2.php:139
4507
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
4508
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
4509
- msgstr ""
4510
 
4511
  #: src/templates/wp-admin/settings/form-contents.php:261
4512
  msgid "your site's admin address"
4513
- msgstr ""
4514
 
4515
  #: src/templates/wp-admin/settings/form-contents.php:261
4516
  msgid "Check this box to have a basic report sent to"
4517
- msgstr ""
4518
 
4519
  #: src/admin.php:3866
4520
  msgctxt "i.e. Non-automatic"
4521
  msgid "Manual"
4522
- msgstr ""
4523
 
4524
  #: src/restorer.php:3160
4525
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
4526
  msgid "An error (%s) occurred:"
4527
- msgstr ""
4528
 
4529
  #: src/addons/lockadmin.php:191
4530
  msgid "Change Lock Settings"
4531
- msgstr ""
4532
 
4533
  #: src/addons/morefiles.php:272
4534
  msgid "Any other file/directory on your server that you wish to backup"
4535
- msgstr ""
4536
 
4537
  #: src/admin.php:2706
4538
  msgid "For even more features and personal support, check out "
4539
- msgstr ""
4540
 
4541
  #: src/addons/moredatabase.php:59
4542
  msgid "Database decryption phrase"
4543
- msgstr ""
4544
 
4545
  #: src/addons/autobackup.php:157, src/addons/autobackup.php:1048,
4546
  #: src/admin.php:858
4547
  msgid "Automatic backup before update"
4548
- msgstr ""
4549
 
4550
  #: src/addons/autobackup.php:122
4551
  msgid "WordPress core (only)"
4552
- msgstr ""
4553
 
4554
  #: src/addons/lockadmin.php:243
4555
  msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
4556
- msgstr ""
4557
 
4558
  #: src/addons/lockadmin.php:234
4559
  msgid "To access the UpdraftPlus settings, please enter your unlock password"
4560
- msgstr ""
4561
 
4562
  #: src/addons/lockadmin.php:231
4563
  msgid "Password incorrect"
4564
- msgstr ""
4565
 
4566
  #: src/addons/lockadmin.php:219, src/addons/lockadmin.php:225
4567
  msgid "Unlock"
4568
- msgstr ""
4569
 
4570
  #: src/addons/lockadmin.php:189
4571
  msgid "Otherwise, the default link will be shown."
4572
- msgstr ""
4573
 
4574
  #: src/addons/lockadmin.php:189
4575
  msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
4576
- msgstr ""
4577
 
4578
  #: src/addons/lockadmin.php:189
4579
  msgid "Support URL"
4580
- msgstr ""
4581
 
4582
  #: src/addons/lockadmin.php:187
4583
  msgid "Require password again after"
4584
- msgstr ""
4585
 
4586
  #: src/addons/lockadmin.php:178, src/addons/lockadmin.php:179
4587
  msgid "%s weeks"
4588
- msgstr ""
4589
 
4590
  #: src/addons/lockadmin.php:177
4591
  msgid "1 week"
4592
- msgstr ""
4593
 
4594
  #: src/addons/lockadmin.php:175, src/addons/lockadmin.php:176
4595
  msgid "%s hours"
4596
- msgstr ""
4597
 
4598
  #: src/addons/lockadmin.php:174
4599
  msgid "1 hour"
4600
- msgstr ""
4601
 
4602
  #: src/addons/lockadmin.php:163
4603
  msgid "Please make sure that you have made a note of the password!"
4604
- msgstr ""
4605
 
4606
  #: src/addons/lockadmin.php:156,
4607
  #: src/templates/wp-admin/advanced/lock-admin.php:8
4608
  msgid "Lock access to the UpdraftPlus settings page"
4609
- msgstr ""
4610
 
4611
  #: src/addons/lockadmin.php:129
4612
  msgid "The admin password has been changed."
4613
- msgstr ""
4614
 
4615
  #: src/addons/lockadmin.php:127
4616
  msgid "An admin password has been set."
4617
- msgstr ""
4618
 
4619
  #: src/addons/lockadmin.php:125
4620
  msgid "The admin password has now been removed."
4621
- msgstr ""
4622
 
4623
  #: src/addons/morefiles.php:155
4624
  msgid "(learn more about this significant option)"
4625
- msgstr ""
4626
 
4627
  #: src/udaddons/options.php:237
4628
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
4629
- msgstr ""
4630
 
4631
  #: src/admin.php:3350, src/admin.php:4422
4632
  msgid "View Log"
4633
- msgstr ""
4634
 
4635
  #: src/templates/wp-admin/settings/existing-backups-table.php:18,
4636
  #: src/templates/wp-admin/settings/existing-backups-table.php:101
4637
  msgid "Backup data (click to download)"
4638
- msgstr ""
4639
 
4640
  #: src/templates/wp-admin/settings/existing-backups-table.php:17,
4641
  #: src/templates/wp-admin/settings/existing-backups-table.php:68
4642
  msgid "Backup date"
4643
- msgstr ""
4644
 
4645
  #: src/templates/wp-admin/settings/form-contents.php:42,
4646
  #: src/templates/wp-admin/settings/form-contents.php:76
4647
  msgid "and retain this many scheduled backups"
4648
- msgstr ""
4649
 
4650
  #: src/admin.php:3820
4651
  msgid "incremental backup; base backup: %s"
4652
- msgstr ""
4653
 
4654
  #: src/templates/wp-admin/advanced/lock-admin.php:19
4655
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
4656
- msgstr ""
4657
 
4658
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:69,
4659
  #: src/templates/wp-admin/settings/tab-backups.php:71
4660
  msgid "Upload files into UpdraftPlus."
4661
- msgstr ""
4662
 
4663
  #: src/admin.php:1180, src/includes/class-commands.php:469,
4664
  #: src/templates/wp-admin/settings/take-backup.php:13
4665
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
4666
- msgstr ""
4667
 
4668
  #: src/class-updraftplus.php:4653
4669
  msgid "Backup label:"
4670
- msgstr ""
4671
 
4672
  #: src/addons/backblaze.php:198, src/admin.php:2269
4673
  msgid "Error: unexpected file read fail"
4674
- msgstr ""
4675
 
4676
  #: src/backup.php:3352
4677
  msgid "check your log for more details."
4678
- msgstr ""
4679
 
4680
  #: src/backup.php:3350
4681
  msgid "your web hosting account appears to be full; please see: %s"
4682
- msgstr ""
4683
 
4684
  #: src/backup.php:3348
4685
  msgid "A zip error occurred"
4686
- msgstr ""
4687
 
4688
  #: src/addons/reporting.php:81
4689
  msgid "Your label for this backup (optional)"
4690
- msgstr ""
4691
 
4692
  #: src/methods/googledrive.php:1329
4693
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
4694
- msgstr ""
4695
 
4696
  #: src/methods/updraftvault.php:755, src/udaddons/updraftplus-addons.php:1065
4697
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
4698
- msgstr ""
4699
 
4700
  #: src/methods/updraftvault.php:752, src/udaddons/updraftplus-addons.php:1061
4701
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
4702
- msgstr ""
4703
 
4704
  #: src/methods/updraftvault.php:693, src/udaddons/updraftplus-addons.php:930
4705
  msgid "You need to supply both an email address and a password"
4706
- msgstr ""
4707
 
4708
  #: src/class-updraftplus.php:4672
4709
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
4710
- msgstr ""
4711
 
4712
  #: src/class-updraftplus.php:4672
4713
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
4714
- msgstr ""
4715
 
4716
  #: src/addons/migrator.php:1261
4717
  msgid "already done"
4718
- msgstr ""
4719
 
4720
  #: src/addons/migrator.php:1221
4721
  msgid "skipped (not in list)"
4722
- msgstr ""
4723
 
4724
  #: src/addons/migrator.php:1221, src/addons/migrator.php:1261,
4725
  #: src/addons/migrator.php:1395
4726
  msgid "Search and replacing table:"
4727
- msgstr ""
4728
 
4729
  #: src/addons/migrator.php:387
4730
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
4731
- msgstr ""
4732
 
4733
  #: src/addons/migrator.php:387
4734
  msgid "These tables only"
4735
- msgstr ""
4736
 
4737
  #: src/addons/migrator.php:386
4738
  msgid "Rows per batch"
4739
- msgstr ""
4740
 
4741
  #: src/udaddons/options.php:97
4742
  msgid "You have not yet connected with your UpdraftPlus.Com account."
4743
- msgstr ""
4744
 
4745
  #: src/udaddons/options.php:95, src/udaddons/options.php:97
4746
  msgid "You need to connect to receive future updates to UpdraftPlus."
4747
- msgstr ""
4748
 
4749
  #: src/class-updraftplus.php:4643, src/class-updraftplus.php:4645
4750
  msgid "Any support requests to do with %s should be raised with your web hosting company."
4751
- msgstr ""
4752
 
4753
  #: src/class-updraftplus.php:4643
4754
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
4755
- msgstr ""
4756
 
4757
  #: src/class-updraftplus.php:4643
4758
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
4759
- msgstr ""
4760
 
4761
  #: src/class-updraftplus.php:4643, src/class-updraftplus.php:4645
4762
  msgid "The site in this backup was running on a webserver with version %s of %s. "
4763
- msgstr ""
4764
 
4765
  #: src/includes/updraftplus-notices.php:139,
4766
  #: src/includes/updraftplus-notices.php:140
4767
  msgid "LinkedIn"
4768
- msgstr ""
4769
 
4770
  #: src/includes/updraftplus-notices.php:139,
4771
  #: src/includes/updraftplus-notices.php:140
@@ -4785,85 +4785,85 @@ msgstr "Twitter"
4785
 
4786
  #: src/includes/updraftplus-notices.php:138
4787
  msgid "UpdraftPlus is on social media - check us out!"
4788
- msgstr ""
4789
 
4790
  #: src/addons/wp-cli.php:849, src/includes/class-filesystem-functions.php:83
4791
  msgid "Why am I seeing this?"
4792
- msgstr ""
4793
 
4794
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
4795
  #: src/templates/wp-admin/settings/tab-backups.php:59
4796
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
4797
- msgstr ""
4798
 
4799
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
4800
  #: src/templates/wp-admin/settings/tab-backups.php:59
4801
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
4802
- msgstr ""
4803
 
4804
  #: src/admin.php:2190, src/admin.php:2213, src/includes/class-commands.php:839
4805
  msgid "Start backup"
4806
- msgstr ""
4807
 
4808
  #: src/class-updraftplus.php:4614, src/restorer.php:1687
4809
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4810
- msgstr ""
4811
 
4812
  #: src/admin.php:3718
4813
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
4814
- msgstr ""
4815
 
4816
  #: src/templates/wp-admin/advanced/advanced-tools.php:6
4817
  msgid "Unless you have a problem, you can completely ignore everything here."
4818
- msgstr ""
4819
 
4820
  #: src/admin.php:2452
4821
  msgid "This file could not be uploaded"
4822
- msgstr ""
4823
 
4824
  #: src/admin.php:2415
4825
  msgid "You will find more information about this in the Settings section."
4826
- msgstr ""
4827
 
4828
  #: src/addons/importer.php:78
4829
  msgid "Supported backup plugins: %s"
4830
- msgstr ""
4831
 
4832
  #: src/addons/importer.php:78
4833
  msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognized - please follow this link."
4834
- msgstr ""
4835
 
4836
  #: src/addons/incremental.php:363
4837
  msgid "Tell me more about incremental backups"
4838
- msgstr ""
4839
 
4840
  #: src/templates/wp-admin/advanced/site-info.php:44
4841
  msgid "Memory limit"
4842
- msgstr ""
4843
 
4844
  #: src/includes/class-filesystem-functions.php:285, src/restorer.php:2383
4845
  msgid "restoration"
4846
- msgstr ""
4847
 
4848
  #: src/class-updraftplus.php:3375
4849
  msgid "Incremental"
4850
- msgstr ""
4851
 
4852
  #: src/class-updraftplus.php:3375
4853
  msgid "Full backup"
4854
- msgstr ""
4855
 
4856
  #: src/addons/autobackup.php:570, src/addons/autobackup.php:572
4857
  msgid "now proceeding with the updates..."
4858
- msgstr ""
4859
 
4860
  #: src/addons/autobackup.php:570, src/addons/autobackup.php:572
4861
  msgid "(view log...)"
4862
- msgstr ""
4863
 
4864
  #: src/addons/autobackup.php:570, src/addons/autobackup.php:572
4865
  msgid "Backup succeeded"
4866
- msgstr ""
4867
 
4868
  #: src/addons/incremental.php:330, src/addons/incremental.php:331,
4869
  #: src/addons/incremental.php:332, src/addons/incremental.php:333,
@@ -4871,272 +4871,272 @@ msgstr ""
4871
  #: src/admin.php:3871, src/updraftplus.php:100, src/updraftplus.php:101,
4872
  #: src/updraftplus.php:102
4873
  msgid "Every %s hours"
4874
- msgstr ""
4875
 
4876
  #: src/addons/migrator.php:916, src/addons/migrator.php:918
4877
  msgid "search and replace"
4878
- msgstr ""
4879
 
4880
  #: src/addons/migrator.php:389
4881
  msgid "Go"
4882
- msgstr ""
4883
 
4884
  #: src/addons/migrator.php:378
4885
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
4886
- msgstr ""
4887
 
4888
  #: src/addons/migrator.php:377
4889
  msgid "This can easily destroy your site; so, use it with care!"
4890
- msgstr ""
4891
 
4892
  #: src/addons/migrator.php:333, src/addons/migrator.php:385
4893
  msgid "Replace with"
4894
- msgstr ""
4895
 
4896
  #: src/addons/migrator.php:332, src/addons/migrator.php:384
4897
  msgid "Search for"
4898
- msgstr ""
4899
 
4900
  #: src/addons/migrator.php:331, src/addons/migrator.php:376,
4901
  #: src/templates/wp-admin/advanced/search-replace.php:7,
4902
  #: src/templates/wp-admin/advanced/tools-menu.php:18
4903
  msgid "Search / replace database"
4904
- msgstr ""
4905
 
4906
  #: src/addons/migrator.php:337
4907
  msgid "search term"
4908
- msgstr ""
4909
 
4910
  #: src/restorer.php:3212
4911
  msgid "Too many database errors have occurred - aborting"
4912
- msgstr ""
4913
 
4914
  #: src/class-updraftplus.php:3443
4915
  msgid "read more at %s"
4916
- msgstr ""
4917
 
4918
  #: src/class-updraftplus.php:3443
4919
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4920
- msgstr ""
4921
 
4922
  #: src/methods/googledrive.php:1336
4923
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
4924
- msgstr ""
4925
 
4926
  #: src/includes/class-backup-history.php:131
4927
  msgid "You have not yet made any backups."
4928
- msgstr ""
4929
 
4930
  #: src/templates/wp-admin/settings/form-contents.php:153
4931
  msgid "Database Options"
4932
- msgstr ""
4933
 
4934
  #: src/templates/wp-admin/advanced/site-info.php:95
4935
  msgid "Plugins for debugging:"
4936
- msgstr ""
4937
 
4938
  #: src/templates/wp-admin/advanced/site-info.php:74
4939
  msgid "%s (%s used)"
4940
- msgstr ""
4941
 
4942
  #: src/templates/wp-admin/advanced/site-info.php:74
4943
  msgid "Free disk space in account:"
4944
- msgstr ""
4945
 
4946
  #: src/admin.php:5211, src/templates/wp-admin/settings/take-backup.php:51
4947
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4948
- msgstr ""
4949
 
4950
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4951
  #: src/templates/wp-admin/settings/tab-backups.php:21,
4952
  #: src/templates/wp-admin/settings/tab-backups.php:44
4953
  msgid "Existing Backups"
4954
- msgstr ""
4955
 
4956
  #: src/admin.php:1185
4957
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
4958
- msgstr ""
4959
 
4960
  #: src/admin.php:1185
4961
  msgid "To make a backup, just press the Backup Now button."
4962
- msgstr ""
4963
 
4964
  #: src/admin.php:1185
4965
  msgid "Welcome to UpdraftPlus!"
4966
- msgstr ""
4967
 
4968
  #: src/addons/moredatabase.php:318
4969
  msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
4970
- msgstr ""
4971
 
4972
  #: src/addons/moredatabase.php:257
4973
  msgid "Testing..."
4974
- msgstr ""
4975
 
4976
  #: src/addons/moredatabase.php:244
4977
  msgid "Test connection..."
4978
- msgstr ""
4979
 
4980
  #: src/addons/moredatabase.php:243
4981
  msgid "Table prefix"
4982
- msgstr ""
4983
 
4984
  #: src/addons/moredatabase.php:237
4985
  msgid "Backup external database"
4986
- msgstr ""
4987
 
4988
  #: src/addons/moredatabase.php:177
4989
  msgid "Add an external database to backup..."
4990
- msgstr ""
4991
 
4992
  #: src/addons/moredatabase.php:173
4993
  msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
4994
- msgstr ""
4995
 
4996
  #: src/addons/moredatabase.php:172
4997
  msgid "Backup non-WordPress tables contained in the same database as WordPress"
4998
- msgstr ""
4999
 
5000
  #: src/addons/moredatabase.php:172
5001
  msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
5002
- msgstr ""
5003
 
5004
  #: src/addons/moredatabase.php:157
5005
  msgid "Connection failed."
5006
- msgstr ""
5007
 
5008
  #: src/addons/moredatabase.php:155
5009
  msgid "Connection succeeded."
5010
- msgstr ""
5011
 
5012
  #: src/addons/moredatabase.php:137
5013
  msgid "%s total table(s) found; %s with the indicated prefix."
5014
- msgstr ""
5015
 
5016
  #: src/addons/moredatabase.php:131
5017
  msgid "%s table(s) found."
5018
- msgstr ""
5019
 
5020
  #: src/addons/moredatabase.php:104
5021
  msgid "database connection attempt failed"
5022
- msgstr ""
5023
 
5024
  #: src/addons/moredatabase.php:93
5025
  msgid "database name"
5026
- msgstr ""
5027
 
5028
  #: src/addons/moredatabase.php:91
5029
  msgid "host"
5030
- msgstr ""
5031
 
5032
  #: src/addons/moredatabase.php:89
5033
  msgid "user"
5034
- msgstr ""
5035
 
5036
  #: src/class-updraftplus.php:1878
5037
  msgid "External database (%s)"
5038
- msgstr ""
5039
 
5040
  #: src/methods/googledrive.php:1336
5041
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
5042
- msgstr ""
5043
 
5044
  #: src/methods/googledrive.php:600
5045
  msgid "failed to access parent folder"
5046
- msgstr ""
5047
 
5048
  #: src/addons/googlecloud.php:701, src/addons/onedrive.php:918,
5049
  #: src/addons/onedrive.php:929, src/methods/googledrive.php:525,
5050
  #: src/methods/googledrive.php:538
5051
  msgid "However, subsequent access attempts failed:"
5052
- msgstr ""
5053
 
5054
  #: src/addons/wp-cli.php:434, src/admin.php:4188
5055
  msgid "External database"
5056
- msgstr ""
5057
 
5058
  #: src/templates/wp-admin/settings/form-contents.php:305
5059
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
5060
- msgstr ""
5061
 
5062
  #: src/templates/wp-admin/settings/form-contents.php:234
5063
  msgid "Backup more databases"
5064
- msgstr ""
5065
 
5066
  #: src/templates/wp-admin/settings/form-contents.php:193
5067
  msgid "First, enter the decryption key"
5068
- msgstr ""
5069
 
5070
  #: src/templates/wp-admin/settings/form-contents.php:176
5071
  msgid "You can manually decrypt an encrypted database here."
5072
- msgstr ""
5073
 
5074
  #: src/templates/wp-admin/settings/form-contents.php:162
5075
  msgid "It can also backup external databases."
5076
- msgstr ""
5077
 
5078
  #: src/templates/wp-admin/settings/form-contents.php:162
5079
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
5080
- msgstr ""
5081
 
5082
  #: src/templates/wp-admin/settings/form-contents.php:88
5083
  msgid "use UpdraftPlus Premium"
5084
- msgstr ""
5085
 
5086
  #: src/class-updraftplus.php:4495
5087
  msgid "Decryption failed. The database file is encrypted."
5088
- msgstr ""
5089
 
5090
  #: src/includes/class-wpadmin-commands.php:148
5091
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
5092
- msgstr ""
5093
 
5094
  #: src/restorer.php:2704, src/restorer.php:3123, src/restorer.php:3190,
5095
  #: src/restorer.php:3207
5096
  msgid "An error occurred on the first %s command - aborting run"
5097
- msgstr ""
5098
 
5099
  #: src/addons/moredatabase.php:112, src/backup.php:1451
5100
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
5101
- msgstr ""
5102
 
5103
  #: src/backup.php:1451
5104
  msgid "database connection attempt failed."
5105
- msgstr ""
5106
 
5107
  #: src/addons/migrator.php:1152
5108
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
5109
- msgstr ""
5110
 
5111
  #: src/addons/google-enhanced.php:77, src/addons/google-enhanced.php:80
5112
  msgid "In %s, path names are case sensitive."
5113
- msgstr ""
5114
 
5115
  #: src/addons/azure.php:634, src/addons/google-enhanced.php:77,
5116
  #: src/addons/onedrive.php:1196
5117
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
5118
- msgstr ""
5119
 
5120
  #: src/addons/google-enhanced.php:77, src/addons/googlecloud.php:1040,
5121
  #: src/addons/onedrive.php:1196
5122
  msgid "e.g. %s"
5123
- msgstr ""
5124
 
5125
  #: src/addons/google-enhanced.php:77, src/addons/onedrive.php:1196
5126
  msgid "Enter the path of the %s folder you wish to use here."
5127
- msgstr ""
5128
 
5129
  #: src/methods/openstack2.php:170
5130
  msgid "Container"
5131
- msgstr ""
5132
 
5133
  #: src/methods/openstack2.php:151, src/methods/openstack2.php:153
5134
  msgid "Leave this blank, and a default will be chosen."
5135
- msgstr ""
5136
 
5137
  #: src/methods/openstack2.php:144
5138
  msgid "Tenant"
5139
- msgstr ""
5140
 
5141
  #: src/admin.php:987, src/admin.php:5652, src/methods/openstack2.php:144,
5142
  #: src/restorer.php:263, src/restorer.php:265,
@@ -5144,513 +5144,513 @@ msgstr ""
5144
  #: src/templates/wp-admin/settings/tab-backups.php:27,
5145
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:14
5146
  msgid "Follow this link for more information"
5147
- msgstr ""
5148
 
5149
  #: src/methods/openstack2.php:136, src/methods/openstack2.php:195
5150
  msgid "authentication URI"
5151
- msgstr ""
5152
 
5153
  #: src/methods/openstack2.php:120
5154
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
5155
- msgstr ""
5156
 
5157
  #: src/methods/addon-base-v2.php:244, src/methods/addon-base-v2.php:264
5158
  msgid "Failed to download %s"
5159
- msgstr ""
5160
 
5161
  #: src/methods/addon-base-v2.php:258
5162
  msgid "Failed to download"
5163
- msgstr ""
5164
 
5165
  #: src/methods/addon-base-v2.php:124
5166
  msgid "failed to list files"
5167
- msgstr ""
5168
 
5169
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98
5170
  msgid "Failed to upload %s"
5171
- msgstr ""
5172
 
5173
  #: src/methods/dropbox.php:802, src/methods/dropbox.php:804
5174
  msgid "Success:"
5175
- msgstr ""
5176
 
5177
  #: src/methods/backup-module.php:546
5178
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and follow this link to complete authentication with %s."
5179
- msgstr ""
5180
 
5181
  #: src/addons/onedrive.php:1220, src/methods/dropbox.php:614
5182
  msgid "(You appear to be already authenticated)."
5183
- msgstr ""
5184
 
5185
  #: src/methods/dropbox.php:610
5186
  msgid "Dropbox"
5187
- msgstr ""
5188
 
5189
  #: src/addons/onedrive.php:1213, src/methods/dropbox.php:610
5190
  msgid "Authenticate with %s"
5191
- msgstr ""
5192
 
5193
  #: src/methods/cloudfiles.php:403, src/methods/openstack-base.php:460
5194
  msgid "Error downloading remote file: Failed to download"
5195
- msgstr ""
5196
 
5197
  #: src/methods/openstack-base.php:531, src/methods/openstack-base.php:536
5198
  msgid "Region: %s"
5199
- msgstr ""
5200
 
5201
  #: src/methods/openstack-base.php:530
5202
  msgid "%s error - we accessed the container, but failed to create a file within it"
5203
- msgstr ""
5204
 
5205
  #: src/methods/openstack-base.php:446
5206
  msgid "The %s object was not found"
5207
- msgstr ""
5208
 
5209
  #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:369,
5210
  #: src/methods/openstack-base.php:438
5211
  msgid "Could not access %s container"
5212
- msgstr ""
5213
 
5214
  #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:122,
5215
  #: src/methods/openstack-base.php:129, src/methods/openstack-base.php:361,
5216
  #: src/methods/openstack-base.php:426
5217
  msgid "%s error - failed to access the container"
5218
- msgstr ""
5219
 
5220
  #: src/addons/googlecloud.php:1109, src/addons/onedrive.php:1256,
5221
  #: src/methods/dropbox.php:667, src/methods/googledrive.php:1418
5222
  msgid "Account holder's name: %s."
5223
- msgstr ""
5224
 
5225
  #: src/methods/googledrive.php:1395
5226
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
5227
- msgstr ""
5228
 
5229
  #: src/methods/googledrive.php:1382
5230
  msgid "It is an ID number internal to Google Drive"
5231
- msgstr ""
5232
 
5233
  #: src/methods/googledrive.php:1382
5234
  msgid "<strong>This is NOT a folder name</strong>."
5235
- msgstr ""
5236
 
5237
  #: src/addons/google-enhanced.php:75, src/methods/googledrive.php:1377,
5238
  #: src/methods/googledrive.php:1388
5239
  msgid "Folder"
5240
- msgstr ""
5241
 
5242
  #: src/addons/onedrive.php:463
5243
  msgid "%s download: failed: file not found"
5244
- msgstr ""
5245
 
5246
  #: src/addons/googlecloud.php:721, src/methods/googledrive.php:558
5247
  msgid "Name: %s."
5248
- msgstr ""
5249
 
5250
  #: src/methods/googledrive.php:297
5251
  msgid "Google Drive list files: failed to access parent folder"
5252
- msgstr ""
5253
 
5254
  #: src/methods/addon-not-yet-present.php:95, src/methods/insufficient.php:121
5255
  msgid "Your %s version: %s."
5256
- msgstr ""
5257
 
5258
  #: src/methods/addon-not-yet-present.php:94, src/methods/insufficient.php:120
5259
  msgid "You will need to ask your web hosting company to upgrade."
5260
- msgstr ""
5261
 
5262
  #: src/methods/addon-not-yet-present.php:19, src/methods/insufficient.php:21
5263
  msgid "This remote storage method (%s) requires PHP %s or later."
5264
- msgstr ""
5265
 
5266
  #: src/templates/wp-admin/advanced/site-info.php:100
5267
  msgid "Call"
5268
- msgstr ""
5269
 
5270
  #: src/templates/wp-admin/advanced/site-info.php:98,
5271
  #: src/templates/wp-admin/advanced/site-info.php:98
5272
  msgid "Fetch"
5273
- msgstr ""
5274
 
5275
  #: src/addons/migrator.php:501,
5276
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
5277
  #: src/templates/wp-admin/settings/form-contents.php:183,
5278
  #: src/templates/wp-admin/settings/tab-backups.php:74
5279
  msgid "This feature requires %s version %s or later"
5280
- msgstr ""
5281
 
5282
  #: src/restorer.php:733
5283
  msgid "Failed to unpack the archive"
5284
- msgstr ""
5285
 
5286
  #: src/class-updraftplus.php:1509, src/methods/cloudfiles.php:416
5287
  msgid "Error - failed to download the file"
5288
- msgstr ""
5289
 
5290
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
5291
  #: src/templates/wp-admin/settings/tab-backups.php:59
5292
  msgid "Rescan local folder for new backup sets"
5293
- msgstr ""
5294
 
5295
  #: src/udaddons/updraftplus-addons.php:301
5296
  msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
5297
- msgstr ""
5298
 
5299
  #: src/udaddons/updraftplus-addons.php:301
5300
  msgid "It has been tested up to version %s."
5301
- msgstr ""
5302
 
5303
  #: src/udaddons/updraftplus-addons.php:301
5304
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
5305
- msgstr ""
5306
 
5307
  #: src/addons/sftp.php:526
5308
  msgid "password/key"
5309
- msgstr ""
5310
 
5311
  #: src/addons/migrator.php:1788, src/addons/sftp.php:463, src/admin.php:874,
5312
  #: src/admin.php:5499, src/templates/wp-admin/settings/temporary-clone.php:63
5313
  msgid "Key"
5314
- msgstr ""
5315
 
5316
  #: src/addons/sftp.php:457, src/addons/sftp.php:458
5317
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
5318
- msgstr ""
5319
 
5320
  #: src/addons/sftp.php:338
5321
  msgid "The key provided was not in a valid format, or was corrupt."
5322
- msgstr ""
5323
 
5324
  #: src/addons/sftp.php:54
5325
  msgid "SCP/SFTP password/key"
5326
- msgstr ""
5327
 
5328
  #: src/addons/wp-cli.php:445, src/admin.php:4232
5329
  msgid "Files backup (created by %s)"
5330
- msgstr ""
5331
 
5332
  #: src/addons/wp-cli.php:445, src/admin.php:4232
5333
  msgid "Files and database WordPress backup (created by %s)"
5334
- msgstr ""
5335
 
5336
  #: src/addons/importer.php:276, src/admin.php:4226,
5337
  #: src/includes/class-backup-history.php:506
5338
  msgid "Backup created by: %s."
5339
- msgstr ""
5340
 
5341
  #: src/addons/wp-cli.php:428, src/admin.php:4186
5342
  msgid "Database (created by %s)"
5343
- msgstr ""
5344
 
5345
  #: src/addons/wp-cli.php:426, src/admin.php:4180, src/admin.php:4228
5346
  msgid "unknown source"
5347
- msgstr ""
5348
 
5349
  #: src/templates/wp-admin/advanced/site-info.php:104,
5350
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:56,
5351
  #: src/templates/wp-admin/settings/tab-backups.php:60
5352
  msgid "Rescan remote storage"
5353
- msgstr ""
5354
 
5355
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:51,
5356
  #: src/templates/wp-admin/settings/tab-backups.php:55
5357
  msgid "Upload backup files"
5358
- msgstr ""
5359
 
5360
  #: src/admin.php:2467
5361
  msgid "This backup was created by %s, and can be imported."
5362
- msgstr ""
5363
 
5364
  #: src/admin.php:1217
5365
  msgid "Read this page for a guide to possible causes and how to fix it."
5366
- msgstr ""
5367
 
5368
  #: src/admin.php:1217
5369
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
5370
- msgstr ""
5371
 
5372
  #: src/admin.php:837, src/includes/class-backup-history.php:513
5373
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
5374
- msgstr ""
5375
 
5376
  #: src/admin.php:836
5377
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
5378
- msgstr ""
5379
 
5380
  #: src/admin.php:836, src/admin.php:837,
5381
  #: src/includes/class-backup-history.php:513
5382
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
5383
- msgstr ""
5384
 
5385
  #: src/admin.php:4229, src/includes/class-wpadmin-commands.php:161,
5386
  #: src/restorer.php:2352
5387
  msgid "Backup created by unknown source (%s) - cannot be restored."
5388
- msgstr ""
5389
 
5390
  #: src/restorer.php:1500, src/restorer.php:1548
5391
  msgid "The WordPress content folder (wp-content) was not found in this zip file."
5392
- msgstr ""
5393
 
5394
  #: src/restorer.php:1395
5395
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
5396
- msgstr ""
5397
 
5398
  #: src/methods/dropbox.php:373
5399
  msgid "%s returned an unexpected HTTP response: %s"
5400
- msgstr ""
5401
 
5402
  #: src/addons/sftp.php:1067
5403
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
5404
- msgstr ""
5405
 
5406
  #: src/addons/backblaze.php:601, src/methods/cloudfiles.php:232,
5407
  #: src/methods/dropbox.php:355, src/methods/openstack-base.php:117
5408
  msgid "No settings were found"
5409
- msgstr ""
5410
 
5411
  #: src/includes/class-backup-history.php:682
5412
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
5413
- msgstr ""
5414
 
5415
  #: src/admin.php:803
5416
  msgid "Rescanning remote and local storage for backup sets..."
5417
- msgstr ""
5418
 
5419
  #: src/addons/googlecloud.php:1043, src/addons/googlecloud.php:1056,
5420
  #: src/addons/s3-enhanced.php:59, src/addons/s3-enhanced.php:69
5421
  msgid "(Read more)"
5422
- msgstr ""
5423
 
5424
  #: src/addons/reporting.php:510
5425
  msgid "Log all messages to syslog (only server admins are likely to want this)"
5426
- msgstr ""
5427
 
5428
  #: src/addons/morefiles.php:409
5429
  msgid "No backup of location: there was nothing found to back up"
5430
- msgstr ""
5431
 
5432
  #: src/addons/moredatabase.php:236, src/addons/morefiles.php:310,
5433
  #: src/addons/morefiles.php:898, src/addons/reporting.php:535
5434
  msgid "Remove"
5435
- msgstr ""
5436
 
5437
  #: src/methods/s3.php:897
5438
  msgid "Other %s FAQs."
5439
- msgstr ""
5440
 
5441
  #: src/templates/wp-admin/settings/form-contents.php:305
5442
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
5443
- msgstr ""
5444
 
5445
  #: src/addons/morefiles.php:347, src/admin.php:3987
5446
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
5447
- msgstr ""
5448
 
5449
  #: src/includes/class-filesystem-functions.php:285, src/methods/ftp.php:343,
5450
  #: src/restorer.php:2383
5451
  msgid "Your hosting company must enable these functions before %s can work."
5452
- msgstr ""
5453
 
5454
  #: src/includes/class-filesystem-functions.php:285, src/methods/ftp.php:343
5455
  msgid "Your web server's PHP installation has these functions disabled: %s."
5456
- msgstr ""
5457
 
5458
  #: src/methods/ftp.php:340
5459
  msgid "encrypted FTP (explicit encryption)"
5460
- msgstr ""
5461
 
5462
  #: src/methods/ftp.php:339
5463
  msgid "encrypted FTP (implicit encryption)"
5464
- msgstr ""
5465
 
5466
  #: src/methods/ftp.php:338
5467
  msgid "regular non-encrypted FTP"
5468
- msgstr ""
5469
 
5470
  #: src/restorer.php:2588
5471
  msgid "Backup created by:"
5472
- msgstr ""
5473
 
5474
  #: src/udaddons/options.php:496
5475
  msgid "Available to claim on this site"
5476
- msgstr ""
5477
 
5478
  #: src/udaddons/updraftplus-addons.php:330
5479
  msgid "To maintain your access to support, please renew."
5480
- msgstr ""
5481
 
5482
  #: src/udaddons/updraftplus-addons.php:330
5483
  msgid "Your paid access to UpdraftPlus support will soon expire."
5484
- msgstr ""
5485
 
5486
  #: src/udaddons/updraftplus-addons.php:328
5487
  msgid "To regain your access, please renew."
5488
- msgstr ""
5489
 
5490
  #: src/udaddons/updraftplus-addons.php:328
5491
  msgid "Your paid access to UpdraftPlus support has expired."
5492
- msgstr ""
5493
 
5494
  #: src/udaddons/updraftplus-addons.php:320
5495
  msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
5496
- msgstr ""
5497
 
5498
  #: src/udaddons/updraftplus-addons.php:318,
5499
  #: src/udaddons/updraftplus-addons.php:320
5500
  msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
5501
- msgstr ""
5502
 
5503
  #: src/udaddons/updraftplus-addons.php:318
5504
  msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
5505
- msgstr ""
5506
 
5507
  #: src/udaddons/updraftplus-addons.php:314
5508
  msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
5509
- msgstr ""
5510
 
5511
  #: src/udaddons/updraftplus-addons.php:308,
5512
  #: src/udaddons/updraftplus-addons.php:314
5513
  msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
5514
- msgstr ""
5515
 
5516
  #: src/udaddons/updraftplus-addons.php:308
5517
  msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
5518
- msgstr ""
5519
 
5520
  #: src/udaddons/updraftplus-addons.php:271
5521
  msgid "Dismiss from main dashboard (for %s weeks)"
5522
- msgstr ""
5523
 
5524
  #: src/includes/class-filesystem-functions.php:336
5525
  msgid "The attempt to undo the double-compression succeeded."
5526
- msgstr ""
5527
 
5528
  #: src/includes/class-filesystem-functions.php:312,
5529
  #: src/includes/class-filesystem-functions.php:334
5530
  msgid "The attempt to undo the double-compression failed."
5531
- msgstr ""
5532
 
5533
  #: src/includes/class-filesystem-functions.php:305
5534
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
5535
- msgstr ""
5536
 
5537
  #: src/includes/class-wpadmin-commands.php:371
5538
  msgid "Constants"
5539
- msgstr ""
5540
 
5541
  #: src/backup.php:1688
5542
  msgid "Failed to open database file for reading:"
5543
- msgstr ""
5544
 
5545
  #: src/backup.php:1499
5546
  msgid "No database tables found"
5547
- msgstr ""
5548
 
5549
  #: src/backup.php:1497
5550
  msgid "please wait for the rescheduled attempt"
5551
- msgstr ""
5552
 
5553
  #: src/addons/reporting.php:232
5554
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
5555
- msgstr ""
5556
 
5557
  #: src/addons/onedrive.php:112, src/methods/dropbox.php:265
5558
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
5559
- msgstr ""
5560
 
5561
  #: src/udaddons/updraftplus-addons.php:537,
5562
  #: src/udaddons/updraftplus-addons.php:631
5563
  msgid "Errors occurred:"
5564
- msgstr ""
5565
 
5566
  #: src/addons/wp-cli.php:636, src/admin.php:4771
5567
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
5568
- msgstr ""
5569
 
5570
  #: src/templates/wp-admin/settings/form-contents.php:346
5571
  msgid "See this FAQ also."
5572
- msgstr ""
5573
 
5574
  #: src/templates/wp-admin/settings/form-contents.php:135
5575
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
5576
- msgstr ""
5577
 
5578
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:36
5579
  msgid "Retrieving (if necessary) and preparing backup files..."
5580
- msgstr ""
5581
 
5582
  #: src/includes/class-wpadmin-commands.php:132
5583
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
5584
- msgstr ""
5585
 
5586
  #: src/restorer.php:1387
5587
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
5588
- msgstr ""
5589
 
5590
  #: src/admin.php:1189, src/class-updraftplus.php:918
5591
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
5592
- msgstr ""
5593
 
5594
  #: src/addons/migrator.php:304
5595
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
5596
- msgstr ""
5597
 
5598
  #: src/addons/sftp.php:822, src/addons/sftp.php:825,
5599
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
5600
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
5601
- msgstr ""
5602
 
5603
  #: src/addons/moredatabase.php:144, src/admin.php:1691
5604
  msgid "Messages:"
5605
- msgstr ""
5606
 
5607
  #: src/restorer.php:3018
5608
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
5609
- msgstr ""
5610
 
5611
  #: src/restorer.php:1130
5612
  msgid "The directory does not exist"
5613
- msgstr ""
5614
 
5615
  #: src/addons/cloudfiles-enhanced.php:298
5616
  msgid "New User's Email Address"
5617
- msgstr ""
5618
 
5619
  #: src/addons/cloudfiles-enhanced.php:295
5620
  msgid "New User's Username"
5621
- msgstr ""
5622
 
5623
  #: src/addons/cloudfiles-enhanced.php:292
5624
  msgid "Admin API Key"
5625
- msgstr ""
5626
 
5627
  #: src/addons/cloudfiles-enhanced.php:289
5628
  msgid "Admin Username"
5629
- msgstr ""
5630
 
5631
  #: src/addons/cloudfiles-enhanced.php:284
5632
  msgid "US or UK Rackspace Account"
5633
- msgstr ""
5634
 
5635
  #: src/addons/cloudfiles-enhanced.php:276
5636
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
5637
- msgstr ""
5638
 
5639
  #: src/addons/cloudfiles-enhanced.php:273
5640
  msgid "Create new API user and container"
5641
- msgstr ""
5642
 
5643
  #: src/addons/cloudfiles-enhanced.php:205
5644
  msgid "API Key: %s"
5645
- msgstr ""
5646
 
5647
  #: src/addons/cloudfiles-enhanced.php:205
5648
  msgid "Password: %s"
5649
- msgstr ""
5650
 
5651
  #: src/addons/cloudfiles-enhanced.php:205, src/addons/s3-enhanced.php:332
5652
  msgid "Username: %s"
5653
- msgstr ""
5654
 
5655
  #: src/addons/cloudfiles-enhanced.php:164,
5656
  #: src/addons/cloudfiles-enhanced.php:167,
@@ -5659,840 +5659,840 @@ msgstr ""
5659
  #: src/addons/cloudfiles-enhanced.php:190,
5660
  #: src/addons/cloudfiles-enhanced.php:194
5661
  msgid "Cloud Files operation failed (%s)"
5662
- msgstr ""
5663
 
5664
  #: src/addons/cloudfiles-enhanced.php:162
5665
  msgid "Conflict: that user or email address already exists"
5666
- msgstr ""
5667
 
5668
  #: src/addons/cloudfiles-enhanced.php:94
5669
  msgid "You need to enter a valid new email address"
5670
- msgstr ""
5671
 
5672
  #: src/addons/cloudfiles-enhanced.php:90
5673
  msgid "You need to enter a container"
5674
- msgstr ""
5675
 
5676
  #: src/addons/cloudfiles-enhanced.php:87
5677
  msgid "You need to enter a new username"
5678
- msgstr ""
5679
 
5680
  #: src/addons/cloudfiles-enhanced.php:84
5681
  msgid "You need to enter an admin API key"
5682
- msgstr ""
5683
 
5684
  #: src/addons/cloudfiles-enhanced.php:81
5685
  msgid "You need to enter an admin username"
5686
- msgstr ""
5687
 
5688
  #: src/addons/cloudfiles-enhanced.php:67
5689
  msgid "Create a new API user with access to only this container (rather than your whole account)"
5690
- msgstr ""
5691
 
5692
  #: src/addons/cloudfiles-enhanced.php:38
5693
  msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
5694
- msgstr ""
5695
 
5696
  #: src/addons/cloudfiles-enhanced.php:37
5697
  msgid "Rackspace Cloud Files, enhanced"
5698
- msgstr ""
5699
 
5700
  #: src/addons/cloudfiles-enhanced.php:305, src/methods/cloudfiles-new.php:142,
5701
  #: src/methods/cloudfiles.php:495
5702
  msgid "Cloud Files Container"
5703
- msgstr ""
5704
 
5705
  #: src/methods/cloudfiles-new.php:137, src/methods/cloudfiles.php:490
5706
  msgid "Cloud Files API Key"
5707
- msgstr ""
5708
 
5709
  #: src/methods/cloudfiles-new.php:132
5710
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
5711
- msgstr ""
5712
 
5713
  #: src/methods/cloudfiles-new.php:129
5714
  msgid "Cloud Files Username"
5715
- msgstr ""
5716
 
5717
  #: src/addons/cloudfiles-enhanced.php:54, src/methods/cloudfiles-new.php:161
5718
  msgid "London (LON)"
5719
- msgstr ""
5720
 
5721
  #: src/addons/cloudfiles-enhanced.php:53, src/methods/cloudfiles-new.php:160
5722
  msgid "Hong Kong (HKG)"
5723
- msgstr ""
5724
 
5725
  #: src/addons/cloudfiles-enhanced.php:52, src/methods/cloudfiles-new.php:159
5726
  msgid "Northern Virginia (IAD)"
5727
- msgstr ""
5728
 
5729
  #: src/addons/cloudfiles-enhanced.php:51, src/methods/cloudfiles-new.php:158
5730
  msgid "Chicago (ORD)"
5731
- msgstr ""
5732
 
5733
  #: src/addons/cloudfiles-enhanced.php:50, src/methods/cloudfiles-new.php:157
5734
  msgid "Sydney (SYD)"
5735
- msgstr ""
5736
 
5737
  #: src/addons/cloudfiles-enhanced.php:49, src/methods/cloudfiles-new.php:156
5738
  msgid "Dallas (DFW) (default)"
5739
- msgstr ""
5740
 
5741
  #: src/addons/cloudfiles-enhanced.php:301, src/methods/cloudfiles-new.php:119
5742
  msgid "Cloud Files Storage Region"
5743
- msgstr ""
5744
 
5745
  #: src/methods/cloudfiles-new.php:112
5746
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
5747
- msgstr ""
5748
 
5749
  #: src/methods/cloudfiles-new.php:110
5750
  msgid "US or UK-based Rackspace Account"
5751
- msgstr ""
5752
 
5753
  #: src/addons/cloudfiles-enhanced.php:285, src/methods/cloudfiles-new.php:110
5754
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
5755
- msgstr ""
5756
 
5757
  #: src/addons/cloudfiles-enhanced.php:160, src/addons/s3-enhanced.php:237,
5758
  #: src/methods/cloudfiles-new.php:37, src/methods/openstack-base.php:489,
5759
  #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:512,
5760
  #: src/methods/openstack2.php:33
5761
  msgid "Authorisation failed (check your credentials)"
5762
- msgstr ""
5763
 
5764
  #: src/includes/class-commands.php:796, src/methods/updraftvault.php:667,
5765
  #: src/udaddons/options.php:219
5766
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
5767
- msgstr ""
5768
 
5769
  #: src/admin.php:851, src/central/bootstrap.php:580
5770
  msgid "Create"
5771
- msgstr ""
5772
 
5773
  #: src/admin.php:812
5774
  msgid "Trying..."
5775
- msgstr ""
5776
 
5777
  #: src/admin.php:811
5778
  msgid "The new user's RackSpace console password is (this will not be shown again):"
5779
- msgstr ""
5780
 
5781
  #: src/admin.php:822, src/restorer.php:259
5782
  msgid "Error data:"
5783
- msgstr ""
5784
 
5785
  #: src/admin.php:4864
5786
  msgid "Backup does not exist in the backup history"
5787
- msgstr ""
5788
 
5789
  #: src/admin.php:3281
5790
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
5791
- msgstr ""
5792
 
5793
  #: src/restorer.php:2673
5794
  msgid "Split line to avoid exceeding maximum packet size"
5795
- msgstr ""
5796
 
5797
  #: src/restorer.php:2532
5798
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
5799
- msgstr ""
5800
 
5801
  #: src/restorer.php:730
5802
  msgid "Could not move the files into place. Check your file permissions."
5803
- msgstr ""
5804
 
5805
  #: src/restorer.php:729
5806
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
5807
- msgstr ""
5808
 
5809
  #: src/restorer.php:727
5810
  msgid "Could not move old files out of the way."
5811
- msgstr ""
5812
 
5813
  #: src/restorer.php:723
5814
  msgid "Moving old data out of the way..."
5815
- msgstr ""
5816
 
5817
  #: src/addons/reporting.php:495
5818
  msgid "Add another address..."
5819
- msgstr ""
5820
 
5821
  #: src/addons/reporting.php:480
5822
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
5823
- msgstr ""
5824
 
5825
  #: src/addons/reporting.php:454
5826
  msgid "Email reports"
5827
- msgstr ""
5828
 
5829
  #: src/class-updraftplus.php:1886, src/class-updraftplus.php:1891
5830
  msgid "%s checksum: %s"
5831
- msgstr ""
5832
 
5833
  #: src/class-updraftplus.php:1822, src/class-updraftplus.php:1824
5834
  msgid "files: %s"
5835
- msgstr ""
5836
 
5837
  #: src/addons/reporting.php:406
5838
  msgid "Use the \"Reporting\" section to configure the email addresses to be used."
5839
- msgstr ""
5840
 
5841
  #: src/addons/reporting.php:282
5842
  msgid "Debugging information"
5843
- msgstr ""
5844
 
5845
  #: src/addons/reporting.php:237, src/admin.php:4146
5846
  msgid "Uploaded to:"
5847
- msgstr ""
5848
 
5849
  #: src/addons/reporting.php:236
5850
  msgid "Time taken:"
5851
- msgstr ""
5852
 
5853
  #: src/addons/reporting.php:227
5854
  msgid "Warnings"
5855
- msgstr ""
5856
 
5857
  #: src/addons/reporting.php:212
5858
  msgid "Errors"
5859
- msgstr ""
5860
 
5861
  #: src/addons/reporting.php:209
5862
  msgid "Errors / warnings:"
5863
- msgstr ""
5864
 
5865
  #: src/addons/morefiles.php:143, src/addons/morefiles.php:144,
5866
  #: src/addons/reporting.php:198
5867
  msgid "Contains:"
5868
- msgstr ""
5869
 
5870
  #: src/addons/reporting.php:197
5871
  msgid "Backup began:"
5872
- msgstr ""
5873
 
5874
  #: src/addons/reporting.php:185
5875
  msgid "Backup Report"
5876
- msgstr ""
5877
 
5878
  #: src/addons/reporting.php:180
5879
  msgid "%d hours, %d minutes, %d seconds"
5880
- msgstr ""
5881
 
5882
  #: src/addons/reporting.php:164
5883
  msgid "%d errors, %d warnings"
5884
- msgstr ""
5885
 
5886
  #: src/methods/dropbox.php:751, src/methods/dropbox.php:772
5887
  msgid "%s authentication"
5888
- msgstr ""
5889
 
5890
  #: src/addons/onedrive.php:875, src/class-updraftplus.php:543,
5891
  #: src/methods/dropbox.php:238, src/methods/dropbox.php:751,
5892
  #: src/methods/dropbox.php:772, src/methods/dropbox.php:786,
5893
  #: src/methods/dropbox.php:799, src/methods/dropbox.php:941
5894
  msgid "%s error: %s"
5895
- msgstr ""
5896
 
5897
  #: src/addons/googlecloud.php:985, src/methods/dropbox.php:576
5898
  msgid "%s logo"
5899
- msgstr ""
5900
 
5901
  #: src/methods/dropbox.php:283
5902
  msgid "did not return the expected response - check your log file for more details"
5903
- msgstr ""
5904
 
5905
  #: src/methods/s3.php:322
5906
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
5907
- msgstr ""
5908
 
5909
  #: src/methods/email.php:97
5910
  msgid "For more options, use the \"%s\" add-on."
5911
- msgstr ""
5912
 
5913
  #: src/methods/email.php:96
5914
  msgid "Your site's admin email address (%s) will be used."
5915
- msgstr ""
5916
 
5917
  #: src/admin.php:861, src/admin.php:3017, src/methods/updraftvault.php:334,
5918
  #: src/methods/updraftvault.php:389,
5919
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5920
  msgid "Connect"
5921
- msgstr ""
5922
 
5923
  #: src/templates/wp-admin/settings/form-contents.php:263
5924
  msgid "For more reporting features, use the Reporting add-on."
5925
- msgstr ""
5926
 
5927
  #: src/class-updraftplus.php:4575
5928
  msgid "(version: %s)"
5929
- msgstr ""
5930
 
5931
  #: src/admin.php:800
5932
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5933
- msgstr ""
5934
 
5935
  #: src/addons/reporting.php:541, src/admin.php:799
5936
  msgid "When the Email storage method is enabled, also send the backup"
5937
- msgstr ""
5938
 
5939
  #: src/addons/reporting.php:196, src/class-updraftplus.php:3478
5940
  msgid "Latest status:"
5941
- msgstr ""
5942
 
5943
  #: src/class-updraftplus.php:3477
5944
  msgid "Backup contains:"
5945
- msgstr ""
5946
 
5947
  #: src/class-updraftplus.php:3434
5948
  msgid "Backed up: %s"
5949
- msgstr ""
5950
 
5951
  #: src/addons/reporting.php:279, src/class-updraftplus.php:3428
5952
  msgid "The log file has been attached to this email."
5953
- msgstr ""
5954
 
5955
  #: src/class-updraftplus.php:3392
5956
  msgid "Unknown/unexpected error - please raise a support request"
5957
- msgstr ""
5958
 
5959
  #: src/class-updraftplus.php:3387
5960
  msgid "Database only (files were not part of this particular schedule)"
5961
- msgstr ""
5962
 
5963
  #: src/class-updraftplus.php:3387
5964
  msgid "Database (files backup has not completed)"
5965
- msgstr ""
5966
 
5967
  #: src/class-updraftplus.php:3384
5968
  msgid "Files only (database was not part of this particular schedule)"
5969
- msgstr ""
5970
 
5971
  #: src/class-updraftplus.php:3384
5972
  msgid "Files (database backup has not completed)"
5973
- msgstr ""
5974
 
5975
  #: src/admin.php:345, src/class-updraftplus.php:3382
5976
  msgid "Files and database"
5977
- msgstr ""
5978
 
5979
  #: src/options.php:208
5980
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
5981
- msgstr ""
5982
 
5983
  #: src/options.php:208
5984
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to backup (and hence access the data, including passwords, from) and restore (including with customized modifications, e.g. changed passwords) <strong>the entire network</strong>."
5985
- msgstr ""
5986
 
5987
  #: src/options.php:208
5988
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
5989
- msgstr ""
5990
 
5991
  #: src/options.php:208
5992
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
5993
- msgstr ""
5994
 
5995
  #: src/options.php:208
5996
  msgid "UpdraftPlus warning:"
5997
- msgstr ""
5998
 
5999
  #: src/udaddons/options.php:502, src/udaddons/options.php:502
6000
  msgid "(or connect using the form on this page if you have already purchased it)"
6001
- msgstr ""
6002
 
6003
  #: src/udaddons/options.php:490
6004
  msgid "please follow this link to update the plugin in order to activate it"
6005
- msgstr ""
6006
 
6007
  #: src/udaddons/options.php:487
6008
  msgid "please follow this link to update the plugin in order to get it"
6009
- msgstr ""
6010
 
6011
  #: src/udaddons/options.php:477, src/udaddons/options.php:479
6012
  msgid "latest"
6013
- msgstr ""
6014
 
6015
  #: src/udaddons/options.php:475
6016
  msgid "Your version: %s"
6017
- msgstr ""
6018
 
6019
  #: src/udaddons/options.php:473, src/udaddons/options.php:473
6020
  msgid "You've got it"
6021
- msgstr ""
6022
 
6023
  #: src/udaddons/options.php:434
6024
  msgid "UpdraftPlus Support"
6025
- msgstr ""
6026
 
6027
  #: src/udaddons/options.php:372
6028
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
6029
- msgstr ""
6030
 
6031
  #: src/udaddons/options.php:361, src/udaddons/updraftplus-addons.php:357
6032
  msgid "UpdraftPlus Addons"
6033
- msgstr ""
6034
 
6035
  #: src/udaddons/options.php:89
6036
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
6037
- msgstr ""
6038
 
6039
  #: src/methods/updraftvault.php:746, src/methods/updraftvault.php:761,
6040
  #: src/udaddons/updraftplus-addons.php:1072
6041
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
6042
- msgstr ""
6043
 
6044
  #: src/methods/updraftvault.php:758, src/udaddons/updraftplus-addons.php:1068
6045
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
6046
- msgstr ""
6047
 
6048
  #: src/includes/updraftplus-login.php:57, src/methods/updraftvault.php:719,
6049
  #: src/udaddons/updraftplus-addons.php:1031
6050
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
6051
- msgstr ""
6052
 
6053
  #: src/udaddons/updraftplus-addons.php:957
6054
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
6055
- msgstr ""
6056
 
6057
  #: src/udaddons/updraftplus-addons.php:955
6058
  msgid "We failed to successfully connect to UpdraftPlus.Com"
6059
- msgstr ""
6060
 
6061
  #: src/methods/email.php:97,
6062
  #: src/templates/wp-admin/settings/form-contents.php:244,
6063
  #: src/templates/wp-admin/settings/tab-addons.php:230,
6064
  #: src/templates/wp-admin/settings/tab-addons.php:231
6065
  msgid "Reporting"
6066
- msgstr ""
6067
 
6068
  #: src/admin.php:5496
6069
  msgid "Options (raw)"
6070
- msgstr ""
6071
 
6072
  #: src/addons/reporting.php:539, src/admin.php:798
6073
  msgid "Send a report only when there are warnings/errors"
6074
- msgstr ""
6075
 
6076
  #: src/restorer.php:2599
6077
  msgid "Content URL:"
6078
- msgstr ""
6079
 
6080
  #: src/restorer.php:727
6081
  msgid "You should check the file ownerships and permissions in your WordPress installation"
6082
- msgstr ""
6083
 
6084
  #: src/templates/wp-admin/settings/form-contents.php:148
6085
  msgid "See also the \"More Files\" add-on from our shop."
6086
- msgstr ""
6087
 
6088
  #: src/backup.php:3339, src/class-updraftplus.php:931
6089
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
6090
- msgstr ""
6091
 
6092
  #: src/class-updraftplus.php:915
6093
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
6094
- msgstr ""
6095
 
6096
  #: src/udaddons/options.php:525
6097
  msgid "Manage Addons"
6098
- msgstr ""
6099
 
6100
  #: src/udaddons/options.php:503
6101
  msgid "Buy It"
6102
- msgstr ""
6103
 
6104
  #: src/udaddons/options.php:502
6105
  msgid "Get it from the UpdraftPlus.Com Store"
6106
- msgstr ""
6107
 
6108
  #: src/udaddons/options.php:496, src/udaddons/options.php:498
6109
  msgid "activate it on this site"
6110
- msgstr ""
6111
 
6112
  #: src/udaddons/options.php:498
6113
  msgid "You have an inactive purchase"
6114
- msgstr ""
6115
 
6116
  #: src/udaddons/options.php:490
6117
  msgid "Assigned to this site"
6118
- msgstr ""
6119
 
6120
  #: src/udaddons/options.php:487
6121
  msgid "Available for this site (via your all-addons purchase)"
6122
- msgstr ""
6123
 
6124
  #: src/udaddons/options.php:481
6125
  msgid "(apparently a pre-release or withdrawn release)"
6126
- msgstr ""
6127
 
6128
  #: src/udaddons/options.php:436, src/udaddons/options.php:436
6129
  msgid "Go here"
6130
- msgstr ""
6131
 
6132
  #: src/udaddons/options.php:436, src/udaddons/options.php:436
6133
  msgid "Need to get support?"
6134
- msgstr ""
6135
 
6136
  #: src/udaddons/options.php:418
6137
  msgid "An error occurred when trying to retrieve your add-ons."
6138
- msgstr ""
6139
 
6140
  #: src/udaddons/options.php:304
6141
  msgid "An unknown response was received. Response was:"
6142
- msgstr ""
6143
 
6144
  #: src/udaddons/options.php:303
6145
  msgid "Claim not granted - your account login details were wrong"
6146
- msgstr ""
6147
 
6148
  #: src/udaddons/options.php:301
6149
  msgid "Please wait whilst we make the claim..."
6150
- msgstr ""
6151
 
6152
  #: src/udaddons/options.php:249
6153
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
6154
- msgstr ""
6155
 
6156
  #: src/udaddons/options.php:244
6157
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
6158
- msgstr ""
6159
 
6160
  #: src/udaddons/options.php:236
6161
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
6162
- msgstr ""
6163
 
6164
  #: src/udaddons/options.php:229
6165
  msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
6166
- msgstr ""
6167
 
6168
  #: src/admin.php:3015
6169
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
6170
- msgstr ""
6171
 
6172
  #: src/admin.php:3091
6173
  msgid "Forgotten your details?"
6174
- msgstr ""
6175
 
6176
  #: src/admin.php:3004
6177
  msgid "Not yet got an account (it's free)? Go get one!"
6178
- msgstr ""
6179
 
6180
  #: src/admin.php:3070
6181
  msgid "Connect with your UpdraftPlus.Com account"
6182
- msgstr ""
6183
 
6184
  #: src/udaddons/options.php:109
6185
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
6186
- msgstr ""
6187
 
6188
  #: src/udaddons/options.php:108
6189
  msgid "Go here to begin installing it."
6190
- msgstr ""
6191
 
6192
  #: src/udaddons/options.php:108
6193
  msgid "UpdraftPlus is not yet installed."
6194
- msgstr ""
6195
 
6196
  #: src/udaddons/options.php:105
6197
  msgid "Go here to activate it."
6198
- msgstr ""
6199
 
6200
  #: src/udaddons/options.php:104
6201
  msgid "UpdraftPlus is not yet activated."
6202
- msgstr ""
6203
 
6204
  #: src/udaddons/options.php:95, src/udaddons/options.php:97
6205
  msgid "Go here to connect."
6206
- msgstr ""
6207
 
6208
  #: src/udaddons/options.php:95
6209
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
6210
- msgstr ""
6211
 
6212
  #: src/addons/moredatabase.php:313,
6213
  #: src/includes/class-updraftplus-encryption.php:148
6214
  msgid "Without it, encryption will be a lot slower."
6215
- msgstr ""
6216
 
6217
  #: src/addons/moredatabase.php:313,
6218
  #: src/includes/class-updraftplus-encryption.php:148
6219
  msgid "Your web-server does not have the %s module installed."
6220
- msgstr ""
6221
 
6222
  #: src/addons/googlecloud.php:1075, src/methods/googledrive.php:1407
6223
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
6224
- msgstr ""
6225
 
6226
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:78,
6227
  #: src/templates/wp-admin/settings/tab-backups.php:80
6228
  msgid "Drop backup files here"
6229
- msgstr ""
6230
 
6231
  #: src/admin.php:810
6232
  msgid "The web server returned an error code (try again, or check your web server logs)"
6233
- msgstr ""
6234
 
6235
  #: src/admin.php:808
6236
  msgid "The restore operation has begun. Do not close your browser until it reports itself as having finished."
6237
- msgstr ""
6238
 
6239
  #: src/addons/wp-cli.php:116, src/admin.php:805
6240
  msgid "If you exclude both the database and the files, then you have excluded everything!"
6241
- msgstr ""
6242
 
6243
  #: src/restorer.php:2593
6244
  msgid "Site home:"
6245
- msgstr ""
6246
 
6247
  #: src/addons/morestorage.php:138
6248
  msgid "Remote Storage Options"
6249
- msgstr ""
6250
 
6251
  #: src/addons/autobackup.php:364, src/addons/autobackup.php:458
6252
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
6253
- msgstr ""
6254
 
6255
  #: src/addons/autobackup.php:324, src/addons/autobackup.php:1107
6256
  msgid "Remember this choice for next time (you will still have the chance to change it)"
6257
- msgstr ""
6258
 
6259
  #: src/addons/azure.php:413, src/methods/stream-base.php:152,
6260
  #: src/methods/stream-base.php:157
6261
  msgid "Upload failed"
6262
- msgstr ""
6263
 
6264
  #: src/templates/wp-admin/settings/form-contents.php:126
6265
  msgid "You can send a backup to more than one destination with an add-on."
6266
- msgstr ""
6267
 
6268
  #: src/admin.php:3561
6269
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
6270
- msgstr ""
6271
 
6272
  #: src/admin.php:3425
6273
  msgid "(%s%%, file %s of %s)"
6274
- msgstr ""
6275
 
6276
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:1112,
6277
  #: src/addons/lockadmin.php:160
6278
  msgid "Read more about how this works..."
6279
- msgstr ""
6280
 
6281
  #: src/addons/sftp.php:604
6282
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
6283
- msgstr ""
6284
 
6285
  #: src/addons/sftp.php:602
6286
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
6287
- msgstr ""
6288
 
6289
  #: src/addons/sftp.php:488
6290
  msgid "Use SCP instead of SFTP"
6291
- msgstr ""
6292
 
6293
  #: src/addons/sftp.php:53
6294
  msgid "SCP/SFTP user setting"
6295
- msgstr ""
6296
 
6297
  #: src/addons/sftp.php:52
6298
  msgid "SCP/SFTP host setting"
6299
- msgstr ""
6300
 
6301
  #: src/methods/email.php:67
6302
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
6303
- msgstr ""
6304
 
6305
  #: src/methods/email.php:47
6306
  msgid "Backup is of: %s."
6307
- msgstr ""
6308
 
6309
  #: src/admin.php:900
6310
  msgid "%s settings test result:"
6311
- msgstr ""
6312
 
6313
  #: src/admin.php:4298, src/admin.php:4300
6314
  msgid "(Not finished)"
6315
- msgstr ""
6316
 
6317
  #: src/admin.php:4300
6318
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
6319
- msgstr ""
6320
 
6321
  #: src/templates/wp-admin/settings/form-contents.php:329
6322
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
6323
- msgstr ""
6324
 
6325
  #: src/templates/wp-admin/settings/form-contents.php:329
6326
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
6327
- msgstr ""
6328
 
6329
  #: src/admin.php:3526
6330
  msgid "Job ID: %s"
6331
- msgstr ""
6332
 
6333
  #: src/admin.php:3506
6334
  msgid "last activity: %ss ago"
6335
- msgstr ""
6336
 
6337
  #: src/admin.php:3505
6338
  msgid "next resumption: %d (after %ss)"
6339
- msgstr ""
6340
 
6341
  #: src/admin.php:3488, src/central/bootstrap.php:459,
6342
  #: src/central/bootstrap.php:466, src/methods/updraftvault.php:437,
6343
  #: src/methods/updraftvault.php:483, src/methods/updraftvault.php:566
6344
  msgid "Unknown"
6345
- msgstr ""
6346
 
6347
  #: src/admin.php:3439
6348
  msgid "Backup finished"
6349
- msgstr ""
6350
 
6351
  #: src/admin.php:3434
6352
  msgid "Waiting until scheduled time to retry because of errors"
6353
- msgstr ""
6354
 
6355
  #: src/admin.php:3430
6356
  msgid "Pruning old backup sets"
6357
- msgstr ""
6358
 
6359
  #: src/admin.php:3417
6360
  msgid "Uploading files to remote storage"
6361
- msgstr ""
6362
 
6363
  #: src/admin.php:3486
6364
  msgid "Encrypted database"
6365
- msgstr ""
6366
 
6367
  #: src/admin.php:3478
6368
  msgid "Encrypting database"
6369
- msgstr ""
6370
 
6371
  #: src/admin.php:3452
6372
  msgid "Created database backup"
6373
- msgstr ""
6374
 
6375
  #: src/admin.php:3465
6376
  msgid "table: %s"
6377
- msgstr ""
6378
 
6379
  #: src/admin.php:3463
6380
  msgid "Creating database backup"
6381
- msgstr ""
6382
 
6383
  #: src/admin.php:3408
6384
  msgid "Created file backup zips"
6385
- msgstr ""
6386
 
6387
  #: src/admin.php:3395
6388
  msgid "Creating file backup zips"
6389
- msgstr ""
6390
 
6391
  #: src/admin.php:3390
6392
  msgid "Backup begun"
6393
- msgstr ""
6394
 
6395
  #: src/admin.php:1194
6396
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
6397
- msgstr ""
6398
 
6399
  #: src/restorer.php:1371
6400
  msgid "file"
6401
- msgstr ""
6402
 
6403
  #: src/addons/onedrive.php:1194, src/restorer.php:1363
6404
  msgid "folder"
6405
- msgstr ""
6406
 
6407
  #: src/restorer.php:1363, src/restorer.php:1371
6408
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
6409
- msgstr ""
6410
 
6411
  #: src/class-updraftplus.php:3322
6412
  msgid "The backup has not finished; a resumption is scheduled"
6413
- msgstr ""
6414
 
6415
  #: src/class-updraftplus.php:2172
6416
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
6417
- msgstr ""
6418
 
6419
  #: src/addons/onedrive.php:1047,
6420
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
6421
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
6422
- msgstr ""
6423
 
6424
  #: src/admin.php:2733
6425
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
6426
- msgstr ""
6427
 
6428
  #: src/addons/autobackup.php:1126, src/admin.php:854
6429
  msgid "Proceed with update"
6430
- msgstr ""
6431
 
6432
  #: src/addons/autobackup.php:1119
6433
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
6434
- msgstr ""
6435
 
6436
  #: src/addons/autobackup.php:139, src/addons/autobackup.php:1068
6437
  msgid "UpdraftPlus Automatic Backups"
6438
- msgstr ""
6439
 
6440
  #: src/addons/autobackup.php:551
6441
  msgid "Errors have occurred:"
6442
- msgstr ""
6443
 
6444
  #: src/addons/autobackup.php:522
6445
  msgid "Creating backup with UpdraftPlus..."
6446
- msgstr ""
6447
 
6448
  #: src/addons/autobackup.php:467, src/addons/autobackup.php:598,
6449
  #: src/addons/autobackup.php:649
6450
  msgid "Automatic Backup"
6451
- msgstr ""
6452
 
6453
  #: src/addons/autobackup.php:458
6454
  msgid "Creating database backup with UpdraftPlus..."
6455
- msgstr ""
6456
 
6457
  #: src/addons/autobackup.php:424
6458
  msgid "themes"
6459
- msgstr ""
6460
 
6461
  #: src/addons/autobackup.php:417
6462
  msgid "plugins"
6463
- msgstr ""
6464
 
6465
  #: src/addons/autobackup.php:368, src/addons/autobackup.php:465
6466
  msgid "Starting automatic backup..."
6467
- msgstr ""
6468
 
6469
  #: src/addons/autobackup.php:364
6470
  msgid "Creating %s and database backup with UpdraftPlus..."
6471
- msgstr ""
6472
 
6473
  #: src/addons/autobackup.php:322
6474
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
6475
- msgstr ""
6476
 
6477
  #: src/addons/morefiles.php:257, src/addons/morefiles.php:258
6478
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
6479
- msgstr ""
6480
 
6481
  #: src/addons/morefiles.php:257, src/addons/morefiles.php:258
6482
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
6483
- msgstr ""
6484
 
6485
  #: src/addons/morefiles.php:204
6486
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
6487
- msgstr ""
6488
 
6489
  #: src/addons/morefiles.php:194
6490
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
6491
- msgstr ""
6492
 
6493
  #: src/templates/wp-admin/settings/header.php:25
6494
  msgid "More plugins"
6495
- msgstr ""
6496
 
6497
  #: src/includes/updraftplus-notices.php:31,
6498
  #: src/templates/wp-admin/settings/header.php:17,
@@ -6503,227 +6503,227 @@ msgstr "Поддръжка"
6503
 
6504
  #: src/class-updraftplus.php:4906
6505
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
6506
- msgstr ""
6507
 
6508
  #: src/class-updraftplus.php:4898
6509
  msgid "This database backup is missing core WordPress tables: %s"
6510
- msgstr ""
6511
 
6512
  #: src/class-updraftplus.php:4636
6513
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
6514
- msgstr ""
6515
 
6516
  #: src/class-updraftplus.php:4635, src/class-updraftplus.php:4642
6517
  msgid "%s version: %s"
6518
- msgstr ""
6519
 
6520
  #: src/class-updraftplus.php:4512
6521
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
6522
- msgstr ""
6523
 
6524
  #: src/addons/autobackup.php:1094, src/admin.php:1012
6525
  msgid "Be safe with an automatic backup"
6526
- msgstr ""
6527
 
6528
  #: src/admin.php:2686
6529
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
6530
- msgstr ""
6531
 
6532
  #: src/admin.php:846
6533
  msgid "The file was uploaded."
6534
- msgstr ""
6535
 
6536
  #: src/admin.php:845
6537
  msgid "Unknown server response status:"
6538
- msgstr ""
6539
 
6540
  #: src/admin.php:844
6541
  msgid "Unknown server response:"
6542
- msgstr ""
6543
 
6544
  #: src/admin.php:843
6545
  msgid "This decryption key will be attempted:"
6546
- msgstr ""
6547
 
6548
  #: src/admin.php:842
6549
  msgid "Follow this link to attempt decryption and download the database file to your computer."
6550
- msgstr ""
6551
 
6552
  #: src/admin.php:841
6553
  msgid "Upload error"
6554
- msgstr ""
6555
 
6556
  #: src/admin.php:840
6557
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
6558
- msgstr ""
6559
 
6560
  #: src/admin.php:839
6561
  msgid "Upload error:"
6562
- msgstr ""
6563
 
6564
  #: src/admin.php:838
6565
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
6566
- msgstr ""
6567
 
6568
  #: src/admin.php:829
6569
  msgid "Download to your computer"
6570
- msgstr ""
6571
 
6572
  #: src/admin.php:828
6573
  msgid "Delete from your web server"
6574
- msgstr ""
6575
 
6576
  #: src/admin.php:4269
6577
  msgid "You appear to be missing one or more archives from this multi-archive set."
6578
- msgstr ""
6579
 
6580
  #: src/templates/wp-admin/settings/form-contents.php:309
6581
  msgid "Split archives every:"
6582
- msgstr ""
6583
 
6584
  #: src/addons/moredatabase.php:273
6585
  msgid "Error: the server sent us a response (JSON) which we did not understand."
6586
- msgstr ""
6587
 
6588
  #: src/admin.php:819
6589
  msgid "Warnings:"
6590
- msgstr ""
6591
 
6592
  #: src/admin.php:818
6593
  msgid "Error: the server sent an empty response."
6594
- msgstr ""
6595
 
6596
  #: src/admin.php:2481
6597
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
6598
- msgstr ""
6599
 
6600
  #: src/includes/class-wpadmin-commands.php:238,
6601
  #: src/includes/class-wpadmin-commands.php:263
6602
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
6603
- msgstr ""
6604
 
6605
  #: src/includes/class-wpadmin-commands.php:261
6606
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
6607
- msgstr ""
6608
 
6609
  #: src/includes/class-wpadmin-commands.php:259
6610
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
6611
- msgstr ""
6612
 
6613
  #: src/includes/class-wpadmin-commands.php:207
6614
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
6615
- msgstr ""
6616
 
6617
  #: src/includes/class-wpadmin-commands.php:192
6618
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
6619
- msgstr ""
6620
 
6621
  #: src/includes/class-wpadmin-commands.php:187
6622
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
6623
- msgstr ""
6624
 
6625
  #: src/includes/class-wpadmin-commands.php:185
6626
  msgid "File not found (you need to upload it): %s"
6627
- msgstr ""
6628
 
6629
  #: src/addons/wp-cli.php:592, src/addons/wp-cli.php:593,
6630
  #: src/includes/class-wpadmin-commands.php:113
6631
  msgid "No such backup set exists"
6632
- msgstr ""
6633
 
6634
  #: src/includes/class-storage-methods-interface.php:380
6635
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
6636
- msgstr ""
6637
 
6638
  #: src/restorer.php:724
6639
  msgid "Moving unpacked backup into place..."
6640
- msgstr ""
6641
 
6642
  #: src/backup.php:3002, src/backup.php:3295
6643
  msgid "Failed to open the zip file (%s) - %s"
6644
- msgstr ""
6645
 
6646
  #: src/addons/morefiles.php:182
6647
  msgid "WordPress root directory server path: %s"
6648
- msgstr ""
6649
 
6650
  #: src/methods/dreamobjects.php:115, src/methods/s3generic.php:117
6651
  msgid "%s end-point"
6652
- msgstr ""
6653
 
6654
  #: src/methods/s3.php:874
6655
  msgid "... and many more!"
6656
- msgstr ""
6657
 
6658
  #: src/methods/s3generic.php:63, src/methods/s3generic.php:74,
6659
  #: src/methods/s3generic.php:85
6660
  msgid "S3 (Compatible)"
6661
- msgstr ""
6662
 
6663
  #: src/includes/class-storage-methods-interface.php:289
6664
  msgid "File is not locally present - needs retrieving from remote storage"
6665
- msgstr ""
6666
 
6667
  #: src/restorer.php:392
6668
  msgid "Looking for %s archive: file name: %s"
6669
- msgstr ""
6670
 
6671
  #: src/restorer.php:508
6672
  msgid "Final checks"
6673
- msgstr ""
6674
 
6675
  #: src/templates/wp-admin/settings/form-contents.php:315
6676
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
6677
- msgstr ""
6678
 
6679
  #: src/templates/wp-admin/settings/form-contents.php:190
6680
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
6681
- msgstr ""
6682
 
6683
  #: src/admin.php:3973
6684
  msgid "Your wp-content directory server path: %s"
6685
- msgstr ""
6686
 
6687
  #: src/admin.php:835
6688
  msgid "Raw backup history"
6689
- msgstr ""
6690
 
6691
  #: src/templates/wp-admin/advanced/site-info.php:104
6692
  msgid "Show raw backup and file list"
6693
- msgstr ""
6694
 
6695
  #: src/admin.php:817
6696
  msgid "Processing files - please wait..."
6697
- msgstr ""
6698
 
6699
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6700
  #: src/templates/wp-admin/settings/tab-backups.php:27
6701
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
6702
- msgstr ""
6703
 
6704
  #: src/class-updraftplus.php:4520
6705
  msgid "Failed to open database file."
6706
- msgstr ""
6707
 
6708
  #: src/admin.php:5461
6709
  msgid "Known backups (raw)"
6710
- msgstr ""
6711
 
6712
  #: src/restorer.php:1641
6713
  msgid "Files found:"
6714
- msgstr ""
6715
 
6716
  #: src/admin.php:980
6717
  msgid "Restoring table: %s"
6718
- msgstr ""
6719
 
6720
  #: src/restorer.php:2224
6721
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
6722
- msgstr ""
6723
 
6724
  #: src/restorer.php:412
6725
  msgid "file is size:"
6726
- msgstr ""
6727
 
6728
  #: src/addons/googlecloud.php:1035, src/addons/migrator.php:490,
6729
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
@@ -6731,64 +6731,64 @@ msgstr ""
6731
  #: src/class-updraftplus.php:4765, src/class-updraftplus.php:4765,
6732
  #: src/updraftplus.php:157
6733
  msgid "Go here for more information."
6734
- msgstr ""
6735
 
6736
  #: src/admin.php:816
6737
  msgid "Some files are still downloading or being processed - please wait."
6738
- msgstr ""
6739
 
6740
  #: src/class-updraftplus.php:4606, src/class-updraftplus.php:4626
6741
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
6742
- msgstr ""
6743
 
6744
  #: src/addons/fixtime.php:570
6745
  msgid "The time zone used is that from your WordPress settings, in Settings -> General."
6746
- msgstr ""
6747
 
6748
  #: src/addons/fixtime.php:570
6749
  msgid "Enter in format HH:MM (e.g. 14:22)."
6750
- msgstr ""
6751
 
6752
  #: src/methods/ftp.php:172
6753
  msgid "%s login failure"
6754
- msgstr ""
6755
 
6756
  #: src/methods/dropbox.php:485
6757
  msgid "You do not appear to be authenticated with %s"
6758
- msgstr ""
6759
 
6760
  #: src/methods/dropbox.php:451
6761
  msgid "Failed to access %s when deleting (see log file for more)"
6762
- msgstr ""
6763
 
6764
  #: src/methods/dropbox.php:443
6765
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
6766
- msgstr ""
6767
 
6768
  #: src/methods/cloudfiles.php:412
6769
  msgid "Error - no such file exists."
6770
- msgstr ""
6771
 
6772
  #: src/addons/azure.php:260, src/methods/addon-base-v2.php:258,
6773
  #: src/methods/openstack-base.php:460, src/methods/stream-base.php:304,
6774
  #: src/methods/stream-base.php:311, src/methods/stream-base.php:342
6775
  msgid "%s Error"
6776
- msgstr ""
6777
 
6778
  #: src/methods/openstack-base.php:86
6779
  msgid "%s error - failed to upload file"
6780
- msgstr ""
6781
 
6782
  #: src/class-updraftplus.php:1398
6783
  msgid "%s error - failed to re-assemble chunks"
6784
- msgstr ""
6785
 
6786
  #: src/methods/cloudfiles.php:238, src/methods/openstack-base.php:44,
6787
  #: src/methods/openstack-base.php:357, src/methods/openstack-base.php:422,
6788
  #: src/methods/openstack-base.php:495, src/methods/openstack-base.php:498,
6789
  #: src/methods/openstack-base.php:516, src/methods/openstack-base.php:521
6790
  msgid "%s authentication failed"
6791
- msgstr ""
6792
 
6793
  #: src/addons/googlecloud.php:445, src/addons/migrator.php:585,
6794
  #: src/admin.php:2452, src/admin.php:2473, src/admin.php:2481,
@@ -6798,103 +6798,103 @@ msgstr ""
6798
  #: src/class-updraftplus.php:4742, src/methods/googledrive.php:486,
6799
  #: src/methods/s3.php:351
6800
  msgid "Error: %s"
6801
- msgstr ""
6802
 
6803
  #: src/admin.php:3891
6804
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6805
- msgstr ""
6806
 
6807
  #: src/admin.php:3889
6808
  msgid "Backup directory specified does <b>not</b> exist."
6809
- msgstr ""
6810
 
6811
  #: src/admin.php:3540, src/admin.php:3832
6812
  msgid "Warning: %s"
6813
- msgstr ""
6814
 
6815
  #: src/backup.php:3028
6816
  msgid "A very large file was encountered: %s (size: %s Mb)"
6817
- msgstr ""
6818
 
6819
  #: src/backup.php:2316
6820
  msgid "%s: unreadable file - could not be backed up"
6821
- msgstr ""
6822
 
6823
  #: src/backup.php:1583
6824
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
6825
- msgstr ""
6826
 
6827
  #: src/backup.php:1759
6828
  msgid "An error occurred whilst closing the final database file"
6829
- msgstr ""
6830
 
6831
  #: src/class-updraftplus.php:3419
6832
  msgid "Warnings encountered:"
6833
- msgstr ""
6834
 
6835
  #: src/class-updraftplus.php:3301
6836
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6837
- msgstr ""
6838
 
6839
  #: src/class-updraftplus.php:944
6840
  msgid "Your free disk space is very low - only %s Mb remain"
6841
- msgstr ""
6842
 
6843
  #: src/addons/migrator.php:593
6844
  msgid "New site:"
6845
- msgstr ""
6846
 
6847
  #: src/addons/migrator.php:570
6848
  msgid "Migrated site (from UpdraftPlus)"
6849
- msgstr ""
6850
 
6851
  #: src/addons/migrator.php:510
6852
  msgid "Enter details for where this new site is to live within your multisite install:"
6853
- msgstr ""
6854
 
6855
  #: src/addons/migrator.php:509
6856
  msgid "Information needed to continue:"
6857
- msgstr ""
6858
 
6859
  #: src/addons/migrator.php:454
6860
  msgid "Network activating theme:"
6861
- msgstr ""
6862
 
6863
  #: src/addons/migrator.php:444
6864
  msgid "Processed plugin:"
6865
- msgstr ""
6866
 
6867
  #: src/addons/sftp.php:80
6868
  msgid "Check your file permissions: Could not successfully create and enter directory:"
6869
- msgstr ""
6870
 
6871
  #: src/addons/sftp.php:40
6872
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happening, then go into the \"Expert Options\" (below) and turn off SSL there."
6873
- msgstr ""
6874
 
6875
  #: src/methods/s3.php:883
6876
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
6877
- msgstr ""
6878
 
6879
  #: src/methods/s3.php:1231
6880
  msgid "Please check your access credentials."
6881
- msgstr ""
6882
 
6883
  #: src/addons/s3-enhanced.php:212, src/methods/s3.php:1209
6884
  msgid "The error reported by %s was:"
6885
- msgstr ""
6886
 
6887
  #: src/restorer.php:2064
6888
  msgid "Please supply the requested information, and then continue."
6889
- msgstr ""
6890
 
6891
  #: src/class-updraftplus.php:4679, src/restorer.php:2628
6892
  msgid "Site information:"
6893
- msgstr ""
6894
 
6895
  #: src/restorer.php:2488
6896
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
6897
- msgstr ""
6898
 
6899
  #: src/admin.php:987, src/admin.php:2686, src/class-updraftplus.php:4672,
6900
  #: src/restorer.php:3018
@@ -6904,241 +6904,241 @@ msgstr "Внимание:"
6904
  #: src/class-updraftplus.php:4661, src/class-updraftplus.php:4664,
6905
  #: src/restorer.php:732
6906
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6907
- msgstr ""
6908
 
6909
  #: src/restorer.php:381
6910
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
6911
- msgstr ""
6912
 
6913
  #: src/addons/azure.php:597, src/admin.php:4065,
6914
  #: src/methods/updraftvault.php:321
6915
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
6916
- msgstr ""
6917
 
6918
  #: src/admin.php:855, src/includes/updraftplus-tour.php:96
6919
  msgid "Close"
6920
- msgstr ""
6921
 
6922
  #: src/addons/autobackup.php:370, src/addons/autobackup.php:462,
6923
  #: src/admin.php:809, src/methods/remotesend.php:69,
6924
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:239,
6925
  #: src/methods/remotesend.php:255
6926
  msgid "Unexpected response:"
6927
- msgstr ""
6928
 
6929
  #: src/addons/reporting.php:537, src/admin.php:804
6930
  msgid "To send to more than one address, separate each address with a comma."
6931
- msgstr ""
6932
 
6933
  #: src/admin.php:833
6934
  msgid "PHP information"
6935
- msgstr ""
6936
 
6937
  #: src/templates/wp-admin/advanced/site-info.php:70
6938
  msgid "zip executable found:"
6939
- msgstr ""
6940
 
6941
  #: src/templates/wp-admin/advanced/site-info.php:45
6942
  msgid "show PHP information (phpinfo)"
6943
- msgstr ""
6944
 
6945
  #: src/templates/wp-admin/settings/migrator-no-migrator.php:9
6946
  msgid "Do you want to migrate or clone/duplicate a site?"
6947
- msgstr ""
6948
 
6949
  #: src/templates/wp-admin/settings/existing-backups-table.php:174
6950
  msgid "Please allow time for the communications with the remote storage to complete."
6951
- msgstr ""
6952
 
6953
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:23
6954
  msgid "Also delete from remote storage"
6955
- msgstr ""
6956
 
6957
  #: src/admin.php:3211
6958
  msgid "Latest UpdraftPlus.com news:"
6959
- msgstr ""
6960
 
6961
  #: src/templates/wp-admin/settings/header.php:11,
6962
  #: src/templates/wp-admin/settings/tab-addons.php:73
6963
  msgid "Premium"
6964
- msgstr ""
6965
 
6966
  #: src/templates/wp-admin/settings/header.php:15
6967
  msgid "News"
6968
- msgstr ""
6969
 
6970
  #: src/admin.php:1746, src/includes/class-wpadmin-commands.php:581
6971
  msgid "Backup set not found"
6972
- msgstr ""
6973
 
6974
  #: src/backup.php:206
6975
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
6976
- msgstr ""
6977
 
6978
  #: src/includes/updraftplus-notices.php:159,
6979
  #: src/includes/updraftplus-notices.php:160,
6980
  #: src/includes/updraftplus-notices.php:169,
6981
  #: src/includes/updraftplus-notices.php:170
6982
  msgid "RSS link"
6983
- msgstr ""
6984
 
6985
  #: src/includes/updraftplus-notices.php:159,
6986
  #: src/includes/updraftplus-notices.php:160,
6987
  #: src/includes/updraftplus-notices.php:169,
6988
  #: src/includes/updraftplus-notices.php:170
6989
  msgid "Blog link"
6990
- msgstr ""
6991
 
6992
  #: src/admin.php:899
6993
  msgid "Testing %s Settings..."
6994
- msgstr ""
6995
 
6996
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:69,
6997
  #: src/templates/wp-admin/settings/tab-backups.php:71
6998
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
6999
- msgstr ""
7000
 
7001
  #: src/admin.php:1212
7002
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
7003
- msgstr ""
7004
 
7005
  #: src/admin.php:1212, src/admin.php:1265
7006
  msgid "Notice"
7007
- msgstr ""
7008
 
7009
  #: src/class-updraftplus.php:3401
7010
  msgid "Errors encountered:"
7011
- msgstr ""
7012
 
7013
  #: src/admin.php:801
7014
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
7015
- msgstr ""
7016
 
7017
  #: src/admin.php:815
7018
  msgid "Begun looking for this entity"
7019
- msgstr ""
7020
 
7021
  #: src/methods/s3.php:495, src/methods/s3.php:699, src/methods/s3.php:803
7022
  msgid "Error: Failed to access bucket %s. Check your permissions and credentials."
7023
- msgstr ""
7024
 
7025
  #: src/methods/s3.php:784, src/methods/s3.php:828
7026
  msgid "Error: Failed to download %s. Check your permissions and credentials."
7027
- msgstr ""
7028
 
7029
  #: src/addons/dropbox-folders.php:32
7030
  msgid "Store at"
7031
- msgstr ""
7032
 
7033
  #: src/addons/migrator.php:1580
7034
  msgid "\"%s\" has no primary key, manual change needed on row %s."
7035
- msgstr ""
7036
 
7037
  #: src/addons/migrator.php:1436
7038
  msgid "rows: %d"
7039
- msgstr ""
7040
 
7041
  #: src/addons/migrator.php:1312
7042
  msgid "Time taken (seconds):"
7043
- msgstr ""
7044
 
7045
  #: src/addons/migrator.php:1311, src/admin.php:820
7046
  msgid "Errors:"
7047
- msgstr ""
7048
 
7049
  #: src/addons/migrator.php:1310
7050
  msgid "SQL update commands run:"
7051
- msgstr ""
7052
 
7053
  #: src/addons/migrator.php:1309
7054
  msgid "Changes made:"
7055
- msgstr ""
7056
 
7057
  #: src/addons/migrator.php:1308
7058
  msgid "Rows examined:"
7059
- msgstr ""
7060
 
7061
  #: src/addons/migrator.php:1307
7062
  msgid "Tables examined:"
7063
- msgstr ""
7064
 
7065
  #: src/addons/migrator.php:1199
7066
  msgid "Could not get list of tables"
7067
- msgstr ""
7068
 
7069
  #: src/addons/migrator.php:1144
7070
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
7071
- msgstr ""
7072
 
7073
  #: src/addons/migrator.php:1133
7074
  msgid "Nothing to do: the site URL is already: %s"
7075
- msgstr ""
7076
 
7077
  #: src/addons/migrator.php:1097, src/addons/migrator.php:1101,
7078
  #: src/addons/migrator.php:1105, src/addons/migrator.php:1110,
7079
  #: src/addons/migrator.php:1114, src/addons/migrator.php:1119
7080
  msgid "Error: unexpected empty parameter (%s, %s)"
7081
- msgstr ""
7082
 
7083
  #: src/addons/migrator.php:1057
7084
  msgid "Database: search and replace site URL"
7085
- msgstr ""
7086
 
7087
  #: src/addons/migrator.php:918, src/addons/migrator.php:1293
7088
  msgid "Failed: we did not understand the result returned by the %s operation."
7089
- msgstr ""
7090
 
7091
  #: src/addons/migrator.php:916, src/addons/migrator.php:1291
7092
  msgid "Failed: the %s operation was not able to start."
7093
- msgstr ""
7094
 
7095
  #: src/addons/migrator.php:562
7096
  msgid "Search and replace site location in the database (migrate)"
7097
- msgstr ""
7098
 
7099
  #: src/addons/migrator.php:562
7100
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
7101
- msgstr ""
7102
 
7103
  #: src/addons/multisite.php:739
7104
  msgid "Blog uploads"
7105
- msgstr ""
7106
 
7107
  #: src/addons/migrator.php:496, src/addons/multisite.php:732
7108
  msgid "Must-use plugins"
7109
- msgstr ""
7110
 
7111
  #: src/addons/multisite.php:209
7112
  msgid "Multisite Install"
7113
- msgstr ""
7114
 
7115
  #: src/addons/fixtime.php:570
7116
  msgid "starting from next time it is"
7117
- msgstr ""
7118
 
7119
  #: src/addons/sftp.php:531
7120
  msgid "Failure: Port must be an integer."
7121
- msgstr ""
7122
 
7123
  #: src/methods/ftp.php:429, src/methods/openstack2.php:185
7124
  msgid "password"
7125
- msgstr ""
7126
 
7127
  #: src/addons/sftp.php:522, src/methods/openstack2.php:180
7128
  msgid "username"
7129
- msgstr ""
7130
 
7131
  #: src/addons/sftp.php:518
7132
  msgid "host name"
7133
- msgstr ""
7134
 
7135
  #: src/addons/sftp.php:481, src/addons/sftp.php:481
7136
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
7137
- msgstr ""
7138
 
7139
  #: src/addons/sftp.php:479
7140
  msgid "Directory path"
7141
- msgstr ""
7142
 
7143
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
7144
  #: src/addons/sftp.php:455, src/addons/webdav.php:191, src/admin.php:976,
@@ -7146,68 +7146,68 @@ msgstr ""
7146
  #: src/methods/updraftvault.php:388,
7147
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
7148
  msgid "Password"
7149
- msgstr ""
7150
 
7151
  #: src/addons/sftp.php:441, src/addons/webdav.php:205
7152
  msgid "Port"
7153
- msgstr ""
7154
 
7155
  #: src/addons/moredatabase.php:239, src/addons/sftp.php:434,
7156
  #: src/addons/webdav.php:197
7157
  msgid "Host"
7158
- msgstr ""
7159
 
7160
  #: src/addons/sftp.php:282
7161
  msgid "Error: Failed to download"
7162
- msgstr ""
7163
 
7164
  #: src/addons/sftp.php:563
7165
  msgid "Check your file permissions: Could not successfully create and enter:"
7166
- msgstr ""
7167
 
7168
  #: src/addons/sftp.php:52, src/addons/sftp.php:53, src/addons/sftp.php:54
7169
  msgid "No %s found"
7170
- msgstr ""
7171
 
7172
  #: src/addons/sftp.php:40
7173
  msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
7174
- msgstr ""
7175
 
7176
  #: src/addons/morefiles.php:577
7177
  msgid "No backup of %s directories: there was nothing found to back up"
7178
- msgstr ""
7179
 
7180
  #: src/addons/morefiles.php:297
7181
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
7182
- msgstr ""
7183
 
7184
  #: src/addons/morefiles.php:295
7185
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
7186
- msgstr ""
7187
 
7188
  #: src/addons/morefiles.php:273
7189
  msgid "More Files"
7190
- msgstr ""
7191
 
7192
  #: src/addons/morefiles.php:181
7193
  msgid "WordPress core (including any additions to your WordPress root directory)"
7194
- msgstr ""
7195
 
7196
  #: src/addons/morefiles.php:174
7197
  msgid "The above files comprise everything in a WordPress installation."
7198
- msgstr ""
7199
 
7200
  #: src/addons/morefiles.php:155
7201
  msgid "Over-write wp-config.php"
7202
- msgstr ""
7203
 
7204
  #: src/addons/morefiles.php:151, src/includes/class-wpadmin-commands.php:598
7205
  msgid "WordPress Core"
7206
- msgstr ""
7207
 
7208
  #: src/methods/addon-base-v2.php:366, src/methods/stream-base.php:382
7209
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
7210
- msgstr ""
7211
 
7212
  #: src/addons/googlecloud.php:779, src/addons/googlecloud.php:813,
7213
  #: src/addons/googlecloud.php:819, src/addons/sftp.php:549, src/admin.php:3611,
@@ -7218,19 +7218,19 @@ msgstr "Неуспешно"
7218
 
7219
  #: src/addons/webdav.php:166
7220
  msgid "WebDAV URL"
7221
- msgstr ""
7222
 
7223
  #: src/methods/stream-base.php:342
7224
  msgid "Local write failed: Failed to download"
7225
- msgstr ""
7226
 
7227
  #: src/methods/stream-base.php:311
7228
  msgid "Error opening remote file: Failed to download"
7229
- msgstr ""
7230
 
7231
  #: src/methods/stream-base.php:134, src/methods/stream-base.php:138
7232
  msgid "Chunk %s: A %s error occurred"
7233
- msgstr ""
7234
 
7235
  #: src/addons/googlecloud.php:325, src/addons/sftp.php:50,
7236
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
@@ -7241,195 +7241,195 @@ msgstr ""
7241
  #: src/methods/stream-base.php:178, src/methods/stream-base.php:212,
7242
  #: src/methods/stream-base.php:285
7243
  msgid "No %s settings were found"
7244
- msgstr ""
7245
 
7246
  #: src/methods/ftp.php:451
7247
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
7248
- msgstr ""
7249
 
7250
  #: src/methods/ftp.php:448
7251
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
7252
- msgstr ""
7253
 
7254
  #: src/methods/ftp.php:439
7255
  msgid "Failure: we did not successfully log in with those credentials."
7256
- msgstr ""
7257
 
7258
  #: src/methods/ftp.php:421
7259
  msgid "Failure: No server details were given."
7260
- msgstr ""
7261
 
7262
  #: src/methods/ftp.php:386, src/methods/ftp.php:386
7263
  msgid "Needs to already exist"
7264
- msgstr ""
7265
 
7266
  #: src/methods/ftp.php:349
7267
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
7268
- msgstr ""
7269
 
7270
  #: src/addons/onedrive.php:912, src/methods/dropbox.php:817
7271
  msgid "Your %s account name: %s"
7272
- msgstr ""
7273
 
7274
  #: src/methods/dropbox.php:807, src/methods/dropbox.php:829
7275
  msgid "though part of the returned information was not as expected - your mileage may vary"
7276
- msgstr ""
7277
 
7278
  #: src/methods/dropbox.php:802, src/methods/dropbox.php:804
7279
  msgid "you have authenticated your %s account"
7280
- msgstr ""
7281
 
7282
  #: src/methods/dropbox.php:602, src/methods/dropbox.php:604
7283
  msgid "there's an add-on for that."
7284
- msgstr ""
7285
 
7286
  #: src/methods/dropbox.php:602, src/methods/dropbox.php:604
7287
  msgid "If you backup several sites into the same Dropbox and want to organize with sub-folders, then "
7288
- msgstr ""
7289
 
7290
  #: src/methods/dropbox.php:602, src/methods/dropbox.php:604
7291
  msgid "Backups are saved in"
7292
- msgstr ""
7293
 
7294
  #: src/methods/dropbox.php:602, src/methods/dropbox.php:604
7295
  msgid "Need to use sub-folders?"
7296
- msgstr ""
7297
 
7298
  #: src/methods/dropbox.php:280
7299
  msgid "error: failed to upload file to %s (see log file for more)"
7300
- msgstr ""
7301
 
7302
  #: src/methods/dropbox.php:194
7303
  msgid "error: %s (see log file for more)"
7304
- msgstr ""
7305
 
7306
  #: src/methods/dropbox.php:172, src/methods/dropbox.php:189
7307
  msgid "You do not appear to be authenticated with Dropbox"
7308
- msgstr ""
7309
 
7310
  #: src/methods/s3.php:1226
7311
  msgid "The communication with %s was not encrypted."
7312
- msgstr ""
7313
 
7314
  #: src/methods/s3.php:1224
7315
  msgid "The communication with %s was encrypted."
7316
- msgstr ""
7317
 
7318
  #: src/addons/googlecloud.php:842, src/methods/s3.php:1221
7319
  msgid "We accessed the bucket, and were able to create files within it."
7320
- msgstr ""
7321
 
7322
  #: src/addons/googlecloud.php:836, src/addons/googlecloud.php:850,
7323
  #: src/methods/s3.php:1219, src/methods/s3.php:1231
7324
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
7325
- msgstr ""
7326
 
7327
  #: src/addons/googlecloud.php:836, src/addons/googlecloud.php:850,
7328
  #: src/methods/s3.php:1219, src/methods/s3.php:1231
7329
  msgid "Failure"
7330
- msgstr ""
7331
 
7332
  #: src/addons/backblaze.php:517, src/methods/s3.php:1207
7333
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
7334
- msgstr ""
7335
 
7336
  #: src/addons/s3-enhanced.php:185, src/methods/openstack2.php:150,
7337
  #: src/methods/s3.php:1201
7338
  msgid "Region"
7339
- msgstr ""
7340
 
7341
  #: src/addons/googlecloud.php:125, src/addons/googlecloud.php:796,
7342
  #: src/methods/s3.php:1181
7343
  msgid "Failure: No bucket details were given."
7344
- msgstr ""
7345
 
7346
  #: src/methods/s3.php:1159
7347
  msgid "API secret"
7348
- msgstr ""
7349
 
7350
  #: src/methods/s3.php:965
7351
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
7352
- msgstr ""
7353
 
7354
  #: src/methods/s3.php:964
7355
  msgid "%s location"
7356
- msgstr ""
7357
 
7358
  #: src/methods/s3.php:960
7359
  msgid "%s secret key"
7360
- msgstr ""
7361
 
7362
  #: src/methods/s3.php:956
7363
  msgid "%s access key"
7364
- msgstr ""
7365
 
7366
  #: src/methods/s3.php:895
7367
  msgid "If you see errors about SSL certificates, then please go here for help."
7368
- msgstr ""
7369
 
7370
  #: src/methods/s3.php:893
7371
  msgid "Get your access key and secret key from your <a href=\"%s\">%s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
7372
- msgstr ""
7373
 
7374
  #: src/methods/s3.php:619
7375
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
7376
- msgstr ""
7377
 
7378
  #: src/methods/s3.php:796
7379
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
7380
- msgstr ""
7381
 
7382
  #: src/methods/s3.php:473
7383
  msgid "%s re-assembly error (%s): (see log file for more)"
7384
- msgstr ""
7385
 
7386
  #: src/methods/s3.php:469
7387
  msgid "upload (%s): re-assembly failed (see log for more details)"
7388
- msgstr ""
7389
 
7390
  #: src/methods/s3.php:453
7391
  msgid "chunk %s: upload failed"
7392
- msgstr ""
7393
 
7394
  #: src/methods/s3.php:443
7395
  msgid "error: file %s was shortened unexpectedly"
7396
- msgstr ""
7397
 
7398
  #: src/methods/s3.php:421
7399
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
7400
- msgstr ""
7401
 
7402
  #: src/methods/email.php:92
7403
  msgid "Note:"
7404
- msgstr ""
7405
 
7406
  #: src/methods/email.php:45
7407
  msgid "WordPress Backup"
7408
- msgstr ""
7409
 
7410
  #: src/methods/cloudfiles.php:578, src/methods/openstack-base.php:535
7411
  msgid "We accessed the container, and were able to create files within it."
7412
- msgstr ""
7413
 
7414
  #: src/methods/cloudfiles.php:574
7415
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
7416
- msgstr ""
7417
 
7418
  #: src/methods/cloudfiles.php:547, src/methods/openstack-base.php:477
7419
  msgid "Failure: No container details were given."
7420
- msgstr ""
7421
 
7422
  #: src/addons/moredatabase.php:240, src/addons/sftp.php:448,
7423
  #: src/addons/webdav.php:185, src/admin.php:975,
7424
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:527,
7425
  #: src/methods/openstack2.php:158
7426
  msgid "Username"
7427
- msgstr ""
7428
 
7429
  #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles.php:522,
7430
  #: src/methods/s3.php:1155
7431
  msgid "API key"
7432
- msgstr ""
7433
 
7434
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
7435
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
@@ -7443,121 +7443,121 @@ msgstr ""
7443
  #: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
7444
  #: src/methods/s3.php:1155, src/methods/s3.php:1159
7445
  msgid "Failure: No %s was given."
7446
- msgstr ""
7447
 
7448
  #: src/methods/cloudfiles-new.php:96, src/methods/cloudfiles.php:443,
7449
  #: src/methods/openstack-base.php:576, src/methods/s3.php:887
7450
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
7451
- msgstr ""
7452
 
7453
  #: src/methods/cloudfiles.php:486
7454
  msgid "Cloud Files username"
7455
- msgstr ""
7456
 
7457
  #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:114,
7458
  #: src/methods/cloudfiles.php:470
7459
  msgid "UK"
7460
- msgstr ""
7461
 
7462
  #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:113,
7463
  #: src/methods/cloudfiles.php:469
7464
  msgid "US (default)"
7465
- msgstr ""
7466
 
7467
  #: src/methods/cloudfiles.php:466
7468
  msgid "US or UK Cloud"
7469
- msgstr ""
7470
 
7471
  #: src/methods/cloudfiles-new.php:98, src/methods/cloudfiles.php:449,
7472
  #: src/methods/openstack2.php:120
7473
  msgid "Also, you should read this important FAQ."
7474
- msgstr ""
7475
 
7476
  #: src/methods/cloudfiles-new.php:98, src/methods/cloudfiles.php:449
7477
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\" target=\"_blank\">from your Rackspace Cloud console</a> (<a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\" target=\"_blank\">read instructions here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
7478
- msgstr ""
7479
 
7480
  #: src/admin.php:898, src/methods/backup-module.php:315
7481
  msgid "Test %s Settings"
7482
- msgstr ""
7483
 
7484
  #: src/class-updraftplus.php:1441, src/class-updraftplus.php:1485,
7485
  #: src/methods/cloudfiles.php:386, src/methods/stream-base.php:304
7486
  msgid "Error opening local file: Failed to download"
7487
- msgstr ""
7488
 
7489
  #: src/addons/sftp.php:160, src/methods/openstack-base.php:314,
7490
  #: src/methods/s3.php:386, src/methods/s3.php:398, src/methods/s3.php:399
7491
  msgid "%s Error: Failed to upload"
7492
- msgstr ""
7493
 
7494
  #: src/class-updraftplus.php:1283
7495
  msgid "%s Error: Failed to open local file"
7496
- msgstr ""
7497
 
7498
  #: src/addons/cloudfiles-enhanced.php:120,
7499
  #: src/addons/cloudfiles-enhanced.php:133,
7500
  #: src/addons/cloudfiles-enhanced.php:137, src/methods/cloudfiles.php:557,
7501
  #: src/methods/cloudfiles.php:560, src/methods/cloudfiles.php:563
7502
  msgid "Cloud Files authentication failed"
7503
- msgstr ""
7504
 
7505
  #: src/methods/googledrive.php:1402
7506
  msgid "Authenticate with Google"
7507
- msgstr ""
7508
 
7509
  #: src/addons/googlecloud.php:1028, src/addons/onedrive.php:1189,
7510
  #: src/methods/googledrive.php:1366
7511
  msgid "Client Secret"
7512
- msgstr ""
7513
 
7514
  #: src/addons/googlecloud.php:1022, src/addons/googlecloud.php:1023,
7515
  #: src/methods/googledrive.php:1363
7516
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
7517
- msgstr ""
7518
 
7519
  #: src/addons/googlecloud.php:1020, src/addons/onedrive.php:1185,
7520
  #: src/methods/googledrive.php:1362
7521
  msgid "Client ID"
7522
- msgstr ""
7523
 
7524
  #: src/methods/googledrive.php:1336
7525
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
7526
- msgstr ""
7527
 
7528
  #: src/addons/googlecloud.php:998, src/methods/googledrive.php:1336
7529
  msgid "Select 'Web Application' as the application type."
7530
- msgstr ""
7531
 
7532
  #: src/addons/googlecloud.php:996, src/methods/googledrive.php:1334
7533
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
7534
- msgstr ""
7535
 
7536
  #: src/addons/googlecloud.php:510, src/addons/googlecloud.php:511,
7537
  #: src/addons/googlecloud.php:869, src/methods/googledrive.php:704,
7538
  #: src/methods/googledrive.php:705, src/methods/googledrive.php:715,
7539
  #: src/methods/googledrive.php:716
7540
  msgid "Account is not authorized."
7541
- msgstr ""
7542
 
7543
  #: src/methods/googledrive.php:600, src/methods/googledrive.php:662,
7544
  #: src/methods/googledrive.php:678, src/methods/googledrive.php:680,
7545
  #: src/methods/stream-base.php:228
7546
  msgid "Failed to upload to %s"
7547
- msgstr ""
7548
 
7549
  #: src/methods/googledrive.php:643
7550
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
7551
- msgstr ""
7552
 
7553
  #: src/methods/googledrive.php:748, src/methods/googledrive.php:784
7554
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
7555
- msgstr ""
7556
 
7557
  #: src/addons/googlecloud.php:721, src/addons/onedrive.php:950,
7558
  #: src/methods/googledrive.php:558
7559
  msgid "you have authenticated your %s account."
7560
- msgstr ""
7561
 
7562
  #: src/addons/googlecloud.php:721, src/addons/googlecloud.php:842,
7563
  #: src/addons/onedrive.php:950, src/addons/sftp.php:587,
@@ -7566,189 +7566,189 @@ msgstr ""
7566
  #: src/methods/googledrive.php:558, src/methods/openstack-base.php:535,
7567
  #: src/methods/s3.php:1221, src/methods/stream-base.php:379
7568
  msgid "Success"
7569
- msgstr ""
7570
 
7571
  #: src/addons/onedrive.php:904, src/methods/dropbox.php:840,
7572
  #: src/methods/dropbox.php:849, src/methods/googledrive.php:522
7573
  msgid "Your %s quota usage: %s %% used, %s available"
7574
- msgstr ""
7575
 
7576
  #: src/addons/googlecloud.php:451, src/methods/googledrive.php:492
7577
  msgid "Authorization failed"
7578
- msgstr ""
7579
 
7580
  #: src/addons/googlecloud.php:443, src/methods/googledrive.php:484
7581
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
7582
- msgstr ""
7583
 
7584
  #: src/methods/addon-not-yet-present.php:80
7585
  msgid "follow this link to get it"
7586
- msgstr ""
7587
 
7588
  #: src/methods/addon-not-yet-present.php:80
7589
  msgid "%s support is available as an add-on"
7590
- msgstr ""
7591
 
7592
  #: src/methods/addon-not-yet-present.php:26,
7593
  #: src/methods/addon-not-yet-present.php:64,
7594
  #: src/methods/addon-not-yet-present.php:71
7595
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
7596
- msgstr ""
7597
 
7598
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:126,
7599
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:127
7600
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
7601
- msgstr ""
7602
 
7603
  #: src/admin.php:3615, src/admin.php:3650, src/admin.php:3654,
7604
  #: src/includes/class-remote-send.php:407,
7605
  #: src/includes/class-storage-methods-interface.php:317, src/restorer.php:410,
7606
  #: src/restorer.php:3348, src/restorer.php:3468
7607
  msgid "OK"
7608
- msgstr ""
7609
 
7610
  #: src/restorer.php:3342, src/restorer.php:3432
7611
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
7612
- msgstr ""
7613
 
7614
  #: src/addons/migrator.php:1326, src/restorer.php:3160
7615
  msgid "the database query being run was:"
7616
- msgstr ""
7617
 
7618
  #: src/restorer.php:2303
7619
  msgid "will restore as:"
7620
- msgstr ""
7621
 
7622
  #: src/class-updraftplus.php:4650, src/restorer.php:2175,
7623
  #: src/restorer.php:2611, src/restorer.php:2730
7624
  msgid "Old table prefix:"
7625
- msgstr ""
7626
 
7627
  #: src/addons/reporting.php:86, src/addons/reporting.php:195,
7628
  #: src/class-updraftplus.php:3475, src/class-updraftplus.php:4575
7629
  msgid "Backup of:"
7630
- msgstr ""
7631
 
7632
  #: src/restorer.php:2389
7633
  msgid "Failed to open database file"
7634
- msgstr ""
7635
 
7636
  #: src/restorer.php:2368
7637
  msgid "Failed to find database file"
7638
- msgstr ""
7639
 
7640
  #: src/restorer.php:2345
7641
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
7642
- msgstr ""
7643
 
7644
  #: src/restorer.php:1178
7645
  msgid "wp-config.php from backup: restoring (as per user's request)"
7646
- msgstr ""
7647
 
7648
  #: src/restorer.php:1171
7649
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
7650
- msgstr ""
7651
 
7652
  #: src/restorer.php:1046
7653
  msgid "Failed to write out the decrypted database to the filesystem"
7654
- msgstr ""
7655
 
7656
  #: src/restorer.php:1030
7657
  msgid "Failed to create a temporary directory"
7658
- msgstr ""
7659
 
7660
  #: src/restorer.php:731
7661
  msgid "Failed to delete working directory after restoring."
7662
- msgstr ""
7663
 
7664
  #: src/restorer.php:726
7665
  msgid "Cleaning up rubbish..."
7666
- msgstr ""
7667
 
7668
  #: src/restorer.php:725
7669
  msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
7670
- msgstr ""
7671
 
7672
  #: src/restorer.php:722
7673
  msgid "Database successfully decrypted."
7674
- msgstr ""
7675
 
7676
  #: src/restorer.php:721
7677
  msgid "Decrypting database (can take a while)..."
7678
- msgstr ""
7679
 
7680
  #: src/restorer.php:720
7681
  msgid "Unpacking backup..."
7682
- msgstr ""
7683
 
7684
  #: src/restorer.php:719
7685
  msgid "Copying this entity failed."
7686
- msgstr ""
7687
 
7688
  #: src/restorer.php:718
7689
  msgid "Backup file not available."
7690
- msgstr ""
7691
 
7692
  #: src/restorer.php:717
7693
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
7694
- msgstr ""
7695
 
7696
  #: src/restorer.php:418, src/restorer.php:419
7697
  msgid "Could not find one of the files for restoration"
7698
- msgstr ""
7699
 
7700
  #: src/restorer.php:601
7701
  msgid "Error message"
7702
- msgstr ""
7703
 
7704
  #: src/restorer.php:415
7705
  msgid "The backup records do not contain information about the proper size of this file."
7706
- msgstr ""
7707
 
7708
  #: src/restorer.php:407
7709
  msgid "Archive is expected to be size:"
7710
- msgstr ""
7711
 
7712
  #: src/admin.php:4900
7713
  msgid "If making a request for support, please include this information:"
7714
- msgstr ""
7715
 
7716
  #: src/admin.php:4900
7717
  msgid "ABORT: Could not find the information on which entities to restore."
7718
- msgstr ""
7719
 
7720
  #: src/addons/wp-cli.php:622
7721
  msgid "UpdraftPlus Restoration: Progress"
7722
- msgstr ""
7723
 
7724
  #: src/admin.php:4863
7725
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
7726
- msgstr ""
7727
 
7728
  #: src/admin.php:4328
7729
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
7730
- msgstr ""
7731
 
7732
  #: src/admin.php:4412
7733
  msgid "Delete this backup set"
7734
- msgstr ""
7735
 
7736
  #: src/admin.php:4077
7737
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
7738
- msgstr ""
7739
 
7740
  #: src/admin.php:4074
7741
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
7742
- msgstr ""
7743
 
7744
  #: src/admin.php:4072
7745
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
7746
- msgstr ""
7747
 
7748
  #: src/methods/cloudfiles-new.php:96, src/methods/cloudfiles.php:443,
7749
  #: src/methods/openstack-base.php:576, src/methods/s3.php:887
7750
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
7751
- msgstr ""
7752
 
7753
  #: src/templates/wp-admin/settings/form-contents.php:374
7754
  msgid "Save Changes"
@@ -7756,79 +7756,79 @@ msgstr "Запис на промените"
7756
 
7757
  #: src/templates/wp-admin/settings/form-contents.php:346
7758
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
7759
- msgstr ""
7760
 
7761
  #: src/templates/wp-admin/settings/form-contents.php:345
7762
  msgid "Disable SSL entirely where possible"
7763
- msgstr ""
7764
 
7765
  #: src/templates/wp-admin/settings/form-contents.php:341
7766
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
7767
- msgstr ""
7768
 
7769
  #: src/templates/wp-admin/settings/form-contents.php:341
7770
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
7771
- msgstr ""
7772
 
7773
  #: src/templates/wp-admin/settings/form-contents.php:340
7774
  msgid "Do not verify SSL certificates"
7775
- msgstr ""
7776
 
7777
  #: src/templates/wp-admin/settings/form-contents.php:336
7778
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
7779
- msgstr ""
7780
 
7781
  #: src/templates/wp-admin/settings/form-contents.php:335
7782
  msgid "Use the server's SSL certificates"
7783
- msgstr ""
7784
 
7785
  #: src/admin.php:3893
7786
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
7787
- msgstr ""
7788
 
7789
  #: src/admin.php:3893
7790
  msgid "or, to reset this option"
7791
- msgstr ""
7792
 
7793
  #: src/admin.php:3893
7794
  msgid "Follow this link to attempt to create the directory and set the permissions"
7795
- msgstr ""
7796
 
7797
  #: src/admin.php:3885
7798
  msgid "Backup directory specified is writable, which is good."
7799
- msgstr ""
7800
 
7801
  #: src/templates/wp-admin/settings/form-contents.php:319
7802
  msgid "Backup directory"
7803
- msgstr ""
7804
 
7805
  #: src/templates/wp-admin/settings/form-contents.php:314
7806
  msgid "Delete local backup"
7807
- msgstr ""
7808
 
7809
  #: src/templates/wp-admin/settings/form-contents.php:294
7810
  msgid "open this to show some further options; don't bother with this unless you have a problem or are curious."
7811
- msgstr ""
7812
 
7813
  #: src/templates/wp-admin/settings/form-contents.php:294
7814
  msgid "Show expert settings"
7815
- msgstr ""
7816
 
7817
  #: src/templates/wp-admin/settings/form-contents.php:293
7818
  msgid "Expert settings"
7819
- msgstr ""
7820
 
7821
  #: src/templates/wp-admin/settings/form-contents.php:304
7822
  msgid "Debug mode"
7823
- msgstr ""
7824
 
7825
  #: src/templates/wp-admin/settings/form-contents.php:289
7826
  msgid "Advanced / Debugging Settings"
7827
- msgstr ""
7828
 
7829
  #: src/admin.php:832
7830
  msgid "Requesting start of backup..."
7831
- msgstr ""
7832
 
7833
  #: src/addons/morefiles.php:876, src/admin.php:849,
7834
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:94
@@ -7838,19 +7838,19 @@ msgstr "Отмяна"
7838
  #: src/addons/incremental.php:328, src/addons/reporting.php:259,
7839
  #: src/admin.php:4158
7840
  msgid "None"
7841
- msgstr ""
7842
 
7843
  #: src/templates/wp-admin/settings/form-contents.php:104
7844
  msgid "Choose your remote storage"
7845
- msgstr ""
7846
 
7847
  #: src/templates/wp-admin/settings/form-contents.php:179
7848
  msgid "Manually decrypt a database backup file"
7849
- msgstr ""
7850
 
7851
  #: src/templates/wp-admin/settings/form-contents.php:158
7852
  msgid "Database encryption phrase"
7853
- msgstr ""
7854
 
7855
  #: src/admin.php:3076, src/methods/updraftvault.php:387,
7856
  #: src/templates/wp-admin/settings/form-contents.php:256,
@@ -7860,31 +7860,31 @@ msgstr "Електронна поща"
7860
 
7861
  #: src/templates/wp-admin/settings/form-contents.php:148
7862
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
7863
- msgstr ""
7864
 
7865
  #: src/addons/morefiles.php:344
7866
  msgid "Exclude these:"
7867
- msgstr ""
7868
 
7869
  #: src/admin.php:3973
7870
  msgid "Any other directories found inside wp-content"
7871
- msgstr ""
7872
 
7873
  #: src/templates/wp-admin/settings/form-contents.php:145
7874
  msgid "Include in files backup"
7875
- msgstr ""
7876
 
7877
  #: src/templates/wp-admin/settings/form-contents.php:88
7878
  msgid "e.g. if your server is busy at day and you want to run overnight"
7879
- msgstr ""
7880
 
7881
  #: src/templates/wp-admin/settings/form-contents.php:88
7882
  msgid "To fix the time at which a backup should take place,"
7883
- msgstr ""
7884
 
7885
  #: src/templates/wp-admin/settings/form-contents.php:62
7886
  msgid "Database backup interval"
7887
- msgstr ""
7888
 
7889
  #: src/addons/incremental.php:337, src/admin.php:3875
7890
  msgid "Monthly"
@@ -7892,7 +7892,7 @@ msgstr "Месечен"
7892
 
7893
  #: src/addons/incremental.php:336, src/admin.php:3874
7894
  msgid "Fortnightly"
7895
- msgstr ""
7896
 
7897
  #: src/addons/incremental.php:335, src/admin.php:3873
7898
  msgid "Weekly"
@@ -7904,50 +7904,50 @@ msgstr "Ежедневно"
7904
 
7905
  #: src/templates/wp-admin/settings/form-contents.php:25
7906
  msgid "Files backup interval"
7907
- msgstr ""
7908
 
7909
  #: src/admin.php:857, src/admin.php:3846
7910
  msgid "Download log file"
7911
- msgstr ""
7912
 
7913
  #: src/admin.php:3718
7914
  msgid "The folder exists, but your webserver does not have permission to write to it."
7915
- msgstr ""
7916
 
7917
  #: src/admin.php:3713
7918
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
7919
- msgstr ""
7920
 
7921
  #: src/admin.php:3699
7922
  msgid "The request to the filesystem to create the directory failed."
7923
- msgstr ""
7924
 
7925
  #: src/admin.php:850, src/admin.php:3608, src/admin.php:3642,
7926
  #: src/admin.php:4412, src/includes/class-remote-send.php:646,
7927
  #: src/templates/wp-admin/settings/existing-backups-table.php:168,
7928
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7929
  msgid "Delete"
7930
- msgstr ""
7931
 
7932
  #: src/admin.php:3560
7933
  msgid "show log"
7934
- msgstr ""
7935
 
7936
  #: src/templates/wp-admin/advanced/wipe-settings.php:10
7937
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
7938
- msgstr ""
7939
 
7940
  #: src/templates/wp-admin/advanced/total-size.php:19
7941
  msgid "count"
7942
- msgstr ""
7943
 
7944
  #: src/templates/wp-admin/advanced/total-size.php:9
7945
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
7946
- msgstr ""
7947
 
7948
  #: src/templates/wp-admin/advanced/total-size.php:6
7949
  msgid "Total (uncompressed) on-disk data:"
7950
- msgstr ""
7951
 
7952
  #: src/templates/wp-admin/advanced/site-info.php:66,
7953
  #: src/templates/wp-admin/settings/tab-addons.php:105,
@@ -7998,76 +7998,76 @@ msgstr "Да"
7998
  #: src/templates/wp-admin/advanced/site-info.php:58,
7999
  #: src/templates/wp-admin/advanced/site-info.php:59
8000
  msgid "%s version:"
8001
- msgstr ""
8002
 
8003
  #: src/templates/wp-admin/advanced/site-info.php:43
8004
  msgid "Current memory usage"
8005
- msgstr ""
8006
 
8007
  #: src/templates/wp-admin/advanced/site-info.php:42
8008
  msgid "Peak memory usage"
8009
- msgstr ""
8010
 
8011
  #: src/templates/wp-admin/advanced/site-info.php:31
8012
  msgid "Web server:"
8013
- msgstr ""
8014
 
8015
  #: src/templates/wp-admin/settings/take-backup.php:98
8016
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
8017
- msgstr ""
8018
 
8019
  #: src/templates/wp-admin/settings/take-backup.php:98
8020
  msgid "Do you need WordPress Multisite support?"
8021
- msgstr ""
8022
 
8023
  #: src/templates/wp-admin/settings/take-backup.php:94
8024
  msgid "Multisite"
8025
- msgstr ""
8026
 
8027
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:45
8028
  msgid "Do read this helpful article of useful things to know before restoring."
8029
- msgstr ""
8030
 
8031
  #: src/class-updraftplus.php:4609
8032
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
8033
- msgstr ""
8034
 
8035
  #: src/addons/morefiles.php:151,
8036
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
8037
  msgid "%s restoration options:"
8038
- msgstr ""
8039
 
8040
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
8041
  msgid "You will need to restore it manually."
8042
- msgstr ""
8043
 
8044
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
8045
  msgid "The following entity cannot be restored automatically: \"%s\"."
8046
- msgstr ""
8047
 
8048
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:60
8049
  msgid "Your web server has PHP's so-called safe_mode active."
8050
- msgstr ""
8051
 
8052
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:44
8053
  msgid "Choose the components to restore"
8054
- msgstr ""
8055
 
8056
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:44
8057
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
8058
- msgstr ""
8059
 
8060
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:32
8061
  msgid "Restore backup"
8062
- msgstr ""
8063
 
8064
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:8
8065
  msgid "Delete backup set"
8066
- msgstr ""
8067
 
8068
  #: src/admin.php:831
8069
  msgid "Download error: the server sent us a response which we did not understand."
8070
- msgstr ""
8071
 
8072
  #: src/addons/backblaze.php:205, src/addons/backblaze.php:230,
8073
  #: src/addons/cloudfiles-enhanced.php:123, src/addons/migrator.php:903,
@@ -8089,30 +8089,30 @@ msgstr ""
8089
  #: src/methods/remotesend.php:252, src/methods/updraftvault.php:564,
8090
  #: src/restorer.php:412, src/restorer.php:440, src/restorer.php:2069
8091
  msgid "Error:"
8092
- msgstr ""
8093
 
8094
  #: src/admin.php:814
8095
  msgid "calculating..."
8096
- msgstr ""
8097
 
8098
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:68,
8099
  #: src/templates/wp-admin/settings/tab-backups.php:70
8100
  msgid "UpdraftPlus - Upload backup files"
8101
- msgstr ""
8102
 
8103
  #: src/includes/class-filesystem-functions.php:105,
8104
  #: src/templates/wp-admin/advanced/site-info.php:38
8105
  msgid "refresh"
8106
- msgstr ""
8107
 
8108
  #: src/includes/class-filesystem-functions.php:126,
8109
  #: src/templates/wp-admin/advanced/site-info.php:38
8110
  msgid "Web-server disk space in use by UpdraftPlus"
8111
- msgstr ""
8112
 
8113
  #: src/includes/class-filesystem-functions.php:126
8114
  msgid "This is a count of the contents of your Updraft directory"
8115
- msgstr ""
8116
 
8117
  #: src/addons/google-enhanced.php:75, src/methods/googledrive.php:285,
8118
  #: src/methods/googledrive.php:287, src/methods/googledrive.php:558,
@@ -8124,49 +8124,49 @@ msgstr ""
8124
  #: src/methods/googledrive.php:1366, src/methods/googledrive.php:1377,
8125
  #: src/methods/googledrive.php:1388
8126
  msgid "Google Drive"
8127
- msgstr ""
8128
 
8129
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:59,
8130
  #: src/templates/wp-admin/settings/tab-backups.php:63
8131
  msgid "If you are using this, then turn Turbo/Road mode off."
8132
- msgstr ""
8133
 
8134
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:59,
8135
  #: src/templates/wp-admin/settings/tab-backups.php:63
8136
  msgid "Opera web browser"
8137
- msgstr ""
8138
 
8139
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:47,
8140
  #: src/templates/wp-admin/settings/tab-backups.php:51
8141
  msgid "More tasks:"
8142
- msgstr ""
8143
 
8144
  #: src/admin.php:3238
8145
  msgid "Download most recently modified log file"
8146
- msgstr ""
8147
 
8148
  #: src/central/bootstrap.php:194
8149
  msgid "(Nothing yet logged)"
8150
- msgstr ""
8151
 
8152
  #: src/addons/autobackup.php:365, src/addons/autobackup.php:460,
8153
  #: src/admin.php:3194, src/admin.php:3200,
8154
  #: src/templates/wp-admin/settings/take-backup.php:71
8155
  msgid "Last log message"
8156
- msgstr ""
8157
 
8158
  #: src/addons/migrator.php:271, src/admin.php:662, src/admin.php:856,
8159
  #: src/admin.php:4328
8160
  msgid "Restore"
8161
- msgstr ""
8162
 
8163
  #: src/admin.php:848, src/templates/wp-admin/settings/take-backup.php:51
8164
  msgid "Backup Now"
8165
- msgstr ""
8166
 
8167
  #: src/templates/wp-admin/settings/take-backup.php:46
8168
  msgid "Time now"
8169
- msgstr ""
8170
 
8171
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:274,
8172
  #: src/addons/wp-cli.php:428, src/admin.php:355, src/admin.php:4133,
@@ -8178,45 +8178,45 @@ msgstr ""
8178
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
8179
  #: src/templates/wp-admin/settings/take-backup.php:34
8180
  msgid "Database"
8181
- msgstr ""
8182
 
8183
  #: src/admin.php:345, src/admin.php:5468,
8184
  #: src/templates/wp-admin/settings/take-backup.php:24
8185
  msgid "Files"
8186
- msgstr ""
8187
 
8188
  #: src/templates/wp-admin/settings/take-backup.php:19
8189
  msgid "Next scheduled backups"
8190
- msgstr ""
8191
 
8192
  #: src/admin.php:324
8193
  msgid "At the same time as the files backup"
8194
- msgstr ""
8195
 
8196
  #: src/admin.php:314, src/admin.php:335, src/admin.php:342, src/admin.php:387,
8197
  #: src/admin.php:418
8198
  msgid "Nothing currently scheduled"
8199
- msgstr ""
8200
 
8201
  #: src/templates/wp-admin/settings/take-backup.php:6
8202
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
8203
- msgstr ""
8204
 
8205
  #: src/templates/wp-admin/settings/take-backup.php:6
8206
  msgid "JavaScript warning"
8207
- msgstr ""
8208
 
8209
  #: src/admin.php:834, src/admin.php:3287
8210
  msgid "Delete Old Directories"
8211
- msgstr ""
8212
 
8213
  #: src/admin.php:2733
8214
  msgid "Current limit is:"
8215
- msgstr ""
8216
 
8217
  #: src/admin.php:2708
8218
  msgid "Your backup has been restored."
8219
- msgstr ""
8220
 
8221
  #: src/templates/wp-admin/settings/header.php:25
8222
  msgid "Version"
@@ -8224,70 +8224,70 @@ msgstr "Версия"
8224
 
8225
  #: src/templates/wp-admin/settings/header.php:25
8226
  msgid "Lead developer's homepage"
8227
- msgstr ""
8228
 
8229
  #: src/central/bootstrap.php:526
8230
  msgid "UpdraftPlus.Com"
8231
- msgstr ""
8232
 
8233
  #: src/admin.php:5362
8234
  msgid "Your settings have been wiped."
8235
- msgstr ""
8236
 
8237
  #: src/admin.php:2672
8238
  msgid "Backup directory successfully created."
8239
- msgstr ""
8240
 
8241
  #: src/admin.php:2665
8242
  msgid "Backup directory could not be created"
8243
- msgstr ""
8244
 
8245
  #: src/admin.php:3576
8246
  msgid "Old directory removal failed for some reason. You may want to do this manually."
8247
- msgstr ""
8248
 
8249
  #: src/admin.php:3574
8250
  msgid "Old directories successfully removed."
8251
- msgstr ""
8252
 
8253
  #: src/admin.php:3571, src/admin.php:3571
8254
  msgid "Remove old directories"
8255
- msgstr ""
8256
 
8257
  #: src/addons/migrator.php:340, src/addons/migrator.php:355
8258
  msgid "Return to UpdraftPlus Configuration"
8259
- msgstr ""
8260
 
8261
  #: src/admin.php:827, src/admin.php:2674, src/admin.php:3578,
8262
  #: src/admin.php:4696, src/admin.php:4708, src/admin.php:4719,
8263
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
8264
  #: src/templates/wp-admin/settings/existing-backups-table.php:143
8265
  msgid "Actions"
8266
- msgstr ""
8267
 
8268
  #: src/admin.php:2573
8269
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
8270
- msgstr ""
8271
 
8272
  #: src/admin.php:2473
8273
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
8274
- msgstr ""
8275
 
8276
  #: src/admin.php:2361
8277
  msgid "No local copy present."
8278
- msgstr ""
8279
 
8280
  #: src/admin.php:2358
8281
  msgid "Download in progress"
8282
- msgstr ""
8283
 
8284
  #: src/admin.php:826, src/admin.php:2347
8285
  msgid "File ready."
8286
- msgstr ""
8287
 
8288
  #: src/admin.php:2328
8289
  msgid "Download failed"
8290
- msgstr ""
8291
 
8292
  #: src/addons/wp-cli.php:497, src/admin.php:824,
8293
  #: src/class-updraftplus.php:1441, src/class-updraftplus.php:1485,
@@ -8299,39 +8299,39 @@ msgstr ""
8299
  #: src/restorer.php:3344, src/restorer.php:3369, src/restorer.php:3465,
8300
  #: src/udaddons/options.php:225, src/updraftplus.php:157
8301
  msgid "Error"
8302
- msgstr ""
8303
 
8304
  #: src/admin.php:2095
8305
  msgid "Could not find that job - perhaps it has already finished?"
8306
- msgstr ""
8307
 
8308
  #: src/admin.php:2087
8309
  msgid "Job deleted"
8310
- msgstr ""
8311
 
8312
  #: src/admin.php:2190, src/includes/class-commands.php:839
8313
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
8314
- msgstr ""
8315
 
8316
  #: src/admin.php:901
8317
  msgid "Nothing yet logged"
8318
- msgstr ""
8319
 
8320
  #: src/admin.php:1208
8321
  msgid "Please consult this FAQ if you have problems backing up."
8322
- msgstr ""
8323
 
8324
  #: src/admin.php:1208
8325
  msgid "Your website is hosted using the %s web server."
8326
- msgstr ""
8327
 
8328
  #: src/admin.php:1204
8329
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
8330
- msgstr ""
8331
 
8332
  #: src/admin.php:1200
8333
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
8334
- msgstr ""
8335
 
8336
  #: src/addons/azure.php:597, src/addons/migrator.php:957, src/admin.php:1189,
8337
  #: src/admin.php:1194, src/admin.php:1200, src/admin.php:1204,
@@ -8345,31 +8345,31 @@ msgstr ""
8345
  #: src/templates/wp-admin/settings/tab-backups.php:27,
8346
  #: src/udaddons/updraftplus-addons.php:301
8347
  msgid "Warning"
8348
- msgstr ""
8349
 
8350
  #: src/admin.php:1128
8351
  msgid "Add-Ons / Pro Support"
8352
- msgstr ""
8353
 
8354
  #: src/admin.php:678, src/admin.php:1126, src/admin.php:2895
8355
  msgid "Settings"
8356
- msgstr ""
8357
 
8358
  #: src/backup.php:279
8359
  msgid "Could not create %s zip. Consult the log file for more information."
8360
- msgstr ""
8361
 
8362
  #: src/backup.php:2196
8363
  msgid "Infinite recursion: consult your log for more information"
8364
- msgstr ""
8365
 
8366
  #: src/includes/updraftplus-notices.php:118
8367
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org."
8368
- msgstr ""
8369
 
8370
  #: src/includes/updraftplus-notices.php:117
8371
  msgid "Like UpdraftPlus and can spare one minute?"
8372
- msgstr ""
8373
 
8374
  #: src/addons/azure.php:260, src/class-updraftplus.php:4282,
8375
  #: src/methods/googledrive.php:1251, src/methods/s3.php:351
@@ -8378,85 +8378,85 @@ msgstr "Файлът не беше намерен"
8378
 
8379
  #: src/includes/class-updraftplus-encryption.php:354
8380
  msgid "The decryption key used:"
8381
- msgstr ""
8382
 
8383
  #: src/class-updraftplus.php:4505,
8384
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:1051
8385
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
8386
- msgstr ""
8387
 
8388
  #: src/class-updraftplus.php:4493,
8389
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:1038
8390
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
8391
- msgstr ""
8392
 
8393
  #: src/backup.php:2084
8394
  msgid "Could not open the backup file for writing"
8395
- msgstr ""
8396
 
8397
  #: src/class-updraftplus.php:4024
8398
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
8399
- msgstr ""
8400
 
8401
  #: src/class-updraftplus.php:4008
8402
  msgid "Could not read the directory"
8403
- msgstr ""
8404
 
8405
  #: src/admin.php:2415, src/backup.php:1206
8406
  msgid "Backup directory (%s) is not writable, or does not exist."
8407
- msgstr ""
8408
 
8409
  #: src/class-updraftplus.php:3476
8410
  msgid "WordPress backup is complete"
8411
- msgstr ""
8412
 
8413
  #: src/class-updraftplus.php:3318
8414
  msgid "The backup attempt has finished, apparently unsuccessfully"
8415
- msgstr ""
8416
 
8417
  #: src/class-updraftplus.php:3295
8418
  msgid "The backup apparently succeeded and is now complete"
8419
- msgstr ""
8420
 
8421
  #: src/addons/moredatabase.php:387
8422
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
8423
- msgstr ""
8424
 
8425
  #: src/class-updraftplus.php:2976
8426
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
8427
- msgstr ""
8428
 
8429
  #: src/class-updraftplus.php:1938
8430
  msgid "Others"
8431
- msgstr ""
8432
 
8433
  #: src/addons/multisite.php:503, src/class-updraftplus.php:1923
8434
  msgid "Uploads"
8435
- msgstr ""
8436
 
8437
  #: src/class-updraftplus.php:1922
8438
  msgid "Themes"
8439
- msgstr ""
8440
 
8441
  #: src/class-updraftplus.php:1921
8442
  msgid "Plugins"
8443
- msgstr ""
8444
 
8445
  #: src/class-updraftplus.php:660
8446
  msgid "No log files were found."
8447
- msgstr ""
8448
 
8449
  #: src/admin.php:2277, src/admin.php:2281, src/class-updraftplus.php:655
8450
  msgid "The log file could not be read."
8451
- msgstr ""
8452
 
8453
  #: src/admin.php:1237, src/admin.php:1258, src/admin.php:1282,
8454
  #: src/class-updraftplus.php:595, src/class-updraftplus.php:655,
8455
  #: src/class-updraftplus.php:660, src/class-updraftplus.php:665
8456
  msgid "UpdraftPlus notice:"
8457
- msgstr ""
8458
 
8459
  #: src/addons/multisite.php:96, src/addons/multisite.php:776,
8460
  #: src/options.php:74
8461
  msgid "UpdraftPlus Backups"
8462
- msgstr ""
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2020-08-03 14:29:14+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
77
 
78
  #: src/templates/wp-admin/settings/tab-addons.php:56
79
  msgid "You successfully purchased UpdraftPremium."
80
+ msgstr "Успешно закупихте UpdraftPremium."
81
 
82
  #: src/templates/wp-admin/settings/tab-addons.php:39
83
  msgid "Goes to updraftplus.com checkout page"
84
+ msgstr "Отива към страница за купуване на updraftplus.com"
85
 
86
  #: src/templates/wp-admin/settings/tab-addons.php:38
87
  msgid "Goes to the updraftplus.com checkout page"
88
+ msgstr "Отива на страницата за купуване на updraftplus.com"
89
 
90
  #: src/templates/wp-admin/settings/tab-addons.php:38
91
  msgid "Get %s here"
92
+ msgstr "Вземете %s тук"
93
 
94
  #: src/templates/wp-admin/settings/form-contents.php:310
95
  msgid "The higher the value, the more server resources are required to create the archive."
96
+ msgstr "Колкото по-висока е стойността, толкова повече сървърни ресурси са необходими за създаването на архива."
97
 
98
  #: src/templates/wp-admin/settings/form-contents.php:88
99
  msgid "to take incremental backups"
100
+ msgstr "да направите постепенно архивиране"
101
 
102
  #: src/templates/wp-admin/settings/form-contents.php:76
103
  msgid "Retain this many scheduled database backups"
104
+ msgstr "Запазете тези много планирани резервни копия на базата данни"
105
 
106
  #: src/templates/wp-admin/settings/form-contents.php:42
107
  msgid "Retain this many scheduled file backups"
108
+ msgstr "Запазете тези много планирани архивирания на файлове"
109
 
110
  #: src/templates/wp-admin/settings/file-backup-exclude.php:18
111
  msgid "Add an exclusion rule for %s"
112
+ msgstr "Добавете правило за изключване за %s"
113
 
114
  #: src/templates/wp-admin/settings/existing-backups-table.php:171
115
  msgid "Use ctrl / cmd + press to select several items, or ctrl / cmd + shift + press to select all in between"
116
+ msgstr "Използвайте ctrl / cmd + натиснете, за да изберете няколко елемента, или ctrl / cmd + shift + натиснете, за да изберете всички между"
117
 
118
  #: src/templates/wp-admin/settings/existing-backups-table.php:170
119
  msgid "Deselect all backups"
120
+ msgstr "Премахнете избора на всички резервни копия"
121
 
122
  #: src/templates/wp-admin/settings/existing-backups-table.php:169
123
  msgid "Select all backups"
124
+ msgstr "Изберете всички резервни копия"
125
 
126
  #: src/templates/wp-admin/settings/existing-backups-table.php:168
127
  msgid "Delete selected backups"
128
+ msgstr "Изтрийте избраните архиви"
129
 
130
  #: src/templates/wp-admin/settings/existing-backups-table.php:159
131
  msgid "Show all backups..."
132
+ msgstr "Показване на всички резервни копия ..."
133
 
134
  #: src/templates/wp-admin/settings/existing-backups-table.php:159
135
  msgid "Show more backups..."
136
+ msgstr "Покажи още резервни копия ..."
137
 
138
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:63
139
  msgid "Choose the components to restore:"
140
+ msgstr "Изберете компонентите за възстановяване:"
141
 
142
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
143
  msgid "Restore files from"
144
+ msgstr "Възстановяване на файлове от"
145
 
146
  #: src/templates/wp-admin/settings/backupnow-modal.php:20,
147
  #: src/templates/wp-admin/settings/backupnow-modal.php:67
148
  msgid "Find out more about incremental backups here."
149
+ msgstr "Научете повече за допълнителните резервни копия тук."
150
 
151
  #: src/templates/wp-admin/settings/backupnow-modal.php:17
152
  msgid "Incremental backups are a feature of %s (upgrade by following this link)."
153
+ msgstr "Постъпковите архиви са функция на %s (надстройката следва тази връзка)."
154
 
155
  #: src/templates/wp-admin/settings/backupnow-modal.php:13
156
  msgid "Take an incremental backup"
157
+ msgstr "Вземете постъпково резервно копие"
158
 
159
  #: src/templates/wp-admin/settings/backupnow-modal.php:12
160
  msgid "Take a new backup"
161
+ msgstr "Вземете ново архивно копие"
162
 
163
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
164
  msgid "Makes your site fast and efficient. It cleans the database, compresses images and caches pages for ultimate speed."
165
+ msgstr "Прави сайта Ви бърз и ефективен. Той почиства базата данни, компресира изображения и кешира страници за крайната скорост."
166
 
167
  #: src/restorer.php:3178
168
  msgid "The Database connection has been closed and cannot be reopened."
169
+ msgstr "Връзката с базата данни е затворена и не може да бъде отворена отново."
170
 
171
  #: src/restorer.php:2913
172
  msgid "Skipping table %s: already restored on a prior run; next table to restore: %s"
173
+ msgstr "Пропускаща таблица %s: вече е възстановена при по-предходно изпълнение; следваща таблица за възстановяване: %s"
174
 
175
  #: src/restorer.php:2910
176
  msgid "Skipping table %s: user has chosen not to restore this table"
177
+ msgstr "Пропускане на таблица %s: потребителят е избрал да не възстановява тази таблица"
178
 
179
  #: src/restorer.php:2254
180
  msgid "Found and replaced existing table foreign key constraints as the table prefix has changed."
181
+ msgstr "Намерени и заменени съществуващи ограничения за чужди ключови таблици, тъй като префиксът на таблицата е променен."
182
 
183
  #: src/restorer.php:2141
184
  msgid "An error occurred while attempting to set a new value to the MySQL global log_bin_trust_function_creators variable %s"
185
+ msgstr "Възникна грешка при опит за задаване на нова стойност на глобалната log_bin_trust_function_creators променлива на MySQL %s"
186
 
187
  #: src/restorer.php:2134
188
  msgid "An error occurred while attempting to retrieve the MySQL global log_bin_trust_function_creators variable %s"
189
+ msgstr "Възникна грешка при опит за извличане на глобалната log_bin_trust_function_creators променлива на MySQL %s"
190
 
191
  #: src/restorer.php:1127
192
  msgid "The directory does not exist, and the attempt to create it failed"
193
+ msgstr "Директорията не съществува и опитът за създаване на нея е неуспешен"
194
 
195
  #: src/restorer.php:728
196
  msgid "Could not delete old path."
197
+ msgstr "Не може да се изтрие старият път."
198
 
199
  #: src/methods/updraftvault.php:392
200
  msgid "Follow this link for help"
201
+ msgstr "Следвайте тази връзка за помощ"
202
 
203
  #: src/methods/updraftvault.php:388
204
  msgid "Please enter your %s password"
205
+ msgstr "Въведете вашата %s парола"
206
 
207
  #: src/methods/updraftvault.php:387
208
  msgid "Please enter your %s email address"
209
+ msgstr "Въведете вашия имейл адрес %s"
210
 
211
  #: src/methods/updraftvault.php:357, src/methods/updraftvault.php:364,
212
  #: src/methods/updraftvault.php:371
213
  msgid "Start Subscription"
214
+ msgstr "Стартиране на абонамент"
215
 
216
  #: src/methods/updraftvault.php:357, src/methods/updraftvault.php:364,
217
  #: src/methods/updraftvault.php:371
218
  msgid "Start %s Subscription"
219
+ msgstr "Стартиране на абонамент %s"
220
 
221
  #: src/methods/updraftvault.php:350
222
  msgid "Start Trial"
223
+ msgstr "Започнете пробен период"
224
 
225
  #: src/methods/updraftvault.php:350
226
  msgid "Start %s Trial"
227
+ msgstr "Стартиране на пробен период %s"
228
 
229
  #: src/methods/updraftvault.php:350, src/methods/updraftvault.php:357,
230
  #: src/methods/updraftvault.php:364, src/methods/updraftvault.php:371
231
  msgid "Start a %s UpdraftVault Subscription"
232
+ msgstr "Стартиране на %s UpdraftVault абонамент"
233
 
234
  #: src/methods/updraftvault.php:349
235
  msgid "%s month %s trial"
236
+ msgstr "%s месец опит %s"
237
 
238
  #: src/methods/updraftvault.php:348
239
  msgid "with the option of"
240
+ msgstr "с опцията на"
241
 
242
  #: src/methods/updraftvault.php:337, src/methods/updraftvault.php:378
243
  msgid "Read more about %s here."
244
+ msgstr "Прочетете повече за %s тук."
245
 
246
  #: src/methods/updraftvault.php:334
247
  msgid "Connect to your %s account"
248
+ msgstr "Свързване с вашия %s акаунт"
249
 
250
  #: src/methods/updraftvault.php:333
251
  msgid "Already got space?"
252
+ msgstr "Вече имате място?"
253
 
254
  #: src/methods/updraftvault.php:329, src/methods/updraftvault.php:330
255
  msgid "Need to get space?"
256
+ msgstr "Трябва да получите пространство?"
257
 
258
  #: src/methods/s3.php:185, src/methods/s3.php:186, src/methods/s3.php:198,
259
  #: src/methods/s3.php:199
260
  msgid "Error: Failed to initialise"
261
+ msgstr "Грешка: Неуспешно инициализиране"
262
 
263
  #: src/methods/ftp.php:148
264
  msgid "upload failed"
265
+ msgstr "неуспешно качване"
266
 
267
  #: src/methods/ftp.php:121, src/methods/ftp.php:289
268
  msgid "login failure"
269
+ msgstr "неуспешно влизане"
270
 
271
  #: src/methods/cloudfiles.php:216, src/methods/cloudfiles.php:217
272
  msgid "error - failed to upload file"
273
+ msgstr "грешка - проблем при качване на файла"
274
 
275
  #: src/methods/cloudfiles.php:209
276
  msgid "error - failed to re-assemble chunks"
277
+ msgstr "грешка - проблем при събиране отново на блокове"
278
 
279
  #: src/methods/cloudfiles.php:101, src/methods/cloudfiles.php:346,
280
  #: src/methods/cloudfiles.php:358
281
  msgid "error - failed to create and access the container"
282
+ msgstr "грешка - проблем при създаване и достъп до контейнера"
283
 
284
  #: src/methods/cloudfiles.php:93, src/methods/cloudfiles.php:97,
285
  #: src/methods/cloudfiles.php:290, src/methods/cloudfiles.php:338,
286
  #: src/methods/cloudfiles.php:342
287
  msgid "authentication failed"
288
+ msgstr "неуспешно удостоверяване"
289
 
290
  #: src/includes/updraftplus-tour.php:188
291
  msgid "Otherwise, you can try UpdraftVault for 1 month for only $1!"
292
+ msgstr "В противен случай можете да опитате UpdraftVault за 1 месец само за $1!"
293
 
294
  #: src/includes/updraftplus-tour.php:187
295
  msgid "If you have a valid Premium license, you get 1GB of storage included."
296
+ msgstr "Ако имате валиден Premium лиценз, получавате 1GB място за съхранение."
297
 
298
  #: src/includes/updraftplus-tour.php:134
299
  msgid "Try UpdraftVault for 1 month for only $1!"
300
+ msgstr "Опитайте UpdraftVault за 1 месец само за $1!"
301
 
302
  #: src/includes/updraftplus-notices.php:181
303
  msgid "manages all your WordPress sites at once from one place"
304
+ msgstr "управлява всички ваши WordPress сайтове едновременно от едно място"
305
 
306
  #: src/includes/updraftplus-notices.php:181
307
  msgid "Many sites?"
308
+ msgstr "Много сайтове?"
309
 
310
  #: src/includes/updraftplus-notices.php:180
311
  msgid "handles updates automatically as you want them"
312
+ msgstr "обработва актуализациите автоматично, както ги искате"
313
 
314
  #: src/includes/updraftplus-notices.php:180
315
  msgid "Save time"
316
+ msgstr "Спестете време"
317
 
318
  #: src/includes/updraftplus-notices.php:179
319
  msgid "backs up automatically when you update plugins, themes or core"
320
+ msgstr "архивира автоматично, когато актуализирате приставки, теми или ядро"
321
 
322
  #: src/includes/updraftplus-notices.php:179
323
  msgid "Be safe"
324
+ msgstr "Бъдете в безопасност"
325
 
326
  #: src/includes/updraftplus-notices.php:178
327
  msgid "Make updates easy with UpdraftPlus"
328
+ msgstr "Направете актуализациите лесни с UpdraftPlus"
329
 
330
  #: src/includes/updraftplus-clone.php:107
331
  msgid "Clone of %s"
332
+ msgstr "Клониране на %s"
333
 
334
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:47
335
  msgid "%d token"
336
  msgid_plural "%d tokens"
337
+ msgstr[0] "%d токен"
338
+ msgstr[1] "%d токени"
339
 
340
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:47
341
  msgid "Each time your clone renews (weekly) it costs %s. You can shut this clone down at the following link:"
342
+ msgstr "Всеки път, когато клонингът се подновява (ежеседмично), това е %s. Можете да изключите този клонинг на следната връзка:"
343
 
344
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:36
345
  msgid "%s from now"
346
+ msgstr "%s от сега"
347
 
348
  #: src/includes/class-wpadmin-commands.php:236
349
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then press Restore to proceed. Otherwise, cancel and correct any problems first."
350
+ msgstr "Архивираните архивни файлове са обработени, но с някои предупреждения. Ако всичко е наред, натиснете \"Възстановяване\", за да продължите. В противен случай, отмени и коригирайте първо всички проблеми."
351
 
352
  #: src/includes/class-wpadmin-commands.php:234
353
  msgid "The backup archive files have been successfully processed. Now press Restore to proceed."
354
+ msgstr "Архивните файлове на архива са обработени успешно. Сега натиснете Възстановяване, за да продължите."
355
 
356
  #: src/includes/class-wpadmin-commands.php:216
357
  msgid "This backup set contains incremental backups of your files; please select the time you wish to restore your files to"
358
+ msgstr "Този архивен комплект съдържа допълнителни резервни копия на вашите файлове; изберете времето, което желаете да възстановите"
359
 
360
  #: src/includes/class-remote-send.php:527
361
  msgid "The setting %s is turned on in your PHP settings. It is deprecated, causes encryption to malfunction, and should be turned off."
362
+ msgstr "Настройката %s е включена в настройките на PHP. Той е отхвърлен, причинява шифроване на неизправност и трябва да бъде изключен."
363
 
364
  #: src/includes/class-filesystem-functions.php:534
365
  msgid "Unzip progress: %d out of %d files"
366
+ msgstr "Разархивирайте напредъка: %d извън %d файла"
367
 
368
  #: src/includes/class-database-utility.php:646
369
  msgid "An error occurred while attempting to retrieve the routine SQL/DDL statement (%s %s)"
370
+ msgstr "Възникна грешка при опит за извличане на рутинната SQL/DDL команда (%s %s)"
371
 
372
  #: src/includes/class-database-utility.php:634
373
  msgid "An error occurred while attempting to retrieve routine status (%s %s)"
374
+ msgstr "Възникна грешка при опит за извличане на рутинно състояние (%s %s)"
375
 
376
  #: src/includes/class-database-utility.php:566
377
  msgid "An error occurred while attempting to check the support of stored routines creation (%s %s)"
378
+ msgstr "Възникна грешка при опит за проверка на поддръжката на съхранените съчетания (%s %s)"
379
 
380
  #: src/includes/class-commands.php:960, src/includes/class-commands.php:962
381
  msgid "N.B. You will be charged one token once the clone is ready. If the clone fails to boot, then no token will be taken."
382
+ msgstr "N.B. Ще бъдете таксувани с един знак, след като клонингът е готов. Ако клонингът не може да зареди, тогава няма да се вземат маркер."
383
 
384
  #: src/includes/class-commands.php:960
385
  msgid "No backup will be started. The creation of your clone should now begin, and your WordPress username and password will be displayed below when ready."
386
+ msgstr "Няма да се стартира никакво архивиране. Създаването на клона трябва да започне сега и вашето потребителско име и парола за WordPress ще се показват по-долу, когато сте готови."
387
 
388
  #: src/class-updraftplus.php:4911
389
  msgid "If you do not want to restore all your tables, then choose some to exclude here."
390
+ msgstr "Ако не искате да възстановите всичките си таблици, изберете някои, за да ги изключите тук."
391
 
392
  #: src/class-updraftplus.php:4645
393
  msgid "You should only proceed if you have checked and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the new %s version."
394
+ msgstr "Трябва да продължите само ако сте проверили и сте сигурни (или сте готови да рискувате), че вашите плъгини/теми/и т.н. са съвместими с новата версия на %s."
395
 
396
  #: src/class-updraftplus.php:4645
397
  msgid "This is older than the server which you are now restoring onto (version %s)."
398
+ msgstr "Това е по-старо от сървъра, на който се възстановява (версия %s)."
399
 
400
  #: src/class-updraftplus.php:3389
401
  msgid "Incomplete"
402
+ msgstr "Недовършено"
403
 
404
  #: src/class-updraftplus.php:2247
405
  msgid "The backup is being aborted for a repeated failure to progress."
406
+ msgstr "Архивирането е прекратено поради повтарящ се неуспех."
407
 
408
  #: src/class-updraftplus.php:630
409
  msgid "Briefly unavailable for scheduled maintenance. Check back in a minute."
410
+ msgstr "За кратко недостъпна за планирано техническо обслужване. Провери след минута."
411
 
412
  #: src/class-updraftplus.php:630
413
  msgid "Under Maintenance"
414
+ msgstr "В Профилактика"
415
 
416
  #: src/central/modules/posts.php:1048
417
  msgid "Expected parameter(s) missing."
418
+ msgstr "Липсващи очаквани параметри."
419
 
420
  #: src/central/modules/posts.php:745, src/central/modules/posts.php:810
421
  msgid "$result->get_error_message"
422
+ msgstr "$result get_error_message"
423
 
424
  #: src/central/modules/posts.php:177
425
  msgid "Default template"
426
+ msgstr "Шаблон по подразбиране"
427
 
428
  #: src/central/modules/media.php:454
429
  msgid "Unattached"
430
+ msgstr "Необвързан"
431
 
432
  #: src/central/modules/media.php:392
433
  msgid "Selected media has been deleted successfully."
434
+ msgstr "Избраният носител е изтрит успешно."
435
 
436
  #: src/central/modules/media.php:389
437
  msgid "Failed to delete selected media."
438
+ msgstr "Неуспешно изтриване на избрания носител."
439
 
440
  #: src/central/modules/media.php:376
441
  msgid "Media has been detached from post."
442
+ msgstr "Медиите са отделени от публикацията."
443
 
444
  #: src/central/modules/media.php:374
445
  msgid "Failed to detach media."
446
+ msgstr "Неуспешно сваляне на носител."
447
 
448
  #: src/central/modules/media.php:366
449
  msgid "Media has been attached to post."
450
+ msgstr "Към пощата е прикачена медия."
451
 
452
  #: src/central/modules/media.php:364
453
  msgid "Failed to attach media."
454
+ msgstr "Неуспешно прикачване на носител."
455
 
456
  #: src/central/commands.php:345
457
  msgid "Unable to install %s. Make sure that the zip file is a valid %s file and a previous version of this %s does not exist. If you wish to overwrite an existing %s then you will have to manually delete it from the %s folder on the remote website and try uploading the file again."
458
+ msgstr "%s не може да се инсталира. Проверете дали zip файлът е валиден %s файл и че предишната версия на този %s не съществува. Ако искате да заместите съществуващ %s, ще трябва ръчно да го изтриете от папката %s на отдалечения уеб сайт и да опитате да качите файла отново."
459
 
460
  #: src/central/commands.php:316
461
  msgid "Unable to activate %s successfully. Make sure that this %s is compatible with your remote WordPress version. WordPress version currently installed in your remote website is %s."
462
+ msgstr "%s не може да бъде активиран успешно. Уверете се, че този %s е съвместим с вашата отдалечена версия на WordPress. Версията на WordPress, инсталирана понастоящем в отдалечения ви уеб сайт, е %s."
463
 
464
  #: src/central/commands.php:274
465
  msgid "Unable to connect to the filesystem"
466
+ msgstr "Не може да се свърже с файловата система"
467
 
468
  #: src/admin.php:5849, src/admin.php:5851
469
  msgid "You have requested saving to remote storage (%s), but without entering any settings for that storage."
470
+ msgstr "Поискахте записване в отдалечено хранилище (%s), но без да въвеждате никакви настройки за това място за съхранение."
471
 
472
  #: src/admin.php:5719
473
  msgid "Clone package:"
474
+ msgstr "Пакет клонинг:"
475
 
476
  #: src/admin.php:5706
477
  msgid "An empty WordPress install"
478
+ msgstr "Празна WordPress инсталация"
479
 
480
  #: src/admin.php:5705
481
  msgid "This current site"
482
+ msgstr "Този текущ сайт"
483
 
484
  #: src/admin.php:5703
485
  msgid "Clone:"
486
+ msgstr "Клонинг:"
487
 
488
  #: src/admin.php:4782,
489
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:98
490
  msgid "3. Restoration"
491
+ msgstr "3. Възстановяване"
492
 
493
  #: src/admin.php:4781,
494
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:97
495
  msgid "2. Verifications"
496
+ msgstr "2. Проверки"
497
 
498
  #: src/admin.php:4780,
499
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:96
500
  msgid "1. Component selection"
501
+ msgstr "1. Избор на компонент"
502
 
503
  #: src/admin.php:4774
504
  msgid "Activity log"
505
+ msgstr "Регистър на дейностите"
506
 
507
  #: src/admin.php:4767
508
  msgid "Cleaning"
509
+ msgstr "Изчистване"
510
 
511
  #: src/admin.php:4761
512
  msgid "Verifying"
513
+ msgstr "Проверка"
514
 
515
  #: src/admin.php:4758
516
  msgid "Restoration progress:"
517
+ msgstr "Напредък на възстановяването:"
518
 
519
  #: src/admin.php:4757
520
  msgid "The restore operation has begun (%s). Do not close this page until it reports itself as having finished."
521
+ msgstr "Операцията по възстановяване е започнала (%s). Не затваряйте тази страница, докато не се отчита като завършена."
522
 
523
  #: src/admin.php:4748,
524
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
525
  msgid "UpdraftPlus Restoration"
526
+ msgstr "Възстановяване на updraftPlus"
527
 
528
  #: src/admin.php:4265
529
  msgid "(%d archive(s) in set, total %s)."
530
+ msgstr "(%d архив(а) в комплект, общо %s)."
531
 
532
  #: src/admin.php:3114
533
  msgid "Learn more about UpdraftCentral"
534
+ msgstr "Научете повече за UpdraftCentral"
535
 
536
  #: src/admin.php:3114
537
  msgid "Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites."
538
+ msgstr "Добавете този сайт към UpdraftCentral (дистанционно, централизирано управление) - безплатно за до 5 сайта."
539
 
540
  #: src/admin.php:2674, src/admin.php:3578, src/admin.php:4696,
541
  #: src/admin.php:4708, src/admin.php:4719, src/admin.php:4948,
542
  #: src/admin.php:5851
543
  msgid "Return to UpdraftPlus configuration"
544
+ msgstr "Връщане към конфигурацията на UpdraftPlus"
545
 
546
  #: src/admin.php:2197
547
  msgid "No suitable backup set (that already contains a full backup of all the requested file component types) was found, to add increments to. Aborting this backup."
548
+ msgstr "Не е намерен подходящ архивен набор (който вече съдържа пълно архивиране на всички типове файлове) за добавяне на стъпки към. Прекратяваме този подкрепление."
549
 
550
  #: src/admin.php:1978
551
  msgid "An error occurred while attempting to delete from '%s'."
552
+ msgstr "Възникна грешка при опит за изтриване от \"%s\"."
553
 
554
  #: src/admin.php:1975
555
  msgid "The file may no longer exist or you may not have permission to delete."
556
+ msgstr "Файлът може вече да не съществува или да нямате разрешение за изтриване."
557
 
558
  #: src/admin.php:1975
559
  msgid "We were unable to delete a file on '%s'."
560
+ msgstr "Не успяхме да изтрием файл на \"%s\"."
561
 
562
  #: src/admin.php:1972
563
  msgid "We were unable to access a file on '%s'."
564
+ msgstr "Не успяхме да осъществим достъп до файл на \"%s\"."
565
 
566
  #: src/admin.php:1969, src/admin.php:1972
567
  msgid "Please check your permissions."
568
+ msgstr "Проверете разрешенията си."
569
 
570
  #: src/admin.php:1969
571
  msgid "We were unable to access the folder/container for '%s'."
572
+ msgstr "Не успяхме да осъществим достъп до папката/контейнера за \"%s\"."
573
 
574
  #: src/admin.php:1966
575
  msgid "Service unavailable."
576
+ msgstr "Услугата не е достъпна."
577
 
578
  #: src/admin.php:1966
579
  msgid "We were unable to access '%s'."
580
+ msgstr "Не успяхме да осъществим достъп до '%s'."
581
 
582
  #: src/admin.php:1963
583
  msgid "Please check your credentials."
584
+ msgstr "Моля, проверете данните си."
585
 
586
  #: src/admin.php:1963
587
  msgid "The authentication failed for '%s'."
588
+ msgstr "Удостоверяването не е успешно за \"%s\"."
589
 
590
  #: src/admin.php:1265
591
  msgid "Connection to your %1$s account was successful. However, we were not able to register this site with %2$s, as there are no available %2$s licences on the account."
592
+ msgstr "Връзката с вашия акаунт %1$s е успешна. Въпреки това, ние не успяхме да регистрираме този сайт с %2$s, тъй като няма налични %2$s лицензи по сметката."
593
 
594
  #: src/admin.php:988
595
  msgid "Please check the error log for more details"
596
+ msgstr "Проверете регистрационния файл за грешки за повече подробности"
597
 
598
  #: src/admin.php:987
599
  msgid "Missing pages:"
600
+ msgstr "Липсващи страници:"
601
 
602
  #: src/admin.php:987
603
  msgid "Attempts by the browser to access some pages have returned a \"not found (404)\" error. This could mean that your .htaccess file has incorrect contents, is missing, or that your webserver is missing an equivalent mechanism."
604
+ msgstr "Опитите на браузъра за достъп до някои страници са върнали грешка \"не е намерен (404)\". Това може да означава, че файлът .htaccess е неправилно съдържание, липсва или че на уеб сървъра ви липсва еквивалентен механизъм."
605
 
606
  #: src/admin.php:986
607
  msgid "Restore error:"
608
+ msgstr "Грешка при възстановяване:"
609
 
610
  #: src/admin.php:985
611
  msgid "Attempts by the browser to contact the website failed."
612
+ msgstr "Опитите на браузъра да се свърже с уеб сайта са неуспешни."
613
 
614
  #: src/admin.php:984
615
  msgid "Preparing backup files"
616
+ msgstr "Подготовка на архивни файлове"
617
 
618
  #: src/admin.php:983
619
  msgid "Downloading backup files if needed"
620
+ msgstr "Изтегляне на архивни файлове, ако е необходимо"
621
 
622
  #: src/admin.php:982
623
  msgid "Begun"
624
+ msgstr "Започнал"
625
 
626
  #: src/admin.php:981, src/admin.php:4768
627
  msgid "Finished"
628
+ msgstr "Завършен"
629
 
630
  #: src/admin.php:979
631
  msgid "Restoring %s1 files out of %s2"
632
+ msgstr "Възстановяване на %s1 файлове от %s2"
633
 
634
  #: src/admin.php:978
635
  msgid "no recent activity; will offer resumption after: %d seconds"
636
+ msgstr "няма скорошна дейност; ще предложи възобновяване след: %d секунди"
637
 
638
  #: src/admin.php:977
639
  msgid "last activity: %d seconds ago"
640
+ msgstr "последна активност: преди %d секунди"
641
 
642
  #: src/admin.php:974
643
  msgid "credentials"
644
+ msgstr "идентификационни данни"
645
 
646
  #: src/admin.php:972
647
  msgid "Try it - 1 month for $1!"
648
+ msgstr "Опитайте - 1 месец за $ 1!"
649
 
650
  #: src/admin.php:968
651
  msgid "Try UpdraftVault!"
652
+ msgstr "Опитайте UpdraftVault!"
653
 
654
  #: src/admin.php:967
655
  msgid "You have not selected a restore path for your chosen backups"
656
+ msgstr "Не сте избрали път за възстановяване за избраните архиви"
657
 
658
  #: src/admin.php:966
659
  msgid "HTML was detected in the response. You may have a security module on your webserver blocking the restoration operation."
660
+ msgstr "В отговор е открит HTML. Може да имате модул за защита на вашия уебсървър, блокиращ операцията за възстановяване."
661
 
662
  #: src/admin.php:965
663
  msgid "File backup options"
664
+ msgstr "Опции за архивиране на файлове"
665
 
666
  #: src/admin.php:944
667
  msgid "Verifying one-time password..."
668
+ msgstr "Проверка на еднократна парола..."
669
 
670
  #: src/admin.php:939
671
  msgid "Login successful; reloading information."
672
+ msgstr "Успешен вход; информация за презареждане."
673
 
674
  #: src/admin.php:937
675
  msgid "Key created. Adding site to UpdraftCentral Cloud."
676
+ msgstr "Създаден е ключ. Добавяне на сайт към UpdraftCentral Cloud."
677
 
678
  #: src/admin.php:936
679
  msgid "Connected. Requesting UpdraftCentral Key."
680
+ msgstr "Свързани. Искам да се допитаме до центъра."
681
 
682
  #: src/admin.php:825, src/admin.php:2046
683
  msgid "Existing backups"
684
+ msgstr "Съществуващи архиви"
685
 
686
  #: src/admin.php:587
687
  msgid "Dismiss notice"
688
+ msgstr "Освобождаване на известието"
689
 
690
  #: src/admin.php:587
691
  msgid "You can test running your site on a different PHP (or WordPress) version using UpdraftClone credits."
692
+ msgstr "Можете да тествате течаща вашия сайт с различна версия на PHP (или WordPress) с помощта на кредитите UpdraftClone."
693
 
694
  #: src/admin.php:575
695
  msgid "dismiss notice"
696
+ msgstr "освобождаване от длъжност"
697
 
698
  #: src/admin.php:575
699
  msgid "go here to learn more"
700
+ msgstr "отидете тук, за да научите повече"
701
 
702
  #: src/admin.php:575
703
  msgid "You can test upgrading your site on an instant copy using UpdraftClone credits"
704
+ msgstr "Можете да тествате надстройването на сайта си на незабавно копие с помощта на Кредити updraftClone"
705
 
706
  #: src/addons/wp-cli.php:889
707
  msgid "There are no incremental backup restore points available."
708
+ msgstr "Няма налични постъпкови точки за възстановяване на резервни копия."
709
 
710
  #: src/addons/wp-cli.php:884
711
  msgid "Timestamp"
712
+ msgstr "Времеви отпечатъци"
713
 
714
  #: src/addons/wp-cli.php:617
715
  msgid "No valid components found, please select different components or a backup set with components that can be restored."
716
+ msgstr "Не са намерени валидни компоненти, изберете различни компоненти или набор от компоненти, които могат да бъдат възстановени."
717
 
718
  #: src/addons/sftp.php:148, src/methods/cloudfiles.php:145,
719
  #: src/methods/cloudfiles.php:187, src/methods/openstack-base.php:81
720
  msgid "Error: Failed to upload"
721
+ msgstr "Грешка: Неуспешно качване"
722
 
723
  #: src/addons/s3-enhanced.php:372
724
  msgid "Middle East (Bahrain)"
725
+ msgstr "Близкия изток (Бахрейн)"
726
 
727
  #: src/addons/s3-enhanced.php:371
728
  msgid "Europe (Stockholm)"
729
+ msgstr "Европа (Стокхолм)"
730
 
731
  #: src/addons/s3-enhanced.php:69
732
  msgid "Read more about server-side encryption"
733
+ msgstr "Прочетете повече за шифроването от страна на сървъра"
734
 
735
  #: src/addons/s3-enhanced.php:64
736
  msgid "Intelligent Tiering"
737
+ msgstr "Интелигентен теринг"
738
 
739
  #: src/addons/morefiles.php:852
740
  msgid "Restore location found for:"
741
+ msgstr "Местоположение за възстановяване, намерено за:"
742
 
743
  #: src/addons/morefiles.php:850
744
  msgid "Restore location does not exist on the filesystem for:"
745
+ msgstr "Местоположението на възстановяване не съществува във файловата система за:"
746
 
747
  #: src/addons/morefiles.php:807
748
  msgid "Please select the more files backups that you wish to restore:"
749
+ msgstr "Моля, изберете повече архивни файлове, които искате да възстановите:"
750
 
751
  #: src/addons/morefiles.php:805
752
  msgid "The original filesystem location for some of the following items was not found. Please select where you want these backups to be restored to."
753
+ msgstr "Не е намерено първоначалното местоположение на файловата система за някои от следните елементи. Изберете къде искате да бъдат възстановени тези архивни копия."
754
 
755
  #: src/addons/moredatabase.php:243
756
  msgid "If you enter a table prefix, then only tables that begin with this prefix will be backed up."
757
+ msgstr "Ако въведете префикс на таблица, само таблиците, които започват с този префикс, ще бъдат архивирани."
758
 
759
  #: src/addons/moredatabase.php:243, src/addons/moredatabase.php:243
760
  msgid "Enter table prefix"
761
+ msgstr "Въведете префикс на таблица"
762
 
763
  #: src/addons/moredatabase.php:242
764
  msgid "Enter database"
765
+ msgstr "Въвеждане на база данни"
766
 
767
  #: src/addons/moredatabase.php:242
768
  msgid "Enter database."
769
+ msgstr "Въведете база данни."
770
 
771
  #: src/addons/moredatabase.php:241
772
  msgid "Enter password"
773
+ msgstr "Въведете парола"
774
 
775
  #: src/addons/moredatabase.php:241
776
  msgid "Enter password."
777
+ msgstr "Въведете парола."
778
 
779
  #: src/addons/moredatabase.php:240
780
  msgid "Enter username"
781
+ msgstr "Въведете потребителско име"
782
 
783
  #: src/addons/moredatabase.php:240
784
  msgid "Enter username."
785
+ msgstr "Въведете потребителско име."
786
 
787
  #: src/addons/moredatabase.php:239
788
  msgid "Enter host"
789
+ msgstr "Въведете хост"
790
 
791
  #: src/addons/moredatabase.php:239
792
  msgid "Enter host."
793
+ msgstr "Въведете хост."
794
 
795
  #: src/addons/incremental.php:294
796
  msgid "No incremental backup of your files is possible, as no suitable existing backup was found to add increments to."
797
+ msgstr "Не е възможно да се направи резервно копие на вашите файлове, тъй като не е намерено подходящо съществуващо резервно копие, за да се добавят стъпки към."
798
 
799
  #: src/addons/incremental.php:292
800
  msgid "N.B. No backup of your database will be taken in an incremental backup; if you want a database backup as well, then take that separately."
801
+ msgstr "N.B. Няма да се извършва резервно копие на базата данни в постъпково резервно копие; ако искате и архивна база данни, след това вземете това отделно."
802
 
803
  #: src/addons/incremental.php:292
804
  msgid "Files changed since the last backup will be added as a new increment in that backup set."
805
+ msgstr "Файловете, променени след последното архивиране, ще бъдат добавени като ново увеличение в този архивен набор."
806
 
807
  #: src/addons/googlecloud.php:1056
808
  msgid "Read more about bucket locations"
809
+ msgstr "Прочетете повече за местоположенията на кофите"
810
 
811
  #: src/addons/googlecloud.php:1043, src/addons/s3-enhanced.php:59
812
  msgid "Read more about storage classes"
813
+ msgstr "Прочетете повече за класовете за съхранение"
814
 
815
  #: src/addons/googlecloud.php:397
816
  msgid "Authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
817
+ msgstr "Удостоверяване не може да продължи напред, защото нещо друго на вашия сайт е го счупи. Опитайте да деактивирате другите си плъгини и да преминете към тема по подразбиране. (По-конкретно търсите компонента, който изпраща изхода (най-вероятно PHP предупреждения/грешки) преди началото на страницата. Изключването на всички настройки за отстраняване на грешки също може да помогне)."
818
 
819
  #: src/addons/googlecloud.php:301, src/methods/googledrive.php:1291
820
  msgid "download: failed: file not found"
821
+ msgstr "изтегляне: не е успешно: файлът не е намерен"
822
 
823
  #: src/addons/googlecloud.php:208, src/addons/googlecloud.php:213,
824
  #: src/methods/cloudfiles.php:128, src/methods/googledrive.php:1166,
825
  #: src/methods/googledrive.php:1171
826
  msgid "Error: Failed to open local file"
827
+ msgstr "Грешка: Не можа да се отвори локален файл"
828
 
829
  #: src/addons/fixtime.php:570
830
  msgid "Start time"
831
+ msgstr "Начален час"
832
 
833
  #: src/addons/fixtime.php:552
834
  msgid "Day to run backups"
835
+ msgstr "Ден за изпълнение на архиви"
836
 
837
  #: src/addons/fixtime.php:310
838
  msgid "Add an additional file retention rule"
839
+ msgstr "Добавяне на допълнително правило за задържане на файлове"
840
 
841
  #: src/addons/fixtime.php:305
842
  msgid "Add an additional database retention rule"
843
+ msgstr "Добавяне на допълнително правило за задържане на база данни"
844
 
845
  #: src/addons/backblaze.php:683, src/addons/backblaze.php:684
846
  msgid "This is needed if, and only if, your application key was a bucket-specific application key (not a master key)"
847
+ msgstr "Това е необходимо, ако и само ако ключът за приложението е специфичен за вас ключ за приложение (а не главен ключ)"
848
 
849
  #: src/addons/backblaze.php:682
850
  msgid "Bucket application key ID"
851
+ msgstr "ИД на клавиша за приложение в паметта"
852
 
853
  #: src/addons/backblaze.php:670
854
  msgid "Master Application Key ID"
855
+ msgstr "ИД на главен номер на приложение"
856
 
857
  #: src/addons/backblaze.php:649
858
  msgid "For help configuring %s, including screenshots, follow this link."
859
+ msgstr "За помощ при конфигуриране на %s, включително екранни снимки, следвайте тази връзка."
860
 
861
  #: src/addons/azure.php:643
862
  msgid "Azure China"
863
+ msgstr "Лазурен Китай"
864
 
865
  #: src/admin.php:5689
866
  msgid "Clone region:"
867
+ msgstr "Клонинг област:"
868
 
869
  #: src/udaddons/updraftplus-addons.php:310,
870
  #: src/udaddons/updraftplus-addons.php:322
871
  msgid "go here"
872
+ msgstr "отидете тук"
873
 
874
  #: src/udaddons/updraftplus-addons.php:310,
875
  #: src/udaddons/updraftplus-addons.php:322
876
  msgid "If you have already renewed, then you need to allocate a licence to this site - %s"
877
+ msgstr "Ако вече сте подновени, трябва да разпределите лиценз на този сайт - %s"
878
 
879
  #: src/addons/onedrive.php:875
880
  msgid "Authentication"
881
+ msgstr "Идентификация"
882
 
883
  #: src/admin.php:932
884
  msgid "You must select at least one remote storage destination to upload this backup set to."
885
+ msgstr "Трябва да изберете поне една отдалечена дестинация за съхранение, за да качите този архивен набор."
886
 
887
  #: src/templates/wp-admin/settings/form-contents.php:351
888
  msgid "Read more about Easy Updates Manager"
889
+ msgstr "Прочетете повече за лесните актуализации мениджър"
890
 
891
  #: src/templates/wp-admin/settings/temporary-clone.php:68
892
  msgid "You can find out more about clone keys here."
893
+ msgstr "Можете да научите повече за клонинг ключове тук."
894
 
895
  #: src/templates/wp-admin/settings/temporary-clone.php:57
896
  msgid "Or, use an UpdraftClone key"
897
+ msgstr "Или използвайте updraftClone ключ"
898
 
899
  #: src/restorer.php:2796
900
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
901
+ msgstr "Намерени са имена на зададени адреси %s, но се променя на %s, както е предложено от WPDB::determine_charset()."
902
 
903
  #: src/admin.php:963
904
  msgid "UpdraftClone key is required."
905
+ msgstr "Изисква се и точен ключ."
906
 
907
  #: src/admin.php:954
908
  msgid "The preparation of the clone data has been aborted."
909
+ msgstr "Подготовката на данните за клонинга е прекратена."
910
 
911
  #: src/addons/azure.php:642
912
  msgid "Azure Government"
913
+ msgstr "Правителството на Azure"
914
 
915
  #: src/templates/wp-admin/settings/form-contents.php:351
916
  msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
917
+ msgstr "Помолете WordPress да актуализира автоматично UpdraftPlus, когато намери налична актуализация."
918
 
919
  #: src/templates/wp-admin/settings/form-contents.php:350
920
  msgid "Automatic updates"
921
+ msgstr "Автоматични актуализации"
922
 
923
  #: src/restorer.php:2485, src/restorer.php:2527
924
  msgid "Your database user does not have permission to drop tables"
925
+ msgstr "Вашата база данни потребител няма разрешение да пуснете таблици"
926
 
927
  #: src/admin.php:3103
928
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
929
+ msgstr "Помолете WordPress да актуализира UpdraftPlus автоматично, когато има налична актуализация"
930
 
931
  #: src/addons/googlecloud.php:998
932
  msgid "You must add the following as the authorized redirect URI (under \"More Options\") when asked"
933
+ msgstr "Трябва да добавите следното като оторизиран URI за пренасочване (под \"Повече опции\"), когато бъдете"
934
 
935
  #: src/addons/googlecloud.php:992
936
  msgid "%s does not allow authorization of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
937
+ msgstr "%s не позволява разрешение на сайтове, хоствани на директни IP адреси. Ще трябва да промените адреса на вашия сайт (%s), преди да можете да използвате %s за съхранение."
938
 
939
  #: src/addons/googlecloud.php:57
940
  msgid "Frankfurt"
941
+ msgstr "Франкфурт"
942
 
943
  #: src/addons/googlecloud.php:56
944
  msgid "London"
945
+ msgstr "Лондон"
946
 
947
  #: src/addons/googlecloud.php:55
948
  msgid "Belgium"
949
+ msgstr "Белгия"
950
 
951
  #: src/addons/googlecloud.php:54
952
  msgid "Sydney"
953
+ msgstr "Сидни"
954
 
955
  #: src/addons/googlecloud.php:53
956
  msgid "Singapore"
957
+ msgstr "Сингапур"
958
 
959
  #: src/addons/googlecloud.php:52
960
  msgid "Tokyo"
961
+ msgstr "Токио"
962
 
963
  #: src/addons/googlecloud.php:51
964
  msgid "Taiwan"
965
+ msgstr "Тайван"
966
 
967
  #: src/addons/googlecloud.php:50
968
  msgid "Oregon"
969
+ msgstr "Орегон"
970
 
971
  #: src/addons/googlecloud.php:49
972
  msgid "North Virginia"
973
+ msgstr "Северна Вирджиния"
974
 
975
  #: src/addons/googlecloud.php:48
976
  msgid "South Carolina"
977
+ msgstr "Южна Каролина"
978
 
979
  #: src/addons/googlecloud.php:47
980
  msgid "Iowa"
981
+ msgstr "Айова"
982
 
983
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
984
  msgid "Confirm change"
985
+ msgstr "Потвърждаване на промяната"
986
 
987
  #: src/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php:3,
988
  #: src/templates/wp-admin/settings/file-backup-exclude.php:18
989
  msgid "Add an exclusion rule"
990
+ msgstr "Добавяне на правило за изключване"
991
 
992
  #: src/templates/wp-admin/settings/exclude-modal.php:59
993
  msgid "Type a file prefix"
994
+ msgstr "Въведете префикс на файл"
995
 
996
  #: src/templates/wp-admin/settings/exclude-modal.php:56,
997
  #: src/templates/wp-admin/settings/exclude-modal.php:58
998
  msgid "All files beginning with these characters"
999
+ msgstr "Всички файлове, започващи с тези знаци"
1000
 
1001
  #: src/templates/wp-admin/settings/exclude-modal.php:47
1002
  msgid "Type an extension like zip"
1003
+ msgstr "Въведете разширение като цип"
1004
 
1005
  #: src/templates/wp-admin/settings/exclude-modal.php:28
1006
  msgid "Select a file/folder which you would like to exclude"
1007
+ msgstr "Изберете файл/папка, който искате да изключите"
1008
 
1009
  #: src/templates/wp-admin/settings/exclude-modal.php:15
1010
  msgid "All files beginning with given characters"
1011
+ msgstr "Всички файлове, започващи с дадени знаци"
1012
 
1013
  #: src/templates/wp-admin/settings/exclude-modal.php:12,
1014
  #: src/templates/wp-admin/settings/exclude-modal.php:44,
1015
  #: src/templates/wp-admin/settings/exclude-modal.php:46
1016
  msgid "All files with this extension"
1017
+ msgstr "Всички файлове с това разширение"
1018
 
1019
  #: src/templates/wp-admin/settings/exclude-modal.php:9,
1020
  #: src/templates/wp-admin/settings/exclude-modal.php:22
1021
  msgid "File/directory"
1022
+ msgstr "Файл/директория"
1023
 
1024
  #: src/templates/wp-admin/settings/exclude-modal.php:6
1025
  msgid "Select a way to exclude files or directories from the backup"
1026
+ msgstr "Изберете начин за изключване на файлове или директории от архива"
1027
 
1028
  #: src/templates/wp-admin/settings/exclude-modal.php:2
1029
  msgid "Exclude files/directories"
1030
+ msgstr "Изключване на файлове/директории"
1031
 
1032
  #: src/includes/updraftclone/temporary-clone-status.php:420
1033
  msgid "To read FAQs/documentation about UpdraftClone, go here."
1034
+ msgstr "За да прочетете често задавани въпроси/документация за UpdraftClone, отидете тук."
1035
 
1036
  #: src/includes/updraftclone/temporary-clone-status.php:419
1037
  msgid "your UpdraftPlus.com account"
1038
+ msgstr "вашия UpdraftPlus.com акаунт"
1039
 
1040
  #: src/includes/updraftclone/temporary-clone-status.php:419
1041
  msgid "You can check the progress here or in %s"
1042
+ msgstr "Можете да проверите хода на процеса тук или в %s"
1043
 
1044
  #: src/includes/updraftclone/temporary-clone-status.php:419
1045
  msgid "Your UpdraftClone is still setting up."
1046
+ msgstr "Вашият UpdraftClone все още се настройва."
1047
 
1048
  #: src/includes/updraftclone/temporary-clone-status.php:376
1049
  msgid "%s archives remain"
1050
+ msgstr "Архивите на %s остават"
1051
 
1052
  #: src/includes/updraftclone/temporary-clone-status.php:376
1053
  msgid "The site data has all been received, and its import has begun."
1054
+ msgstr "Данните за сайта са получени и импортирането му е започнало."
1055
 
1056
  #: src/includes/updraftclone/temporary-clone-status.php:371
1057
  msgid "The sending of the site data has begun. So far %s data archives totalling %s have been received"
1058
+ msgstr "Изпращането на данните за сайта е започнало. Досега %s архивите с данни, сумирани %s, са получени"
1059
 
1060
  #: src/includes/updraftclone/temporary-clone-status.php:367
1061
  msgid "WordPress installed; now awaiting the site data to be sent."
1062
+ msgstr "Инсталиран WordPress; момента се очаква да бъдат изпратени данните за сайта."
1063
 
1064
  #: src/includes/updraftclone/temporary-clone-status.php:94
1065
  msgid "Clone ready"
1066
+ msgstr "Готови клонинги"
1067
 
1068
  #: src/includes/updraftclone/temporary-clone-status.php:86
1069
  msgid "Site data has been deployed"
1070
+ msgstr "Данните за сайта са внедрени"
1071
 
1072
  #: src/includes/updraftclone/temporary-clone-status.php:84,
1073
  #: src/includes/updraftclone/temporary-clone-status.php:347
1074
  msgid "Deploying site data"
1075
+ msgstr "Внедряване на данни за сайтове"
1076
 
1077
  #: src/includes/updraftclone/temporary-clone-status.php:75
1078
  msgid "Site data received"
1079
+ msgstr "Получени данни за сайта"
1080
 
1081
  #: src/includes/updraftclone/temporary-clone-status.php:73,
1082
  #: src/includes/updraftclone/temporary-clone-status.php:344
1083
  msgid "Receiving site data"
1084
+ msgstr "Получаване на данни за сайта"
1085
 
1086
  #: src/includes/updraftclone/temporary-clone-status.php:66,
1087
  #: src/includes/updraftclone/temporary-clone-status.php:341
1088
  msgid "WordPress installed"
1089
+ msgstr "Инсталиран WordPress"
1090
 
1091
  #: src/admin.php:5791
1092
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
1093
+ msgstr "Вашият клонинг е започнал, мрежовата информация все още не е налична, но ще се покаже тук и на вашия updraftplus.com акаунт, след като е готов."
1094
 
1095
  #: src/admin.php:3984
1096
  msgid "Exclude these from"
1097
+ msgstr "Изключване на тези"
1098
 
1099
  #: src/admin.php:962
1100
  msgid "The exclusion rule which you are trying to add already exists"
1101
+ msgstr "Правилото за изключване, което се опитвате да добавите, вече съществува"
1102
 
1103
  #: src/admin.php:961
1104
  msgid "Please enter a valid file name prefix"
1105
+ msgstr "Въведете валиден префикс за име на файл"
1106
 
1107
  #: src/admin.php:960
1108
  msgid "Please enter characters that begin the filename which you would like to exclude"
1109
+ msgstr "Въведете знаците, които започват името на файла, което искате да изключите"
1110
 
1111
  #: src/admin.php:959
1112
  msgid "Please enter a valid file extension"
1113
+ msgstr "Въведете валидно разширение на файла"
1114
 
1115
  #: src/admin.php:958
1116
  msgid "Please enter a file extension, like zip"
1117
+ msgstr "Моля, въведете разширение на файла, като zip"
1118
 
1119
  #: src/admin.php:957
1120
  msgid "Please select a file/folder which you would like to exclude"
1121
+ msgstr "Изберете файл/папка, който искате да изключите"
1122
 
1123
  #: src/admin.php:956
1124
  msgid "Are you sure you want to remove this exclusion rule?"
1125
+ msgstr "Наистина ли искате да премахнете това правило за изключване?"
1126
 
1127
  #: src/templates/wp-admin/advanced/site-info.php:104
1128
  msgid "log results to console"
1129
+ msgstr "вход резултати на конзолата"
1130
 
1131
  #: src/templates/wp-admin/settings/temporary-clone.php:41
1132
  msgid "To create a temporary clone you need credit in your account."
1133
+ msgstr "За да създадете временен клон, ви е необходим кредит в профила си."
1134
 
1135
  #: src/templates/wp-admin/settings/temporary-clone.php:22
1136
  msgid "Read FAQs here."
1137
+ msgstr "Прочетете често задавани въпроси тук."
1138
 
1139
  #: src/methods/dropbox.php:303, src/methods/dropbox.php:318
1140
  msgid "failed to upload file to %s (see log file for more)"
1141
+ msgstr "неуспешно качване на файл в %s (вижте регистрационния файл за повече)"
1142
 
1143
  #: src/admin.php:5787
1144
  msgid "Dashboard:"
1145
+ msgstr "Таблото:"
1146
 
1147
  #: src/admin.php:5786
1148
  msgid "Front page:"
1149
+ msgstr "Заглавна страница:"
1150
 
1151
  #: src/admin.php:5785
1152
  msgid "Your clone has started and will be available at the following URLs once it is ready."
1153
+ msgstr "Вашият клонинг е започнал и ще бъде достъпен на следните URL адреси, след като е готов."
1154
 
1155
  #: src/includes/class-commands.php:917
1156
  msgid "manage"
1157
+ msgstr "управление"
1158
 
1159
  #: src/includes/class-commands.php:917
1160
  msgid "Current clones"
1161
+ msgstr "Текущи клонинги"
1162
 
1163
  #: src/class-updraftplus.php:3307
1164
  msgid "Your clone will now deploy this data to re-create your site."
1165
+ msgstr "Клонингът ви сега ще разположи тези данни, за да създаде отново сайта Ви."
1166
 
1167
  #: src/admin.php:953
1168
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
1169
+ msgstr "Клонингът е бил осигурен и неговите данни са изпратени до него. След като клонингът приключи с внедряването му, ще получите имейл."
1170
 
1171
  #: src/addons/migrator.php:1775
1172
  msgid "Site key"
1173
+ msgstr "Ключ за сайта"
1174
 
1175
  #: src/addons/migrator.php:1766
1176
  msgid "Add a site"
1177
+ msgstr "Добавяне на сайт"
1178
 
1179
  #: src/addons/migrator.php:229, src/addons/migrator.php:1761,
1180
  #: src/addons/migrator.php:1782
1181
  msgid "back"
1182
+ msgstr "обратно"
1183
 
1184
  #: src/addons/migrator.php:195
1185
  msgid "Read this article to see step-by-step how it's done."
1186
+ msgstr "Прочетете тази статия, за да видите стъпка по стъпка как се прави."
1187
 
1188
  #: src/addons/migrator.php:189,
1189
  #: src/templates/wp-admin/settings/migrator-no-migrator.php:6
1190
  msgid "Migrate (create a copy of a site on hosting you control)"
1191
+ msgstr "Мигриране (създаване на копие на сайт на хостинг, който контролирате)"
1192
 
1193
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:47
1194
  msgid "Manage your clones"
1195
+ msgstr "Управление на клонингите"
1196
 
1197
  #: src/methods/dreamobjects.php:20
1198
  msgid "Closing 1st October 2018"
1199
+ msgstr "Заключителния 1 октомври 2018"
1200
 
1201
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:46
1202
  msgid "Your clone will renew on:"
1203
+ msgstr "Вашият клонинг ще се поднови на:"
1204
 
1205
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:32
1206
  msgid "Unable to get renew date"
1207
+ msgstr "Не може да се получи дата на подновяване"
1208
 
1209
  #: src/admin.php:912
1210
  msgid "The backup was aborted"
1211
+ msgstr "Архивирането е прекратено"
1212
 
1213
  #: src/addons/onedrive.php:1205
1214
  msgid "OneDrive Germany"
1215
+ msgstr "OneDrive Германия"
1216
 
1217
  #: src/addons/onedrive.php:1204
1218
  msgid "OneDrive International"
1219
+ msgstr "OneDrive Международен"
1220
 
1221
  #: src/addons/onedrive.php:1201
1222
  msgid "Account type"
1223
+ msgstr "Моят акаунт"
1224
 
1225
  #: src/templates/wp-admin/settings/temporary-clone.php:56,
1226
  #: src/templates/wp-admin/settings/temporary-clone.php:76
1227
  msgid "I accept the UpdraftClone terms and conditions"
1228
+ msgstr "Приемам Общите условия на UpdraftClone"
1229
 
1230
  #: src/templates/wp-admin/settings/temporary-clone.php:56
1231
  msgid "Not got an account? Get one by buying some tokens here."
1232
+ msgstr "Нямате ли сметка? Вземи си, като си купиш жетони тук."
1233
 
1234
  #: src/templates/wp-admin/settings/temporary-clone.php:22,
1235
  #: src/templates/wp-admin/settings/temporary-clone.php:41,
1236
  #: src/templates/wp-admin/settings/temporary-clone.php:54
1237
  msgid "You can buy UpdraftClone tokens from our shop, here."
1238
+ msgstr "Можете да си купите жетони от магазина ни."
1239
 
1240
  #: src/templates/wp-admin/settings/temporary-clone.php:54
1241
  msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
1242
+ msgstr "За да създадете временен клон, ви е необходим: 1) кредит в профила си и 2) за свързване към профила ви по-долу."
1243
 
1244
  #: src/templates/wp-admin/settings/temporary-clone.php:32
1245
  msgid "If you want, test upgrading to a different PHP or WP version."
1246
+ msgstr "Ако искате, тествайте надстройването до различна версия на PHP или WP."
1247
 
1248
  #: src/templates/wp-admin/settings/temporary-clone.php:32
1249
  msgid "Flexible"
1250
+ msgstr "Гъвкави"
1251
 
1252
  #: src/templates/wp-admin/settings/temporary-clone.php:31
1253
  msgid "Takes just the time needed to create a backup and send it."
1254
+ msgstr "Отнема само времето, необходимо за създаване на резервно копие и изпращането му."
1255
 
1256
  #: src/templates/wp-admin/settings/temporary-clone.php:31
1257
  msgid "Fast"
1258
+ msgstr "Бързо"
1259
 
1260
  #: src/templates/wp-admin/settings/temporary-clone.php:30
1261
  msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
1262
+ msgstr "Един VPS (виртуален частен сървър) на клонинг, споделен с никой."
1263
 
1264
  #: src/templates/wp-admin/settings/temporary-clone.php:30
1265
  msgid "Secure"
1266
+ msgstr "Сигурен"
1267
 
1268
  #: src/templates/wp-admin/settings/temporary-clone.php:29
1269
  msgid "Runs on capacity from a leading cloud computing provider."
1270
+ msgstr "Работи на производителност от водещ доставчик на изчислителни облаци."
1271
 
1272
  #: src/templates/wp-admin/settings/temporary-clone.php:29
1273
  msgid "Reliable"
1274
+ msgstr "Надеждни"
1275
 
1276
  #: src/templates/wp-admin/settings/temporary-clone.php:28
1277
  msgid "Press the buttons... UpdraftClone does the work."
1278
+ msgstr "Натиснете бутоните... Въртете в клетвите си."
1279
 
1280
  #: src/templates/wp-admin/settings/temporary-clone.php:28
1281
  msgid "Easy"
1282
+ msgstr "Лесно"
1283
 
1284
  #: src/templates/wp-admin/settings/temporary-clone.php:22
1285
  msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test things on your live site, you can UpdraftClone it, and then throw away your clone when done."
1286
+ msgstr "Временен клонинг е незабавно копие на този сайт, работещ на нашите сървъри. Вместо да тествате неща на живо сайт, можете updraftClone, и след това да изхвърлите клонинга си, когато е направено."
1287
 
1288
  #: src/templates/wp-admin/settings/temporary-clone.php:10,
1289
  #: src/templates/wp-admin/settings/temporary-clone.php:39
1290
  msgid "Create a temporary clone on our servers (UpdraftClone)"
1291
+ msgstr "Създаване на временен клонинг на нашите сървъри (UpdraftClone)"
1292
 
1293
  #: src/templates/wp-admin/settings/tab-addons.php:30
1294
  msgid "WooCommerce plugins"
1295
+ msgstr "Приставки за WooCommerce"
1296
 
1297
  #: src/templates/wp-admin/advanced/wipe-settings.php:14
1298
  msgid "Reset tour"
1299
+ msgstr "Връщане в начално състояние"
1300
 
1301
  #: src/templates/wp-admin/advanced/wipe-settings.php:13
1302
  msgid "Press this button to take a tour of the plugin."
1303
+ msgstr "Натиснете този бутон, за да направите обиколка на плъгина."
1304
 
1305
  #: src/includes/updraftplus-tour.php:255
1306
  msgid "Take Tour"
1307
+ msgstr "Направете обиколка"
1308
 
1309
  #: src/includes/updraftplus-tour.php:205
1310
  msgid "Log in here to enable all the features you have access to."
1311
+ msgstr "Влезте тук, за да активирате всички функции, до които имате достъп."
1312
 
1313
  #: src/includes/updraftplus-tour.php:204
1314
  msgid "Connect to updraftplus.com"
1315
+ msgstr "Свързване с updraftplus.com"
1316
 
1317
  #: src/includes/updraftplus-tour.php:195
1318
  msgid "Thank you for taking the tour. You are now all set to use UpdraftPlus!"
1319
+ msgstr "Благодаря, че сте на турне. Сега сте готови да използвате UpdraftPlus!"
1320
 
1321
  #: src/includes/updraftplus-tour.php:168
1322
  msgctxt "Translators: UpdraftVault is a product name and should not be translated."
1323
  msgid "To get started with UpdraftVault, select one of the options below:"
1324
+ msgstr "За да започнете с UpdraftVault, изберете една от опциите по-долу:"
1325
 
1326
  #: src/includes/updraftplus-tour.php:164,
1327
  #: src/includes/updraftplus-tour.php:197, src/includes/updraftplus-tour.php:208
1328
  msgid "Finish"
1329
+ msgstr "Край"
1330
 
1331
  #: src/includes/updraftplus-tour.php:161
1332
  msgid "UpdraftPlus Premium has many more exciting features!"
1333
+ msgstr "UpdraftPlus Premium има много по-вълнуващи функции!"
1334
 
1335
  #: src/includes/updraftplus-tour.php:160
1336
  msgid "UpdraftPlus Premium and addons"
1337
+ msgstr "UpdraftPlus Премиум и добавки"
1338
 
1339
  #: src/includes/updraftplus-tour.php:158, src/includes/updraftplus-tour.php:202
1340
  msgid "Thank you for taking the tour."
1341
+ msgstr "Благодаря, че преминахте обиколката."
1342
 
1343
  #: src/includes/updraftplus-tour.php:153
1344
  msgid "Do you have a few more WordPress sites you want to backup? If yes you can save hours by controlling all your backups in one place from UpdraftCentral."
1345
+ msgstr "Имате ли още няколко WordPress сайтове, които искате да архивирате? Ако отговорът е \"да\", можете да спестите часове, като контролирате всички ваши архиви на едно място от UpdraftCentral."
1346
 
1347
  #: src/includes/updraftplus-tour.php:152
1348
  msgid "Control all your backups in one place"
1349
+ msgstr "Управлявайте всички архиви на едно място"
1350
 
1351
  #: src/includes/updraftplus-tour.php:147
1352
  msgid "Congratulations, your settings have successfully been saved."
1353
+ msgstr "Поздравления, настройките ви са успешно запазени."
1354
 
1355
  #: src/includes/updraftplus-tour.php:143
1356
  msgid "Press here to save your settings."
1357
+ msgstr "Натиснете тук, за да запазите настройките си."
1358
 
1359
  #: src/includes/updraftplus-tour.php:142, src/includes/updraftplus-tour.php:146
1360
  msgid "Save"
1361
+ msgstr "Запази"
1362
 
1363
  #: src/includes/updraftplus-tour.php:139
1364
  msgid "Look through the other settings here, making any changes you’d like."
1365
+ msgstr "Разгледайте другите настройки тук, като направите промените, които искате."
1366
 
1367
  #: src/includes/updraftplus-tour.php:138
1368
  msgid "More settings"
1369
+ msgstr "Още настройки"
1370
 
1371
  #: src/admin.php:970, src/includes/updraftplus-tour.php:133,
1372
  #: src/includes/updraftplus-tour.php:161,
1373
  #: src/includes/updraftplus-tour.php:185,
1374
  #: src/templates/wp-admin/settings/temporary-clone.php:22
1375
  msgid "Find out more here."
1376
+ msgstr "Научете повече тук."
1377
 
1378
  #: src/admin.php:969, src/includes/updraftplus-tour.php:132,
1379
  #: src/includes/updraftplus-tour.php:184
1380
  msgid "UpdraftVault is our remote storage which works seamlessly with UpdraftPlus."
1381
+ msgstr "UpdraftVault е нашето дистанционно съхранение, което работи безпроблемно с UpdraftPlus."
1382
 
1383
  #: src/includes/updraftplus-tour.php:129, src/includes/updraftplus-tour.php:181
1384
  msgid "Now select a remote storage destination to protect against server-wide threats. If not, your backups remain on the same server as your site."
1385
+ msgstr "Сега изберете отдалечено място за съхранение, за да се предпази от заплахи за целия сървър. Ако не, архивите ви остават на същия сървър като сайта Ви."
1386
 
1387
  #: src/includes/updraftplus-tour.php:125
1388
  msgid "Choose the schedule that you want your backups to run on."
1389
+ msgstr "Изберете графика, на който искате да се изпълняват архивите."
1390
 
1391
  #: src/includes/updraftplus-tour.php:124
1392
  msgid "Choose your backup schedule"
1393
+ msgstr "Изберете графика за архивиране"
1394
 
1395
  #: src/includes/updraftplus-tour.php:120
1396
  msgid "Congratulations! Your first backup is running."
1397
+ msgstr "Поздравления!! Първото ви архивиране е в движение."
1398
 
1399
  #: src/includes/updraftplus-tour.php:116, src/includes/updraftplus-tour.php:121
1400
  msgid "Go to settings"
1401
+ msgstr "Отидете в настройките"
1402
 
1403
  #: src/includes/updraftplus-tour.php:115, src/includes/updraftplus-tour.php:120
1404
  msgctxt "Translators: %s is a bold tag."
1405
  msgid "But to avoid server-wide threats backup regularly to remote cloud storage in %s settings %s"
1406
+ msgstr "Но за да се избягват системните заплахи за целия сървър, редовно се архивират отдалечените облачни устройства за съхранение в %s настройки %s"
1407
 
1408
  #: src/includes/updraftplus-tour.php:115
1409
  msgid "Press here to run a manual backup."
1410
+ msgstr "Натиснете тук, за да стартирате ръчно архивиране."
1411
 
1412
  #: src/includes/updraftplus-tour.php:114, src/includes/updraftplus-tour.php:119
1413
  msgid "Creating your first backup"
1414
+ msgstr "Създаване на първия си архив"
1415
 
1416
  #: src/includes/updraftplus-tour.php:111
1417
  msgid "Select what you want to backup"
1418
+ msgstr "Изберете какво искате да архивирате"
1419
 
1420
  #: src/includes/updraftplus-tour.php:110
1421
  msgid "Manual backup options"
1422
+ msgstr "Опции за ръчно архивиране"
1423
 
1424
  #: src/includes/updraftplus-tour.php:107
1425
  msgctxt "updraftplus"
1426
  msgid "To make a simple backup to your server, press this button. Or to setup regular backups and remote storage, go to %s settings %s"
1427
+ msgstr "За да направите просто резервно копие на вашия сървър, натиснете този бутон. Или за настройка на обикновени архиви и отдалечено хранилище, отидете на %s настройки %s"
1428
 
1429
  #: src/includes/updraftplus-tour.php:106
1430
  msgid "Your first backup"
1431
+ msgstr "Първото ви архивиране"
1432
 
1433
  #: src/includes/updraftplus-tour.php:102
1434
  msgid "Press here to start!"
1435
+ msgstr "Натиснете тук, за да започнете!"
1436
 
1437
  #: src/includes/updraftplus-tour.php:99
1438
  msgid "the world’s most trusted backup plugin!"
1439
+ msgstr "най-надеждният резервен плъгин в света!"
1440
 
1441
  #: src/includes/updraftplus-tour.php:99
1442
  msgid "Welcome to UpdraftPlus"
1443
+ msgstr "Добре дошли в UpdraftPlus"
1444
 
1445
  #: src/includes/updraftplus-tour.php:98
1446
  msgid "UpdraftPlus settings"
1447
+ msgstr "Настройки на UpdraftPlus"
1448
 
1449
  #: src/includes/updraftplus-tour.php:95
1450
  msgid "End tour"
1451
+ msgstr "Край на обиколката"
1452
 
1453
  #: src/includes/updraftplus-tour.php:94
1454
  msgid "Skip this step"
1455
+ msgstr "Пропусни тази стъпка"
1456
 
1457
  #: src/includes/updraftplus-tour.php:93
1458
  msgid "Back"
1459
+ msgstr "Назад"
1460
 
1461
  #: src/includes/class-commands.php:899
1462
  msgid "You can buy more temporary clone tokens here."
1463
+ msgstr "Тук можете да купите още временни клонинг символи."
1464
 
1465
  #: src/admin.php:5741
1466
  msgid "Forbid non-administrators to login to WordPress on your clone"
1467
+ msgstr "Забраняване на администраторите да влизат в WordPress на вашия клонинг"
1468
 
1469
  #: src/templates/wp-admin/settings/temporary-clone.php:35
1470
  msgid "Temporary clones of WordPress subdomain multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
1471
+ msgstr "Временни клонинги на поддомейн на WordPress многостранни инсталации все още не се поддържат. Вижте нашата документация за това как да се извърши нормална миграция тук"
1472
 
1473
  #: src/templates/wp-admin/settings/tab-addons.php:286
1474
  msgid "Premium / Find out more"
1475
+ msgstr "Премиум / Научете повече"
1476
 
1477
  #: src/templates/wp-admin/settings/tab-addons.php:29
1478
  msgid "Other great plugins"
1479
+ msgstr "Други страхотни плъгини"
1480
 
1481
  #: src/includes/class-commands.php:962
1482
  msgid "The creation of your data for creating the clone should now begin."
1483
+ msgstr "Създаването на вашите данни за създаване на клонинга трябва да започне."
1484
 
1485
  #: src/admin.php:5789, src/admin.php:5792
1486
  msgid "You can find your temporary clone information in your updraftplus.com account here."
1487
+ msgstr "Можете да намерите вашата временна информация за клониране в updraftplus.com си акаунт тук."
1488
 
1489
  #: src/class-updraftplus.php:4845
1490
  msgid "Choose a default for each table"
1491
+ msgstr "Изберете по подразбиране за всяка таблица"
1492
 
1493
  #: src/admin.php:3418
1494
  msgid "Sending files to remote site"
1495
+ msgstr "Изпращане на файлове до отдалечен сайт"
1496
 
1497
  #: src/admin.php:3413
1498
  msgid "Clone server being provisioned and booted (can take several minutes)"
1499
+ msgstr "Clone сървър се обезпечава и обувка (може да отнеме няколко минути)"
1500
 
1501
  #: src/admin.php:952
1502
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
1503
+ msgstr "Предупреждение: избрахте по-ниска версия от инсталираната ви версия. Това може да е неуспешно, ако имате компоненти, които са несъвместими с по-стари версии."
1504
 
1505
  #: src/addons/migrator.php:233
1506
  msgid "To import a backup set, go to the \"Existing backups\" section in the \"Backup/Restore\" tab"
1507
+ msgstr "За да импортирате набор от архиви, отидете на раздела \"Съществуващи архиви\" в раздела \"Архивиране/възстановяване\""
1508
 
1509
  #: src/admin.php:2893
1510
  msgid "Backup / Restore"
1511
+ msgstr "Архивиране / възстановяване"
1512
 
1513
  #: src/admin.php:662, src/admin.php:4748
1514
  msgid "Backup"
1515
+ msgstr "Архивиране"
1516
 
1517
  #: src/addons/wp-cli.php:407
1518
  msgid "Latest full backup found; identifier:"
1519
+ msgstr "Последно пълно архивиране е намерено; Идентификатор:"
1520
 
1521
  #: src/addons/wp-cli.php:406
1522
  msgid "No previous full backup found."
1523
+ msgstr "Не е намерено предишно пълно архивиране."
1524
 
1525
  #: src/templates/wp-admin/settings/existing-backups-table.php:93
1526
  msgid "Remote storage: %s"
1527
+ msgstr "Отдалечено хранилище: %s"
1528
 
1529
  #: src/addons/wp-cli.php:101
1530
  msgid "No previous backup found to add an increment to."
1531
+ msgstr "Не е намерено предишно резервно копие, към което да се добави увеличение."
1532
 
1533
  #: src/restorer.php:2802
1534
  msgid "Requested character set (%s) is not present - changing to %s."
1535
+ msgstr "Заявеният набор от знаци (%s) не е наличен - промяна в %s."
1536
 
1537
  #: src/includes/updraftclone/temporary-clone-user-notice.php:32
1538
  msgid "Allow only administrators to log in"
1539
+ msgstr "Позволяване само на администраторите да влизат"
1540
 
1541
  #: src/includes/updraftclone/temporary-clone-user-notice.php:31
1542
  msgid "You can forbid non-admins logins to this cloned site by checking the checkbox below"
1543
+ msgstr "Можете да забраните на не-администраторите влизания в този клониран сайт, като поставите отметка в квадратчето по-долу"
1544
 
1545
  #: src/includes/updraftclone/temporary-clone-user-notice.php:30
1546
  msgid "UpdraftPlus temporary clone user login settings:"
1547
+ msgstr "UpdraftPlus временно настройки за вход в клона потребител:"
1548
 
1549
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:44
1550
  msgid "Welcome to your UpdraftClone (temporary clone)"
1551
+ msgstr "Добре дошли във вашия UpdraftClone (временен клонинг)"
1552
 
1553
  #: src/includes/updraftclone/temporary-clone-dash-notice.php:43
1554
  msgid "Refresh connection"
1555
+ msgstr "Обновяване на връзката"
1556
 
1557
  #: src/addons/reporting.php:509
1558
  msgid "Log all messages to syslog"
1559
+ msgstr "Регистрирай всички съобщения в syslog"
1560
 
1561
  #: src/addons/sftp.php:597, src/addons/sftp.php:599
1562
  msgid "The server's RSA key %s fingerprint: %s."
1563
+ msgstr "RSA ключа на сървъра %s отпечатък: %s."
1564
 
1565
  #: src/addons/sftp.php:593
1566
  msgid "Failed: We are unable to match the fingerprint. However, we were able to log in and move to the indicated directory and successfully create a file in that location."
1567
+ msgstr "Неуспешно: Не можем да съвпаднем с отпечатъка. Въпреки това успяхме да влезете и да се премести в указаната директория и успешно да създадем файл на това място."
1568
 
1569
  #: src/addons/sftp.php:473, src/addons/sftp.php:474
1570
  msgid "MD5 (128-bit) fingerprint, in hex format - should have the same length and general appearance as this (colons optional): 73:51:43:b1:b5:fc:8b:b7:0a:3a:a9:b1:0f:69:73:a8. Using a fingerprint is not essential, but you are not secure against %s if you do not use one"
1571
+ msgstr "MD5 (128-битов) пръстов отпечатък, в хекси формат - трябва да има същата дължина и общ външен вид като този (двоеточие по избор): 73:51:b1:b5:b5:fc:b7:b7:0a:3a:b1:0f:69:73:a8. Използването на пръстов отпечатък не е от съществено значение, но не сте защитени срещу %s, ако не използвате такъв"
1572
 
1573
  #: src/addons/sftp.php:471
1574
  msgid "RSA fingerprint"
1575
+ msgstr "RSA пръстов отпечатък"
1576
 
1577
  #: src/addons/sftp.php:87
1578
  msgid "Fingerprints don't match."
1579
+ msgstr "Отпечатъците не съвпадат."
1580
 
1581
  #: src/templates/wp-admin/settings/migrator-no-migrator.php:17
1582
  msgid "More information here."
1583
+ msgstr "Повече информация тук."
1584
 
1585
  #: src/admin.php:670, src/admin.php:2894
1586
  msgid "Migrate / Clone"
1587
+ msgstr "Мигриране / Клонинг"
1588
 
1589
  #: src/admin.php:4115, src/templates/wp-admin/settings/backupnow-modal.php:60,
1590
  #: src/templates/wp-admin/settings/existing-backups-table.php:77,
1591
  #: src/templates/wp-admin/settings/existing-backups-table.php:80
1592
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
1593
+ msgstr "Позволявайте само ръчно изтриване на този архив (т.е. да го запазите дори ако са уд уцелени ограниченията за задържане)."
1594
 
1595
  #: src/addons/wp-cli.php:767
1596
  msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
1597
+ msgstr "Вие сте дали опцията %1$s. %1$s работи с добавката \"%2$s\". Вземи добавката \"%2$s\": %3$s"
1598
 
1599
  #: src/restorer.php:253
1600
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
1601
+ msgstr "Вашата WordPress инсталация има стари директории от своето състояние, преди да сте възстановени / мигрирали (техническа информация: те са наставени с -old)."
1602
 
1603
  #: src/addons/wp-cli.php:716, src/addons/wp-cli.php:720
1604
  msgid "This is not an incremental backup"
1605
+ msgstr "Това не е постъпково архивиране"
1606
 
1607
  #: src/addons/wp-cli.php:637
1608
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
1609
+ msgstr "Изпълнете тази команда, за да видите регистрационния файл за това възстановяване (необходим за всички заявки за поддръжка)."
1610
 
1611
  #: src/class-updraftplus.php:205
1612
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
1613
+ msgstr "Вече е инсталирана версия на UpdraftPlus. WordPress ще ви позволи да инсталирате новата си версия само след първото де-инсталиране на съществуващата. Това е безопасно - всички настройки и резервни копия ще бъдат запазени. Така че, отидете на страницата \"Плъгини\", де-активира и де-инсталиране UpdraftPlus, и след това опитайте отново."
1614
 
1615
  #: src/admin.php:5724, src/admin.php:5765
1616
  msgid "(current version)"
1617
+ msgstr "(актуална версия)"
1618
 
1619
  #: src/admin.php:3893
1620
  msgid "press here"
1621
+ msgstr "натиснете тук"
1622
 
1623
  #: src/addons/onedrive.php:1166, src/methods/dropbox.php:585,
1624
  #: src/methods/googledrive.php:1343
1625
  msgid "this privacy policy"
1626
+ msgstr "тази политика за поверителност"
1627
 
1628
  #: src/addons/onedrive.php:1166, src/methods/dropbox.php:585,
1629
  #: src/methods/googledrive.php:1343
1630
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
1631
+ msgstr "Моля, прочетете %s за използване на нашето приложение за удостоверяване %s (нито един от вашите архивни данни не е изпратен до нас)."
1632
 
1633
  #: src/addons/incremental.php:363
1634
  msgid "Tell me more"
1635
+ msgstr "Разкажи ми повече"
1636
 
1637
  #: src/addons/incremental.php:351
1638
  msgid "And then add an incremental backup"
1639
+ msgstr "След това добавете и постъпково резервно копие"
1640
 
1641
  #: src/addons/incremental.php:329, src/admin.php:3867, src/updraftplus.php:99
1642
  msgid "Every hour"
1643
+ msgstr "Всеки час"
1644
 
1645
  #: src/includes/class-commands.php:910
1646
  msgid "Create clone"
1647
+ msgstr "Създаване на клон"
1648
 
1649
  #: src/includes/class-commands.php:898, src/includes/class-commands.php:948
1650
  msgid "Available temporary clone tokens:"
1651
+ msgstr "Налични временни клонирани маркери:"
1652
 
1653
  #: src/admin.php:3027, src/includes/class-commands.php:911,
1654
  #: src/includes/class-commands.php:960, src/includes/class-commands.php:962,
1655
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
1656
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
1657
  msgid "Processing"
1658
+ msgstr "Обработка"
1659
 
1660
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:70
1661
  msgid "Connect to UpdraftCentral Cloud"
1662
+ msgstr "Свързване към UpdraftCentral Cloud"
1663
 
1664
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
1665
  msgid "UpdraftPlus.Com account terms and policies"
1666
+ msgstr "UpdraftPlus.Com условия и правила на профила"
1667
 
1668
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
1669
  msgid "I consent to %s"
1670
+ msgstr "Съгласен съм с %s"
1671
 
1672
  #: src/admin.php:3140,
1673
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
1674
  msgid "One Time Password (check your OTP app to get this password)"
1675
+ msgstr "Еднократна парола (проверете вашия OTP приложение, за да получите тази парола)"
1676
 
1677
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:46
1678
  msgid "Login or register with this email address"
1679
+ msgstr "Влезте или се регистрирайте с този имейл адрес"
1680
 
1681
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:34
1682
  msgid "If not, then choose your details and a new account will be registered."
1683
+ msgstr "Ако не, изберете вашите данни и ще се регистрира нов акаунт."
1684
 
1685
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:33
1686
  msgid "If you already have an updraftplus.com account, then enter the details below."
1687
+ msgstr "Ако вече имате updraftplus.com акаунт, въведете данните по-долу."
1688
 
1689
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:31
1690
  msgid "Add this website to your UpdraftCentral Cloud dashboard at updraftplus.com."
1691
+ msgstr "Добавете този уеб сайт към таблото си updraftCentral Cloud на updraftplus.com."
1692
 
1693
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:29
1694
  msgid "Login or register for UpdraftCentral Cloud"
1695
+ msgstr "Влезте или се регистрирайте за UpdraftCentral Cloud"
1696
 
1697
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:20
1698
  msgid "Go here to connect it."
1699
+ msgstr "Отидете тук, за да го свържете."
1700
 
1701
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:20
1702
  msgid "Or if you prefer to self-host, then you can get the self-hosted version here."
1703
+ msgstr "Или ако предпочитате да се самоизточете, тогава можете да получите самостоятелно хоствана версия тук."
1704
 
1705
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:17
1706
  msgid "Connect this site to UpdraftCentral Cloud"
1707
+ msgstr "Свържете този сайт с UpdraftCentral Cloud"
1708
 
1709
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:14
1710
  msgid "If you have a few sites, it'll save hours. It's free to use or try up to 5 sites."
1711
+ msgstr "Ако имате няколко сайта, ще спестите часове. Тя е безплатна за използване или да опитате до 5 сайтове."
1712
 
1713
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:12
1714
  msgid "Backup, update and manage all your WordPress sites from one dashboard"
1715
+ msgstr "Архивиране, актуализиране и управление на всички ваши WordPress сайтове от едно табло"
1716
 
1717
  #: src/includes/updraftcentral.php:21, src/includes/updraftplus-clone.php:21
1718
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
1719
+ msgstr "Възникна грешка при обработката на заявката ви. Сървърът може да е зает или да сте загубили връзката си с интернет по време на заявката. Моля, опитайте отново по-късно."
1720
 
1721
  #: src/admin.php:5652
1722
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
1723
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
1724
+ msgstr[0] "Файлът %s има \"байт за ред\" (BOM) в началото си."
1725
+ msgstr[1] "Файловете %s имат \"байт за ред\" (КИ) в началото си."
1726
 
1727
  #: src/admin.php:950
1728
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
1729
+ msgstr "За бъдещия контрол на всички ваши UpdraftCentral връзки отидете в раздела \"Разширени инструменти\"."
1730
 
1731
  #: src/admin.php:949
1732
  msgid "You can also close this wizard."
1733
+ msgstr "Можете също да затворите този съветник."
1734
 
1735
  #: src/admin.php:948
1736
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
1737
+ msgstr "Трябва да прочетете и приемете правилата за данни и поверителност на UpdraftCentral Cloud, преди да можете да продължите."
1738
 
1739
  #: src/admin.php:947
1740
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
1741
+ msgstr "Моля, изчакайте, докато бъдете пренасочени към UpdraftCentral Cloud."
1742
 
1743
  #: src/admin.php:946
1744
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
1745
+ msgstr "Моля, изчакайте, докато системата генерира и регистрира ключ за криптиране на вашия уеб сайт с UpdraftCentral Cloud."
1746
 
1747
  #: src/admin.php:945
1748
  msgid "Perhaps you would want to login instead."
1749
+ msgstr "Може би вместо това бихте искали да влезете."
1750
 
1751
  #: src/admin.php:943
1752
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
1753
+ msgstr "Проблеми с връзката? Опитайте да използвате алтернативен метод в разширените опции за защита."
1754
 
1755
  #: src/admin.php:942
1756
  msgid "An email is required and needs to be in a valid format."
1757
+ msgstr "Изисква се имейл и трябва да бъде във валиден формат."
1758
 
1759
  #: src/admin.php:941
1760
  msgid "Both email and password fields are required."
1761
+ msgstr "Полетата за имейл и парола са задължителни."
1762
 
1763
  #: src/admin.php:940
1764
  msgid "Registration successful."
1765
+ msgstr "Регистрацията е успешна."
1766
 
1767
  #: src/admin.php:938, src/admin.php:940
1768
  msgid "Please follow this link to open %s in a new window."
1769
+ msgstr "Следвайте тази връзка, за да отворите %s в нов прозорец."
1770
 
1771
  #: src/admin.php:938
1772
  msgid "Login successful."
1773
+ msgstr "Успешен вход."
1774
 
1775
  #: src/admin.php:935,
1776
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
1777
  msgid "UpdraftCentral Cloud"
1778
+ msgstr "Удрафенцентрален облак"
1779
 
1780
  #: src/admin.php:504
1781
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
1782
+ msgstr "Наистина ли искате да отхвърлите всички UpdraftPlus новини завинаги?"
1783
 
1784
  #: src/admin.php:503
1785
  msgid "Dismiss all UpdraftPlus news"
1786
+ msgstr "Освободете всички UpdraftPlus новини"
1787
 
1788
  #: src/admin.php:502
1789
  msgid "UpdraftPlus News"
1790
+ msgstr "Новини за UpdraftPlus"
1791
 
1792
  #: src/addons/wp-cli.php:532
1793
  msgid "Migration key created:"
1794
+ msgstr "Създаден е ключ за мигриране:"
1795
 
1796
  #: src/addons/wp-cli.php:522
1797
  msgid "Missing parameters"
1798
+ msgstr "Липсващи параметри"
1799
 
1800
  #: src/addons/azure.php:641
1801
  msgid "Azure Germany"
1802
+ msgstr "Azure Германия"
1803
 
1804
  #: src/addons/azure.php:640
1805
  msgid "Azure Global"
1806
+ msgstr "Azure Глобално"
1807
 
1808
  #: src/addons/azure.php:637
1809
  msgid "Azure Account"
1810
+ msgstr "Акаунт в Azure"
1811
 
1812
  #: src/admin.php:934
1813
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
1814
+ msgstr "Задайте името на папката Microsoft OneDrive, а не URL адреса."
1815
 
1816
  #: src/templates/wp-admin/settings/upload-backups-modal.php:4
1817
  msgid "Select the remote storage destinations you want to upload this backup set to"
1818
+ msgstr "Изберете отдалечените дестинации за съхранение, за които искате да качите този архивен"
1819
 
1820
  #: src/templates/wp-admin/settings/upload-backups-modal.php:3
1821
  msgid "Upload backup"
1822
+ msgstr "Качване на резервно копие"
1823
 
1824
  #: src/admin.php:4392
1825
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
1826
+ msgstr "След като натиснете този бутон, можете да изберете къде да качите архива от списък с вашите текущо запазени местоположения за отдалечено съхранение"
1827
 
1828
  #: src/admin.php:933
1829
  msgid "(already uploaded)"
1830
+ msgstr "(вече е качен)"
1831
 
1832
  #: src/admin.php:931
1833
  msgid "Local backup upload has started; please check the log file to see the upload progress"
1834
+ msgstr "Стартира локалното качване на резервно копие; моля, проверете регистрационния файл, за да видите напредъка на качването"
1835
 
1836
  #: src/admin.php:852, src/admin.php:4392
1837
  msgid "Upload"
1838
+ msgstr "Качи"
1839
 
1840
  #: src/addons/reporting.php:543, src/admin.php:802
1841
  msgid "Only email the database backup"
1842
+ msgstr "Само архивиране на базата данни"
1843
 
1844
  #: src/addons/reporting.php:543
1845
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
1846
+ msgstr "Имайте предвид, че пощенски сървъри са склонни да имат ограничения за размера; обикновено около %s МБ; архивиране по-големи от всички ограничения вероятно няма да пристигне като резултат UpdraftPlus ще изпрати само архивиране на бази данни на електронна поща."
1847
 
1848
  #: src/addons/reporting.php:543
1849
  msgid "Use this option to only send database backups when sending to email, and skip other components."
1850
+ msgstr "Използвайте тази опция, за да изпращате архиви на бази данни само при изпращане на имейл и да пропуснете други компоненти."
1851
 
1852
  #: src/addons/migrator.php:275
1853
  msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
1854
+ msgstr "За допълнителни резервни копия ще можете да избирате кои стъпки да възстановите на по-късен етап."
1855
 
1856
  #: src/addons/incremental.php:92
1857
  msgid "Increments exist at: %s"
1858
+ msgstr "Стъпки съществуват в: %s"
1859
 
1860
  #: src/addons/incremental.php:90, src/addons/incremental.php:92
1861
  msgid "(latest increment: %s)"
1862
+ msgstr "(последна стъпка: %s)"
1863
 
1864
  #: src/addons/s3-enhanced.php:369
1865
  msgid "Europe (Paris)"
1866
+ msgstr "Европа (Париж)"
1867
 
1868
  #: src/templates/wp-admin/settings/tab-addons.php:193
1869
  msgid "WP-CLI commands to take, list and delete backups."
1870
+ msgstr "WP-CLI команди, за да вземе, списък и изтриване на резервни копия."
1871
 
1872
  #: src/templates/wp-admin/settings/tab-addons.php:192
1873
  msgid "WP-CLI support"
1874
+ msgstr "Поддръжка на WP-CLI"
1875
 
1876
  #: src/templates/wp-admin/settings/tab-addons.php:191
1877
  msgid "WP CLI"
1878
+ msgstr "WP CLI"
1879
 
1880
  #: src/addons/wp-cli.php:266
1881
  msgid "Invalid Job Id"
1882
+ msgstr "Невалиден ИД на задание"
1883
 
1884
  #: src/addons/wp-cli.php:205
1885
  msgid "Backup has been started successfully. You can see the last log message by running the following command: \"%s\""
1886
+ msgstr "Архивирането е стартирано успешно. Можете да видите последното съобщение за регистриране, като изпълните следната команда: \"%s\""
1887
 
1888
  #: src/addons/wp-cli.php:195
1889
  msgid "Recently started backup job id: %s"
1890
+ msgstr "Последно започна иД на заданието за архивиране: %s"
1891
 
1892
  #: src/addons/wp-cli.php:91, src/addons/wp-cli.php:488,
1893
  #: src/addons/wp-cli.php:612, src/addons/wp-cli.php:696,
1894
  #: src/addons/wp-cli.php:719
1895
  msgid "The given value for the '%s' option is not valid"
1896
+ msgstr "Дадената стойност за опцията '%s' е невалидна"
1897
 
1898
  #: src/addons/migrator.php:1785
1899
  msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
1900
+ msgstr "За да разрешите на друг сайт да изпрати архив на този сайт, създайте ключ по-долу. Когато се покаже клавиша, след това натиснете бутона \"Мигриране\" на другия (изпращане) сайт и копирайте и поставете ключа там (в раздела \"Изпрати резервно копие на друг сайт\")."
1901
 
1902
  #: src/addons/migrator.php:1771
1903
  msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
1904
+ msgstr "Така че, за да получите ключа за отдалечения сайт, отворете прозореца \"Мигриране на сайта\" на този сайт и отидете на този раздел."
1905
 
1906
  #: src/addons/migrator.php:1771
1907
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1908
+ msgstr "Ключовете за сайт са създадени в раздела \"получи резервно копие от отдалечен сайт\"."
1909
 
1910
  #: src/includes/class-remote-send.php:517
1911
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1912
+ msgstr "Трябва да копирате и поставите този ключ на изпращащия сайт сега - той не може да бъде показан отново."
1913
 
1914
  #: src/templates/wp-admin/advanced/lock-admin.php:14
1915
  msgid "This functionality has been disabled by the site administrator."
1916
+ msgstr "Тази функция е забранена от администратора на сайта."
1917
 
1918
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
1919
  msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
1920
+ msgstr "Добавете стил и лесно с красиви плъзгачи на приставката за плъзгача #1 WP"
1921
 
1922
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
1923
  msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
1924
+ msgstr "е високо ефективен начин за управление, актуализиране и архивиране на множество сайтове от едно място."
1925
 
1926
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
1927
  msgid "Super-charge and secure your WordPress site with our other top plugins:"
1928
+ msgstr "Супер зареждане и защита на вашия WordPress сайт с нашите други топ плъгини:"
1929
 
1930
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
1931
  msgid "Thank you for installing UpdraftPlus!"
1932
+ msgstr "Благодаря ви за инсталирането UpdraftPlus!"
1933
 
1934
  #: src/includes/class-remote-send.php:634
1935
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1936
+ msgstr "Няма ключове, които да позволяват на отдалечени сайтове да изпращат резервни данни тук все още са създадени."
1937
 
1938
  #: src/restorer.php:736
1939
  msgid "Failed to read from the working directory."
1940
+ msgstr "Неуспешно четене от работната директория."
1941
 
1942
  #: src/restorer.php:735
1943
  msgid "Failed to find a manifest file in the backup."
1944
+ msgstr "Неуспешно откриване на манифест в архива."
1945
 
1946
  #: src/restorer.php:734
1947
  msgid "Failed to read the manifest file from backup."
1948
+ msgstr "Неуспешно четене на манифеста от архива."
1949
 
1950
  #: src/addons/morefiles.php:81
1951
  msgid "(None configured)"
1952
+ msgstr "(Няма конфигуриран)"
1953
 
1954
  #: src/methods/backup-module.php:541
1955
  msgid "Ensure you are logged into the correct account before continuing."
1956
+ msgstr "Уверете се, че сте влезли в правилния акаунт, преди да продължите."
1957
 
1958
  #: src/admin.php:5297
1959
  msgid "Remote storage method and instance id are required for authentication."
1960
+ msgstr "Метод за отдалечено съхранение и идентификатор на екземпляр са необходими за удостоверяване."
1961
 
1962
  #: src/admin.php:5293
1963
  msgid "authentication error"
1964
+ msgstr "грешка при удостоверяване"
1965
 
1966
  #: src/addons/multisite.php:44, src/options.php:38
1967
  msgid "(Nothing has been logged yet)"
1968
+ msgstr "(Нищо не е записано още)"
1969
 
1970
  #: src/addons/migrator.php:439
1971
  msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
1972
+ msgstr "ще искате да използвате по-долу търсене и да замени място на сайта в базата данни (мигриране) за търсене/замяна на адреса на сайта."
1973
 
1974
  #: src/addons/migrator.php:428
1975
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use below search and replace so that the non-https links are automatically replaced."
1976
+ msgstr "Докато вашият уеб хостинг позволява http (т.е. не-SSL достъп) или ще препраща заявки към https (което е почти винаги случаят), това не е проблем. Ако това все още не е настроено, трябва да го настроите или да използвате търсене и замяна по-долу, така че връзките, които не са https, да се заменят автоматично."
1977
 
1978
  #: src/addons/migrator.php:417
1979
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use below search and replace to search/replace the site address so that the site can be visited without https."
1980
+ msgstr "Това възстановяване ще работи, ако все още имате SSL сертификат (т.е. може да използва https) за достъп до сайта. В противен случай ще искате да използвате търсене по-долу и да замените за търсене/замяна на адреса на сайта, така че сайтът да може да бъде посетен без https."
1981
 
1982
  #: src/addons/morestorage.php:104
1983
  msgid "Add another %s account..."
1984
+ msgstr "Добавяне на друг %s акаунт..."
1985
 
1986
  #: src/addons/morestorage.php:83
1987
  msgid "Delete these settings"
1988
+ msgstr "Изтриване на тези настройки"
1989
 
1990
  #: src/addons/morestorage.php:81, src/admin.php:930
1991
  msgid "Currently disabled"
1992
+ msgstr "В момента е забранена"
1993
 
1994
  #: src/addons/morestorage.php:81, src/admin.php:929
1995
  msgid "Currently enabled"
1996
+ msgstr "В момента е активиран"
1997
 
1998
  #: src/templates/wp-admin/settings/tab-addons.php:48
1999
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
2000
+ msgstr "Ако сте закупили от UpdraftPlus.Com, следвайте тази връзка към инструкциите за инсталиране (особено стъпка 1)."
2001
 
2002
  #: src/templates/wp-admin/settings/tab-addons.php:48
2003
  msgid "You are currently using the free version of UpdraftPlus."
2004
+ msgstr "В момента използвате безплатната версия на UpdraftPlus."
2005
 
2006
  #: src/templates/wp-admin/settings/tab-addons.php:38
2007
  msgid "Get it here"
2008
+ msgstr "Вземи го тук"
2009
 
2010
  #: src/methods/stream-base.php:330
2011
  msgid "Download chunk size successfully changed to %d"
2012
+ msgstr "Размерът на файла за изтегляне успешно е променен на %d"
2013
 
2014
  #: src/methods/stream-base.php:327
2015
  msgid "Download chunk size failed to change to %d"
2016
+ msgstr "Изтеглянето на размера на блока не може да се промени в %d"
2017
 
2018
  #: src/includes/updraftplus-notices.php:203
2019
  msgid "With Metaslider, you can easily add style and flare with beautifully-designed sliders."
2020
+ msgstr "С Metaslider лесно можете да добавите стил и да се разклатете с красиви плъзгачи."
2021
 
2022
  #: src/templates/wp-admin/settings/existing-backups-table.php:91
2023
  msgid "remote site"
2024
+ msgstr "отдалечен сайт"
2025
 
2026
  #: src/addons/backblaze.php:495
2027
  msgid "Invalid bucket name"
2028
+ msgstr "Невалидно име на кофа"
2029
 
2030
  #: src/restorer.php:2297
2031
  msgid "Requested table collation (%1$s) is not present - changing to %2$s."
2032
  msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
2033
+ msgstr[0] "Исканото сравнение на таблицата (%1$s) не е налично - промяна на %2$s."
2034
+ msgstr[1] "Заявените сравнения на таблици (%1$s) не са налични - промяна на %2$s."
2035
 
2036
  #: src/class-updraftplus.php:4822
2037
  msgid "Your chosen replacement collation"
2038
+ msgstr "Вашият избор на замяна"
2039
 
2040
  #: src/class-updraftplus.php:4799
2041
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
2042
+ msgstr "Вместо това можете да изберете друго подходящо сравнение и да продължите с възстановяването (на свой собствен риск)."
2043
 
2044
  #: src/class-updraftplus.php:4799
2045
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
2046
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
2047
+ msgstr[0] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа сравнението (%s), използвано в базата данни, която се опитвате да импортирате."
2048
+ msgstr[1] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа множество сравнения (%s), използвани в базата данни, която се опитвате да импортирате."
2049
 
2050
  #: src/addons/migrator.php:561
2051
  msgid "Database restoration options:"
2052
+ msgstr "Опции за възстановяване на база данни:"
2053
 
2054
  #: src/addons/migrator.php:406
2055
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
2056
+ msgstr "Това изглежда като миграция (архивирането е от сайт с различен адрес/URL адрес, %s)."
2057
 
2058
  #: src/addons/azure.php:633
2059
  msgid "%s Prefix"
2060
+ msgstr "Префикс %s"
2061
 
2062
  #: src/addons/azure.php:628
2063
  msgid "%s Container"
2064
+ msgstr "%s Контейнер"
2065
 
2066
  #: src/addons/azure.php:623
2067
  msgid "%s Key"
2068
+ msgstr "%s Ключ"
2069
 
2070
  #: src/addons/azure.php:619
2071
  msgid "%s Account Name"
2072
+ msgstr "%s Име на акаунт"
2073
 
2074
  #: src/addons/googlecloud.php:695
2075
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
2076
+ msgstr "Но не бяха намерени никакви настройки на %s. Попълнете всички полета в настройките на %s и запишете настройките."
2077
 
2078
  #: src/addons/googlecloud.php:693
2079
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
2080
+ msgstr "Но не е дефинирана кофа, така че архивирането може да не е завършено. Въведете име на кофа в настройките на %s и запишете настройките."
2081
 
2082
  #: src/central/bootstrap.php:541
2083
  msgid "URL for the site of your UpdraftCentral dashboard"
2084
+ msgstr "URL адрес за сайта на вашето updraftCentral табло"
2085
 
2086
  #: src/central/bootstrap.php:539
2087
  msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
2088
+ msgstr "Въведете URL адреса, където се намира инсталирането на UpdraftCentral:"
2089
 
2090
  #: src/central/bootstrap.php:536
2091
  msgid "A website where you have installed %s"
2092
+ msgstr "Уеб сайт, в който сте инсталирали %s"
2093
 
2094
  #: src/central/bootstrap.php:534
2095
  msgid "Self-hosted dashboard"
2096
+ msgstr "Самостоятелно хоства табло"
2097
 
2098
  #: src/central/bootstrap.php:263
2099
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
2100
+ msgstr "На вашия UpdraftCentral табло трябва да натиснете бутона \"Добавяне на сайт\" след това поставете клавиша в полето за въвеждане."
2101
 
2102
  #: src/addons/migrator.php:957
2103
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
2104
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
2105
+ msgstr[0] "Вашият .htaccess има стара препратка към сайт на номер %s. Трябва да го премахнете ръчно."
2106
+ msgstr[1] "Вашият .htaccess има стари препратки към сайтове за номерата на редове %s. Трябва да ги премахнете ръчно."
2107
 
2108
  #: src/restorer.php:2238
2109
  msgid "Requested table character set (%s) is not present - changing to %s."
2110
+ msgstr "Исканият набор от знаци на таблицата (%s) липсва - промяна в %s."
2111
 
2112
  #: src/class-updraftplus.php:4775
2113
  msgid "Your chosen character set to use instead:"
2114
+ msgstr "Вместо това избраният от вас набор от знаци:"
2115
 
2116
  #: src/class-updraftplus.php:4765
2117
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
2118
+ msgstr "Вместо това можете да изберете друг подходящ набор от символи и да продължите с възстановяването на свой собствен риск."
2119
 
2120
  #: src/class-updraftplus.php:4765
2121
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
2122
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
2123
+ msgstr[0] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа набора от знаци (%s), който се опитвате да импортирате."
2124
+ msgstr[1] "Сървърът за база данни, на който работи този сайт на WordPress, не поддържа наборите от знаци (%s), които се опитвате да импортирате."
2125
 
2126
  #: src/central/bootstrap.php:625
2127
  msgid "Create another key"
2129
 
2130
  #: src/central/bootstrap.php:548
2131
  msgid "UpdraftCentral dashboard connection details"
2132
+ msgstr "UpdraftCentral детайли на връзката на таблото"
2133
 
2134
  #: src/central/bootstrap.php:542, src/includes/updraftplus-tour.php:92,
2135
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:100
2138
 
2139
  #: src/central/bootstrap.php:528
2140
  msgid "an account"
2141
+ msgstr "сметка"
2142
 
2143
  #: src/central/bootstrap.php:528
2144
  msgid "i.e. if you have %s there"
2145
+ msgstr "т.е. ако имате %s там"
2146
 
2147
  #: src/central/bootstrap.php:517
2148
  msgid "Connect this site to an UpdraftCentral dashboard found at..."
2149
+ msgstr "Свържете този сайт с updraftCentral таблото, намерено на..."
2150
 
2151
  #: src/central/bootstrap.php:486
2152
  msgid "Manage existing keys (%d)..."
2153
+ msgstr "Управление на съществуващите ключове (%d)..."
2154
 
2155
  #: src/central/bootstrap.php:436
2156
  msgid "There are no UpdraftCentral dashboards that can currently control this site."
2157
+ msgstr "Няма updraftCentral табла, които в момента могат да контролират този сайт."
2158
 
2159
  #: src/central/bootstrap.php:265
2160
  msgid "You can now control this site via your UpdraftCentral dashboard at %s."
2161
+ msgstr "Сега можете да управлявате този сайт чрез таблото updraftCentral на %s."
2162
 
2163
  #: src/central/bootstrap.php:263
2164
  msgid "Detailed instructions for this can be found at %s"
2165
+ msgstr "Подробни инструкции за това могат да бъдат намерени на %s"
2166
 
2167
  #: src/central/bootstrap.php:263
2168
  msgid "You now need to copy the key below and enter it at your %s."
2169
+ msgstr "Сега трябва да копирате ключа по-долу и да го въведете на вашия %s."
2170
 
2171
  #: src/admin.php:924
2172
  msgid "Please enter a valid URL e.g http://example.com"
2174
 
2175
  #: src/addons/backblaze.php:691
2176
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
2177
+ msgstr "Има ограничения, за които са валидни имената на пътя. Интервалите не са позволени."
2178
 
2179
  #: src/addons/backblaze.php:690
2180
  msgid "some/path"
2181
+ msgstr "някои / път"
2182
 
2183
  #: src/addons/backblaze.php:690
2184
  msgid "Bucket name"
2185
+ msgstr "Име на кофа"
2186
 
2187
  #: src/addons/backblaze.php:689
2188
  msgid "Backup path"
2189
+ msgstr "Път до архива"
2190
 
2191
  #: src/addons/backblaze.php:677
2192
  msgid "Application key"
2193
+ msgstr "Ключ за приложение"
2194
 
2195
  #: src/addons/backblaze.php:672, src/addons/backblaze.php:672
2196
  msgid "here"
2197
+ msgstr "тук"
2198
 
2199
  #: src/addons/backblaze.php:672
2200
  msgid "Get these settings from %s, or sign up %s."
2201
+ msgstr "Получаване на тези настройки от %s или регистриране на %s."
2202
 
2203
  #: src/addons/backblaze.php:473
2204
  msgid "Account Key"
2210
 
2211
  #: src/class-updraftplus.php:4597
2212
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
2213
+ msgstr "Докато вашият уеб хостинг позволява http (т.е. не-SSL достъп) или ще препраща заявки към https (което е почти винаги случаят), това не е проблем. Ако това все още не е настроено, трябва да го настроите или да използвате %s, така че връзките, които не са https, да бъдат автоматично заменяни."
2214
 
2215
  #: src/class-updraftplus.php:4595, src/class-updraftplus.php:4597
2216
  msgid "the migrator add-on"
2217
+ msgstr "добавката за мигратора"
2218
 
2219
  #: src/class-updraftplus.php:4595
2220
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
2221
+ msgstr "Това възстановяване ще работи, ако все още имате SSL сертификат (т.е. може да използва https) за достъп до сайта. В противен случай ще искате да използвате %s за търсене/заместване на адреса на сайта, така че сайтът да може да бъде посетен без https."
2222
 
2223
  #: src/class-updraftplus.php:4593
2224
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
2225
+ msgstr "Този архивен набор е на този сайт, но по време на архивирането, който сте използвали %s, докато сайтът сега използва %s."
2226
 
2227
  #: src/class-updraftplus.php:4588
2228
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
2229
+ msgstr "Адресът на уеб сайта в архивния набор (%s) е малко по-различен от този на сайта (%s). Това не се очаква да бъде проблем за възстановяване на сайта, стига посещенията на предишния адрес все още да стигнат до сайта."
2230
 
2231
  #: src/methods/googledrive.php:1412
2232
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
2233
+ msgstr "За да де-оторизиране UpdraftPlus (всички сайтове) да получите достъп до google диск, следвайте този линк към настройките на профила си в Google."
2234
 
2235
  #: src/methods/backup-module.php:595
2236
  msgid "Follow this link to remove these settings for %s."
2237
+ msgstr "Следвайте тази връзка, за да премахнете тези настройки за %s."
2238
 
2239
  #: src/admin.php:903
2240
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
2241
+ msgstr "Грешка: Избраният файл е повреден. Моля, изберете валиден файл за експортиране на UpdraftPlus."
2242
 
2243
  #: src/addons/migrator.php:1545, src/backup.php:478, src/backup.php:2052,
2244
  #: src/class-updraftplus.php:2310, src/class-updraftplus.php:2375,
2245
  #: src/includes/class-storage-methods-interface.php:375, src/restorer.php:589
2246
  msgid "A PHP fatal error (%s) has occurred: %s"
2247
+ msgstr "Възникнала е PHP фатална грешка (%s): %s"
2248
 
2249
  #: src/addons/migrator.php:1538, src/backup.php:472, src/backup.php:2043,
2250
  #: src/class-updraftplus.php:2301, src/class-updraftplus.php:2368,
2251
  #: src/includes/class-storage-methods-interface.php:366, src/restorer.php:575
2252
  msgid "A PHP exception (%s) has occurred: %s"
2253
+ msgstr "Възникна изключение от PHP (%s): %s"
2254
 
2255
  #: src/addons/googlecloud.php:54
2256
  msgid "South-east Australia"
2257
+ msgstr "Югоизточна Австралия"
2258
 
2259
  #: src/addons/googlecloud.php:53
2260
  msgid "South-east Asia"
2261
+ msgstr "Югоизточна Азия"
2262
 
2263
  #: src/addons/googlecloud.php:52
2264
  msgid "North-east Asia"
2265
+ msgstr "Североизточна Азия"
2266
 
2267
  #: src/udaddons/options.php:118
2268
  msgid "Your web server's version of PHP is too old (%s) - UpdraftPlus expects at least %s. You can try it, but don't be surprised if it does not work. To fix this problem, contact your web hosting company"
2269
+ msgstr "Версията на PHP на вашия уеб сървър е твърде стара (%s) - UpdraftPlus очаква поне %s. Можете да опитате, но не се изненадвайте, ако не работи. За да решите този проблем, свържете се с уеб хостинг компанията"
2270
 
2271
  #: src/templates/wp-admin/settings/take-backup.php:83
2272
  msgid "Remote storage authentication"
2273
+ msgstr "Удостоверяване за отдалечено съхранение"
2274
 
2275
  #: src/templates/wp-admin/settings/tab-addons.php:165
2276
  msgid "Network and multisite"
2277
+ msgstr "Мрежа и многостранна"
2278
 
2279
  #: src/templates/wp-admin/settings/tab-addons.php:100
2280
  msgid "Migrator"
2281
+ msgstr "Мигретор"
2282
 
2283
  #: src/templates/wp-admin/settings/tab-addons.php:217
2284
  msgid "Additional storage"
2285
+ msgstr "Допълнително съхранение"
2286
 
2287
  #: src/includes/updraftplus-tour.php:128,
2288
  #: src/includes/updraftplus-tour.php:180,
2289
  #: src/templates/wp-admin/settings/tab-addons.php:87
2290
  msgid "Remote storage"
2291
+ msgstr "Отдалечено съхранение"
2292
 
2293
  #: src/templates/wp-admin/settings/form-contents.php:192
2294
  msgid "Select Files"
2295
+ msgstr "Избиране на файл"
2296
 
2297
  #: src/methods/cloudfiles.php:479
2298
  msgid "Rackspace Storage Region"
2299
+ msgstr "Област за съхранение на rackspace"
2300
 
2301
  #: src/admin.php:5499
2302
  msgid "Value"
2303
+ msgstr "Стойност"
2304
 
2305
  #: src/addons/sftp.php:800
2306
  msgid "Encrypted login failed; trying non-encrypted"
2307
+ msgstr "Неуспешна шифрована регистрация; опитване на нешифровани"
2308
 
2309
  #: src/addons/azure.php:591
2310
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
2311
+ msgstr "Трябва да добавите следното като URI на оторизирано пренасочване в конзолата на Azure (под \"Настройки на API\")"
2312
 
2313
  #: src/methods/cloudfiles.php:498
2314
  msgid "Cloud Files"
2315
+ msgstr "Файлове в облака"
2316
 
2317
  #: src/admin.php:5245
2318
  msgid "Your settings failed to save. Please refresh the settings page and try again"
2319
+ msgstr "Настройките ви не можаха да бъдат записани. Обновете страницата с настройки и опитайте отново"
2320
 
2321
  #: src/admin.php:5204
2322
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
2323
+ msgstr "UpdraftPlus изглежда, че са били актуализирани до версия (%s), която е различна от версията, изпълнявана при зареждането на тази страница с настройки. Заредете отново страницата с настройки, преди да опитате да запишете настройките."
2324
 
2325
  #: src/methods/updraftvault.php:71,
2326
  #: src/templates/wp-admin/settings/tab-addons.php:282
2327
  msgid "UpdraftVault"
2328
+ msgstr "UpdraftVault"
2329
 
2330
  #: src/includes/class-wpadmin-commands.php:604
2331
  msgid "archive"
2332
+ msgstr "архив"
2333
 
2334
  #: src/includes/class-wpadmin-commands.php:595
2335
  msgid "Extra database"
2336
+ msgstr "Допълнителна база данни"
2337
 
2338
  #: src/admin.php:4258
2339
  msgid "Press here to download or browse"
2340
+ msgstr "Натиснете тук, за да изтеглите или прегледате"
2341
 
2342
  #: src/admin.php:1384, src/admin.php:1394
2343
  msgid "Error: invalid path"
2344
+ msgstr "Грешка: невалиден път"
2345
 
2346
  #: src/admin.php:1175
2347
  msgid "An error occurred when fetching storage module options: "
2348
+ msgstr "Възникна грешка при извличане на опциите на модула за съхранение: "
2349
 
2350
  #: src/admin.php:921
2351
  msgid "Loading log file"
2352
+ msgstr "Зареждане на регистрационен файл"
2353
 
2354
  #: src/admin.php:920
2355
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
2356
+ msgstr "Файлът не може да бъде изтеглен. Това може да е причинено от изчакване. Най-добре би било да изтеглите ципа на компютъра си."
2357
 
2358
  #: src/admin.php:919
2359
  msgid "Search"
2360
+ msgstr "Търсене"
2361
 
2362
  #: src/admin.php:918
2363
  msgid "Select a file to view information about it"
2364
+ msgstr "Изберете файл, за да видите информация за него"
2365
 
2366
  #: src/admin.php:917
2367
  msgid "Browsing zip file"
2368
+ msgstr "Преглеждане на zip файл"
2369
 
2370
  #: src/admin.php:884
2371
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
2372
+ msgstr "С UpdraftPlus Premium можете директно да изтеглите отделни файлове от тук."
2373
 
2374
  #: src/admin.php:830
2375
  msgid "Browse contents"
2376
+ msgstr "Преглед на съдържанието"
2377
 
2378
  #: src/restorer.php:2614
2379
  msgid "Skipped tables:"
2380
+ msgstr "Пропуснати таблици:"
2381
 
2382
  #: src/class-updraftplus.php:4901
2383
  msgid "This database backup has the following WordPress tables excluded: %s"
2384
+ msgstr "Това архивиране на база данни е изключено от следните таблици на WordPress: %s"
2385
 
2386
  #: src/templates/wp-admin/settings/backupnow-modal.php:8
2387
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
2388
+ msgstr "С UpdraftPlus Premium можете да изберете да архивирате не WordPress таблици, архивиране само определени таблици и архивиране на други бази данни също."
2389
 
2390
  #: src/templates/wp-admin/settings/backupnow-modal.php:8
2391
  msgid "All WordPress tables will be backed up."
2392
+ msgstr "Всички WordPress таблици ще бъдат архивирани."
2393
 
2394
  #: src/admin.php:916
2395
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
2396
+ msgstr "Допълнителна информация може да бъде намерена в браузъра JavaScript конзолата и сървър PHP грешки регистрационни файлове."
2397
 
2398
  #: src/admin.php:916
2399
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
2400
+ msgstr "Че се опитвате да качите zip файл, създаден преди това от UpdraftPlus."
2401
 
2402
  #: src/admin.php:916
2403
  msgid "The available memory on the server."
2404
+ msgstr "Наличната памет на сървъра."
2405
 
2406
  #: src/admin.php:916
2407
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
2408
+ msgstr "Всички настройки във файла .htaccess или web.config, които засягат максималния размер на качване или публикуване."
2409
 
2410
  #: src/admin.php:916
2411
  msgid "The file failed to upload. Please check the following:"
2412
+ msgstr "Файлът не успя да качи. Моля, проверете следното:"
2413
 
2414
  #: src/admin.php:915
2415
  msgid "HTTP code:"
2416
+ msgstr "HTTP код:"
2417
 
2418
  #: src/addons/wp-cli.php:110, src/admin.php:807
2419
  msgid "You have chosen to backup a database, but no tables have been selected"
2420
+ msgstr "Избрахте да архивирате база данни, но не са избрани таблици"
2421
 
2422
  #: src/addons/moredatabase.php:413
2423
  msgid "tables"
2424
+ msgstr "таблици"
2425
 
2426
  #: src/addons/moredatabase.php:412
2427
  msgid "WordPress database"
2428
+ msgstr "База данни на WordPress"
2429
 
2430
  #: src/addons/moredatabase.php:405
2431
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
2432
+ msgstr "Трябва да архивирате всички таблици, освен ако не сте експерт в рамките на базата данни на WordPress."
2433
 
2434
  #: src/templates/wp-admin/settings/tab-addons.php:316,
2435
  #: src/templates/wp-admin/settings/tab-addons.php:316,
2438
  #: src/templates/wp-admin/settings/tab-addons.php:326,
2439
  #: src/templates/wp-admin/settings/tab-addons.php:326
2440
  msgid "Find out more"
2441
+ msgstr "Намери още"
2442
 
2443
  #: src/templates/wp-admin/settings/tab-addons.php:285
2444
  msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
2445
+ msgstr "UpdraftPlus има своя собствена вградена опция за съхранение, осигуряваща нулева караница начин да изтеглите, съхранявате и управлявате всички ваши архиви от едно място."
2446
 
2447
  #: src/templates/wp-admin/advanced/wipe-settings.php:12
2448
  msgid "UpdraftPlus Tour"
2449
+ msgstr "UpdraftPlus Обиколка"
2450
 
2451
  #: src/templates/wp-admin/settings/tab-addons.php:271
2452
  msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
2453
+ msgstr "Заключване на достъпа до UpdraftPlus чрез парола, така че да изберете кои администратор потребители могат да имат достъп до архиви."
2454
 
2455
  #: src/templates/wp-admin/settings/tab-addons.php:258
2456
  msgid "Some backup plugins can't restore a backup, so Premium allows you to restore backups from other plugins."
2457
+ msgstr "Някои резервни плъгини не могат да възстановят резервно копие, така че Premium ви позволява да възстановите архиви от други плъгини."
2458
 
2459
  #: src/templates/wp-admin/settings/tab-addons.php:256,
2460
  #: src/templates/wp-admin/settings/tab-addons.php:257
2461
  msgid "Importer"
2462
+ msgstr "Вносител"
2463
 
2464
  #: src/templates/wp-admin/settings/tab-addons.php:245
2465
  msgid "Tidy things up for clients and remove all adverts for our other products."
2466
+ msgstr "Почиствайте нещата за клиенти и премахнете всички реклами за другите ни продукти."
2467
 
2468
  #: src/templates/wp-admin/settings/tab-addons.php:243,
2469
  #: src/templates/wp-admin/settings/tab-addons.php:244
2470
  msgid "No ads"
2471
+ msgstr "Няма реклами"
2472
 
2473
  #: src/templates/wp-admin/settings/tab-addons.php:232
2474
  msgid "Sophisticated reporting and emailing capabilities."
2475
+ msgstr "Усъвършенствани възможности за отчитане и изпращане на имейли."
2476
 
2477
  #: src/templates/wp-admin/settings/tab-addons.php:206
2478
  msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
2479
+ msgstr "Шифроване на вашите поверителни бази данни (напр. информация за клиенти или пароли); Архивиране на външни бази данни също."
2480
 
2481
  #: src/templates/wp-admin/settings/tab-addons.php:204,
2482
  #: src/templates/wp-admin/settings/tab-addons.php:205
2483
  msgid "More database options"
2484
+ msgstr "Още опции за база данни"
2485
 
2486
  #: src/templates/wp-admin/settings/tab-addons.php:180
2487
  msgid "Set exact times to create or delete backups."
2488
+ msgstr "Задайте точното време, за да създавате или изтривате архиви."
2489
 
2490
  #: src/templates/wp-admin/settings/tab-addons.php:178,
2491
  #: src/templates/wp-admin/settings/tab-addons.php:179
2492
  msgid "Backup time and scheduling"
2493
+ msgstr "Време за архивиране и планиране"
2494
 
2495
  #: src/templates/wp-admin/settings/tab-addons.php:167
2496
  msgid "Backup WordPress multisites (i.e, networks), securely."
2497
+ msgstr "Архивиране на WordPress многосайтове (т.е. мрежи), сигурно."
2498
 
2499
  #: src/templates/wp-admin/settings/tab-addons.php:166
2500
  msgid "Network / multisite"
2501
+ msgstr "Мрежа / многостранна"
2502
 
2503
  #: src/templates/wp-admin/settings/tab-addons.php:154
2504
  msgid "Backup WordPress core and non-WP files and databases."
2505
+ msgstr "Архивиране на WordPress ядро и не WP файлове и бази данни."
2506
 
2507
  #: src/templates/wp-admin/settings/tab-addons.php:141
2508
  msgid "Automatically backs up your website before any updates to plugins, themes and WordPress core."
2509
+ msgstr "Автоматично архивира уебсайта ви, преди да се актуализират плъгини, теми и wordPress ядро."
2510
 
2511
  #: src/templates/wp-admin/settings/tab-addons.php:139,
2512
  #: src/templates/wp-admin/settings/tab-addons.php:140
2513
  msgid "Pre-update backups"
2514
+ msgstr "Архиви за предварителна актуализация"
2515
 
2516
  #: src/templates/wp-admin/settings/tab-addons.php:128
2517
  msgid "Provides expert help and support from the developers whenever you need it."
2518
+ msgstr "Предоставя експертна помощ и поддръжка от разработчиците, когато имате нужда от нея."
2519
 
2520
  #: src/templates/wp-admin/settings/tab-addons.php:127
2521
  msgid "Fast, personal support"
2522
+ msgstr "Бърза, лична поддръжка"
2523
 
2524
  #: src/templates/wp-admin/settings/tab-addons.php:102
2525
  msgid "UpdraftPlus Migrator clones your WordPress site and moves it to a new domain directly and simply."
2526
+ msgstr "UpdraftPlus Migrator клонира вашия WordPress сайт и го премества директно и просто към нов домейн."
2527
 
2528
  #: src/templates/wp-admin/settings/tab-addons.php:101
2529
  msgid "Cloning and migration"
2530
+ msgstr "Клониране и миграция"
2531
 
2532
  #: src/templates/wp-admin/settings/tab-addons.php:219
2533
  msgid "Get enhanced versions of the free remote storage options (Dropbox, Google Drive & S3) and even more remote storage options like OneDrive, SFTP, Azure, WebDAV and more with UpdraftPlus Premium."
2534
+ msgstr "Получете подобрени версии на опциите за безплатно отдалечено съхранение (Dropbox, Google Drive &quot;&quot; &quot;S3&quot; и още повече опции за отдалечено съхранение като OneDrive, SFTP, Azure, WebDAV и други с UpdraftPlus Premium."
2535
 
2536
  #: src/templates/wp-admin/settings/tab-addons.php:218
2537
  msgid "Additional and enhanced remote storage locations"
2538
+ msgstr "Допълнителни и подобрени местоположения за отдалечено съхранение"
2539
 
2540
  #: src/templates/wp-admin/settings/tab-addons.php:89
2541
  msgid "To avoid server-wide risks, always backup to remote cloud storage. UpdraftPlus free includes Dropbox, Google Drive, Amazon S3, Rackspace and more."
2542
+ msgstr "За да избегнете рисковете за целия сървър, винаги архивирайте отдалечено хранилище в облака. UpdraftPlus безплатно включва Dropbox, Google Диск, Amazon S3, Rackspace и др."
2543
 
2544
  #: src/templates/wp-admin/settings/tab-addons.php:88
2545
  msgid "Backup to remote storage locations"
2546
+ msgstr "Архивиране в отдалечени места за съхранение"
2547
 
2548
  #: src/templates/wp-admin/settings/tab-addons.php:82,
2549
  #: src/templates/wp-admin/settings/tab-addons.php:303
2550
  msgid "Upgrade now"
2551
+ msgstr "Надстройте сега"
2552
 
2553
  #: src/templates/wp-admin/settings/tab-addons.php:79,
2554
  #: src/templates/wp-admin/settings/tab-addons.php:300
2555
  msgid "Installed"
2556
+ msgstr "Инсталирано"
2557
 
2558
  #: src/templates/wp-admin/settings/tab-addons.php:69
2559
  msgid "Free"
2560
+ msgstr "Безплатно"
2561
 
2562
  #: src/admin.php:501
2563
  msgid "UpdraftPlus"
2564
+ msgstr "UpdraftPlus"
2565
 
2566
  #: src/templates/wp-admin/settings/form-contents.php:216
2567
  msgid "Recommended: optimize your database with WP-Optimize."
2568
+ msgstr "Препоръчва се: оптимизирайте базата си данни с WP-Optimize."
2569
 
2570
  #: src/templates/wp-admin/notices/bottom-notice.php:31,
2571
  #: src/templates/wp-admin/notices/horizontal-notice.php:42,
2572
  #: src/templates/wp-admin/notices/report-plain.php:33,
2573
  #: src/templates/wp-admin/notices/report.php:30
2574
  msgid "Read more"
2575
+ msgstr "Прочети повече"
2576
 
2577
  #: src/includes/updraftplus-notices.php:192
2578
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
2579
+ msgstr "След като архивирате вашата база данни, ви препоръчваме да инсталирате нашата WP-Optimize плъгин, за да го рационализират за по-добра ефективност на уебсайта."
2580
 
2581
  #: src/addons/morefiles.php:899
2582
  msgid "Please choose a file or directory"
2583
+ msgstr "Изберете файл или директория"
2584
 
2585
  #: src/addons/morefiles.php:877
2586
  msgid "Confirm"
2587
+ msgstr "Потвърждаване"
2588
 
2589
  #: src/addons/morefiles.php:872, src/addons/morefiles.php:872
2590
  msgid "Go up a directory"
2591
+ msgstr "Качи се на директория"
2592
 
2593
  #: src/addons/morefiles.php:869
2594
  msgid "Add directory..."
2595
+ msgstr "Добавяне на директория..."
2596
 
2597
  #: src/addons/morefiles.php:310, src/addons/morefiles.php:855,
2598
  #: src/addons/morefiles.php:897,
2599
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
2600
  msgid "Edit"
2601
+ msgstr "Редактирай"
2602
 
2603
  #: src/addons/morefiles.php:295
2604
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
2605
+ msgstr "Ако го използвате, изберете път от дървото на директориите по-долу и след това натиснете потвърждаване на избора."
2606
 
2607
  #: src/addons/s3-enhanced.php:370
2608
  msgid "Europe (Frankfurt)"
2609
+ msgstr "Европа (Франкфурт)"
2610
 
2611
  #: src/addons/s3-enhanced.php:368
2612
  msgid "Europe (London)"
2613
+ msgstr "Европа (Лондон)"
2614
 
2615
  #: src/addons/s3-enhanced.php:367
2616
  msgid "Europe (Ireland)"
2617
+ msgstr "Европа (Ирландия)"
2618
 
2619
  #: src/includes/updraftplus-tour.php:150,
2620
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
2621
  msgid "UpdraftCentral"
2622
+ msgstr "UpdraftCentral"
2623
 
2624
  #: src/templates/wp-admin/notices/autobackup-notice.php:6,
2625
  #: src/templates/wp-admin/notices/horizontal-notice.php:6
2626
  msgid "notice image"
2627
+ msgstr "забележите изображение"
2628
 
2629
  #: src/templates/wp-admin/notices/bottom-notice.php:29,
2630
  #: src/templates/wp-admin/notices/horizontal-notice.php:40,
2631
  #: src/templates/wp-admin/notices/report-plain.php:31,
2632
  #: src/templates/wp-admin/notices/report.php:28
2633
  msgid "Go there"
2634
+ msgstr "Върни се назад"
2635
 
2636
  #: src/templates/wp-admin/notices/bottom-notice.php:27,
2637
  #: src/templates/wp-admin/notices/horizontal-notice.php:38,
2638
  #: src/templates/wp-admin/notices/report-plain.php:29,
2639
  #: src/templates/wp-admin/notices/report.php:26
2640
  msgid "Sign up"
2641
+ msgstr "Регистрация"
2642
 
2643
  #: src/templates/wp-admin/notices/bottom-notice.php:25,
2644
  #: src/templates/wp-admin/notices/horizontal-notice.php:36,
2645
  #: src/templates/wp-admin/notices/report-plain.php:27,
2646
  #: src/templates/wp-admin/notices/report.php:24
2647
  msgid "Get Premium"
2648
+ msgstr "Вземи премиум"
2649
 
2650
  #: src/templates/wp-admin/notices/bottom-notice.php:23,
2651
  #: src/templates/wp-admin/notices/horizontal-notice.php:34,
2652
  #: src/templates/wp-admin/notices/report-plain.php:25,
2653
  #: src/templates/wp-admin/notices/report.php:22
2654
  msgid "Review UpdraftPlus"
2655
+ msgstr "Преглед на UpdraftPlus"
2656
 
2657
  #: src/templates/wp-admin/notices/bottom-notice.php:21,
2658
  #: src/templates/wp-admin/notices/horizontal-notice.php:32,
2659
  #: src/templates/wp-admin/notices/report-plain.php:23,
2660
  #: src/templates/wp-admin/notices/report.php:20
2661
  msgid "Get UpdraftCentral"
2662
+ msgstr "Вземи updraftCentral"
2663
 
2664
  #: src/templates/wp-admin/advanced/site-info.php:91
2665
  msgid "Apache modules"
2666
+ msgstr "Модули Apache"
2667
 
2668
  #: src/includes/updraftplus-notices.php:269
2669
  msgid "Summer sale - 20% off UpdraftPlus Premium until July 31st"
2670
+ msgstr "Лятна разпродажба - 20% отстъпка За Премиум UpdraftPlus Premium до 31 юли"
2671
 
2672
  #: src/includes/updraftplus-notices.php:255
2673
  msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
2674
+ msgstr "Пролетна разпродажба - 20% отстъпка UpdraftPlus Premium до 30 април"
2675
 
2676
  #: src/includes/updraftplus-notices.php:241
2677
  msgid "Happy New Year - 20% off UpdraftPlus Premium until January 14th"
2678
+ msgstr "Честита Нова Година - 20% отстъпка UpdraftPlus Premium до 14 януари"
2679
 
2680
  #: src/includes/updraftplus-notices.php:227
2681
  msgid "Christmas sale - 20% off UpdraftPlus Premium until December 25th"
2682
+ msgstr "Коледна разпродажба - 20% отстъпка UpdraftPlus Premium до 25 декември"
2683
 
2684
  #: src/includes/updraftplus-notices.php:214,
2685
  #: src/includes/updraftplus-notices.php:228,
2687
  #: src/includes/updraftplus-notices.php:256,
2688
  #: src/includes/updraftplus-notices.php:270
2689
  msgid "To benefit, use this discount code:"
2690
+ msgstr "За да се възползвате, използвайте този код за отстъпка:"
2691
 
2692
  #: src/includes/updraftplus-notices.php:213
2693
  msgid "Black Friday - 20% off UpdraftPlus Premium until November 30th"
2694
+ msgstr "Черен петък - 20% отстъпка за UpdraftPlus Premium до 30 ноември"
2695
 
2696
  #: src/includes/updraftplus-notices.php:158,
2697
  #: src/includes/updraftplus-notices.php:168
2698
  msgid "UpdraftPlus Blog - get up-to-date news and offers"
2699
+ msgstr "Блог updraftPlus - актуални новини и оферти"
2700
 
2701
  #: src/includes/updraftplus-notices.php:147
2702
  msgid "UpdraftPlus Newsletter"
2703
+ msgstr "Бюлетин на UpdraftPlus"
2704
 
2705
  #: src/includes/updraftplus-notices.php:108
2706
  msgid "Control all your WordPress installations from one place using UpdraftCentral remote site management!"
2707
+ msgstr "Контролирайте всички ваши Инсталации на WordPress от едно място, като използвате UpdraftCentral дистанционно управление на сайта!"
2708
 
2709
  #: src/includes/updraftplus-notices.php:107
2710
  msgid "Do you use UpdraftPlus on multiple sites?"
2711
+ msgstr "Използвате updraftPlus на няколко сайта?"
2712
 
2713
  #: src/includes/updraftplus-notices.php:98
2714
  msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
2715
+ msgstr "UpdraftCentral е високо ефективен начин за управление, актуализиране и архивиране на множество уеб сайтове от едно място."
2716
 
2717
  #: src/includes/updraftplus-notices.php:97
2718
  msgid "Introducing UpdraftCentral"
2719
+ msgstr "Въвеждане на UpdraftCentral"
2720
 
2721
  #: src/includes/updraftplus-notices.php:87
2722
  msgid "Copy your site to another domain directly. Includes find-and-replace tool for database references."
2723
+ msgstr "Копирайте сайта си директно в друг домейн. Включва инструмент за намиране и замяна за препратки към бази данни."
2724
 
2725
  #: src/includes/updraftplus-notices.php:86
2726
  msgid "easily migrate or clone your site in minutes"
2727
+ msgstr "лесно мигриране или клониране на вашия сайт за минути"
2728
 
2729
  #: src/includes/updraftplus-notices.php:76
2730
  msgid "Add SFTP to send your data securely, lock settings and encrypt your database backups for extra security."
2731
+ msgstr "Добавете SFTP, за да изпращате данните си сигурно, да заключвате настройките и да шифровате архивите на базата данни за допълнителна сигурност."
2732
 
2733
  #: src/includes/updraftplus-notices.php:75
2734
  msgid "secure your backups"
2735
+ msgstr "защита на резервните копия"
2736
 
2737
  #: src/includes/updraftplus-notices.php:65
2738
  msgid "Secure multisite installation, advanced reporting and much more."
2739
+ msgstr "Защитено многостранно инсталиране, разширено докладване и много други."
2740
 
2741
  #: src/includes/updraftplus-notices.php:64
2742
  msgid "advanced options"
2743
+ msgstr "показване на разширените опции"
2744
 
2745
  #: src/includes/updraftplus-notices.php:54
2746
  msgid "Enhanced storage options for Dropbox, Google Drive and S3. Plus many more options."
2747
+ msgstr "Подобрени опции за съхранение за Dropbox, Google Диск и S3. Плюс още много опции."
2748
 
2749
  #: src/includes/updraftplus-notices.php:53
2750
  msgid "enhanced remote storage options"
2751
+ msgstr "разширени опции за отдалечено съхранение"
2752
 
2753
  #: src/includes/updraftplus-notices.php:43
2754
  msgid "The ultimately secure and convenient place to store your backups."
2755
+ msgstr "Най-сигурна и удобна място за съхранение на вашите архиви."
2756
 
2757
  #: src/includes/updraftplus-notices.php:42,
2758
  #: src/templates/wp-admin/settings/tab-addons.php:283
2759
  msgid "UpdraftVault storage"
2760
+ msgstr "UpdraftVault съхранение"
2761
 
2762
  #: src/includes/updraftplus-notices.php:32
2763
  msgid "Enjoy professional, fast, and friendly help whenever you need it with Premium."
2764
+ msgstr "Насладете се на професионална, бърза и приятелска помощ, когато имате нужда от нея с Premium."
2765
 
2766
  #: src/includes/updraftplus-notices.php:30,
2767
  #: src/includes/updraftplus-notices.php:41,
2770
  #: src/includes/updraftplus-notices.php:74,
2771
  #: src/includes/updraftplus-notices.php:85
2772
  msgid "UpdraftPlus Premium:"
2773
+ msgstr "UpdraftPlus Премиум:"
2774
 
2775
  #: src/templates/wp-admin/settings/migrator-no-migrator.php:13
2776
  msgid "Then, try out our \"Migrator\" add-on which can perform a direct site-to-site migration. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
2777
+ msgstr "След това опитайте нашата \"Migrator\" добавка, която може да изпълнява директна миграция сайт към сайт. След като го използвате веднъж, ще сте запазили цената на покупката в сравнение с времето, необходимо за копиране на даден сайт на ръка."
2778
 
2779
  #: src/addons/s3-enhanced.php:366
2780
  msgid "Canada Central"
2781
+ msgstr "Централна канада"
2782
 
2783
  #: src/templates/wp-admin/advanced/tools-menu.php:22
2784
  msgid "Site size"
2785
+ msgstr "Размер на сайта"
2786
 
2787
  #: src/templates/wp-admin/advanced/tools-menu.php:10,
2788
  #: src/templates/wp-admin/settings/tab-addons.php:269,
2789
  #: src/templates/wp-admin/settings/tab-addons.php:270
2790
  msgid "Lock settings"
2791
+ msgstr "Заключване на настройките"
2792
 
2793
  #: src/templates/wp-admin/advanced/site-info.php:5,
2794
  #: src/templates/wp-admin/advanced/tools-menu.php:6
2795
  msgid "Site information"
2796
+ msgstr "Информация за сайта"
2797
 
2798
  #: src/templates/wp-admin/advanced/search-replace.php:9
2799
  msgid "For the ability to migrate websites, upgrade to UpdraftPlus Premium."
2800
+ msgstr "За възможността да мигрирате уеб сайтове, преминете към UpdraftPlus Premium."
2801
 
2802
  #: src/templates/wp-admin/advanced/export-settings.php:15
2803
  msgid "Import settings"
2804
+ msgstr "Импортиране на настройки"
2805
 
2806
  #: src/templates/wp-admin/advanced/export-settings.php:12
2807
  msgid "You can also import previously-exported settings. This tool will replace all your saved settings."
2808
+ msgstr "Можете също да импортирате предварително експортирани настройки. Този инструмент ще замести всички ваши запазени настройки."
2809
 
2810
  #: src/templates/wp-admin/advanced/export-settings.php:9
2811
  msgid "Export settings"
2812
+ msgstr "Експортиране на настройки"
2813
 
2814
  #: src/templates/wp-admin/advanced/export-settings.php:7
2815
  msgid "including any passwords"
2816
+ msgstr "включително всички пароли"
2817
 
2818
  #: src/templates/wp-admin/advanced/export-settings.php:7
2819
  msgid "Here, you can export your UpdraftPlus settings (%s), either for using on another site, or to keep as a backup. This tool will export what is currently in the settings tab."
2820
+ msgstr "Тук можете да експортирате настройките си updraftPlus (%s), или за използване на друг сайт, или да запазите като архив. Този инструмент ще експортира това, което е в раздела за настройки."
2821
 
2822
  #: src/templates/wp-admin/advanced/export-settings.php:5,
2823
  #: src/templates/wp-admin/advanced/tools-menu.php:26
2824
  msgid "Export / import settings"
2825
+ msgstr "Експортиране / импортиране на настройки"
2826
 
2827
  #: src/restorer.php:2299
2828
  msgid "Processing table (%s)"
2829
+ msgstr "Таблица за обработка (%s)"
2830
 
2831
  #: src/restorer.php:2581
2832
  msgid "Backup of: %s"
2833
+ msgstr "Архивиране на: %s"
2834
 
2835
  #: src/methods/googledrive.php:357
2836
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2837
+ msgstr "Клиентът е изтрит от конзолата за api на Google Диск. Моля, създайте нов проект в Google Диск и отново се свържете с UpdraftPlus."
2838
 
2839
  #: src/methods/dropbox.php:786
2840
  msgid "%s de-authentication"
2841
+ msgstr "%s де-удостоверяване"
2842
 
2843
  #: src/methods/dropbox.php:635
2844
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
2845
+ msgstr "Трябва да добавите следното като URI на оторизирано пренасочване в конзолата на Dropbox (под \"Настройки на API\") при запитване"
2846
 
2847
  #: src/central/bootstrap.php:620
2848
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
2849
+ msgstr "UpdraftCentral позволява контрол на вашите WordPress сайтове (включително управление на резервни копия и актуализации) от централно табло."
2850
 
2851
  #: src/backup.php:1583
2852
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
2853
+ msgstr "Ако не, ще трябва или да премахнете данни от тази таблица, или да се свържете с вашата хостинг компания, за да поискате повече ресурси."
2854
 
2855
  #: src/templates/wp-admin/settings/take-backup.php:84
2856
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2857
+ msgstr "Избрали сте опция за отдалечено съхранение, която има стъпка за удостоверяване, за да завършите:"
2858
 
2859
  #: src/admin.php:1990
2860
  msgid "Remote files deleted:"
2861
+ msgstr "Отдалечени файлове изтрити:"
2862
 
2863
  #: src/admin.php:1989
2864
  msgid "Local files deleted:"
2865
+ msgstr "Изтрити локални файлове:"
2866
 
2867
  #: src/methods/backup-module.php:549
2868
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2869
+ msgstr "Следвайте тази връзка, за да разрешите достъпа до вашия %s акаунт (няма да можете да архивирате в %s без него)."
2870
 
2871
  #: src/admin.php:914
2872
  msgid "remote files deleted"
2873
+ msgstr "отдалечените файлове изтрити"
2874
 
2875
  #: src/admin.php:910
2876
  msgid "Complete"
2877
+ msgstr "Завършен"
2878
 
2879
  #: src/admin.php:909
2880
  msgid "Do you want to carry out the import?"
2881
+ msgstr "Искате ли да извършите импортирането?"
2882
 
2883
  #: src/admin.php:908
2884
  msgid "Which was exported on:"
2885
+ msgstr "Който е изнесен на:"
2886
 
2887
  #: src/admin.php:907
2888
  msgid "This will import data from:"
2889
+ msgstr "Това ще импортира данни от:"
2890
 
2891
  #: src/admin.php:906
2892
  msgid "Importing..."
2893
+ msgstr "Добавяне..."
2894
 
2895
  #: src/admin.php:902
2896
  msgid "You have not yet selected a file to import."
2897
+ msgstr "Все още не сте избрали файл за импортиране."
2898
 
2899
  #: src/admin.php:886
2900
  msgid "Your export file will be of your displayed settings, not your saved ones."
2901
+ msgstr "Експортираният файл ще бъде на показаните настройки, а не на запазените."
2902
 
2903
  #: src/admin.php:89
2904
  msgid "template not found"
2905
+ msgstr "шаблонът не е намерен"
2906
 
2907
  #: src/addons/s3-enhanced.php:362
2908
  msgid "US East (Ohio)"
2909
+ msgstr "Сащ Изток (Охайо)"
2910
 
2911
  #: src/addons/onedrive.php:1134
2912
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
2913
+ msgstr "Този сайт използва URL адрес, който не е HTTPS, или е localhost или 127.0.0.1 URL. Като такива трябва да използвате основното %s %s App за удостоверяване с вашия акаунт."
2914
 
2915
  #: src/addons/onedrive.php:744
2916
  msgid "Account is not authorized (%s)."
2917
+ msgstr "Акаунтът не е разрешен (%s)."
2918
 
2919
  #: src/addons/onedrive.php:708, src/udaddons/updraftplus-addons.php:1013
2920
  msgid "Your IP address:"
2921
+ msgstr "Вашият IP адрес:"
2922
 
2923
  #: src/addons/onedrive.php:708, src/udaddons/updraftplus-addons.php:1013,
2924
  #: src/udaddons/updraftplus-addons.php:1026
2925
  msgid "To remove any block, please go here."
2926
+ msgstr "За да премахнете всеки блок, моля, отидете тук."
2927
 
2928
  #: src/addons/onedrive.php:695, src/udaddons/updraftplus-addons.php:1000
2929
  msgid "An error response was received; HTTP code:"
2930
+ msgstr "Получи се отговор на грешка; HTTP код:"
2931
 
2932
  #: src/includes/class-commands.php:408
2933
  msgid "%s add-on not found"
2934
+ msgstr "%s добавката не е намерена"
2935
 
2936
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:60
2937
  msgid "or to restore manually"
2938
+ msgstr "или да възстановите ръчно"
2939
 
2940
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:60
2941
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
2942
+ msgstr "Това прави тайм аизпитва се много по-вероятно. Препоръчително е да изключите safe_mode или да възстановявате само един обект в даден момент"
2943
 
2944
  #: src/admin.php:2704
2945
  msgid "To fix this problem go here."
2946
+ msgstr "За да решите този проблем, отидете тук."
2947
 
2948
  #: src/admin.php:2704
2949
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2950
+ msgstr "OptimizePress 2.0 кодира съдържанието му, така че търсенето/замяната не работи."
2951
 
2952
  #: src/admin.php:870
2953
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
2954
+ msgstr "php инсталацията ви липсва модулът openssl; в резултат на това това може да отнеме минути; ако нищо не се е случило до тогава, тогава трябва да опитате по-малък размер на ключа или да попитате уеб хостинг компанията как да активирате този PHP модул на вашата настройка."
2955
 
2956
  #: src/addons/webdav.php:214
2957
  msgid "Path"
2958
+ msgstr "Път"
2959
 
2960
  #: src/addons/webdav.php:207, src/addons/webdav.php:209
2961
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
2962
+ msgstr "Оставете това празно, за да използвате по подразбиране (80 за webdav, 443 за webdavs)"
2963
 
2964
  #: src/addons/webdav.php:201
2965
  msgid "Enter any path in the field below."
2966
+ msgstr "Въведете пътя в полето по-долу."
2967
 
2968
  #: src/addons/webdav.php:201
2969
  msgid "A host name cannot contain a slash."
2970
+ msgstr "Името на хоста не може да съдържа наклонена черта."
2971
 
2972
  #: src/addons/webdav.php:176
2973
  msgid "Protocol (SSL or not)"
2974
+ msgstr "Протокол (SSL или не)"
2975
 
2976
  #: src/addons/webdav.php:169, src/addons/webdav.php:171
2977
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
2978
+ msgstr "Този WebDAV URL се генерира чрез попълване на опциите по-долу. Ако не знаете подробностите, ще трябва да попитате вашия доставчик на WebDAV."
2979
 
2980
  #: src/udaddons/updraftplus-addons.php:1029
2981
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
2982
+ msgstr "Не са получени данни за отговор. Това обикновено показва проблем с мрежовата връзка (напр. изходяща защитна стена или претоварена мрежа) между този сайт и UpdraftPlus.com."
2983
 
2984
  #: src/methods/s3.php:1210
2985
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
2986
+ msgstr "Ключът за достъп AWS изглежда грешен (валидните %s клавиши за достъп започват с \"AK\")"
2987
 
2988
  #: src/methods/s3.php:130
2989
  msgid "No settings were found - please go to the Settings tab and check your settings"
2990
+ msgstr "Не са намерени настройки - моля, отидете в раздела Настройки и проверете настройките си"
2991
 
2992
  #: src/templates/wp-admin/settings/form-contents.php:115
2993
  msgid "Backup using %s?"
2994
+ msgstr "Архивиране с използване на %s?"
2995
 
2996
  #: src/addons/s3-enhanced.php:376
2997
  msgid "Asia Pacific (Mumbai)"
2998
+ msgstr "Азия Пасифик (Мумбай)"
2999
 
3000
  #: src/addons/s3-enhanced.php:63
3001
  msgid "Standard (infrequent access)"
3002
+ msgstr "Стандарт (рядък достъп)"
3003
 
3004
  #: src/templates/wp-admin/settings/header.php:25
3005
  msgid "FAQs"
3006
+ msgstr "ЧЗВ"
3007
 
3008
  #: src/central/bootstrap.php:569
3009
  msgid "More information..."
3011
 
3012
  #: src/central/bootstrap.php:568
3013
  msgid "Use the alternative method for making a connection with the dashboard."
3014
+ msgstr "Използвайте алтернативния метод за свързване с таблото."
3015
 
3016
  #: src/central/bootstrap.php:473
3017
  msgid "Key size: %d bits"
3018
+ msgstr "Размер на ключа: %d бита"
3019
 
3020
  #: src/central/bootstrap.php:468
3021
  msgid "Public key was sent to:"
3022
+ msgstr "Публичен ключ е изпратен на:"
3023
 
3024
  #: src/backup.php:2251
3025
  msgid "Failed to open directory (check the file permissions and ownership): %s"
3026
+ msgstr "Грешка при отваряне на директорията (проверете разрешенията за файлове и собствеността): %s"
3027
 
3028
  #: src/backup.php:2229
3029
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
3030
+ msgstr "%s: нечетим файл - не можа да бъде архивиран (проверете разрешенията за файла и собствеността)"
3031
 
3032
  #: src/addons/migrator.php:1798
3033
  msgid "Create key"
3034
+ msgstr "Създаване на ключ"
3035
 
3036
  #: src/addons/migrator.php:1795, src/central/bootstrap.php:562
3037
  msgid "slower, strongest"
3038
+ msgstr "по-бавна, най-силна"
3039
 
3040
  #: src/addons/migrator.php:1794, src/central/bootstrap.php:561
3041
  msgid "recommended"
3043
 
3044
  #: src/addons/migrator.php:1794, src/central/bootstrap.php:561
3045
  msgid "%s bytes"
3046
+ msgstr "%s байта"
3047
 
3048
  #: src/addons/migrator.php:1793, src/central/bootstrap.php:560
3049
  msgid "faster (possibility for slow PHP installs)"
3050
+ msgstr "по-бързо (възможност за бавни PHP инсталации)"
3051
 
3052
  #: src/addons/migrator.php:1792, src/central/bootstrap.php:559
3053
  msgid "easy to break, fastest"
3054
+ msgstr "лесно да се счупи, най-бързо"
3055
 
3056
  #: src/addons/migrator.php:1792, src/addons/migrator.php:1793,
3057
  #: src/addons/migrator.php:1795, src/central/bootstrap.php:559,
3058
  #: src/central/bootstrap.php:560, src/central/bootstrap.php:562
3059
  msgid "%s bits"
3060
+ msgstr "%s бита"
3061
 
3062
  #: src/addons/migrator.php:1790, src/central/bootstrap.php:557
3063
  msgid "Encryption key size:"
3064
+ msgstr "Размер на шифроващия ключ:"
3065
 
3066
  #: src/addons/migrator.php:1788
3067
  msgid "Enter your chosen name"
3068
+ msgstr "Въведете избраното от Вас име"
3069
 
3070
  #: src/addons/migrator.php:1787
3071
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
3072
+ msgstr "Създайте ключ: дайте на този ключ уникално име (напр. посочете сайта, за който е), след което натиснете \"Създаване на ключ\":"
3073
 
3074
  #: src/methods/googledrive.php:650
3075
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
3076
+ msgstr "Качването се очаква да е неуспешно: ограничението %s за всеки отделен файл е %s, докато този файл е %s GB (%d байта)"
3077
 
3078
  #: src/methods/ftp.php:453
3079
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
3080
+ msgstr "Това понякога се дължи на защитна стена - опитайте да изключите SSL в експертните настройки и отново да тествате."
3081
 
3082
  #: src/methods/ftp.php:425
3083
  msgid "login"
3084
+ msgstr "вход"
3085
 
3086
  #: src/addons/reporting.php:541, src/addons/reporting.php:541,
3087
  #: src/addons/reporting.php:543, src/methods/email.php:100
3088
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
3089
+ msgstr "Имайте предвид, че пощенски сървъри са склонни да имат ограничения за размера; обикновено около %s МБ; резервни копия, по-големи от всички ограничения, най-вероятно няма да пристигнат."
3090
 
3091
  #: src/methods/email.php:30
3092
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
3093
+ msgstr "Този архив е %s МБ по размер - опитът за изпращане на този имейл е вероятно да се провали (няколко имейл сървъра позволяват прикачени файлове с такъв размер). Ако е така, трябва да превключите към използване на различен метод за отдалечено съхранение."
3094
 
3095
  #: src/class-updraftplus.php:1881
3096
  msgid "Size: %s MB"
3097
+ msgstr "Размер: %s МБ"
3098
 
3099
  #: src/templates/wp-admin/settings/form-contents.php:310
3100
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
3101
+ msgstr "UpdraftPlus ще раздели архивите, когато те надхвърлят този размер на файла. Стойността по подразбиране е %s мегабайта. Внимавайте да оставите малко марж, ако вашият уеб сървър има ограничение на твърдия размер (напр. ограничението от 2 GB / 2048 MB на някои 32-битови сървъри / файлови системи)."
3102
 
3103
  #: src/class-updraftplus.php:4614, src/restorer.php:1687
3104
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
3105
+ msgstr "Трябва да разрешите на %s да направи всички доста пермалин връзки (напр. %s) да работят"
3106
 
3107
  #: src/templates/wp-admin/settings/form-contents.php:104
3108
  msgid "(tap on an icon to select or unselect)"
3109
+ msgstr "(натиснете икона, за да изберете или отмените избора)"
3110
 
3111
  #: src/methods/updraftvault.php:347, src/methods/updraftvault.php:356,
3112
  #: src/methods/updraftvault.php:363, src/methods/updraftvault.php:370
3113
  msgid "%s per year"
3114
+ msgstr "%s на година"
3115
 
3116
  #: src/methods/updraftvault.php:355, src/methods/updraftvault.php:362,
3117
  #: src/methods/updraftvault.php:369
3118
  msgid "or (annual discount)"
3119
+ msgstr "или (годишна отстъпка)"
3120
 
3121
  #: src/methods/updraftvault.php:266
3122
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
3123
+ msgstr "Не е намерена връзка с трезора за този сайт (преместил ли се е?); свържете отново."
3124
 
3125
  #: src/class-updraftplus.php:595, src/class-updraftplus.php:665
3126
  msgid "The given file was not found, or could not be read."
3127
+ msgstr "Файлът не е намерен или не може да бъде прочетен."
3128
 
3129
  #: src/central/bootstrap.php:618
3130
  msgid "UpdraftCentral (Remote Control)"
3131
+ msgstr "UpdraftCentral (дистанционно управление)"
3132
 
3133
  #: src/central/bootstrap.php:604
3134
  msgid "View recent UpdraftCentral log events"
3135
+ msgstr "Преглед на последните събития в UpdraftCentral"
3136
 
3137
  #: src/central/bootstrap.php:551
3138
  msgid "Enter any description"
3139
+ msgstr "Въведете описание"
3140
 
3141
  #: src/central/bootstrap.php:550
3142
  msgid "Description"
3143
+ msgstr "Описание на"
3144
 
3145
  #: src/central/bootstrap.php:478
3146
  msgid "Delete..."
3147
+ msgstr "Изтрий…"
3148
 
3149
  #: src/central/bootstrap.php:471
3150
  msgid "Created:"
3151
+ msgstr "Създаден:"
3152
 
3153
  #: src/central/bootstrap.php:468
3154
  msgid "Access this site as user:"
3155
+ msgstr "Достъп до този сайт като потребител:"
3156
 
3157
  #: src/central/bootstrap.php:492
3158
  msgid "Details"
3160
 
3161
  #: src/central/bootstrap.php:491
3162
  msgid "Key description"
3163
+ msgstr "Описание на ключа"
3164
 
3165
  #: src/central/bootstrap.php:361, src/central/bootstrap.php:372
3166
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
3167
+ msgstr "Създаден е ключ, но опитът за регистриране на %s беше неуспешен - опитайте отново по-късно."
3168
 
3169
  #: src/central/bootstrap.php:226
3170
  msgid "An invalid URL was entered"
3171
+ msgstr "Въведен е невалиден URL адрес"
3172
 
3173
  #: src/central/bootstrap.php:90
3174
  msgid "Close..."
3175
+ msgstr "Затвори..."
3176
 
3177
  #: src/central/bootstrap.php:82
3178
  msgid "This connection appears to already have been made."
3179
+ msgstr "Тази връзка изглежда вече е направена."
3180
 
3181
  #: src/central/bootstrap.php:79
3182
  msgid "You must visit this link in the same browser and login session as you created the key in."
3183
+ msgstr "Трябва да посетите тази връзка в същия браузър и сесия за вход, както сте създали ключа в."
3184
 
3185
  #: src/central/bootstrap.php:75
3186
  msgid "You must visit this URL in the same browser and login session as you created the key in."
3187
+ msgstr "Трябва да посетите този URL адрес в същия браузър и сесия за вход, в която сте създали ключа."
3188
 
3189
  #: src/central/bootstrap.php:75
3190
  msgid "You are not logged into this WordPress site in your web browser."
3191
+ msgstr "Вие не сте влезли в този сайт на WordPress в уеб браузъра си."
3192
 
3193
  #: src/central/bootstrap.php:72
3194
  msgid "The key referred to was unknown."
3195
+ msgstr "Ключът, към който е споменат, е неизвестен."
3196
 
3197
  #: src/central/bootstrap.php:69
3198
  msgid "A new UpdraftCentral connection has not been made."
3199
+ msgstr "Не е направена нова UpdraftCentral връзка."
3200
 
3201
  #: src/central/bootstrap.php:67
3202
  msgid "An UpdraftCentral connection has been made successfully."
3203
+ msgstr "UpdraftCentral връзка е направена успешно."
3204
 
3205
  #: src/central/bootstrap.php:64
3206
  msgid "UpdraftCentral Connection"
3207
+ msgstr "Up-централна връзка"
3208
 
3209
  #: src/class-updraftplus.php:3288, src/class-updraftplus.php:3380
3210
  msgid "The backup was aborted by the user"
3211
+ msgstr "Архивирането е прекратено от потребителя"
3212
 
3213
  #: src/admin.php:5240
3214
  msgid "Your settings have been saved."
3216
 
3217
  #: src/admin.php:4163
3218
  msgid "Total backup size:"
3219
+ msgstr "Общ размер на архива:"
3220
 
3221
  #: src/admin.php:3561
3222
  msgid "stop"
3224
 
3225
  #: src/admin.php:911, src/admin.php:3350
3226
  msgid "The backup has finished running"
3227
+ msgstr "Архивирането завърши изпълнението"
3228
 
3229
  #: src/templates/wp-admin/advanced/tools-menu.php:30,
3230
  #: src/templates/wp-admin/advanced/wipe-settings.php:5,
3231
  #: src/templates/wp-admin/advanced/wipe-settings.php:10
3232
  msgid "Wipe settings"
3233
+ msgstr "Изтриване на настройките"
3234
 
3235
  #: src/templates/wp-admin/advanced/site-info.php:102
3236
  msgid "reset"
3237
+ msgstr "нулирай"
3238
 
3239
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:14
3240
  msgid "these backup sets"
3241
+ msgstr "тези резервни комплекти"
3242
 
3243
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:11
3244
  msgid "this backup set"
3245
+ msgstr "този архивен комплект"
3246
 
3247
  #: src/includes/class-filesystem-functions.php:112
3248
  msgid "calculate"
3249
+ msgstr "изчисляване"
3250
 
3251
  #: src/admin.php:885
3252
  msgid "You should save your changes to ensure that they are used for making your backup."
3253
+ msgstr "Трябва да запишете промените си, за да сте сигурни, че те се използват за създаване на архива."
3254
 
3255
  #: src/admin.php:878
3256
  msgid "We requested to delete the file, but could not understand the server's response"
3257
+ msgstr "Поискахме да изтрие файла, но не може да разбере отговора на сървъра"
3258
 
3259
  #: src/admin.php:877
3260
  msgid "Please enter a valid URL"
3261
+ msgstr "Въведете валиден URL адрес"
3262
 
3263
  #: src/admin.php:860
3264
  msgid "Saving..."
3266
 
3267
  #: src/admin.php:821
3268
  msgid "Error: the server sent us a response which we did not understand."
3269
+ msgstr "Грешка: сървърът ни изпрати отговор, който не разбираме."
3270
 
3271
  #: src/admin.php:813
3272
  msgid "Fetching..."
3273
+ msgstr "Извлича се..."
3274
 
3275
  #: src/addons/s3-enhanced.php:373
3276
  msgid "Asia Pacific (Seoul)"
3277
+ msgstr "Азия Пасифик (Сеул)"
3278
 
3279
  #: src/restorer.php:2604
3280
  msgid "Uploads URL:"
3281
+ msgstr "URL адрес за качвания:"
3282
 
3283
  #: src/addons/onedrive.php:63
3284
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
3285
+ msgstr "Необходимият php модул %s не е инсталиран - попитайте вашата уеб хостинг компания, за да го разреши."
3286
 
3287
  #: src/class-updraftplus.php:4668, src/restorer.php:2622
3288
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
3289
+ msgstr "За да импортирате обикновен WordPress сайт в многостранна инсталация, изисква %s."
3290
 
3291
  #: src/class-updraftplus.php:4664
3292
  msgid "Please read this link for important information on this process."
3293
+ msgstr "Моля, прочетете този линк за важна информация за този процес."
3294
 
3295
  #: src/class-updraftplus.php:4664
3296
  msgid "It will be imported as a new site."
3297
+ msgstr "Той ще бъде импортиран като нов сайт."
3298
 
3299
  #: src/admin.php:2980, src/templates/wp-admin/notices/autobackup-notice.php:16,
3300
  #: src/templates/wp-admin/notices/autobackup-notice.php:18,
3305
 
3306
  #: src/admin.php:897
3307
  msgid "Please fill in the required information."
3308
+ msgstr "Моля, попълнете необходимата информация."
3309
 
3310
  #: src/addons/multisite.php:659
3311
  msgid "Read more..."
3312
+ msgstr "Прочетете повече..."
3313
 
3314
  #: src/addons/multisite.php:650
3315
  msgid "may include some site-wide data"
3316
+ msgstr "може да включва някои данни за целия сайт"
3317
 
3318
  #: src/addons/multisite.php:645
3319
  msgid "All sites"
3320
+ msgstr "Всички сайтове"
3321
 
3322
  #: src/addons/multisite.php:641
3323
  msgid "Which site to restore"
3324
+ msgstr "Кой сайт да се възстанови"
3325
 
3326
  #: src/addons/migrator.php:629, src/addons/migrator.php:630
3327
  msgid "Error when creating new site at your chosen address:"
3328
+ msgstr "Грешка при създаване на нов сайт на избрания от вас адрес:"
3329
 
3330
  #: src/addons/migrator.php:573
3331
  msgid "Required information for restoring this backup was not given (%s)"
3332
+ msgstr "Необходимата информация за възстановяване на този архив не е дадена (%s)"
3333
 
3334
  #: src/addons/migrator.php:525
3335
  msgid "Attribute imported content to user"
3336
+ msgstr "Атрибут импортирано съдържание на потребител"
3337
 
3338
  #: src/addons/migrator.php:515, src/addons/migrator.php:517
3339
  msgid "You must use lower-case letters or numbers for the site path, only."
3340
+ msgstr "Трябва да използвате малки букви или цифри само за пътя на сайта."
3341
 
3342
  #: src/addons/migrator.php:503
3343
  msgid "This feature is not compatible with %s"
3344
+ msgstr "Тази функция не е съвместима с %s"
3345
 
3346
  #: src/addons/migrator.php:501, src/addons/migrator.php:503
3347
  msgid "Importing a single site into a multisite install"
3348
+ msgstr "Импортиране на един сайт в многостранна инсталация"
3349
 
3350
  #: src/addons/migrator.php:493
3351
  msgid "other content from wp-content"
3352
+ msgstr "друго съдържание от wp-съдържание"
3353
 
3354
  #: src/addons/migrator.php:490
3355
  msgid "WordPress core"
3356
+ msgstr "Ядро на WordPress"
3357
 
3358
  #: src/addons/migrator.php:490, src/addons/migrator.php:493,
3359
  #: src/addons/migrator.php:496
3360
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
3361
+ msgstr "Избрали сте %s да бъде включен във възстановяването - това не може/ не трябва да се прави, когато импортирате един сайт в мрежа."
3362
 
3363
  #: src/templates/wp-admin/advanced/site-info.php:100
3364
  msgid "Call WordPress action:"
3365
+ msgstr "Подкани за действие на WordPress:"
3366
 
3367
  #: src/templates/wp-admin/settings/backupnow-modal.php:45
3368
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
3369
+ msgstr "Запазените настройки също влияят върху това, което се архивира – например изключени файлове."
3370
 
3371
  #: src/restorer.php:395
3372
  msgid "Skipping: this archive was already restored."
3373
+ msgstr "Прескачане: този архив вече е възстановен."
3374
 
3375
  #: src/templates/wp-admin/settings/form-contents.php:141
3376
  msgid "File Options"
3377
+ msgstr "Опции за файлове"
3378
 
3379
  #: src/templates/wp-admin/settings/form-contents.php:94
3380
  msgid "Sending Your Backup To Remote Storage"
3381
+ msgstr "Изпращане на резервно копие на отдалечено хранилище"
3382
 
3383
  #: src/templates/wp-admin/settings/form-contents.php:58
3384
  msgid "Database backup schedule"
3385
+ msgstr "График за архивиране на база данни"
3386
 
3387
  #: src/templates/wp-admin/settings/form-contents.php:22
3388
  msgid "Files backup schedule"
3389
+ msgstr "График за архивиране на файлове"
3390
 
3391
  #: src/templates/wp-admin/advanced/wipe-settings.php:6
3392
  msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
3393
+ msgstr "След това ще трябва да въведете отново всички настройки. Можете да направите това и преди да деактивирате/дезактивирате UpdraftPlus, ако желаете."
3394
 
3395
  #: src/templates/wp-admin/advanced/wipe-settings.php:6
3396
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
3397
+ msgstr "Този бутон ще изтрие всички настройки на UpdraftPlus и информация за напредъка на архивите в момента (но не и някои от вашите съществуващи архиви от вашето място за съхранение в облака)."
3398
 
3399
  #: src/admin.php:5114
3400
  msgid "Send this backup to remote storage"
3401
+ msgstr "Изпращане на този архив в отдалечено хранилище"
3402
 
3403
  #: src/admin.php:5112
3404
  msgid "Check out UpdraftPlus Vault."
3405
+ msgstr "Проверете UpdraftPlus Трезор."
3406
 
3407
  #: src/admin.php:5112
3408
  msgid "Not got any remote storage?"
3409
+ msgstr "Нямате ли някакво отдалечено хранилище?"
3410
 
3411
  #: src/admin.php:5112
3412
  msgid "settings"
3414
 
3415
  #: src/admin.php:5112
3416
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
3417
+ msgstr "Архивирането не може да бъде изпратено до отдалечено хранилище - нито едно не е записано в %s"
3418
 
3419
  #: src/admin.php:964, src/templates/wp-admin/settings/backupnow-modal.php:40
3420
  msgid "Include your files in the backup"
3421
+ msgstr "Включване на файловете в архива"
3422
 
3423
  #: src/templates/wp-admin/settings/backupnow-modal.php:26
3424
  msgid "Include your database in the backup"
3425
+ msgstr "Включване на вашата база данни в архива"
3426
 
3427
  #: src/admin.php:2976, src/admin.php:2978
3428
  msgid "Continue restoration"
3429
+ msgstr "Продължаване на възстановяването"
3430
 
3431
  #: src/admin.php:2968
3432
  msgid "You have an unfinished restoration operation, begun %s ago."
3433
+ msgstr "Имате незавършена операция по възстановяване, започнала е преди %s."
3434
 
3435
  #: src/admin.php:2967
3436
  msgid "Unfinished restoration"
3437
+ msgstr "Недовършено възстановяване"
3438
 
3439
  #: src/admin.php:2964
3440
  msgid "%s minutes, %s seconds"
3441
+ msgstr "%s минути, %s секунди"
3442
 
3443
  #: src/admin.php:2794
3444
  msgid "Backup Contents And Schedule"
3445
+ msgstr "Съдържание и график за архивиране"
3446
 
3447
  #: src/admin.php:2897
3448
  msgid "Premium / Extensions"
3449
+ msgstr "Премиум / Разширения"
3450
 
3451
  #: src/admin.php:4646, src/admin.php:4655
3452
  msgid "Sufficient information about the in-progress restoration operation could not be found."
3453
+ msgstr "Не можа да бъде намерена достатъчно информация за операцията за възстановяване в процес."
3454
 
3455
  #: src/addons/morefiles.php:85, src/admin.php:883
3456
  msgctxt "(verb)"
3457
  msgid "Download"
3458
+ msgstr "Изтегляне"
3459
 
3460
  #: src/admin.php:806
3461
  msgid "You have chosen to backup files, but no file entities have been selected"
3462
+ msgstr "Избрахте да архивирате файлове, но не са избрани обекти на файлове"
3463
 
3464
  #: src/admin.php:694
3465
  msgid "Extensions"
3467
 
3468
  #: src/admin.php:686, src/admin.php:2896
3469
  msgid "Advanced Tools"
3470
+ msgstr "Разширени инструменти"
3471
 
3472
  #: src/addons/googlecloud.php:1056
3473
  msgid "Bucket location"
3474
+ msgstr "Местоположение на кофата"
3475
 
3476
  #: src/addons/googlecloud.php:1045, src/addons/googlecloud.php:1051
3477
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
3478
+ msgstr "Имайте предвид, че Google не поддържа всеки клас на съхранение на всяко място - трябва да прочетете документацията им, за да научите за текущата наличност."
3479
 
3480
  #: src/addons/googlecloud.php:1045, src/addons/googlecloud.php:1051,
3481
  #: src/addons/googlecloud.php:1058, src/addons/googlecloud.php:1064
3482
  msgid "This setting applies only when a new bucket is being created."
3483
+ msgstr "Тази настройка се прилага само когато се създава новото такова."
3484
 
3485
  #: src/addons/googlecloud.php:1040
3486
  msgid "You must use a bucket name that is unique, for all %s users."
3487
+ msgstr "За всички потребители на %s трябва да използвате уникално име на кофа."
3488
 
3489
  #: src/addons/googlecloud.php:986
3490
  msgid "Do not confuse %s with %s - they are separate things."
3491
+ msgstr "Не бъркайте %s с %s - те са отделни неща."
3492
 
3493
  #: src/addons/googlecloud.php:317
3494
  msgid "You do not have access to this bucket"
3495
+ msgstr "Нямате достъп до тази кофа"
3496
 
3497
  #: src/addons/googlecloud.php:55, src/addons/googlecloud.php:56,
3498
  #: src/addons/googlecloud.php:57
3499
  msgid "Western Europe"
3500
+ msgstr "Западна Европа"
3501
 
3502
  #: src/addons/googlecloud.php:51
3503
  msgid "Eastern Asia-Pacific"
3504
+ msgstr "Източна Азия и Тихоокеански регион"
3505
 
3506
  #: src/addons/googlecloud.php:50
3507
  msgid "Western United States"
3508
+ msgstr "Западен САЩ"
3509
 
3510
  #: src/addons/googlecloud.php:48, src/addons/googlecloud.php:49
3511
  msgid "Eastern United States"
3512
+ msgstr "Източни Съединени щати"
3513
 
3514
  #: src/addons/googlecloud.php:47
3515
  msgid "Central United States"
3516
+ msgstr "Централна АМЕРИКА"
3517
 
3518
  #: src/addons/googlecloud.php:46
3519
  msgid "European Union"
3520
+ msgstr "Европейски съюз"
3521
 
3522
  #: src/addons/googlecloud.php:45
3523
  msgid "Asia Pacific"
3524
+ msgstr "Азия Пасифик"
3525
 
3526
  #: src/addons/googlecloud.php:44, src/addons/googlecloud.php:45,
3527
  #: src/addons/googlecloud.php:46
3528
  msgid "multi-region location"
3529
+ msgstr "местоположение на няколко региона"
3530
 
3531
  #: src/addons/googlecloud.php:44
3532
  msgid "United States"
3533
+ msgstr "САЩ"
3534
 
3535
  #: src/addons/googlecloud.php:40
3536
  msgid "Nearline"
3537
+ msgstr "Нелинейна линия"
3538
 
3539
  #: src/addons/googlecloud.php:39
3540
  msgid "Durable reduced availability"
3541
+ msgstr "Трайна намалена наличност"
3542
 
3543
  #: src/addons/googlecloud.php:38, src/addons/s3-enhanced.php:62
3544
  msgid "Standard"
3545
+ msgstr "Стандарт"
3546
 
3547
  #: src/addons/azure.php:634
3548
  msgid "container"
3549
+ msgstr "контейнер"
3550
 
3551
  #: src/addons/azure.php:634
3552
  msgid "You can enter the path of any %s virtual folder you wish to use here."
3553
+ msgstr "Можете да въведете пътя на всяка виртуална папка %s, която искате да използвате тук."
3554
 
3555
  #: src/addons/azure.php:633
3556
  msgid "optional"
3557
+ msgstr "по избор"
3558
 
3559
  #: src/addons/azure.php:629
3560
  msgid "See Microsoft's guidelines on container naming by following this link."
3561
+ msgstr "Вижте указанията на Microsoft за именуване на контейнери, като следвате тази връзка."
3562
 
3563
  #: src/addons/azure.php:629
3564
  msgid "Enter the path of the %s you wish to use here."
3565
+ msgstr "Въведете пътя на %s, който искате да използвате тук."
3566
 
3567
  #: src/addons/azure.php:620, src/addons/azure.php:620
3568
  msgid "This is not your Azure login - see the instructions if needing more guidance."
3569
+ msgstr "Това не е вашето влизане в Azure - вижте инструкциите, ако се нуждаете от повече насоки."
3570
 
3571
  #: src/addons/azure.php:619, src/addons/azure.php:623,
3572
  #: src/addons/azure.php:628, src/addons/azure.php:633
3573
  msgid "Azure"
3574
+ msgstr "Лазурно"
3575
 
3576
  #: src/addons/azure.php:600
3577
  msgid "Create Azure credentials in your Azure developer console."
3578
+ msgstr "Създайте идентификационни данни в Azure в конзолата на разработчиците на Azure."
3579
 
3580
  #: src/addons/azure.php:552
3581
  msgid "Could not create the container"
3582
+ msgstr "Контейнерът не може да бъде създаден"
3583
 
3584
  #: src/addons/azure.php:406
3585
  msgid "Could not access container"
3586
+ msgstr "Не можа да бъде достъпен контейнер"
3587
 
3588
  #: src/class-updraftplus.php:3307
3589
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
3590
+ msgstr "За да завършите мигрирането/клонинга, сега трябва да влезете в отдалечения сайт и да възстановите архивния набор."
3591
 
3592
  #: src/backup.php:1640
3593
  msgid "the options table was not found"
3594
+ msgstr "таблицата с опции не е намерена"
3595
 
3596
  #: src/backup.php:1638
3597
  msgid "no options or sitemeta table was found"
3598
+ msgstr "не са намерени опции или таблица sitemeta"
3599
 
3600
  #: src/backup.php:1638, src/backup.php:1640
3601
  msgid "The database backup appears to have failed"
3602
+ msgstr "Изглежда архивът на базата данни е неуспешен"
3603
 
3604
  #: src/backup.php:1510
3605
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
3606
+ msgstr "Архивната директория не е записваема (или дисково пространство е пълно) - архивиране на базата данни се очаква да скоро неуспешно."
3607
 
3608
  #: src/templates/wp-admin/advanced/site-info.php:56
3609
  msgid "required for some remote storage providers"
3610
+ msgstr "за някои доставчици на отдалечени"
3611
 
3612
  #: src/templates/wp-admin/advanced/site-info.php:56
3613
  msgid "Not installed"
3615
 
3616
  #: src/addons/googlecloud.php:1043, src/addons/s3-enhanced.php:59
3617
  msgid "Storage class"
3618
+ msgstr "Клас на съхранение"
3619
 
3620
  #: src/addons/googlecloud.php:1040
3621
  msgid "See Google's guidelines on bucket naming by following this link."
3622
+ msgstr "Вижте указанията на Google за именуване на кофа, като следвате тази връзка."
3623
 
3624
  #: src/addons/googlecloud.php:1040
3625
  msgid "Enter the name of the %s bucket you wish to use here."
3626
+ msgstr "Въведете името на кофата %s, която искате да използвате тук."
3627
 
3628
  #: src/addons/googlecloud.php:1039
3629
  msgid "Bucket"
3630
+ msgstr "Кофа"
3631
 
3632
  #: src/addons/googlecloud.php:1035, src/addons/googlecloud.php:1035
3633
  msgid "Otherwise, you can leave it blank."
3634
+ msgstr "В противен случай можете да го оставите празен."
3635
 
3636
  #: src/addons/googlecloud.php:1035, src/addons/googlecloud.php:1035
3637
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
3638
+ msgstr "Nb. Това е необходимо само ако не сте създали вече кофата, и искате UpdraftPlus да го създаде за вас."
3639
 
3640
  #: src/addons/googlecloud.php:1035
3641
  msgid "Enter the ID of the %s project you wish to use here."
3642
+ msgstr "Въведете ИД на проекта %s, който желаете да използвате тук."
3643
 
3644
  #: src/addons/googlecloud.php:998
3645
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
3646
+ msgstr "Следвайте тази връзка към конзолата на Google API и активирате приаята памет и създайте Client ID в секцията достъп до API."
3647
 
3648
  #: src/addons/googlecloud.php:911
3649
  msgid "You must enter a project ID in order to be able to create a new bucket."
3650
+ msgstr "Трябва да въведете ИД на проект, за да можете да създадете ново кофа."
3651
 
3652
  #: src/addons/googlecloud.php:1033
3653
  msgid "Project ID"
3654
+ msgstr "Проект ID"
3655
 
3656
  #: src/addons/googlecloud.php:762
3657
  msgid "You must save and authenticate before you can test your settings."
3658
+ msgstr "Трябва да запишете и да удостоверите, преди да можете да тествате настройките си."
3659
 
3660
  #: src/addons/googlecloud.php:544
3661
  msgid "Have not yet obtained an access token from Google - you need to authorize or re-authorize your connection to Google Cloud."
3662
+ msgstr "Все още не сте получили маркер за достъп от Google - трябва да упълномощите или повторно да оторизирате връзката си с Google Cloud."
3663
 
3664
  #: src/addons/googlecloud.php:264, src/addons/googlecloud.php:335,
3665
  #: src/addons/googlecloud.php:900, src/addons/googlecloud.php:950
3666
  msgid "You do not have access to this bucket."
3667
+ msgstr "Нямате достъп до тази кофа."
3668
 
3669
  #: src/addons/googlecloud.php:264, src/addons/googlecloud.php:317,
3670
  #: src/addons/googlecloud.php:325, src/addons/googlecloud.php:335,
3673
  #: src/addons/googlecloud.php:992, src/addons/googlecloud.php:1020,
3674
  #: src/addons/googlecloud.php:1028, src/addons/googlecloud.php:1040
3675
  msgid "Google Cloud"
3676
+ msgstr "Google Облак"
3677
 
3678
  #: src/addons/googlecloud.php:264, src/addons/googlecloud.php:317,
3679
  #: src/addons/googlecloud.php:335, src/addons/googlecloud.php:900,
3680
  #: src/addons/googlecloud.php:950
3681
  msgid "%s Service Exception."
3682
+ msgstr "%s Изключение за услуги."
3683
 
3684
  #: src/updraftplus.php:157
3685
  msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
3686
+ msgstr "Не е нужно UpdraftPlus напълно инсталиран - моля, де-инсталиране и инсталиране отново. Най-вероятно, WordPress е неизправна при копиране на файловете на плъгина."
3687
 
3688
  #: src/templates/wp-admin/settings/form-contents.php:88
3689
  msgid "or to configure more complex schedules"
3690
+ msgstr "или да конфигурирате по-сложни графици"
3691
 
3692
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:11,
3693
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:14
3694
  msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
3695
+ msgstr "Сигурни ли сте, че искате да премахнете %s от UpdraftPlus?"
3696
 
3697
  #: src/templates/wp-admin/settings/existing-backups-table.php:170
3698
  msgid "Deselect"
3699
+ msgstr "Deselect"
3700
 
3701
  #: src/templates/wp-admin/settings/existing-backups-table.php:169
3702
  msgid "Select all"
3703
+ msgstr "Избиране на всички"
3704
 
3705
  #: src/templates/wp-admin/settings/existing-backups-table.php:167
3706
  msgid "Actions upon selected backups"
3707
+ msgstr "Действия при избрани архиви"
3708
 
3709
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:56,
3710
  #: src/templates/wp-admin/settings/tab-backups.php:60
3711
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
3712
+ msgstr "Натиснете тук, за да разгледате методите за отдалечено съхранение за всички съществуващи комплекти за архивиране (от всеки сайт, ако се съхраняват в същата папка)."
3713
 
3714
  #: src/admin.php:1988
3715
  msgid "Backup sets removed:"
3716
+ msgstr "Изтриват се резервните комплекти:"
3717
 
3718
  #: src/admin.php:896
3719
  msgid "Processing..."
3720
+ msgstr "Обработка..."
3721
 
3722
  #: src/admin.php:894
3723
  msgid "For backups older than"
3724
+ msgstr "За архиви, по-стари от"
3725
 
3726
  #: src/admin.php:893
3727
  msgid "week(s)"
3728
+ msgstr "седмица (и)"
3729
 
3730
  #: src/admin.php:892
3731
  msgid "hour(s)"
3732
+ msgstr "час(ове)"
3733
 
3734
  #: src/admin.php:891
3735
  msgid "day(s)"
3736
+ msgstr "ден(дни)"
3737
 
3738
  #: src/admin.php:890
3739
  msgid "in the month"
3740
+ msgstr "през месеца"
3741
 
3742
  #: src/admin.php:889
3743
  msgid "day"
3744
+ msgstr "ден"
3745
 
3746
  #: src/addons/morestorage.php:30
3747
  msgid "(as many as you like)"
3748
+ msgstr "(колкото искате)"
3749
 
3750
  #: src/addons/fixtime.php:305, src/addons/fixtime.php:310
3751
  msgid "Add an additional retention rule..."
3752
+ msgstr "Добавяне на допълнително правило за задържане..."
3753
 
3754
  #: src/restorer.php:3205
3755
  msgid "This database needs to be deployed on MySQL version %s or later."
3756
+ msgstr "Тази база данни трябва да бъде разположена в MySQL версия %s или по-нова версия."
3757
 
3758
  #: src/restorer.php:3205
3759
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
3760
+ msgstr "Този проблем се дължи на опит за възстановяване на база данни на много стара MySQL версия, която е несъвместима с базата данни източник."
3761
 
3762
  #: src/methods/updraftvault.php:744
3763
  msgid "You do not currently have any UpdraftPlus Vault quota"
3764
+ msgstr "В момента нямате updraftPlus квота за трезора"
3765
 
3766
  #: src/class-updraftplus.php:4742
3767
  msgid "You must upgrade MySQL to be able to use this database."
3768
+ msgstr "Трябва да надстроите MySQL, за да можете да използвате тази база данни."
3769
 
3770
  #: src/class-updraftplus.php:4742
3771
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
3772
+ msgstr "Архивирането на базата данни използва функциите на MySQL, които не са налични в старата версия на MySQL (%s), на която се изпълнява този сайт."
3773
 
3774
  #: src/admin.php:2689
3775
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
3776
+ msgstr "Директорията UpdraftPlus в wp-съдържание / плъгини има място в него; WordPress не харесва това. Трябва да преименувате директорията на WP-съдържание / плъгини / updraftplus, за да решите този проблем."
3777
 
3778
  #: src/methods/updraftvault.php:392, src/methods/updraftvault.php:392
3779
  msgid "Don't know your email address, or forgotten your password?"
3780
+ msgstr "Не знаете имейл адреса си или не сте забравили паролата си?"
3781
 
3782
  #: src/methods/updraftvault.php:385
3783
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
3784
+ msgstr "Въведете вашия имейл адрес UpdraftPlus.Com тук, за да се свържете:"
3785
 
3786
  #: src/methods/updraftvault.php:337, src/methods/updraftvault.php:378
3787
  msgid "Read the %s FAQs here."
3788
+ msgstr "Прочетете често задаваните въпроси за %s тук."
3789
 
3790
  #: src/addons/s3-enhanced.php:70
3791
  msgid "Check this box to use Amazon's server-side encryption"
3792
+ msgstr "Поставете отметка в това поле, за да използвате шифроването на сървъра на Amazon"
3793
 
3794
  #: src/addons/s3-enhanced.php:69
3795
  msgid "Server-side encryption"
3796
+ msgstr "Шифроване от страна на сървъра"
3797
 
3798
  #: src/methods/updraftvault.php:752
3799
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
3800
+ msgstr "Ако сте забравили паролата си, отидете тук, за да промените паролата си на updraftplus.com."
3801
 
3802
  #: src/admin.php:1237
3803
  msgid "Go to the remote storage settings in order to connect."
3804
+ msgstr "Отидете на настройките за отдалечено съхранение, за да се свържете."
3805
 
3806
  #: src/admin.php:1237
3807
  msgid "%s has been chosen for remote storage, but you are not currently connected."
3808
+ msgstr "%s е избран за отдалечено хранилище, но в момента не сте свързани."
3809
 
3810
  #: src/methods/updraftvault.php:375
3811
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
3812
+ msgstr "Плащанията могат да се извършват в щатски долари, евро или gb лири стерлинги, чрез карта или PayPal."
3813
 
3814
  #: src/admin.php:866
3815
  msgid "Update quota count"
3816
+ msgstr "Актуализиране на броя квоти"
3817
 
3818
  #: src/admin.php:865
3819
  msgid "Counting..."
3820
+ msgstr "Преброяване..."
3821
 
3822
  #: src/admin.php:864
3823
  msgid "Disconnecting..."
3824
+ msgstr "Прекъсват..."
3825
 
3826
  #: src/admin.php:862
3827
  msgid "Connecting..."
3828
+ msgstr "Свързване..."
3829
 
3830
  #: src/methods/updraftvault.php:506, src/methods/updraftvault.php:579
3831
  msgid "Refresh current status"
3832
+ msgstr "Обновяване на текущото състояние"
3833
 
3834
  #: src/methods/updraftvault.php:504, src/methods/updraftvault.php:520,
3835
  #: src/methods/updraftvault.php:522, src/methods/updraftvault.php:579
3836
  msgid "Get more quota"
3837
+ msgstr "Получете повече квота"
3838
 
3839
  #: src/methods/updraftvault.php:501, src/methods/updraftvault.php:517,
3840
  #: src/methods/updraftvault.php:560
3841
  msgid "Current use:"
3842
+ msgstr "Текуща употреба:"
3843
 
3844
  #: src/methods/updraftvault.php:496
3845
  msgid "You can get more quota here"
3846
+ msgstr "Можете да получите повече квота тук"
3847
 
3848
  #: src/methods/updraftvault.php:496
3849
  msgid "Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3850
+ msgstr "Грешка: нямате достатъчно налична квота за съхранение (%s), за да качите този архив (%s)."
3851
 
3852
  #: src/admin.php:863, src/methods/updraftvault.php:419,
3853
  #: src/methods/updraftvault.php:489
3854
  msgid "Disconnect"
3855
+ msgstr "Отписване"
3856
 
3857
  #: src/methods/updraftvault.php:416, src/methods/updraftvault.php:481
3858
  msgid "Quota:"
3859
+ msgstr "Квота:"
3860
 
3861
  #: src/methods/updraftvault.php:415, src/methods/updraftvault.php:479
3862
  msgid "Vault owner"
3863
+ msgstr "Собственик на хранилище"
3864
 
3865
  #: src/methods/updraftvault.php:415, src/methods/updraftvault.php:479
3866
  msgid "Well done - there's nothing more needed to set up."
3867
+ msgstr "Добре направено - няма нищо по-необходимо за настройка."
3868
 
3869
  #: src/methods/updraftvault.php:415, src/methods/updraftvault.php:479
3870
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
3871
+ msgstr "Този сайт е <strong>свързан с</strong> UpdraftPlus Vault."
3872
 
3873
  #: src/methods/updraftvault.php:421, src/methods/updraftvault.php:475
3874
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
3875
+ msgstr "Вие <strong>не</strong> сте свързани с UpdraftPlus Vault."
3876
 
3877
  #: src/methods/updraftvault.php:392
3878
  msgid "Go here for help"
3879
+ msgstr "Отиди тук за помощ"
3880
 
3881
  #: src/central/bootstrap.php:585, src/methods/updraftvault.php:381,
3882
  #: src/methods/updraftvault.php:395,
3883
  #: src/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php:4
3884
  msgid "Back..."
3885
+ msgstr "Върни се назад..."
3886
 
3887
  #: src/methods/updraftvault.php:375
3888
  msgid "Subscriptions can be cancelled at any time."
3889
+ msgstr "Абонаментите могат да бъдат анулирани по всяко време."
3890
 
3891
  #: src/methods/updraftvault.php:354, src/methods/updraftvault.php:361,
3892
  #: src/methods/updraftvault.php:368
3893
  msgid "%s per quarter"
3894
+ msgstr "%s на тримесечие"
3895
 
3896
  #: src/central/bootstrap.php:620
3897
  msgid "Read more about it here."
3898
+ msgstr "Прочетете повече за това тук."
3899
 
3900
  #: src/methods/updraftvault.php:337, src/methods/updraftvault.php:378
3901
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
3902
+ msgstr "UpdraftPlus Vault е изградена на върха на водещите центрове на данни на Amazon, с резервно съхранение на данни, за да се постигне 99.999999999% надеждност."
3903
 
3904
  #: src/methods/updraftvault.php:330, src/methods/updraftvault.php:330
3905
  msgid "Show the options"
3906
+ msgstr "Показване на разширените опции"
3907
 
3908
  #: src/methods/updraftvault.php:326, src/methods/updraftvault.php:343
3909
  msgid "Press a button to get started."
3910
+ msgstr "Натиснете бутон, за да започнете."
3911
 
3912
  #: src/methods/updraftvault.php:326, src/methods/updraftvault.php:343
3913
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
3914
+ msgstr "UpdraftPlus Vault ви носи място за съхранение, което е <strong>надеждно, лесен за използване и голяма цена.</strong>."
3915
 
3916
  #: src/methods/updraftvault.php:261
3917
  msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
3918
+ msgstr "Имате абонамент UpdraftPlus Vault, който не е обновен, и гратисният период е изтекъл. След няколко дни съхранените данни ще бъдат премахнати завинаги. Ако не желаете това да се случи, трябва да подновите възможно най-скоро."
3919
 
3920
  #: src/methods/updraftvault.php:258
3921
  msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
3922
+ msgstr "Имате абонамент updraftPlus с трезор с просрочено плащане. Вие сте в рамките на няколко дни от гратисния период, преди да бъде спрян, и ще загубите квотата си и ще имате достъп до данните, съхранявани в него. Моля подновите възможно най-скоро!"
3923
 
3924
  #: src/methods/updraftvault.php:255
3925
  msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
3926
+ msgstr "Вашата UpdraftPlus Premium покупка е преди повече от година. Трябва да подновите незабавно, за да избегнете загубата на 12 месеца безплатно съхранение, които получавате за това, че сте текущ UpdraftPlus Premium клиент."
3927
 
3928
  #: src/methods/updraftvault.php:104
3929
  msgid "Updraft Vault"
3930
+ msgstr "Тока за тока"
3931
 
3932
  #: src/addons/azure.php:436, src/addons/backblaze.php:548,
3933
  #: src/addons/googlecloud.php:846, src/methods/s3.php:1238
3934
  msgid "Delete failed:"
3935
+ msgstr "Изтриването е неуспешно:"
3936
 
3937
  #: src/backup.php:3346
3938
  msgid "The zip engine returned the message: %s."
3939
+ msgstr "Машината за цип върна съобщението: %s."
3940
 
3941
  #: src/addons/s3-enhanced.php:395, src/addons/s3-enhanced.php:397
3942
  msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
3943
+ msgstr "Без това разрешение UpdraftPlus не може да изтрие архивите - трябва да зададете настройките си за \"запазване\" много високо, за да не виждате грешки при изтриване."
3944
 
3945
  #: src/addons/s3-enhanced.php:395, src/addons/s3-enhanced.php:395
3946
  msgid "Allow deletion"
3947
+ msgstr "Разреши изтриване"
3948
 
3949
  #: src/addons/s3-enhanced.php:391, src/addons/s3-enhanced.php:393
3950
  msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
3951
+ msgstr "Без това разрешение не можете директно да изтеглите или възстановите използването updraftPlus, а вместо това ще трябва да посетите сайта на AWS."
3952
 
3953
  #: src/addons/s3-enhanced.php:391, src/addons/s3-enhanced.php:391
3954
  msgid "Allow download"
3955
+ msgstr "Разреши изтегляне"
3956
 
3957
  #: src/includes/class-remote-send.php:395
3958
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
3959
+ msgstr "Ако изпращането директно от сайта към сайта не работи за вас, тогава има три други метода - моля, опитайте един от тях вместо това."
3960
 
3961
  #: src/admin.php:872, src/includes/class-remote-send.php:377
3962
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
3963
+ msgstr "Трябва да проверите дали отдалеченият сайт е онлайн, не е защитен, няма модули за защита, които може да блокира достъпа, има updraftPlus версия %s или по-нова версия, и дали ключовете са въведени правилно."
3964
 
3965
  #: src/includes/class-remote-send.php:643
3966
  msgid "Existing keys"
3967
+ msgstr "Съществуващи ключове"
3968
 
3969
  #: src/addons/migrator.php:1803
3970
  msgid "Your new key:"
3971
+ msgstr "Вашият нов ключ:"
3972
 
3973
  #: src/central/bootstrap.php:415
3974
  msgid "You must copy and paste this key now - it cannot be shown again."
3975
+ msgstr "Трябва да копирате и поставите този ключ сега - той не може да бъде показан отново."
3976
 
3977
  #: src/central/bootstrap.php:415, src/includes/class-remote-send.php:517
3978
  msgid "Key created successfully."
3979
+ msgstr "Ключът е създаден успешно."
3980
 
3981
  #: src/includes/class-remote-send.php:500
3982
  msgid "A key with this name already exists; you must use a unique name."
3983
+ msgstr "Вече съществува ключ с това име; трябва да използвате уникално име."
3984
 
3985
  #: src/includes/class-remote-send.php:425
3986
  msgid "Also send this backup to the active remote storage locations"
3987
+ msgstr "Също така изпратете този архив на активните места за отдалечено съхранение"
3988
 
3989
  #: src/includes/class-remote-send.php:391
3990
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
3991
+ msgstr "URL адресът на сайта, на който изпращате (%s), изглежда като уеб сайт за местно развитие. Ако изпращате от външна мрежа, вероятно защитната стена ще блокира това."
3992
 
3993
  #: src/includes/class-remote-send.php:325
3994
  msgid "site not found"
3995
+ msgstr "сайтът не е намерен"
3996
 
3997
  #: src/includes/class-remote-send.php:292
3998
  msgid "Backup data will be sent to:"
3999
+ msgstr "Резервните данни ще бъдат изпратени на:"
4000
 
4001
  #: src/addons/migrator.php:230
4002
  msgid "Restore an existing backup set onto this site"
4003
+ msgstr "Възстановяване на съществуващ архивен набор в този сайт"
4004
 
4005
  #: src/addons/migrator.php:236
4006
  msgid "This site has no backups to restore from yet."
4007
+ msgstr "Този сайт няма архиви, които да се възстановяват от все още."
4008
 
4009
  #: src/addons/reporting.php:186
4010
  msgid "Backup made by %s"
4011
+ msgstr "Архивирането е направено от %s"
4012
 
4013
  #: src/methods/addon-base-v2.php:227
4014
  msgid "This storage method does not allow downloading"
4015
+ msgstr "Този метод за съхранение не позволява изтегляне"
4016
 
4017
  #: src/admin.php:4325
4018
  msgid "(backup set imported from remote location)"
4019
+ msgstr "(архивен комплект, импортиран от отдалечено местоположение)"
4020
 
4021
  #: src/addons/wp-cli.php:373,
4022
  #: src/templates/wp-admin/settings/existing-backups-table.php:106
4023
  msgid "Site"
4024
+ msgstr "Саит"
4025
 
4026
  #: src/addons/wp-cli.php:371,
4027
  #: src/templates/wp-admin/settings/existing-backups-table.php:105
4028
  msgid "Backup sent to remote site - not available for download."
4029
+ msgstr "Архивирането, изпратено до отдалечен сайт - не е достъпно за изтегляне."
4030
 
4031
  #: src/includes/class-wpadmin-commands.php:136
4032
  msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
4033
+ msgstr "Трябва да се уверите, че това наистина е резервен комплект, предназначен за използване на този сайт, преди да възстановите (вместо резервен набор от несвързани уеб сайтове)."
4034
 
4035
  #: src/includes/class-wpadmin-commands.php:136
4036
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
4037
+ msgstr "Този архивен набор не е известен от UpdraftPlus да бъде създаден от текущата инсталация на WordPress, но е бил или намерен в отдалечено съхранение, или е изпратен от отдалечен сайт."
4038
 
4039
  #: src/admin.php:879, src/includes/class-remote-send.php:407
4040
  msgid "Testing connection..."
4041
+ msgstr "Тестване на връзка..."
4042
 
4043
  #: src/admin.php:876,
4044
  #: src/templates/wp-admin/settings/existing-backups-table.php:174
4045
  msgid "Deleting..."
4046
+ msgstr "Изтриване..."
4047
 
4048
  #: src/admin.php:875
4049
  msgid "key name"
4050
+ msgstr "име на ключ"
4051
 
4052
  #: src/admin.php:873
4053
  msgid "Please give this key a name (e.g. indicate the site it is for):"
4054
+ msgstr "Моля, посочете име на този ключ (напр. посочете сайта за него):"
4055
 
4056
  #: src/admin.php:870
4057
  msgid "Creating..."
4058
+ msgstr "Създаване..."
4059
 
4060
  #: src/addons/migrator.php:1783
4061
  msgid "Receive a backup from a remote site"
4062
+ msgstr "Получаване на резервно копие от отдалечен сайт"
4063
 
4064
  #: src/addons/migrator.php:1775
4065
  msgid "Paste key here"
4066
+ msgstr "Постави ключа тук"
4067
 
4068
  #: src/addons/migrator.php:1771
4069
  msgid "How do I get a site's key?"
4070
+ msgstr "Как да получа ключ на сайт?"
4071
 
4072
  #: src/addons/migrator.php:1771
4073
  msgid "To add a site as a destination for sending to, enter that site's key below."
4074
+ msgstr "За да добавите сайт като дестинация за изпращане, въведете ключа на този сайт по-долу."
4075
 
4076
  #: src/addons/migrator.php:1762
4077
  msgid "Send a backup to another site"
4078
+ msgstr "Изпращане на резервно копие на друг сайт"
4079
 
4080
  #: src/admin.php:880, src/includes/class-remote-send.php:438,
4081
  #: src/includes/class-remote-send.php:622
4082
  msgid "Send"
4083
+ msgstr "Изпрати"
4084
 
4085
  #: src/admin.php:871, src/includes/class-remote-send.php:616
4086
  msgid "Send to site:"
4087
+ msgstr "Изпрати в сайта:"
4088
 
4089
  #: src/includes/class-remote-send.php:614
4090
  msgid "No receiving sites have yet been added."
4091
+ msgstr "Все още не са добавени сайтове за получаване."
4092
 
4093
  #: src/includes/class-remote-send.php:594
4094
  msgid "It is for sending backups to the following site: "
4095
+ msgstr "Той е за изпращане на резервни копия на следния сайт: "
4096
 
4097
  #: src/includes/class-remote-send.php:594
4098
  msgid "The key was successfully added."
4099
+ msgstr "Ключът е добавен успешно."
4100
 
4101
  #: src/includes/class-remote-send.php:570
4102
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
4103
+ msgstr "Въведеният ключ не принадлежи на отдалечен сайт (той принадлежи на този)."
4104
 
4105
  #: src/includes/class-remote-send.php:559,
4106
  #: src/includes/class-remote-send.php:561,
4107
  #: src/includes/class-remote-send.php:565
4108
  msgid "The entered key was corrupt - please try again."
4109
+ msgstr "Въведеният ключ е повреден - опитайте отново."
4110
 
4111
  #: src/includes/class-remote-send.php:557
4112
  msgid "The entered key was the wrong length - please try again."
4113
+ msgstr "Въведеният ключ е с грешна дължина - опитайте отново."
4114
 
4115
  #: src/includes/class-remote-send.php:542
4116
  msgid "key"
4117
+ msgstr "ключ"
4118
 
4119
  #: src/methods/ftp.php:392, src/methods/ftp.php:392
4120
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
4121
+ msgstr "Почти всички FTP сървъри ще искат пасивен режим; но ако имате нужда от активен режим, след това махнете отметката от това."
4122
 
4123
  #: src/methods/ftp.php:390
4124
  msgid "Passive mode"
4125
+ msgstr "Пасивен режим"
4126
 
4127
  #: src/methods/ftp.php:385
4128
  msgid "Remote path"
4129
+ msgstr "Отдалечен път"
4130
 
4131
  #: src/methods/ftp.php:380
4132
  msgid "FTP password"
4133
+ msgstr "FTP парола"
4134
 
4135
  #: src/methods/ftp.php:375
4136
  msgid "FTP login"
4137
+ msgstr "FTP вход"
4138
 
4139
  #: src/methods/ftp.php:370
4140
  msgid "FTP server"
4141
+ msgstr "FTP сървър"
4142
 
4143
  #: src/addons/migrator.php:194
4144
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
4145
+ msgstr "UpdraftPlus Migrator променя операцията по възстановяване по подходящ начин, за да се поберат резервните данни към новия сайт."
4146
 
4147
  #: src/addons/migrator.php:194
4148
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
4149
+ msgstr "\"Миграция\" в крайна сметка е същото като възстановяване - но с помощта на архиви, които импортирате от друг сайт."
4150
 
4151
  #: src/admin.php:869
4152
  msgid "Resetting..."
4153
+ msgstr "Възстановяване..."
4154
 
4155
  #: src/addons/migrator.php:1775, src/admin.php:868
4156
  msgid "Add site"
4157
+ msgstr "Добавяне на сайт"
4158
 
4159
  #: src/admin.php:867
4160
  msgid "Adding..."
4161
+ msgstr "Добавяне..."
4162
 
4163
  #: src/udaddons/options.php:302
4164
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
4165
+ msgstr "Не е предоставена претенция - може би вече сте използвали тази покупка някъде другаде, или платения ви период за изтегляне от updraftplus.com е изтекъл?"
4166
 
4167
  #: src/restorer.php:3207
4168
  msgid "To use this backup, your database server needs to support the %s character set."
4169
+ msgstr "За да използвате това архивиране, вашият сървър за база данни трябва да поддържа набора от знаци %s."
4170
 
4171
  #: src/udaddons/updraftplus-addons.php:1062
4172
  msgid "go here to change your password on updraftplus.com."
4173
+ msgstr "за да промените паролата си на updraftplus.com."
4174
 
4175
  #: src/udaddons/updraftplus-addons.php:1062
4176
  msgid "If you have forgotten your password "
4177
+ msgstr "Ако сте забравили паролата си "
4178
 
4179
  #: src/udaddons/updraftplus-addons.php:1061
4180
  msgid "Go here to re-enter your password."
4181
+ msgstr "Отидете тук, за да въведете отново паролата си."
4182
 
4183
  #: src/addons/migrator.php:271
4184
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
4185
+ msgstr "След като натиснете този бутон, ще ви бъде дадена възможност да изберете кои компоненти"
4186
 
4187
  #: src/admin.php:859, src/admin.php:885, src/admin.php:886
4188
  msgid "You have made changes to your settings, and not saved."
4189
+ msgstr "Направили сте промени в настройките си, а не записани."
4190
 
4191
  #: src/addons/onedrive.php:1196
4192
  msgid "N.B. %s is not case-sensitive."
4193
+ msgstr "N.B. %s не е чувствителен към малки и главни букви."
4194
 
4195
  #: src/addons/onedrive.php:1186
4196
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
4197
+ msgstr "Ако OneDrive по-късно ви показва съобщението \"unauthorized_client\", тогава не сте въвели валиден клиентски ИД тук."
4198
 
4199
  #: src/addons/azure.php:601, src/addons/onedrive.php:1157,
4200
  #: src/includes/class-remote-send.php:395
4201
  msgid "For longer help, including screenshots, follow this link."
4202
+ msgstr "За по-дълго помощ, включително екранни снимки, следвайте тази връзка."
4203
 
4204
  #: src/addons/onedrive.php:1150
4205
  msgid "Create OneDrive credentials in your OneDrive developer console."
4206
+ msgstr "Създаване на идентификационни данни за OneDrive в конзолата за разработчици на OneDrive."
4207
 
4208
  #: src/addons/onedrive.php:1142
4209
  msgid "You must add the following as the authorized redirect URI in your OneDrive console (under \"API Settings\") when asked"
4210
+ msgstr "Трябва да добавите следното като оторизиран URI за пренасочване в конзолата на OneDrive (под \"Настройки на API\"), когато бъдете"
4211
 
4212
  #: src/addons/azure.php:589
4213
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
4214
+ msgstr "Microsoft Azure не е съвместим със сайтове, хоствани на localhost или URL адрес 127.0.0.1 - конзолата им за разработчици забранява тези (текущият URL адрес е: %s)."
4215
 
4216
  #: src/addons/onedrive.php:1105, src/addons/onedrive.php:1107
4217
  msgid "authorization failed:"
4218
+ msgstr "неуспешно удостоверяване:"
4219
 
4220
  #: src/addons/onedrive.php:950, src/addons/onedrive.php:1185,
4221
  #: src/addons/onedrive.php:1189
4222
  msgid "OneDrive"
4223
+ msgstr "OneDrive"
4224
 
4225
  #: src/addons/onedrive.php:735
4226
  msgid "Please re-authorize the connection to your %s account."
4227
+ msgstr "Моля, ре-оторизирайте връзката към вашият %s акаунт."
4228
 
4229
  #: src/methods/email.php:96
4230
  msgid "configure it here"
4231
+ msgstr "конфигурирате тук"
4232
 
4233
  #: src/addons/onedrive.php:728, src/includes/updraftplus-login.php:55,
4234
  #: src/methods/updraftvault.php:717
4235
  msgid "To remove the block, please go here."
4236
+ msgstr "За да премахнете блока, моля, отидете тук."
4237
 
4238
  #: src/addons/s3-enhanced.php:474
4239
  msgid "Do remember to save your settings."
4240
+ msgstr "Не забравяйте да запазите настройките си."
4241
 
4242
  #: src/addons/s3-enhanced.php:474
4243
  msgid "You are now using a IAM user account to access your bucket."
4244
+ msgstr "Сега използвате IAM потребителски акаунт за достъп до вашата кофа."
4245
 
4246
  #: src/addons/s3-enhanced.php:389
4247
  msgid "S3 bucket"
4248
+ msgstr "S3 кофа"
4249
 
4250
  #: src/addons/s3-enhanced.php:379
4251
  msgid "China (Beijing) (restricted)"
4252
+ msgstr "Китай (Пекин) (ограничен)"
4253
 
4254
  #: src/addons/s3-enhanced.php:378
4255
  msgid "South America (Sao Paulo)"
4256
+ msgstr "Южна Америка (Сао Пауло)"
4257
 
4258
  #: src/addons/s3-enhanced.php:377
4259
  msgid "Asia Pacific (Tokyo)"
4260
+ msgstr "Азия Пасифик (Токио)"
4261
 
4262
  #: src/addons/s3-enhanced.php:375
4263
  msgid "Asia Pacific (Sydney)"
4264
+ msgstr "Азия Пасифик (Сидни)"
4265
 
4266
  #: src/addons/s3-enhanced.php:374
4267
  msgid "Asia Pacific (Singapore)"
4268
+ msgstr "Азия Пасифик (Сингапур)"
4269
 
4270
  #: src/addons/s3-enhanced.php:365
4271
  msgid "US Government West (restricted)"
4272
+ msgstr "Правителството на САЩ Запад (ограничено)"
4273
 
4274
  #: src/addons/s3-enhanced.php:364
4275
  msgid "US West (N. California)"
4276
+ msgstr "Западен САЩ (Н. Калифорния)"
4277
 
4278
  #: src/addons/s3-enhanced.php:363
4279
  msgid "US West (Oregon)"
4280
+ msgstr "Запад (Орегон)"
4281
 
4282
  #: src/addons/s3-enhanced.php:361
4283
  msgid "US Standard (default)"
4284
+ msgstr "Us Standard (по подразбиране)"
4285
 
4286
  #: src/addons/s3-enhanced.php:357
4287
  msgid "S3 storage region"
4288
+ msgstr "S3 област за съхранение"
4289
 
4290
  #: src/addons/s3-enhanced.php:355
4291
  msgid "New IAM username"
4292
+ msgstr "Ново IAM потребителско име"
4293
 
4294
  #: src/addons/s3-enhanced.php:354
4295
  msgid "Admin secret key"
4296
+ msgstr "Таен ключ на администратор"
4297
 
4298
  #: src/addons/s3-enhanced.php:353
4299
  msgid "Admin access key"
4300
+ msgstr "Администраторски достъп"
4301
 
4302
  #: src/addons/s3-enhanced.php:346
4303
  msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
4304
+ msgstr "След това тези идентификационни данни за достъп с по-ниска мощност може да се използва, вместо да се съхраняват вашите административни ключове."
4305
 
4306
  #: src/addons/s3-enhanced.php:346
4307
  msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
4308
+ msgstr "Те ще се използват за създаване на нова двойка потребители и ключове с IAM приложени правила, които ще му позволят достъп само до посочената група."
4309
 
4310
  #: src/addons/s3-enhanced.php:346
4311
  msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
4312
+ msgstr "Въведете вашия административен достъп / тайни ключове на Amazon S3 (това трябва да бъде двойка ключове с достатъчно права за създаване на нови потребители и кофи), и ново (уникално) потребителско име за новия потребител и име на кофа."
4313
 
4314
  #: src/addons/s3-enhanced.php:426
4315
  msgid "Create new IAM user and S3 bucket"
4316
+ msgstr "Създаване на нова IAM потребителска и S3 кофа"
4317
 
4318
  #: src/addons/s3-enhanced.php:332
4319
  msgid "Secret Key: %s"
4320
+ msgstr "Таен ключ: %s"
4321
 
4322
  #: src/addons/s3-enhanced.php:332
4323
  msgid "Access Key: %s"
4324
+ msgstr "Ключ за достъп: %s"
4325
 
4326
  #: src/addons/s3-enhanced.php:320
4327
  msgid "Failed to apply User Policy"
4328
+ msgstr "Неуспешно прилагане на правилата за потребителя"
4329
 
4330
  #: src/addons/s3-enhanced.php:261, src/addons/s3-enhanced.php:265
4331
  msgid "Operation to create user Access Key failed"
4332
+ msgstr "Неуспешна операция за създаване на ключ за достъп на потребителя"
4333
 
4334
  #: src/addons/s3-enhanced.php:259
4335
  msgid "Failed to create user Access Key"
4336
+ msgstr "Неуспешно създаване на ключ за достъп на потребителя"
4337
 
4338
  #: src/addons/s3-enhanced.php:241, src/addons/s3-enhanced.php:244,
4339
  #: src/addons/s3-enhanced.php:248
4340
  msgid "IAM operation failed (%s)"
4341
+ msgstr "Операцията IAM е неуспешна (%s)"
4342
 
4343
  #: src/addons/s3-enhanced.php:239
4344
  msgid "Conflict: that user already exists"
4345
+ msgstr "Конфликт: този потребител вече съществува"
4346
 
4347
  #: src/addons/s3-enhanced.php:211
4348
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another AWS user may already have taken your name)."
4349
+ msgstr "Грешка: Не можехме успешно да осъществим достъп или да създадем такава група. Проверете вашите идентификационни данни за достъп и ако те са правилни, опитайте друго име на кофа (тъй като друг потребител на AWS може вече да е взел вашето име)."
4350
 
4351
  #: src/addons/s3-enhanced.php:165
4352
  msgid "AWS authentication failed"
4353
+ msgstr "AWS удостоверяването е неуспешно"
4354
 
4355
  #: src/addons/s3-enhanced.php:158
4356
  msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
4357
+ msgstr "Не може да се създаде нов потребител на AWS, тъй като се използва старият AWS набор от инструменти."
4358
 
4359
  #: src/addons/s3-enhanced.php:131
4360
  msgid "You need to enter a bucket"
4361
+ msgstr "Трябва да въведете кофа"
4362
 
4363
  #: src/addons/s3-enhanced.php:127
4364
  msgid "You need to enter a new IAM username"
4365
+ msgstr "Трябва да въведете ново IAM потребителско име"
4366
 
4367
  #: src/addons/s3-enhanced.php:123
4368
  msgid "You need to enter an admin secret key"
4369
+ msgstr "Трябва да въведете таен ключ на администратор"
4370
 
4371
  #: src/addons/s3-enhanced.php:119
4372
  msgid "You need to enter an admin access key"
4373
+ msgstr "Трябва да въведете администраторски ключ за достъп"
4374
 
4375
  #: src/addons/s3-enhanced.php:92
4376
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
4377
+ msgstr "Ако имате потребител на AWS администратор, можете да използвате този съветник за бързо създаване на нов потребител AWS (IAM) с достъп само до тази кофа (а не целия ви акаунт)"
4378
 
4379
  #: src/methods/s3.php:947
4380
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
4381
+ msgstr "За да създадете нов IAM подпотребител и ключ за достъп, който има достъп само до този кофа, използвайте тази добавка."
4382
 
4383
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
4384
  msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world's most popular backup plugin."
4385
+ msgstr "За лична поддръжка, възможността да копирате сайтове, повече дестинации за съхранение, криптирани резервни копия за сигурност, множество резервни дестинации, по-добро отчитане, без реклами и много други, погледнете платената версия на UpdraftPlus - най-популярният резервен плъгин в света."
4386
 
4387
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
4388
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
4389
+ msgstr "UpdraftPlus новини, висококачествени материали за обучение за разработчиците на WordPress и собствениците на сайта и общи новини за WordPress. Можете да се отпишете по всяко време."
4390
 
4391
  #: src/addons/onedrive.php:708, src/addons/onedrive.php:728,
4392
  #: src/includes/updraftplus-login.php:55, src/methods/updraftvault.php:717,
4393
  #: src/udaddons/updraftplus-addons.php:1013,
4394
  #: src/udaddons/updraftplus-addons.php:1026
4395
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
4396
+ msgstr "Това най-вероятно означава, че споделяте уеб сървър с хакнат уеб сайт, който е бил използван при предишни атаки."
4397
 
4398
  #: src/addons/onedrive.php:728, src/includes/updraftplus-login.php:55,
4399
  #: src/methods/updraftvault.php:717, src/udaddons/updraftplus-addons.php:1026
4400
  msgid "It appears that your web server's IP Address (%s) is blocked."
4401
+ msgstr "Изглежда, че IP адресът на вашия уеб сървър (%s) е блокиран."
4402
 
4403
  #: src/addons/onedrive.php:728, src/includes/updraftplus-login.php:55,
4404
  #: src/methods/updraftvault.php:717, src/udaddons/updraftplus-addons.php:1026
4405
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
4406
+ msgstr "UpdraftPlus.com е отговорил с \"Достъпът е отказан\"."
4407
 
4408
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:30
4409
  msgid "Premium WooCommerce plugins"
4410
+ msgstr "Първокласни WooCommerce плъгини"
4411
 
4412
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:30
4413
  msgid "Free two-factor security plugin"
4414
+ msgstr "Безплатна двуфактомна сигурност плъгин"
4415
 
4416
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
4417
  msgid "More quality plugins"
4418
+ msgstr "Повече качествени приставки"
4419
 
4420
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
4421
  msgid "Go to the shop."
4422
+ msgstr "Отиди в магазина."
4423
 
4424
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
4425
  msgid "Compare with the free version"
4426
+ msgstr "Сравнете с безплатната версия"
4427
 
4428
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
4429
  #: src/templates/wp-admin/settings/tab-addons.php:72
4430
  msgid "UpdraftPlus Premium"
4431
+ msgstr "UpdraftPlus Премиум"
4432
 
4433
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
4434
  msgid "Free Newsletter"
4435
+ msgstr "Безплатен бюлетин"
4436
 
4437
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
4438
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
4439
  msgid "Dismiss (for %s months)"
4440
+ msgstr "Отхвърляне (за %s месеца)"
4441
 
4442
  #: src/addons/fixtime.php:447
4443
  msgid "(at same time as files backup)"
4444
+ msgstr "(в същото време като архивиране на файлове)"
4445
 
4446
  #: src/admin.php:3850
4447
  msgid "No backup has been completed"
4448
+ msgstr "Архивирането не е завършено"
4449
 
4450
  #: src/templates/wp-admin/settings/header.php:21
4451
  msgid "Newsletter sign-up"
4452
+ msgstr "Абониране за бюлетин"
4453
 
4454
  #: src/includes/updraftplus-notices.php:148
4455
  msgid "Follow this link to sign up for the UpdraftPlus newsletter."
4456
+ msgstr "Следвайте този линк, за да се регистрирате за бюлетина UpdraftPlus."
4457
 
4458
  #: src/templates/wp-admin/settings/tab-addons.php:152,
4459
  #: src/templates/wp-admin/settings/tab-addons.php:153
4460
  msgid "Backup non-WordPress files and databases"
4461
+ msgstr "Архивиране на файлове и бази данни, които не са на WordPress"
4462
 
4463
  #: src/templates/wp-admin/settings/tab-addons.php:27
4464
  msgid "Ask a pre-sales question"
4465
+ msgstr "Задайте въпрос преди продажбата"
4466
 
4467
  #: src/templates/wp-admin/settings/tab-addons.php:26
4468
  msgid "Pre-sales FAQs"
4469
+ msgstr "ЧЗВ преди продажбата"
4470
 
4471
  #: src/templates/wp-admin/settings/tab-addons.php:25
4472
  msgid "Full feature list"
4473
+ msgstr "Пълен списък с функции"
4474
 
4475
  #: src/addons/autobackup.php:1102
4476
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
4477
+ msgstr "Архивиране (където е уместно) плъгини, теми и база данни на WordPress с UpdraftPlus преди да се актуализира"
4478
 
4479
  #: src/methods/s3.php:187, src/methods/s3.php:200
4480
  msgid "%s Error: Failed to initialise"
4481
+ msgstr "%s Грешка: Не може да се инициализира"
4482
 
4483
  #: src/templates/wp-admin/settings/form-contents.php:191
4484
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
4485
  msgid "or"
4486
+ msgstr "или"
4487
 
4488
  #: src/admin.php:853
4489
  msgid "You did not select any components to restore. Please select at least one, and then try again."
4490
+ msgstr "Не сте избрали никакви компоненти за възстановяване. Изберете поне един и опитайте отново."
4491
 
4492
  #: src/addons/sftp.php:465, src/addons/sftp.php:466
4493
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
4494
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
4495
+ msgstr "PKCS1 (PEM заглавие: BEGIN RSA private KEY), ключове за XML и Putty формат се приемат."
4496
 
4497
  #: src/addons/sftp.php:416
4498
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
4499
+ msgstr "Възвръщане на частични качвания се поддържа за SFTP, но не и за SCP. По този начин, ако използвате SCP, тогава ще трябва да се уверите, че вашият уеб сървър позволява на PHP процесите да работят достатъчно дълго, за да качите най-големия си архивен файл."
4500
 
4501
  #: src/methods/openstack2.php:190
4502
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
4503
  msgid "tenant"
4504
+ msgstr "наемател"
4505
 
4506
  #: src/methods/openstack2.php:137, src/methods/openstack2.php:139
4507
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
4508
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
4509
+ msgstr "Това трябва да бъде URI за удостоверяване v2 (keystone) ; v1 (Swauth) не се поддържа."
4510
 
4511
  #: src/templates/wp-admin/settings/form-contents.php:261
4512
  msgid "your site's admin address"
4513
+ msgstr "администраторски адрес на сайта Ви"
4514
 
4515
  #: src/templates/wp-admin/settings/form-contents.php:261
4516
  msgid "Check this box to have a basic report sent to"
4517
+ msgstr "Поставете отметка в това квадратче, за да изпратите базова справка"
4518
 
4519
  #: src/admin.php:3866
4520
  msgctxt "i.e. Non-automatic"
4521
  msgid "Manual"
4522
+ msgstr "Ръчна"
4523
 
4524
  #: src/restorer.php:3160
4525
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
4526
  msgid "An error (%s) occurred:"
4527
+ msgstr "Възникна грешка (%s):"
4528
 
4529
  #: src/addons/lockadmin.php:191
4530
  msgid "Change Lock Settings"
4531
+ msgstr "Промяна на настройките за заключване"
4532
 
4533
  #: src/addons/morefiles.php:272
4534
  msgid "Any other file/directory on your server that you wish to backup"
4535
+ msgstr "Всеки друг файл/директория на вашия сървър, който искате да архивирате"
4536
 
4537
  #: src/admin.php:2706
4538
  msgid "For even more features and personal support, check out "
4539
+ msgstr "За още повече функции и лична поддръжка проверете "
4540
 
4541
  #: src/addons/moredatabase.php:59
4542
  msgid "Database decryption phrase"
4543
+ msgstr "Фраза за дешифриране на база данни"
4544
 
4545
  #: src/addons/autobackup.php:157, src/addons/autobackup.php:1048,
4546
  #: src/admin.php:858
4547
  msgid "Automatic backup before update"
4548
+ msgstr "Автоматично архивиране преди актуализация"
4549
 
4550
  #: src/addons/autobackup.php:122
4551
  msgid "WordPress core (only)"
4552
+ msgstr "Ядро на WordPress (само)"
4553
 
4554
  #: src/addons/lockadmin.php:243
4555
  msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
4556
+ msgstr "За да отключите поддръжка, моля, свържете се с този, който управлява UpdraftPlus за вас."
4557
 
4558
  #: src/addons/lockadmin.php:234
4559
  msgid "To access the UpdraftPlus settings, please enter your unlock password"
4560
+ msgstr "За достъп до настройките на UpdraftPlus, моля въведете паролата си за отключване"
4561
 
4562
  #: src/addons/lockadmin.php:231
4563
  msgid "Password incorrect"
4564
+ msgstr "Неправилна парола"
4565
 
4566
  #: src/addons/lockadmin.php:219, src/addons/lockadmin.php:225
4567
  msgid "Unlock"
4568
+ msgstr "Отключване"
4569
 
4570
  #: src/addons/lockadmin.php:189
4571
  msgid "Otherwise, the default link will be shown."
4572
+ msgstr "В противен случай ще се покаже връзката по подразбиране."
4573
 
4574
  #: src/addons/lockadmin.php:189
4575
  msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
4576
+ msgstr "Всеки, който вижда екрана при заключване, ще бъде показан за поддръжка на този URL адрес - въведете адрес на уеб сайт или имейл адрес."
4577
 
4578
  #: src/addons/lockadmin.php:189
4579
  msgid "Support URL"
4580
+ msgstr "URL адрес за поддръжка"
4581
 
4582
  #: src/addons/lockadmin.php:187
4583
  msgid "Require password again after"
4584
+ msgstr "Изисквай парола отново след"
4585
 
4586
  #: src/addons/lockadmin.php:178, src/addons/lockadmin.php:179
4587
  msgid "%s weeks"
4588
+ msgstr "%s седмици"
4589
 
4590
  #: src/addons/lockadmin.php:177
4591
  msgid "1 week"
4592
+ msgstr "1 седмица"
4593
 
4594
  #: src/addons/lockadmin.php:175, src/addons/lockadmin.php:176
4595
  msgid "%s hours"
4596
+ msgstr "%s часа"
4597
 
4598
  #: src/addons/lockadmin.php:174
4599
  msgid "1 hour"
4600
+ msgstr "1 час"
4601
 
4602
  #: src/addons/lockadmin.php:163
4603
  msgid "Please make sure that you have made a note of the password!"
4604
+ msgstr "Моля, уверете се, че сте направили бележка на паролата!"
4605
 
4606
  #: src/addons/lockadmin.php:156,
4607
  #: src/templates/wp-admin/advanced/lock-admin.php:8
4608
  msgid "Lock access to the UpdraftPlus settings page"
4609
+ msgstr "Заключване на достъпа до страницата с настройки на UpdraftPlus"
4610
 
4611
  #: src/addons/lockadmin.php:129
4612
  msgid "The admin password has been changed."
4613
+ msgstr "Администраторската парола е променена."
4614
 
4615
  #: src/addons/lockadmin.php:127
4616
  msgid "An admin password has been set."
4617
+ msgstr "Зададена е парола на администратор."
4618
 
4619
  #: src/addons/lockadmin.php:125
4620
  msgid "The admin password has now been removed."
4621
+ msgstr "Паролата на администратора вече е премахната."
4622
 
4623
  #: src/addons/morefiles.php:155
4624
  msgid "(learn more about this significant option)"
4625
+ msgstr "(научете повече за този важен вариант)"
4626
 
4627
  #: src/udaddons/options.php:237
4628
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
4629
+ msgstr "Имайте предвид, че след като сте заявили добавките си, можете да премахнете паролата си (но не и имейл адреса) от настройките по-долу, без това да засяга достъпа на този сайт до актуализации."
4630
 
4631
  #: src/admin.php:3350, src/admin.php:4422
4632
  msgid "View Log"
4633
+ msgstr "Преглед на регистрационен файл"
4634
 
4635
  #: src/templates/wp-admin/settings/existing-backups-table.php:18,
4636
  #: src/templates/wp-admin/settings/existing-backups-table.php:101
4637
  msgid "Backup data (click to download)"
4638
+ msgstr "Архивиране на данни (щракнете, за да изтеглите)"
4639
 
4640
  #: src/templates/wp-admin/settings/existing-backups-table.php:17,
4641
  #: src/templates/wp-admin/settings/existing-backups-table.php:68
4642
  msgid "Backup date"
4643
+ msgstr "Дата на архивиране"
4644
 
4645
  #: src/templates/wp-admin/settings/form-contents.php:42,
4646
  #: src/templates/wp-admin/settings/form-contents.php:76
4647
  msgid "and retain this many scheduled backups"
4648
+ msgstr "и да запазите този много планирани архиви"
4649
 
4650
  #: src/admin.php:3820
4651
  msgid "incremental backup; base backup: %s"
4652
+ msgstr "постъпково резервно копие; базово архивиране: %s"
4653
 
4654
  #: src/templates/wp-admin/advanced/lock-admin.php:19
4655
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
4656
+ msgstr "За възможността да се заключи достъп до UpdraftPlus настройки с парола, ъпгрейд до UpdraftPlus Premium."
4657
 
4658
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:69,
4659
  #: src/templates/wp-admin/settings/tab-backups.php:71
4660
  msgid "Upload files into UpdraftPlus."
4661
+ msgstr "Качване на файлове в UpdraftPlus."
4662
 
4663
  #: src/admin.php:1180, src/includes/class-commands.php:469,
4664
  #: src/templates/wp-admin/settings/take-backup.php:13
4665
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
4666
+ msgstr "Бутонът \"Архивиране сега\" е деактивиран, тъй като директорията ви за архивиране не е записваема (отидете в раздела \"Настройки\" и намерете съответната опция)."
4667
 
4668
  #: src/class-updraftplus.php:4653
4669
  msgid "Backup label:"
4670
+ msgstr "Етикет за архивиране:"
4671
 
4672
  #: src/addons/backblaze.php:198, src/admin.php:2269
4673
  msgid "Error: unexpected file read fail"
4674
+ msgstr "Грешка: неочакван файл четене е неуспешно"
4675
 
4676
  #: src/backup.php:3352
4677
  msgid "check your log for more details."
4678
+ msgstr "проверете регистрационния си файл за повече подробности."
4679
 
4680
  #: src/backup.php:3350
4681
  msgid "your web hosting account appears to be full; please see: %s"
4682
+ msgstr "вашият уеб хостинг акаунт изглежда пълен; моля, вижте: %s"
4683
 
4684
  #: src/backup.php:3348
4685
  msgid "A zip error occurred"
4686
+ msgstr "Грешка в zip файла"
4687
 
4688
  #: src/addons/reporting.php:81
4689
  msgid "Your label for this backup (optional)"
4690
+ msgstr "Вашият етикет за това архивиране (по избор)"
4691
 
4692
  #: src/methods/googledrive.php:1329
4693
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
4694
+ msgstr "%s не позволява разрешение на сайтове, хоствани на директни IP адреси. Ще трябва да промените адреса на вашия сайт (%s), преди да можете да използвате %s за съхранение."
4695
 
4696
  #: src/methods/updraftvault.php:755, src/udaddons/updraftplus-addons.php:1065
4697
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
4698
+ msgstr "Въведохте имейл адрес, който не е разпознат от UpdraftPlus.Com"
4699
 
4700
  #: src/methods/updraftvault.php:752, src/udaddons/updraftplus-addons.php:1061
4701
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
4702
+ msgstr "Имейл адресът ви е валиден, но паролата ви не е разпозната от UpdraftPlus.Com."
4703
 
4704
  #: src/methods/updraftvault.php:693, src/udaddons/updraftplus-addons.php:930
4705
  msgid "You need to supply both an email address and a password"
4706
+ msgstr "Трябва да предоставите както имейл адрес, така и парола"
4707
 
4708
  #: src/class-updraftplus.php:4672
4709
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
4710
+ msgstr "Ако искате да възстановите многостранен архив, първо трябва да настроите wordPress инсталацията като многостранна."
4711
 
4712
  #: src/class-updraftplus.php:4672
4713
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
4714
+ msgstr "Вашият архив е на wordPress многостранна инсталация; но този сайт не е. Само първият сайт на мрежата ще бъде достъпен."
4715
 
4716
  #: src/addons/migrator.php:1261
4717
  msgid "already done"
4718
+ msgstr "вече е направено"
4719
 
4720
  #: src/addons/migrator.php:1221
4721
  msgid "skipped (not in list)"
4722
+ msgstr "прескочи (не в списъка)"
4723
 
4724
  #: src/addons/migrator.php:1221, src/addons/migrator.php:1261,
4725
  #: src/addons/migrator.php:1395
4726
  msgid "Search and replacing table:"
4727
+ msgstr "Търсене и заместване на таблица:"
4728
 
4729
  #: src/addons/migrator.php:387
4730
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
4731
+ msgstr "Въведете списък, разделен със запетая; в противен случай оставете празно за всички таблици."
4732
 
4733
  #: src/addons/migrator.php:387
4734
  msgid "These tables only"
4735
+ msgstr "Тези таблици само"
4736
 
4737
  #: src/addons/migrator.php:386
4738
  msgid "Rows per batch"
4739
+ msgstr "Редове на партида"
4740
 
4741
  #: src/udaddons/options.php:97
4742
  msgid "You have not yet connected with your UpdraftPlus.Com account."
4743
+ msgstr "Все още не сте се свързали с вашия UpdraftPlus.Com акаунт."
4744
 
4745
  #: src/udaddons/options.php:95, src/udaddons/options.php:97
4746
  msgid "You need to connect to receive future updates to UpdraftPlus."
4747
+ msgstr "Трябва да се свържете, за да получавате бъдещи актуализации на UpdraftPlus."
4748
 
4749
  #: src/class-updraftplus.php:4643, src/class-updraftplus.php:4645
4750
  msgid "Any support requests to do with %s should be raised with your web hosting company."
4751
+ msgstr "Всички заявки за поддръжка, свързани с %s, трябва да бъдат повдигнати с вашата уеб хостинг компания."
4752
 
4753
  #: src/class-updraftplus.php:4643
4754
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
4755
+ msgstr "Трябва да продължите само ако не можете да актуализирате текущия сървър и сте уверени (или сте готови да рискувате), че вашите плъгини/теми/и т.н. са съвместими с по-старата версия на %s."
4756
 
4757
  #: src/class-updraftplus.php:4643
4758
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
4759
+ msgstr "Това е значително по-нова от сървъра, на който се възстановява (версия %s)."
4760
 
4761
  #: src/class-updraftplus.php:4643, src/class-updraftplus.php:4645
4762
  msgid "The site in this backup was running on a webserver with version %s of %s. "
4763
+ msgstr "Сайтът в този архив се изпълняваше на уеб сървър с версия %s на %s. "
4764
 
4765
  #: src/includes/updraftplus-notices.php:139,
4766
  #: src/includes/updraftplus-notices.php:140
4767
  msgid "LinkedIn"
4768
+ msgstr "LinkedIn"
4769
 
4770
  #: src/includes/updraftplus-notices.php:139,
4771
  #: src/includes/updraftplus-notices.php:140
4785
 
4786
  #: src/includes/updraftplus-notices.php:138
4787
  msgid "UpdraftPlus is on social media - check us out!"
4788
+ msgstr "UpdraftPlus е в социалните медии - вижте ни!"
4789
 
4790
  #: src/addons/wp-cli.php:849, src/includes/class-filesystem-functions.php:83
4791
  msgid "Why am I seeing this?"
4792
+ msgstr "Защо виждам това?"
4793
 
4794
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
4795
  #: src/templates/wp-admin/settings/tab-backups.php:59
4796
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
4797
+ msgstr "Местоположението на тази директория е зададено в експертните настройки в раздела Настройки."
4798
 
4799
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
4800
  #: src/templates/wp-admin/settings/tab-backups.php:59
4801
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
4802
+ msgstr "Натиснете тук, за да погледнете в updraftPlus директорията си (във вашето уеб хостинг пространство) за всички нови резервни комплекти, които сте качили."
4803
 
4804
  #: src/admin.php:2190, src/admin.php:2213, src/includes/class-commands.php:839
4805
  msgid "Start backup"
4806
+ msgstr "Стартиране на архивиране"
4807
 
4808
  #: src/class-updraftplus.php:4614, src/restorer.php:1687
4809
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4810
+ msgstr "Използвате уеб сървър %s, но изглежда не е зареден модулът %s."
4811
 
4812
  #: src/admin.php:3718
4813
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
4814
+ msgstr "Ще трябва да се консултирате с вашия доставчик на уеб хостинг, за да разберете как да зададете разрешения за WordPress плъгин, за да пишете в директорията."
4815
 
4816
  #: src/templates/wp-admin/advanced/advanced-tools.php:6
4817
  msgid "Unless you have a problem, you can completely ignore everything here."
4818
+ msgstr "Освен ако нямате проблем, можете напълно да игнорирате всичко тук."
4819
 
4820
  #: src/admin.php:2452
4821
  msgid "This file could not be uploaded"
4822
+ msgstr "Този файл не може да бъде качен"
4823
 
4824
  #: src/admin.php:2415
4825
  msgid "You will find more information about this in the Settings section."
4826
+ msgstr "Повече информация за това ще намерите в раздела Настройки."
4827
 
4828
  #: src/addons/importer.php:78
4829
  msgid "Supported backup plugins: %s"
4830
+ msgstr "Поддържани приставки за архивиране: %s"
4831
 
4832
  #: src/addons/importer.php:78
4833
  msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognized - please follow this link."
4834
+ msgstr "Това резервно копие ли е създадено от друг резервен плъгин? Ако е така, тогава може да се наложи първо да го преименувате, така че да може да бъде разпознат - моля, следвайте тази връзка."
4835
 
4836
  #: src/addons/incremental.php:363
4837
  msgid "Tell me more about incremental backups"
4838
+ msgstr "Кажете ми повече за допълнителните резервни копия"
4839
 
4840
  #: src/templates/wp-admin/advanced/site-info.php:44
4841
  msgid "Memory limit"
4842
+ msgstr "Ограничение на паметта"
4843
 
4844
  #: src/includes/class-filesystem-functions.php:285, src/restorer.php:2383
4845
  msgid "restoration"
4846
+ msgstr "възстановяване"
4847
 
4848
  #: src/class-updraftplus.php:3375
4849
  msgid "Incremental"
4850
+ msgstr "Допълнителни"
4851
 
4852
  #: src/class-updraftplus.php:3375
4853
  msgid "Full backup"
4854
+ msgstr "Пълно архивиране"
4855
 
4856
  #: src/addons/autobackup.php:570, src/addons/autobackup.php:572
4857
  msgid "now proceeding with the updates..."
4858
+ msgstr "сега ще продължим с актуализациите..."
4859
 
4860
  #: src/addons/autobackup.php:570, src/addons/autobackup.php:572
4861
  msgid "(view log...)"
4862
+ msgstr "(преглед на лог...)"
4863
 
4864
  #: src/addons/autobackup.php:570, src/addons/autobackup.php:572
4865
  msgid "Backup succeeded"
4866
+ msgstr "Архивирането е успешно"
4867
 
4868
  #: src/addons/incremental.php:330, src/addons/incremental.php:331,
4869
  #: src/addons/incremental.php:332, src/addons/incremental.php:333,
4871
  #: src/admin.php:3871, src/updraftplus.php:100, src/updraftplus.php:101,
4872
  #: src/updraftplus.php:102
4873
  msgid "Every %s hours"
4874
+ msgstr "На всеки %s часа"
4875
 
4876
  #: src/addons/migrator.php:916, src/addons/migrator.php:918
4877
  msgid "search and replace"
4878
+ msgstr "търсене и замяна"
4879
 
4880
  #: src/addons/migrator.php:389
4881
  msgid "Go"
4882
+ msgstr "Напред"
4883
 
4884
  #: src/addons/migrator.php:378
4885
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
4886
+ msgstr "Търсенето/замяната не може да бъде отменено – сигурни ли сте, че искате да направите това?"
4887
 
4888
  #: src/addons/migrator.php:377
4889
  msgid "This can easily destroy your site; so, use it with care!"
4890
+ msgstr "Това може лесно да унищожи сайта ви; така че, да го използвате внимателно!"
4891
 
4892
  #: src/addons/migrator.php:333, src/addons/migrator.php:385
4893
  msgid "Replace with"
4894
+ msgstr "Замяна с"
4895
 
4896
  #: src/addons/migrator.php:332, src/addons/migrator.php:384
4897
  msgid "Search for"
4898
+ msgstr "Търсене за"
4899
 
4900
  #: src/addons/migrator.php:331, src/addons/migrator.php:376,
4901
  #: src/templates/wp-admin/advanced/search-replace.php:7,
4902
  #: src/templates/wp-admin/advanced/tools-menu.php:18
4903
  msgid "Search / replace database"
4904
+ msgstr "Търсене / заместване на база данни"
4905
 
4906
  #: src/addons/migrator.php:337
4907
  msgid "search term"
4908
+ msgstr "търсене термин"
4909
 
4910
  #: src/restorer.php:3212
4911
  msgid "Too many database errors have occurred - aborting"
4912
+ msgstr "Възникнаха твърде много грешки в базата данни - прекратяване на"
4913
 
4914
  #: src/class-updraftplus.php:3443
4915
  msgid "read more at %s"
4916
+ msgstr "повече на %s"
4917
 
4918
  #: src/class-updraftplus.php:3443
4919
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4920
+ msgstr "Имейл доклади, създадени от UpdraftPlus (безплатно издание) ви носят най-новите новини за UpdraftPlus.com"
4921
 
4922
  #: src/methods/googledrive.php:1336
4923
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
4924
+ msgstr "Nb. Ако инсталирате UpdraftPlus на няколко WordPress сайтове, тогава не можете да използвате отново проекта си; трябва да създадете нов от конзолата си за API на Google за всеки сайт."
4925
 
4926
  #: src/includes/class-backup-history.php:131
4927
  msgid "You have not yet made any backups."
4928
+ msgstr "Все още не сте направили никакви резервни копия."
4929
 
4930
  #: src/templates/wp-admin/settings/form-contents.php:153
4931
  msgid "Database Options"
4932
+ msgstr "Опции за база данни"
4933
 
4934
  #: src/templates/wp-admin/advanced/site-info.php:95
4935
  msgid "Plugins for debugging:"
4936
+ msgstr "Приставки за отстраняване на грешки:"
4937
 
4938
  #: src/templates/wp-admin/advanced/site-info.php:74
4939
  msgid "%s (%s used)"
4940
+ msgstr "%s (използван е%s)"
4941
 
4942
  #: src/templates/wp-admin/advanced/site-info.php:74
4943
  msgid "Free disk space in account:"
4944
+ msgstr "Свободно място на диска в акаунта:"
4945
 
4946
  #: src/admin.php:5211, src/templates/wp-admin/settings/take-backup.php:51
4947
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4948
+ msgstr "Този бутон е забранен, защото директорията за архивиране не е записваема (вижте настройките)."
4949
 
4950
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4951
  #: src/templates/wp-admin/settings/tab-backups.php:21,
4952
  #: src/templates/wp-admin/settings/tab-backups.php:44
4953
  msgid "Existing Backups"
4954
+ msgstr "Съществуващи архиви"
4955
 
4956
  #: src/admin.php:1185
4957
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
4958
+ msgstr "За да промените някоя от настройките по подразбиране на това, което се архивира, за да конфигурирате планирани архиви, да изпратите архивите си на отдалечено хранилище (препоръчително) и други, отидете в раздела \"Настройки\"."
4959
 
4960
  #: src/admin.php:1185
4961
  msgid "To make a backup, just press the Backup Now button."
4962
+ msgstr "За да направите резервно копие, просто натиснете бутона Архивиране сега."
4963
 
4964
  #: src/admin.php:1185
4965
  msgid "Welcome to UpdraftPlus!"
4966
+ msgstr "Добре дошли в UpdraftPlus!"
4967
 
4968
  #: src/addons/moredatabase.php:318
4969
  msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
4970
+ msgstr "Ако въведете текст тук, той се използва за шифроване на архиви на бази данни (Rijndael). <strong>Направете отделен запис на него и не го губят, или всички резервни копия <em>ще</em> бъдат безполезни.</strong> Това е и ключът, използван за декриптиране на резервни копия от този администраторски интерфейс (така че, ако го промените, тогава автоматичното декриптиране няма да работи, докато не го промените обратно)."
4971
 
4972
  #: src/addons/moredatabase.php:257
4973
  msgid "Testing..."
4974
+ msgstr "Тестване..."
4975
 
4976
  #: src/addons/moredatabase.php:244
4977
  msgid "Test connection..."
4978
+ msgstr "Тест на връзката..."
4979
 
4980
  #: src/addons/moredatabase.php:243
4981
  msgid "Table prefix"
4982
+ msgstr "Префикс на таблица"
4983
 
4984
  #: src/addons/moredatabase.php:237
4985
  msgid "Backup external database"
4986
+ msgstr "Архивиране на външна база данни"
4987
 
4988
  #: src/addons/moredatabase.php:177
4989
  msgid "Add an external database to backup..."
4990
+ msgstr "Добавяне на външна база данни за архивиране..."
4991
 
4992
  #: src/addons/moredatabase.php:173
4993
  msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
4994
+ msgstr "Ако вашата база данни включва допълнителни таблици, които не са част от този WordPress сайт (ще знаете дали това е така), след това активирайте тази опция, за да ги архивирате."
4995
 
4996
  #: src/addons/moredatabase.php:172
4997
  msgid "Backup non-WordPress tables contained in the same database as WordPress"
4998
+ msgstr "Резервни не-WordPress таблици, съдържащи се в същата база данни като WordPress"
4999
 
5000
  #: src/addons/moredatabase.php:172
5001
  msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
5002
+ msgstr "Тази опция ще доведе до създаване на резервно копие на таблиците, съхранявани в MySQL базата данни, които не принадлежат на WordPress (идентифицирани от липсващия конфигуриран представка за WordPress, %s), също да бъдат архивирани."
5003
 
5004
  #: src/addons/moredatabase.php:157
5005
  msgid "Connection failed."
5006
+ msgstr "Връзката е неуспешна."
5007
 
5008
  #: src/addons/moredatabase.php:155
5009
  msgid "Connection succeeded."
5010
+ msgstr "Връзката е успешна."
5011
 
5012
  #: src/addons/moredatabase.php:137
5013
  msgid "%s total table(s) found; %s with the indicated prefix."
5014
+ msgstr "Намерени %s са всички таблици; %s с посочения префикс."
5015
 
5016
  #: src/addons/moredatabase.php:131
5017
  msgid "%s table(s) found."
5018
+ msgstr "Намерени са %s таблица."
5019
 
5020
  #: src/addons/moredatabase.php:104
5021
  msgid "database connection attempt failed"
5022
+ msgstr "неуспешен опит за свързване на база данни"
5023
 
5024
  #: src/addons/moredatabase.php:93
5025
  msgid "database name"
5026
+ msgstr "име на база данни"
5027
 
5028
  #: src/addons/moredatabase.php:91
5029
  msgid "host"
5030
+ msgstr "домакин"
5031
 
5032
  #: src/addons/moredatabase.php:89
5033
  msgid "user"
5034
+ msgstr "потребител"
5035
 
5036
  #: src/class-updraftplus.php:1878
5037
  msgid "External database (%s)"
5038
+ msgstr "Външна база данни (%s)"
5039
 
5040
  #: src/methods/googledrive.php:1336
5041
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
5042
+ msgstr "Следвайте тази връзка към конзолата ви на Google API и активирате прите интерфейса на устройството и създайте Клиентски идентификатор в секцията за достъп до API."
5043
 
5044
  #: src/methods/googledrive.php:600
5045
  msgid "failed to access parent folder"
5046
+ msgstr "не можа да се получи достъп до родителска папка"
5047
 
5048
  #: src/addons/googlecloud.php:701, src/addons/onedrive.php:918,
5049
  #: src/addons/onedrive.php:929, src/methods/googledrive.php:525,
5050
  #: src/methods/googledrive.php:538
5051
  msgid "However, subsequent access attempts failed:"
5052
+ msgstr "Обаче неуспешни последващи опити за достъп:"
5053
 
5054
  #: src/addons/wp-cli.php:434, src/admin.php:4188
5055
  msgid "External database"
5056
+ msgstr "Външна база данни"
5057
 
5058
  #: src/templates/wp-admin/settings/form-contents.php:305
5059
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
5060
+ msgstr "Това също ще доведе до отстраняване на грешки изход от всички плъгини, за да се покаже на този екран - моля не се изненадвайте, че тези."
5061
 
5062
  #: src/templates/wp-admin/settings/form-contents.php:234
5063
  msgid "Backup more databases"
5064
+ msgstr "Архивиране на още бази данни"
5065
 
5066
  #: src/templates/wp-admin/settings/form-contents.php:193
5067
  msgid "First, enter the decryption key"
5068
+ msgstr "Първо, въведете ключа за декриптиране"
5069
 
5070
  #: src/templates/wp-admin/settings/form-contents.php:176
5071
  msgid "You can manually decrypt an encrypted database here."
5072
+ msgstr "Тук можете ръчно да дешифрирате шифрована база данни."
5073
 
5074
  #: src/templates/wp-admin/settings/form-contents.php:162
5075
  msgid "It can also backup external databases."
5076
+ msgstr "Той може да архивира и външни бази данни."
5077
 
5078
  #: src/templates/wp-admin/settings/form-contents.php:162
5079
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
5080
+ msgstr "Не искаш да те шпионират? UpdraftPlus Premium може да криптира архива на базата данни."
5081
 
5082
  #: src/templates/wp-admin/settings/form-contents.php:88
5083
  msgid "use UpdraftPlus Premium"
5084
+ msgstr "използване на UpdraftPlus Premium"
5085
 
5086
  #: src/class-updraftplus.php:4495
5087
  msgid "Decryption failed. The database file is encrypted."
5088
+ msgstr "Неуспешна дешифриране. Файлът на базата данни е шифрован."
5089
 
5090
  #: src/includes/class-wpadmin-commands.php:148
5091
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
5092
+ msgstr "Само базата данни на WordPress може да бъде възстановена; трябва да се справите с външната база данни ръчно."
5093
 
5094
  #: src/restorer.php:2704, src/restorer.php:3123, src/restorer.php:3190,
5095
  #: src/restorer.php:3207
5096
  msgid "An error occurred on the first %s command - aborting run"
5097
+ msgstr "Възникна грешка в първата команда %s - прекъсване на изпълнение"
5098
 
5099
  #: src/addons/moredatabase.php:112, src/backup.php:1451
5100
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
5101
+ msgstr "Връзката е неуспешна: проверете данните за достъпа, дали сървърът на базата данни е нагоре и че мрежовата връзка не е защитна стена."
5102
 
5103
  #: src/backup.php:1451
5104
  msgid "database connection attempt failed."
5105
+ msgstr "неуспешен опит за свързване с база данни."
5106
 
5107
  #: src/addons/migrator.php:1152
5108
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
5109
+ msgstr "Предупреждение: домашният URL адрес на базата данни (%s) е различен от очаквания от нас (%s)"
5110
 
5111
  #: src/addons/google-enhanced.php:77, src/addons/google-enhanced.php:80
5112
  msgid "In %s, path names are case sensitive."
5113
+ msgstr "В %s имената на пътищата са чувствителни към малки и главни букви."
5114
 
5115
  #: src/addons/azure.php:634, src/addons/google-enhanced.php:77,
5116
  #: src/addons/onedrive.php:1196
5117
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
5118
+ msgstr "Ако го оставите празно, архивът ще бъде поставен в главната директория на %s"
5119
 
5120
  #: src/addons/google-enhanced.php:77, src/addons/googlecloud.php:1040,
5121
  #: src/addons/onedrive.php:1196
5122
  msgid "e.g. %s"
5123
+ msgstr "например%s"
5124
 
5125
  #: src/addons/google-enhanced.php:77, src/addons/onedrive.php:1196
5126
  msgid "Enter the path of the %s folder you wish to use here."
5127
+ msgstr "Въведете пътя до папката %s, която искате да използвате тук."
5128
 
5129
  #: src/methods/openstack2.php:170
5130
  msgid "Container"
5131
+ msgstr "Контейнер"
5132
 
5133
  #: src/methods/openstack2.php:151, src/methods/openstack2.php:153
5134
  msgid "Leave this blank, and a default will be chosen."
5135
+ msgstr "Оставете това празно и ще бъде избрана по подразбиране."
5136
 
5137
  #: src/methods/openstack2.php:144
5138
  msgid "Tenant"
5139
+ msgstr "Наемател"
5140
 
5141
  #: src/admin.php:987, src/admin.php:5652, src/methods/openstack2.php:144,
5142
  #: src/restorer.php:263, src/restorer.php:265,
5144
  #: src/templates/wp-admin/settings/tab-backups.php:27,
5145
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:14
5146
  msgid "Follow this link for more information"
5147
+ msgstr "Следвайте тази връзка за повече информация"
5148
 
5149
  #: src/methods/openstack2.php:136, src/methods/openstack2.php:195
5150
  msgid "authentication URI"
5151
+ msgstr "URI за удостоверяване"
5152
 
5153
  #: src/methods/openstack2.php:120
5154
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
5155
+ msgstr "Вземете идентификационните си данни за достъп от доставчика си на OpenStack Swift и изберете име на контейнер, което да използвате за съхранение. Този контейнер ще бъде създаден за вас, ако вече не съществува."
5156
 
5157
  #: src/methods/addon-base-v2.php:244, src/methods/addon-base-v2.php:264
5158
  msgid "Failed to download %s"
5159
+ msgstr "Неуспешно изтегляне на %s"
5160
 
5161
  #: src/methods/addon-base-v2.php:258
5162
  msgid "Failed to download"
5163
+ msgstr "Неуспешно изтегляне"
5164
 
5165
  #: src/methods/addon-base-v2.php:124
5166
  msgid "failed to list files"
5167
+ msgstr "неуспешно изброяване на файлове"
5168
 
5169
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98
5170
  msgid "Failed to upload %s"
5171
+ msgstr "Неуспешно качване на %s"
5172
 
5173
  #: src/methods/dropbox.php:802, src/methods/dropbox.php:804
5174
  msgid "Success:"
5175
+ msgstr "Готово:"
5176
 
5177
  #: src/methods/backup-module.php:546
5178
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and follow this link to complete authentication with %s."
5179
+ msgstr "<strong>След като</strong> сте записали настройките си (като кликнете върху \"Запиши промените\" по-долу), се върнете тук веднъж и следвайте тази връзка, за да завършите удостоверяването с %s."
5180
 
5181
  #: src/addons/onedrive.php:1220, src/methods/dropbox.php:614
5182
  msgid "(You appear to be already authenticated)."
5183
+ msgstr "(Изглеждате вече удостоверени)."
5184
 
5185
  #: src/methods/dropbox.php:610
5186
  msgid "Dropbox"
5187
+ msgstr "Dropbox"
5188
 
5189
  #: src/addons/onedrive.php:1213, src/methods/dropbox.php:610
5190
  msgid "Authenticate with %s"
5191
+ msgstr "Удостоверяване с %s"
5192
 
5193
  #: src/methods/cloudfiles.php:403, src/methods/openstack-base.php:460
5194
  msgid "Error downloading remote file: Failed to download"
5195
+ msgstr "Грешка при изтегляне на отдалечен файл: Неуспешно изтегляне"
5196
 
5197
  #: src/methods/openstack-base.php:531, src/methods/openstack-base.php:536
5198
  msgid "Region: %s"
5199
+ msgstr "Регион: %s"
5200
 
5201
  #: src/methods/openstack-base.php:530
5202
  msgid "%s error - we accessed the container, but failed to create a file within it"
5203
+ msgstr "%s грешка - достъп до контейнера, но не успяхме да създадем файл в него"
5204
 
5205
  #: src/methods/openstack-base.php:446
5206
  msgid "The %s object was not found"
5207
+ msgstr "Не е открит %s обект"
5208
 
5209
  #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:369,
5210
  #: src/methods/openstack-base.php:438
5211
  msgid "Could not access %s container"
5212
+ msgstr "Не може да се осъществи достъп до контейнера %s"
5213
 
5214
  #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:122,
5215
  #: src/methods/openstack-base.php:129, src/methods/openstack-base.php:361,
5216
  #: src/methods/openstack-base.php:426
5217
  msgid "%s error - failed to access the container"
5218
+ msgstr "%s грешка - не успя да влезе в контейнера"
5219
 
5220
  #: src/addons/googlecloud.php:1109, src/addons/onedrive.php:1256,
5221
  #: src/methods/dropbox.php:667, src/methods/googledrive.php:1418
5222
  msgid "Account holder's name: %s."
5223
+ msgstr "Име на собственика на акаунта: %s."
5224
 
5225
  #: src/methods/googledrive.php:1395
5226
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
5227
+ msgstr "За да можете да зададете персонализирано име на папка, използвайте UpdraftPlus Premium."
5228
 
5229
  #: src/methods/googledrive.php:1382
5230
  msgid "It is an ID number internal to Google Drive"
5231
+ msgstr "Това е идентификационен номер в Google Диск"
5232
 
5233
  #: src/methods/googledrive.php:1382
5234
  msgid "<strong>This is NOT a folder name</strong>."
5235
+ msgstr "<strong>Това не е име на папка</strong>."
5236
 
5237
  #: src/addons/google-enhanced.php:75, src/methods/googledrive.php:1377,
5238
  #: src/methods/googledrive.php:1388
5239
  msgid "Folder"
5240
+ msgstr "Папка"
5241
 
5242
  #: src/addons/onedrive.php:463
5243
  msgid "%s download: failed: file not found"
5244
+ msgstr "%s изтегляне: не е успешно: файлът не е намерен"
5245
 
5246
  #: src/addons/googlecloud.php:721, src/methods/googledrive.php:558
5247
  msgid "Name: %s."
5248
+ msgstr "Име: %s."
5249
 
5250
  #: src/methods/googledrive.php:297
5251
  msgid "Google Drive list files: failed to access parent folder"
5252
+ msgstr "Файловете на списъка с Google Диск: не са успели да получат достъп до родителската папка"
5253
 
5254
  #: src/methods/addon-not-yet-present.php:95, src/methods/insufficient.php:121
5255
  msgid "Your %s version: %s."
5256
+ msgstr "Вашата версия %s: %s."
5257
 
5258
  #: src/methods/addon-not-yet-present.php:94, src/methods/insufficient.php:120
5259
  msgid "You will need to ask your web hosting company to upgrade."
5260
+ msgstr "Ще трябва да поискате от вашата уеб хостинг компания да надстроите."
5261
 
5262
  #: src/methods/addon-not-yet-present.php:19, src/methods/insufficient.php:21
5263
  msgid "This remote storage method (%s) requires PHP %s or later."
5264
+ msgstr "Този метод за отдалечено съхранение (%s) изисква PHP %s или по-нова версия."
5265
 
5266
  #: src/templates/wp-admin/advanced/site-info.php:100
5267
  msgid "Call"
5268
+ msgstr "Обаждане"
5269
 
5270
  #: src/templates/wp-admin/advanced/site-info.php:98,
5271
  #: src/templates/wp-admin/advanced/site-info.php:98
5272
  msgid "Fetch"
5273
+ msgstr "Донесе"
5274
 
5275
  #: src/addons/migrator.php:501,
5276
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
5277
  #: src/templates/wp-admin/settings/form-contents.php:183,
5278
  #: src/templates/wp-admin/settings/tab-backups.php:74
5279
  msgid "This feature requires %s version %s or later"
5280
+ msgstr "Този компонент изисква версия %s %s или по-нова версия"
5281
 
5282
  #: src/restorer.php:733
5283
  msgid "Failed to unpack the archive"
5284
+ msgstr "Неуспешно разопаковане на архива"
5285
 
5286
  #: src/class-updraftplus.php:1509, src/methods/cloudfiles.php:416
5287
  msgid "Error - failed to download the file"
5288
+ msgstr "Грешка - не успя да изтеглите файла"
5289
 
5290
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
5291
  #: src/templates/wp-admin/settings/tab-backups.php:59
5292
  msgid "Rescan local folder for new backup sets"
5293
+ msgstr "Преименувай локалната папка за нови комплекти за архивиране"
5294
 
5295
  #: src/udaddons/updraftplus-addons.php:301
5296
  msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
5297
+ msgstr "Трябва да актуализирате UpdraftPlus, за да се уверите, че имате версия, която е тествана за съвместимост."
5298
 
5299
  #: src/udaddons/updraftplus-addons.php:301
5300
  msgid "It has been tested up to version %s."
5301
+ msgstr "Тестван е до версия %s."
5302
 
5303
  #: src/udaddons/updraftplus-addons.php:301
5304
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
5305
+ msgstr "Инсталираната версия на UpdraftPlus backup/Restore не е тествана на вашата версия на WordPress (%s)."
5306
 
5307
  #: src/addons/sftp.php:526
5308
  msgid "password/key"
5309
+ msgstr "парола/ключ"
5310
 
5311
  #: src/addons/migrator.php:1788, src/addons/sftp.php:463, src/admin.php:874,
5312
  #: src/admin.php:5499, src/templates/wp-admin/settings/temporary-clone.php:63
5313
  msgid "Key"
5314
+ msgstr "Ключ"
5315
 
5316
  #: src/addons/sftp.php:457, src/addons/sftp.php:458
5317
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
5318
+ msgstr "Вашето потребителско име може да е или с парола, или ключ- трябва само да въведете едно, а не и двете."
5319
 
5320
  #: src/addons/sftp.php:338
5321
  msgid "The key provided was not in a valid format, or was corrupt."
5322
+ msgstr "Предоставеният ключ не е във валиден формат или е повреден."
5323
 
5324
  #: src/addons/sftp.php:54
5325
  msgid "SCP/SFTP password/key"
5326
+ msgstr "SCP/SFTP парола/ключ"
5327
 
5328
  #: src/addons/wp-cli.php:445, src/admin.php:4232
5329
  msgid "Files backup (created by %s)"
5330
+ msgstr "Архивиране на файлове (създадено от %s)"
5331
 
5332
  #: src/addons/wp-cli.php:445, src/admin.php:4232
5333
  msgid "Files and database WordPress backup (created by %s)"
5334
+ msgstr "Архивни файлове и база данни на WordPress (създадени от %s)"
5335
 
5336
  #: src/addons/importer.php:276, src/admin.php:4226,
5337
  #: src/includes/class-backup-history.php:506
5338
  msgid "Backup created by: %s."
5339
+ msgstr "Архивирането е създадено от: %s."
5340
 
5341
  #: src/addons/wp-cli.php:428, src/admin.php:4186
5342
  msgid "Database (created by %s)"
5343
+ msgstr "База данни (създадена от %s)"
5344
 
5345
  #: src/addons/wp-cli.php:426, src/admin.php:4180, src/admin.php:4228
5346
  msgid "unknown source"
5347
+ msgstr "неизвестен източник"
5348
 
5349
  #: src/templates/wp-admin/advanced/site-info.php:104,
5350
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:56,
5351
  #: src/templates/wp-admin/settings/tab-backups.php:60
5352
  msgid "Rescan remote storage"
5353
+ msgstr "Повторно сканиране на отдалечено хранилище"
5354
 
5355
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:51,
5356
  #: src/templates/wp-admin/settings/tab-backups.php:55
5357
  msgid "Upload backup files"
5358
+ msgstr "Качване на архивни файлове"
5359
 
5360
  #: src/admin.php:2467
5361
  msgid "This backup was created by %s, and can be imported."
5362
+ msgstr "Това архивиране е създадено от %s и може да бъде импортирано."
5363
 
5364
  #: src/admin.php:1217
5365
  msgid "Read this page for a guide to possible causes and how to fix it."
5366
+ msgstr "Прочетете тази страница за ръководство за възможните причини и как да го поправите."
5367
 
5368
  #: src/admin.php:1217
5369
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
5370
+ msgstr "WordPress има номер (%d) от планирани задачи, които са просрочени. Освен ако това не е сайт за разработка, това вероятно означава, че планировчика във вашия WordPress инсталиране не работи."
5371
 
5372
  #: src/admin.php:837, src/includes/class-backup-history.php:513
5373
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
5374
+ msgstr "Ако това е резервно копие, създадено от друг резервен плъгин, updraftPlus Premium може да е в състояние да ви помогне."
5375
 
5376
  #: src/admin.php:836
5377
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
5378
+ msgstr "Въпреки това, UpdraftPlus архивите са стандартни ZIP / SQL файлове - така че ако сте сигурни, че файлът ви има правилния формат, можете да го преименувате, за да съответства на този модел."
5379
 
5380
  #: src/admin.php:836, src/admin.php:837,
5381
  #: src/includes/class-backup-history.php:513
5382
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
5383
+ msgstr "Този файл не изглежда да бъде Backup архив UpdraftPlus (такива файлове са .zip или .gz файлове, които имат име като: backup_(time)__(име на сайта) _(код)__(тип).( (напр. цип|gz))."
5384
 
5385
  #: src/admin.php:4229, src/includes/class-wpadmin-commands.php:161,
5386
  #: src/restorer.php:2352
5387
  msgid "Backup created by unknown source (%s) - cannot be restored."
5388
+ msgstr "Архивирането, създадено от неизвестен източник (%s) - не може да бъде възстановено."
5389
 
5390
  #: src/restorer.php:1500, src/restorer.php:1548
5391
  msgid "The WordPress content folder (wp-content) was not found in this zip file."
5392
+ msgstr "Папката със съдържание на WordPress (wp-съдържание) не е намерена в този zip файл."
5393
 
5394
  #: src/restorer.php:1395
5395
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
5396
+ msgstr "Тази версия на UpdraftPlus не знае как да се справи с този тип чуждестранен архив"
5397
 
5398
  #: src/methods/dropbox.php:373
5399
  msgid "%s returned an unexpected HTTP response: %s"
5400
+ msgstr "%s върна неочакван HTTP отговор: %s"
5401
 
5402
  #: src/addons/sftp.php:1067
5403
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
5404
+ msgstr "Модулът UpdraftPlus за този метод за достъп до файлове (%s) не поддържа списък на файлове"
5405
 
5406
  #: src/addons/backblaze.php:601, src/methods/cloudfiles.php:232,
5407
  #: src/methods/dropbox.php:355, src/methods/openstack-base.php:117
5408
  msgid "No settings were found"
5409
+ msgstr "Не са намерени настройки"
5410
 
5411
  #: src/includes/class-backup-history.php:682
5412
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
5413
+ msgstr "Едно или повече архиви са добавени от сканирането за отдалечено съхранение; имайте предвид, че тези архиви няма да бъдат автоматично изтрити чрез настройките за \"запазване\"; ако/, когато искате да ги изтриете, трябва да го направите ръчно."
5414
 
5415
  #: src/admin.php:803
5416
  msgid "Rescanning remote and local storage for backup sets..."
5417
+ msgstr "Повторно сканиране на отдалечено и локално хранилище за резервни комплекти..."
5418
 
5419
  #: src/addons/googlecloud.php:1043, src/addons/googlecloud.php:1056,
5420
  #: src/addons/s3-enhanced.php:59, src/addons/s3-enhanced.php:69
5421
  msgid "(Read more)"
5422
+ msgstr "Прочети повече"
5423
 
5424
  #: src/addons/reporting.php:510
5425
  msgid "Log all messages to syslog (only server admins are likely to want this)"
5426
+ msgstr "Влезте всички съобщения в syslog (само администраторите на сървъра вероятно искат това)"
5427
 
5428
  #: src/addons/morefiles.php:409
5429
  msgid "No backup of location: there was nothing found to back up"
5430
+ msgstr "Няма резервно копие на местоположението: не е намерено нищо за архивиране"
5431
 
5432
  #: src/addons/moredatabase.php:236, src/addons/morefiles.php:310,
5433
  #: src/addons/morefiles.php:898, src/addons/reporting.php:535
5434
  msgid "Remove"
5435
+ msgstr "Премахни"
5436
 
5437
  #: src/methods/s3.php:897
5438
  msgid "Other %s FAQs."
5439
+ msgstr "Други често задавани въпроси за %s."
5440
 
5441
  #: src/templates/wp-admin/settings/form-contents.php:305
5442
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
5443
+ msgstr "Проверете това, за да получите повече информация и имейли за процеса на архивиране - полезно, ако нещо се обърка."
5444
 
5445
  #: src/addons/morefiles.php:347, src/admin.php:3987
5446
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
5447
+ msgstr "Ако въведете няколко файла / директории, разделете ги със запетаи. За обекти на най-горното ниво можете да използвате * в началото или края на записа като заместващ символ."
5448
 
5449
  #: src/includes/class-filesystem-functions.php:285, src/methods/ftp.php:343,
5450
  #: src/restorer.php:2383
5451
  msgid "Your hosting company must enable these functions before %s can work."
5452
+ msgstr "Вашата хостинг компания трябва да разреши тези функции, преди %s да може да работи."
5453
 
5454
  #: src/includes/class-filesystem-functions.php:285, src/methods/ftp.php:343
5455
  msgid "Your web server's PHP installation has these functions disabled: %s."
5456
+ msgstr "PHP инсталацията на вашия уеб сървър е забранена: %s."
5457
 
5458
  #: src/methods/ftp.php:340
5459
  msgid "encrypted FTP (explicit encryption)"
5460
+ msgstr "криптиран FTP (изрично шифроване)"
5461
 
5462
  #: src/methods/ftp.php:339
5463
  msgid "encrypted FTP (implicit encryption)"
5464
+ msgstr "криптиран FTP (подразбиращ се шифроване)"
5465
 
5466
  #: src/methods/ftp.php:338
5467
  msgid "regular non-encrypted FTP"
5468
+ msgstr "редовен нешифрован FTP"
5469
 
5470
  #: src/restorer.php:2588
5471
  msgid "Backup created by:"
5472
+ msgstr "Архивиране, създадено от:"
5473
 
5474
  #: src/udaddons/options.php:496
5475
  msgid "Available to claim on this site"
5476
+ msgstr "Налични за предявяване на претенция на този сайт"
5477
 
5478
  #: src/udaddons/updraftplus-addons.php:330
5479
  msgid "To maintain your access to support, please renew."
5480
+ msgstr "За да поддържате достъпа си до поддръжка, моля подновите."
5481
 
5482
  #: src/udaddons/updraftplus-addons.php:330
5483
  msgid "Your paid access to UpdraftPlus support will soon expire."
5484
+ msgstr "Вашият платен достъп до поддръжката на UpdraftPlus скоро ще изтече."
5485
 
5486
  #: src/udaddons/updraftplus-addons.php:328
5487
  msgid "To regain your access, please renew."
5488
+ msgstr "За да си възвърнете достъпа, моля подновите."
5489
 
5490
  #: src/udaddons/updraftplus-addons.php:328
5491
  msgid "Your paid access to UpdraftPlus support has expired."
5492
+ msgstr "Платеният ви достъп до поддръжката на UpdraftPlus е изтекъл."
5493
 
5494
  #: src/udaddons/updraftplus-addons.php:320
5495
  msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
5496
+ msgstr "Вашият платен достъп до актуализациите на UpdraftPlus за този сайт скоро ще изтече."
5497
 
5498
  #: src/udaddons/updraftplus-addons.php:318,
5499
  #: src/udaddons/updraftplus-addons.php:320
5500
  msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
5501
+ msgstr "За да запазите достъпа си и да поддържате достъп до актуализации (включително бъдещите функции и съвместимост с бъдещите версии на WordPress) и поддръжка, моля поднови."
5502
 
5503
  #: src/udaddons/updraftplus-addons.php:318
5504
  msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
5505
+ msgstr "Вашият платен достъп до актуализациите на UpdraftPlus за %s на добавките %s на този сайт скоро ще изтече."
5506
 
5507
  #: src/udaddons/updraftplus-addons.php:314
5508
  msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
5509
+ msgstr "Платеният ви достъп до актуализациите на UpdraftPlus за %s добавките на този сайт е изтекъл."
5510
 
5511
  #: src/udaddons/updraftplus-addons.php:308,
5512
  #: src/udaddons/updraftplus-addons.php:314
5513
  msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
5514
+ msgstr "За да си възвърнете достъпа до актуализации (включително бъдещите функции и съвместимост с бъдещите версии на WordPress) и поддръжка, моля поднови."
5515
 
5516
  #: src/udaddons/updraftplus-addons.php:308
5517
  msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
5518
+ msgstr "Платеният ви достъп до актуализациите на UpdraftPlus за този сайт е изтекъл. Вече няма да получавате актуализации на UpdraftPlus."
5519
 
5520
  #: src/udaddons/updraftplus-addons.php:271
5521
  msgid "Dismiss from main dashboard (for %s weeks)"
5522
+ msgstr "Отхвърляне от главното табло (за %s седмици)"
5523
 
5524
  #: src/includes/class-filesystem-functions.php:336
5525
  msgid "The attempt to undo the double-compression succeeded."
5526
+ msgstr "Опитът за отмяна на двойното компресиране е успешен."
5527
 
5528
  #: src/includes/class-filesystem-functions.php:312,
5529
  #: src/includes/class-filesystem-functions.php:334
5530
  msgid "The attempt to undo the double-compression failed."
5531
+ msgstr "Опитът за отмяна на двойното компресиране е неуспешен."
5532
 
5533
  #: src/includes/class-filesystem-functions.php:305
5534
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
5535
+ msgstr "Файлът на базата данни изглежда е компресиран два пъти - вероятно сайтът, който сте го изтеглили, е конфигуриран погрешно уеб сървър."
5536
 
5537
  #: src/includes/class-wpadmin-commands.php:371
5538
  msgid "Constants"
5539
+ msgstr "Константи"
5540
 
5541
  #: src/backup.php:1688
5542
  msgid "Failed to open database file for reading:"
5543
+ msgstr "Грешка при отваряне на файла на базата данни за четене:"
5544
 
5545
  #: src/backup.php:1499
5546
  msgid "No database tables found"
5547
+ msgstr "Не са намерени таблици от база данни"
5548
 
5549
  #: src/backup.php:1497
5550
  msgid "please wait for the rescheduled attempt"
5551
+ msgstr "моля изчакайте пренасрочвания опит"
5552
 
5553
  #: src/addons/reporting.php:232
5554
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
5555
+ msgstr "Имайте предвид, че предупредителните съобщения са консултантски - процесът на архивиране не спира за тях. Вместо това те предоставят информация, която може да ви бъде полезна, или която може да покаже източника на проблема, ако архивирането не е успешно."
5556
 
5557
  #: src/addons/onedrive.php:112, src/methods/dropbox.php:265
5558
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
5559
+ msgstr "Акаунтът е пълен: вашият %s акаунт има само %d байта, но файлът, който трябва да бъде качен, има %d байта (общ размер: %d байта)"
5560
 
5561
  #: src/udaddons/updraftplus-addons.php:537,
5562
  #: src/udaddons/updraftplus-addons.php:631
5563
  msgid "Errors occurred:"
5564
+ msgstr "Възникнаха грешки:"
5565
 
5566
  #: src/addons/wp-cli.php:636, src/admin.php:4771
5567
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
5568
+ msgstr "Следвайте тази връзка, за да изтеглите регистрационния файл за това възстановяване (необходим за всички заявки за поддръжка)."
5569
 
5570
  #: src/templates/wp-admin/settings/form-contents.php:346
5571
  msgid "See this FAQ also."
5572
+ msgstr "Вижте и този ЧЗВ."
5573
 
5574
  #: src/templates/wp-admin/settings/form-contents.php:135
5575
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
5576
+ msgstr "Ако изберете да не се използва отдалечено хранилище, архивите остават на уеб сървъра. Това не се препоръчва (освен ако не планирате ръчно да ги копирате на компютъра си), тъй като загубата на уеб сървър би означавала загубата на вашия уеб сайт и резервните копия в едно събитие."
5577
 
5578
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:36
5579
  msgid "Retrieving (if necessary) and preparing backup files..."
5580
+ msgstr "Извличане (ако е необходимо) и подготовка на архивни файлове..."
5581
 
5582
  #: src/includes/class-wpadmin-commands.php:132
5583
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
5584
+ msgstr "Настройката на PHP на този уеб сървър позволява само %s секунди за PHP да се изпълни и не позволява това ограничение да се повиши. Ако имате много данни за импортиране и ако операцията по възстановяване изтекла, тогава ще трябва да попитате вашата уеб хостинг компания за начини да повишите това ограничение (или да опитате възстановяването на части)."
5585
 
5586
  #: src/restorer.php:1387
5587
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
5588
+ msgstr "Съществуващи нераздвижени папки от предишна възстановяване съществуват (моля, използвайте бутона \"Изтрий старите директории\", за да ги изтриете, преди да опитате отново): %s"
5589
 
5590
  #: src/admin.php:1189, src/class-updraftplus.php:918
5591
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
5592
+ msgstr "Времето, позволено за WordPress плъгини, които да се изпълняват, е много ниско (%s секунди) - трябва да го увеличите, за да се избегнат грешки в архивирането поради времето за изчакване (консултирайте се с уеб хостинг компанията за повече помощ - това е настройката на max_execution_time PHP; препоръчителната стойност е %s секунди или повече)"
5593
 
5594
  #: src/addons/migrator.php:304
5595
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
5596
+ msgstr "Забранено е разширението: %s: активирайте го отново ръчно, когато сте готови."
5597
 
5598
  #: src/addons/sftp.php:822, src/addons/sftp.php:825,
5599
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
5600
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
5601
+ msgstr "Времето за връзка %s изтече; ако сте въвели сървъра правилно, то това обикновено се дължи на защитна стена, блокираща връзката - трябва да проверите с вашата уеб хостинг компания."
5602
 
5603
  #: src/addons/moredatabase.php:144, src/admin.php:1691
5604
  msgid "Messages:"
5605
+ msgstr "Съобщения:"
5606
 
5607
  #: src/restorer.php:3018
5608
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
5609
+ msgstr "Беше намерен SQL ред, който е по-голям от максималния размер на пакета и не може да бъде разделен; този ред няма да бъде обработен, но ще бъде премахнат: %s"
5610
 
5611
  #: src/restorer.php:1130
5612
  msgid "The directory does not exist"
5613
+ msgstr "Директорията не съществува"
5614
 
5615
  #: src/addons/cloudfiles-enhanced.php:298
5616
  msgid "New User's Email Address"
5617
+ msgstr "Имейл адрес на нов потребител"
5618
 
5619
  #: src/addons/cloudfiles-enhanced.php:295
5620
  msgid "New User's Username"
5621
+ msgstr "Ново потребителско име"
5622
 
5623
  #: src/addons/cloudfiles-enhanced.php:292
5624
  msgid "Admin API Key"
5625
+ msgstr "АПИ ключ за администратор"
5626
 
5627
  #: src/addons/cloudfiles-enhanced.php:289
5628
  msgid "Admin Username"
5629
+ msgstr "Потребителско име на администратор"
5630
 
5631
  #: src/addons/cloudfiles-enhanced.php:284
5632
  msgid "US or UK Rackspace Account"
5633
+ msgstr "Сащ или Uk Rackspace акаунт"
5634
 
5635
  #: src/addons/cloudfiles-enhanced.php:276
5636
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
5637
+ msgstr "Въведете потребителското си име/ КЛЮЧ за API на Rackspace (така че Rackspace да удостовери вашето разрешение за създаване на нови потребители) и въведете ново (уникално) потребителско име и имейл адрес за новия потребител и име на контейнер."
5638
 
5639
  #: src/addons/cloudfiles-enhanced.php:273
5640
  msgid "Create new API user and container"
5641
+ msgstr "Създаване на нов потребител и контейнер за API"
5642
 
5643
  #: src/addons/cloudfiles-enhanced.php:205
5644
  msgid "API Key: %s"
5645
+ msgstr "API ключ: %s"
5646
 
5647
  #: src/addons/cloudfiles-enhanced.php:205
5648
  msgid "Password: %s"
5649
+ msgstr "Парола: %s"
5650
 
5651
  #: src/addons/cloudfiles-enhanced.php:205, src/addons/s3-enhanced.php:332
5652
  msgid "Username: %s"
5653
+ msgstr "Потребител: %s"
5654
 
5655
  #: src/addons/cloudfiles-enhanced.php:164,
5656
  #: src/addons/cloudfiles-enhanced.php:167,
5659
  #: src/addons/cloudfiles-enhanced.php:190,
5660
  #: src/addons/cloudfiles-enhanced.php:194
5661
  msgid "Cloud Files operation failed (%s)"
5662
+ msgstr "Операцията за файлове в облака е неуспешна (%s)"
5663
 
5664
  #: src/addons/cloudfiles-enhanced.php:162
5665
  msgid "Conflict: that user or email address already exists"
5666
+ msgstr "Конфликт: този потребител или имейл адрес вече съществува"
5667
 
5668
  #: src/addons/cloudfiles-enhanced.php:94
5669
  msgid "You need to enter a valid new email address"
5670
+ msgstr "Трябва да въведете валиден нов имейл адрес"
5671
 
5672
  #: src/addons/cloudfiles-enhanced.php:90
5673
  msgid "You need to enter a container"
5674
+ msgstr "Трябва да въведете контейнер"
5675
 
5676
  #: src/addons/cloudfiles-enhanced.php:87
5677
  msgid "You need to enter a new username"
5678
+ msgstr "Трябва да въведете ново потребителско име"
5679
 
5680
  #: src/addons/cloudfiles-enhanced.php:84
5681
  msgid "You need to enter an admin API key"
5682
+ msgstr "Трябва да въведете ключ за api на администратор"
5683
 
5684
  #: src/addons/cloudfiles-enhanced.php:81
5685
  msgid "You need to enter an admin username"
5686
+ msgstr "Трябва да въведете потребителско име на администратор"
5687
 
5688
  #: src/addons/cloudfiles-enhanced.php:67
5689
  msgid "Create a new API user with access to only this container (rather than your whole account)"
5690
+ msgstr "Създаване на нов потребител на API с достъп само до този контейнер (а не целия ви профил)"
5691
 
5692
  #: src/addons/cloudfiles-enhanced.php:38
5693
  msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
5694
+ msgstr "Добавя подобрени възможности за потребителите на Rackspace Cloud Files"
5695
 
5696
  #: src/addons/cloudfiles-enhanced.php:37
5697
  msgid "Rackspace Cloud Files, enhanced"
5698
+ msgstr "Подобрени файлове с облак rackspace"
5699
 
5700
  #: src/addons/cloudfiles-enhanced.php:305, src/methods/cloudfiles-new.php:142,
5701
  #: src/methods/cloudfiles.php:495
5702
  msgid "Cloud Files Container"
5703
+ msgstr "Контейнер за файлове в облака"
5704
 
5705
  #: src/methods/cloudfiles-new.php:137, src/methods/cloudfiles.php:490
5706
  msgid "Cloud Files API Key"
5707
+ msgstr "Клавиш за API за файлове в облака"
5708
 
5709
  #: src/methods/cloudfiles-new.php:132
5710
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
5711
+ msgstr "За да създадете нов подпотребител и API за Rackspace API, който има достъп само до този контейнер rackspace, използвайте тази добавка."
5712
 
5713
  #: src/methods/cloudfiles-new.php:129
5714
  msgid "Cloud Files Username"
5715
+ msgstr "Потребителско име на файловете в облака"
5716
 
5717
  #: src/addons/cloudfiles-enhanced.php:54, src/methods/cloudfiles-new.php:161
5718
  msgid "London (LON)"
5719
+ msgstr "Лондон (LON)"
5720
 
5721
  #: src/addons/cloudfiles-enhanced.php:53, src/methods/cloudfiles-new.php:160
5722
  msgid "Hong Kong (HKG)"
5723
+ msgstr "Хонконг (HKG)"
5724
 
5725
  #: src/addons/cloudfiles-enhanced.php:52, src/methods/cloudfiles-new.php:159
5726
  msgid "Northern Virginia (IAD)"
5727
+ msgstr "Северна Вирджиния (IAD)"
5728
 
5729
  #: src/addons/cloudfiles-enhanced.php:51, src/methods/cloudfiles-new.php:158
5730
  msgid "Chicago (ORD)"
5731
+ msgstr "Чикаго (ОРИЕНТА)"
5732
 
5733
  #: src/addons/cloudfiles-enhanced.php:50, src/methods/cloudfiles-new.php:157
5734
  msgid "Sydney (SYD)"
5735
+ msgstr "Сидни (СИД)"
5736
 
5737
  #: src/addons/cloudfiles-enhanced.php:49, src/methods/cloudfiles-new.php:156
5738
  msgid "Dallas (DFW) (default)"
5739
+ msgstr "Далас (DFW) (по подразбиране)"
5740
 
5741
  #: src/addons/cloudfiles-enhanced.php:301, src/methods/cloudfiles-new.php:119
5742
  msgid "Cloud Files Storage Region"
5743
+ msgstr "Регион за съхранение на файлове в облака"
5744
 
5745
  #: src/methods/cloudfiles-new.php:112
5746
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
5747
+ msgstr "Сметките, създадени на rackspacecloud.com са в САЩ; rackspace.co.uk са базирани на"
5748
 
5749
  #: src/methods/cloudfiles-new.php:110
5750
  msgid "US or UK-based Rackspace Account"
5751
+ msgstr "В САЩ или великобритания акаунт в Rackspace"
5752
 
5753
  #: src/addons/cloudfiles-enhanced.php:285, src/methods/cloudfiles-new.php:110
5754
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
5755
+ msgstr "Създадените на rackspacecloud.com акаунти са американски акаунти; rackspace.co.uk са сметките в Обединеното кралство."
5756
 
5757
  #: src/addons/cloudfiles-enhanced.php:160, src/addons/s3-enhanced.php:237,
5758
  #: src/methods/cloudfiles-new.php:37, src/methods/openstack-base.php:489,
5759
  #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:512,
5760
  #: src/methods/openstack2.php:33
5761
  msgid "Authorisation failed (check your credentials)"
5762
+ msgstr "Неуспешно разрешение (проверете вашите идентификационни данни)"
5763
 
5764
  #: src/includes/class-commands.php:796, src/methods/updraftvault.php:667,
5765
  #: src/udaddons/options.php:219
5766
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
5767
+ msgstr "Възникна неизвестна грешка при опит за свързване с UpdraftPlus.Com"
5768
 
5769
  #: src/admin.php:851, src/central/bootstrap.php:580
5770
  msgid "Create"
5771
+ msgstr "Създаване"
5772
 
5773
  #: src/admin.php:812
5774
  msgid "Trying..."
5775
+ msgstr "Опитва..."
5776
 
5777
  #: src/admin.php:811
5778
  msgid "The new user's RackSpace console password is (this will not be shown again):"
5779
+ msgstr "Паролата на новата конзола RackSpace на потребителя е (това няма да се показва отново):"
5780
 
5781
  #: src/admin.php:822, src/restorer.php:259
5782
  msgid "Error data:"
5783
+ msgstr "Данни за грешка:"
5784
 
5785
  #: src/admin.php:4864
5786
  msgid "Backup does not exist in the backup history"
5787
+ msgstr "Архивирането не съществува в хронологията на архивирането"
5788
 
5789
  #: src/admin.php:3281
5790
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
5791
+ msgstr "Вашата WordPress инсталация има стари директории от своето състояние, преди да сте възстановени / мигрирали (техническа информация: те са наставени с -old). Трябва да натиснете този бутон, за да ги изтриете веднага след като сте проверили, че възстановяването работи."
5792
 
5793
  #: src/restorer.php:2673
5794
  msgid "Split line to avoid exceeding maximum packet size"
5795
+ msgstr "Разделяне на линия, за да се избегне превишаване на максималния размер на пакета"
5796
 
5797
  #: src/restorer.php:2532
5798
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
5799
+ msgstr "Вашата база данни потребител няма разрешение да пуснете таблици. Ще се опитаме да възстановим, като просто изпразним масите; това трябва да работи толкова дълго, колкото се възстановява от версия на WordPress със същата структура на базата данни (%s)"
5800
 
5801
  #: src/restorer.php:730
5802
  msgid "Could not move the files into place. Check your file permissions."
5803
+ msgstr "Файловете не могат да бъдат премествани на място. Проверете разрешенията за файловете си."
5804
 
5805
  #: src/restorer.php:729
5806
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
5807
+ msgstr "Не може да се преместят нови файлове на място. Проверете папката си wp-content/upgrade."
5808
 
5809
  #: src/restorer.php:727
5810
  msgid "Could not move old files out of the way."
5811
+ msgstr "Не може да се преместят старите файлове по пътя."
5812
 
5813
  #: src/restorer.php:723
5814
  msgid "Moving old data out of the way..."
5815
+ msgstr "Да се махна от пътя..."
5816
 
5817
  #: src/addons/reporting.php:495
5818
  msgid "Add another address..."
5819
+ msgstr "Добавяне на друг адрес..."
5820
 
5821
  #: src/addons/reporting.php:480
5822
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
5823
+ msgstr "Въведете адреси тук, за да им изпратите отчет, когато заданието за архивиране завърши."
5824
 
5825
  #: src/addons/reporting.php:454
5826
  msgid "Email reports"
5827
+ msgstr "Имейл отчети"
5828
 
5829
  #: src/class-updraftplus.php:1886, src/class-updraftplus.php:1891
5830
  msgid "%s checksum: %s"
5831
+ msgstr "%s контролна сума: %s"
5832
 
5833
  #: src/class-updraftplus.php:1822, src/class-updraftplus.php:1824
5834
  msgid "files: %s"
5835
+ msgstr "файлове: %s"
5836
 
5837
  #: src/addons/reporting.php:406
5838
  msgid "Use the \"Reporting\" section to configure the email addresses to be used."
5839
+ msgstr "Използвайте секцията \"Отчитане\", за да конфигурирате имейл адресите, които ще се използват."
5840
 
5841
  #: src/addons/reporting.php:282
5842
  msgid "Debugging information"
5843
+ msgstr "Информация за отстраняване на грешки"
5844
 
5845
  #: src/addons/reporting.php:237, src/admin.php:4146
5846
  msgid "Uploaded to:"
5847
+ msgstr "Kачени в:"
5848
 
5849
  #: src/addons/reporting.php:236
5850
  msgid "Time taken:"
5851
+ msgstr "Време:"
5852
 
5853
  #: src/addons/reporting.php:227
5854
  msgid "Warnings"
5855
+ msgstr "Предупреждения"
5856
 
5857
  #: src/addons/reporting.php:212
5858
  msgid "Errors"
5859
+ msgstr "Грешки"
5860
 
5861
  #: src/addons/reporting.php:209
5862
  msgid "Errors / warnings:"
5863
+ msgstr "Грешки / предупреждения:"
5864
 
5865
  #: src/addons/morefiles.php:143, src/addons/morefiles.php:144,
5866
  #: src/addons/reporting.php:198
5867
  msgid "Contains:"
5868
+ msgstr "Съдържание:"
5869
 
5870
  #: src/addons/reporting.php:197
5871
  msgid "Backup began:"
5872
+ msgstr "Архивиране започна:"
5873
 
5874
  #: src/addons/reporting.php:185
5875
  msgid "Backup Report"
5876
+ msgstr "Отчет за архивиране"
5877
 
5878
  #: src/addons/reporting.php:180
5879
  msgid "%d hours, %d minutes, %d seconds"
5880
+ msgstr "%d часа, %d минути, %d секунди"
5881
 
5882
  #: src/addons/reporting.php:164
5883
  msgid "%d errors, %d warnings"
5884
+ msgstr "%d грешки, %d предупреждения"
5885
 
5886
  #: src/methods/dropbox.php:751, src/methods/dropbox.php:772
5887
  msgid "%s authentication"
5888
+ msgstr "Удостоверяване на %s"
5889
 
5890
  #: src/addons/onedrive.php:875, src/class-updraftplus.php:543,
5891
  #: src/methods/dropbox.php:238, src/methods/dropbox.php:751,
5892
  #: src/methods/dropbox.php:772, src/methods/dropbox.php:786,
5893
  #: src/methods/dropbox.php:799, src/methods/dropbox.php:941
5894
  msgid "%s error: %s"
5895
+ msgstr "%s грешка: %s"
5896
 
5897
  #: src/addons/googlecloud.php:985, src/methods/dropbox.php:576
5898
  msgid "%s logo"
5899
+ msgstr "Емблема на %s"
5900
 
5901
  #: src/methods/dropbox.php:283
5902
  msgid "did not return the expected response - check your log file for more details"
5903
+ msgstr "не връща очаквания отговор - проверете регистрационния файл за повече подробности"
5904
 
5905
  #: src/methods/s3.php:322
5906
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
5907
+ msgstr "Необходимият PHP модул %s не е инсталиран - попитайте вашата уеб хостинг компания, за да го разреши"
5908
 
5909
  #: src/methods/email.php:97
5910
  msgid "For more options, use the \"%s\" add-on."
5911
+ msgstr "За повече опции използвайте добавката \"%s\"."
5912
 
5913
  #: src/methods/email.php:96
5914
  msgid "Your site's admin email address (%s) will be used."
5915
+ msgstr "Ще бъде използван администраторския имейл адрес на вашия сайт (%s)."
5916
 
5917
  #: src/admin.php:861, src/admin.php:3017, src/methods/updraftvault.php:334,
5918
  #: src/methods/updraftvault.php:389,
5919
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5920
  msgid "Connect"
5921
+ msgstr "Свързване"
5922
 
5923
  #: src/templates/wp-admin/settings/form-contents.php:263
5924
  msgid "For more reporting features, use the Reporting add-on."
5925
+ msgstr "За повече функции за отчитане използвайте добавката за отчитане."
5926
 
5927
  #: src/class-updraftplus.php:4575
5928
  msgid "(version: %s)"
5929
+ msgstr "(версия: %s)"
5930
 
5931
  #: src/admin.php:800
5932
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5933
+ msgstr "Имайте предвид, че пощенски сървъри са склонни да имат ограничения за размера; обикновено около %s Мб; резервни копия, по-големи от всички ограничения, най-вероятно няма да пристигнат."
5934
 
5935
  #: src/addons/reporting.php:541, src/admin.php:799
5936
  msgid "When the Email storage method is enabled, also send the backup"
5937
+ msgstr "Когато е активиран имейл съхранение метод, също така изпрати резервно копие"
5938
 
5939
  #: src/addons/reporting.php:196, src/class-updraftplus.php:3478
5940
  msgid "Latest status:"
5941
+ msgstr "Последно състояние:"
5942
 
5943
  #: src/class-updraftplus.php:3477
5944
  msgid "Backup contains:"
5945
+ msgstr "Архивирането съдържа:"
5946
 
5947
  #: src/class-updraftplus.php:3434
5948
  msgid "Backed up: %s"
5949
+ msgstr "Резервно копие: %s"
5950
 
5951
  #: src/addons/reporting.php:279, src/class-updraftplus.php:3428
5952
  msgid "The log file has been attached to this email."
5953
+ msgstr "Регистрационният файл е прикачен към този имейл."
5954
 
5955
  #: src/class-updraftplus.php:3392
5956
  msgid "Unknown/unexpected error - please raise a support request"
5957
+ msgstr "Неизвестна/неочаквана грешка - моля, повдигнете заявка за поддръжка"
5958
 
5959
  #: src/class-updraftplus.php:3387
5960
  msgid "Database only (files were not part of this particular schedule)"
5961
+ msgstr "Само за база данни (файловете не са част от този конкретен график)"
5962
 
5963
  #: src/class-updraftplus.php:3387
5964
  msgid "Database (files backup has not completed)"
5965
+ msgstr "База данни (архивирането на файлове не е завършено)"
5966
 
5967
  #: src/class-updraftplus.php:3384
5968
  msgid "Files only (database was not part of this particular schedule)"
5969
+ msgstr "Само файлове (базата данни не е част от този конкретен график)"
5970
 
5971
  #: src/class-updraftplus.php:3384
5972
  msgid "Files (database backup has not completed)"
5973
+ msgstr "Файлове (архивирането на базата данни не е завършено)"
5974
 
5975
  #: src/admin.php:345, src/class-updraftplus.php:3382
5976
  msgid "Files and database"
5977
+ msgstr "Файлове и база данни"
5978
 
5979
  #: src/options.php:208
5980
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
5981
+ msgstr "(Това важи за всички WordPress резервни плъгини, освен ако те са изрично кодирани за многостранна съвместимост)."
5982
 
5983
  #: src/options.php:208
5984
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to backup (and hence access the data, including passwords, from) and restore (including with customized modifications, e.g. changed passwords) <strong>the entire network</strong>."
5985
+ msgstr "Без да се обновява, UpdraftPlus позволява <strong>на всеки</strong> администратор на блог, който може да променя настройките на плъгин за архивиране (и следователно достъп до данните, включително пароли, от) и възстановяване (включително с персонализирани модификации, например променени пароли) <strong>цялата мрежа</strong>."
5986
 
5987
  #: src/options.php:208
5988
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
5989
+ msgstr "WordPress многостранен сайт се поддържа, с допълнителни функции, от UpdraftPlus Premium, или многостранната добавка."
5990
 
5991
  #: src/options.php:208
5992
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
5993
+ msgstr "Това е WordPress мулти-сайт (a.k.a. мрежова) инсталация."
5994
 
5995
  #: src/options.php:208
5996
  msgid "UpdraftPlus warning:"
5997
+ msgstr "Предупреждение за UpdraftPlus:"
5998
 
5999
  #: src/udaddons/options.php:502, src/udaddons/options.php:502
6000
  msgid "(or connect using the form on this page if you have already purchased it)"
6001
+ msgstr "(или се свържете чрез формуляра на тази страница, ако вече сте го закупили)"
6002
 
6003
  #: src/udaddons/options.php:490
6004
  msgid "please follow this link to update the plugin in order to activate it"
6005
+ msgstr "моля, следвайте тази връзка, за да актуализирате приставката, за да го активирате"
6006
 
6007
  #: src/udaddons/options.php:487
6008
  msgid "please follow this link to update the plugin in order to get it"
6009
+ msgstr "моля, следвайте тази връзка, за да актуализирате плъгина, за да го получите"
6010
 
6011
  #: src/udaddons/options.php:477, src/udaddons/options.php:479
6012
  msgid "latest"
6013
+ msgstr "последни"
6014
 
6015
  #: src/udaddons/options.php:475
6016
  msgid "Your version: %s"
6017
+ msgstr "Вашата версия: %s"
6018
 
6019
  #: src/udaddons/options.php:473, src/udaddons/options.php:473
6020
  msgid "You've got it"
6021
+ msgstr "Вие го имате"
6022
 
6023
  #: src/udaddons/options.php:434
6024
  msgid "UpdraftPlus Support"
6025
+ msgstr "Поддръжка на UpdraftPlus"
6026
 
6027
  #: src/udaddons/options.php:372
6028
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
6029
+ msgstr "Актуализация, съдържаща добавките ви, е достъпна за UpdraftPlus - моля, следвайте този линк, за да го получите."
6030
 
6031
  #: src/udaddons/options.php:361, src/udaddons/updraftplus-addons.php:357
6032
  msgid "UpdraftPlus Addons"
6033
+ msgstr "Добавки за updraftPlus"
6034
 
6035
  #: src/udaddons/options.php:89
6036
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
6037
+ msgstr "Налична е актуализация за UpdraftPlus - моля, следвайте този линк, за да го получите."
6038
 
6039
  #: src/methods/updraftvault.php:746, src/methods/updraftvault.php:761,
6040
  #: src/udaddons/updraftplus-addons.php:1072
6041
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
6042
+ msgstr "UpdraftPlus.Com отговори, но не можахме да го разберем"
6043
 
6044
  #: src/methods/updraftvault.php:758, src/udaddons/updraftplus-addons.php:1068
6045
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
6046
+ msgstr "Имейл адресът и паролата ви не са разпознати от UpdraftPlus.Com"
6047
 
6048
  #: src/includes/updraftplus-login.php:57, src/methods/updraftvault.php:719,
6049
  #: src/udaddons/updraftplus-addons.php:1031
6050
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
6051
+ msgstr "UpdraftPlus.Com върна отговор, който не може да се разбере (данни: %s)"
6052
 
6053
  #: src/udaddons/updraftplus-addons.php:957
6054
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
6055
+ msgstr "UpdraftPlus.Com отговориха, но не разбирахме отговора"
6056
 
6057
  #: src/udaddons/updraftplus-addons.php:955
6058
  msgid "We failed to successfully connect to UpdraftPlus.Com"
6059
+ msgstr "Неуспешно свързване с UpdraftPlus.Com"
6060
 
6061
  #: src/methods/email.php:97,
6062
  #: src/templates/wp-admin/settings/form-contents.php:244,
6063
  #: src/templates/wp-admin/settings/tab-addons.php:230,
6064
  #: src/templates/wp-admin/settings/tab-addons.php:231
6065
  msgid "Reporting"
6066
+ msgstr "Репортаж"
6067
 
6068
  #: src/admin.php:5496
6069
  msgid "Options (raw)"
6070
+ msgstr "Опции (сурови)"
6071
 
6072
  #: src/addons/reporting.php:539, src/admin.php:798
6073
  msgid "Send a report only when there are warnings/errors"
6074
+ msgstr "Изпращане на отчет само когато има предупреждения/грешки"
6075
 
6076
  #: src/restorer.php:2599
6077
  msgid "Content URL:"
6078
+ msgstr "URL адрес на съдържание:"
6079
 
6080
  #: src/restorer.php:727
6081
  msgid "You should check the file ownerships and permissions in your WordPress installation"
6082
+ msgstr "Трябва да проверите собствеността и разрешенията на файловете в wordPress инсталацията"
6083
 
6084
  #: src/templates/wp-admin/settings/form-contents.php:148
6085
  msgid "See also the \"More Files\" add-on from our shop."
6086
+ msgstr "Вижте също и добавката \"Още files\" от нашия магазин."
6087
 
6088
  #: src/backup.php:3339, src/class-updraftplus.php:931
6089
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
6090
+ msgstr "Свободното пространство в хостинг акаунта ви е много ниско - остават само %s Mb"
6091
 
6092
  #: src/class-updraftplus.php:915
6093
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
6094
+ msgstr "Размерът на паметта(RAM) разрешен за PHP е много малък (%s Mb) - трябва да я увеличите, за да избегнете грешки поради недостатъчна памет (консултирайте се с уеб хостинг компанията за повече помощ)"
6095
 
6096
  #: src/udaddons/options.php:525
6097
  msgid "Manage Addons"
6098
+ msgstr "Управление на добавки"
6099
 
6100
  #: src/udaddons/options.php:503
6101
  msgid "Buy It"
6102
+ msgstr "Купи го"
6103
 
6104
  #: src/udaddons/options.php:502
6105
  msgid "Get it from the UpdraftPlus.Com Store"
6106
+ msgstr "Вземете го от UpdraftPlus.Com Store"
6107
 
6108
  #: src/udaddons/options.php:496, src/udaddons/options.php:498
6109
  msgid "activate it on this site"
6110
+ msgstr "активиране на този сайт"
6111
 
6112
  #: src/udaddons/options.php:498
6113
  msgid "You have an inactive purchase"
6114
+ msgstr "Имате неактивна покупка"
6115
 
6116
  #: src/udaddons/options.php:490
6117
  msgid "Assigned to this site"
6118
+ msgstr "Присвоен на този сайт"
6119
 
6120
  #: src/udaddons/options.php:487
6121
  msgid "Available for this site (via your all-addons purchase)"
6122
+ msgstr "Наличен за този сайт (чрез вашата покупка на всички добавки)"
6123
 
6124
  #: src/udaddons/options.php:481
6125
  msgid "(apparently a pre-release or withdrawn release)"
6126
+ msgstr "(очевидно предварително освобождаване или изтеглено издание)"
6127
 
6128
  #: src/udaddons/options.php:436, src/udaddons/options.php:436
6129
  msgid "Go here"
6130
+ msgstr "Отидете тук"
6131
 
6132
  #: src/udaddons/options.php:436, src/udaddons/options.php:436
6133
  msgid "Need to get support?"
6134
+ msgstr "Трябва да получите подкрепа?"
6135
 
6136
  #: src/udaddons/options.php:418
6137
  msgid "An error occurred when trying to retrieve your add-ons."
6138
+ msgstr "Възникна грешка при опит за извличане на добавките."
6139
 
6140
  #: src/udaddons/options.php:304
6141
  msgid "An unknown response was received. Response was:"
6142
+ msgstr "Получен е неизвестен отговор. Отговорът е:"
6143
 
6144
  #: src/udaddons/options.php:303
6145
  msgid "Claim not granted - your account login details were wrong"
6146
+ msgstr "Искането не е предоставено - данните за влизане в профила ви са грешни"
6147
 
6148
  #: src/udaddons/options.php:301
6149
  msgid "Please wait whilst we make the claim..."
6150
+ msgstr "Моля, изчакайте, докато ние се заявя..."
6151
 
6152
  #: src/udaddons/options.php:249
6153
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
6154
+ msgstr "Възникнаха грешки при опит за свързване с UpdraftPlus.Com:"
6155
 
6156
  #: src/udaddons/options.php:244
6157
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
6158
+ msgstr "Понастоящем не сте <strong>свързани към</strong> UpdraftPlus.Com акаунт."
6159
 
6160
  #: src/udaddons/options.php:236
6161
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
6162
+ msgstr "Ако сте закупили нови добавки, следвайте тази връзка, за да обновите връзката си"
6163
 
6164
  #: src/udaddons/options.php:229
6165
  msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
6166
+ msgstr "В момента сте <strong class=\"success\">свързани към</strong> UpdraftPlus.Com акаунт."
6167
 
6168
  #: src/admin.php:3015
6169
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
6170
+ msgstr "Интересувате се от знаейки за вашата UpdraftPlus.Com парола за сигурност? Прочетете за това тук."
6171
 
6172
  #: src/admin.php:3091
6173
  msgid "Forgotten your details?"
6174
+ msgstr "Забравили сте си детайлите?"
6175
 
6176
  #: src/admin.php:3004
6177
  msgid "Not yet got an account (it's free)? Go get one!"
6178
+ msgstr "Все още не е сметка (това е безплатно)? Иди да вземеш един!"
6179
 
6180
  #: src/admin.php:3070
6181
  msgid "Connect with your UpdraftPlus.Com account"
6182
+ msgstr "Свързване с вашия акаунт за UpdraftPlus.Com"
6183
 
6184
  #: src/udaddons/options.php:109
6185
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
6186
+ msgstr "Изглежда, че имате инсталирана updraft плъгин остаряла - може би сте ги объркали?"
6187
 
6188
  #: src/udaddons/options.php:108
6189
  msgid "Go here to begin installing it."
6190
+ msgstr "Отидете тук, за да започнете да го инсталирате."
6191
 
6192
  #: src/udaddons/options.php:108
6193
  msgid "UpdraftPlus is not yet installed."
6194
+ msgstr "UpdraftPlus все още не е инсталиран."
6195
 
6196
  #: src/udaddons/options.php:105
6197
  msgid "Go here to activate it."
6198
+ msgstr "Отидете тук, за да го активирате."
6199
 
6200
  #: src/udaddons/options.php:104
6201
  msgid "UpdraftPlus is not yet activated."
6202
+ msgstr "UpdraftPlus все още не е активиран."
6203
 
6204
  #: src/udaddons/options.php:95, src/udaddons/options.php:97
6205
  msgid "Go here to connect."
6206
+ msgstr "Отидете тук, за да се свържете."
6207
 
6208
  #: src/udaddons/options.php:95
6209
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
6210
+ msgstr "Все още не сте се свързали с вашия акаунт за UpdraftPlus.Com, за да можете да изброите закупените от вас добавки."
6211
 
6212
  #: src/addons/moredatabase.php:313,
6213
  #: src/includes/class-updraftplus-encryption.php:148
6214
  msgid "Without it, encryption will be a lot slower."
6215
+ msgstr "Без него криптирането ще бъде много по-бавно."
6216
 
6217
  #: src/addons/moredatabase.php:313,
6218
  #: src/includes/class-updraftplus-encryption.php:148
6219
  msgid "Your web-server does not have the %s module installed."
6220
+ msgstr "Вашият уеб сървър не е инсталиран модул %s."
6221
 
6222
  #: src/addons/googlecloud.php:1075, src/methods/googledrive.php:1407
6223
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
6224
+ msgstr "<strong>(Изглеждате вече удостоверени,</strong> въпреки че можете да удостоверите отново, за да опресните достъпа си, ако сте имали проблем)."
6225
 
6226
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:78,
6227
  #: src/templates/wp-admin/settings/tab-backups.php:80
6228
  msgid "Drop backup files here"
6229
+ msgstr "Пуснете архивни файлове тук"
6230
 
6231
  #: src/admin.php:810
6232
  msgid "The web server returned an error code (try again, or check your web server logs)"
6233
+ msgstr "Уеб сървърът е върнал код на грешка (опитайте отново или проверете регистрационните файлове на уеб сървъра)"
6234
 
6235
  #: src/admin.php:808
6236
  msgid "The restore operation has begun. Do not close your browser until it reports itself as having finished."
6237
+ msgstr "Операцията по възстановяване започна. Не затваряйте браузъра си, докато не се съобщава като завършен."
6238
 
6239
  #: src/addons/wp-cli.php:116, src/admin.php:805
6240
  msgid "If you exclude both the database and the files, then you have excluded everything!"
6241
+ msgstr "Ако изключите и двете база данни и файловете, тогава сте изключили всичко!"
6242
 
6243
  #: src/restorer.php:2593
6244
  msgid "Site home:"
6245
+ msgstr "Начална страница:"
6246
 
6247
  #: src/addons/morestorage.php:138
6248
  msgid "Remote Storage Options"
6249
+ msgstr "Опции за отдалечено съхранение"
6250
 
6251
  #: src/addons/autobackup.php:364, src/addons/autobackup.php:458
6252
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
6253
+ msgstr "(трупи могат да бъдат намерени в updraftPlus настройки страница както обикновено)..."
6254
 
6255
  #: src/addons/autobackup.php:324, src/addons/autobackup.php:1107
6256
  msgid "Remember this choice for next time (you will still have the chance to change it)"
6257
+ msgstr "Запомни този избор за следващия път (все още ще имаш възможността да го промениш)"
6258
 
6259
  #: src/addons/azure.php:413, src/methods/stream-base.php:152,
6260
  #: src/methods/stream-base.php:157
6261
  msgid "Upload failed"
6262
+ msgstr "Файловете не успяха да се качат"
6263
 
6264
  #: src/templates/wp-admin/settings/form-contents.php:126
6265
  msgid "You can send a backup to more than one destination with an add-on."
6266
+ msgstr "Можете да изпратите резервно копие до повече от една дестинация с добавка."
6267
 
6268
  #: src/admin.php:3561
6269
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
6270
+ msgstr "Забележка: лентата за напредъка по-долу се основава на етапи, а не на време. Не спирайте архивирането просто защото изглежда, че е останала на същото място за известно време - това е нормално."
6271
 
6272
  #: src/admin.php:3425
6273
  msgid "(%s%%, file %s of %s)"
6274
+ msgstr "(%s%, файл %s на %s)"
6275
 
6276
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:1112,
6277
  #: src/addons/lockadmin.php:160
6278
  msgid "Read more about how this works..."
6279
+ msgstr "Прочетете повече за това как работи това..."
6280
 
6281
  #: src/addons/sftp.php:604
6282
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
6283
+ msgstr "Неуспешно: Успяхме да се регистрираме, но не успяхме успешно да създадем файл в това местоположение."
6284
 
6285
  #: src/addons/sftp.php:602
6286
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
6287
+ msgstr "Неуспешно: Успяхме да се регистрираме и да се преместим в указаната директория, но не успяхме да създадем успешно файл в това местоположение."
6288
 
6289
  #: src/addons/sftp.php:488
6290
  msgid "Use SCP instead of SFTP"
6291
+ msgstr "Използвайте SCP вместо SFTP"
6292
 
6293
  #: src/addons/sftp.php:53
6294
  msgid "SCP/SFTP user setting"
6295
+ msgstr "SCP/SFTP потребителска настройка"
6296
 
6297
  #: src/addons/sftp.php:52
6298
  msgid "SCP/SFTP host setting"
6299
+ msgstr "SCP/SFTP хост настройка"
6300
 
6301
  #: src/methods/email.php:67
6302
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
6303
+ msgstr "Опитът за изпращане на архивиране по имейл е неуспешен (вероятно архивирането е твърде голям за този метод)"
6304
 
6305
  #: src/methods/email.php:47
6306
  msgid "Backup is of: %s."
6307
+ msgstr "Архивирането е на: %s."
6308
 
6309
  #: src/admin.php:900
6310
  msgid "%s settings test result:"
6311
+ msgstr "%s резултат от теста:"
6312
 
6313
  #: src/admin.php:4298, src/admin.php:4300
6314
  msgid "(Not finished)"
6315
+ msgstr "(Не е завършено)"
6316
 
6317
  #: src/admin.php:4300
6318
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
6319
+ msgstr "Ако виждате повече архиви, отколкото очаквате, вероятно това е така, защото изтриването на стари комплекти за архивиране не се случва, докато не завърши ново резервно копие."
6320
 
6321
  #: src/templates/wp-admin/settings/form-contents.php:329
6322
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
6323
+ msgstr "Не го <b>поставяйте</b> в директорията си за качвания или плъгини, тъй като това ще доведе до рекурсия (резервни копия на резервни копия на резервни копия на...)."
6324
 
6325
  #: src/templates/wp-admin/settings/form-contents.php:329
6326
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
6327
+ msgstr "Това е мястото, където UpdraftPlus ще напише zip файловете, които създава първоначално. Тази директория трябва да може да се записва от вашия уеб сървър. Тя е относителна спрямо директорията на съдържанието (която по подразбиране се нарича wp-съдържание)."
6328
 
6329
  #: src/admin.php:3526
6330
  msgid "Job ID: %s"
6331
+ msgstr "ИД на задание: %s"
6332
 
6333
  #: src/admin.php:3506
6334
  msgid "last activity: %ss ago"
6335
+ msgstr "последна дейност: преди %ss"
6336
 
6337
  #: src/admin.php:3505
6338
  msgid "next resumption: %d (after %ss)"
6339
+ msgstr "следващото възобновяване: %d (след %ss)"
6340
 
6341
  #: src/admin.php:3488, src/central/bootstrap.php:459,
6342
  #: src/central/bootstrap.php:466, src/methods/updraftvault.php:437,
6343
  #: src/methods/updraftvault.php:483, src/methods/updraftvault.php:566
6344
  msgid "Unknown"
6345
+ msgstr "Неизвестно"
6346
 
6347
  #: src/admin.php:3439
6348
  msgid "Backup finished"
6349
+ msgstr "Архивирането завърши"
6350
 
6351
  #: src/admin.php:3434
6352
  msgid "Waiting until scheduled time to retry because of errors"
6353
+ msgstr "Изчакване до планирано време за повторен опит поради грешки"
6354
 
6355
  #: src/admin.php:3430
6356
  msgid "Pruning old backup sets"
6357
+ msgstr "Резитба стари комплекти за архивиране"
6358
 
6359
  #: src/admin.php:3417
6360
  msgid "Uploading files to remote storage"
6361
+ msgstr "Качване на файлове в отдалечено хранилище"
6362
 
6363
  #: src/admin.php:3486
6364
  msgid "Encrypted database"
6365
+ msgstr "Шифрована база данни"
6366
 
6367
  #: src/admin.php:3478
6368
  msgid "Encrypting database"
6369
+ msgstr "Шифроване на база данни"
6370
 
6371
  #: src/admin.php:3452
6372
  msgid "Created database backup"
6373
+ msgstr "Създаване на резервно копие на база данни"
6374
 
6375
  #: src/admin.php:3465
6376
  msgid "table: %s"
6377
+ msgstr "таблица: %s"
6378
 
6379
  #: src/admin.php:3463
6380
  msgid "Creating database backup"
6381
+ msgstr "Създаване на архивни данни"
6382
 
6383
  #: src/admin.php:3408
6384
  msgid "Created file backup zips"
6385
+ msgstr "Създадени архивирани zips файлове"
6386
 
6387
  #: src/admin.php:3395
6388
  msgid "Creating file backup zips"
6389
+ msgstr "Създаване на архивирани файлове"
6390
 
6391
  #: src/admin.php:3390
6392
  msgid "Backup begun"
6393
+ msgstr "Започна архивиране"
6394
 
6395
  #: src/admin.php:1194
6396
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
6397
+ msgstr "Планировчикът е забранен в wordPress инсталацията чрез настройката за DISABLE_WP_CRON. Не може да се стартират бекъпи (дори &quot;Архивиране сега&quot;), освен ако сте настроили устройство, което да се обади ръчно на диспечера, или докато не бъде активиран."
6398
 
6399
  #: src/restorer.php:1371
6400
  msgid "file"
6401
+ msgstr "файл"
6402
 
6403
  #: src/addons/onedrive.php:1194, src/restorer.php:1363
6404
  msgid "folder"
6405
+ msgstr "папка"
6406
 
6407
  #: src/restorer.php:1363, src/restorer.php:1371
6408
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
6409
+ msgstr "UpdraftPlus е необходимо, за да се създаде %s в директорията на съдържанието, но не успя - проверете разрешенията за файла и активирайте достъпа (%s)"
6410
 
6411
  #: src/class-updraftplus.php:3322
6412
  msgid "The backup has not finished; a resumption is scheduled"
6413
+ msgstr "Архивирането не е завършено; е планирано възобновяване на"
6414
 
6415
  #: src/class-updraftplus.php:2172
6416
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
6417
+ msgstr "Вашият сайт се посещава рядко и UpdraftPlus не получава ресурсите, за които се надяваше; моля, прочетете тази страница:"
6418
 
6419
  #: src/addons/onedrive.php:1047,
6420
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
6421
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
6422
+ msgstr "Удостоверяването на %s не може да продължи, защото нещо друго на вашия сайт го нарушава. Опитайте да деактивирате другите си плъгини и да преминете към тема по подразбиране. (По-конкретно търсите компонента, който изпраща изхода (най-вероятно PHP предупреждения/грешки) преди началото на страницата. Изключването на всички настройки за отстраняване на грешки също може да помогне)."
6423
 
6424
  #: src/admin.php:2733
6425
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
6426
+ msgstr "Лимитът на php паметта (зададен от вашата уеб хостинг компания) е много нисък. UpdraftPlus се опита да го вдигне, но не успя. Този плъгин може да се бори с ограничение на паметта от по-малко от 64 Mb - особено ако имате много големи файлове качени (въпреки че, от друга страна, много сайтове ще бъдат успешни с ограничение 32Mb - вашият опит може да варира)."
6427
 
6428
  #: src/addons/autobackup.php:1126, src/admin.php:854
6429
  msgid "Proceed with update"
6430
+ msgstr "Продължете с актуализацията"
6431
 
6432
  #: src/addons/autobackup.php:1119
6433
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
6434
+ msgstr "Не прекратявайте след натискане на \"Продължете по-долу\" - изчакайте архивирането да завърши."
6435
 
6436
  #: src/addons/autobackup.php:139, src/addons/autobackup.php:1068
6437
  msgid "UpdraftPlus Automatic Backups"
6438
+ msgstr "UpdraftPlus Автоматични резервни копия"
6439
 
6440
  #: src/addons/autobackup.php:551
6441
  msgid "Errors have occurred:"
6442
+ msgstr "Възникнаха грешки:"
6443
 
6444
  #: src/addons/autobackup.php:522
6445
  msgid "Creating backup with UpdraftPlus..."
6446
+ msgstr "Създаване на резервно копие с UpdraftPlus ..."
6447
 
6448
  #: src/addons/autobackup.php:467, src/addons/autobackup.php:598,
6449
  #: src/addons/autobackup.php:649
6450
  msgid "Automatic Backup"
6451
+ msgstr "Автоматично архивиране"
6452
 
6453
  #: src/addons/autobackup.php:458
6454
  msgid "Creating database backup with UpdraftPlus..."
6455
+ msgstr "Създаване на архивни данни с UpdraftPlus..."
6456
 
6457
  #: src/addons/autobackup.php:424
6458
  msgid "themes"
6459
+ msgstr "теми"
6460
 
6461
  #: src/addons/autobackup.php:417
6462
  msgid "plugins"
6463
+ msgstr "плъгини"
6464
 
6465
  #: src/addons/autobackup.php:368, src/addons/autobackup.php:465
6466
  msgid "Starting automatic backup..."
6467
+ msgstr "Стартиране на автоматично архивиране..."
6468
 
6469
  #: src/addons/autobackup.php:364
6470
  msgid "Creating %s and database backup with UpdraftPlus..."
6471
+ msgstr "Създаване на %s и архивиране на бази данни с UpdraftPlus..."
6472
 
6473
  #: src/addons/autobackup.php:322
6474
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
6475
+ msgstr "Автоматично архивиране (където е уместно) плъгини, теми и база данни на WordPress с UpdraftPlus преди да се актуализира"
6476
 
6477
  #: src/addons/morefiles.php:257, src/addons/morefiles.php:258
6478
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
6479
+ msgstr "Ако не сте сигурни, трябва да спрете; в противен случай можете да унищожите тази инсталация на WordPress."
6480
 
6481
  #: src/addons/morefiles.php:257, src/addons/morefiles.php:258
6482
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
6483
+ msgstr "Това не изглежда като валиден архив на ядрото на WordPress - файлът %s липсва."
6484
 
6485
  #: src/addons/morefiles.php:204
6486
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
6487
+ msgstr "Не може да се отвори zip файл (%s) - не може да бъде сканиран предварително, за да се провери целостта му."
6488
 
6489
  #: src/addons/morefiles.php:194
6490
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
6491
+ msgstr "Не може да се прочете zip файл (%s) - не може да бъде сканиран предварително, за да се провери целостта му."
6492
 
6493
  #: src/templates/wp-admin/settings/header.php:25
6494
  msgid "More plugins"
6495
+ msgstr "Още плъгини"
6496
 
6497
  #: src/includes/updraftplus-notices.php:31,
6498
  #: src/templates/wp-admin/settings/header.php:17,
6503
 
6504
  #: src/class-updraftplus.php:4906
6505
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
6506
+ msgstr "UpdraftPlus не можа да намери префикса на таблицата при сканиране на архива на базата данни."
6507
 
6508
  #: src/class-updraftplus.php:4898
6509
  msgid "This database backup is missing core WordPress tables: %s"
6510
+ msgstr "Този архив на базата данни липсва ядрото на WordPress таблици: %s"
6511
 
6512
  #: src/class-updraftplus.php:4636
6513
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
6514
+ msgstr "Импортирате от по-нова версия на WordPress (%s) в по-стара (%s). Няма гаранции, че WordPress може да се справи с това."
6515
 
6516
  #: src/class-updraftplus.php:4635, src/class-updraftplus.php:4642
6517
  msgid "%s version: %s"
6518
+ msgstr "Версия %s: %s"
6519
 
6520
  #: src/class-updraftplus.php:4512
6521
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
6522
+ msgstr "Базата данни е твърде малка, за да бъде валидна база данни на WordPress (размер: %s Кб)."
6523
 
6524
  #: src/addons/autobackup.php:1094, src/admin.php:1012
6525
  msgid "Be safe with an automatic backup"
6526
+ msgstr "Бъдете в безопасност с автоматично архивиране"
6527
 
6528
  #: src/admin.php:2686
6529
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
6530
+ msgstr "Ако все още можете да прочетете тези думи след завършване на страницата за зареждане, тогава има проблем с JavaScript или jQuery в сайта."
6531
 
6532
  #: src/admin.php:846
6533
  msgid "The file was uploaded."
6534
+ msgstr "Файлът е качен."
6535
 
6536
  #: src/admin.php:845
6537
  msgid "Unknown server response status:"
6538
+ msgstr "Неизвестно състояние на отговор на сървъра:"
6539
 
6540
  #: src/admin.php:844
6541
  msgid "Unknown server response:"
6542
+ msgstr "Неизвестен отговор на сървъра:"
6543
 
6544
  #: src/admin.php:843
6545
  msgid "This decryption key will be attempted:"
6546
+ msgstr "Този ключ за дешифриране ще бъде направен опит:"
6547
 
6548
  #: src/admin.php:842
6549
  msgid "Follow this link to attempt decryption and download the database file to your computer."
6550
+ msgstr "Следвайте тази връзка, за да опитате да дешифрирате и изтеглите файла на базата данни на компютъра."
6551
 
6552
  #: src/admin.php:841
6553
  msgid "Upload error"
6554
+ msgstr "Грешка при качването"
6555
 
6556
  #: src/admin.php:840
6557
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
6558
+ msgstr "Този файл не изглежда да бъде Архив на шифрована база данни updraftPlus (такива файлове са .gz.crypt файлове, които имат име като: backup_(time)_(име на сайта) _(код)__db.crypt.gz)."
6559
 
6560
  #: src/admin.php:839
6561
  msgid "Upload error:"
6562
+ msgstr "Грешка при качване:"
6563
 
6564
  #: src/admin.php:838
6565
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
6566
+ msgstr "(Уверете се, че сте се опитвали да качите zip файл, създаден преди това от UpdraftPlus)"
6567
 
6568
  #: src/admin.php:829
6569
  msgid "Download to your computer"
6570
+ msgstr "Изтегляне на вашия компютър"
6571
 
6572
  #: src/admin.php:828
6573
  msgid "Delete from your web server"
6574
+ msgstr "Изтриване от вашия уеб сървър"
6575
 
6576
  #: src/admin.php:4269
6577
  msgid "You appear to be missing one or more archives from this multi-archive set."
6578
+ msgstr "Изглежда, че липсват един или повече архиви от този много archive набор."
6579
 
6580
  #: src/templates/wp-admin/settings/form-contents.php:309
6581
  msgid "Split archives every:"
6582
+ msgstr "Разделен архив на всеки:"
6583
 
6584
  #: src/addons/moredatabase.php:273
6585
  msgid "Error: the server sent us a response (JSON) which we did not understand."
6586
+ msgstr "Грешка: сървърът ни изпрати отговор (JSON), който не разбираме."
6587
 
6588
  #: src/admin.php:819
6589
  msgid "Warnings:"
6590
+ msgstr "Предупреждения:"
6591
 
6592
  #: src/admin.php:818
6593
  msgid "Error: the server sent an empty response."
6594
+ msgstr "Грешка: сървърът изпрати празен отговор."
6595
 
6596
  #: src/admin.php:2481
6597
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
6598
+ msgstr "Това изглежда като файл, създаден от UpdraftPlus, но тази инсталация не знае за този тип обект: %s. Може би трябва да инсталирате добавка?"
6599
 
6600
  #: src/includes/class-wpadmin-commands.php:238,
6601
  #: src/includes/class-wpadmin-commands.php:263
6602
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
6603
+ msgstr "Архивните архивни файлове са обработени, но с някои грешки. Преди да опитате отново, трябва да отмените и коригирате всички проблеми."
6604
 
6605
  #: src/includes/class-wpadmin-commands.php:261
6606
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
6607
+ msgstr "Архивните архивни файлове са обработени, но с някои предупреждения. Ако всичко е наред, сега натиснете възстановяване отново, за да продължите. В противен случай, отмени и коригирайте първо всички проблеми."
6608
 
6609
  #: src/includes/class-wpadmin-commands.php:259
6610
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
6611
+ msgstr "Архивните файлове на архива са обработени успешно. Сега натиснете възстановяване отново, за да продължите."
6612
 
6613
  #: src/includes/class-wpadmin-commands.php:207
6614
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
6615
+ msgstr "Изглежда, че този архивен набор за архивиране липсва следните архиви: %s"
6616
 
6617
  #: src/includes/class-wpadmin-commands.php:192
6618
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
6619
+ msgstr "Файлът (%s) е намерен, но има различен размер (%s) от очакваното (%s) - може да е повреден."
6620
 
6621
  #: src/includes/class-wpadmin-commands.php:187
6622
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
6623
+ msgstr "Файлът е намерен, но е с нулев размер (трябва да го качите отново): %s"
6624
 
6625
  #: src/includes/class-wpadmin-commands.php:185
6626
  msgid "File not found (you need to upload it): %s"
6627
+ msgstr "Файлът не е намерен (трябва да го качите): %s"
6628
 
6629
  #: src/addons/wp-cli.php:592, src/addons/wp-cli.php:593,
6630
  #: src/includes/class-wpadmin-commands.php:113
6631
  msgid "No such backup set exists"
6632
+ msgstr "Не съществува такъв комплект архивиране"
6633
 
6634
  #: src/includes/class-storage-methods-interface.php:380
6635
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
6636
+ msgstr "Архивът за този файл не може да бъде намерен. Използваният метод за отдалечено съхранение (%s) не ни позволява да извличаме файлове. За да извършите всяко възстановяване с помощта на UpdraftPlus, ще трябва да получите копие на този файл и да го поставите в работната папка на UpdraftPlus"
6637
 
6638
  #: src/restorer.php:724
6639
  msgid "Moving unpacked backup into place..."
6640
+ msgstr "Преместване на неопаковано архивиране на място..."
6641
 
6642
  #: src/backup.php:3002, src/backup.php:3295
6643
  msgid "Failed to open the zip file (%s) - %s"
6644
+ msgstr "Не можа да се отвори zip файл (%s) - %s"
6645
 
6646
  #: src/addons/morefiles.php:182
6647
  msgid "WordPress root directory server path: %s"
6648
+ msgstr "WordPress път на главния сървър: %s"
6649
 
6650
  #: src/methods/dreamobjects.php:115, src/methods/s3generic.php:117
6651
  msgid "%s end-point"
6652
+ msgstr "%s крайна точка"
6653
 
6654
  #: src/methods/s3.php:874
6655
  msgid "... and many more!"
6656
+ msgstr "... и още много!"
6657
 
6658
  #: src/methods/s3generic.php:63, src/methods/s3generic.php:74,
6659
  #: src/methods/s3generic.php:85
6660
  msgid "S3 (Compatible)"
6661
+ msgstr "S3 (съвместим)"
6662
 
6663
  #: src/includes/class-storage-methods-interface.php:289
6664
  msgid "File is not locally present - needs retrieving from remote storage"
6665
+ msgstr "Файлът не е локално присъстващ - трябва да се извлича от отдалечено хранилище"
6666
 
6667
  #: src/restorer.php:392
6668
  msgid "Looking for %s archive: file name: %s"
6669
+ msgstr "Търсене на %s архив: име на файл: %s"
6670
 
6671
  #: src/restorer.php:508
6672
  msgid "Final checks"
6673
+ msgstr "Окончателни проверки"
6674
 
6675
  #: src/templates/wp-admin/settings/form-contents.php:315
6676
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
6677
+ msgstr "Проверете това, за да изтриете излишните архивни файлове от сървъра си след приключване на архивирането (т.е. ако махнете отметката, тогава всички файлове, които се експедират дистанционно, също ще останат локално и всички файлове, които се съхраняват локално няма да бъдат предмет на ограниченията за задържане)."
6678
 
6679
  #: src/templates/wp-admin/settings/form-contents.php:190
6680
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
6681
+ msgstr "Пуснете шифровани файлове на бази данни (db.gz.crypt файлове) тук, за да ги качите за дешифриране"
6682
 
6683
  #: src/admin.php:3973
6684
  msgid "Your wp-content directory server path: %s"
6685
+ msgstr "Път до вашия wp-content директория на директория: %s"
6686
 
6687
  #: src/admin.php:835
6688
  msgid "Raw backup history"
6689
+ msgstr "Необработена хронология на архивирането"
6690
 
6691
  #: src/templates/wp-admin/advanced/site-info.php:104
6692
  msgid "Show raw backup and file list"
6693
+ msgstr "Показвай необработените архивни копия и списъка с файлове"
6694
 
6695
  #: src/admin.php:817
6696
  msgid "Processing files - please wait..."
6697
+ msgstr "Обработка на файловете - моля изчакайте..."
6698
 
6699
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6700
  #: src/templates/wp-admin/settings/tab-backups.php:27
6701
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
6702
+ msgstr "Вашата WordPress инсталация има проблем с извеждането на допълнителни интервали. Това може да повреди архиви, които изтегляте от тук."
6703
 
6704
  #: src/class-updraftplus.php:4520
6705
  msgid "Failed to open database file."
6706
+ msgstr "Грешка при отваряне на файла на базата данни."
6707
 
6708
  #: src/admin.php:5461
6709
  msgid "Known backups (raw)"
6710
+ msgstr "Известни архиви (сурови)"
6711
 
6712
  #: src/restorer.php:1641
6713
  msgid "Files found:"
6714
+ msgstr "Намерени файлове:"
6715
 
6716
  #: src/admin.php:980
6717
  msgid "Restoring table: %s"
6718
+ msgstr "Възстановяване на таблица: %s"
6719
 
6720
  #: src/restorer.php:2224
6721
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
6722
+ msgstr "Исканият двигател на таблица (%s) не е наличен - преминаване към MyISAM."
6723
 
6724
  #: src/restorer.php:412
6725
  msgid "file is size:"
6726
+ msgstr "размерът на файла е:"
6727
 
6728
  #: src/addons/googlecloud.php:1035, src/addons/migrator.php:490,
6729
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
6731
  #: src/class-updraftplus.php:4765, src/class-updraftplus.php:4765,
6732
  #: src/updraftplus.php:157
6733
  msgid "Go here for more information."
6734
+ msgstr "Отидете тук за повече информация."
6735
 
6736
  #: src/admin.php:816
6737
  msgid "Some files are still downloading or being processed - please wait."
6738
+ msgstr "Някои файлове все още се изтеглят или обработват - моля изчакайте."
6739
 
6740
  #: src/class-updraftplus.php:4606, src/class-updraftplus.php:4626
6741
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
6742
+ msgstr "Този архивен набор е от друг сайт (%s) - това не е възстановяване, а миграция. Трябва мигретор добавката, за да се получи това."
6743
 
6744
  #: src/addons/fixtime.php:570
6745
  msgid "The time zone used is that from your WordPress settings, in Settings -> General."
6746
+ msgstr "Използваната часова зона е тази от настройките на WordPress, в Настройки -> Общи."
6747
 
6748
  #: src/addons/fixtime.php:570
6749
  msgid "Enter in format HH:MM (e.g. 14:22)."
6750
+ msgstr "Въведете във формат HH:MM (напр. 14:22)."
6751
 
6752
  #: src/methods/ftp.php:172
6753
  msgid "%s login failure"
6754
+ msgstr "Неуспешно влизане в %s"
6755
 
6756
  #: src/methods/dropbox.php:485
6757
  msgid "You do not appear to be authenticated with %s"
6758
+ msgstr "Изглежда, че не е удостоверено с %s"
6759
 
6760
  #: src/methods/dropbox.php:451
6761
  msgid "Failed to access %s when deleting (see log file for more)"
6762
+ msgstr "Не можа да се осъществи достъп до %s при изтриване (вижте регистрационния файл за повече)"
6763
 
6764
  #: src/methods/dropbox.php:443
6765
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
6766
+ msgstr "Изглежда не се удостоверява с %s (при изтриване)"
6767
 
6768
  #: src/methods/cloudfiles.php:412
6769
  msgid "Error - no such file exists."
6770
+ msgstr "Грешка - такъв файл не съществува."
6771
 
6772
  #: src/addons/azure.php:260, src/methods/addon-base-v2.php:258,
6773
  #: src/methods/openstack-base.php:460, src/methods/stream-base.php:304,
6774
  #: src/methods/stream-base.php:311, src/methods/stream-base.php:342
6775
  msgid "%s Error"
6776
+ msgstr "%s Грешка"
6777
 
6778
  #: src/methods/openstack-base.php:86
6779
  msgid "%s error - failed to upload file"
6780
+ msgstr "%s грешка - грешка при качване на файл"
6781
 
6782
  #: src/class-updraftplus.php:1398
6783
  msgid "%s error - failed to re-assemble chunks"
6784
+ msgstr "%s грешка - неуспешно събиране на блокове"
6785
 
6786
  #: src/methods/cloudfiles.php:238, src/methods/openstack-base.php:44,
6787
  #: src/methods/openstack-base.php:357, src/methods/openstack-base.php:422,
6788
  #: src/methods/openstack-base.php:495, src/methods/openstack-base.php:498,
6789
  #: src/methods/openstack-base.php:516, src/methods/openstack-base.php:521
6790
  msgid "%s authentication failed"
6791
+ msgstr "%s удостоверяването е неуспешно"
6792
 
6793
  #: src/addons/googlecloud.php:445, src/addons/migrator.php:585,
6794
  #: src/admin.php:2452, src/admin.php:2473, src/admin.php:2481,
6798
  #: src/class-updraftplus.php:4742, src/methods/googledrive.php:486,
6799
  #: src/methods/s3.php:351
6800
  msgid "Error: %s"
6801
+ msgstr "Грешка: %s"
6802
 
6803
  #: src/admin.php:3891
6804
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6805
+ msgstr "Указаната директория за архивиране съществува, но <b>не</b> може да се записва."
6806
 
6807
  #: src/admin.php:3889
6808
  msgid "Backup directory specified does <b>not</b> exist."
6809
+ msgstr "Указаната директория за архивиране <b>не</b> съществува."
6810
 
6811
  #: src/admin.php:3540, src/admin.php:3832
6812
  msgid "Warning: %s"
6813
+ msgstr "Предупреждение: %s"
6814
 
6815
  #: src/backup.php:3028
6816
  msgid "A very large file was encountered: %s (size: %s Mb)"
6817
+ msgstr "Срещнат е много голям файл: %s (размер: %s Мб)"
6818
 
6819
  #: src/backup.php:2316
6820
  msgid "%s: unreadable file - could not be backed up"
6821
+ msgstr "%s: нечетим файл - не може да бъде архивиран"
6822
 
6823
  #: src/backup.php:1583
6824
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
6825
+ msgstr "Таблица %s има много редове (%s) - надяваме се, че вашата уеб хостинг компания ви дава достатъчно ресурси, за да изхвърлите тази таблица в архива"
6826
 
6827
  #: src/backup.php:1759
6828
  msgid "An error occurred whilst closing the final database file"
6829
+ msgstr "Възникна грешка при затваряне на крайния файл с база данни"
6830
 
6831
  #: src/class-updraftplus.php:3419
6832
  msgid "Warnings encountered:"
6833
+ msgstr "Срещнати предупреждения:"
6834
 
6835
  #: src/class-updraftplus.php:3301
6836
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6837
+ msgstr "Архивирането очевидно е успешно (с предупреждения) и сега е пълно"
6838
 
6839
  #: src/class-updraftplus.php:944
6840
  msgid "Your free disk space is very low - only %s Mb remain"
6841
+ msgstr "Дисковото пространство на диска е много малко - остават само %s Мб"
6842
 
6843
  #: src/addons/migrator.php:593
6844
  msgid "New site:"
6845
+ msgstr "Нов сайт:"
6846
 
6847
  #: src/addons/migrator.php:570
6848
  msgid "Migrated site (from UpdraftPlus)"
6849
+ msgstr "Мигриране на сайта (от UpdraftPlus)"
6850
 
6851
  #: src/addons/migrator.php:510
6852
  msgid "Enter details for where this new site is to live within your multisite install:"
6853
+ msgstr "Въведете подробности за това къде този нов сайт ще живее в рамките на многостранната ви инсталация:"
6854
 
6855
  #: src/addons/migrator.php:509
6856
  msgid "Information needed to continue:"
6857
+ msgstr "Информация, необходима за продължаване на:"
6858
 
6859
  #: src/addons/migrator.php:454
6860
  msgid "Network activating theme:"
6861
+ msgstr "Мрежа за активиране на тема:"
6862
 
6863
  #: src/addons/migrator.php:444
6864
  msgid "Processed plugin:"
6865
+ msgstr "Обработен плъгин:"
6866
 
6867
  #: src/addons/sftp.php:80
6868
  msgid "Check your file permissions: Could not successfully create and enter directory:"
6869
+ msgstr "Проверете разрешенията за файла: Не можа успешно да се създаде и въведете директория:"
6870
 
6871
  #: src/addons/sftp.php:40
6872
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happening, then go into the \"Expert Options\" (below) and turn off SSL there."
6873
+ msgstr "Някои сървъри рекламират шифрован FTP като наличен, но след това времето за изчакване (след дълго време), когато се опитвате да го използвате. Ако откриете, че това се случва, отидете в \"Експертни опции\" (по-долу) и изключете SSL там."
6874
 
6875
  #: src/methods/s3.php:883
6876
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
6877
+ msgstr "PHP инсталацията на вашия уеб сървър не включва задължителен модул (%s). Моля, свържете се с поддръжката на вашия уеб хостинг доставчик и ги поискайте, за да го активирате."
6878
 
6879
  #: src/methods/s3.php:1231
6880
  msgid "Please check your access credentials."
6881
+ msgstr "Проверете вашите идентификационни данни за достъп."
6882
 
6883
  #: src/addons/s3-enhanced.php:212, src/methods/s3.php:1209
6884
  msgid "The error reported by %s was:"
6885
+ msgstr "Грешката, отчетена от %s, е:"
6886
 
6887
  #: src/restorer.php:2064
6888
  msgid "Please supply the requested information, and then continue."
6889
+ msgstr "Моля, посочете исканата информация и продължете."
6890
 
6891
  #: src/class-updraftplus.php:4679, src/restorer.php:2628
6892
  msgid "Site information:"
6893
+ msgstr "Информация за сайта:"
6894
 
6895
  #: src/restorer.php:2488
6896
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
6897
+ msgstr "Вашият потребител на базата данни няма разрешение за създаване на таблици. Ще се опитаме да възстановим, като просто изпразним масите; това трябва да работи толкова дълго, колкото а) се възстановява от версия на WordPress със същата структура на базата данни и b) Вашата импортирана база данни не съдържа никакви таблици, които все още не са налични в сайта за импортиране."
6898
 
6899
  #: src/admin.php:987, src/admin.php:2686, src/class-updraftplus.php:4672,
6900
  #: src/restorer.php:3018
6904
  #: src/class-updraftplus.php:4661, src/class-updraftplus.php:4664,
6905
  #: src/restorer.php:732
6906
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6907
+ msgstr "Вие работите на многостранна wordPress - но вашето архивиране не е на многостранен сайт."
6908
 
6909
  #: src/restorer.php:381
6910
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
6911
+ msgstr "Пропускане на възстановяването на WordPress ядрото при импортиране на един сайт в многостранна инсталация. Ако сте имали нещо необходимо в wordPress директорията си, тогава ще трябва да го добавите отново ръчно от zip файла."
6912
 
6913
  #: src/addons/azure.php:597, src/admin.php:4065,
6914
  #: src/methods/updraftvault.php:321
6915
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
6916
+ msgstr "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
6917
 
6918
  #: src/admin.php:855, src/includes/updraftplus-tour.php:96
6919
  msgid "Close"
6920
+ msgstr "Затвори"
6921
 
6922
  #: src/addons/autobackup.php:370, src/addons/autobackup.php:462,
6923
  #: src/admin.php:809, src/methods/remotesend.php:69,
6924
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:239,
6925
  #: src/methods/remotesend.php:255
6926
  msgid "Unexpected response:"
6927
+ msgstr "Неочакван отговор:"
6928
 
6929
  #: src/addons/reporting.php:537, src/admin.php:804
6930
  msgid "To send to more than one address, separate each address with a comma."
6931
+ msgstr "За да изпратите на повече от един адрес, отделете всеки адрес със запетая."
6932
 
6933
  #: src/admin.php:833
6934
  msgid "PHP information"
6935
+ msgstr "Информация за PHP"
6936
 
6937
  #: src/templates/wp-admin/advanced/site-info.php:70
6938
  msgid "zip executable found:"
6939
+ msgstr "намерена е файлът с разширение на цип:"
6940
 
6941
  #: src/templates/wp-admin/advanced/site-info.php:45
6942
  msgid "show PHP information (phpinfo)"
6943
+ msgstr "показване на информация за PHP (phpinfo)"
6944
 
6945
  #: src/templates/wp-admin/settings/migrator-no-migrator.php:9
6946
  msgid "Do you want to migrate or clone/duplicate a site?"
6947
+ msgstr "Искате ли да мигрирате или да клонирате/дублирате сайт?"
6948
 
6949
  #: src/templates/wp-admin/settings/existing-backups-table.php:174
6950
  msgid "Please allow time for the communications with the remote storage to complete."
6951
+ msgstr "Моля, изчакайте да завърши комуникацията с отдалеченото хранилище."
6952
 
6953
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:23
6954
  msgid "Also delete from remote storage"
6955
+ msgstr "Също изтриване от дистанционно съхранение"
6956
 
6957
  #: src/admin.php:3211
6958
  msgid "Latest UpdraftPlus.com news:"
6959
+ msgstr "Последни новини от UpdraftPlus.com:"
6960
 
6961
  #: src/templates/wp-admin/settings/header.php:11,
6962
  #: src/templates/wp-admin/settings/tab-addons.php:73
6963
  msgid "Premium"
6964
+ msgstr "Премиум"
6965
 
6966
  #: src/templates/wp-admin/settings/header.php:15
6967
  msgid "News"
6968
+ msgstr "Новини"
6969
 
6970
  #: src/admin.php:1746, src/includes/class-wpadmin-commands.php:581
6971
  msgid "Backup set not found"
6972
+ msgstr "Архивен набор не е намерен"
6973
 
6974
  #: src/backup.php:206
6975
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
6976
+ msgstr "%s - не можа да архивира този обект; съответната директория не съществува (%s)"
6977
 
6978
  #: src/includes/updraftplus-notices.php:159,
6979
  #: src/includes/updraftplus-notices.php:160,
6980
  #: src/includes/updraftplus-notices.php:169,
6981
  #: src/includes/updraftplus-notices.php:170
6982
  msgid "RSS link"
6983
+ msgstr "RSS"
6984
 
6985
  #: src/includes/updraftplus-notices.php:159,
6986
  #: src/includes/updraftplus-notices.php:160,
6987
  #: src/includes/updraftplus-notices.php:169,
6988
  #: src/includes/updraftplus-notices.php:170
6989
  msgid "Blog link"
6990
+ msgstr "Връзка към блог"
6991
 
6992
  #: src/admin.php:899
6993
  msgid "Testing %s Settings..."
6994
+ msgstr "Тестване на настройките на %s..."
6995
 
6996
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:69,
6997
  #: src/templates/wp-admin/settings/tab-backups.php:71
6998
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
6999
+ msgstr "Или можете да ги поставите ръчно в директорията updraftPlus (обикновено wp-content /updraft), например чрез FTP, и след това да използвате връзката \"Повторно сканиране\" по-горе."
7000
 
7001
  #: src/admin.php:1212
7002
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
7003
+ msgstr "UpdraftPlus е включен режим за отстраняване на грешки. Може да видите известия за отстраняване на грешки на тази страница не само от UpdraftPlus, но и от всяка друга инсталирана добавка. Моля, опитайте се да се уверите, че известието, което виждате, е от UpdraftPlus, преди да повишите заявка за поддръжка."
7004
 
7005
  #: src/admin.php:1212, src/admin.php:1265
7006
  msgid "Notice"
7007
+ msgstr "Известие"
7008
 
7009
  #: src/class-updraftplus.php:3401
7010
  msgid "Errors encountered:"
7011
+ msgstr "Открити са грешки:"
7012
 
7013
  #: src/admin.php:801
7014
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
7015
+ msgstr "Повторно сканиране (търсене на архиви, които сте качили ръчно във вътрешния архивен магазин)..."
7016
 
7017
  #: src/admin.php:815
7018
  msgid "Begun looking for this entity"
7019
+ msgstr "Започна да търси тази същност"
7020
 
7021
  #: src/methods/s3.php:495, src/methods/s3.php:699, src/methods/s3.php:803
7022
  msgid "Error: Failed to access bucket %s. Check your permissions and credentials."
7023
+ msgstr "Грешка: Неуспешен достъп до група %s. Проверете вашите разрешения и идентификационни данни."
7024
 
7025
  #: src/methods/s3.php:784, src/methods/s3.php:828
7026
  msgid "Error: Failed to download %s. Check your permissions and credentials."
7027
+ msgstr "Грешка: %s не може да бъде изтеглен. Проверете вашите разрешения и идентификационни данни."
7028
 
7029
  #: src/addons/dropbox-folders.php:32
7030
  msgid "Store at"
7031
+ msgstr "Съхранявайте на"
7032
 
7033
  #: src/addons/migrator.php:1580
7034
  msgid "\"%s\" has no primary key, manual change needed on row %s."
7035
+ msgstr "\"%s\" няма първичен ключ, необходима е ръчна промяна на ред %s."
7036
 
7037
  #: src/addons/migrator.php:1436
7038
  msgid "rows: %d"
7039
+ msgstr "редове: %d"
7040
 
7041
  #: src/addons/migrator.php:1312
7042
  msgid "Time taken (seconds):"
7043
+ msgstr "Време (секунди):"
7044
 
7045
  #: src/addons/migrator.php:1311, src/admin.php:820
7046
  msgid "Errors:"
7047
+ msgstr "Грешки:"
7048
 
7049
  #: src/addons/migrator.php:1310
7050
  msgid "SQL update commands run:"
7051
+ msgstr "SQL актуализация команди:"
7052
 
7053
  #: src/addons/migrator.php:1309
7054
  msgid "Changes made:"
7055
+ msgstr "Направени промени:"
7056
 
7057
  #: src/addons/migrator.php:1308
7058
  msgid "Rows examined:"
7059
+ msgstr "Проверени редове:"
7060
 
7061
  #: src/addons/migrator.php:1307
7062
  msgid "Tables examined:"
7063
+ msgstr "Разгледани таблици:"
7064
 
7065
  #: src/addons/migrator.php:1199
7066
  msgid "Could not get list of tables"
7067
+ msgstr "Не може да се получи списък на таблици"
7068
 
7069
  #: src/addons/migrator.php:1144
7070
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
7071
+ msgstr "Предупреждение: URL адресът на сайта на базата данни (%s) е различен от очаквания от нас (%s)"
7072
 
7073
  #: src/addons/migrator.php:1133
7074
  msgid "Nothing to do: the site URL is already: %s"
7075
+ msgstr "Нищо за върша: URL адресът на сайта вече е: %s"
7076
 
7077
  #: src/addons/migrator.php:1097, src/addons/migrator.php:1101,
7078
  #: src/addons/migrator.php:1105, src/addons/migrator.php:1110,
7079
  #: src/addons/migrator.php:1114, src/addons/migrator.php:1119
7080
  msgid "Error: unexpected empty parameter (%s, %s)"
7081
+ msgstr "Грешка: неочакван празен параметър (%s, %s)"
7082
 
7083
  #: src/addons/migrator.php:1057
7084
  msgid "Database: search and replace site URL"
7085
+ msgstr "База данни: търсене и заместване на URL адрес на сайт"
7086
 
7087
  #: src/addons/migrator.php:918, src/addons/migrator.php:1293
7088
  msgid "Failed: we did not understand the result returned by the %s operation."
7089
+ msgstr "Неуспешно: не разбирахме резултата, върнат от операцията %s."
7090
 
7091
  #: src/addons/migrator.php:916, src/addons/migrator.php:1291
7092
  msgid "Failed: the %s operation was not able to start."
7093
+ msgstr "Неуспешно: операцията %s не можа да стартира."
7094
 
7095
  #: src/addons/migrator.php:562
7096
  msgid "Search and replace site location in the database (migrate)"
7097
+ msgstr "Търсене и заместване на местоположение на сайта в базата данни (мигриране)"
7098
 
7099
  #: src/addons/migrator.php:562
7100
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
7101
+ msgstr "Всички препратки към местоположението на сайта в базата данни ще бъдат заменени с текущия url адрес на сайта ви, което е: %s"
7102
 
7103
  #: src/addons/multisite.php:739
7104
  msgid "Blog uploads"
7105
+ msgstr "Качвания на блогове"
7106
 
7107
  #: src/addons/migrator.php:496, src/addons/multisite.php:732
7108
  msgid "Must-use plugins"
7109
+ msgstr "Приставки за задължително използване"
7110
 
7111
  #: src/addons/multisite.php:209
7112
  msgid "Multisite Install"
7113
+ msgstr "Инсталиране на множество"
7114
 
7115
  #: src/addons/fixtime.php:570
7116
  msgid "starting from next time it is"
7117
+ msgstr "започвайки от следващия път"
7118
 
7119
  #: src/addons/sftp.php:531
7120
  msgid "Failure: Port must be an integer."
7121
+ msgstr "Грешка: Портът трябва да е цяло число."
7122
 
7123
  #: src/methods/ftp.php:429, src/methods/openstack2.php:185
7124
  msgid "password"
7125
+ msgstr "парола"
7126
 
7127
  #: src/addons/sftp.php:522, src/methods/openstack2.php:180
7128
  msgid "username"
7129
+ msgstr "потребителско име"
7130
 
7131
  #: src/addons/sftp.php:518
7132
  msgid "host name"
7133
+ msgstr "име на хост"
7134
 
7135
  #: src/addons/sftp.php:481, src/addons/sftp.php:481
7136
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
7137
+ msgstr "Къде да промените директорията след влизане в профила си - често това е по отношение на вашата домашна директория."
7138
 
7139
  #: src/addons/sftp.php:479
7140
  msgid "Directory path"
7141
+ msgstr "Път до директорията"
7142
 
7143
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
7144
  #: src/addons/sftp.php:455, src/addons/webdav.php:191, src/admin.php:976,
7146
  #: src/methods/updraftvault.php:388,
7147
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
7148
  msgid "Password"
7149
+ msgstr "Парола"
7150
 
7151
  #: src/addons/sftp.php:441, src/addons/webdav.php:205
7152
  msgid "Port"
7153
+ msgstr "Порт"
7154
 
7155
  #: src/addons/moredatabase.php:239, src/addons/sftp.php:434,
7156
  #: src/addons/webdav.php:197
7157
  msgid "Host"
7158
+ msgstr "Домакин"
7159
 
7160
  #: src/addons/sftp.php:282
7161
  msgid "Error: Failed to download"
7162
+ msgstr "Грешка: Неуспешно изтегляне"
7163
 
7164
  #: src/addons/sftp.php:563
7165
  msgid "Check your file permissions: Could not successfully create and enter:"
7166
+ msgstr "Проверете разрешенията за файла: Не можа да бъде създаден и въведен успешно:"
7167
 
7168
  #: src/addons/sftp.php:52, src/addons/sftp.php:53, src/addons/sftp.php:54
7169
  msgid "No %s found"
7170
+ msgstr "Няма намерени %s"
7171
 
7172
  #: src/addons/sftp.php:40
7173
  msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
7174
+ msgstr "Криптиран FTP е наличен и ще бъде автоматично тестван първи (преди да се върне обратно в не-шифрован, ако не е успешен), освен ако не го изключите с помощта на експертните опции. Бутонът \"Test FTP Вход\" ще ви каже какъв тип връзка се използва."
7175
 
7176
  #: src/addons/morefiles.php:577
7177
  msgid "No backup of %s directories: there was nothing found to back up"
7178
+ msgstr "Няма архив на директориите %s: няма нищо за архивиране"
7179
 
7180
  #: src/addons/morefiles.php:297
7181
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
7182
+ msgstr "Бъдете внимателни, какво да изберете - ако изберете / след това наистина ще се опита да създаде цип, съдържащ целия си уеб сървър."
7183
 
7184
  #: src/addons/morefiles.php:295
7185
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
7186
+ msgstr "Ако не сте сигурни за какво е тази опция, тогава няма да я искате и трябва да я изключите."
7187
 
7188
  #: src/addons/morefiles.php:273
7189
  msgid "More Files"
7190
+ msgstr "Още файлове"
7191
 
7192
  #: src/addons/morefiles.php:181
7193
  msgid "WordPress core (including any additions to your WordPress root directory)"
7194
+ msgstr "Ядро на WordPress (включително всички допълнения към вашата WordPress директория)"
7195
 
7196
  #: src/addons/morefiles.php:174
7197
  msgid "The above files comprise everything in a WordPress installation."
7198
+ msgstr "Горните файлове съдържат всичко в wordPress инсталация."
7199
 
7200
  #: src/addons/morefiles.php:155
7201
  msgid "Over-write wp-config.php"
7202
+ msgstr "Над-напиши wp-config.php"
7203
 
7204
  #: src/addons/morefiles.php:151, src/includes/class-wpadmin-commands.php:598
7205
  msgid "WordPress Core"
7206
+ msgstr "Ядро на WordPress"
7207
 
7208
  #: src/methods/addon-base-v2.php:366, src/methods/stream-base.php:382
7209
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
7210
+ msgstr "Неуспешно: Не успяхме да поставим файл в тази директория - проверете вашите идентификационни данни."
7211
 
7212
  #: src/addons/googlecloud.php:779, src/addons/googlecloud.php:813,
7213
  #: src/addons/googlecloud.php:819, src/addons/sftp.php:549, src/admin.php:3611,
7218
 
7219
  #: src/addons/webdav.php:166
7220
  msgid "WebDAV URL"
7221
+ msgstr "Уеб адрес"
7222
 
7223
  #: src/methods/stream-base.php:342
7224
  msgid "Local write failed: Failed to download"
7225
+ msgstr "Неуспешен локален запис: Неуспешно изтегляне"
7226
 
7227
  #: src/methods/stream-base.php:311
7228
  msgid "Error opening remote file: Failed to download"
7229
+ msgstr "Грешка при отваряне на отдалечен файл: Неуспешно изтегляне"
7230
 
7231
  #: src/methods/stream-base.php:134, src/methods/stream-base.php:138
7232
  msgid "Chunk %s: A %s error occurred"
7233
+ msgstr "Блок %s: Възникна грешка %s"
7234
 
7235
  #: src/addons/googlecloud.php:325, src/addons/sftp.php:50,
7236
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
7241
  #: src/methods/stream-base.php:178, src/methods/stream-base.php:212,
7242
  #: src/methods/stream-base.php:285
7243
  msgid "No %s settings were found"
7244
+ msgstr "Не са намерени %s настройки"
7245
 
7246
  #: src/methods/ftp.php:451
7247
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
7248
+ msgstr "Грешка: успешно влязохме, но не успяхме да създадем файл в дадена директория."
7249
 
7250
  #: src/methods/ftp.php:448
7251
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
7252
+ msgstr "Успех: успешно се регистрирахме и потвърдихме способността си да създадем файл в дадена директория (тип вход:"
7253
 
7254
  #: src/methods/ftp.php:439
7255
  msgid "Failure: we did not successfully log in with those credentials."
7256
+ msgstr "Неуспех: ние не успешно се логнете с тези идентификационни данни."
7257
 
7258
  #: src/methods/ftp.php:421
7259
  msgid "Failure: No server details were given."
7260
+ msgstr "Грешка: Не са дадени данни за сървъра."
7261
 
7262
  #: src/methods/ftp.php:386, src/methods/ftp.php:386
7263
  msgid "Needs to already exist"
7264
+ msgstr "Трябва вече да съществува"
7265
 
7266
  #: src/methods/ftp.php:349
7267
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
7268
+ msgstr "Ако искате шифроване (напр. съхранявате поверителни бизнес данни), тогава е налична добавка."
7269
 
7270
  #: src/addons/onedrive.php:912, src/methods/dropbox.php:817
7271
  msgid "Your %s account name: %s"
7272
+ msgstr "Име на акаунт %s: %s"
7273
 
7274
  #: src/methods/dropbox.php:807, src/methods/dropbox.php:829
7275
  msgid "though part of the returned information was not as expected - your mileage may vary"
7276
+ msgstr "въпреки че част от върнатата информация не е както се очаква - вашият пробег може да варира"
7277
 
7278
  #: src/methods/dropbox.php:802, src/methods/dropbox.php:804
7279
  msgid "you have authenticated your %s account"
7280
+ msgstr "сте удостоверили вашия %s акаунт"
7281
 
7282
  #: src/methods/dropbox.php:602, src/methods/dropbox.php:604
7283
  msgid "there's an add-on for that."
7284
+ msgstr "има добавка за това"
7285
 
7286
  #: src/methods/dropbox.php:602, src/methods/dropbox.php:604
7287
  msgid "If you backup several sites into the same Dropbox and want to organize with sub-folders, then "
7288
+ msgstr "ако архивирате няколко сайта в една и съща Dropbox и искате да организирате с подпапки, тогава"
7289
 
7290
  #: src/methods/dropbox.php:602, src/methods/dropbox.php:604
7291
  msgid "Backups are saved in"
7292
+ msgstr "Архивите се записват в"
7293
 
7294
  #: src/methods/dropbox.php:602, src/methods/dropbox.php:604
7295
  msgid "Need to use sub-folders?"
7296
+ msgstr "Трябва да използвате подпапки?"
7297
 
7298
  #: src/methods/dropbox.php:280
7299
  msgid "error: failed to upload file to %s (see log file for more)"
7300
+ msgstr "грешка: не успя да качите файл в %s (вижте регистрационния файл за повече)"
7301
 
7302
  #: src/methods/dropbox.php:194
7303
  msgid "error: %s (see log file for more)"
7304
+ msgstr "грешка: %s (виж регистрационния файл за повече)"
7305
 
7306
  #: src/methods/dropbox.php:172, src/methods/dropbox.php:189
7307
  msgid "You do not appear to be authenticated with Dropbox"
7308
+ msgstr "Не изглежда да се удостоверява с Dropbox"
7309
 
7310
  #: src/methods/s3.php:1226
7311
  msgid "The communication with %s was not encrypted."
7312
+ msgstr "Комуникацията с %s не е шифрована."
7313
 
7314
  #: src/methods/s3.php:1224
7315
  msgid "The communication with %s was encrypted."
7316
+ msgstr "Комуникацията с %s е шифрована."
7317
 
7318
  #: src/addons/googlecloud.php:842, src/methods/s3.php:1221
7319
  msgid "We accessed the bucket, and were able to create files within it."
7320
+ msgstr "Ние имаме достъп до кофата и успяхме да създадем файлове в него."
7321
 
7322
  #: src/addons/googlecloud.php:836, src/addons/googlecloud.php:850,
7323
  #: src/methods/s3.php:1219, src/methods/s3.php:1231
7324
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
7325
+ msgstr "Успешно осъществихме достъп до кофата, но опитът да се създаде файл в него е неуспешен."
7326
 
7327
  #: src/addons/googlecloud.php:836, src/addons/googlecloud.php:850,
7328
  #: src/methods/s3.php:1219, src/methods/s3.php:1231
7329
  msgid "Failure"
7330
+ msgstr "Провалено"
7331
 
7332
  #: src/addons/backblaze.php:517, src/methods/s3.php:1207
7333
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
7334
+ msgstr "Грешка: Не можехме успешно да осъществим достъп или да създадем такава група. Проверете вашите идентификационни данни за достъп и ако са правилни, опитайте друго име на кофа (тъй като друг потребител на %s може вече да е взел вашето име)."
7335
 
7336
  #: src/addons/s3-enhanced.php:185, src/methods/openstack2.php:150,
7337
  #: src/methods/s3.php:1201
7338
  msgid "Region"
7339
+ msgstr "Регион"
7340
 
7341
  #: src/addons/googlecloud.php:125, src/addons/googlecloud.php:796,
7342
  #: src/methods/s3.php:1181
7343
  msgid "Failure: No bucket details were given."
7344
+ msgstr "Неуспех: Не са дадени подробности за кофата."
7345
 
7346
  #: src/methods/s3.php:1159
7347
  msgid "API secret"
7348
+ msgstr "API secret"
7349
 
7350
  #: src/methods/s3.php:965
7351
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
7352
+ msgstr "Въведете само име на кофа или кофа и път. Примери: mybucket, mybucket/mypath"
7353
 
7354
  #: src/methods/s3.php:964
7355
  msgid "%s location"
7356
+ msgstr "Местоположение %s"
7357
 
7358
  #: src/methods/s3.php:960
7359
  msgid "%s secret key"
7360
+ msgstr "Секретен ключ %s"
7361
 
7362
  #: src/methods/s3.php:956
7363
  msgid "%s access key"
7364
+ msgstr "%s ключ за достъп"
7365
 
7366
  #: src/methods/s3.php:895
7367
  msgid "If you see errors about SSL certificates, then please go here for help."
7368
+ msgstr "Ако виждате грешки за SSL сертификати, моля, отидете тук за помощ."
7369
 
7370
  #: src/methods/s3.php:893
7371
  msgid "Get your access key and secret key from your <a href=\"%s\">%s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
7372
+ msgstr "Вземете ключа за достъп и тайния ключ от <a href=\"%s\">вашата %s конзола</a>и след това изберете (глобално уникално - всички %s потребители) име на група (букви и цифри) (и по желание път), който да използвате за съхранение. Тази кофа ще бъде създадена за вас, ако вече не съществува."
7373
 
7374
  #: src/methods/s3.php:619
7375
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
7376
+ msgstr "%s Грешка: Не можа да се получи достъп до група %s. Проверете вашите разрешения и идентификационни данни."
7377
 
7378
  #: src/methods/s3.php:796
7379
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
7380
+ msgstr "%s Грешка: %s не може да бъде изтеглен. Проверете вашите разрешения и идентификационни данни."
7381
 
7382
  #: src/methods/s3.php:473
7383
  msgid "%s re-assembly error (%s): (see log file for more)"
7384
+ msgstr "Грешка при повторно сглобяване %s (%s): (виж регистрационния файл за повече)"
7385
 
7386
  #: src/methods/s3.php:469
7387
  msgid "upload (%s): re-assembly failed (see log for more details)"
7388
+ msgstr "качване (%s): неуспешна грешка при повторното сглобяване (вижте регистрационния файл за повече подробности)"
7389
 
7390
  #: src/methods/s3.php:453
7391
  msgid "chunk %s: upload failed"
7392
+ msgstr "блок %s: качването е неуспешно"
7393
 
7394
  #: src/methods/s3.php:443
7395
  msgid "error: file %s was shortened unexpectedly"
7396
+ msgstr "грешка: файл %s беше съкратен неочаквано"
7397
 
7398
  #: src/methods/s3.php:421
7399
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
7400
+ msgstr "%s качване: получаване на качване на качване за многочайна качване е неуспешно - за повече подробности вижте регистрационния файл"
7401
 
7402
  #: src/methods/email.php:92
7403
  msgid "Note:"
7404
+ msgstr "Бележка:"
7405
 
7406
  #: src/methods/email.php:45
7407
  msgid "WordPress Backup"
7408
+ msgstr "Архивиране на WordPress"
7409
 
7410
  #: src/methods/cloudfiles.php:578, src/methods/openstack-base.php:535
7411
  msgid "We accessed the container, and were able to create files within it."
7412
+ msgstr "Ние достъп до контейнера и успяхме да създадем файлове в него."
7413
 
7414
  #: src/methods/cloudfiles.php:574
7415
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
7416
+ msgstr "Грешка в Cloud Files - достъпхме контейнера, но не успяхме да създадем файл в него"
7417
 
7418
  #: src/methods/cloudfiles.php:547, src/methods/openstack-base.php:477
7419
  msgid "Failure: No container details were given."
7420
+ msgstr "Отказ: Не са дадени подробности за контейнера."
7421
 
7422
  #: src/addons/moredatabase.php:240, src/addons/sftp.php:448,
7423
  #: src/addons/webdav.php:185, src/admin.php:975,
7424
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:527,
7425
  #: src/methods/openstack2.php:158
7426
  msgid "Username"
7427
+ msgstr "Потребителско име"
7428
 
7429
  #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles.php:522,
7430
  #: src/methods/s3.php:1155
7431
  msgid "API key"
7432
+ msgstr "Ключ за API"
7433
 
7434
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
7435
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
7443
  #: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
7444
  #: src/methods/s3.php:1155, src/methods/s3.php:1159
7445
  msgid "Failure: No %s was given."
7446
+ msgstr "Грешка: Не е даден %s."
7447
 
7448
  #: src/methods/cloudfiles-new.php:96, src/methods/cloudfiles.php:443,
7449
  #: src/methods/openstack-base.php:576, src/methods/s3.php:887
7450
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
7451
+ msgstr "Модулът %s на UpdraftPlus <strong>изисква</strong> %s. Моля, не подавайте заявки за поддръжка; няма алтернатива."
7452
 
7453
  #: src/methods/cloudfiles.php:486
7454
  msgid "Cloud Files username"
7455
+ msgstr "Потребителско име за файлове в облака"
7456
 
7457
  #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:114,
7458
  #: src/methods/cloudfiles.php:470
7459
  msgid "UK"
7460
+ msgstr "UK"
7461
 
7462
  #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:113,
7463
  #: src/methods/cloudfiles.php:469
7464
  msgid "US (default)"
7465
+ msgstr "US (по подразбиране)"
7466
 
7467
  #: src/methods/cloudfiles.php:466
7468
  msgid "US or UK Cloud"
7469
+ msgstr "Облакът в САЩ или Обединеното кралство"
7470
 
7471
  #: src/methods/cloudfiles-new.php:98, src/methods/cloudfiles.php:449,
7472
  #: src/methods/openstack2.php:120
7473
  msgid "Also, you should read this important FAQ."
7474
+ msgstr "Също така трябва да прочетете тези важни ЧЗВ."
7475
 
7476
  #: src/methods/cloudfiles-new.php:98, src/methods/cloudfiles.php:449
7477
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\" target=\"_blank\">from your Rackspace Cloud console</a> (<a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\" target=\"_blank\">read instructions here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
7478
+ msgstr "Вземете своя API ключ <a href=\"https://mycloud.rackspace.com/\" target=\"_blank\">от конзолата си Rackspace Cloud</a> <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\" target=\"_blank\">(прочетете тук инструкции),</a>след което изберете име на контейнер, който да използвате за съхранение. Този контейнер ще бъде създаден за вас, ако вече не съществува."
7479
 
7480
  #: src/admin.php:898, src/methods/backup-module.php:315
7481
  msgid "Test %s Settings"
7482
+ msgstr "Тест на %s Настройки"
7483
 
7484
  #: src/class-updraftplus.php:1441, src/class-updraftplus.php:1485,
7485
  #: src/methods/cloudfiles.php:386, src/methods/stream-base.php:304
7486
  msgid "Error opening local file: Failed to download"
7487
+ msgstr "Грешка при отваряне на локален файл: Неуспешно изтегляне"
7488
 
7489
  #: src/addons/sftp.php:160, src/methods/openstack-base.php:314,
7490
  #: src/methods/s3.php:386, src/methods/s3.php:398, src/methods/s3.php:399
7491
  msgid "%s Error: Failed to upload"
7492
+ msgstr "%s Грешка: Не можа да бъде качено"
7493
 
7494
  #: src/class-updraftplus.php:1283
7495
  msgid "%s Error: Failed to open local file"
7496
+ msgstr "%s Грешка: Не може да се отвори локален файл"
7497
 
7498
  #: src/addons/cloudfiles-enhanced.php:120,
7499
  #: src/addons/cloudfiles-enhanced.php:133,
7500
  #: src/addons/cloudfiles-enhanced.php:137, src/methods/cloudfiles.php:557,
7501
  #: src/methods/cloudfiles.php:560, src/methods/cloudfiles.php:563
7502
  msgid "Cloud Files authentication failed"
7503
+ msgstr "Неуспешно удостоверяване на файлове в облака"
7504
 
7505
  #: src/methods/googledrive.php:1402
7506
  msgid "Authenticate with Google"
7507
+ msgstr "Удостоверяване с Google"
7508
 
7509
  #: src/addons/googlecloud.php:1028, src/addons/onedrive.php:1189,
7510
  #: src/methods/googledrive.php:1366
7511
  msgid "Client Secret"
7512
+ msgstr "Клиентска тайна/Таен ключ"
7513
 
7514
  #: src/addons/googlecloud.php:1022, src/addons/googlecloud.php:1023,
7515
  #: src/methods/googledrive.php:1363
7516
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
7517
+ msgstr "Ако Google по-късно ви покаже съобщението \"invalid_client\", не сте въвели валиден клиентски номер тук."
7518
 
7519
  #: src/addons/googlecloud.php:1020, src/addons/onedrive.php:1185,
7520
  #: src/methods/googledrive.php:1362
7521
  msgid "Client ID"
7522
+ msgstr "Клиентски идентификационен номер"
7523
 
7524
  #: src/methods/googledrive.php:1336
7525
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
7526
+ msgstr "Трябва да добавите следното като оторизиран URI за пренасочване (в \"Повече опции\"), когато бъдете"
7527
 
7528
  #: src/addons/googlecloud.php:998, src/methods/googledrive.php:1336
7529
  msgid "Select 'Web Application' as the application type."
7530
+ msgstr "Изберете \"Уеб приложение\" като тип приложение."
7531
 
7532
  #: src/addons/googlecloud.php:996, src/methods/googledrive.php:1334
7533
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
7534
+ msgstr "За по-дълго помощ, включително екранни снимки, следвайте тази връзка. Описанието по-долу е достатъчно за по-опитни потребители."
7535
 
7536
  #: src/addons/googlecloud.php:510, src/addons/googlecloud.php:511,
7537
  #: src/addons/googlecloud.php:869, src/methods/googledrive.php:704,
7538
  #: src/methods/googledrive.php:705, src/methods/googledrive.php:715,
7539
  #: src/methods/googledrive.php:716
7540
  msgid "Account is not authorized."
7541
+ msgstr "Акаунтът не е оторизиран."
7542
 
7543
  #: src/methods/googledrive.php:600, src/methods/googledrive.php:662,
7544
  #: src/methods/googledrive.php:678, src/methods/googledrive.php:680,
7545
  #: src/methods/stream-base.php:228
7546
  msgid "Failed to upload to %s"
7547
+ msgstr "Неуспешно качване в %s"
7548
 
7549
  #: src/methods/googledrive.php:643
7550
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
7551
+ msgstr "Акаунтът е пълен: вашият %s акаунт има само %d байта, но файлът, който трябва да бъде качен, е %d байта"
7552
 
7553
  #: src/methods/googledrive.php:748, src/methods/googledrive.php:784
7554
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
7555
+ msgstr "Все още не сте получили маркер за достъп от Google – трябва да оторизирате или да преотстъпвате връзката си с Google Диск."
7556
 
7557
  #: src/addons/googlecloud.php:721, src/addons/onedrive.php:950,
7558
  #: src/methods/googledrive.php:558
7559
  msgid "you have authenticated your %s account."
7560
+ msgstr "вие сте удостоверили вашия %s акаунт."
7561
 
7562
  #: src/addons/googlecloud.php:721, src/addons/googlecloud.php:842,
7563
  #: src/addons/onedrive.php:950, src/addons/sftp.php:587,
7566
  #: src/methods/googledrive.php:558, src/methods/openstack-base.php:535,
7567
  #: src/methods/s3.php:1221, src/methods/stream-base.php:379
7568
  msgid "Success"
7569
+ msgstr "Успешно"
7570
 
7571
  #: src/addons/onedrive.php:904, src/methods/dropbox.php:840,
7572
  #: src/methods/dropbox.php:849, src/methods/googledrive.php:522
7573
  msgid "Your %s quota usage: %s %% used, %s available"
7574
+ msgstr "Използване на квота %s: %s %% използвана, %s на разположение"
7575
 
7576
  #: src/addons/googlecloud.php:451, src/methods/googledrive.php:492
7577
  msgid "Authorization failed"
7578
+ msgstr "Неуспешно удостоверяване"
7579
 
7580
  #: src/addons/googlecloud.php:443, src/methods/googledrive.php:484
7581
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
7582
+ msgstr "Не опресняване токен е получен от Google. Това често означава, че сте въвели клиента си тайно погрешно или че все още не сте удостоверили (по-долу) след коригирането му. Проверете отново, след което следвайте връзката, за да удостоверите отново. И накрая, ако това не работи, използвайте експертен режим, за да изтриете всичките си настройки, да създадете нов идентификационен номер на клиента на Google и да започнете отново."
7583
 
7584
  #: src/methods/addon-not-yet-present.php:80
7585
  msgid "follow this link to get it"
7586
+ msgstr "следвайте тази връзка, за да го получите"
7587
 
7588
  #: src/methods/addon-not-yet-present.php:80
7589
  msgid "%s support is available as an add-on"
7590
+ msgstr "Поддръжката на %s е налична като добавка"
7591
 
7592
  #: src/methods/addon-not-yet-present.php:26,
7593
  #: src/methods/addon-not-yet-present.php:64,
7594
  #: src/methods/addon-not-yet-present.php:71
7595
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
7596
+ msgstr "Нямате инсталирана добавката UpdraftPlus %s - да го получите от %s"
7597
 
7598
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:126,
7599
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:127
7600
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
7601
+ msgstr "Трябва да удостоверите отново с %s, тъй като вашите съществуващи идентификационни данни не работят."
7602
 
7603
  #: src/admin.php:3615, src/admin.php:3650, src/admin.php:3654,
7604
  #: src/includes/class-remote-send.php:407,
7605
  #: src/includes/class-storage-methods-interface.php:317, src/restorer.php:410,
7606
  #: src/restorer.php:3348, src/restorer.php:3468
7607
  msgid "OK"
7608
+ msgstr "ОК"
7609
 
7610
  #: src/restorer.php:3342, src/restorer.php:3432
7611
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
7612
+ msgstr "Префиксът на таблицата е променен: съответно променя полето (полетата на %s) таблица:"
7613
 
7614
  #: src/addons/migrator.php:1326, src/restorer.php:3160
7615
  msgid "the database query being run was:"
7616
+ msgstr "заявката за база данни, която се изпълнява, е:"
7617
 
7618
  #: src/restorer.php:2303
7619
  msgid "will restore as:"
7620
+ msgstr "ще се възстанови като:"
7621
 
7622
  #: src/class-updraftplus.php:4650, src/restorer.php:2175,
7623
  #: src/restorer.php:2611, src/restorer.php:2730
7624
  msgid "Old table prefix:"
7625
+ msgstr "Стар префикс на таблицата:"
7626
 
7627
  #: src/addons/reporting.php:86, src/addons/reporting.php:195,
7628
  #: src/class-updraftplus.php:3475, src/class-updraftplus.php:4575
7629
  msgid "Backup of:"
7630
+ msgstr "Архивиране на:"
7631
 
7632
  #: src/restorer.php:2389
7633
  msgid "Failed to open database file"
7634
+ msgstr "Грешка при отваряне на файла на базата данни"
7635
 
7636
  #: src/restorer.php:2368
7637
  msgid "Failed to find database file"
7638
+ msgstr "Неуспешно намиране на файл на база данни"
7639
 
7640
  #: src/restorer.php:2345
7641
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
7642
+ msgstr "Предупреждение: PHP safe_mode е активен на сървъра Ви. Времето за изчакване е много по-вероятно. Ако това се случи, тогава ще трябва да възстановите ръчно файла чрез phpMyAdmin или друг метод."
7643
 
7644
  #: src/restorer.php:1178
7645
  msgid "wp-config.php from backup: restoring (as per user's request)"
7646
+ msgstr "wp-config.php от архивиране: възстановяване (според искане на потребителя)"
7647
 
7648
  #: src/restorer.php:1171
7649
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
7650
+ msgstr "wp-config.php от архивиране: ще се възстанови като WP-config-backup.php"
7651
 
7652
  #: src/restorer.php:1046
7653
  msgid "Failed to write out the decrypted database to the filesystem"
7654
+ msgstr "Неуспешно записване на разшифрованата база данни във файловата система"
7655
 
7656
  #: src/restorer.php:1030
7657
  msgid "Failed to create a temporary directory"
7658
+ msgstr "Неуспешно създаване на временна директория"
7659
 
7660
  #: src/restorer.php:731
7661
  msgid "Failed to delete working directory after restoring."
7662
+ msgstr "Неуспешно изтриване на работната директория след възстановяване."
7663
 
7664
  #: src/restorer.php:726
7665
  msgid "Cleaning up rubbish..."
7666
+ msgstr "Почиствам боклука..."
7667
 
7668
  #: src/restorer.php:725
7669
  msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
7670
+ msgstr "Възстановяване на базата данни (на голям сайт това може да отнеме много време - ако това време (което може да се случи, ако уеб хостинг компания е конфигурирала хостинга ви да ограничава ресурсите), тогава трябва да използвате друг метод, като phpMyAdmin)..."
7671
 
7672
  #: src/restorer.php:722
7673
  msgid "Database successfully decrypted."
7674
+ msgstr "Базата данни е успешно дешифрирана."
7675
 
7676
  #: src/restorer.php:721
7677
  msgid "Decrypting database (can take a while)..."
7678
+ msgstr "Дешифриране на база данни (може да отнеме известно време)..."
7679
 
7680
  #: src/restorer.php:720
7681
  msgid "Unpacking backup..."
7682
+ msgstr "Разопаковане на архивно копие..."
7683
 
7684
  #: src/restorer.php:719
7685
  msgid "Copying this entity failed."
7686
+ msgstr "Копирането на този обект е неуспешно."
7687
 
7688
  #: src/restorer.php:718
7689
  msgid "Backup file not available."
7690
+ msgstr "Няма наличен архивен файл."
7691
 
7692
  #: src/restorer.php:717
7693
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
7694
+ msgstr "UpdraftPlus не е в състояние директно да възстанови този вид на обект. Трябва да се възстанови ръчно."
7695
 
7696
  #: src/restorer.php:418, src/restorer.php:419
7697
  msgid "Could not find one of the files for restoration"
7698
+ msgstr "Не може да се намери един от файловете за възстановяване"
7699
 
7700
  #: src/restorer.php:601
7701
  msgid "Error message"
7702
+ msgstr "Съобщение за грешка"
7703
 
7704
  #: src/restorer.php:415
7705
  msgid "The backup records do not contain information about the proper size of this file."
7706
+ msgstr "Архивните записи не съдържат информация за правилния размер на този файл."
7707
 
7708
  #: src/restorer.php:407
7709
  msgid "Archive is expected to be size:"
7710
+ msgstr "Очаква се архивът да бъде размер:"
7711
 
7712
  #: src/admin.php:4900
7713
  msgid "If making a request for support, please include this information:"
7714
+ msgstr "Ако правите заявка за поддръжка, моля, включете тази информация:"
7715
 
7716
  #: src/admin.php:4900
7717
  msgid "ABORT: Could not find the information on which entities to restore."
7718
+ msgstr "ABORT: Не може да се намери информация за това кои обекти да се възстанови."
7719
 
7720
  #: src/addons/wp-cli.php:622
7721
  msgid "UpdraftPlus Restoration: Progress"
7722
+ msgstr "Възстановяване на updraftPlus: Прогрес"
7723
 
7724
  #: src/admin.php:4863
7725
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
7726
+ msgstr "Това архивиране не съществува в хронологията на архивирането - възстановяването е прекратено. Клеймото:"
7727
 
7728
  #: src/admin.php:4328
7729
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
7730
+ msgstr "След като натиснете този бутон, ще ви бъде дадена възможност да изберете кои компоненти"
7731
 
7732
  #: src/admin.php:4412
7733
  msgid "Delete this backup set"
7734
+ msgstr "Изтриване на този архивен набор"
7735
 
7736
  #: src/admin.php:4077
7737
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
7738
+ msgstr "Добра новина: Съобщенията на вашия сайт с %s могат да бъдат шифровани. Ако видите грешки, свързани с шифроването, потърсете в \"Експертни настройки\" за допълнителна помощ."
7739
 
7740
  #: src/admin.php:4074
7741
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
7742
+ msgstr "Php/Curl инсталацията на вашия уеб сървър не поддържа https достъп. Не можем да осъществим достъп до %s без тази поддръжка. Обърнете се към поддръжката на вашия уеб хостинг доставчик. %s <strong>изисква</strong> Curl+https. Моля, не подавайте заявки за поддръжка; няма алтернатива."
7743
 
7744
  #: src/admin.php:4072
7745
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
7746
+ msgstr "Php/Curl инсталацията на вашия уеб сървър не поддържа https достъп. Комуникациите с %s няма да бъдат закрити. Помолете вашия уеб хост да инсталира Curl/SSL, за да придобие възможност за шифроване (чрез добавка)."
7747
 
7748
  #: src/methods/cloudfiles-new.php:96, src/methods/cloudfiles.php:443,
7749
  #: src/methods/openstack-base.php:576, src/methods/s3.php:887
7750
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
7751
+ msgstr "PHP инсталацията на вашия уеб сървър не включва задължителен модул (%s). Обърнете се към поддръжката на вашия уеб хостинг доставчик."
7752
 
7753
  #: src/templates/wp-admin/settings/form-contents.php:374
7754
  msgid "Save Changes"
7756
 
7757
  #: src/templates/wp-admin/settings/form-contents.php:346
7758
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
7759
+ msgstr "Изборът на тази опция намалява вашата сигурност, като спира UpdraftPlus да използва SSL за удостоверяване и криптиран транспорт на всички, където е възможно. Имайте предвид, че някои доставчици на облачно съхранение не позволяват това (например Dropbox), така че с тези доставчици тази настройка няма да има ефект."
7760
 
7761
  #: src/templates/wp-admin/settings/form-contents.php:345
7762
  msgid "Disable SSL entirely where possible"
7763
+ msgstr "Забраняване на SSL, когато е възможно"
7764
 
7765
  #: src/templates/wp-admin/settings/form-contents.php:341
7766
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
7767
+ msgstr "Имайте предвид, че не всички методи за архивиране в облака са задължително с помощта на SSL удостоверяване."
7768
 
7769
  #: src/templates/wp-admin/settings/form-contents.php:341
7770
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
7771
+ msgstr "Изборът на тази опция намалява сигурността ви, като спира UpdraftPlus от проверка на самоличността на шифровани сайтове, към които се свързва (напр. Dropbox, Google Диск). Това означава, че UpdraftPlus ще използва SSL само за криптиране на трафика, а не за удостоверяване."
7772
 
7773
  #: src/templates/wp-admin/settings/form-contents.php:340
7774
  msgid "Do not verify SSL certificates"
7775
+ msgstr "Не проверявай SSL сертификати"
7776
 
7777
  #: src/templates/wp-admin/settings/form-contents.php:336
7778
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
7779
+ msgstr "По подразбиране UpdraftPlus използва своя собствен магазин на SSL сертификати, за да провери самоличността на отдалечени сайтове (т.е. за да се уверите, че говори с реалния Dropbox, Amazon S3 и т.н., а не нападател). Поддържаме тези актуални. Ако обаче получите грешка в SSL, тогава изборът на тази опция (която кара UpdraftPlus да използва вместо това колекцията на вашия уеб сървър) може да помогне."
7780
 
7781
  #: src/templates/wp-admin/settings/form-contents.php:335
7782
  msgid "Use the server's SSL certificates"
7783
+ msgstr "Използване на SSL сертификати на сървъра"
7784
 
7785
  #: src/admin.php:3893
7786
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
7787
+ msgstr "Ако това е неуспешен, проверете разрешенията на вашия сървър или го променете в друга директория, която може да се записва от процеса на вашия уеб сървър."
7788
 
7789
  #: src/admin.php:3893
7790
  msgid "or, to reset this option"
7791
+ msgstr "или, за да нулирате тази опция"
7792
 
7793
  #: src/admin.php:3893
7794
  msgid "Follow this link to attempt to create the directory and set the permissions"
7795
+ msgstr "Следвайте тази връзка, за да се опитате да създадете директория и да зададете разрешения"
7796
 
7797
  #: src/admin.php:3885
7798
  msgid "Backup directory specified is writable, which is good."
7799
+ msgstr "Указаната директория за архивиране е записваема, което е добро."
7800
 
7801
  #: src/templates/wp-admin/settings/form-contents.php:319
7802
  msgid "Backup directory"
7803
+ msgstr "Директория за архивиране"
7804
 
7805
  #: src/templates/wp-admin/settings/form-contents.php:314
7806
  msgid "Delete local backup"
7807
+ msgstr "Изтриване на локално архивиране"
7808
 
7809
  #: src/templates/wp-admin/settings/form-contents.php:294
7810
  msgid "open this to show some further options; don't bother with this unless you have a problem or are curious."
7811
+ msgstr "отворете това, за да покажете някои допълнителни опции; Не се занимавайте с това, освен ако нямате проблем или сте любопитни."
7812
 
7813
  #: src/templates/wp-admin/settings/form-contents.php:294
7814
  msgid "Show expert settings"
7815
+ msgstr "Показване на експертните настройки"
7816
 
7817
  #: src/templates/wp-admin/settings/form-contents.php:293
7818
  msgid "Expert settings"
7819
+ msgstr "Експертни настройки"
7820
 
7821
  #: src/templates/wp-admin/settings/form-contents.php:304
7822
  msgid "Debug mode"
7823
+ msgstr "Режим на отстраняване"
7824
 
7825
  #: src/templates/wp-admin/settings/form-contents.php:289
7826
  msgid "Advanced / Debugging Settings"
7827
+ msgstr "Разширени настройки за отстраняване на грешки"
7828
 
7829
  #: src/admin.php:832
7830
  msgid "Requesting start of backup..."
7831
+ msgstr "Искам да започна подкрепление..."
7832
 
7833
  #: src/addons/morefiles.php:876, src/admin.php:849,
7834
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:94
7838
  #: src/addons/incremental.php:328, src/addons/reporting.php:259,
7839
  #: src/admin.php:4158
7840
  msgid "None"
7841
+ msgstr "Няма"
7842
 
7843
  #: src/templates/wp-admin/settings/form-contents.php:104
7844
  msgid "Choose your remote storage"
7845
+ msgstr "Изберете вашето отдалечено хранилище"
7846
 
7847
  #: src/templates/wp-admin/settings/form-contents.php:179
7848
  msgid "Manually decrypt a database backup file"
7849
+ msgstr "Ръчно дешифриране на архивен файл на база данни"
7850
 
7851
  #: src/templates/wp-admin/settings/form-contents.php:158
7852
  msgid "Database encryption phrase"
7853
+ msgstr "Фраза за шифроване на база данни"
7854
 
7855
  #: src/admin.php:3076, src/methods/updraftvault.php:387,
7856
  #: src/templates/wp-admin/settings/form-contents.php:256,
7860
 
7861
  #: src/templates/wp-admin/settings/form-contents.php:148
7862
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
7863
+ msgstr "Горните директории са всичко, с изключение на самото ядро на WordPress, което можете да изтеглите отново от WordPress.org."
7864
 
7865
  #: src/addons/morefiles.php:344
7866
  msgid "Exclude these:"
7867
+ msgstr "Без тези артикули:"
7868
 
7869
  #: src/admin.php:3973
7870
  msgid "Any other directories found inside wp-content"
7871
+ msgstr "Всички други директории, намерени в wp-съдържание"
7872
 
7873
  #: src/templates/wp-admin/settings/form-contents.php:145
7874
  msgid "Include in files backup"
7875
+ msgstr "Включване в архивирането на файлове"
7876
 
7877
  #: src/templates/wp-admin/settings/form-contents.php:88
7878
  msgid "e.g. if your server is busy at day and you want to run overnight"
7879
+ msgstr "например ако вашият сървър е зает през деня и искате да стартирате през нощта"
7880
 
7881
  #: src/templates/wp-admin/settings/form-contents.php:88
7882
  msgid "To fix the time at which a backup should take place,"
7883
+ msgstr "За да се определи времето, в което трябва да се извърши архивирането,"
7884
 
7885
  #: src/templates/wp-admin/settings/form-contents.php:62
7886
  msgid "Database backup interval"
7887
+ msgstr "Интервал на архивиране на база данни"
7888
 
7889
  #: src/addons/incremental.php:337, src/admin.php:3875
7890
  msgid "Monthly"
7892
 
7893
  #: src/addons/incremental.php:336, src/admin.php:3874
7894
  msgid "Fortnightly"
7895
+ msgstr "Две седмици"
7896
 
7897
  #: src/addons/incremental.php:335, src/admin.php:3873
7898
  msgid "Weekly"
7904
 
7905
  #: src/templates/wp-admin/settings/form-contents.php:25
7906
  msgid "Files backup interval"
7907
+ msgstr "Интервал за архивиране на файлове"
7908
 
7909
  #: src/admin.php:857, src/admin.php:3846
7910
  msgid "Download log file"
7911
+ msgstr "Изтегляне на регистрационен файл"
7912
 
7913
  #: src/admin.php:3718
7914
  msgid "The folder exists, but your webserver does not have permission to write to it."
7915
+ msgstr "Папката съществува, но вашият уеб сървър няма разрешение да я пише."
7916
 
7917
  #: src/admin.php:3713
7918
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
7919
+ msgstr "Папката е създадена, но трябваше да променим разрешенията си за файлове на 777 (с възможност за world-write), за да може да пише в нея. Трябва да проверите при вашия хостинг доставчик, че това няма да доведе до никакви проблеми"
7920
 
7921
  #: src/admin.php:3699
7922
  msgid "The request to the filesystem to create the directory failed."
7923
+ msgstr "Искането за създаване на директорията е неуспешно."
7924
 
7925
  #: src/admin.php:850, src/admin.php:3608, src/admin.php:3642,
7926
  #: src/admin.php:4412, src/includes/class-remote-send.php:646,
7927
  #: src/templates/wp-admin/settings/existing-backups-table.php:168,
7928
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7929
  msgid "Delete"
7930
+ msgstr "Изтрий"
7931
 
7932
  #: src/admin.php:3560
7933
  msgid "show log"
7934
+ msgstr "показване на дневник"
7935
 
7936
  #: src/templates/wp-admin/advanced/wipe-settings.php:10
7937
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
7938
+ msgstr "Това ще изтрие всички настройки на UpdraftPlus - наистина ли искате да направите това?"
7939
 
7940
  #: src/templates/wp-admin/advanced/total-size.php:19
7941
  msgid "count"
7942
+ msgstr "преброяване"
7943
 
7944
  #: src/templates/wp-admin/advanced/total-size.php:9
7945
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
7946
+ msgstr "Nb. Това се базира на това какво е било или не, изключва последния път, когато сте записали опциите."
7947
 
7948
  #: src/templates/wp-admin/advanced/total-size.php:6
7949
  msgid "Total (uncompressed) on-disk data:"
7950
+ msgstr "Общо (некомпресирани) данни на диска:"
7951
 
7952
  #: src/templates/wp-admin/advanced/site-info.php:66,
7953
  #: src/templates/wp-admin/settings/tab-addons.php:105,
7998
  #: src/templates/wp-admin/advanced/site-info.php:58,
7999
  #: src/templates/wp-admin/advanced/site-info.php:59
8000
  msgid "%s version:"
8001
+ msgstr "Версия %s:"
8002
 
8003
  #: src/templates/wp-admin/advanced/site-info.php:43
8004
  msgid "Current memory usage"
8005
+ msgstr "Текущо използване на паметта"
8006
 
8007
  #: src/templates/wp-admin/advanced/site-info.php:42
8008
  msgid "Peak memory usage"
8009
+ msgstr "Максимално използване на паметта"
8010
 
8011
  #: src/templates/wp-admin/advanced/site-info.php:31
8012
  msgid "Web server:"
8013
+ msgstr "Уеб сървър:"
8014
 
8015
  #: src/templates/wp-admin/settings/take-backup.php:98
8016
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
8017
+ msgstr "Моля, разгледайте UpdraftPlus Premium или самостоятелната многостранна добавка."
8018
 
8019
  #: src/templates/wp-admin/settings/take-backup.php:98
8020
  msgid "Do you need WordPress Multisite support?"
8021
+ msgstr "Нуждаете ли се от поддръжка на WordPress?"
8022
 
8023
  #: src/templates/wp-admin/settings/take-backup.php:94
8024
  msgid "Multisite"
8025
+ msgstr "Многоезичен сайт"
8026
 
8027
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:45
8028
  msgid "Do read this helpful article of useful things to know before restoring."
8029
+ msgstr "Прочетете тази полезна статия за полезни неща, които трябва да знаете преди да го възстановите."
8030
 
8031
  #: src/class-updraftplus.php:4609
8032
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
8033
+ msgstr "Можете да търсите и замествате вашата база данни (за мигриране на уеб сайт към ново местоположение/URL адрес) с добавката Мигратор - следвайте тази връзка за повече информация"
8034
 
8035
  #: src/addons/morefiles.php:151,
8036
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
8037
  msgid "%s restoration options:"
8038
+ msgstr "%s опции за възстановяване:"
8039
 
8040
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
8041
  msgid "You will need to restore it manually."
8042
+ msgstr "Ще трябва да го възстановите ръчно."
8043
 
8044
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
8045
  msgid "The following entity cannot be restored automatically: \"%s\"."
8046
+ msgstr "Следният обект не може да бъде възстановен автоматично: \"%s\"."
8047
 
8048
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:60
8049
  msgid "Your web server has PHP's so-called safe_mode active."
8050
+ msgstr "Вашият уеб сървър има така наречените safe_mode PHP."
8051
 
8052
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:44
8053
  msgid "Choose the components to restore"
8054
+ msgstr "Изберете компонентите за възстановяване"
8055
 
8056
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:44
8057
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
8058
+ msgstr "Възстановяването ще замени темите, плъгините, качването, базата данни и/или други директории на съдържанието (според съдържанието, което се съдържа в архивния набор и избора ви)."
8059
 
8060
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:32
8061
  msgid "Restore backup"
8062
+ msgstr "Възстановяване на архив"
8063
 
8064
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:8
8065
  msgid "Delete backup set"
8066
+ msgstr "Изтриване на архивен набор"
8067
 
8068
  #: src/admin.php:831
8069
  msgid "Download error: the server sent us a response which we did not understand."
8070
+ msgstr "Грешка при изтегляне: сървърът ни изпрати отговор, който не разбираме."
8071
 
8072
  #: src/addons/backblaze.php:205, src/addons/backblaze.php:230,
8073
  #: src/addons/cloudfiles-enhanced.php:123, src/addons/migrator.php:903,
8089
  #: src/methods/remotesend.php:252, src/methods/updraftvault.php:564,
8090
  #: src/restorer.php:412, src/restorer.php:440, src/restorer.php:2069
8091
  msgid "Error:"
8092
+ msgstr "Грешка:"
8093
 
8094
  #: src/admin.php:814
8095
  msgid "calculating..."
8096
+ msgstr "изчисляване..."
8097
 
8098
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:68,
8099
  #: src/templates/wp-admin/settings/tab-backups.php:70
8100
  msgid "UpdraftPlus - Upload backup files"
8101
+ msgstr "UpdraftPlus - Качване на резервни файлове"
8102
 
8103
  #: src/includes/class-filesystem-functions.php:105,
8104
  #: src/templates/wp-admin/advanced/site-info.php:38
8105
  msgid "refresh"
8106
+ msgstr "обновяване"
8107
 
8108
  #: src/includes/class-filesystem-functions.php:126,
8109
  #: src/templates/wp-admin/advanced/site-info.php:38
8110
  msgid "Web-server disk space in use by UpdraftPlus"
8111
+ msgstr "Дисково пространство на уеб сървъра, което се използва от UpdraftPlus"
8112
 
8113
  #: src/includes/class-filesystem-functions.php:126
8114
  msgid "This is a count of the contents of your Updraft directory"
8115
+ msgstr "Това е преброяване на съдържанието на вашата директория в Updraft"
8116
 
8117
  #: src/addons/google-enhanced.php:75, src/methods/googledrive.php:285,
8118
  #: src/methods/googledrive.php:287, src/methods/googledrive.php:558,
8124
  #: src/methods/googledrive.php:1366, src/methods/googledrive.php:1377,
8125
  #: src/methods/googledrive.php:1388
8126
  msgid "Google Drive"
8127
+ msgstr "Google Диск"
8128
 
8129
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:59,
8130
  #: src/templates/wp-admin/settings/tab-backups.php:63
8131
  msgid "If you are using this, then turn Turbo/Road mode off."
8132
+ msgstr "Ако използвате това, изключете турбо/пътния режим."
8133
 
8134
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:59,
8135
  #: src/templates/wp-admin/settings/tab-backups.php:63
8136
  msgid "Opera web browser"
8137
+ msgstr "Уеб браузър на Opera"
8138
 
8139
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:47,
8140
  #: src/templates/wp-admin/settings/tab-backups.php:51
8141
  msgid "More tasks:"
8142
+ msgstr "Още задачи:"
8143
 
8144
  #: src/admin.php:3238
8145
  msgid "Download most recently modified log file"
8146
+ msgstr "Изтегляне на последно променения регистрационен файл"
8147
 
8148
  #: src/central/bootstrap.php:194
8149
  msgid "(Nothing yet logged)"
8150
+ msgstr "(Нищо не е записано)"
8151
 
8152
  #: src/addons/autobackup.php:365, src/addons/autobackup.php:460,
8153
  #: src/admin.php:3194, src/admin.php:3200,
8154
  #: src/templates/wp-admin/settings/take-backup.php:71
8155
  msgid "Last log message"
8156
+ msgstr "Последно съобщение на регистрационния файл"
8157
 
8158
  #: src/addons/migrator.php:271, src/admin.php:662, src/admin.php:856,
8159
  #: src/admin.php:4328
8160
  msgid "Restore"
8161
+ msgstr "Възстановяване"
8162
 
8163
  #: src/admin.php:848, src/templates/wp-admin/settings/take-backup.php:51
8164
  msgid "Backup Now"
8165
+ msgstr "Архивиране сега"
8166
 
8167
  #: src/templates/wp-admin/settings/take-backup.php:46
8168
  msgid "Time now"
8169
+ msgstr "Време е"
8170
 
8171
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:274,
8172
  #: src/addons/wp-cli.php:428, src/admin.php:355, src/admin.php:4133,
8178
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82,
8179
  #: src/templates/wp-admin/settings/take-backup.php:34
8180
  msgid "Database"
8181
+ msgstr "Бази данни"
8182
 
8183
  #: src/admin.php:345, src/admin.php:5468,
8184
  #: src/templates/wp-admin/settings/take-backup.php:24
8185
  msgid "Files"
8186
+ msgstr "Файлове"
8187
 
8188
  #: src/templates/wp-admin/settings/take-backup.php:19
8189
  msgid "Next scheduled backups"
8190
+ msgstr "Следващи планирани архиви"
8191
 
8192
  #: src/admin.php:324
8193
  msgid "At the same time as the files backup"
8194
+ msgstr "В същото време, като архивиране на файлове"
8195
 
8196
  #: src/admin.php:314, src/admin.php:335, src/admin.php:342, src/admin.php:387,
8197
  #: src/admin.php:418
8198
  msgid "Nothing currently scheduled"
8199
+ msgstr "Нищо планирано в момента"
8200
 
8201
  #: src/templates/wp-admin/settings/take-backup.php:6
8202
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
8203
+ msgstr "Този администраторски интерфейс използва JavaScript силно. Трябва или да го активирате в браузъра си, или да използвате браузър, който може да поддържа JavaScript."
8204
 
8205
  #: src/templates/wp-admin/settings/take-backup.php:6
8206
  msgid "JavaScript warning"
8207
+ msgstr "Предупреждение за JavaScript"
8208
 
8209
  #: src/admin.php:834, src/admin.php:3287
8210
  msgid "Delete Old Directories"
8211
+ msgstr "Изтриване на стари директории"
8212
 
8213
  #: src/admin.php:2733
8214
  msgid "Current limit is:"
8215
+ msgstr "Настоящото ограничение е:"
8216
 
8217
  #: src/admin.php:2708
8218
  msgid "Your backup has been restored."
8219
+ msgstr "Архивирането ви е възстановено."
8220
 
8221
  #: src/templates/wp-admin/settings/header.php:25
8222
  msgid "Version"
8224
 
8225
  #: src/templates/wp-admin/settings/header.php:25
8226
  msgid "Lead developer's homepage"
8227
+ msgstr "Начална страница на програмиста на потенциални клиенти"
8228
 
8229
  #: src/central/bootstrap.php:526
8230
  msgid "UpdraftPlus.Com"
8231
+ msgstr "UpdraftPlus.Com"
8232
 
8233
  #: src/admin.php:5362
8234
  msgid "Your settings have been wiped."
8235
+ msgstr "Настройките ви са били изтрити."
8236
 
8237
  #: src/admin.php:2672
8238
  msgid "Backup directory successfully created."
8239
+ msgstr "Архивната директория е създадена успешно."
8240
 
8241
  #: src/admin.php:2665
8242
  msgid "Backup directory could not be created"
8243
+ msgstr "Директорията за архивиране не може да бъде създадена"
8244
 
8245
  #: src/admin.php:3576
8246
  msgid "Old directory removal failed for some reason. You may want to do this manually."
8247
+ msgstr "Премахването на старата директория е неуспешно по някаква причина. Може да искате да направите това ръчно."
8248
 
8249
  #: src/admin.php:3574
8250
  msgid "Old directories successfully removed."
8251
+ msgstr "Старите директории са успешно премахнати."
8252
 
8253
  #: src/admin.php:3571, src/admin.php:3571
8254
  msgid "Remove old directories"
8255
+ msgstr "Премахване на стари директории"
8256
 
8257
  #: src/addons/migrator.php:340, src/addons/migrator.php:355
8258
  msgid "Return to UpdraftPlus Configuration"
8259
+ msgstr "Връщане към конфигурацията на UpdraftPlus"
8260
 
8261
  #: src/admin.php:827, src/admin.php:2674, src/admin.php:3578,
8262
  #: src/admin.php:4696, src/admin.php:4708, src/admin.php:4719,
8263
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
8264
  #: src/templates/wp-admin/settings/existing-backups-table.php:143
8265
  msgid "Actions"
8266
+ msgstr "Действия"
8267
 
8268
  #: src/admin.php:2573
8269
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
8270
+ msgstr "Лош файлов формат - това не изглежда като шифрован файл на база данни, създаден от UpdraftPlus"
8271
 
8272
  #: src/admin.php:2473
8273
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
8274
+ msgstr "Лош формат на файл - това не изглежда като файл, създаден от UpdraftPlus"
8275
 
8276
  #: src/admin.php:2361
8277
  msgid "No local copy present."
8278
+ msgstr "Няма локален екземпляр."
8279
 
8280
  #: src/admin.php:2358
8281
  msgid "Download in progress"
8282
+ msgstr "В ход е изтеглянето"
8283
 
8284
  #: src/admin.php:826, src/admin.php:2347
8285
  msgid "File ready."
8286
+ msgstr "Досието е готово."
8287
 
8288
  #: src/admin.php:2328
8289
  msgid "Download failed"
8290
+ msgstr "Неуспешно изтегляне"
8291
 
8292
  #: src/addons/wp-cli.php:497, src/admin.php:824,
8293
  #: src/class-updraftplus.php:1441, src/class-updraftplus.php:1485,
8299
  #: src/restorer.php:3344, src/restorer.php:3369, src/restorer.php:3465,
8300
  #: src/udaddons/options.php:225, src/updraftplus.php:157
8301
  msgid "Error"
8302
+ msgstr "Грешка"
8303
 
8304
  #: src/admin.php:2095
8305
  msgid "Could not find that job - perhaps it has already finished?"
8306
+ msgstr "Не можах да намеря тази работа - може би вече е свършила?"
8307
 
8308
  #: src/admin.php:2087
8309
  msgid "Job deleted"
8310
+ msgstr "Заданието е изтрито"
8311
 
8312
  #: src/admin.php:2190, src/includes/class-commands.php:839
8313
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
8314
+ msgstr "OK. Скоро трябва да видите активност в полето \"Последно съобщение за регистрационен файл\" по-долу."
8315
 
8316
  #: src/admin.php:901
8317
  msgid "Nothing yet logged"
8318
+ msgstr "Нищо все още не е регистрирано"
8319
 
8320
  #: src/admin.php:1208
8321
  msgid "Please consult this FAQ if you have problems backing up."
8322
+ msgstr "Моля, консултирайте се с този ЧЗВ, ако имате проблеми с архивирането."
8323
 
8324
  #: src/admin.php:1208
8325
  msgid "Your website is hosted using the %s web server."
8326
+ msgstr "Вашият уеб сайт се хоства с помощта на уеб сървъра %s."
8327
 
8328
  #: src/admin.php:1204
8329
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
8330
+ msgstr "UpdraftPlus не поддържа официално версии на WordPress преди %s. Тя може да работи за вас, но ако не, имайте предвид, че няма поддръжка, докато не надстроите WordPress."
8331
 
8332
  #: src/admin.php:1200
8333
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
8334
+ msgstr "Имате по-малко от %s свободно дисково пространство на диска, който UpdraftPlus е конфигуриран да използва за създаване на архиви. UpdraftPlus може да се изчерпи от пространството. Свържете се с вас, вие сте операторът на вашия сървър (напр. вашата уеб хостинг компания), за да разрешите този проблем."
8335
 
8336
  #: src/addons/azure.php:597, src/addons/migrator.php:957, src/admin.php:1189,
8337
  #: src/admin.php:1194, src/admin.php:1200, src/admin.php:1204,
8345
  #: src/templates/wp-admin/settings/tab-backups.php:27,
8346
  #: src/udaddons/updraftplus-addons.php:301
8347
  msgid "Warning"
8348
+ msgstr "Внимание"
8349
 
8350
  #: src/admin.php:1128
8351
  msgid "Add-Ons / Pro Support"
8352
+ msgstr "Добавки / Поддръжка на Pro"
8353
 
8354
  #: src/admin.php:678, src/admin.php:1126, src/admin.php:2895
8355
  msgid "Settings"
8356
+ msgstr "Настройки"
8357
 
8358
  #: src/backup.php:279
8359
  msgid "Could not create %s zip. Consult the log file for more information."
8360
+ msgstr "Не може да се създаде %s цип. За повече информация вижте регистрационния файл."
8361
 
8362
  #: src/backup.php:2196
8363
  msgid "Infinite recursion: consult your log for more information"
8364
+ msgstr "Безкрайно рекурсия: консултирайте се с вашия регистрационен файл за повече информация"
8365
 
8366
  #: src/includes/updraftplus-notices.php:118
8367
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org."
8368
+ msgstr "Моля, помогнете updraftPlus, като даде положителен преглед на wordpress.org."
8369
 
8370
  #: src/includes/updraftplus-notices.php:117
8371
  msgid "Like UpdraftPlus and can spare one minute?"
8372
+ msgstr "Като UpdraftPlus и може да отдели една минута?"
8373
 
8374
  #: src/addons/azure.php:260, src/class-updraftplus.php:4282,
8375
  #: src/methods/googledrive.php:1251, src/methods/s3.php:351
8378
 
8379
  #: src/includes/class-updraftplus-encryption.php:354
8380
  msgid "The decryption key used:"
8381
+ msgstr "Използваният ключ за декриптиране:"
8382
 
8383
  #: src/class-updraftplus.php:4505,
8384
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:1051
8385
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
8386
+ msgstr "Неуспешна дешифриране. Най-вероятната причина е, че сте използвали грешен ключ."
8387
 
8388
  #: src/class-updraftplus.php:4493,
8389
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:1038
8390
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
8391
+ msgstr "Неуспешна дешифриране. Файлът на базата данни е шифрован, но не е въведен ключ за шифроване."
8392
 
8393
  #: src/backup.php:2084
8394
  msgid "Could not open the backup file for writing"
8395
+ msgstr "Не може да се отвори архивният файл за запис"
8396
 
8397
  #: src/class-updraftplus.php:4024
8398
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
8399
+ msgstr "Историята на архивирането не може да се запише, защото нямаме резервен масив. Вероятно архивирането е неуспешно."
8400
 
8401
  #: src/class-updraftplus.php:4008
8402
  msgid "Could not read the directory"
8403
+ msgstr "Директорията не може да бъде прочетена"
8404
 
8405
  #: src/admin.php:2415, src/backup.php:1206
8406
  msgid "Backup directory (%s) is not writable, or does not exist."
8407
+ msgstr "Директорията за архивиране (%s) не може да се записва или не съществува."
8408
 
8409
  #: src/class-updraftplus.php:3476
8410
  msgid "WordPress backup is complete"
8411
+ msgstr "Архивирането в WordPress е завършено"
8412
 
8413
  #: src/class-updraftplus.php:3318
8414
  msgid "The backup attempt has finished, apparently unsuccessfully"
8415
+ msgstr "Опитът за архивиране е завършен, очевидно безуспешно"
8416
 
8417
  #: src/class-updraftplus.php:3295
8418
  msgid "The backup apparently succeeded and is now complete"
8419
+ msgstr "Архивирането очевидно е успешно и сега е завършено"
8420
 
8421
  #: src/addons/moredatabase.php:387
8422
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
8423
+ msgstr "Грешка при шифроване при шифроване на база данни. Шифроването е прекратено."
8424
 
8425
  #: src/class-updraftplus.php:2976
8426
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
8427
+ msgstr "Не можаха да се създадат файлове в директорията за архивиране. Архивирането е прекратено - проверете настройките на UpdraftPlus."
8428
 
8429
  #: src/class-updraftplus.php:1938
8430
  msgid "Others"
8431
+ msgstr "Други"
8432
 
8433
  #: src/addons/multisite.php:503, src/class-updraftplus.php:1923
8434
  msgid "Uploads"
8435
+ msgstr "Качвания"
8436
 
8437
  #: src/class-updraftplus.php:1922
8438
  msgid "Themes"
8439
+ msgstr "Теми"
8440
 
8441
  #: src/class-updraftplus.php:1921
8442
  msgid "Plugins"
8443
+ msgstr "Плъгини"
8444
 
8445
  #: src/class-updraftplus.php:660
8446
  msgid "No log files were found."
8447
+ msgstr "Не са намерени лог файлове."
8448
 
8449
  #: src/admin.php:2277, src/admin.php:2281, src/class-updraftplus.php:655
8450
  msgid "The log file could not be read."
8451
+ msgstr "Регистрационният файл не можа да бъде прочетен."
8452
 
8453
  #: src/admin.php:1237, src/admin.php:1258, src/admin.php:1282,
8454
  #: src/class-updraftplus.php:595, src/class-updraftplus.php:655,
8455
  #: src/class-updraftplus.php:660, src/class-updraftplus.php:665
8456
  msgid "UpdraftPlus notice:"
8457
+ msgstr "Известие за UpdraftPlus:"
8458
 
8459
  #: src/addons/multisite.php:96, src/addons/multisite.php:776,
8460
  #: src/options.php:74
8461
  msgid "UpdraftPlus Backups"
8462
+ msgstr "Резервни копия на updraftPlus"
languages/updraftplus-ja.mo CHANGED
Binary file
languages/updraftplus-ja.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2019-11-05 13:17:27+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -5412,11 +5412,11 @@ msgstr "設定が見つかりませんでした。"
5412
 
5413
  #: src/includes/class-backup-history.php:682
5414
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
5415
- msgstr "一つ以上のバックアップは、リモートストレージをスキャンから追加されました。これらのバックアップは、自動的に「保持」設定を使用して削除されないことに注意してください。あなたがそれらを削除したいとき/場合は、手動で行う必要があります。"
5416
 
5417
  #: src/admin.php:803
5418
  msgid "Rescanning remote and local storage for backup sets..."
5419
- msgstr "バックアップ・セットのリモートおよびローカルストレージの再スキャン..."
5420
 
5421
  #: src/addons/googlecloud.php:1043, src/addons/googlecloud.php:1056,
5422
  #: src/addons/s3-enhanced.php:59, src/addons/s3-enhanced.php:69
@@ -5471,57 +5471,57 @@ msgstr "通常の暗号化されていない FTP"
5471
 
5472
  #: src/restorer.php:2588
5473
  msgid "Backup created by:"
5474
- msgstr "バックアップ作成者:"
5475
 
5476
  #: src/udaddons/options.php:496
5477
  msgid "Available to claim on this site"
5478
- msgstr "このサイトで請求する利用できます"
5479
 
5480
  #: src/udaddons/updraftplus-addons.php:330
5481
  msgid "To maintain your access to support, please renew."
5482
- msgstr "サポートへのアクセスを維持するために、更新してください。"
5483
 
5484
  #: src/udaddons/updraftplus-addons.php:330
5485
  msgid "Your paid access to UpdraftPlus support will soon expire."
5486
- msgstr "UpdraftPlusサポートにあなたの支払ったアクセス権がもうすぐに期限切れになります。"
5487
 
5488
  #: src/udaddons/updraftplus-addons.php:328
5489
  msgid "To regain your access, please renew."
5490
- msgstr "あなたのアクセスを回復するには、更新してください。"
5491
 
5492
  #: src/udaddons/updraftplus-addons.php:328
5493
  msgid "Your paid access to UpdraftPlus support has expired."
5494
- msgstr "UpdraftPlusサポートにあなたの支払ったアクセス権の有効期限が切れています。"
5495
 
5496
  #: src/udaddons/updraftplus-addons.php:320
5497
  msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
5498
- msgstr "このサイトのUpdraftPlusのアップデートをあなたの支払ったアクセス権がすぐに期限切れになります。"
5499
 
5500
  #: src/udaddons/updraftplus-addons.php:318,
5501
  #: src/udaddons/updraftplus-addons.php:320
5502
  msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
5503
- msgstr "サポート(将来の機能や将来のWordPressのリリースとの互換性を含む)のアップデートを保持し、維持するためには、更新してください。"
5504
 
5505
  #: src/udaddons/updraftplus-addons.php:318
5506
  msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
5507
- msgstr "このサイト上の%s の%s アドオンのUpdraftPlusのアップデートをあなたのアクセス権がすぐに期限切れになります。"
5508
 
5509
  #: src/udaddons/updraftplus-addons.php:314
5510
  msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
5511
- msgstr "このサイトに%sのアドオンのUpdraftPlusのアップデートのアクセス権の有効期限が切れています。"
5512
 
5513
  #: src/udaddons/updraftplus-addons.php:308,
5514
  #: src/udaddons/updraftplus-addons.php:314
5515
  msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
5516
- msgstr "更新プログラム権とサポート権を回復するには、更新してください。(将来の機能や将来のWordPressのリリースとの互換性を含む)"
5517
 
5518
  #: src/udaddons/updraftplus-addons.php:308
5519
  msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
5520
- msgstr "このサイトのUpdraftPlusのアップデートのために支払ったアクセス権の有効期限が切れています。あなたは、もはやUpdraftPlusの更新を受信しません。"
5521
 
5522
  #: src/udaddons/updraftplus-addons.php:271
5523
  msgid "Dismiss from main dashboard (for %s weeks)"
5524
- msgstr "メインダッシュボードから却下(%sの週間)"
5525
 
5526
  #: src/includes/class-filesystem-functions.php:336
5527
  msgid "The attempt to undo the double-compression succeeded."
@@ -5534,7 +5534,7 @@ msgstr "二重圧縮を元に戻すのに失敗しました。"
5534
 
5535
  #: src/includes/class-filesystem-functions.php:305
5536
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
5537
- msgstr "あなたがからそれをダウンロードし、おそらくWebサイトが設定ミスをしていた - データベースファイルが二度圧縮されているように見えます。"
5538
 
5539
  #: src/includes/class-wpadmin-commands.php:371
5540
  msgid "Constants"
@@ -5542,7 +5542,7 @@ msgstr "定数"
5542
 
5543
  #: src/backup.php:1688
5544
  msgid "Failed to open database file for reading:"
5545
- msgstr "読み込みのためにデータベースファイルを開くことができませんでした:"
5546
 
5547
  #: src/backup.php:1499
5548
  msgid "No database tables found"
@@ -5550,24 +5550,24 @@ msgstr "データベーステーブルが見つかりません"
5550
 
5551
  #: src/backup.php:1497
5552
  msgid "please wait for the rescheduled attempt"
5553
- msgstr "スケジュール変更の試みをお待ちください"
5554
 
5555
  #: src/addons/reporting.php:232
5556
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
5557
- msgstr "警告メッセージがアドバイスであることに注意してください- バックアッププロセスがそれらのために停止しません。その代わりに、それらはあなたが有用見つけるかもしれない情報を提供します。もしくはバックアップが成功しなかった場合には、問題の原因を示す可能性があります。"
5558
 
5559
  #: src/addons/onedrive.php:112, src/methods/dropbox.php:265
5560
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
5561
- msgstr "完全アカウント:あなたの%sアカウントに%dバイトのみが残ってましたが、アップロードするファイルは残り%dバイトを持っている(合計サイズ:%dバイト)"
5562
 
5563
  #: src/udaddons/updraftplus-addons.php:537,
5564
  #: src/udaddons/updraftplus-addons.php:631
5565
  msgid "Errors occurred:"
5566
- msgstr "発生したエラー:"
5567
 
5568
  #: src/addons/wp-cli.php:636, src/admin.php:4771
5569
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
5570
- msgstr "(任意のサポート要求のために必要)この復元のためのログファイルをダウンロードするには、このリンクに従ってください。"
5571
 
5572
  #: src/templates/wp-admin/settings/form-contents.php:346
5573
  msgid "See this FAQ also."
@@ -5575,32 +5575,32 @@ msgstr "この FAQ も参照してください。"
5575
 
5576
  #: src/templates/wp-admin/settings/form-contents.php:135
5577
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
5578
- msgstr "あなたは、リモート記憶域を選択しない場合、バックアップは、Webサーバー上に残っています。あなたのウェブサイトとのイベントでのバックアップの両方を失うことを意味するWebサーバを失うとして、(手動でコンピュータにコピーする予定がない限り)これは推奨されません。"
5579
 
5580
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:36
5581
  msgid "Retrieving (if necessary) and preparing backup files..."
5582
- msgstr "取得(必要な場合)とバックアップファイルの準備..."
5583
 
5584
  #: src/includes/class-wpadmin-commands.php:132
5585
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
5586
- msgstr "このWebサーバ上のPHPの設定は、PHPが実行するための唯一の%s秒を可能にし、この制限が発生することはできません。あなたは、インポートするデータがたくさんあるし、操作がタイムアウトを復元する場合は、方法は、この制限を上げることについては、Webホスティング会社に依頼する必要があります。(または修復少しずつを試みる)"
5587
 
5588
  #: src/restorer.php:1387
5589
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
5590
- msgstr "前の復元が未削除フォルダを存在(再試行する前にそれらを削除するには、「古いディレクトリを削除」ボタンを使用してください):%s"
5591
 
5592
  #: src/admin.php:1189, src/class-updraftplus.php:918
5593
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
5594
- msgstr "実行するには、WordPressのプラグインのために許容される時間の量は、(%s秒)は非常に低いです - あなたは(タイムアウトによるバックアップの失敗を避けるために、それを高める詳細なヘルプについては、Webホスティング会社に相談してください - それはmax_execution_timeにPHPの設定で、推奨値ある%s秒以上)"
5595
 
5596
  #: src/addons/migrator.php:304
5597
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
5598
- msgstr "このプラグインを無効にします。%s : 準備ができたらそれを手動でアクティブ化します。"
5599
 
5600
  #: src/addons/sftp.php:822, src/addons/sftp.php:825,
5601
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
5602
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
5603
- msgstr "%s の接続がタイムアウトしました。あなたが正しく、サーバーを入力した場合、これは通常の接続をブロックするファイアウォールによって引き起こされる - あなたのWebホスティング会社に確認してください。"
5604
 
5605
  #: src/addons/moredatabase.php:144, src/admin.php:1691
5606
  msgid "Messages:"
@@ -5608,7 +5608,7 @@ msgstr "メッセージ:"
5608
 
5609
  #: src/restorer.php:3018
5610
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
5611
- msgstr "SQL行が最大パケットサイズよりも大きいと判明し、分割することができない、この行は処理されませんが、削除されます:%s"
5612
 
5613
  #: src/restorer.php:1130
5614
  msgid "The directory does not exist"
@@ -5616,31 +5616,31 @@ msgstr "ディレクトリが存在しません。"
5616
 
5617
  #: src/addons/cloudfiles-enhanced.php:298
5618
  msgid "New User's Email Address"
5619
- msgstr "新規ユーザのメールアドレス"
5620
 
5621
  #: src/addons/cloudfiles-enhanced.php:295
5622
  msgid "New User's Username"
5623
- msgstr "新規ユーザ名"
5624
 
5625
  #: src/addons/cloudfiles-enhanced.php:292
5626
  msgid "Admin API Key"
5627
- msgstr "アドミン API キー"
5628
 
5629
  #: src/addons/cloudfiles-enhanced.php:289
5630
  msgid "Admin Username"
5631
- msgstr "管理者ユーザ名"
5632
 
5633
  #: src/addons/cloudfiles-enhanced.php:284
5634
  msgid "US or UK Rackspace Account"
5635
- msgstr "米国 または、英国のRackspace のアカウント"
5636
 
5637
  #: src/addons/cloudfiles-enhanced.php:276
5638
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
5639
- msgstr "Rackspaceは、新しいユーザーを作成するにはあなたの許可が認証できるように)、新しいユーザーとコンテナ名のための新しい(ユニークな)ユーザ名とメールアドレスを入力して、あなたのRackspaceの管理ユーザー名/ APIキーを入力してください。"
5640
 
5641
  #: src/addons/cloudfiles-enhanced.php:273
5642
  msgid "Create new API user and container"
5643
- msgstr "新しいAPIのユーザーとコンテナを作成します。"
5644
 
5645
  #: src/addons/cloudfiles-enhanced.php:205
5646
  msgid "API Key: %s"
@@ -5648,11 +5648,11 @@ msgstr "API キー: %s"
5648
 
5649
  #: src/addons/cloudfiles-enhanced.php:205
5650
  msgid "Password: %s"
5651
- msgstr "パスワード: %s"
5652
 
5653
  #: src/addons/cloudfiles-enhanced.php:205, src/addons/s3-enhanced.php:332
5654
  msgid "Username: %s"
5655
- msgstr "ユーザ名: %s"
5656
 
5657
  #: src/addons/cloudfiles-enhanced.php:164,
5658
  #: src/addons/cloudfiles-enhanced.php:167,
@@ -5661,43 +5661,43 @@ msgstr "ユーザ名: %s"
5661
  #: src/addons/cloudfiles-enhanced.php:190,
5662
  #: src/addons/cloudfiles-enhanced.php:194
5663
  msgid "Cloud Files operation failed (%s)"
5664
- msgstr "クラウド ファイル 操作は失敗しました(%s"
5665
 
5666
  #: src/addons/cloudfiles-enhanced.php:162
5667
  msgid "Conflict: that user or email address already exists"
5668
- msgstr "競合: ユーザー又はメールアドレスは存在しています"
5669
 
5670
  #: src/addons/cloudfiles-enhanced.php:94
5671
  msgid "You need to enter a valid new email address"
5672
- msgstr "あなたは正しい新しいメールアドレスを入力必要です。"
5673
 
5674
  #: src/addons/cloudfiles-enhanced.php:90
5675
  msgid "You need to enter a container"
5676
- msgstr "あなたはコンテナー名を入力必要です"
5677
 
5678
  #: src/addons/cloudfiles-enhanced.php:87
5679
  msgid "You need to enter a new username"
5680
- msgstr "あなたは新しいユーザ名を入力必要です。"
5681
 
5682
  #: src/addons/cloudfiles-enhanced.php:84
5683
  msgid "You need to enter an admin API key"
5684
- msgstr "あなたは管理者APIキーを入力する必要があります。"
5685
 
5686
  #: src/addons/cloudfiles-enhanced.php:81
5687
  msgid "You need to enter an admin username"
5688
- msgstr "あなたは管理者名を入力する必要があります。"
5689
 
5690
  #: src/addons/cloudfiles-enhanced.php:67
5691
  msgid "Create a new API user with access to only this container (rather than your whole account)"
5692
- msgstr "このコンテナのみへのアクセス権を持つ新しいAPIのユーザーを作成します(むしろ自分のアカウント全体より)"
5693
 
5694
  #: src/addons/cloudfiles-enhanced.php:38
5695
  msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
5696
- msgstr "Rackspaceのクラウドファイルユーザーのための拡張機能を追加します。"
5697
 
5698
  #: src/addons/cloudfiles-enhanced.php:37
5699
  msgid "Rackspace Cloud Files, enhanced"
5700
- msgstr "Rackspace クラウドファイルが強化されました"
5701
 
5702
  #: src/addons/cloudfiles-enhanced.php:305, src/methods/cloudfiles-new.php:142,
5703
  #: src/methods/cloudfiles.php:495
@@ -5710,7 +5710,7 @@ msgstr "Cloud Files API キー"
5710
 
5711
  #: src/methods/cloudfiles-new.php:132
5712
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
5713
- msgstr "これだけRackspaceのコンテナへのアクセス権を持つ新しいRackspaceAPIサブユーザーとAPIキーを作成するには、このアドオンを使用しています。"
5714
 
5715
  #: src/methods/cloudfiles-new.php:129
5716
  msgid "Cloud Files Username"
@@ -5742,31 +5742,31 @@ msgstr "ダラス (DFW) (デフォルト)"
5742
 
5743
  #: src/addons/cloudfiles-enhanced.php:301, src/methods/cloudfiles-new.php:119
5744
  msgid "Cloud Files Storage Region"
5745
- msgstr "Cloud Files ストレージのリージョン"
5746
 
5747
  #: src/methods/cloudfiles-new.php:112
5748
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
5749
- msgstr "rackspacecloud.comで作成したアカウントは、米国アカウントです。 rackspace.co.ukで作成したアカウントは、英国ベースです"
5750
 
5751
  #: src/methods/cloudfiles-new.php:110
5752
  msgid "US or UK-based Rackspace Account"
5753
- msgstr "米国または英国拠点の Rackspace アカウント"
5754
 
5755
  #: src/addons/cloudfiles-enhanced.php:285, src/methods/cloudfiles-new.php:110
5756
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
5757
- msgstr "rackspacecloud.comで作成したアカウントは、米国が占めています。 rackspace.co.ukで作成したアカウントは、英国のアカウントです。"
5758
 
5759
  #: src/addons/cloudfiles-enhanced.php:160, src/addons/s3-enhanced.php:237,
5760
  #: src/methods/cloudfiles-new.php:37, src/methods/openstack-base.php:489,
5761
  #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:512,
5762
  #: src/methods/openstack2.php:33
5763
  msgid "Authorisation failed (check your credentials)"
5764
- msgstr "認証に失敗しました (認証情報 credentials をご確認ください)"
5765
 
5766
  #: src/includes/class-commands.php:796, src/methods/updraftvault.php:667,
5767
  #: src/udaddons/options.php:219
5768
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
5769
- msgstr "UpdraftPlus.com への接続中に不明なエラーが発生しました。"
5770
 
5771
  #: src/admin.php:851, src/central/bootstrap.php:580
5772
  msgid "Create"
@@ -5778,11 +5778,11 @@ msgstr "試行中..."
5778
 
5779
  #: src/admin.php:811
5780
  msgid "The new user's RackSpace console password is (this will not be shown again):"
5781
- msgstr "新しいユーザーのRackSpaceのコンソールのパスワード(これは再び表示されません)です。"
5782
 
5783
  #: src/admin.php:822, src/restorer.php:259
5784
  msgid "Error data:"
5785
- msgstr "エラーのデータ:"
5786
 
5787
  #: src/admin.php:4864
5788
  msgid "Backup does not exist in the backup history"
@@ -5790,31 +5790,31 @@ msgstr "バックアップ履歴にバックアップが存在しません"
5790
 
5791
  #: src/admin.php:3281
5792
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
5793
- msgstr "移行後/復元後の前にあなたのWordPressのインストールはその状態から、古いディレクトリがあります(技術情報:これらは-old接尾辞されています)。すぐに復元が働いていることを確認するやいなや、それらを削除するこのボタンを押す必要があります。"
5794
 
5795
  #: src/restorer.php:2673
5796
  msgid "Split line to avoid exceeding maximum packet size"
5797
- msgstr "最大パケットサイズを超えないように回線を分割する"
5798
 
5799
  #: src/restorer.php:2532
5800
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
5801
- msgstr "あなたのデータベースユーザがテーブルを削除する権限がありません。私たちは、単にテーブルを空にすることによって復元しようとします。あなたが同じデータベース構造でWordPressのバージョンから復元している限り動作するはずです(%s)"
5802
 
5803
  #: src/restorer.php:730
5804
  msgid "Could not move the files into place. Check your file permissions."
5805
- msgstr "所定の場所にファイルを移動できませんでした。権限をご確認ください。"
5806
 
5807
  #: src/restorer.php:729
5808
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
5809
- msgstr "所定の場所に新しいファイルを移動できませんでした。あなたの wp-content/upgradeフォルダを確認してください。"
5810
 
5811
  #: src/restorer.php:727
5812
  msgid "Could not move old files out of the way."
5813
- msgstr "古いファイルを途中で移動できませんでした。"
5814
 
5815
  #: src/restorer.php:723
5816
  msgid "Moving old data out of the way..."
5817
- msgstr "古いデータを移動..."
5818
 
5819
  #: src/addons/reporting.php:495
5820
  msgid "Add another address..."
@@ -5822,11 +5822,11 @@ msgstr "別のアドレスを追加..."
5822
 
5823
  #: src/addons/reporting.php:480
5824
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
5825
- msgstr "バックアップジョブが終了したときにそれらに送信されたレポートを持っているためにここにアドレスを入力してください。"
5826
 
5827
  #: src/addons/reporting.php:454
5828
  msgid "Email reports"
5829
- msgstr "E-メールレポート"
5830
 
5831
  #: src/class-updraftplus.php:1886, src/class-updraftplus.php:1891
5832
  msgid "%s checksum: %s"
@@ -5838,7 +5838,7 @@ msgstr "ファイル: %s"
5838
 
5839
  #: src/addons/reporting.php:406
5840
  msgid "Use the \"Reporting\" section to configure the email addresses to be used."
5841
- msgstr "使用するメールアドレスを設定するには、「レポート作成」セクションを使用します。"
5842
 
5843
  #: src/addons/reporting.php:282
5844
  msgid "Debugging information"
@@ -5850,7 +5850,7 @@ msgstr "アップロード先: "
5850
 
5851
  #: src/addons/reporting.php:236
5852
  msgid "Time taken:"
5853
- msgstr "時間が取られる:"
5854
 
5855
  #: src/addons/reporting.php:227
5856
  msgid "Warnings"
@@ -5862,28 +5862,28 @@ msgstr "エラー"
5862
 
5863
  #: src/addons/reporting.php:209
5864
  msgid "Errors / warnings:"
5865
- msgstr "エラー / 注意 :"
5866
 
5867
  #: src/addons/morefiles.php:143, src/addons/morefiles.php:144,
5868
  #: src/addons/reporting.php:198
5869
  msgid "Contains:"
5870
- msgstr "内包:"
5871
 
5872
  #: src/addons/reporting.php:197
5873
  msgid "Backup began:"
5874
- msgstr "バックアップを開始しました:"
5875
 
5876
  #: src/addons/reporting.php:185
5877
  msgid "Backup Report"
5878
- msgstr "バックアップ レポート"
5879
 
5880
  #: src/addons/reporting.php:180
5881
  msgid "%d hours, %d minutes, %d seconds"
5882
- msgstr "%d 時, %d 分, %d 秒"
5883
 
5884
  #: src/addons/reporting.php:164
5885
  msgid "%d errors, %d warnings"
5886
- msgstr "%d エラー, %d 注意"
5887
 
5888
  #: src/methods/dropbox.php:751, src/methods/dropbox.php:772
5889
  msgid "%s authentication"
@@ -5898,23 +5898,23 @@ msgstr "%s エラー: %s"
5898
 
5899
  #: src/addons/googlecloud.php:985, src/methods/dropbox.php:576
5900
  msgid "%s logo"
5901
- msgstr "%sのロゴ"
5902
 
5903
  #: src/methods/dropbox.php:283
5904
  msgid "did not return the expected response - check your log file for more details"
5905
- msgstr ""
5906
 
5907
  #: src/methods/s3.php:322
5908
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
5909
- msgstr "必要な%sPHPモジュールがインストールされていない - それを有効にするには、Webホスティング会社に依頼"
5910
 
5911
  #: src/methods/email.php:97
5912
  msgid "For more options, use the \"%s\" add-on."
5913
- msgstr "より多くのオプションは \"%s\" add-onをご使用ください。"
5914
 
5915
  #: src/methods/email.php:96
5916
  msgid "Your site's admin email address (%s) will be used."
5917
- msgstr "あなたのサイトの管理者のメールアドレス(%s)が使用されます。"
5918
 
5919
  #: src/admin.php:861, src/admin.php:3017, src/methods/updraftvault.php:334,
5920
  #: src/methods/updraftvault.php:389,
@@ -5924,7 +5924,7 @@ msgstr "接続"
5924
 
5925
  #: src/templates/wp-admin/settings/form-contents.php:263
5926
  msgid "For more reporting features, use the Reporting add-on."
5927
- msgstr "より多くのレポート機能を使用するには Reporting add-on を使用してください。"
5928
 
5929
  #: src/class-updraftplus.php:4575
5930
  msgid "(version: %s)"
@@ -5932,11 +5932,11 @@ msgstr "(バージョン: %s)"
5932
 
5933
  #: src/admin.php:800
5934
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5935
- msgstr "メールサーバは、サイズ制限を持っている傾向があることに注意してください。通常、%sのMbの周り。任意の制限よりも大きいバックアップはおそらく到着しません。"
5936
 
5937
  #: src/addons/reporting.php:541, src/admin.php:799
5938
  msgid "When the Email storage method is enabled, also send the backup"
5939
- msgstr ""
5940
 
5941
  #: src/addons/reporting.php:196, src/class-updraftplus.php:3478
5942
  msgid "Latest status:"
@@ -5944,7 +5944,7 @@ msgstr "最新の状態:"
5944
 
5945
  #: src/class-updraftplus.php:3477
5946
  msgid "Backup contains:"
5947
- msgstr "バックアップが含まれる:"
5948
 
5949
  #: src/class-updraftplus.php:3434
5950
  msgid "Backed up: %s"
@@ -5952,27 +5952,27 @@ msgstr "バックアップしました: %s"
5952
 
5953
  #: src/addons/reporting.php:279, src/class-updraftplus.php:3428
5954
  msgid "The log file has been attached to this email."
5955
- msgstr "このメールにはログファイルが添付されています。"
5956
 
5957
  #: src/class-updraftplus.php:3392
5958
  msgid "Unknown/unexpected error - please raise a support request"
5959
- msgstr "不明/予期しないエラー - サポート要求を上げてください"
5960
 
5961
  #: src/class-updraftplus.php:3387
5962
  msgid "Database only (files were not part of this particular schedule)"
5963
- msgstr "データベースのみ(ファイルは、この特定のスケジュールの一部ではありませんでした)"
5964
 
5965
  #: src/class-updraftplus.php:3387
5966
  msgid "Database (files backup has not completed)"
5967
- msgstr "データベース (完了していないファイルのバックアップ)"
5968
 
5969
  #: src/class-updraftplus.php:3384
5970
  msgid "Files only (database was not part of this particular schedule)"
5971
- msgstr "ファイルのみ(データベースは、この特定のスケジュールの一部ではなかったです)"
5972
 
5973
  #: src/class-updraftplus.php:3384
5974
  msgid "Files (database backup has not completed)"
5975
- msgstr "ファイル (データベースのバックアップが完了していません)"
5976
 
5977
  #: src/admin.php:345, src/class-updraftplus.php:3382
5978
  msgid "Files and database"
@@ -5980,19 +5980,19 @@ msgstr "ファイルとデータベース"
5980
 
5981
  #: src/options.php:208
5982
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
5983
- msgstr "(明示的にマルチサイトの互換性のためにコードされていない限り、これは、すべてのワードプレスのバックアップのプラグインに適用されます)。"
5984
 
5985
  #: src/options.php:208
5986
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to backup (and hence access the data, including passwords, from) and restore (including with customized modifications, e.g. changed passwords) <strong>the entire network</strong>."
5987
- msgstr "アップグレードすることなく、UpdraftPlus には<strong>すべての</strong> ブログの管理者が<strong>ネットワーク全体</strong>のバックアップのためのプラグイン設定 (故にパスワードや対象ファイルなどの情報へのアクセス) 、また復元 (パスワードの変更などカスタマイズを含む) を変更できます。"
5988
 
5989
  #: src/options.php:208
5990
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
5991
- msgstr "WordPress マルチサイトをサポートは、UpdraftPlus Premium または マルチサイトアドオンによる追加機能です。"
5992
 
5993
  #: src/options.php:208
5994
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
5995
- msgstr "これはマルチサイト (またの名をサイトネットワーク) インストールです。"
5996
 
5997
  #: src/options.php:208
5998
  msgid "UpdraftPlus warning:"
@@ -6000,15 +6000,15 @@ msgstr "UpdraftPlus 警告:"
6000
 
6001
  #: src/udaddons/options.php:502, src/udaddons/options.php:502
6002
  msgid "(or connect using the form on this page if you have already purchased it)"
6003
- msgstr "(あなたはすでにそれを購入している場合は、このページのフォームを使用して接続)"
6004
 
6005
  #: src/udaddons/options.php:490
6006
  msgid "please follow this link to update the plugin in order to activate it"
6007
- msgstr "それをアクティブにするためにプラグインを更新するには、このリンクに従ってください"
6008
 
6009
  #: src/udaddons/options.php:487
6010
  msgid "please follow this link to update the plugin in order to get it"
6011
- msgstr "それを得るために、プラグインを更新するには、このリンクに従ってください"
6012
 
6013
  #: src/udaddons/options.php:477, src/udaddons/options.php:479
6014
  msgid "latest"
@@ -6016,11 +6016,11 @@ msgstr "最新"
6016
 
6017
  #: src/udaddons/options.php:475
6018
  msgid "Your version: %s"
6019
- msgstr "あなたのバージョン:%s"
6020
 
6021
  #: src/udaddons/options.php:473, src/udaddons/options.php:473
6022
  msgid "You've got it"
6023
- msgstr "あなたは、それを持っています"
6024
 
6025
  #: src/udaddons/options.php:434
6026
  msgid "UpdraftPlus Support"
@@ -6028,44 +6028,44 @@ msgstr "UpdraftPlus サポート"
6028
 
6029
  #: src/udaddons/options.php:372
6030
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
6031
- msgstr "あなたのアドオンを含む更新はUpdraftPlusで利用可能である。 - それを得るために、このリンクに従ってください。"
6032
 
6033
  #: src/udaddons/options.php:361, src/udaddons/updraftplus-addons.php:357
6034
  msgid "UpdraftPlus Addons"
6035
- msgstr "UpdraftPlus アドオン"
6036
 
6037
  #: src/udaddons/options.php:89
6038
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
6039
- msgstr "UpdraftPlus でアップデートが可能です - 以下のリンクより取得してください。"
6040
 
6041
  #: src/methods/updraftvault.php:746, src/methods/updraftvault.php:761,
6042
  #: src/udaddons/updraftplus-addons.php:1072
6043
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
6044
- msgstr "UpdraftPlus.Com は応答しましたが、判読できませんでした。"
6045
 
6046
  #: src/methods/updraftvault.php:758, src/udaddons/updraftplus-addons.php:1068
6047
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
6048
- msgstr "あなたのメールアドレスとパスワードは UpdraftPlus.Com に承認されていません。"
6049
 
6050
  #: src/includes/updraftplus-login.php:57, src/methods/updraftvault.php:719,
6051
  #: src/udaddons/updraftplus-addons.php:1031
6052
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
6053
- msgstr "UpdraftPlus.Comは、私たちが理解できなかった応答を返した(データ:%s"
6054
 
6055
  #: src/udaddons/updraftplus-addons.php:957
6056
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
6057
- msgstr "UpdraftPlus.Comは答えたが、私たちは応答を理解していませんでした"
6058
 
6059
  #: src/udaddons/updraftplus-addons.php:955
6060
  msgid "We failed to successfully connect to UpdraftPlus.Com"
6061
- msgstr "我々は成功しUpdraftPlus.Comへの接続に失敗しました"
6062
 
6063
  #: src/methods/email.php:97,
6064
  #: src/templates/wp-admin/settings/form-contents.php:244,
6065
  #: src/templates/wp-admin/settings/tab-addons.php:230,
6066
  #: src/templates/wp-admin/settings/tab-addons.php:231
6067
  msgid "Reporting"
6068
- msgstr "レポート"
6069
 
6070
  #: src/admin.php:5496
6071
  msgid "Options (raw)"
@@ -6073,7 +6073,7 @@ msgstr "オプション (raw)"
6073
 
6074
  #: src/addons/reporting.php:539, src/admin.php:798
6075
  msgid "Send a report only when there are warnings/errors"
6076
- msgstr "警告/エラーのレポートのみを送信"
6077
 
6078
  #: src/restorer.php:2599
6079
  msgid "Content URL:"
@@ -6081,23 +6081,23 @@ msgstr "コンテンツ URL:"
6081
 
6082
  #: src/restorer.php:727
6083
  msgid "You should check the file ownerships and permissions in your WordPress installation"
6084
- msgstr "WordPress のファイル所有権やファイル権限を確認してください。"
6085
 
6086
  #: src/templates/wp-admin/settings/form-contents.php:148
6087
  msgid "See also the \"More Files\" add-on from our shop."
6088
- msgstr "当店の \"More Files\" アドオンもご覧ください。"
6089
 
6090
  #: src/backup.php:3339, src/class-updraftplus.php:931
6091
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
6092
- msgstr "あなたのホスティングアカウントで自分の空き容量が非常に低い - %s MBのみが残ります"
6093
 
6094
  #: src/class-updraftplus.php:915
6095
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
6096
- msgstr "PHPに許可されたメモリ(RAM)の量は、(%s MB)が非常に低いです - あなたはメモリ不足のため失敗を避けるために、それを増やす(詳細なヘルプについては、Webホスティング会社にお問い合わせください)必要があります"
6097
 
6098
  #: src/udaddons/options.php:525
6099
  msgid "Manage Addons"
6100
- msgstr "アドオンを管理"
6101
 
6102
  #: src/udaddons/options.php:503
6103
  msgid "Buy It"
@@ -6105,79 +6105,79 @@ msgstr "購入"
6105
 
6106
  #: src/udaddons/options.php:502
6107
  msgid "Get it from the UpdraftPlus.Com Store"
6108
- msgstr "UpdraftPlus.Com Store から入手する"
6109
 
6110
  #: src/udaddons/options.php:496, src/udaddons/options.php:498
6111
  msgid "activate it on this site"
6112
- msgstr "サイトでそれをアクティブにする"
6113
 
6114
  #: src/udaddons/options.php:498
6115
  msgid "You have an inactive purchase"
6116
- msgstr "あなたは、非アクティブの購入を持っています"
6117
 
6118
  #: src/udaddons/options.php:490
6119
  msgid "Assigned to this site"
6120
- msgstr "このサイトに割り当てました"
6121
 
6122
  #: src/udaddons/options.php:487
6123
  msgid "Available for this site (via your all-addons purchase)"
6124
- msgstr "(あなたのすべてのアドオンの購入を経由して)このサイトで利用可能"
6125
 
6126
  #: src/udaddons/options.php:481
6127
  msgid "(apparently a pre-release or withdrawn release)"
6128
- msgstr "(どうやらプレリリースまたは撤回リリース)"
6129
 
6130
  #: src/udaddons/options.php:436, src/udaddons/options.php:436
6131
  msgid "Go here"
6132
- msgstr "ここに行こう"
6133
 
6134
  #: src/udaddons/options.php:436, src/udaddons/options.php:436
6135
  msgid "Need to get support?"
6136
- msgstr "サポートが必要ですか?"
6137
 
6138
  #: src/udaddons/options.php:418
6139
  msgid "An error occurred when trying to retrieve your add-ons."
6140
- msgstr "アドオンを取得しようとした時にエラーが発生しました。"
6141
 
6142
  #: src/udaddons/options.php:304
6143
  msgid "An unknown response was received. Response was:"
6144
- msgstr "不明な応答が受信されました。応答がありました:"
6145
 
6146
  #: src/udaddons/options.php:303
6147
  msgid "Claim not granted - your account login details were wrong"
6148
- msgstr "付与されていないと主張 - アカウントのログイン情報が間違っていました"
6149
 
6150
  #: src/udaddons/options.php:301
6151
  msgid "Please wait whilst we make the claim..."
6152
- msgstr "我々が請求するまでお待ちください..."
6153
 
6154
  #: src/udaddons/options.php:249
6155
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
6156
- msgstr "UpdraftPlus.Com への接続でエラーが発生しました:"
6157
 
6158
  #: src/udaddons/options.php:244
6159
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
6160
- msgstr "あなたが現在UpdraftPlus.Comアカウントに</strong>接続されていない <strong>。"
6161
 
6162
  #: src/udaddons/options.php:236
6163
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
6164
- msgstr "新しいアドオンを購入した場合は、あなたの接続をリフレッシュするには、このリンクに従ってください"
6165
 
6166
  #: src/udaddons/options.php:229
6167
  msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
6168
- msgstr ""
6169
 
6170
  #: src/admin.php:3015
6171
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
6172
- msgstr "UpdraftPlus.Com のパスワードセキュリティに興味がありますか?詳しくはこちら。"
6173
 
6174
  #: src/admin.php:3091
6175
  msgid "Forgotten your details?"
6176
- msgstr "詳細を忘れましたか?"
6177
 
6178
  #: src/admin.php:3004
6179
  msgid "Not yet got an account (it's free)? Go get one!"
6180
- msgstr "まだアカウントを持っていない(これは無料ですか)?いずれかを取りに行きます!"
6181
 
6182
  #: src/admin.php:3070
6183
  msgid "Connect with your UpdraftPlus.Com account"
@@ -6185,7 +6185,7 @@ msgstr "あなたの UpdraftPlus.Com アカウントで接続"
6185
 
6186
  #: src/udaddons/options.php:109
6187
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
6188
- msgstr "おそらく、あなたが混乱し、それらを持って - あなたは時代遅れのUpdraftのインストールプラグインを持っているように見えるのですか?"
6189
 
6190
  #: src/udaddons/options.php:108
6191
  msgid "Go here to begin installing it."
@@ -6193,7 +6193,7 @@ msgstr "インストールを開始するにはこちら。"
6193
 
6194
  #: src/udaddons/options.php:108
6195
  msgid "UpdraftPlus is not yet installed."
6196
- msgstr "UpdraftPlusはまだインストールされていません。"
6197
 
6198
  #: src/udaddons/options.php:105
6199
  msgid "Go here to activate it."
@@ -6201,7 +6201,7 @@ msgstr "有効にするにはこちら。"
6201
 
6202
  #: src/udaddons/options.php:104
6203
  msgid "UpdraftPlus is not yet activated."
6204
- msgstr "UpdraftPlus はまだアクティベートされていません。"
6205
 
6206
  #: src/udaddons/options.php:95, src/udaddons/options.php:97
6207
  msgid "Go here to connect."
@@ -6209,38 +6209,38 @@ msgstr "接続はこちら。"
6209
 
6210
  #: src/udaddons/options.php:95
6211
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
6212
- msgstr "あなたはまだあなたが購入したアドオンの一覧を表示できるように、あなたのUpdraftPlus.Comアカウントで接続していません。"
6213
 
6214
  #: src/addons/moredatabase.php:313,
6215
  #: src/includes/class-updraftplus-encryption.php:148
6216
  msgid "Without it, encryption will be a lot slower."
6217
- msgstr "それがなければ、暗号化はたくさん遅くなります。"
6218
 
6219
  #: src/addons/moredatabase.php:313,
6220
  #: src/includes/class-updraftplus-encryption.php:148
6221
  msgid "Your web-server does not have the %s module installed."
6222
- msgstr "あなたのウェブサーバには、%sのモジュールがインストールされていません。"
6223
 
6224
  #: src/addons/googlecloud.php:1075, src/methods/googledrive.php:1407
6225
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
6226
- msgstr "<strong>(あなたはすでに認証されるようです</strong>の問題を持っていた場合、あなたのアクセスをリフレッシュするために、再度認証を受けることができます)"
6227
 
6228
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:78,
6229
  #: src/templates/wp-admin/settings/tab-backups.php:80
6230
  msgid "Drop backup files here"
6231
- msgstr "バックアップファイルをドロップ"
6232
 
6233
  #: src/admin.php:810
6234
  msgid "The web server returned an error code (try again, or check your web server logs)"
6235
- msgstr "Webサーバがエラーコードを返した(再試行するか、Webサーバーのログを確認してください)"
6236
 
6237
  #: src/admin.php:808
6238
  msgid "The restore operation has begun. Do not close your browser until it reports itself as having finished."
6239
- msgstr ""
6240
 
6241
  #: src/addons/wp-cli.php:116, src/admin.php:805
6242
  msgid "If you exclude both the database and the files, then you have excluded everything!"
6243
- msgstr "データベースとファイルの両方を除外した場合は、すべてのものを除外する必要があります!"
6244
 
6245
  #: src/restorer.php:2593
6246
  msgid "Site home:"
@@ -6248,15 +6248,15 @@ msgstr "サイトのホーム:"
6248
 
6249
  #: src/addons/morestorage.php:138
6250
  msgid "Remote Storage Options"
6251
- msgstr "リモートストレージオプション"
6252
 
6253
  #: src/addons/autobackup.php:364, src/addons/autobackup.php:458
6254
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
6255
- msgstr "(ログは通常通りUpdraftPlusの設定ページで見つけることができます)..."
6256
 
6257
  #: src/addons/autobackup.php:324, src/addons/autobackup.php:1107
6258
  msgid "Remember this choice for next time (you will still have the chance to change it)"
6259
- msgstr "次回のためこの選択を覚えておいてください(あなたはまだそれを変更する機会を持つことになります)"
6260
 
6261
  #: src/addons/azure.php:413, src/methods/stream-base.php:152,
6262
  #: src/methods/stream-base.php:157
@@ -6265,70 +6265,70 @@ msgstr "アップロード失敗"
6265
 
6266
  #: src/templates/wp-admin/settings/form-contents.php:126
6267
  msgid "You can send a backup to more than one destination with an add-on."
6268
- msgstr "アドオンを使用して、複数の宛先にバックアップを送信することができます。"
6269
 
6270
  #: src/admin.php:3561
6271
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
6272
- msgstr "注意:以下のプログレスバーは時間ではなくステージに基づいています。それはしばらくの間、同じ場所に残っているようですので、簡単にバックアップを停止しないでください - それは正常です。"
6273
 
6274
  #: src/admin.php:3425
6275
  msgid "(%s%%, file %s of %s)"
6276
- msgstr "%s%%, ファイル %s %s)"
6277
 
6278
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:1112,
6279
  #: src/addons/lockadmin.php:160
6280
  msgid "Read more about how this works..."
6281
- msgstr "これがどのように機能するかについての詳細を読みます..."
6282
 
6283
  #: src/addons/sftp.php:604
6284
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
6285
- msgstr "失敗しました:私たちは、ログインすることができましたが、成功したその場所にファイルを作成できませんでした。"
6286
 
6287
  #: src/addons/sftp.php:602
6288
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
6289
- msgstr "失敗しました: ログイン及び指定のディレクトリに移動はできましたが、その場所にファイルを作成することができませんでした。"
6290
 
6291
  #: src/addons/sftp.php:488
6292
  msgid "Use SCP instead of SFTP"
6293
- msgstr "SCPの代わりにSFTPを使用してください"
6294
 
6295
  #: src/addons/sftp.php:53
6296
  msgid "SCP/SFTP user setting"
6297
- msgstr "SCP/SFTP ユーザセッティング"
6298
 
6299
  #: src/addons/sftp.php:52
6300
  msgid "SCP/SFTP host setting"
6301
- msgstr "SCP/SFTP ホストセッティング"
6302
 
6303
  #: src/methods/email.php:67
6304
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
6305
- msgstr "電子メールを介してバックアップを送信しようとしたが、失敗しました(おそらくバックアップは、この方法には大きすぎました)"
6306
 
6307
  #: src/methods/email.php:47
6308
  msgid "Backup is of: %s."
6309
- msgstr "バックアップ: %s"
6310
 
6311
  #: src/admin.php:900
6312
  msgid "%s settings test result:"
6313
- msgstr "%s のテスト設定結果"
6314
 
6315
  #: src/admin.php:4298, src/admin.php:4300
6316
  msgid "(Not finished)"
6317
- msgstr "(完了していません)"
6318
 
6319
  #: src/admin.php:4300
6320
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
6321
- msgstr "あなたが予想よりもあなたがより多くのバックアップを見ている場合は、新鮮なバックアップが完了するまで、古いバックアップセットの削除は行われませんので、それはおそらく古いバックアップセットです。"
6322
 
6323
  #: src/templates/wp-admin/settings/form-contents.php:329
6324
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
6325
  msgstr ""
6326
- "それは再帰の原因となりますので、あなたのアップロードやプラグインディレクトリの中に置いたり<b>しないでください</b>\n"
6327
- "(バックアップのバックアップのバックアップ...)。"
6328
 
6329
  #: src/templates/wp-admin/settings/form-contents.php:329
6330
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
6331
- msgstr "UpdraftPlus が最初に作成した zip ファイルを書き込む場所です。このディレクトリには、Web サーバーによって書き込み可能でなければなりません。それは、(デフォルトでは WP-contentと呼ばれている)あなたのコンテンツディレクトリに対する相対パスです。"
6332
 
6333
  #: src/admin.php:3526
6334
  msgid "Job ID: %s"
@@ -6350,19 +6350,19 @@ msgstr "不明"
6350
 
6351
  #: src/admin.php:3439
6352
  msgid "Backup finished"
6353
- msgstr "完了したバックアップ"
6354
 
6355
  #: src/admin.php:3434
6356
  msgid "Waiting until scheduled time to retry because of errors"
6357
- msgstr "スケジュールされた時間まで待機して、エラーのために再試行します"
6358
 
6359
  #: src/admin.php:3430
6360
  msgid "Pruning old backup sets"
6361
- msgstr "古いバックアップセットをプルーニングする"
6362
 
6363
  #: src/admin.php:3417
6364
  msgid "Uploading files to remote storage"
6365
- msgstr "リモートストレージにファイルをアップロード中"
6366
 
6367
  #: src/admin.php:3486
6368
  msgid "Encrypted database"
@@ -6374,7 +6374,7 @@ msgstr "データベースを暗号化中"
6374
 
6375
  #: src/admin.php:3452
6376
  msgid "Created database backup"
6377
- msgstr "作成したデータベースのバックアップ"
6378
 
6379
  #: src/admin.php:3465
6380
  msgid "table: %s"
@@ -6386,19 +6386,19 @@ msgstr "データベースのバックアップを作成中"
6386
 
6387
  #: src/admin.php:3408
6388
  msgid "Created file backup zips"
6389
- msgstr "作成したバックアップ zip ファイル"
6390
 
6391
  #: src/admin.php:3395
6392
  msgid "Creating file backup zips"
6393
- msgstr "バックアップの zip ファイルを作成中"
6394
 
6395
  #: src/admin.php:3390
6396
  msgid "Backup begun"
6397
- msgstr "バックアップは開始されました"
6398
 
6399
  #: src/admin.php:1194
6400
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
6401
- msgstr "DISABLE_WP_CRONの設定により、WordPressのインストール時にスケジューラは無効になっています。手動でスケジューラを呼び出すための施設を設定しているいずれかの場合を除き、またはそれが有効になるまで(今バックアップしても)がバックアップが実行できません。"
6402
 
6403
  #: src/restorer.php:1371
6404
  msgid "file"
@@ -6410,7 +6410,7 @@ msgstr "フォルダー"
6410
 
6411
  #: src/restorer.php:1363, src/restorer.php:1371
6412
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
6413
- msgstr "UpdraftPlus は、コンテンツディレクトリ内の%sを作成するために必要ですが、失敗しました - あなたのファイルのパーミッションを確認し、アクセス(%s)を有効にしてください。"
6414
 
6415
  #: src/class-updraftplus.php:3322
6416
  msgid "The backup has not finished; a resumption is scheduled"
@@ -6418,24 +6418,24 @@ msgstr "バックアップは完了していません。再開が予定されて
6418
 
6419
  #: src/class-updraftplus.php:2172
6420
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
6421
- msgstr "あなたのウェブサイトは頻繁に訪問され、UpdraftPlusは、それが望んでリソースを取得していません。このページをお読みください:"
6422
 
6423
  #: src/addons/onedrive.php:1047,
6424
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
6425
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
6426
- msgstr "あなたのサイト上で何か他のものがそれを破壊しているため %s の認証は、先に行くことができませんでした。あなたの他のプラグインを無効にし、デフォルトのテーマに切り替えてみてください。 (具体的には、ページが始まる前に。オフにすると、デバッグの設定も助けることができる出力を送信するコンポーネント(最も可能性の高いPHPの警告/エラー)を探しています)。"
6427
 
6428
  #: src/admin.php:2733
6429
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
6430
- msgstr "(ウェブホスティング会社が設定した)あなたのPHPのメモリ制限は非常に低いです。 UpdraftPlusはそれを高めるために試みたが成功しませんでした。あなたが(一方、多くのサイトが32MBの限界と成功します。 - あなたの経験は変更になる場合があります。)アップロードした非常に大きなファイルを持っている場合は特に - このプラグインは、64 MB未満のメモリ制限に苦労します。"
6431
 
6432
  #: src/addons/autobackup.php:1126, src/admin.php:854
6433
  msgid "Proceed with update"
6434
- msgstr "アップデートを続行"
6435
 
6436
  #: src/addons/autobackup.php:1119
6437
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
6438
- msgstr "下記を押した後は中止しないでください - バックアップが完了するまで待ちます。"
6439
 
6440
  #: src/addons/autobackup.php:139, src/addons/autobackup.php:1068
6441
  msgid "UpdraftPlus Automatic Backups"
@@ -6443,7 +6443,7 @@ msgstr "UpdraftPlus 自動バックアップ"
6443
 
6444
  #: src/addons/autobackup.php:551
6445
  msgid "Errors have occurred:"
6446
- msgstr "発生中のエラー:"
6447
 
6448
  #: src/addons/autobackup.php:522
6449
  msgid "Creating backup with UpdraftPlus..."
@@ -6476,23 +6476,23 @@ msgstr "UpdraftPlus が %s とデータベースのバックアップを作成
6476
 
6477
  #: src/addons/autobackup.php:322
6478
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
6479
- msgstr "プラグイン、テーマ、更新前のUpdraftPlusWordPressのデータベース(関連)を自動的にバックアップする"
6480
 
6481
  #: src/addons/morefiles.php:257, src/addons/morefiles.php:258
6482
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
6483
- msgstr "あなたがわからない場合、あなたは停止する必要があります。そうでなければ、このWordPressのインストールを破壊するかもしれません。"
6484
 
6485
  #: src/addons/morefiles.php:257, src/addons/morefiles.php:258
6486
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
6487
- msgstr "これは有効なWordPressのコアのバックアップのようには見えません - ファイル%sが欠落していました。"
6488
 
6489
  #: src/addons/morefiles.php:204
6490
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
6491
- msgstr "zipファイル(%s)を開けません。 - それは、その整合性をチェックするためにプリスキャンができませんでした"
6492
 
6493
  #: src/addons/morefiles.php:194
6494
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
6495
- msgstr "zipファイル(%s)を読み取ることができません。 - それは、その整合性をチェックするためにプリスキャンができませんでした "
6496
 
6497
  #: src/templates/wp-admin/settings/header.php:25
6498
  msgid "More plugins"
@@ -6507,15 +6507,15 @@ msgstr "サポート"
6507
 
6508
  #: src/class-updraftplus.php:4906
6509
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
6510
- msgstr "UpdraftPlusは、データベースのバックアップをスキャンするときにテーブル接頭辞を見つけることが
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2020-08-24 08:30:31+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
5412
 
5413
  #: src/includes/class-backup-history.php:682
5414
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
5415
+ msgstr "オンラインストレージのスキャンにより、1つ以上のバックアップが追加されました。これらのバックアップは、「保持」設定を使用して自動的に削除されないことに注意してください。削除したい場合、手動で行う必要があります。"
5416
 
5417
  #: src/admin.php:803
5418
  msgid "Rescanning remote and local storage for backup sets..."
5419
+ msgstr "オンラインおよびローカルストレージからバックアップ一式を再スキャン..."
5420
 
5421
  #: src/addons/googlecloud.php:1043, src/addons/googlecloud.php:1056,
5422
  #: src/addons/s3-enhanced.php:59, src/addons/s3-enhanced.php:69
5471
 
5472
  #: src/restorer.php:2588
5473
  msgid "Backup created by:"
5474
+ msgstr "バックアップ作成:"
5475
 
5476
  #: src/udaddons/options.php:496
5477
  msgid "Available to claim on this site"
5478
+ msgstr "このサイトで要求可能"
5479
 
5480
  #: src/udaddons/updraftplus-addons.php:330
5481
  msgid "To maintain your access to support, please renew."
5482
+ msgstr "サポートへのアクセスを維持するために、有料アクセス権を更新してください。"
5483
 
5484
  #: src/udaddons/updraftplus-addons.php:330
5485
  msgid "Your paid access to UpdraftPlus support will soon expire."
5486
+ msgstr "UpdraftPlus サポートへの有料アクセス権がまもなく期限切れになります。"
5487
 
5488
  #: src/udaddons/updraftplus-addons.php:328
5489
  msgid "To regain your access, please renew."
5490
+ msgstr "アクセスを回復するには、有料アクセス権を更新してください。"
5491
 
5492
  #: src/udaddons/updraftplus-addons.php:328
5493
  msgid "Your paid access to UpdraftPlus support has expired."
5494
+ msgstr "UpdraftPlus サポートへの有料アクセス権がまもなく期限切れです。"
5495
 
5496
  #: src/udaddons/updraftplus-addons.php:320
5497
  msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
5498
+ msgstr "このサイト用の UpdraftPlus 更新への有料アクセス権がまもなく期限切れになります。"
5499
 
5500
  #: src/udaddons/updraftplus-addons.php:318,
5501
  #: src/udaddons/updraftplus-addons.php:320
5502
  msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
5503
+ msgstr "アクセス、サポートと更新 (将来の機能追加や WordPress リリースとの互換性を含む) を維持するには、有料アクセス権を更新してください。"
5504
 
5505
  #: src/udaddons/updraftplus-addons.php:318
5506
  msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
5507
+ msgstr "このサイトの %s の %s 拡張機能の UpdraftPlus 更新の有料アクセス権がまもなく期限切れになります。"
5508
 
5509
  #: src/udaddons/updraftplus-addons.php:314
5510
  msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
5511
+ msgstr "このサイトの %s 拡張機能の UpdraftPlus 更新の有料アクセス権は期限が切れです。"
5512
 
5513
  #: src/udaddons/updraftplus-addons.php:308,
5514
  #: src/udaddons/updraftplus-addons.php:314
5515
  msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
5516
+ msgstr "更新とサポートを再び利用するには、(将来の機能追加や WordPress リリースとの互換性を含む) 有料アクセス権を更新してください。"
5517
 
5518
  #: src/udaddons/updraftplus-addons.php:308
5519
  msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
5520
+ msgstr "このサイト用の UpdraftPlus 更新の有料アクセス権の有効期限が切れています。もはや UpdraftPlus の更新は受信されません。"
5521
 
5522
  #: src/udaddons/updraftplus-addons.php:271
5523
  msgid "Dismiss from main dashboard (for %s weeks)"
5524
+ msgstr "ダッシュボードから非表示に (%s週間)"
5525
 
5526
  #: src/includes/class-filesystem-functions.php:336
5527
  msgid "The attempt to undo the double-compression succeeded."
5534
 
5535
  #: src/includes/class-filesystem-functions.php:305
5536
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
5537
+ msgstr "データベースファイルは2度圧縮されているようです - おそらく、あなたがダウンロードしたウェブサイトに設定ミスがあったのでしょう。"
5538
 
5539
  #: src/includes/class-wpadmin-commands.php:371
5540
  msgid "Constants"
5542
 
5543
  #: src/backup.php:1688
5544
  msgid "Failed to open database file for reading:"
5545
+ msgstr "読み込むためのデータベースファイルを開けませんでした:"
5546
 
5547
  #: src/backup.php:1499
5548
  msgid "No database tables found"
5550
 
5551
  #: src/backup.php:1497
5552
  msgid "please wait for the rescheduled attempt"
5553
+ msgstr "再度の試行をお待ちください"
5554
 
5555
  #: src/addons/reporting.php:232
5556
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
5557
+ msgstr "警告メッセージは助言的なものです - バックアッププロセスが停止するわけではありません。代わりに、役立つ可能性のある情報や、バックアップが成功しなかった問題の原因を示す情報を提供します。"
5558
 
5559
  #: src/addons/onedrive.php:112, src/methods/dropbox.php:265
5560
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
5561
+ msgstr "アカウントの限度: お使いの %s アカウントには %dバイト しか残っていませんが、アップロードするファイルにはあと %dバイト 必要です。(合計サイズ: %dバイト)"
5562
 
5563
  #: src/udaddons/updraftplus-addons.php:537,
5564
  #: src/udaddons/updraftplus-addons.php:631
5565
  msgid "Errors occurred:"
5566
+ msgstr "エラー発生:"
5567
 
5568
  #: src/addons/wp-cli.php:636, src/admin.php:4771
5569
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
5570
+ msgstr "この復元用のログファイル (サポートに必要) をダウンロードするには、このリンクにアクセスしてください。"
5571
 
5572
  #: src/templates/wp-admin/settings/form-contents.php:346
5573
  msgid "See this FAQ also."
5575
 
5576
  #: src/templates/wp-admin/settings/form-contents.php:135
5577
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
5578
+ msgstr "オンラインストレージが選択されていなければ、バックアップはウェブサーバー上に残っています。お使いのウェブサーバーを失うということは、ウェブサイトとそのバックアップの両方を失うことを意味しますので (手動であなたのパソコンにコピーする予定がない限り) これは推奨されません。in one event."
5579
 
5580
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:36
5581
  msgid "Retrieving (if necessary) and preparing backup files..."
5582
+ msgstr "バックアップファイルの取得 (必要であれば) および準備中..."
5583
 
5584
  #: src/includes/class-wpadmin-commands.php:132
5585
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
5586
+ msgstr "このウェブサーバ上の PHP の設定では、PHP 実行用に %s秒 だけ許可されており、この制限時間を増加できません。インポートするデータが多く復元操作がタイムアウトするなら、ウェブホスティング業者に制限時間を増加できないかお問い合わせください (あるいは少しずつ復元を試します)。"
5587
 
5588
  #: src/restorer.php:1387
5589
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
5590
+ msgstr "以前の復元で未削除のフォルダが存在します (再試行の前にそれらを削除するには、「古いディレクトリの削除」ボタンを使用してください): %s"
5591
 
5592
  #: src/admin.php:1189, src/class-updraftplus.php:918
5593
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
5594
+ msgstr "WordPress プラグインの実行に許可された時間が、非常に少ないです (%s秒) - タイムアウトによるバックアップの失敗を避けるために増加させる必要があります (支援が必要であればウェブホスティング業者にご相談ください - 問題となるのは、PHP の max_execution_time の設定で推奨値は %s秒以上です)"
5595
 
5596
  #: src/addons/migrator.php:304
5597
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
5598
+ msgstr "このプラグインを無効化: %s : 準備ができたら手動で再び有効にします。"
5599
 
5600
  #: src/addons/sftp.php:822, src/addons/sftp.php:825,
5601
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
5602
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
5603
+ msgstr "%s の接続のタイムアウト: サーバーに正しく入力していれば、これは通常、接続をブロックするファイアウォールが原因です - 利用中のウェブホスティング会社に確認してください。"
5604
 
5605
  #: src/addons/moredatabase.php:144, src/admin.php:1691
5606
  msgid "Messages:"
5608
 
5609
  #: src/restorer.php:3018
5610
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
5611
+ msgstr "最大パケットサイズよりも大きく分割することができない、SQL 行がありました。この行は処理されませんが、削除されます: %s"
5612
 
5613
  #: src/restorer.php:1130
5614
  msgid "The directory does not exist"
5616
 
5617
  #: src/addons/cloudfiles-enhanced.php:298
5618
  msgid "New User's Email Address"
5619
+ msgstr "新規ユーザーのメールアドレス"
5620
 
5621
  #: src/addons/cloudfiles-enhanced.php:295
5622
  msgid "New User's Username"
5623
+ msgstr "新規ユーザー名"
5624
 
5625
  #: src/addons/cloudfiles-enhanced.php:292
5626
  msgid "Admin API Key"
5627
+ msgstr "管理者 API キー"
5628
 
5629
  #: src/addons/cloudfiles-enhanced.php:289
5630
  msgid "Admin Username"
5631
+ msgstr "管理者ユーザー名"
5632
 
5633
  #: src/addons/cloudfiles-enhanced.php:284
5634
  msgid "US or UK Rackspace Account"
5635
+ msgstr "英/米の Rackspace アカウント"
5636
 
5637
  #: src/addons/cloudfiles-enhanced.php:276
5638
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
5639
+ msgstr "あなたの Rackspace の管理者ユーザー名/ API キーを入力し (新規ユーザー作成するためのあなたの権限を Rackspace 認証できるように)、また新しい (固有の) ユーザー名とそのメールアドレス、コンテナ名を入力してください。"
5640
 
5641
  #: src/addons/cloudfiles-enhanced.php:273
5642
  msgid "Create new API user and container"
5643
+ msgstr "新しい API のユーザーとコンテナの作成"
5644
 
5645
  #: src/addons/cloudfiles-enhanced.php:205
5646
  msgid "API Key: %s"
5648
 
5649
  #: src/addons/cloudfiles-enhanced.php:205
5650
  msgid "Password: %s"
5651
+ msgstr "パスワード: %s"
5652
 
5653
  #: src/addons/cloudfiles-enhanced.php:205, src/addons/s3-enhanced.php:332
5654
  msgid "Username: %s"
5655
+ msgstr "ユーザ名: %s"
5656
 
5657
  #: src/addons/cloudfiles-enhanced.php:164,
5658
  #: src/addons/cloudfiles-enhanced.php:167,
5661
  #: src/addons/cloudfiles-enhanced.php:190,
5662
  #: src/addons/cloudfiles-enhanced.php:194
5663
  msgid "Cloud Files operation failed (%s)"
5664
+ msgstr "Cloud Files 操作に失敗 (%s)"
5665
 
5666
  #: src/addons/cloudfiles-enhanced.php:162
5667
  msgid "Conflict: that user or email address already exists"
5668
+ msgstr "競合: ユーザーかメールアドレスが既に存在します"
5669
 
5670
  #: src/addons/cloudfiles-enhanced.php:94
5671
  msgid "You need to enter a valid new email address"
5672
+ msgstr "有効な新しいメールアドレスの入力が必要です"
5673
 
5674
  #: src/addons/cloudfiles-enhanced.php:90
5675
  msgid "You need to enter a container"
5676
+ msgstr "コンテナー名の入力が必要です"
5677
 
5678
  #: src/addons/cloudfiles-enhanced.php:87
5679
  msgid "You need to enter a new username"
5680
+ msgstr "新しいユーザ名の入力が必要です"
5681
 
5682
  #: src/addons/cloudfiles-enhanced.php:84
5683
  msgid "You need to enter an admin API key"
5684
+ msgstr "管理者 API キーの入力が必要です"
5685
 
5686
  #: src/addons/cloudfiles-enhanced.php:81
5687
  msgid "You need to enter an admin username"
5688
+ msgstr "管理者名の入力が必要です"
5689
 
5690
  #: src/addons/cloudfiles-enhanced.php:67
5691
  msgid "Create a new API user with access to only this container (rather than your whole account)"
5692
+ msgstr "このコンテナのみに (アカウント全体ではなく) アクセスできる新しい API ユーザーを作成"
5693
 
5694
  #: src/addons/cloudfiles-enhanced.php:38
5695
  msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
5696
+ msgstr "Rackspace Cloud Files ユーザー用の拡張機能を追加"
5697
 
5698
  #: src/addons/cloudfiles-enhanced.php:37
5699
  msgid "Rackspace Cloud Files, enhanced"
5700
+ msgstr "Rackspace Cloud Files, enhanced"
5701
 
5702
  #: src/addons/cloudfiles-enhanced.php:305, src/methods/cloudfiles-new.php:142,
5703
  #: src/methods/cloudfiles.php:495
5710
 
5711
  #: src/methods/cloudfiles-new.php:132
5712
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
5713
+ msgstr "この Rackspace コンテナにのみアクセスできる、新しい Rackspace API サブユーザーと API キーを作成するには、この拡張機能を使用してください。"
5714
 
5715
  #: src/methods/cloudfiles-new.php:129
5716
  msgid "Cloud Files Username"
5742
 
5743
  #: src/addons/cloudfiles-enhanced.php:301, src/methods/cloudfiles-new.php:119
5744
  msgid "Cloud Files Storage Region"
5745
+ msgstr "Cloud Files ストレージの地域"
5746
 
5747
  #: src/methods/cloudfiles-new.php:112
5748
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
5749
+ msgstr "rackspacecloud.com で作成していれば、米国アカウントです。 rackspace.co.uk で作成していれば、英国拠点です"
5750
 
5751
  #: src/methods/cloudfiles-new.php:110
5752
  msgid "US or UK-based Rackspace Account"
5753
+ msgstr "英/米の Rackspace アカウント"
5754
 
5755
  #: src/addons/cloudfiles-enhanced.php:285, src/methods/cloudfiles-new.php:110
5756
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
5757
+ msgstr "rackspacecloud.com で作成していれば米国アカウントです。 rackspace.co.uk で作成していれば英国のアカウントです。"
5758
 
5759
  #: src/addons/cloudfiles-enhanced.php:160, src/addons/s3-enhanced.php:237,
5760
  #: src/methods/cloudfiles-new.php:37, src/methods/openstack-base.php:489,
5761
  #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:512,
5762
  #: src/methods/openstack2.php:33
5763
  msgid "Authorisation failed (check your credentials)"
5764
+ msgstr "認証に失敗 (認証情報をご確認ください)"
5765
 
5766
  #: src/includes/class-commands.php:796, src/methods/updraftvault.php:667,
5767
  #: src/udaddons/options.php:219
5768
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
5769
+ msgstr "UpdraftPlus.com への接続試行中に不明なエラーが発生"
5770
 
5771
  #: src/admin.php:851, src/central/bootstrap.php:580
5772
  msgid "Create"
5778
 
5779
  #: src/admin.php:811
5780
  msgid "The new user's RackSpace console password is (this will not be shown again):"
5781
+ msgstr "新しいユーザーの RackSpace のコンソールのパスワード (再度表示されません):"
5782
 
5783
  #: src/admin.php:822, src/restorer.php:259
5784
  msgid "Error data:"
5785
+ msgstr "エラーデータ:"
5786
 
5787
  #: src/admin.php:4864
5788
  msgid "Backup does not exist in the backup history"
5790
 
5791
  #: src/admin.php:3281
5792
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
5793
+ msgstr "あなたが移行また復元する前から、WordPress のインストールに古いディレクトリがあります(技術情報: これらの接尾辞は -old です)。復元がうまくいったことを確認したらすぐに、それらを削除するこのボタンを押す必要があります。"
5794
 
5795
  #: src/restorer.php:2673
5796
  msgid "Split line to avoid exceeding maximum packet size"
5797
+ msgstr "最大パケットサイズを超えないように行を分割"
5798
 
5799
  #: src/restorer.php:2532
5800
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
5801
+ msgstr "あなたのデータベースのユーザーにはテーブルを削除する権限がありません。単にテーブルを空にすることで復元を試みます。同じデータベース構造 (%s) の WordPress のバージョンから復元していれば動作するはずです"
5802
 
5803
  #: src/restorer.php:730
5804
  msgid "Could not move the files into place. Check your file permissions."
5805
+ msgstr "所定の場所にファイルを移動できませんでした。アクセス権をご確認ください。"
5806
 
5807
  #: src/restorer.php:729
5808
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
5809
+ msgstr "所定の場所に新しいファイルを移動できませんでした。wp-content/upgradeフォルダーをご確認ください。"
5810
 
5811
  #: src/restorer.php:727
5812
  msgid "Could not move old files out of the way."
5813
+ msgstr "異様にファイルを途中で移動できませんでした。"
5814
 
5815
  #: src/restorer.php:723
5816
  msgid "Moving old data out of the way..."
5817
+ msgstr "異様に古いデータを移動中..."
5818
 
5819
  #: src/addons/reporting.php:495
5820
  msgid "Add another address..."
5822
 
5823
  #: src/addons/reporting.php:480
5824
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
5825
+ msgstr "バックアップのジョブ完了時に、レポートを送信するアドレスをここに入力してください。"
5826
 
5827
  #: src/addons/reporting.php:454
5828
  msgid "Email reports"
5829
+ msgstr "メールレポート"
5830
 
5831
  #: src/class-updraftplus.php:1886, src/class-updraftplus.php:1891
5832
  msgid "%s checksum: %s"
5838
 
5839
  #: src/addons/reporting.php:406
5840
  msgid "Use the \"Reporting\" section to configure the email addresses to be used."
5841
+ msgstr "使用するメールアドレスを設定するには、「Reporting」節を使用します。"
5842
 
5843
  #: src/addons/reporting.php:282
5844
  msgid "Debugging information"
5850
 
5851
  #: src/addons/reporting.php:236
5852
  msgid "Time taken:"
5853
+ msgstr "所要時間:"
5854
 
5855
  #: src/addons/reporting.php:227
5856
  msgid "Warnings"
5862
 
5863
  #: src/addons/reporting.php:209
5864
  msgid "Errors / warnings:"
5865
+ msgstr "エラー/警告 :"
5866
 
5867
  #: src/addons/morefiles.php:143, src/addons/morefiles.php:144,
5868
  #: src/addons/reporting.php:198
5869
  msgid "Contains:"
5870
+ msgstr "内容:"
5871
 
5872
  #: src/addons/reporting.php:197
5873
  msgid "Backup began:"
5874
+ msgstr "バックアップ開始:"
5875
 
5876
  #: src/addons/reporting.php:185
5877
  msgid "Backup Report"
5878
+ msgstr "バックアップレポート"
5879
 
5880
  #: src/addons/reporting.php:180
5881
  msgid "%d hours, %d minutes, %d seconds"
5882
+ msgstr "%d時間 %d %d秒"
5883
 
5884
  #: src/addons/reporting.php:164
5885
  msgid "%d errors, %d warnings"
5886
+ msgstr "エラー %d, 警告 %d"
5887
 
5888
  #: src/methods/dropbox.php:751, src/methods/dropbox.php:772
5889
  msgid "%s authentication"
5898
 
5899
  #: src/addons/googlecloud.php:985, src/methods/dropbox.php:576
5900
  msgid "%s logo"
5901
+ msgstr "%s のロゴ"
5902
 
5903
  #: src/methods/dropbox.php:283
5904
  msgid "did not return the expected response - check your log file for more details"
5905
+ msgstr "は期待した応答を返しませんでした - 詳細はログファイルをご覧ください"
5906
 
5907
  #: src/methods/s3.php:322
5908
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
5909
+ msgstr "必要な %s PHP モジュールがインストールされていません - 有効にするには、ウェブホスティング業者にお問い合わせください"
5910
 
5911
  #: src/methods/email.php:97
5912
  msgid "For more options, use the \"%s\" add-on."
5913
+ msgstr "さらに設定するには、拡張機能「%s\"」をご利用ください。"
5914
 
5915
  #: src/methods/email.php:96
5916
  msgid "Your site's admin email address (%s) will be used."
5917
+ msgstr "このサイトの管理者のメール (%s) が使用されます。"
5918
 
5919
  #: src/admin.php:861, src/admin.php:3017, src/methods/updraftvault.php:334,
5920
  #: src/methods/updraftvault.php:389,
5924
 
5925
  #: src/templates/wp-admin/settings/form-contents.php:263
5926
  msgid "For more reporting features, use the Reporting add-on."
5927
+ msgstr "さらなるレポート機能には、拡張機能の「Reporting」をご利用ください。"
5928
 
5929
  #: src/class-updraftplus.php:4575
5930
  msgid "(version: %s)"
5932
 
5933
  #: src/admin.php:800
5934
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5935
+ msgstr "メールサーバーにサイズ制限がある傾向に注意してください。典型的には約%sMBです。その制限より大きいバックアップファイルは届かない可能性が高いです。"
5936
 
5937
  #: src/addons/reporting.php:541, src/admin.php:799
5938
  msgid "When the Email storage method is enabled, also send the backup"
5939
+ msgstr "メールによるストレージ方法が有効であれば、バックアップも送信"
5940
 
5941
  #: src/addons/reporting.php:196, src/class-updraftplus.php:3478
5942
  msgid "Latest status:"
5944
 
5945
  #: src/class-updraftplus.php:3477
5946
  msgid "Backup contains:"
5947
+ msgstr "バックアップに含まれる:"
5948
 
5949
  #: src/class-updraftplus.php:3434
5950
  msgid "Backed up: %s"
5952
 
5953
  #: src/addons/reporting.php:279, src/class-updraftplus.php:3428
5954
  msgid "The log file has been attached to this email."
5955
+ msgstr "このメールにログファイルが添付されています。"
5956
 
5957
  #: src/class-updraftplus.php:3392
5958
  msgid "Unknown/unexpected error - please raise a support request"
5959
+ msgstr "不明/予期しないエラー - サポートを求めてください"
5960
 
5961
  #: src/class-updraftplus.php:3387
5962
  msgid "Database only (files were not part of this particular schedule)"
5963
+ msgstr "データベースのみ (ファイルはこの個別の予定には含まれませんでした)"
5964
 
5965
  #: src/class-updraftplus.php:3387
5966
  msgid "Database (files backup has not completed)"
5967
+ msgstr "データベース (ファイルのバックアップ未完了)"
5968
 
5969
  #: src/class-updraftplus.php:3384
5970
  msgid "Files only (database was not part of this particular schedule)"
5971
+ msgstr "ファイルのみ (データベースはこの個別の予定には含まれませんでした)"
5972
 
5973
  #: src/class-updraftplus.php:3384
5974
  msgid "Files (database backup has not completed)"
5975
+ msgstr "ファイル (データベースのバックアップ未完了)"
5976
 
5977
  #: src/admin.php:345, src/class-updraftplus.php:3382
5978
  msgid "Files and database"
5980
 
5981
  #: src/options.php:208
5982
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
5983
+ msgstr "(マルチサイトの互換性のために明示的にコードにされていない限り、これはすべての WordPress のバックアップ用プラグインに適用されます)。"
5984
 
5985
  #: src/options.php:208
5986
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to backup (and hence access the data, including passwords, from) and restore (including with customized modifications, e.g. changed passwords) <strong>the entire network</strong>."
5987
+ msgstr "アップグレードすることなく、UpdraftPlus では、プラグインの設定を変更できる<strong>すべての</strong>ブログの管理者が、<strong>ネットワーク全体</strong>のバックアップ (故にパスワードや対象ファイルなどデータへのアクセスも) と、復元 (パスワードの変更などの独自の変更を含む) を行うことができます。"
5988
 
5989
  #: src/options.php:208
5990
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
5991
+ msgstr "UpdraftPlus プレミアムまたはマルチサイト拡張機能によって、WordPress マルチサイトに対応しています。"
5992
 
5993
  #: src/options.php:208
5994
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
5995
+ msgstr "これはマルチサイト (別名サイトネットワーク) のインストールです。"
5996
 
5997
  #: src/options.php:208
5998
  msgid "UpdraftPlus warning:"
6000
 
6001
  #: src/udaddons/options.php:502, src/udaddons/options.php:502
6002
  msgid "(or connect using the form on this page if you have already purchased it)"
6003
+ msgstr "(または、購入済みであれば、このページのフォームを使用して接続)"
6004
 
6005
  #: src/udaddons/options.php:490
6006
  msgid "please follow this link to update the plugin in order to activate it"
6007
+ msgstr "プラグインを有効にするために更新するには、このリンクをクリック"
6008
 
6009
  #: src/udaddons/options.php:487
6010
  msgid "please follow this link to update the plugin in order to get it"
6011
+ msgstr "入手するために更新するには、このリンクをクリック"
6012
 
6013
  #: src/udaddons/options.php:477, src/udaddons/options.php:479
6014
  msgid "latest"
6016
 
6017
  #: src/udaddons/options.php:475
6018
  msgid "Your version: %s"
6019
+ msgstr "利用中のバージョン:%s"
6020
 
6021
  #: src/udaddons/options.php:473, src/udaddons/options.php:473
6022
  msgid "You've got it"
6023
+ msgstr "お持ちです"
6024
 
6025
  #: src/udaddons/options.php:434
6026
  msgid "UpdraftPlus Support"
6028
 
6029
  #: src/udaddons/options.php:372
6030
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
6031
+ msgstr "お使いの拡張機能を含む UpdraftPlus の更新版があります - 入手するには、このリンクをクリックしてください。"
6032
 
6033
  #: src/udaddons/options.php:361, src/udaddons/updraftplus-addons.php:357
6034
  msgid "UpdraftPlus Addons"
6035
+ msgstr "UpdraftPlus 拡張機能"
6036
 
6037
  #: src/udaddons/options.php:89
6038
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
6039
+ msgstr "UpdraftPlus の最新版があります - このリンクから入手してください。"
6040
 
6041
  #: src/methods/updraftvault.php:746, src/methods/updraftvault.php:761,
6042
  #: src/udaddons/updraftplus-addons.php:1072
6043
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
6044
+ msgstr "UpdraftPlus.Com は応答しましたが、認識できませんでした。"
6045
 
6046
  #: src/methods/updraftvault.php:758, src/udaddons/updraftplus-addons.php:1068
6047
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
6048
+ msgstr "あなたのメールアドレスとパスワードは UpdraftPlus.Com に認識されませんでした。"
6049
 
6050
  #: src/includes/updraftplus-login.php:57, src/methods/updraftvault.php:719,
6051
  #: src/udaddons/updraftplus-addons.php:1031
6052
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
6053
+ msgstr "UpdraftPlus.Com は、認識できない応答を返しました (データ: %s)"
6054
 
6055
  #: src/udaddons/updraftplus-addons.php:957
6056
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
6057
+ msgstr "UpdraftPlus.Com は応答したが、応答を認識できませんでした"
6058
 
6059
  #: src/udaddons/updraftplus-addons.php:955
6060
  msgid "We failed to successfully connect to UpdraftPlus.Com"
6061
+ msgstr "正常な UpdraftPlus.Com への接続に失敗しました"
6062
 
6063
  #: src/methods/email.php:97,
6064
  #: src/templates/wp-admin/settings/form-contents.php:244,
6065
  #: src/templates/wp-admin/settings/tab-addons.php:230,
6066
  #: src/templates/wp-admin/settings/tab-addons.php:231
6067
  msgid "Reporting"
6068
+ msgstr "Reporting"
6069
 
6070
  #: src/admin.php:5496
6071
  msgid "Options (raw)"
6073
 
6074
  #: src/addons/reporting.php:539, src/admin.php:798
6075
  msgid "Send a report only when there are warnings/errors"
6076
+ msgstr "警告/エラー時のみレポートを送信"
6077
 
6078
  #: src/restorer.php:2599
6079
  msgid "Content URL:"
6081
 
6082
  #: src/restorer.php:727
6083
  msgid "You should check the file ownerships and permissions in your WordPress installation"
6084
+ msgstr "WordPress のファイル所有権やアクセス権を確認してください。"
6085
 
6086
  #: src/templates/wp-admin/settings/form-contents.php:148
6087
  msgid "See also the \"More Files\" add-on from our shop."
6088
+ msgstr "私たちのストアの「More Files 拡張機能」もご覧ください。"
6089
 
6090
  #: src/backup.php:3339, src/class-updraftplus.php:931
6091
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
6092
+ msgstr "利用中のホスティングアカウントの空き容量が非常に少ないです - 残り %sMBのみ"
6093
 
6094
  #: src/class-updraftplus.php:915
6095
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
6096
+ msgstr "PHP で使用できるメモリ (RAM) 量が非常に少ないです (%sMB) - メモリ不足による失敗を避けるには、増量すべきです (支援を得るには利用中のウェブホスティング業者にご相談ください)"
6097
 
6098
  #: src/udaddons/options.php:525
6099
  msgid "Manage Addons"
6100
+ msgstr "拡張機能を管理"
6101
 
6102
  #: src/udaddons/options.php:503
6103
  msgid "Buy It"
6105
 
6106
  #: src/udaddons/options.php:502
6107
  msgid "Get it from the UpdraftPlus.Com Store"
6108
+ msgstr "UpdraftPlus.Com Store から入手"
6109
 
6110
  #: src/udaddons/options.php:496, src/udaddons/options.php:498
6111
  msgid "activate it on this site"
6112
+ msgstr "このサイトで有効化"
6113
 
6114
  #: src/udaddons/options.php:498
6115
  msgid "You have an inactive purchase"
6116
+ msgstr "無効な購入があります"
6117
 
6118
  #: src/udaddons/options.php:490
6119
  msgid "Assigned to this site"
6120
+ msgstr "このサイトに割り当て"
6121
 
6122
  #: src/udaddons/options.php:487
6123
  msgid "Available for this site (via your all-addons purchase)"
6124
+ msgstr "このサイトで利用可能 (拡張機能の購入することで)"
6125
 
6126
  #: src/udaddons/options.php:481
6127
  msgid "(apparently a pre-release or withdrawn release)"
6128
+ msgstr "(おそらくリリース前またはリリースの撤回)"
6129
 
6130
  #: src/udaddons/options.php:436, src/udaddons/options.php:436
6131
  msgid "Go here"
6132
+ msgstr "ここへ"
6133
 
6134
  #: src/udaddons/options.php:436, src/udaddons/options.php:436
6135
  msgid "Need to get support?"
6136
+ msgstr "サポートが必要ですか ?"
6137
 
6138
  #: src/udaddons/options.php:418
6139
  msgid "An error occurred when trying to retrieve your add-ons."
6140
+ msgstr "拡張機能を取得しようとした際にエラーが発生しました。"
6141
 
6142
  #: src/udaddons/options.php:304
6143
  msgid "An unknown response was received. Response was:"
6144
+ msgstr "不明な応答を受け取りました。応答:"
6145
 
6146
  #: src/udaddons/options.php:303
6147
  msgid "Claim not granted - your account login details were wrong"
6148
+ msgstr "要求は許可されていません - あなたのアカウントのログイン情報が間違っていました"
6149
 
6150
  #: src/udaddons/options.php:301
6151
  msgid "Please wait whilst we make the claim..."
6152
+ msgstr "私どもが要求するまでお待ちください..."
6153
 
6154
  #: src/udaddons/options.php:249
6155
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
6156
+ msgstr "UpdraftPlus.Com への接続の際にエラーが発生しました:"
6157
 
6158
  #: src/udaddons/options.php:244
6159
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
6160
+ msgstr "UpdraftPlus.Com アカウントに、現在<strong>接続されていません</strong>。"
6161
 
6162
  #: src/udaddons/options.php:236
6163
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
6164
+ msgstr "新しい拡張機能を購入したなら、接続を更新するため、このリンクにアクセスしてください"
6165
 
6166
  #: src/udaddons/options.php:229
6167
  msgid "You are presently <strong class=\"success\">connected</strong> to an UpdraftPlus.Com account."
6168
+ msgstr "UpdraftPlus.Com アカウントに、現在<strong class=\"success\">接続されています</strong>。"
6169
 
6170
  #: src/admin.php:3015
6171
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
6172
+ msgstr "UpdraftPlus.Com のパスワードの安全性に興味がありますか ? ここで詳細をご覧になれます。"
6173
 
6174
  #: src/admin.php:3091
6175
  msgid "Forgotten your details?"
6176
+ msgstr "詳細を忘れましたか ?"
6177
 
6178
  #: src/admin.php:3004
6179
  msgid "Not yet got an account (it's free)? Go get one!"
6180
+ msgstr "まだアカウントをお持ちではありません (無料です) ? 取得します !"
6181
 
6182
  #: src/admin.php:3070
6183
  msgid "Connect with your UpdraftPlus.Com account"
6185
 
6186
  #: src/udaddons/options.php:109
6187
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
6188
+ msgstr "もう使われなくなった Updraft プラグインがインストールされているようです - 間違えていませんか ?"
6189
 
6190
  #: src/udaddons/options.php:108
6191
  msgid "Go here to begin installing it."
6193
 
6194
  #: src/udaddons/options.php:108
6195
  msgid "UpdraftPlus is not yet installed."
6196
+ msgstr "UpdraftPlus はまだインストールされていません。"
6197
 
6198
  #: src/udaddons/options.php:105
6199
  msgid "Go here to activate it."
6201
 
6202
  #: src/udaddons/options.php:104
6203
  msgid "UpdraftPlus is not yet activated."
6204
+ msgstr "UpdraftPlus はまだ有効にされていません。"
6205
 
6206
  #: src/udaddons/options.php:95, src/udaddons/options.php:97
6207
  msgid "Go here to connect."
6209
 
6210
  #: src/udaddons/options.php:95
6211
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
6212
+ msgstr "購入した拡張機能の一覧を表示するために、あなたの UpdraftPlus.Com アカウントへの接続がまだされていません。"
6213
 
6214
  #: src/addons/moredatabase.php:313,
6215
  #: src/includes/class-updraftplus-encryption.php:148
6216
  msgid "Without it, encryption will be a lot slower."
6217
+ msgstr "それがなければ、暗号化がかなり遅くなります。"
6218
 
6219
  #: src/addons/moredatabase.php:313,
6220
  #: src/includes/class-updraftplus-encryption.php:148
6221
  msgid "Your web-server does not have the %s module installed."
6222
+ msgstr "利用中のウェブサーバには、%s モジュールがインストールされていません。"
6223
 
6224
  #: src/addons/googlecloud.php:1075, src/methods/googledrive.php:1407
6225
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
6226
+ msgstr "<strong>(すでに認証済みのようですが</strong>、問題があれば再認証しアクセスを更新できます)"
6227
 
6228
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:78,
6229
  #: src/templates/wp-admin/settings/tab-backups.php:80
6230
  msgid "Drop backup files here"
6231
+ msgstr "ここへバックアップ用ファイルをドロップ"
6232
 
6233
  #: src/admin.php:810
6234
  msgid "The web server returned an error code (try again, or check your web server logs)"
6235
+ msgstr "ウェブサーバーがエラーコードを返しました (再試行、またはウェブサーバーのログを確認してください)"
6236
 
6237
  #: src/admin.php:808
6238
  msgid "The restore operation has begun. Do not close your browser until it reports itself as having finished."
6239
+ msgstr "復元操作を開始しました。完了と報告されるまで、ブラウザを閉じないでください。"
6240
 
6241
  #: src/addons/wp-cli.php:116, src/admin.php:805
6242
  msgid "If you exclude both the database and the files, then you have excluded everything!"
6243
+ msgstr "データベースとファイルの両方を除外した場合、すべてのものを除外する必要があります !"
6244
 
6245
  #: src/restorer.php:2593
6246
  msgid "Site home:"
6248
 
6249
  #: src/addons/morestorage.php:138
6250
  msgid "Remote Storage Options"
6251
+ msgstr "オンラインストレージのオプション"
6252
 
6253
  #: src/addons/autobackup.php:364, src/addons/autobackup.php:458
6254
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
6255
+ msgstr "(ログは通常通り UpdraftPlus の設定から確認できます)..."
6256
 
6257
  #: src/addons/autobackup.php:324, src/addons/autobackup.php:1107
6258
  msgid "Remember this choice for next time (you will still have the chance to change it)"
6259
+ msgstr "次回のためこの選択を記憶 (まだ変更する機会はあります)"
6260
 
6261
  #: src/addons/azure.php:413, src/methods/stream-base.php:152,
6262
  #: src/methods/stream-base.php:157
6265
 
6266
  #: src/templates/wp-admin/settings/form-contents.php:126
6267
  msgid "You can send a backup to more than one destination with an add-on."
6268
+ msgstr "拡張機能を使用して、複数の宛先にバックアップを送信できます。"
6269
 
6270
  #: src/admin.php:3561
6271
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
6272
+ msgstr "注意: 下の進捗バーは時間ではなく、ステージに基づいています。しばらくの間、同じ場所にとどまっているようでも、バックアップを停止しないでください - それは正常です。"
6273
 
6274
  #: src/admin.php:3425
6275
  msgid "(%s%%, file %s of %s)"
6276
+ msgstr "%s%%, ファイル %s / %s)"
6277
 
6278
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:1112,
6279
  #: src/addons/lockadmin.php:160
6280
  msgid "Read more about how this works..."
6281
+ msgstr "これがどう機能するか詳細を読む..."
6282
 
6283
  #: src/addons/sftp.php:604
6284
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
6285
+ msgstr "失敗: ログインできましたが、その場所に正常にファイルを作成できませんでした。"
6286
 
6287
  #: src/addons/sftp.php:602
6288
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
6289
+ msgstr "失敗: ログインおよび指定のディレクトリに移動できましたが、その場所に正常にファイルを作成できませんでした。"
6290
 
6291
  #: src/addons/sftp.php:488
6292
  msgid "Use SCP instead of SFTP"
6293
+ msgstr "SCP の代わりに SFTP を使用"
6294
 
6295
  #: src/addons/sftp.php:53
6296
  msgid "SCP/SFTP user setting"
6297
+ msgstr "SCP/SFTP ユーザ設定"
6298
 
6299
  #: src/addons/sftp.php:52
6300
  msgid "SCP/SFTP host setting"
6301
+ msgstr "SCP/SFTP ホスト設定"
6302
 
6303
  #: src/methods/email.php:67
6304
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
6305
+ msgstr "メールを介したバックアップの送信に失敗 (おそらくこの方法を使うにはバックアップが巨大すぎます)"
6306
 
6307
  #: src/methods/email.php:47
6308
  msgid "Backup is of: %s."
6309
+ msgstr "以下のバックアップ: %s"
6310
 
6311
  #: src/admin.php:900
6312
  msgid "%s settings test result:"
6313
+ msgstr "%s の設定テストの結果:"
6314
 
6315
  #: src/admin.php:4298, src/admin.php:4300
6316
  msgid "(Not finished)"
6317
+ msgstr "(未完了)"
6318
 
6319
  #: src/admin.php:4300
6320
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
6321
+ msgstr "予想よりも多いバックアップが表示される場合、おそらくそれは新しいバックアップが完了するまで、古いバックアップ一式の削除が行われないことが理由です。"
6322
 
6323
  #: src/templates/wp-admin/settings/form-contents.php:329
6324
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
6325
  msgstr ""
6326
+ "再帰の原因となるので、アップロードやプラグインのディレクトリ内に<b>置かないでください</b>\n"
6327
+ "(バックアップのバックアップのバックアップ...)。"
6328
 
6329
  #: src/templates/wp-admin/settings/form-contents.php:329
6330
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
6331
+ msgstr "UpdraftPlus が最初に作成した ZIP ファイルを書き込む場所です。このディレクトリは、ウェブサーバーによる書き込みを許可する必要があります。コンテンツディレクトリ (標準状態では WP-content) に対する相対パスです。"
6332
 
6333
  #: src/admin.php:3526
6334
  msgid "Job ID: %s"
6350
 
6351
  #: src/admin.php:3439
6352
  msgid "Backup finished"
6353
+ msgstr "バックアップ完了"
6354
 
6355
  #: src/admin.php:3434
6356
  msgid "Waiting until scheduled time to retry because of errors"
6357
+ msgstr "エラーのため、予定時間まで待機し再試行します"
6358
 
6359
  #: src/admin.php:3430
6360
  msgid "Pruning old backup sets"
6361
+ msgstr "古いバックアップ一式を刈り込み整理"
6362
 
6363
  #: src/admin.php:3417
6364
  msgid "Uploading files to remote storage"
6365
+ msgstr "オンラインストレージにファイルをアップロード"
6366
 
6367
  #: src/admin.php:3486
6368
  msgid "Encrypted database"
6374
 
6375
  #: src/admin.php:3452
6376
  msgid "Created database backup"
6377
+ msgstr "データベースのバックアップを作成"
6378
 
6379
  #: src/admin.php:3465
6380
  msgid "table: %s"
6386
 
6387
  #: src/admin.php:3408
6388
  msgid "Created file backup zips"
6389
+ msgstr "ファイルのバックアップ用の ZIP を作成"
6390
 
6391
  #: src/admin.php:3395
6392
  msgid "Creating file backup zips"
6393
+ msgstr "ファイルのバックアップ用の ZIP を作成中"
6394
 
6395
  #: src/admin.php:3390
6396
  msgid "Backup begun"
6397
+ msgstr "バックアップ開始"
6398
 
6399
  #: src/admin.php:1194
6400
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
6401
+ msgstr "DISABLE_WP_CRON の設定により、お使いの WordPress インストールではスケジューラが無効になっています。手動でスケジューラを呼び出す機能を設定するか、有効になるまで (「今すぐバックアップ」でも) バックアップは実行できません。"
6402
 
6403
  #: src/restorer.php:1371
6404
  msgid "file"
6410
 
6411
  #: src/restorer.php:1363, src/restorer.php:1371
6412
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
6413
+ msgstr "コンテンツディレクトリ内の %s の作成には UpdraftPlus が必要ですが、失敗しました - ファイルのアクセス権を確認し、アクセス (%s) を有効にしてください。"
6414
 
6415
  #: src/class-updraftplus.php:3322
6416
  msgid "The backup has not finished; a resumption is scheduled"
6418
 
6419
  #: src/class-updraftplus.php:2172
6420
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
6421
+ msgstr "あなたのウェブサイトは訪問頻度が少なく、UpdraftPlus は期待したリソースを取得していません。このページをお読みください:"
6422
 
6423
  #: src/addons/onedrive.php:1047,
6424
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
6425
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
6426
+ msgstr "あなたのサイト上で何かがそれを壊しているため %s の認証が先に進みません。他のプラグインを無効にし、デフォルトのテーマに切り替えてみてください。(具体的には、ページの開始前に出力を送信する構成要素 (多くは PHP の警告/エラー) を探します。デバッグの設定を無効にすることも役立つかもしれません)。"
6427
 
6428
  #: src/admin.php:2733
6429
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
6430
+ msgstr "お使いの PHP のメモリ制限は非常に少ないです (ウェブホスティング業者が設定したものです)。 UpdraftPlus は増加を試みましたが成功しませんでした。本プラグインは、特にアップロードされた巨大なファイルがある場合、64MB未満のメモリ制限では問題があるかもしれません (一方、多くのサイトでは32MBの制限でも動作します)。"
6431
 
6432
  #: src/addons/autobackup.php:1126, src/admin.php:854
6433
  msgid "Proceed with update"
6434
+ msgstr "更新を続行"
6435
 
6436
  #: src/addons/autobackup.php:1119
6437
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
6438
+ msgstr "以下の続行を押した後、中止しないでください - バックアップの完了までお待ちください。"
6439
 
6440
  #: src/addons/autobackup.php:139, src/addons/autobackup.php:1068
6441
  msgid "UpdraftPlus Automatic Backups"
6443
 
6444
  #: src/addons/autobackup.php:551
6445
  msgid "Errors have occurred:"
6446
+ msgstr "エラーが発生:"
6447
 
6448
  #: src/addons/autobackup.php:522
6449
  msgid "Creating backup with UpdraftPlus..."
6476
 
6477
  #: src/addons/autobackup.php:322
6478
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
6479
+ msgstr "更新前に、UpdraftPlus でプラグイン、テーマ、WordPress のデータベースを自動バックアップ"
6480
 
6481
  #: src/addons/morefiles.php:257, src/addons/morefiles.php:258
6482
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
6483
+ msgstr "確信がなければ停止する必要があります。そうしないと、この WordPress のインストールを破壊する可能性があります。"
6484
 
6485
  #: src/addons/morefiles.php:257, src/addons/morefiles.php:258
6486
  msgid "This does not look like a valid WordPress core backup - the file %s was missing."
6487
+ msgstr "これは有効な WordPress コアのバックアップではないようです - このファイル %s はありませんでした。"
6488
 
6489
  #: src/addons/morefiles.php:204
6490
  msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
6491
+ msgstr "ZIP ファイル (%s) を開けません - 整合性の確認用の事前スキャンができませんでした。"
6492
 
6493
  #: src/addons/morefiles.php:194
6494
  msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
6495
+ msgstr "ZIP ファイル (%s) を読み取れません - 整合性の確認用の事前スキャンができませんでした。"
6496
 
6497
  #: src/templates/wp-admin/settings/header.php:25
6498
  msgid "More plugins"
6507
 
6508
  #: src/class-updraftplus.php:4906
6509
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."